-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
57 lines (57 loc) · 1.34 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
{
"name": "crowdsec/bouncer",
"description": "The official PHP bouncer library for the CrowdSec Local API",
"type": "library",
"license": "MIT",
"minimum-stability": "stable",
"keywords": [
"security",
"crowdsec",
"waf",
"middleware",
"http",
"blocker",
"bouncer",
"captcha",
"geoip",
"ip",
"ip range",
"appsec"
],
"autoload": {
"psr-4": {
"CrowdSecBouncer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CrowdSecBouncer\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Lucas Cherifi",
"email": "[email protected]"
},
{
"name": "Julien Loizelet",
"homepage": "https://github.com/julienloizelet/",
"role": "Developer"
}
],
"require": {
"php": ">=7.2.5",
"crowdsec/remediation-engine": "^3.5.0",
"crowdsec/common": "^2.3.2",
"symfony/config": "^4.4.27 || ^5.2 || ^6.0",
"twig/twig": "^3.4.2",
"gregwar/captcha": "^1.2.1",
"mlocati/ip-lib": "^1.18",
"ext-json": "*",
"ext-gd": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.5.30 || ^9.3",
"mikey179/vfsstream": "^1.6.11"
}
}