forked from overblog/GraphQLPhpGenerator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.09 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
{
"name": "overblog/graphql-php-generator",
"type": "library",
"description": "GraphQL types generator",
"keywords": ["GraphQL", "type", "generator"],
"license": "MIT",
"authors": [
{
"name": "Overblog",
"homepage": "http://www.over-blog.com"
}
],
"config" : {
"sort-packages": true,
"bin-dir": "bin",
"preferred-install": {
"webonyx/graphql-php": "source"
}
},
"require": {
"php": "^5.5|~7.0",
"webonyx/graphql-php": "^0.11.2|^0.12.0"
},
"require-dev": {
"fabpot/php-cs-fixer": "^1.11",
"phpunit/phpunit": "^4.1|^5.1",
"sllh/php-cs-fixer-styleci-bridge": "^1.5",
"symfony/expression-language": "^3.3",
"symfony/filesystem": "^3.3",
"symfony/process": "^3.3",
"symfony/yaml": "^3.3"
},
"autoload": {
"psr-4": {
"Overblog\\GraphQLGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Overblog\\GraphQLGenerator\\Tests\\": "tests/"
}
}
}