-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
53 lines (53 loc) · 1.31 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
{
"name": "mll-lab/laravel-graphql-voyager",
"description": "Easily integrate GraphQL Voyager into your Laravel project",
"license": "MIT",
"keywords": [
"laravel",
"graphql",
"graphql-voyager"
],
"authors": [
{
"name": "Benedikt Franke",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4 || ^8",
"illuminate/console": "^8 || ^9 || ^10 || ^11",
"illuminate/contracts": "^8 || ^9 || ^10 || ^11",
"illuminate/support": "^8 || ^9 || ^10 || ^11",
"thecodingmachine/safe": "^1 || ^2"
},
"require-dev": {
"ergebnis/composer-normalize": "^2",
"laravel/lumen-framework": "^8 || ^9 || ^10 || ^11",
"mll-lab/php-cs-fixer-config": "^5",
"nunomaduro/larastan": "^0.7 || ^1 || ^2",
"orchestra/testbench": "^6 || ^7 || ^8 || ^9",
"phpstan/extension-installer": "^1",
"thecodingmachine/phpstan-safe-rule": "^1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"MLL\\GraphQLVoyager\\": "src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"MLL\\GraphQLVoyager\\GraphQLVoyagerServiceProvider"
]
}
}
}