-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
43 lines (43 loc) · 1.09 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": "daniel-de-wit/nova-single-record-resource",
"description": "Laravel Nova Single Record Resource. Shows a link in the navigation bar directly to the only record of the resource",
"keywords": [
"Laravel",
"Nova"
],
"homepage": "https://github.com/daniel-de-wit/nova-single-record-resource",
"license": "MIT",
"authors": [
{
"name": "Daniël de Wit",
"email": "[email protected]",
"homepage": "https://github.com/daniel-de-wit",
"role": "Maintainer"
}
],
"require": {
"php": ">=7.1.0"
},
"require-dev": {
},
"autoload": {
"psr-4": {
"DanielDeWit\\NovaSingleRecordResource\\": "src"
}
},
"autoload-dev": {
"psr-4": {
}
},
"scripts": {
},
"extra": {
"laravel": {
"providers": [
"DanielDeWit\\NovaSingleRecordResource\\Providers\\NovaSingleRecordResourceServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}