-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
44 lines (44 loc) · 1.31 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name" : "org_heigl/hybridauth",
"type" : "library",
"description" : "Lightweight Authentication Module for Zend-Framework 2 using the hybridauth-library",
"keywords" : [ "login","social network","user", "twitter", "facebook", "github", "zf2", "module"],
"homepage" : "http://github.com/heiglandreas/HybridAuth",
"license" : "MIT",
"authors" : [
{
"name" : "Andreas Heigl",
"email" : "[email protected]",
"homepage" : "http://andreas.heigl.org",
"role" : "Developer"
}],
"require" : {
"php": "^5.6 || ^7.0",
"zendframework/zend-mvc": "^3.0",
"zendframework/zend-servicemanager": "^3.0",
"zendframework/zend-session": "^2.7 || ^3.0",
"zendframework/zend-uri": "^2.5 || ^3.0",
"zendframework/zend-view": "^2.7 || ^3.0",
"socialconnect/auth": "^1.0",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev" : {
"mockery/mockery": "^0.9.7",
"phpunit/phpunit": "^5.7"
},
"autoload" : {
"psr-4" : {
"OrgHeiglHybridAuth\\" : "src/"
},
"classmap": [
"./"
]
},
"autoload-dev" : {
"psr-4" : {
"OrgHeiglHybridAuthTest\\" : "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable" : true
}