-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 901 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 901 Bytes
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
{
"name": "ispconfig/zabbix-monitoring",
"description": "ISPConfig monitoring ecosystem for Zabbix 7.4",
"type": "project",
"license": "MIT",
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-soap": "*",
"ext-openssl": "*"
},
"autoload": {
"psr-4": {
"ISPConfigMonitoring\\": "src/lib/"
}
},
"autoload-dev": {
"psr-4": {
"ISPConfigMonitoring\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"require-dev": {
"phpunit/phpunit": "*",
"phpstan/phpstan": "*",
"friendsofphp/php-cs-fixer": "^3.85",
"ergebnis/composer-normalize": "^2.47",
"ergebnis/php-cs-fixer-config": "^6.51"
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}