composer.json
912 Bytes
{
"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.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"
}
}