-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathcomposer.json
108 lines (108 loc) · 3.06 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "harness-software/wp-graphql-gravity-forms",
"description": "Adds WPGraphQL support for Gravity Forms",
"type": "wordpress-plugin",
"license": "GPL-3.0-or-later",
"support": {
"email": "support@axepress.dev",
"issues": "https://github.com/AxeWP/wp-graphql-gravity-forms/issues",
"forum": "https://github.com/AxeWP/wp-graphql-gravity-forms/discussions"
},
"authors": [
{
"name": "AxePress Development",
"email": "support@axepress.dev",
"homepage": "https://axepress.dev"
},
{
"name": "David Levine",
"role": "Lead Developer",
"email": "david@axepress.dev"
}
],
"require": {
"php": ">=7.4",
"yahnis-elsts/plugin-update-checker": "^5.2.0"
},
"require-dev": {
"codeception/lib-innerbrowser": "^1.0",
"codeception/module-asserts": "^1.0",
"codeception/module-cli": "^1.0",
"codeception/module-db": "^1.0",
"codeception/module-filesystem": "^1.0",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-rest": "^1.0",
"codeception/module-webdriver": "^1.0",
"codeception/phpunit-wrapper": "^9.0",
"codeception/util-universalframework": "^1.0",
"lucatume/wp-browser": "<3.5",
"wp-graphql/wp-graphql-testcase": "~3.3.0",
"phpunit/phpunit": "^9.0",
"phpstan/phpstan": "^1.2",
"phpstan/extension-installer": "^1.1",
"szepeviktor/phpstan-wordpress": "^1.0",
"axepress/wp-graphql-stubs": "^1.11.1",
"axepress/wp-graphql-cs": "^2.0.0-beta",
"wp-cli/wp-cli-bundle": "^2.8.1",
"php-coveralls/php-coveralls": "^2.5",
"phpcompatibility/php-compatibility": "dev-develop as 9.99.99"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"platform": {
"php": "7.4"
},
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"process-timeout": 0
},
"autoload": {
"psr-4": {
"WPGraphQL\\GF\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\WPGraphQL\\GF\\": "tests/_support/"
}
},
"scripts": {
"install-test-env": "bash bin/install-test-env.sh",
"install-stan-env": "bash bin/install-stan-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"
],
"fix-cs": [
"php ./vendor/bin/phpcbf"
],
"phpstan": [
"vendor/bin/phpstan analyze --ansi --memory-limit=1G -v"
],
"zip": [
"composer install --no-dev --optimize-autoloader",
"mkdir -p plugin-build/wp-graphql-gravity-forms",
"rsync -rc --exclude-from=.distignore --exclude=plugin-build . plugin-build/wp-graphql-gravity-forms/ --delete --delete-excluded -v",
"cd plugin-build ; zip -r wp-graphql-gravity-forms.zip wp-graphql-gravity-forms",
"rm -rf plugin-build/wp-graphql-gravity-forms/"
]
}
}