-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
43 lines (43 loc) · 1.27 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
43
{
"name": "dmitrykazak/magento-google-tag-manager",
"description": "Google Tag Manager (GTM) Extension for Magento 2",
"authors": [{
"name": "Dmitry Kazak",
"email": "dmitry.kazak0@gmail.com"
}],
"homepage": "https://github.com/dmitrykazak/magento-google-tag-manager",
"keywords": [
"magento 2",
"magento2-extension",
"google tag manager",
"tag-manager",
"magento",
"gtm"
],
"require": {
"php": "~7.2.0|~7.3.0"
},
"type": "magento2-module",
"version": "1.1.0",
"license": "MIT",
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"DK\\GoogleTagManager\\": ""
}
},
"scripts": {
"cs:check": [
"wget http://cs.sensiolabs.org/download/php-cs-fixer-v2.phar -O php-cs-fixer",
"chmod a+x php-cs-fixer",
"./php-cs-fixer fix --config=.php_cs.dist -v --allow-risky=yes --dry-run --diff --stop-on-violation"
],
"cs:fix": [
"wget http://cs.sensiolabs.org/download/php-cs-fixer-v2.phar -O php-cs-fixer",
"chmod a+x php-cs-fixer",
"./php-cs-fixer fix --config=.php_cs.dist -v --allow-risky=yes --diff"
]
}
}