-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.34 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
44
45
46
47
48
49
50
51
52
53
{
"name": "tuupola/branca-middleware",
"description": "PSR-7 and PSR-15 Branca Authentication Middleware",
"keywords": [
"psr-7",
"psr-15",
"psr-17",
"middleware",
"jwt",
"branca",
"auth"
],
"homepage": "https://github.com/tuupola/branca-middleware",
"license": "MIT",
"authors": [
{
"name": "Mika Tuupola",
"email": "[email protected]",
"homepage": "https://appelsiini.net/",
"role": "Developer"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": "^7.2|^8.0",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/log": "^1.0",
"tuupola/branca": "^2.2.1",
"tuupola/callable-handler": "^0.3.0|^0.4.0|^1.0",
"tuupola/http-factory": "^1.1.0"
},
"require-dev": {
"equip/dispatch": "^2.0",
"nyholm/psr7": "^1.3",
"overtrue/phplint": "^1.0",
"phpstan/phpstan": "^0.12.44",
"phpunit/phpunit": "^7.0|^8.0|^9.0",
"squizlabs/php_codesniffer": "^3.3.1"
},
"autoload": {
"psr-4": {
"Tuupola\\Middleware\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tuupola\\Middleware\\": "tests"
}
}
}