You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

56 lines
1.7 KiB

  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. "phpdocumentor/phpdocumentor": "2.*",
  30. "phpunit/phpunit": "^4.8 || ^5.7",
  31. "zendframework/zend-serializer": "2.7.*",
  32. "doctrine/annotations": "1.2.*",
  33. "zendframework/zend-eventmanager": "3.0.*",
  34. "zendframework/zend-i18n": "2.7.3"
  35. },
  36. "suggest": {
  37. "psr/log": "For optional PSR-3 debug logging",
  38. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  39. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  40. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  41. "ext-mbstring": "Needed to send email in multibyte encoding charset",
  42. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  43. },
  44. "autoload": {
  45. "psr-4": {
  46. "PHPMailer\\PHPMailer\\": "src/"
  47. }
  48. },
  49. "autoload-dev": {
  50. "psr-4": {
  51. "PHPMailer\\Test\\": "test/"
  52. }
  53. },
  54. "license": "LGPL-2.1"
  55. }