-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.35 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
36
37
38
39
40
41
42
{
"name": "tagconcierge/tc-woocommerce-plugin-free",
"description": "Google Tag Manager for WooCommerce",
"type": "wordpress-plugin",
"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",
"wpackagist-plugin/woocommerce": "*"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/installers": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"GtmEcommerceWoo\\Lib\\": "src"
}
},
"repositories": [
{
"type":"composer",
"url":"https://wpackagist.org"
}
],
"scripts": {
"fix": "phpcbf --warning-severity=0 -s --ignore-annotations --extensions=php,html --ignore=*/vendor/* src/ gtm-ecommerce-woo.php",
"check": "phpcs --warning-severity=0 -s --ignore-annotations --extensions=php,html --ignore=*/vendor/* src/ gtm-ecommerce-woo.php"
},
"extra": {
"installer-paths": {
"vendor/{$vendor}/{$name}": ["type:wordpress-plugin"]
}
},
"minimum-stability": "stable",
"prefer-stable": true
}