-
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.77 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 1.77 KB
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
{
"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"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
},
"platform": {
"php": "7.4"
},
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"process-timeout": 0
},
"autoload": {
"psr-4": {
"WPGraphQL\\GF\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\WPGraphQL\\GF\\Factory\\": "tests/_support/Factory",
"Tests\\WPGraphQL\\GF\\Helper\\": "tests/_support/Helper",
"Tests\\WPGraphQL\\GF\\TestCase\\": "tests/_support/TestCase"
}
},
"require": {
"php": ">=7.4",
"yahnis-elsts/plugin-update-checker": "^5.2.0"
},
"require-dev": {
"axepress/wp-graphql-cs": "^2.0.0",
"axepress/wp-graphql-stubs": "^2.3.0",
"codeception/module-rest": "^2.0",
"lucatume/wp-browser": "^3.7.0",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0.1",
"szepeviktor/phpstan-wordpress": "^2.0",
"wp-cli/wp-cli-bundle": "^2.12.0",
"wp-graphql/wp-graphql-testcase": "~3.4.0"
},
"scripts": {
"lint": "phpcs",
"format": "phpcbf",
"phpstan": "vendor/bin/phpstan analyse --memory-limit=1G"
}
}