forked from zf-fr/zfr-oauth2-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 886 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
{
"name": "zfr/zfr-oauth2-server",
"description": "PHP library to create an OAuth 2 server",
"type": "library",
"license": "MIT",
"keywords": [
"oauth",
"oauth 2",
"server"
],
"homepage": "http://www.github.com/zf-fr/zfr-oauth2-server",
"authors": [
{
"name": "Michaël Gallego",
"email": "[email protected]",
"homepage": "http://www.michaelgallego.fr"
}
],
"require": {
"php": ">=5.4",
"doctrine/common": "~2.4",
"zendframework/zend-http": "~2.2",
"zendframework/zend-crypt": "~2.2",
"zendframework/zend-math": "~2.2",
"zendframework/zend-eventmanager": "~2.2"
},
"require-dev": {
"phpunit/phpunit": "~3.7",
"squizlabs/php_codesniffer": "1.4.*",
"satooshi/php-coveralls": "~0.6",
"doctrine/orm": "~2.4"
},
"autoload": {
"psr-0": {
"ZfrOAuth2\\": "src/"
}
}
}