-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
43 lines (43 loc) · 1 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
{
"name": "the-3labs-team/nova-busy-resource-field",
"description": "A Laravel Nova field.",
"keywords": [
"laravel",
"nova"
],
"license": "MIT",
"require": {
"php": "^7.3|^8.0",
"laravel/nova": "^5.0",
"outl1ne/nova-translations-loader": "^5.0"
},
"require-dev": {
"laravel/nova-devtool": "^1.0",
"nunomaduro/collision": "^7.8",
"orchestra/testbench": "^8.30|^9.8",
"laravel/pint": "^1.16"
},
"autoload": {
"psr-4": {
"The3labsTeam\\NovaBusyResourceField\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"The3labsTeam\\NovaBusyResourceField\\FieldServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "composer",
"url": "https://nova.laravel.com"
}
]
}