-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.05 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
{
"name": "azakhozhiy/laravel-exceptions",
"version": "1.0.0",
"description": "Laravel Exceptions",
"license": "MIT",
"authors": [
{
"name": "Aleksandr Zakhozhiy",
"email": "azakhozhiiy@gmail.com"
}
],
"require": {
"php": "^8.3",
"laravel/framework": "^10.48"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.4",
"orchestra/testbench": "^8.0",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"AZakhozhiy\\Laravel\\Exceptions\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AZakhozhiy\\Laravel\\Exceptions\\Tests\\": "tests/"
}
},
"scripts": {
"csf": [
"./vendor/bin/php-cs-fixer fix src --using-cache=no --allow-risky=yes"
],
"clb": [
"git branch | grep -v $(git branch --show-current) | grep -v \"master\" | xargs git branch -D"
]
},
"minimum-stability": "stable",
"type": "library"
}