composer.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "swiftmailer/swiftmailer",
  3. "type": "library",
  4. "description": "Swiftmailer, free feature-rich PHP mailer",
  5. "keywords": ["mail","mailer","email"],
  6. "homepage": "https://swiftmailer.symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Chris Corbyn"
  11. },
  12. {
  13. "name": "Fabien Potencier",
  14. "email": "fabien@symfony.com"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=7.0.0",
  19. "egulias/email-validator": "~2.0",
  20. "symfony/polyfill-iconv": "^1.0",
  21. "symfony/polyfill-mbstring": "^1.0",
  22. "symfony/polyfill-intl-idn": "^1.10"
  23. },
  24. "require-dev": {
  25. "mockery/mockery": "~0.9.1",
  26. "symfony/phpunit-bridge": "^3.4.19|^4.1.8"
  27. },
  28. "suggest": {
  29. "ext-intl": "Needed to support internationalized email addresses",
  30. "true/punycode": "Needed to support internationalized email addresses, if ext-intl is not installed"
  31. },
  32. "autoload": {
  33. "files": ["lib/swift_required.php"]
  34. },
  35. "autoload-dev": {
  36. "psr-0": { "Swift_": "tests/unit" }
  37. },
  38. "extra": {
  39. "branch-alias": {
  40. "dev-master": "6.2-dev"
  41. }
  42. }
  43. }