forked from daniel-de-wit/nova-single-record-resource
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
42 lines (42 loc) · 989 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
41
42
{
"name": "markrassamni/nova-resource-landing-page",
"description": "Decide if a resource should open on the index, create, update, or detail page",
"keywords": [
"laravel",
"nova"
],
"homepage": "https://github.com/markrassamni/nova-resource-landing-page",
"type": "library",
"require": {
"php": ">=7.1.0"
},
"require-dev": {
},
"autoload": {
"psr-4": {
"MarkRassamni\\NovaResourceLandingPage\\": "src"
}
},
"autoload-dev": {
"psr-4": {
}
},
"scripts": {
},
"license": "MIT",
"authors": [
{
"name": "Mark",
"email": "markrassamni@me.com"
}
],
"extra": {
"laravel": {
"providers": [
"MarkRassamni\\NovaResourceLandingPage\\Providers\\NovaResourceLandingPageServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}