forked from jaytaph/RateLimitBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 1.23 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
{
"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": "[email protected]"
}
],
"require": {
"php": "^7.2|^8.0",
"symfony/framework-bundle": "^3.4.23|^4.4|^5.4.2|^6.1",
"sensio/framework-extra-bundle": "^3.0|^4.0|^5.0|^6.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5.31|^9.5",
"psr/simple-cache": "^1.0|^2.0",
"doctrine/cache": "^1.5",
"psr/cache": "^1.0|^2.0",
"predis/predis": "^0.8|^1.1",
"friendsofsymfony/oauth-server-bundle": "^1.5"
},
"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\\": ""
}
}
}