-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
51 lines (51 loc) · 1.18 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
{
"name": "kanti/web-vitals-tracker",
"type": "typo3-cms-extension",
"description": "Real Measurement Web Vitals Statistic for your TYPO3",
"license": [
"GPL-3.0-or-later"
],
"authors": [
{
"name": "Matthias Vogel",
"role": "Developer"
}
],
"autoload": {
"files": [
"compat.php"
],
"psr-4": {
"Kanti\\WebVitalsTracker\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"extension-key": "web_vitals_tracker"
},
"pluswerk/grumphp-config": {
"auto-setting": true
},
"grumphp": {
"config-default-path": "vendor/pluswerk/grumphp-config/grumphp.yml"
}
},
"require": {
"php": "~7.4.0 || ~8.0.0",
"ext-json": "*",
"ocramius/package-versions": "^2.1.0",
"typo3/cms-backend": "^9.0.0 || ^10.0.0 || ^11.0.0",
"typo3/cms-core": "^9.0.0 || ^10.0.0 || ^11.0.0",
"typo3/cms-fluid": "^9.0.0 || ^10.0.0 || ^11.0.0"
},
"require-dev": {
"phpstan/extension-installer": "^1.1.0",
"pluswerk/grumphp-config": "^5.0.0",
"saschaegerer/phpstan-typo3": "^0.13.3",
"typo3/cms-dashboard": "^11.2",
"typo3/tailor": "^1.3.0"
},
"config": {
"sort-packages": true
}
}