-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
44 lines (44 loc) · 1.05 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": "hounddog/hd-social-oauth2",
"description": "Zend Framework 2 Module that provides social authentication for zfcampus/zf-oauth2",
"type": "library",
"license": "MIT",
"keywords": [
"social",
"authentication",
"oauth2",
"zf2"
],
"minimum-stability": "dev",
"prefer-stable": true,
"homepage": "http://hounddog.github.io/",
"authors": [
{
"name": "Martin Shwalbe",
"email": "[email protected]"
}
],
"extra": {
"branch-alias": {
"dev-master": "0.x-dev"
}
},
"require": {
"php": ">=5.4",
"zfcampus/zf-oauth2": "~1.0@dev",
"hybridauth/hybridauth": "~2.0"
},
"require-dev": {
"phpunit/phpunit" : "3.7.*",
"squizlabs/php_codesniffer": "1.4.*"
},
"autoload": {
"psr-0": {
"HD\\Social\\OAuth2\\": "src/",
"HD\\Social\\OAuth2\\Test\\": "tests/"
},
"classmap": [
"Module.php"
]
}
}