composer.json 799 B

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