-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 923 Bytes
/
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
{
"name": "snipershady/ratelimiter",
"description": "A free and easy-to-use rate limiter",
"keywords": ["ratelimiter", "ratelimit", "ban"],
"homepage": "https://www.spinfo.it",
"type": "library",
"license": "GPL-3.0-or-later",
"minimum-stability": "stable",
"prefer-stable": true,
"authors": [
{
"name": "Stefano Perrini",
"email": "[email protected]",
"homepage": "https://www.spinfo.it"
}
],
"autoload": {
"psr-4": {
"RateLimiter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RateLimiter\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1",
"ext-apcu": "*",
"ext-redis": "*",
"predis/predis": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.8"
}
}