-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathcomposer.json
36 lines (32 loc) · 912 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": "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": "[email protected]",
"homepage": "http://davedevelopment.co.uk"
}],
"require": {
"php": "^5.6.0|^7.0|^8.0"
},
"suggest": {
"doctrine/cache": "~1.0",
"predis/predis": "~1.1",
"zendframework/zend-cache": "^2.8"
},
"autoload": {
"psr-0": {
"Stiphle": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^6.5|^7.5|^8.4",
"predis/predis": "^1.1",
"doctrine/cache": "^1.0",
"zendframework/zend-cache": "^2.8"
}
}