-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
39 lines (39 loc) · 987 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
{
"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"
},
"require": {
"php": ">=7.1",
"webonyx/graphql-php": ">=0.13"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"phpunit/phpunit": "^5.7.26 || ^6.0 || ^7.2",
"symfony/expression-language": "^3.4",
"symfony/filesystem": "^3.4",
"symfony/process": "^3.4",
"symfony/yaml": "^3.4"
},
"autoload": {
"psr-4": {
"Overblog\\GraphQLGenerator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Overblog\\GraphQLGenerator\\Tests\\": "tests/"
}
}
}