forked from chadicus/slim-oauth2-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 1.04 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
{
"name": "chadicus/slim-oauth2-http",
"description": "Bridge components for slim and oauth2 http messages.",
"keywords": ["slim", "oauth2", "http", "message"],
"authors": [
{
"name": "Chad Gray",
"email": "[email protected]",
"role": "Developer"
}
],
"license": "MIT",
"require": {
"php": "~5.6 || ~7.0",
"bshaffer/oauth2-server-php": "~1.8",
"slim/slim": "~3.0"
},
"require-dev": {
"phpunit/phpunit": "~5.3",
"chadicus/coding-standard": "~1.0",
"satooshi/php-coveralls": "~1.0",
"zendframework/zend-diactoros": "~1.3"
},
"autoload": {
"psr-4": {"Chadicus\\Slim\\OAuth2\\Http\\" : "src"}
},
"autoload-dev": {
"psr-4": {"ChadicusTest\\Slim\\OAuth2\\Http\\" : "tests"}
},
"suggest": {
"chadicus/slim-oauth2-routes": "Offers standard OAuth2 routes for slim applications",
"chadicus/slim-oauth2-middleware": "Adds OAuth2 middleware for API requests."
}
}