forked from epartment/nova-dependency-container
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 673 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 673 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
{
"name": "epartment/nova-dependency-container",
"description": "A Laravel Nova field container allowing to depend on other fields values",
"keywords": [
"laravel",
"nova"
],
"license": "MIT",
"require": {
"php": ">=7.1.0"
},
"autoload": {
"psr-4": {
"Epartment\\NovaDependencyContainer\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Epartment\\NovaDependencyContainer\\FieldServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}