forked from harness-software/wp-graphql-posts-to-posts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.3 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
{
"name": "harness-software/wp-graphql-posts-to-posts",
"description": "WPGraphQL for Posts 2 Posts",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Kellen Mace",
"email": "[email protected]"
},
{
"name": "Sean Campbell",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^0.7",
"wp-coding-standards/wpcs": "^2.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"squizlabs/php_codesniffer": "^3.6",
"phpstan/phpstan": "^0.12",
"szepeviktor/phpstan-wordpress": "^0.7",
"phpstan/extension-installer": "^1.1",
"simpod/php-coveralls-mirror": "^3.0",
"poolshark/wp-graphql-stubs": "^0.0.2"
},
"autoload": {
"psr-4": {
"WPGraphQLPostsToPosts\\": "src/"
}
},
"config": {
"optimize-autoloader": true,
"process-timeout": 0
},
"scripts": {
"install-test-env": "bash bin/install-test-env.sh",
"lint": "vendor/bin/phpcs",
"phpcs-i": [
"php ./vendor/bin/phpcs -i"
],
"check-cs": [
"php ./vendor/bin/phpcs src"
],
"fix-cs": [
"php ./vendor/bin/phpcbf src"
],
"phpstan": [
"phpstan analyze --ansi --memory-limit=1G"
]
}
}