-
-
Notifications
You must be signed in to change notification settings - Fork 241
Expand file tree
/
Copy pathcomposer.json
More file actions
109 lines (109 loc) · 2.52 KB
/
composer.json
File metadata and controls
109 lines (109 loc) · 2.52 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
{
"name": "johnbillion/query-monitor",
"description": "The Developer Tools panel for WordPress.",
"license": "GPL-2.0-or-later",
"type": "wordpress-plugin",
"authors": [
{
"name": "John Blackbourn",
"homepage": "https://johnblackbourn.com/"
}
],
"homepage": "https://querymonitor.com/",
"support": {
"issues": "https://github.com/johnbillion/query-monitor/issues",
"forum": "https://wordpress.org/support/plugin/query-monitor",
"security": "https://querymonitor.com/security/",
"source": "https://github.com/johnbillion/query-monitor"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/johnbillion"
}
],
"require": {
"php": ">=7.4.0",
"composer/installers": "^1.0 || ^2.0"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "0.7.2",
"guzzlehttp/guzzle": "^7.0",
"johnbillion/plugin-infrastructure": "2.9.0",
"johnbillion/wp-compat": "1.4.0",
"php-stubs/wp-cli-stubs": "2.12.0",
"php-stubs/wordpress-stubs": "6.9.0",
"phpcompatibility/phpcompatibility-wp": "2.1.5",
"phpstan/phpstan": "2.1.46",
"phpstan/phpstan-deprecation-rules": "2.0.4",
"phpstan/phpstan-phpunit": "2.0.16",
"squizlabs/php_codesniffer": "3.11.1",
"szepeviktor/phpstan-wordpress": "2.0.3",
"wp-coding-standards/wpcs": "2.3.0"
},
"autoload": {
"classmap": [
"classes",
"data",
"output"
]
},
"autoload-dev": {
"psr-4": {
"QM\\Tests\\": "tests/integration"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"roots/wordpress-core-installer": true,
"composer/installers": true
},
"classmap-authoritative": true,
"preferred-install": "dist",
"prepend-autoloader": false,
"sort-packages": true
},
"extra": {
"wordpress-install-dir": "vendor/wordpress/wordpress"
},
"scripts": {
"build-vendor": [
"build-vendor"
],
"test": [
"@composer validate --strict --no-check-lock",
"npm run build-schemas",
"npm run typecheck",
"npm run lint",
"@test:phpstan",
"@test:phpcs",
"@test:start",
"@test:integration",
"@test:acceptance",
"@test:stop"
],
"test:acceptance": [
"npm run build #",
"acceptance-tests"
],
"test:integration": [
"integration-tests"
],
"test:phpcs": [
"phpcs -nps --colors --report-code --report-summary --report-width=80 --basepath='./' ."
],
"test:phpstan": [
"phpstan analyze -v --memory-limit=1024M"
],
"test:start": [
"tests-start"
],
"test:stop": [
"tests-stop"
],
"test:destroy": [
"tests-destroy"
]
}
}