forked from AOEpeople/TYPO3-Google-Tag-Manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 2.28 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
65
66
67
68
69
{
"name": "aoe/google-tag-manager",
"description": "Extension that creates an interface for Google Tag Manager",
"type": "typo3-cms-extension",
"homepage": "https://github.com/AOEpeople/TYPO3-Google-Tag-Manager",
"license": "GPL-3.0",
"support": {
"email": "[email protected]",
"issues": "https://github.com/AOEpeople/TYPO3-Google-Tag-Manager/issues",
"source": "https://github.com/AOEpeople/TYPO3-Google-Tag-Manager"
},
"authors": [
{
"name": "AOE GmbH",
"email": "[email protected]",
"homepage": "http://www.aoe.com"
}
],
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"require": {
"php": ">=5.5",
"typo3/cms-core": "^7.6 || ^8.7 || ^9.5",
"typo3/cms-extbase": "^7.6 || ^8.7 || ^9.5",
"typo3/cms-fluid": "^7.6 || ^8.7 || ^9.5"
},
"require-dev": {
"nimut/testing-framework": "^2.0 || ^4.0",
"phpunit/phpcov": "^3.1 || ^4.0",
"squizlabs/php_codesniffer": "*",
"sebastian/phpcpd": "*",
"phpmd/phpmd": "*"
},
"autoload": {
"psr-4": {
"Aoe\\GoogleTagManager\\": "Classes/"
}
},
"replace": {
"google_tag_manager": "self.version"
},
"scripts": {
"post-autoload-dump": [
"mkdir -p .Build/Web/typo3conf/ext/",
"[ -L .Build/Web/typo3conf/ext/google_tag_manager ] || ln -snvf ../../../../. .Build/Web/typo3conf/ext/google_tag_manager"
],
"test:unit": [
"[ -e '.Build/bin/phpunit' ] || composer update",
"TYPO3_PATH_ROOT=$(pwd)/.Build/Web .Build/bin/phpunit --colors -c .Build/vendor/nimut/testing-framework/res/Configuration/UnitTests.xml Tests/Unit"
],
"test:functional": [
"[ -e '.Build/bin/phpunit' ] || composer update",
"TYPO3_PATH_ROOT=$(pwd)/.Build/Web .Build/bin/phpunit --colors -c .Build/vendor/nimut/testing-framework/res/Configuration/FunctionalTests.xml Tests/Functional"
]
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"keywords": [
"TYPO3",
"extbase",
"google-tag-manager"
]
}