-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
43 lines (43 loc) · 1.16 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
{
"name": "php-middleware/php-debug-bar",
"description": "PHP Debug Bar PSR-15 middleware with PSR-7",
"type": "library",
"license": "MIT",
"keywords": [
"debug",
"middleware",
"psr",
"psr-7",
"psr-15",
"psr-11"
],
"require": {
"php": "^7.3 || ^8.0",
"maximebf/debugbar": "^1.4",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/container-implementation": "^1.0 || ^2.0",
"psr/http-message-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.1.4",
"mikey179/vfsstream": "^1.6.8",
"slim/slim": "^3.0",
"mezzio/mezzio": "^3.0",
"mezzio/mezzio-fastroute": "^3.0.1",
"laminas/laminas-servicemanager": "^3.3.2",
"laminas/laminas-diactoros": "^2.0",
"phpstan/phpstan": "^1.4"
},
"autoload": {
"psr-4": {
"PhpMiddleware\\PhpDebugBar\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhpMiddlewareTest\\PhpDebugBar\\": "test/"
}
}
}