-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
56 lines (56 loc) · 1.62 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": "thecodingmachine/graphql-controllers",
"description": "Write your GraphQL queries in simple to write controllers (using webonix/graphql-php).",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "David Négrier",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"webonyx/graphql-php": "^0.13",
"psr/container": "^1",
"doctrine/annotations": "^1.2",
"doctrine/cache": "^1.8",
"thecodingmachine/class-explorer": "^1.1",
"psr/simple-cache": "^1",
"phpdocumentor/reflection-docblock": "^4.3",
"phpdocumentor/type-resolver": "^0.4",
"psr/http-message": "^1",
"ecodev/graphql-upload": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^6.1",
"satooshi/php-coveralls": "^1.0",
"symfony/cache": "^4.1.4",
"mouf/picotainer": "^1.1",
"phpstan/phpstan": "^0.11",
"beberlei/porpaginas": "^1.2"
},
"suggest": {
"beberlei/porpaginas": "If you want automatic pagination in your GraphQL types"
},
"autoload": {
"psr-4": {
"TheCodingMachine\\GraphQL\\Controllers\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"TheCodingMachine\\GraphQL\\Controllers\\": "tests/"
}
},
"scripts": {
"phpstan": "phpstan analyse src -c phpstan.neon --level=4 --no-progress -vvv"
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}