-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 850 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 850 Bytes
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
{
"name": "idealo/php-middleware-stack",
"description": "Implementation of HTTP Middleware PSR-15 specification",
"keywords": [
"stack",
"psr",
"psr-7",
"psr-15",
"http",
"middleware",
"request",
"response"
],
"license": "Apache-2.0",
"authors": [
{
"name": "Vsevolod Dolgopolov",
"email": "vsevolod.dolgopolov@idealo.de"
},
{
"name": "Dirk Adler",
"email": "dirk.adler@idealo.de"
}
],
"require": {
"php": "^8.1",
"psr/http-message": "^2.0",
"psr/http-server-middleware": "^1.0",
"psr/http-server-handler": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"Idealo\\Middleware\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Idealo\\Middleware\\Tests\\": "tests/"
}
}
}