forked from zf-fr/zfr-oauth2-server-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1021 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
36
37
38
39
40
{
"name": "zfr/zfr-oauth2-server-module",
"description": "Zend Framework 2 module for ZfrOAuth2Server",
"type": "library",
"license": "MIT",
"keywords": [
"oauth",
"oauth 2",
"server"
],
"homepage": "http://www.github.com/zf-fr/zfr-oauth2-server-module",
"authors": [
{
"name": "Michaël Gallego",
"email": "[email protected]",
"homepage": "http://www.michaelgallego.fr"
}
],
"require": {
"php": ">=5.4",
"zendframework/zend-servicemanager": "~2.2",
"zendframework/zend-modulemanager": "~2.2",
"zendframework/zend-mvc": "~2.2",
"zendframework/zend-console": "~2.2",
"zendframework/zend-stdlib": "~2.2",
"doctrine/doctrine-module": "~0.8",
"zfr/zfr-oauth2-server": "0.5.*"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"squizlabs/php_codesniffer": "1.4.*",
"zendframework/zend-view": "~2.2",
"satooshi/php-coveralls": "~0.6"
},
"autoload": {
"psr-0": {
"ZfrOAuth2Module\\": "src/"
}
}
}