-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
32 lines (32 loc) · 938 Bytes
/
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
{
"name": "zeuxisoo/slim-whoops",
"type": "library",
"description": "PHP whoops error on slim framework",
"keywords": ["error", "exception", "whoops", "slim"],
"homepage": "https://github.com/zeuxisoo/php-slim-whoops/",
"license": "BSD-2-Clause",
"authors": [{
"name": "Zeuxis Lo",
"email": "seekstudio@gmail.com",
"homepage": "http://www.not.im/",
"role": "Developer"
}],
"require": {
"php": "^7.4 || ^8.0",
"filp/whoops": "^2.14"
},
"require-dev": {
"slim/slim": "4.9.*",
"slim/psr7": "1.5.*",
"slim/http": "1.2.*",
"slim/twig-view": "3.2.*",
"equip/dispatch": "^2.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Zeuxisoo\\Whoops\\Slim\\": "src/Zeuxisoo/Whoops/Slim",
"Zeuxisoo\\Whoops\\Slim\\Tests\\": "tests"
}
}
}