forked from silverstripe/silverstripe-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·39 lines (39 loc) · 1.12 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
{
"name": "silverstripe/graphql",
"description": "GraphQL server for SilverStripe models and other data",
"type": "silverstripe-vendormodule",
"license": "BSD-3-Clause",
"require": {
"silverstripe/framework": "^4.2",
"silverstripe/vendor-plugin": "^1.0",
"webonyx/graphql-php": "~0.12.6"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0"
},
"extra": {
"branch-alias": {
"3.x-dev": "3.2.x-dev"
}
},
"autoload": {
"psr-4": {
"SilverStripe\\GraphQL\\": "src/",
"SilverStripe\\GraphQL\\Tests\\": "tests/"
}
},
"config": {
"process-timeout": 600
},
"scripts": {
"lint": "vendor/bin/phpcs src/ tests/",
"lint-clean": "vendor/bin/phpcbf src/ tests/"
},
"minimum-stability": "dev",
"prefer-stable": true,
"suggest": {
"silverstripe/graphql-devtools": "Adds in-browser tools for testing and debugging GraphQL queries",
"silverstripe/assets": "Allows schema to be cached in the filesystem."
}
}