-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 1020 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
33
34
35
36
37
38
{
"name": "elle-the-dev/glove",
"description": "Exception handling for Laravel that catches like a glove.",
"keywords": ["laravel", "exceptions", "exception", "handling"],
"license": "MIT",
"require": {
"php": "7.*|8.*",
"illuminate/contracts": "8.*|9.*",
"illuminate/support": "8.*|9.*",
"symfony/console": "5.*|6.*",
"symfony/debug": "^3.1|4.*",
"symfony/http-foundation": "5.*|6.*",
"psr/log": "^1.0"
},
"require-dev": {
"mockery/mockery": "^1.0",
"phpunit/phpunit": "9.*",
"orchestra/testbench": "7.*",
"filp/whoops": "2.*"
},
"autoload": {
"psr-4": {
"ElleTheDev\\Glove\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ElleTheDev\\Tests\\Glove\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"ElleTheDev\\Glove\\Providers\\GloveServiceProvider"
]
}
}
}