-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
43 lines (43 loc) · 1.11 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
{
"name": "crowdsec/magento2-module-bouncer",
"description": "The Bouncer module for Magento 2 allows rejecting IP detected as malicious by CrowdSec",
"type": "magento2-module",
"version": "2.1.1",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "CrowdSec",
"email": "[email protected]"
},
{
"name": "Julien Loizelet",
"homepage": "https://github.com/julienloizelet/",
"role": "Developer"
}
],
"homepage": "https://github.com/crowdsecurity/cs-magento-bouncer",
"keywords": [
"magento",
"magento2",
"extension",
"module",
"crowdsec",
"security",
"bouncer"
],
"require": {
"magento/framework": ">=102",
"crowdsec/bouncer": "^2.1.0",
"swaggest/json-schema": "0.12.39",
"crowdsec/magento-symfony-cache": "1.1.0 || 2.2.0 || 3.0.0"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"CrowdSec\\Bouncer\\": ""
}
}
}