-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
72 lines (72 loc) · 1.59 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
{
"name": "jop-software/typo3-loki",
"type": "typo3-cms-extension",
"description": "Grafana Loki integration for TYPO3",
"keywords": [
"TYPO3",
"TYPO3 CMS",
"Loki",
"Grafana",
"Grafana Loki",
"Monitoring",
"Logging",
"Log aggregation"
],
"homepage": "https://jop-software.de",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Johannes Przymusinski",
"email": "[email protected]",
"homepage": "https://jop-software.de",
"role": "Developer"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"typo3/cms-core": "^11.5"
},
"require-dev": {
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.0",
"ssch/typo3-rector": "^1.0",
"saschaegerer/phpstan-typo3": "^1.0",
"squizlabs/php_codesniffer": "^3.6",
"typo3/minimal": "^v11.5.0"
},
"config": {
"bin-dir": ".build/bin",
"optimize-autoloader": true,
"sort-packages": true,
"vendor-dir": ".build/vendor",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"phpstan/extension-installer": true
}
},
"extra": {
"typo3/cms": {
"app-dir": ".build",
"extension-key": "loki",
"web-dir": ".build/public"
}
},
"autoload": {
"psr-4": {
"Jops\\TYPO3\\Loki\\": "Classes"
}
},
"prefer-stable": true,
"scripts": {
"prepare-release": [
"rm -rf .ddev",
"rm -rf .github",
"rm phpcs.xml",
"rm phpstan.neon",
"rm composer.lock",
"rm .gitignore"
]
}
}