forked from brotkrueml/typo3-matomo-widgets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (77 loc) · 1.89 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
70
71
72
73
74
75
76
77
{
"name": "brotkrueml/typo3-matomo-widgets",
"description": "TYPO3 Dashboard widgets with Matomo reports",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3 CMS",
"TYPO3 extension",
"Matomo",
"Dashboard",
"Widgets"
],
"authors": [
{
"name": "Chris Müller",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/brotkrueml/typo3-matomo-widgets/issues",
"source": "https://github.com/brotkrueml/typo3-matomo-widgets",
"docs": "https://docs.typo3.org/p/brotkrueml/typo3-matomo-widgets/main/en-us/"
},
"require": {
"php": ">=8.1",
"symfony/finder": "^6.4 || ^7.0",
"typo3/cms-core": "^12.4 || ^13.3",
"typo3/cms-dashboard": "^12.4 || ^13.3"
},
"require-dev": {
"brotkrueml/coding-standards": "~6.0.0",
"brotkrueml/typo3-matomo-integration": "^1.0 || ^2.0",
"donatj/mock-webserver": "^2.7",
"ergebnis/composer-normalize": "~2.43.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "1.12.4",
"phpunit/phpunit": "^10.5 || ^11.3",
"rector/rector": "1.2.5",
"saschaegerer/phpstan-typo3": "^1.10",
"symfony/yaml": "^6.4 || ^7.0",
"symplify/phpstan-rules": "^13.0",
"tomasvotruba/cognitive-complexity": "^0.2.3"
},
"suggest": {
"brotkrueml/typo3-matomo-integration": "Matomo integration for TYPO3"
},
"autoload": {
"psr-4": {
"Brotkrueml\\MatomoWidgets\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Brotkrueml\\MatomoWidgets\\Tests\\": "Tests"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"bin-dir": ".Build/bin",
"sort-packages": true,
"vendor-dir": ".Build/vendor"
},
"extra": {
"branch-alias": {
"dev-main": "3.1.x-dev"
},
"typo3/cms": {
"extension-key": "matomo_widgets",
"web-dir": ".Build/web"
}
}
}