-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
60 lines (60 loc) · 1.32 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
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "lupennat/nova-nested-many",
"description": "Laravel Nova - Nested Many",
"keywords": [
"laravel",
"nova"
],
"authors": [
{
"name": "Claudio Pennati",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": "^7.4|^8.0",
"laravel/nova": ">=4.29.6"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.16"
},
"autoload": {
"psr-4": {
"Lupennat\\NestedMany\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Lupennat\\NestedMany\\NestedManyServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
],
"archive": {
"exclude": ["/.devcontainer", "/.github"]
},
"scripts": {
"php-cs-fixer": "vendor/bin/php-cs-fixer fix",
"build": [
"rm -rf .php-cs-fixer.cache",
"rm -rf composer.lock",
"php install.php",
"composer php-cs-fixer src",
"npm ci",
"npm run format",
"npm run prod"
]
}
}