-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
26 lines (25 loc) · 921 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
{
"name" : "SimonMayerhofer/scarcity-counter",
"description" : "WordPress Plugin for artificial scarcity. Great for marketing purposes.",
"authors" : [
{
"name" : "Simon Mayerhofer",
"email" : "[email protected]",
"homepage": "https://www.mayerhofer.it"
}
],
"type" : "wordpress-plugin",
"config" : {
"vendor-dir": "vendor"
},
"require" : {
},
"require-dev" : {
"squizlabs/php_codesniffer": "3.2.3",
"wp-coding-standards/wpcs" : "0.14.1"
},
"scripts" : {
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths ../../wp-coding-standards/wpcs --config-set ignore_warnings_on_exit 1",
"post-update-cmd" : "\"vendor/bin/phpcs\" --config-set installed_paths ../../wp-coding-standards/wpcs --config-set ignore_warnings_on_exit 1"
}
}