composer.json 1.1 KB

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