-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
28 lines (28 loc) · 825 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
{
"name": "sofyan/wcsdm",
"description": "WooCommerce shipping rates calculator allows you to easily offer shipping rates based on the distance calculated using Google Maps Distance Matrix Service API.",
"type": "wordpress-plugin",
"authors": [
{
"name": "Sofyan Sitorus",
"email": "sofyansitorus@gmail.com"
}
],
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpcompatibility/php-compatibility": "^9.3",
"phpcompatibility/phpcompatibility-wp": "^2.1",
"wp-coding-standards/wpcs": "^2.3",
"dealerdirect/phpcodesniffer-composer-installer": "^0.7.1",
"sirbrillig/phpcs-variable-analysis": "^2.10"
},
"scripts": {
"run-phpcs": "vendor/bin/phpcs",
"run-phpcbf": "vendor/bin/phpcbf"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}