-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
49 lines (49 loc) · 1.02 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
{
"name": "crowdsec/wordpress-bouncer",
"description": "Wordpress plugin to reject IP detected as malicious by CrowdSec",
"type": "project",
"authors": [
{
"name": "CrowdSec",
"email": "[email protected]"
},
{
"name": "Julien Loizelet",
"homepage": "https://github.com/julienloizelet/",
"role": "Developer"
}
],
"config" : {
"platform": {
"php": "7.2.5"
},
"allow-plugins": {
"cweagans/composer-patches": true
}
},
"require": {
"crowdsec/bouncer": "^3.2.0",
"symfony/cache": "5.4.40",
"symfony/polyfill-mbstring": "^1.31.0",
"symfony/service-contracts": "^2.5.3",
"cweagans/composer-patches": "^1.7"
},
"replace": {
"twig/twig": "*"
},
"autoload": {
"psr-4": {
"CrowdSecWordPressBouncer\\": "./inc/"
}
},
"extra": {
"patches": {
"gregwar/captcha": {
"Fix deprecation in CaptchaBuilder constructor": "patches/gregwar-captcha-constructor.patch"
},
"symfony/cache": {
"Fix auth connection in RedisTrait": "patches/symfony-redis-cache-auth.patch"
}
}
}
}