composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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.0.0"
  24. },
  25. "require-dev": {
  26. "phpdocumentor/phpdocumentor": "*",
  27. "phpunit/phpunit": "4.7.*"
  28. },
  29. "suggest": {
  30. "league/oauth2-google": "Needed for Google XOAUTH2 authentication"
  31. },
  32. "autoload": {
  33. "classmap": [
  34. "class.phpmailer.php",
  35. "class.phpmaileroauth.php",
  36. "class.phpmaileroauthgoogle.php",
  37. "class.smtp.php",
  38. "class.pop3.php",
  39. "extras/EasyPeasyICS.php",
  40. "extras/ntlm_sasl_client.php"
  41. ]
  42. },
  43. "license": "LGPL-2.1"
  44. }