composer.json 770 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "davedevelopment/stiphle",
  3. "type": "library",
  4. "description": "Simple rate limiting/throttling for php",
  5. "keywords": ["throttle", "throttling", "rate limiting", "rate limit"],
  6. "homepage": "http://github.com/davedevelopment/stiphle",
  7. "license": "MIT",
  8. "authors": [{
  9. "name": "Dave Marshall",
  10. "email": "dave.marshall@atstsolutions.co.uk",
  11. "homepage": "http://davedevelopment.co.uk"
  12. }],
  13. "require": {
  14. "php": ">=5.3.1"
  15. },
  16. "suggest": {
  17. "doctrine/cache": "~1.0",
  18. "predis/predis": "~1.1"
  19. },
  20. "autoload": {
  21. "psr-0": {
  22. "Stiphle": "src/"
  23. }
  24. },
  25. "require-dev": {
  26. "phpunit/phpunit": "^5.5",
  27. "predis/predis": "^1.1"
  28. }
  29. }