forked from lhpalacio/zf2-rate-limit
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
34 lines (34 loc) · 1.05 KB
/
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
{
"name": "belazor/zf-rate-limit",
"description": "A Zend Framework 2 module that lets you define rate limits for your routes.",
"keywords": ["zf2", "zf3-mvc", "zend framework", "rate limit", "throttle", "API rate limit", "apigility"],
"homepage": "https://github.com/belazor/zf-rate-limit",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Fillip Hannisdal",
"email": "fillip@dragonbyte-tech.com",
"homepage": "https://www.dragonbyte-tech.com",
"role": "Developer"
}
],
"extra": {
"zf": {
"module": "Belazor\\RateLimit"
}
},
"require": {
"php": ">5.6",
"zendframework/zend-eventmanager": "^2.6.2 || ^3.0",
"zendframework/zend-http": "^2.5.4",
"zendframework/zend-mvc-i18n": "^1.0",
"zendframework/zend-servicemanager": "^2.7.5 || ^3.0.3",
"zendframework/zend-cache": "^2.7.1"
},
"autoload": {
"psr-4": {
"Belazor\\RateLimit\\": "src/"
}
}
}