composer.json 542 B

123456789101112131415161718192021
  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.0"
  17. },
  18. "autoload": {
  19. "psr-0": {"Predis": "lib/"}
  20. }
  21. }