composer.json 737 B

12345678910111213141516171819202122232425
  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. "suggest": {
  19. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol",
  20. "ext-curl": "Allows access to Webdis when paired with phpiredis"
  21. },
  22. "autoload": {
  23. "psr-0": {"Predis": "lib/"}
  24. }
  25. }