forked from tuupola/slim-jwt-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.36 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
54
{
"name": "tuupola/slim-jwt-auth",
"description": "PSR-7 and PSR-15 JWT Authentication Middleware",
"keywords": [
"psr-7",
"psr-15",
"middleware",
"jwt",
"json",
"auth"
],
"homepage": "https://github.com/tuupola/slim-jwt-auth",
"license": "MIT",
"authors": [
{
"name": "Mika Tuupola",
"email": "[email protected]",
"homepage": "https://appelsiini.net/",
"role": "Developer"
}
],
"require": {
"php": "^7.2|^8.0",
"psr/log": "^1.0|^2.0|^3.0",
"firebase/php-jwt": "^3.0|^4.0|^5.0",
"psr/http-message": "^1.0",
"tuupola/http-factory": "^1.3",
"tuupola/callable-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.7",
"overtrue/phplint": "^1.0",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^7.0|^8.5.30|^9.0",
"equip/dispatch": "^2.0",
"laminas/laminas-diactoros": "^2.0"
},
"autoload": {
"psr-4": {
"Tuupola\\Middleware\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tuupola\\Middleware\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-3.x": "3.0.x-dev"
}
}
}