-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
40 lines (40 loc) · 985 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
{
"name": "digital-creative/custom-relationship-field",
"description": "Emulate HasMany relationship without having a real relationship set between resources",
"keywords": [
"laravel",
"nova",
"nova4",
"relationship",
"has-many",
"custom"
],
"license": "MIT",
"homepage": "https://github.com/dcasia/custom-relationship-field",
"authors": [
{
"name": "Rafael Milewski"
}
],
"require": {
"php": ">=8.0",
"laravel/nova": "^4.0"
},
"autoload": {
"psr-4": {
"DigitalCreative\\CustomRelationshipField\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"DigitalCreative\\CustomRelationshipField\\CustomRelationshipFieldServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}