-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
46 lines (46 loc) · 1.13 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
{
"name": "t3n/graphql-tools",
"description": "A PHP port of apollo graphQL-tools",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/t3n/graphql-tools",
"keywords": [
"graphql",
"graphql-tools"
],
"require": {
"php": ">=7.2",
"webonyx/graphql-php": "~0.13",
"ext-json": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.4.2",
"phpunit/phpunit": "^7.3 || ^8.0",
"react/promise": "^2.7",
"doctrine/coding-standard": "^5.0",
"phpstan/phpstan": "^0.10.5",
"phpstan/phpstan-phpunit": "^0.10.0",
"phpstan/phpstan-strict-rules": "^0.10.1"
},
"autoload": {
"psr-4": {
"GraphQLTools\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GraphQLTools\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Torsten Blindert",
"email": "[email protected]"
}
],
"scripts": {
"test": "phpunit",
"lint": "phpcs",
"static-analysis": "phpstan analyse --ansi"
}
}