-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
119 lines (119 loc) · 3 KB
/
composer.json
File metadata and controls
119 lines (119 loc) · 3 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
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
109
110
111
112
113
114
115
116
117
118
119
{
"name": "wpengine/wpgraphql-debug-extensions",
"description": "Debug extensions for WPGraphQL",
"type": "library",
"license": "GPL-2.0",
"version": "0.0.3",
"authors": [
{
"name": "WP Engine Headless OSS Development Team",
"email": "headless-oss@wpengine.com",
"homepage": "https://wpengine.com/"
}
],
"require": {
"php": "^7.4 || ^8.0",
"axepress/wp-graphql-plugin-boilerplate": "^0.1.0"
},
"require-dev": {
"axepress/wp-graphql-cs": "^2.0.0",
"axepress/wp-graphql-stubs": "^2.3.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-deprecation-rules": "^2.0.1",
"phpstan/phpstan": "^2.0",
"slevomat/coding-standard": "^8.0",
"phpstan/phpstan-strict-rules": "^2.0",
"php-coveralls/php-coveralls": "^2.5",
"szepeviktor/phpstan-wordpress": "^2.0",
"humanmade/psalm-plugin-wordpress": "^3.1",
"wp-cli/wp-cli-bundle": "^2.8.1",
"wp-graphql/wp-graphql-testcase": "^3.0.1",
"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": "^2.0",
"codeception/module-webdriver": "^1.0",
"codeception/phpunit-wrapper": "^9.0",
"lucatume/wp-browser": "^3.7",
"mockery/mockery": "^1.5"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"cweagans/composer-patches": true
},
"optimize-autoloader": true,
"classmap-authoritative": true,
"process-timeout": 0,
"sort-packages": true
},
"autoload": {
"psr-4": {
"WPGraphQL\\Debug\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HWPStandard\\": "phpcs/HWPStandard",
"WPGraphQL\\Debug\\Rules\\": "phpstan/Rules/"
}
},
"extra": {
"phpstan": {
"includes": [
"phpstan/rules.neon"
]
}
},
"scripts": {
"install-test-env": "bash bin/install-test-env.sh",
"delete-vendor-files": "rm -rf composer.lock vendor",
"docker:build": "bash bin/build-docker.sh",
"docker:start": "@docker:build && @docker:up",
"docker:stop": "docker compose down --volumes",
"docker:up": "sh -c 'composer docker:stop' && docker compose --env-file .env up --detach",
"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"
],
"php:psalm": "psalm",
"php:psalm:info": "psalm --show-info=true",
"php:psalm:fix": "psalm --alter"
},
"archive": {
"name": "wpgraphql-debug-extensions",
"exclude": [
"/.*",
"/assets",
"/bin",
"/composer.lock",
"/docker-compose.yml",
"/examples",
"/package-lock.json",
"/package.json",
"/phpcs",
"/phpstan.neon.dist",
"/plugin-build",
"psalm.xml",
"/README.md",
"/Sniffs"
]
},
"provide": {
"lucatume/wp-browser": "3.7.*"
}
}