composer.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. },
  25. "require-dev": {
  26. "phpdocumentor/phpdocumentor": "2.*",
  27. "phpunit/phpunit": "4.*"
  28. },
  29. "suggest": {
  30. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  31. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  32. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication"
  33. },
  34. "autoload": {
  35. "psr-4": {
  36. "PHPMailer\\PHPMailer\\": "src/"
  37. }
  38. },
  39. "license": "LGPL-2.1"
  40. }