-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
49 lines (49 loc) · 1.06 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
44
45
46
47
48
49
{
"name": "ildaviz/lunargraphql",
"description": "A PHP library to generate a graph of the Lunar",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "David Galet",
"email": "davidgalet@gmail.com"
}
],
"require": {
"lunarphp/lunar": "^0.7.2",
"nuwave/lighthouse": "^6.22",
"spatie/laravel-package-tools": "^1.16"
},
"autoload": {
"psr-4": {
"Lunargraphql\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Lunargraphql\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Lunargraphql\\LunargraphqlServiceProvider"
]
}
},
"scripts": {
"test": [
"vendor/bin/pest"
]
},
"require-dev": {
"spatie/laravel-ray": "^1.33",
"pestphp/pest": "^2.24",
"orchestra/testbench": "^8.0"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}