composer.json 883B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "predis/predis",
  3. "type": "library",
  4. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  5. "keywords": ["nosql", "redis", "predis"],
  6. "homepage": "http://github.com/nrk/predis",
  7. "license": "MIT",
  8. "support": {
  9. "issues": "https://github.com/nrk/predis/issues"
  10. },
  11. "authors": [
  12. {
  13. "name": "Daniele Alessandri",
  14. "email": "suppakilla@gmail.com",
  15. "homepage": "http://clorophilla.net"
  16. }
  17. ],
  18. "require": {
  19. "php": ">=5.3.9"
  20. },
  21. "require-dev": {
  22. "phpunit/phpunit": "~4.8"
  23. },
  24. "suggest": {
  25. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol",
  26. "ext-curl": "Allows access to Webdis when paired with phpiredis"
  27. },
  28. "autoload": {
  29. "psr-4": {"Predis\\": "src/"}
  30. }
  31. }