-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
43 lines (43 loc) · 920 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
40
41
42
43
{
"name": "onkbear/backpack-nested-crud",
"description": "",
"keywords": [
"laravel backpack",
"backpack",
"crud"
],
"homepage": "https://github.com/onkbear/backpack-nested-crud",
"license": "MIT",
"authors": [
{
"name": "onkbear",
"email": "[email protected]"
}
],
"require": {
"backpack/crud": "^4.1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16"
},
"autoload": {
"psr-4": {
"Onkbear\\NestedCrud\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Onkbear\\NestedCrud\\NestedCrudServiceProvider"
]
}
},
"scripts": {
"lint": [
"php-cs-fixer fix --dry-run ./src"
],
"lint-fix": [
"php-cs-fixer fix ./src"
]
}
}