forked from silverstripe/silverstripe-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·41 lines (41 loc) · 1.08 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
{
"name": "silverstripe/graphql",
"description": "GraphQL server for SilverStripe models and other data",
"type": "silverstripe-vendormodule",
"require": {
"silverstripe/framework": "^4.2",
"silverstripe/vendor-plugin": "^1.0",
"webonyx/graphql-php": "~0.8.0"
},
"require-dev": {
"phpunit/PHPUnit": "^5.7"
},
"extra": {
"branch-alias": {
"2.x-dev": "2.1.x-dev"
}
},
"autoload": {
"psr-4": {
"SilverStripe\\GraphQL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SilverStripe\\GraphQL\\Tests\\": "tests/"
}
},
"config": {
"process-timeout": 600
},
"scripts": {
"lint": "phpcs src/ tests/",
"lint-clean": "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."
}
}