forked from dillingham/nova-attach-many
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 830 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 830 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
30
31
32
33
{
"name": "blendbyte/nova-attach-many",
"description": "BelongsToMany attach UI for Laravel Nova — searchable, validatable, with sync notifications & policy support. Fork of dillingham/nova-attach-many, maintained for Nova 5.",
"keywords": [
"laravel",
"nova"
],
"license": "MIT",
"require": {
"php": "^8.1",
"laravel/nova": "^5.0"
},
"require-dev": {
"laravel/nova-devtool": "^1.0"
},
"autoload": {
"psr-4": {
"NovaAttachMany\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"NovaAttachMany\\Providers\\FieldServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}