composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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.39",
  22. "ext-mongodb": ">=1.0.0",
  23. "paragonie/random_compat": ">=1"
  24. },
  25. "require-dev": {
  26. "phpunit/phpunit": "4.8.27|~5.7.21|^6.2"
  27. },
  28. "repositories": [
  29. {
  30. "type": "composer",
  31. "url": "https://asset-packagist.org"
  32. }
  33. ],
  34. "autoload": {
  35. "psr-4": { "yii\\mongodb\\": "src" }
  36. },
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "2.1.x-dev"
  40. }
  41. }
  42. }