-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.41 KB
/
Copy pathcomposer.json
File metadata and controls
53 lines (53 loc) · 1.41 KB
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/server-timing-middleware",
"description": "PSR-7 and PSR-15 server timing middleware",
"keywords": [
"PSR-7",
"PSR-15",
"middleware"
],
"homepage": "https://github.com/tuupola/server-timing-middleware",
"license": "MIT",
"authors": [
{
"name": "Mika Tuupola",
"email": "tuupola@appelsiini.net",
"homepage": "https://appelsiini.net/",
"role": "Developer"
}
],
"config": {
"sort-packages": true
},
"require": {
"php": "^8.1",
"psr/http-server-middleware": "^1.0",
"symfony/stopwatch": "^6.0|^7.0|^8.0",
"tuupola/callable-handler": "^1.0"
},
"require-dev": {
"doctrine/dbal": "^3.0",
"equip/dispatch": "^2.0",
"laminas/laminas-diactoros": "^2.4|^3.0",
"overtrue/phplint": "^2.0",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^10.0",
"psr/http-message": "^1.0.1|2.0",
"rector/rector": "^0.14.0",
"symplify/easy-coding-standard": "^11.1",
"tuupola/http-factory": "^1.0"
},
"autoload": {
"psr-4": {
"Tuupola\\Middleware\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tuupola\\Middleware\\": "tests"
}
},
"suggest": {
"doctrine/dbal": "If you want to use the DBAL query timer."
}
}