composer.json 527 B

123456789101112131415161718192021222324
  1. {
  2. "name": "colinmollenhour/credis",
  3. "type": "library",
  4. "description": "Credis is a lightweight interface to the Redis key-value store which wraps the phpredis library when available for better performance.",
  5. "homepage": "https://github.com/colinmollenhour/credis",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Colin Mollenhour",
  10. "email": "colin@mollenhour.com"
  11. }
  12. ],
  13. "require": {
  14. "php": ">=5.4.0"
  15. },
  16. "autoload": {
  17. "classmap": [
  18. "Client.php",
  19. "Cluster.php",
  20. "Sentinel.php",
  21. "Module.php"
  22. ]
  23. }
  24. }