forked from marketing-factory/typo3_prometheus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (37 loc) · 933 Bytes
/
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
{
"name": "mfc/prometheus",
"type": "typo3-cms-extension",
"description": "Prometheus integration for TYPO3",
"license": "GPL-2.0+",
"keywords": ["typo3", "TYPO3 CMS", "prometheus", "metrics"],
"authors": [
{
"name": "Simon Schmidt",
"email": "typo3@marketing-factory.de",
"role": "Lead Developer"
},
{
"name": "Daniel Klockenkämper",
"email": "typo3@marketing-factory.de",
"role": "Sys Admin"
}
],
"support": {
"email": "typo3@marketing-factory.de",
"issues": "https://github.com/marketing-factory/typo3_prometheus/issues",
"source": "https://github.com/marketing-factory/typo3_prometheus"
},
"require": {
"php": ">=5.6, <8.0",
"typo3/cms-core": ">=7.6.23,<9.0"
},
"replace": {
"prometheus": "self.version",
"mfc/prometheus": "self.version"
},
"autoload": {
"psr-4": {
"Mfc\\Prometheus\\": "Classes/"
}
}
}