-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
34 lines (34 loc) · 1.07 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
{
"name": "maba/gentle-force",
"description": "Library for limiting both brute-force attempts and ordinary requests, using leaky/token bucket algorithm, based on Redis",
"keywords": ["rate limiter", "rate limiting", "rate limit", "brute force protection", "leaky bucket", "token bucket", "threshold", "throttle", "security", "dos protection", "brute-force", "bruteforce"],
"type": "library",
"require": {
"php": "^7.1 | ^8.0",
"predis/predis": "^1.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"phpunit/phpunit": "7.5 | ^8.5 | ^9.5",
"sebastian/comparator": "^3.0 | ^4.0",
"symfony/stopwatch": "^4.4 | ^5.2"
},
"license": "MIT",
"authors": [
{
"name": "Marius Balčytis",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Maba\\GentleForce\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Maba\\GentleForce\\Tests\\": "tests"
}
},
"minimum-stability": "dev"
}