composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "yiisoft/yii2-redis",
  3. "description": "Redis Cache, Session and ActiveRecord for the Yii framework",
  4. "keywords": ["yii2", "redis", "active-record", "cache", "session"],
  5. "type": "yii2-extension",
  6. "license": "BSD-3-Clause",
  7. "support": {
  8. "issues": "https://github.com/yiisoft/yii2-redis/issues",
  9. "forum": "http://www.yiiframework.com/forum/",
  10. "wiki": "http://www.yiiframework.com/wiki/",
  11. "irc": "irc://irc.freenode.net/yii",
  12. "source": "https://github.com/yiisoft/yii2-redis"
  13. },
  14. "authors": [
  15. {
  16. "name": "Carsten Brandt",
  17. "email": "mail@cebe.cc"
  18. }
  19. ],
  20. "require": {
  21. "yiisoft/yii2": "~2.0.14"
  22. },
  23. "autoload": {
  24. "psr-4": { "yii\\redis\\": "src" }
  25. },
  26. "autoload-dev": {
  27. "psr-4": { "yiiunit\\extensions\\redis\\": "tests/"}
  28. },
  29. "extra": {
  30. "branch-alias": {
  31. "dev-master": "2.0.x-dev"
  32. }
  33. },
  34. "repositories": [
  35. {
  36. "type": "composer",
  37. "url": "https://asset-packagist.org"
  38. }
  39. ],
  40. "require-dev": {
  41. "yiisoft/yii2-dev": "~2.0.14"
  42. }
  43. }