-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
53 lines (53 loc) · 1.42 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/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": "^7.2|^8.0",
"phpstan/phpstan": "^1.8",
"psr/http-server-middleware": "^1.0",
"symfony/stopwatch": "^4.0|^5.0|^6.0",
"tuupola/callable-handler": "^1.0"
},
"require-dev": {
"doctrine/dbal": "^2.0",
"equip/dispatch": "^2.0",
"laminas/laminas-diactoros": "^2.4",
"overtrue/phplint": "^0.2.0",
"phpunit/phpunit": "^7.0|^8.0|^9.0",
"psr/http-message": "^1.0.1",
"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."
}
}