-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.35 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
{
"name": "egeatech/laravel-exceptions",
"description": "A simple package to better handle Exceptions.",
"license": "MIT",
"authors": [
{
"name": "Egea Tecnologie Informatiche srl",
"email": "dev@egeatech.com",
"homepage": "https://www.egeatech.com"
},
{
"name": "Marco Guidolin",
"email": "m.guidolin@egeatech.com",
"homepage": "https://www.egeatech.com"
}
],
"homepage": "https://github.com/EgeatechSRL/laravel-exceptions",
"keywords": ["Laravel", "Exceptions"],
"require": {
"php": "^8.0",
"bensampo/laravel-enum": "^6.0",
"illuminate/support": "^6|^7|^8|^9|^10"
},
"require-dev": {
"phpunit/phpunit": "~9.0",
"orchestra/testbench": "~5|~6|~7|~8"
},
"autoload": {
"psr-4": {
"EgeaTech\\LaravelExceptions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EgeaTech\\LaravelExceptions\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"EgeaTech\\LaravelExceptions\\Providers\\LaravelExceptionsServiceProvider"
],
"aliases": {
"LaravelExceptions": "EgeaTech\\LaravelExceptions\\Facades\\LaravelExceptions"
}
}
}
}