-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
59 lines (59 loc) · 1.4 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
{
"name": "automattic/wc-calypso-bridge",
"version": "v2.8.1",
"autoload": {
"files": [
"wc-calypso-bridge.php"
]
},
"repositories": [
{
"type": "package",
"package": {
"name": "automattic/gridicons",
"version": "3.1.1",
"source": {
"url": "https://github.com/Automattic/gridicons",
"type": "git",
"reference": "master"
}
}
}
],
"require-dev": {
"phpunit/phpunit": "^8.0.0",
"squizlabs/php_codesniffer": "*",
"wp-coding-standards/wpcs": "1.1.0",
"woocommerce/woocommerce-sniffs": "*",
"wimg/php-compatibility": "9.0.0",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
"yoast/phpunit-polyfills": "^1.0",
"wp-cli/wp-cli-bundle": "^2.8.1",
"sirbrillig/phpcs-changed": "^2.11",
"composer/installers": "~1.2"
},
"scripts": {
"test": [
"phpunit"
],
"phpcs": [
"phpcs -s -p"
],
"phpcbf": [
"phpcbf -p"
]
},
"extra": {
"scripts-description": {
"test": "Run unit tests",
"phpcs": "Analyze code against the WordPress coding standards with PHP_CodeSniffer",
"phpcbf": "Fix coding standards warnings/errors automatically with PHP Code Beautifier"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}