forked from SocalNick/ScnSocialAuth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 970 Bytes
/
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
{
"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",
"keywords": [
"zf2"
],
"homepage": "https://github.com/SocalNick/ScnSocialAuth",
"authors": [
{
"name": "Nicholas Calugar",
"email": "[email protected]",
"homepage": "http://socalnick.github.com/"
}
],
"require": {
"php": ">=5.3.3",
"zendframework/zendframework": "2.*",
"zf-commons/zfc-base": "0.1.*",
"zf-commons/zfc-user": "0.1.*",
"hybridauth/hybridauth": "dev-master"
},
"require-dev": {
"mockery/mockery": ">=0.7.2"
},
"autoload": {
"psr-0": {
"ScnSocialAuth": "src/",
"ScnSocialAuthTest": "test/"
},
"classmap": [
"./"
]
}
}