-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
41 lines (41 loc) · 1.31 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
{
"name": "most-significant-bit/oauth2-client",
"license": "BSD-3-Clause",
"description": "OAuth 2.0 Client. Implement RFC 6749.",
"keywords": ["php", "oauth", "oauth2", "oauth 2.0", "client"],
"authors": [
{
"name": "Michał Kopacz",
"email": "[email protected]"
}
],
"require": {
"php" : ">=5.3.3",
"myclabs/php-enum": "~1.3",
"beberlei/assert": "~2.3",
"zendframework/zend-stdlib": "^2.2 || ^3.0",
"zendframework/zend-uri": "^2.2",
"zendframework/zend-json": "^2.2",
"php-curl-class/php-curl-class": "~3.5.0"
},
"require-dev": {
"php": ">=5.3.3",
"coduo/tutu": "^1.0",
"coduo/tutu-faker-extension": "^1.0",
"coduo/tutu-twig-extension": "^1.0",
"phpunit/phpunit": "~4.0",
"symfony/process": "~2.6",
"squizlabs/php_codesniffer": "~2.2"
},
"autoload": {
"psr-4": {
"MostSignificantBit\\OAuth2\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MostSignificantBit\\OAuth2\\Client\\Tests\\Unit\\": "tests/unit/phpunit/",
"MostSignificantBit\\OAuth2\\Client\\Tests\\Integration\\": "tests/integration/phpunit/"
}
}
}