-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
36 lines (36 loc) · 932 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
{
"name": "sunspikes/php-ratelimiter",
"description": "A framework agnostic rate limiter for PHP",
"keywords": ["rate limit", "throttle", "throttling", "ratelimit", "php-ratelimiter", "Krishnaprasad MG", "sunspikes"],
"license": "MIT",
"authors": [
{
"name": "Krishnaprasad MG",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5",
"desarrolla2/cache": "~2.0"
},
"require-dev": {
"mockery/mockery": "^0.9.4",
"phpunit/phpunit": "^4.7.6",
"scrutinizer/ocular": "^1.1"
},
"autoload": {
"psr-4": {
"Sunspikes\\Ratelimit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sunspikes\\Tests\\Ratelimit\\": "tests/"
}
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true
}