forked from davedevelopment/stiphle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (29 loc) · 770 Bytes
/
composer.json
File metadata and controls
32 lines (29 loc) · 770 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
30
31
32
{
"name": "davedevelopment/stiphle",
"type": "library",
"description": "Simple rate limiting/throttling for php",
"keywords": ["throttle", "throttling", "rate limiting", "rate limit"],
"homepage": "http://github.com/davedevelopment/stiphle",
"license": "MIT",
"authors": [{
"name": "Dave Marshall",
"email": "dave.marshall@atstsolutions.co.uk",
"homepage": "http://davedevelopment.co.uk"
}],
"require": {
"php": ">=5.3.1"
},
"suggest": {
"doctrine/cache": "~1.0",
"predis/predis": "~1.1"
},
"autoload": {
"psr-0": {
"Stiphle": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^5.5",
"predis/predis": "^1.1"
}
}