-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 889 Bytes
/
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
{
"name": "woocommerce/woocommerce-product-tables-feature-plugin",
"description": "WooCommerce product tables feature plugin",
"homepage": "https://github.com/woocommerce/woocommerce-product-tables-feature-plugin",
"type": "wordpress-plugin",
"license": "GPL-3.0+",
"require": {
"php": ">=5.6|>=7.0"
},
"require-dev": {
"phpunit/phpunit": "8.3.5",
"woocommerce/woocommerce-sniffs": "0.0.9"
},
"scripts": {
"test": [
"phpunit"
],
"phpcs": [
"phpcs -s -p"
],
"phpcs-pre-commit": [
"phpcs -s -p -n"
],
"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"
}
}
}