-
Notifications
You must be signed in to change notification settings - Fork 66
/
composer.json
45 lines (45 loc) · 1.33 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
{
"name": "tuupola/slim-basic-auth",
"type": "library",
"description": "PSR-7 and PSR-15 HTTP Basic Authentication Middleware",
"keywords": ["middleware", "auth", "psr-7", "psr-15"],
"homepage": "https://appelsiini.net/projects/slim-basic-auth",
"license": "MIT",
"authors": [
{
"name": "Mika Tuupola",
"email": "[email protected]",
"homepage": "https://appelsiini.net/"
}
],
"require": {
"php": "^7.2|^8.0",
"psr/http-message": "^1.0.1|^2.0",
"psr/http-server-middleware": "^1.0",
"tuupola/callable-handler": "^0.3.0|^0.4.0|^1.0",
"tuupola/http-factory": "^0.4.0|^1.0.2"
},
"autoload": {
"psr-4": {
"Tuupola\\Middleware\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tuupola\\Middleware\\HttpBasicAuthentication\\": "tests",
"Test\\": "tests/lib"
}
},
"require-dev": {
"equip/dispatch": "^2.0",
"laminas/laminas-diactoros": "^1.3|^2.0|^3.0",
"overtrue/phplint": "^3.0|^4.0|^5.0|^6.0",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^8.5.30|^9.0",
"rector/rector": "^0.14.5",
"symplify/easy-coding-standard": "^11.1"
},
"config": {
"sort-packages": true
}
}