-
Notifications
You must be signed in to change notification settings - Fork 110
/
composer.json
52 lines (52 loc) · 1.65 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
45
46
47
48
49
50
51
52
{
"name": "socalnick/scn-social-auth",
"description": "Uses the HybridAuth PHP library to Enable authentication via Google, Facebook, Twitter, Yahoo!, etc for the ZfcUser ZF2 module.",
"type": "library",
"license": "BSD-3-Clause",
"keywords": [
"zf2",
"facebook"
],
"homepage": "https://github.com/SocalNick/ScnSocialAuth",
"authors": [
{
"name": "Nicholas Calugar",
"email": "[email protected]",
"homepage": "http://socalnick.github.com/"
}
],
"require": {
"php": ">=5.3.3",
"zendframework/zend-authentication": "2.*",
"zendframework/zend-db": "2.*",
"zendframework/zend-eventmanager": "2.*",
"zendframework/zend-http": "2.*",
"zendframework/zend-i18n": "2.*",
"zendframework/zend-loader": "2.*",
"zendframework/zend-log": "2.*",
"zendframework/zend-modulemanager": "2.*",
"zendframework/zend-mvc": "2.*",
"zendframework/zend-serializer": "2.*",
"zendframework/zend-servicemanager": "2.*",
"zendframework/zend-session": "2.*",
"zendframework/zend-stdlib": "2.*",
"zendframework/zend-test": "2.*",
"zendframework/zend-uri": "2.*",
"zendframework/zend-view": "2.*",
"zf-commons/zfc-base": "0.1.*",
"zf-commons/zfc-user": "1.4.*",
"hybridauth/hybridauth": "2.13.*"
},
"require-dev": {
"mockery/mockery": "0.8.0"
},
"autoload": {
"psr-0": {
"ScnSocialAuth": "src/",
"ScnSocialAuthTest": "test/"
},
"classmap": [
"./"
]
}
}