-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 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
35
36
37
38
39
40
{
"name": "wpengine/wp-graphql-filter-query",
"description": "Filters and aggregates for wp-graphql",
"config": {
"platform": {
"php": "7.4.23"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"authors": [
{
"name": "WP Engine",
"email": "atlas@wpengine.com"
}
],
"require-dev": {
"phpunit/phpunit": "^7",
"yoast/phpunit-polyfills": "^1.0",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"phpcompatibility/phpcompatibility-wp": "^2.1.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.2",
"squizlabs/php_codesniffer": "^3.6.0",
"wp-coding-standards/wpcs": "^2.3.0",
"wp-graphql/wp-graphql": "^1.8",
"spatie/phpunit-watcher": "^1.23"
},
"scripts": {
"phpunit": "vendor/bin/phpunit",
"lint": "vendor/bin/parallel-lint --exclude .git --exclude app --exclude vendor .",
"phpcs": "phpcs",
"phpcs:fix": "phpcbf",
"suite": [
"@lint",
"@phpcs",
"@test"
]
}
}