-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.07 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
35
36
37
38
39
40
41
42
43
{
"name": "kdubuc/oauth2-introspection-psr15",
"description": "PSR15 OAuth2 Introspection Middleware",
"keywords": [
"psr15",
"psr7",
"oauth2",
"openid",
"introspection",
"rfc7662"
],
"homepage": "https://github.com/kdubuc/oauth2-introspection-psr15",
"license": "CECILL-2.1",
"authors": [
{
"role": "Developer",
"name": "Kevin DUBUC",
"email": "[email protected]",
"homepage": "http://kevindubuc.fr"
}
],
"require": {
"php": "^7.1 || ^8.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/cache": "^1.0|^2.0|^3.0"
},
"require-dev": {
"kdubuc/php-cs-fixer-rules": "^1.0",
"guzzlehttp/psr7": "2.0.0-beta1",
"phpunit/phpunit": "^9.0",
"wildwolf/psr-memory-cache": "^1.0"
},
"autoload": {
"psr-4": {
"Kdubuc\\Middleware\\": "src/"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}