-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 2.35 KB
/
Copy pathcomposer.json
File metadata and controls
80 lines (80 loc) · 2.35 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
{
"require": {
"automattic/jetpack-autoloader": "^5.0.16",
"automattic/jetpack-config": "^3.1.1",
"automattic/jetpack-connection": "^7.1.1",
"automattic/jetpack-status": "^6.1.2"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"ergebnis/composer-normalize": "^2.50",
"php-parallel-lint/php-console-highlighter": "^1.0.0",
"php-parallel-lint/php-parallel-lint": "^1.4.0",
"php-stubs/wordpress-stubs": "^6.9.1",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.1.39",
"phpunit/phpunit": "^9.6.34",
"sirbrillig/phpcs-variable-analysis": "^2.13.0",
"squizlabs/php_codesniffer": "^3.13",
"woocommerce/qit-cli": "^0.10.0",
"woocommerce/woocommerce-sniffs": "^1.0.1",
"wp-coding-standards/wpcs": "^3.3"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Automattic\\WCServices\\": "src/"
}
},
"config": {
"allow-plugins": {
"automattic/jetpack-autoloader": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"check-security": [
"./vendor/bin/phpcs --standard=./.phpcs.security.xml --report-full --report-summary -s"
],
"check-identity": [
"./vendor/bin/phpcs --standard=./.phpcs.identity.xml --report-full --report-summary -s"
],
"check-php": [
"./vendor/bin/phpcs --standard=./.phpcs.php.xml --report-full --report-summary -s"
],
"check-php:fix": [
"./vendor/bin/phpcbf --standard=./.phpcs.php.xml --report-full --report-summary"
],
"check-all": [
"./vendor/bin/phpcs --standard=./phpcs.xml.dist --report-full --report-summary -s"
],
"check-all:fix": [
"./vendor/bin/phpcbf --standard=./phpcs.xml.dist --report-full --report-summary"
],
"phpcbf": [
"@check-all:fix"
],
"phpcs": [
"@check-all"
],
"qit:security": [
"npm run build && composer install && ./vendor/bin/qit run:security woocommerce-services --zip=woocommerce-services.zip"
],
"qit:woo-api": [
"npm run build && composer install && ./vendor/bin/qit run:woo-api woocommerce-services --zip=woocommerce-services.zip"
],
"test": [
"./tests/bin/run-tests.sh"
],
"test:check": [
"./tests/bin/check-test-env.sh"
],
"test:setup": [
"./tests/bin/install-wc-tests.sh"
]
}
}