forked from wp-graphql/wp-graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.5 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
57
58
59
60
61
{
"name": "wp-graphql/wp-graphql",
"description": "GraphQL API for WordPress",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Jason Bahl",
"email": "[email protected]"
},
{
"name": "Edwin Cromley"
},
{
"name": "Ryan Kanner"
},
{
"name": "Hughie Devore"
},
{
"name": "Chris Zarate"
}
],
"require": {
"php": "^7.1||^8.0",
"webonyx/graphql-php": "14.3.0",
"ivome/graphql-relay-php": "0.3.1"
},
"require-dev": {
"lucatume/wp-browser": "^2.4",
"codeception/module-asserts": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-webdriver": "^1.0",
"codeception/module-db": "^1.0",
"codeception/module-filesystem": "^1.0",
"codeception/module-cli": "^1.0",
"codeception/util-universalframework": "^1.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"wp-coding-standards/wpcs": "2.1.1",
"phpcompatibility/phpcompatibility-wp": "2.1.0",
"squizlabs/php_codesniffer": "3.5.4",
"phpstan/phpstan": "^0.12.25",
"szepeviktor/phpstan-wordpress": "^0.7.1",
"codeception/module-rest": "^1.2",
"phpstan/extension-installer": "^1.0"
},
"config": {
"optimize-autoloader": true
},
"autoload": {
"psr-4": {
"WPGraphQL\\": "src/"
}
},
"scripts": {
"phpcs-i": ["phpcs -i"],
"check-cs": ["phpcs"],
"fix-cs": ["phpcbf"],
"phpstan": ["phpstan analyze --ansi --memory-limit=1G"]
}
}