-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
35 lines (35 loc) · 1.36 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
{
"name": "codesolz/woo-variation-swatches-adjacent-products",
"description": "WooCommerce advance similar product suggestion - Wordpress plugin",
"type": "composer-plugin",
"license": "mit",
"authors": [
{
"name": "M.Tuhin",
"email": "info@codesolz.net"
}
],
"scripts": {
"build" : "composer install --no-dev",
"phpcs" : "bash ./vendor/bin/phpcs -i ",
"phpcsCheckError" : "bash ./vendor/bin/phpcs --standard=WordPress ./core ./woo-variation-swatches-adjacent-products.php",
"phpcsFixError" : "bash ./vendor/bin/phpcbf --standard=WordPress ./core ./woo-variation-swatches-adjacent-products.php",
"phpcsCheckPHPDetail" : "bash ./vendor/bin/phpcs --standard=PHPCompatibilityWP -p ./woo-variation-swatches-adjacent-products.php ./core --runtime-set testVersion 7.0-"
},
"autoload": {
"psr-4" : {
"WooVarSwatchesAdjacentProducts\\" : "core/"
},
"files": ["core/install/CheckDependencies.php"]
},
"require": {
"php" : ">=7.0.0"
},
"minimum-stability": "dev",
"require-dev": {
"wp-coding-standards/wpcs": "dev-master",
"dealerdirect/phpcodesniffer-composer-installer": "dev-master",
"phpcompatibility/php-compatibility": "^9.3",
"phpcompatibility/phpcompatibility-wp": "^2.1"
}
}