-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.03 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.03 KB
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
{
"authors": [
{
"name": "Thomas Gelf",
"email": "thomas@gelf.net"
}
],
"config": {
"sort-packages": true,
"platform": {
"php": "7.4.20"
}
},
"autoload": {
"psr-4": {
"Icinga\\Module\\Eventtracker\\": "library/Eventtracker/"
}
},
"autoload-dev": {
"psr-4": {
"Icinga\\Tests\\Module\\Eventtracker\\": "tests/"
}
},
"require": {
"ext-json": "*",
"ext-iconv": "*",
"ext-posix": "*",
"ext-pcntl": "*",
"ext-fileinfo": "*",
"ext-mbstring": "*",
"ext-pdo": "*",
"ext-soap": "*"
},
"require-dev": {
"php": "^7.4 || ^8.0",
"dragonmantank/cron-expression": "^3.4",
"evenement/evenement": "^3.0",
"gipfl/json": ">=0.2",
"gipfl/zfdbstore": ">=0.4",
"phpstan/phpstan": "^1.4",
"phpunit/phpunit": "^10 || ^9.5",
"psr/log": "^1.1",
"ramsey/uuid": "^4.2",
"react/event-loop": "^1.5",
"react/promise": "^3.2",
"squizlabs/php_codesniffer": "^3.6",
"symplify/easy-coding-standard": "^12"
}
}