forked from DavidWiesner/slim-oauth2-routes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 864 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
{
"name": "chadicus/slim-oauth2-routes",
"description": "OAuth2 routes for use within a Slim Framework API",
"keywords": ["slim", "oauth2", "routing"],
"authors": [
{
"name": "Chad Gray",
"email": "chadwickgray@gmail.com",
"role": "Developer"
}
],
"license": "MIT",
"require": {
"php": "~5.5 || ~7.0",
"bshaffer/oauth2-server-php": "~1.7",
"slim/slim": "~2.0",
"chadicus/slim-oauth2-http": "~1.0"
},
"suggest": {
"chadicus/slim-oauth2-middleware": "Adds OAuth2 middleware for API requests."
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"chadicus/coding-standard": "~1.0",
"satooshi/php-coveralls": "~0.6.1"
},
"autoload": {
"psr-4": {"Chadicus\\Slim\\OAuth2\\Routes\\" : "src"}
}
}