forked from reb3r/oauth2-server-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 897 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
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "reb3r/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"
},
{
"name": "Christian Reber",
"email": "chris@creber.de"
}
],
"homepage": "http://github.com/bshaffer/oauth2-server-php",
"autoload": {
"psr-0": { "OAuth2": "src/" }
},
"require": {
"php":">=8.1",
"guzzlehttp/guzzle": "^7.8",
"web-token/jwt-library": "^3.3"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"firebase/php-jwt": "^6.4",
"predis/predis": "^1.1",
"rector/rector": "^0.9.9",
"yoast/phpunit-polyfills": "^1.0"
},
"suggest": {
"predis/predis": "Required to use Redis storage",
"firebase/php-jwt": "^6.4 is required to use JWT features"
}
}