composer.json 559 B

12345678910111213141516171819202122
  1. {
  2. "name": "predis/predis",
  3. "type": "library",
  4. "description": "Flexible and feature-complete PHP client library for Redis",
  5. "keywords": ["nosql","redis"],
  6. "homepage": "http://github.com/nrk/predis",
  7. "version": "0.7.0-dev",
  8. "license": "MIT",
  9. "authors": [
  10. {
  11. "name": "Daniele Alessandri",
  12. "email": "suppakilla@gmail.com",
  13. "homepage": "http://clorophilla.net"
  14. }
  15. ],
  16. "require": {
  17. "php": ">=5.3.0"
  18. },
  19. "autoload": {
  20. "psr-0": {"Predis": "lib/"}
  21. }
  22. }