-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 925 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
{
"name": "roboroads/lighthouse-settings",
"description": "A Lighthouse plugin to add settings to your graphql",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Roboroads\\LighthouseSettings\\": "src/"
}
},
"authors": [
{
"name": "Robbin Schepers",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"nuwave/lighthouse": ">=5",
"spatie/laravel-settings": ">=2",
"illuminate/support": ">=8"
},
"require-dev": {
"captainhook/captainhook": "^5.10",
"laravel/pint": "^0.2.0"
},
"extra": {
"laravel": {
"providers": [
"Roboroads\\LighthouseSettings\\ServiceProvider"
]
}
},
"archive": {
"exclude": [".github", "captainhook.json", ".idea", "pint.json"]
}
}