forked from hawksrl/lighthouse-extended
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.36 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
50
51
52
53
54
55
56
{
"name": "hawksrl/lighthouse-extended",
"description": "Lighthouse extended",
"license": "MIT",
"authors": [
{
"name": "Enzo Notario",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.0",
"bensampo/laravel-enum": "^3.0",
"illuminate/support": "^8.0",
"nuwave/lighthouse": "^5.0|master",
"spatie/laravel-permission": "^4.0",
"spatie/laravel-schemaless-attributes": "^2.0.0",
"hawksrl/laravel-array-rules": "^0.1|dev-master"
},
"require-dev": {
"laravel/legacy-factories": "^1.0.4",
"orchestra/testbench": "^6.0",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Hawk\\LighthouseExtended\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Hawk\\LighthouseExtended\\LighthouseExtendedServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "vcs",
"url": "https://github.com/hawksrl/laravel-array-rules"
}
]
}