forked from jaytaph/RateLimitBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 1014 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
{
"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": {
"symfony/framework-bundle": ">=2.3",
"sensio/framework-extra-bundle": ">=2.3"
},
"require-dev": {
"phpunit/phpunit": "4.1.*"
},
"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-0": { "Noxlogic\\RateLimitBundle": "" }
},
"target-dir": "Noxlogic/RateLimitBundle"
}