forked from bshaffer/oauth2-server-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.43 KB
/
Copy pathcomposer.json
File metadata and controls
45 lines (45 loc) · 1.43 KB
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
42
43
44
45
{
"name": "maksimovic/oauth2-server-php",
"description":"OAuth2 Server for PHP",
"keywords":["oauth","oauth2","auth"],
"type":"library",
"license":"MIT",
"authors":[
{
"name":"Brent Shaffer",
"email": "bshafs@gmail.com",
"homepage":"http://brentertainment.com"
}
],
"homepage": "http://github.com/maksimovic/oauth2-server-php",
"replace": {
"bshaffer/oauth2-server-php": "*"
},
"autoload": {
"psr-0": { "OAuth2": "src/" }
},
"require":{
"php":"^8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"aws/aws-sdk-php": "^3.0",
"firebase/php-jwt": "^7.0",
"predis/predis": "^2.0",
"mroosz/php-cassandra": "^1.2",
"phpstan/phpstan": "^2.1"
},
"scripts": {
"test": "phpunit",
"test:coverage": "phpunit --coverage-text",
"analyze": "phpstan analyse --memory-limit=512M"
},
"suggest": {
"predis/predis": "Required to use Redis storage",
"mroosz/php-cassandra": "^1.2 is required to use Cassandra storage",
"aws/aws-sdk-php": "^3.0 is required to use DynamoDB storage",
"firebase/php-jwt": "^7.0 is required to use JWT features",
"mongodb/mongodb": "^1.20 || ^2.0 is required to use MongoDB storage",
"couchbase/couchbase": "^4.4 is required to use Couchbase storage (requires ext-couchbase)"
}
}