-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
66 lines (66 loc) · 1.61 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "crowdsec/remediation-engine",
"description": "The official PHP remediation engine for CrowdSec",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"keywords": [
"security",
"crowdsec",
"rest",
"client",
"curl",
"capi",
"lapi",
"watcher",
"bouncer",
"remediation",
"decision",
"ban",
"captcha"
],
"authors": [
{
"name": "CrowdSec",
"email": "[email protected]"
},
{
"name": "Julien Loizelet",
"homepage": "https://github.com/julienloizelet/",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"CrowdSec\\RemediationEngine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CrowdSec\\RemediationEngine\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.2.5 || ^8.0",
"ext-json": "*",
"symfony/config": "^4.4.27 || ^5.2 || ^6.0",
"symfony/cache": "^5.4.11|| ^6.0.11",
"crowdsec/common": "^2.3.2",
"crowdsec/capi-client": "^3.2.0",
"crowdsec/lapi-client": "^3.3.0",
"monolog/monolog": "^1.17 || ^2.1",
"mlocati/ip-lib": "^1.18",
"geoip2/geoip2": "^2.13.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5.30 || ^9.3",
"mikey179/vfsstream": "^1.6.11",
"ext-curl": "*"
},
"conflict": {
"symfony/cache": "6.2.3 || 6.1.9 || 6.0.17 || 5.4.17"
},
"suggest": {
"ext-curl": "*"
}
}