-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
64 lines (64 loc) · 1.98 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "inpsyde/google-tag-manager",
"description": "Adds the Google Tag Manager container snippet to your site and populates the Google Tag Manager Data Layer.",
"type": "wordpress-plugin",
"license": "GPL-2.0-or-later",
"minimum-stability": "dev",
"authors": [
{
"name": "Syde GmbH",
"homepage": "https://syde.com/",
"email": "[email protected]",
"role": "Company"
},
{
"name": "Christian Leucht",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"src": "https://github.com/inpsyde/inpsyde-google-tag-manager",
"issues": "https://github.com/inpsyde/inpsyde-google-tag-manager/issues"
},
"require": {
"php": ">=8.1",
"inpsyde/modularity": "~1.7"
},
"require-dev": {
"phpunit/phpunit": "~10",
"syde/phpcs": "1.0.0-rc.1",
"brain/monkey": "^2",
"phpstan/phpstan": "2.1.1",
"szepeviktor/phpstan-wordpress": "^2"
},
"autoload": {
"psr-4": {
"Inpsyde\\GoogleTagManager\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Inpsyde\\GoogleTagManager\\Tests\\Unit\\": "tests/phpunit/Unit/"
}
},
"scripts": {
"cs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"cs:fix": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcbf",
"tests": "@php ./vendor/phpunit/phpunit/phpunit",
"tests:no-cov": "@php ./vendor/phpunit/phpunit/phpunit --no-coverage",
"tests:codecov": "@php ./vendor/phpunit/phpunit/phpunit --coverage-clover coverage.xml",
"qa": [
"@cs",
"@tests:no-cov"
]
},
"suggest": {
"inpsyde/wonolog": "You may want to install Wonolog to enable logging for this package."
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}