-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 881 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
39
{
"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": "[email protected]"
}
],
"require": {
"php": "^8.2",
"laravel/framework": "^10.21|^v11.15",
"vaened/support": "^4.0",
"lambdish/phunctional": "^2.1"
},
"require-dev": {
"phpunit/phpunit": "^10.4",
"orchestra/testbench": "^8|^9",
"mockery/mockery": "^1.6"
}
}