-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
34 lines (34 loc) · 1.02 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
{
"name": "bedita/graphql",
"type": "cakephp-plugin",
"description": "GraphQL plugin for BEdita",
"keywords": ["graphql", "cakephp", "cake3", "plugin", "bedita"],
"license": "LGPL-3.0",
"support": {
"source": "https://github.com/bedita/graphql",
"issues": "https://github.com/bedita/graphql/issues"
},
"require": {
"bedita/core": "dev-4-cactus",
"bedita/api": "dev-4-cactus",
"webonyx/graphql-php": "~0.10"
},
"require-dev": {
"phpunit/phpunit": "^5.7|^6.0",
"cakephp/cakephp-codesniffer": "~3.0"
},
"autoload": {
"psr-4": {
"BEdita\\GraphQL\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BEdita\\GraphQL\\Test\\": "tests",
"BEdita\\App\\": "tests/test_app/src",
"BEdita\\Core\\Test\\": "./vendor/bedita/core/tests",
"BEdita\\API\\Test\\": "./vendor/bedita/api/tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
}
}