composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. "require-dev": {
  25. "phpunit/phpunit": "<7"
  26. },
  27. "repositories": [
  28. {
  29. "type": "composer",
  30. "url": "https://asset-packagist.org"
  31. }
  32. ],
  33. "autoload": {
  34. "psr-4": { "yii\\swiftmailer\\": "src" }
  35. },
  36. "extra": {
  37. "branch-alias": {
  38. "dev-master": "2.1.x-dev"
  39. }
  40. }
  41. }