-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.29 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
{
"name": "hauerheinrich/typo3-monitor-api",
"type": "typo3-cms-extension",
"description": "Hauer-Heinrich - TYPO3 monitor api - allows to retrieve various information about the installed TYPO3 cms (response: json).",
"authors": [
{
"name": "Christian Hackl",
"email": "[email protected]",
"homepage": "http://www.hauer-heinrich.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/Hauer-Heinrich/typo3_monitor_api/issues",
"source": "https://github.com/Hauer-Heinrich/typo3_monitor_api",
"docs": "https://github.com/Hauer-Heinrich/typo3_monitor_api/blob/master/README.md"
},
"version": "1.4.1",
"license": ["GPL-2.0-or-later"],
"keywords": [
"TYPO3 CMS",
"extension",
"hauer-heinrich"
],
"replace": {
"typo3-ter/typo3-monitor-api": "self.version"
},
"require": {
"typo3/cms-core": "^12.4.0"
},
"autoload": {
"psr-4": {
"HauerHeinrich\\Typo3MonitorApi\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"extension-key": "typo3_monitor_api"
}
}
}