-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1020 Bytes
/
Copy pathcomposer.json
File metadata and controls
46 lines (46 loc) · 1020 Bytes
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
{
"name": "vaened/laravception",
"description": "Standardize your error responses in Laravel with Laravception. Get consistent error codes, messages, metadata, and translation support.",
"keywords": [
"error-handling",
"exceptions",
"laravel-library",
"exceptions-handling"
],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Vaened\\Laravception\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Vaened\\Laravception\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Enea Dhack",
"email": "enea.so@live.com"
}
],
"require": {
"php": "^8.2",
"laravel/framework": "^11.15|^12.0|^13.0",
"vaened/support": "^4.0",
"lambdish/phunctional": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^11.0",
"orchestra/testbench": "^9|^10|^11",
"mockery/mockery": "^1.6"
},
"extra": {
"laravel": {
"providers": [
"Vaened\\Laravception\\LaravceptionServiceProvider"
]
}
}
}