-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
32 lines (32 loc) · 1.06 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
{
"name": "chadicus/slim-oauth2-http",
"description": "Bridge components for PSR-7 and bshaffer's OAuth2 Server http messages.",
"keywords": ["slim", "oauth2", "http", "message", "psr7", "request", "response", "bridge"],
"license": "MIT",
"require": {
"php": "^5.6 || ^7.0 || ^8.0",
"bshaffer/oauth2-server-php": "^1.8",
"laminas/laminas-diactoros": "^1.8 || ^2.0"
},
"config" : {
"sort-packages": true
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^6.5 || ^9.6 || ^10.1",
"squizlabs/php_codesniffer": "^3.7"
},
"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."
},
"scripts": {
"lint": "vendor/bin/phpcs",
"test": "vendor/bin/phpunit"
}
}