-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 815 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 815 Bytes
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
{
"name": "stn/rate-limiting-bundle",
"description": "The bundle for managing request rate limiting",
"type" : "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Santino Wu",
"email": "santinowu.wsq@gmail.com"
}
],
"homepage": "https://github.com/Santino-Wu/StnRateLimitingBundle",
"keywords" : [ "symfony", "api", "bundle", "rate-limiting" ],
"require": {
"php": ">=5.3.9",
"predis/predis": "~1.1",
"sensio/framework-extra-bundle": "^3.0.13",
"symfony/framework-bundle": "^2.7|^3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.8"
},
"target-dir" : "Stn/RateLimitingBundle",
"autoload" : {
"psr-0" : {
"Stn\\RateLimitingBundle" : ""
}
}
}