-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1000 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
39
40
41
42
43
44
{
"name": "hauerheinrich/zabbix_monitor",
"description": "TYPO3 Zabbix Monitor",
"type": "typo3-cms-extension",
"homepage": "",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Christian Hackl",
"role": "Developer",
"homepage": "https://groundstack.de"
}
],
"require": {
"typo3/cms-core": "^10.0"
},
"require-dev": {
},
"suggest": {
},
"autoload": {
"psr-4": {
"HauerHeinrich\\ZabbixMonitor\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"HauerHeinrich\\ZabbixMonitor\\Tests\\": "Tests/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web",
"extension-key": "zabbix_monitor"
}
}
}