composer.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "yiisoft/yii2-mongodb",
  3. "description": "MongoDB extension for the Yii framework",
  4. "keywords": ["yii2", "mongo", "mongodb", "active-record", "gridfs"],
  5. "type": "yii2-extension",
  6. "license": "BSD-3-Clause",
  7. "support": {
  8. "issues": "https://github.com/yiisoft/yii2-mongodb/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-mongodb"
  13. },
  14. "authors": [
  15. {
  16. "name": "Paul Klimov",
  17. "email": "klimov.paul@gmail.com"
  18. }
  19. ],
  20. "require": {
  21. "yiisoft/yii2": "~2.0.14",
  22. "ext-mongodb": ">=1.0.0"
  23. },
  24. "repositories": [
  25. {
  26. "type": "composer",
  27. "url": "https://asset-packagist.org"
  28. }
  29. ],
  30. "autoload": {
  31. "psr-4": { "yii\\mongodb\\": "src" }
  32. },
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.1.x-dev"
  36. }
  37. }
  38. }