composer.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "phpmailer/phpmailer",
  3. "type": "library",
  4. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  5. "authors": [
  6. {
  7. "name": "Marcus Bointon",
  8. "email": "phpmailer@synchromedia.co.uk"
  9. },
  10. {
  11. "name": "Jim Jagielski",
  12. "email": "jimjag@gmail.com"
  13. },
  14. {
  15. "name": "Andy Prevost",
  16. "email": "codeworxtech@users.sourceforge.net"
  17. },
  18. {
  19. "name": "Brent R. Matzelle"
  20. }
  21. ],
  22. "require": {
  23. "php": ">=5.5.0",
  24. "ext-ctype": "*",
  25. "ext-filter": "*"
  26. },
  27. "require-dev": {
  28. "friendsofphp/php-cs-fixer": "^2.2",
  29. "phpunit/phpunit": "^4.8 || ^5.7",
  30. "doctrine/annotations": "^1.2"
  31. },
  32. "suggest": {
  33. "psr/log": "For optional PSR-3 debug logging",
  34. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  35. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  36. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  37. "ext-mbstring": "Needed to send email in multibyte encoding charset",
  38. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  39. },
  40. "autoload": {
  41. "psr-4": {
  42. "PHPMailer\\PHPMailer\\": "src/"
  43. }
  44. },
  45. "autoload-dev": {
  46. "psr-4": {
  47. "PHPMailer\\Test\\": "test/"
  48. }
  49. },
  50. "license": "LGPL-2.1-only"
  51. }