-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
35 lines (35 loc) · 1.1 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
{
"name": "hrevert/ht-oauth-server-client-module",
"description": "A Zend Framework 2 module which provides custom grant for zfr-oauth2-server to authenticate users via third party applications like facebook, google etc",
"type": "library",
"license" : "MIT",
"authors": [
{
"name": "Hrevert Technologies",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5",
"hrevert/ht-oauth-client-module": "0.0.*",
"hrevert/ht-league-oauth-client-module": "0.3.*",
"zendframework/zend-stdlib": "~2.2",
"zfr/zfr-oauth2-server-module": "0.7.*"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"zendframework/zend-diactoros": "~1.1",
"zendframework/zend-mvc": "~2.2",
"zendframework/zend-servicemanager": "~2.2",
"zendframework/zend-modulemanager": "~2.2",
"zendframework/zend-eventmanager": "~2.2"
},
"autoload": {
"psr-4": {
"HtOauth\\Server\\ClientModule\\": "src/"
},
"classmap": [
"./Module.php"
]
}
}