-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
27 lines (27 loc) · 987 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
{
"name": "tagconcierge/gtm-consent-mode-banner-wordpress",
"type": "wordpress-plugin",
"version": "1.0.2",
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"TagConcierge\\ConsentModeBannerFree\\": "src"
}
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1",
"johnpbloch/wordpress-core": "*",
"roave/security-advisories": "dev-latest",
"woocommerce/woocommerce-sniffs": "1.0.0",
"wp-coding-standards/wpcs": "^3"
},
"scripts": {
"fix": "phpcbf --warning-severity=0 -s --ignore-annotations --extensions=php,html --ignore=*/vendor/* src/ gtm-consent-mode-banner.php",
"check": "phpcs --warning-severity=0 -s --ignore-annotations --extensions=php,html --ignore=*/vendor/* src/ gtm-consent-mode-banner.php"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}