-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
62 lines (62 loc) · 1.46 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
62
{
"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": "kellen@harnessup.com"
},
{
"name": "Sean Campbell",
"email": "sean@harnessup.com"
}
],
"require": {
"php": ">=7.4 || ^8.0.0"
},
"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": "^1.8",
"szepeviktor/phpstan-wordpress": "^1.1.2",
"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,
"platform": {
"php": "7.4"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"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"
]
}
}