-
Notifications
You must be signed in to change notification settings - Fork 75
/
composer.json
41 lines (41 loc) · 1.25 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
{
"name": "noxlogic/ratelimit-bundle",
"description": "This bundle provides functionality to limit calls to actions based on rate limits",
"keywords": [ "x-rate-limit", "api", "rest" ],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Joshua Thijssen",
"email": "jthijssen@noxlogic.nl"
}
],
"require": {
"php": "^8.0",
"symfony/framework-bundle": "^5.4.2|^6.1"
},
"require-dev": {
"symfony/phpunit-bridge": ">=5.4",
"psr/simple-cache": "^1.0|^2.0",
"doctrine/cache": "^1.5",
"psr/cache": "^1.0|^2.0",
"predis/predis": "^0.8|^1.1|^2.0",
"friendsofsymfony/oauth-server-bundle": "^1.5|^2.0@dev"
},
"suggest": {
"snc/redis-bundle": "Use Redis as a storage engine.",
"leaseweb/memcache-bundle": "Use Memcache as a storage engine.",
"doctrine/doctrine-cache-bundle": "Use Doctrine Cache as a storage engine.",
"friendsofsymfony/oauth-server-bundle": "Throttle using OAuth access tokens."
},
"autoload": {
"psr-4": {
"Noxlogic\\RateLimitBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-main": "2.x-dev"
}
}
}