forked from mll-lab/laravel-graphql-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 957 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "mll-lab/laravel-graphql-playground",
"description": "Easily integrate GraphQL Playground into your Laravel project",
"keywords": [
"laravel",
"graphql",
"graphql-playground"
],
"license": "MIT",
"authors": [
{
"name": "Benedikt Franke",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.1.*|5.2.*|5.3.*|5.4.*|5.5.*|5.6.*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.12"
},
"autoload": {
"psr-4": {
"MLL\\GraphQLPlayground\\": "src/"
}
},
"scripts": {
"style": [
"php-cs-fixer fix"
],
"ci": [
"php-cs-fixer fix --dry-run --diff"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"MLL\\GraphQLPlayground\\GraphQLPlaygroundServiceProvider"
]
}
},
"config": {
"sort-packages": true
}
}