-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
34 lines (34 loc) · 1.03 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-routes",
"description": "OAuth2 routes for use within a Slim Framework API",
"keywords": ["slim", "oauth2", "routing"],
"license": "MIT",
"require": {
"php": "^5.6 || ^7.0 || ^8.0",
"bshaffer/oauth2-server-php": "^1.9",
"chadicus/slim-oauth2-http": "^3.2"
},
"suggest": {
"chadicus/slim-oauth2-middleware": "Adds OAuth2 middleware for API requests.",
"slim/php-view": "Simple template rendering"
},
"config" : {
"sort-packages": true
},
"require-dev": {
"laminas/laminas-diactoros": "^1.8 || ^2.0",
"phpunit/phpunit": "^5.7 || ^6.5 || ^9.6 || ^10.1",
"slim/php-view": "^2.0.5",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {"Chadicus\\Slim\\OAuth2\\Routes\\" : "src"}
},
"autoload-dev": {
"psr-4": {"ChadicusTest\\Slim\\OAuth2\\Routes\\" : "tests"}
},
"scripts": {
"lint": "vendor/bin/phpcs",
"test": "vendor/bin/phpunit"
}
}