This repository has been archived by the owner on Jul 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 122
/
composer.json
75 lines (75 loc) · 2.11 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "wp-graphql/wp-graphql-acf",
"description": "Advanced Custom Fields bindings for wp-graphql",
"type": "wordpress-plugin",
"license": "GPL-3.0+",
"authors": [{
"name": "jasonbahl",
"email": "jasonbahl@mac.com"
}],
"config": {
"optimize-autoloader": true,
"process-timeout": 0,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"WPGraphQL\\ACF\\": "src/"
},
"classmap": [
"src/"
]
},
"scripts": {
"install-test-env": "bash bin/install-test-env.sh",
"docker-build": "bash bin/run-docker.sh build",
"docker-run": "bash bin/run-docker.sh run",
"docker-destroy": "docker-compose down",
"build-and-run": [
"@docker-build",
"@docker-run"
],
"build-app": "@docker-build -a",
"build-test": "@docker-build -t",
"run-app": "@docker-run -a",
"run-test": "@docker-run -t",
"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"]
},
"require": {
"php": "^7.1 || ^8.0"
},
"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.1",
"wp-coding-standards/wpcs": "2.1.1",
"phpcompatibility/phpcompatibility-wp": "2.1.0",
"squizlabs/php_codesniffer": "3.5.4",
"phpstan/phpstan": "^0.12.64",
"phpunit/phpunit": "^8.5",
"szepeviktor/phpstan-wordpress": "^0.7.1",
"codeception/module-rest": "^1.2",
"wp-graphql/wp-graphql-testcase": "~2.1",
"simpod/php-coveralls-mirror": "^3.0",
"phpstan/extension-installer": "^1.1"
}
}