composer.json 1.1 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|^3.1",
  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": "^1.0",
  26. "symfony/phpunit-bridge": "^4.4|^5.4"
  27. },
  28. "suggest": {
  29. "ext-intl": "Needed to support internationalized email addresses"
  30. },
  31. "autoload": {
  32. "files": ["lib/swift_required.php"]
  33. },
  34. "autoload-dev": {
  35. "psr-0": { "Swift_": "tests/unit" }
  36. },
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "6.2-dev"
  40. }
  41. },
  42. "minimum-stability": "dev",
  43. "prefer-stable": true
  44. }