composer.json 632 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "limen/redisun",
  3. "description": "Make redis manipulations easy. Unify commands for all data types.",
  4. "type": "library",
  5. "keywords": [
  6. "redis",
  7. "lua",
  8. "eval",
  9. "sql",
  10. "orm"
  11. ],
  12. "homepage": "https://github.com/limen/redisun",
  13. "authors": [
  14. {
  15. "name": "LI Mengxiang",
  16. "email": "limengxiang876@gmail.com",
  17. "homepage": "https://github.com/limen"
  18. }
  19. ],
  20. "license": "MIT",
  21. "require": {
  22. "php": ">=5.5",
  23. "predis/predis": "^1.1"
  24. },
  25. "require-dev": {
  26. "phpunit/phpunit": "~4.8"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "Limen\\Redisun\\": "src/"
  31. }
  32. }
  33. }