composer.json 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. "funding": [
  23. {
  24. "url": "https://github.com/Synchro",
  25. "type": "github"
  26. }
  27. ],
  28. "require": {
  29. "php": ">=5.5.0",
  30. "ext-ctype": "*",
  31. "ext-filter": "*",
  32. "ext-hash": "*"
  33. },
  34. "require-dev": {
  35. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  36. "doctrine/annotations": "^1.2",
  37. "phpcompatibility/php-compatibility": "^9.3.5",
  38. "roave/security-advisories": "dev-latest",
  39. "squizlabs/php_codesniffer": "^3.5.6",
  40. "yoast/phpunit-polyfills": "^0.2.0"
  41. },
  42. "suggest": {
  43. "ext-mbstring": "Needed to send email in multibyte encoding charset",
  44. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  45. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  46. "psr/log": "For optional PSR-3 debug logging",
  47. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  48. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  49. },
  50. "autoload": {
  51. "psr-4": {
  52. "PHPMailer\\PHPMailer\\": "src/"
  53. }
  54. },
  55. "autoload-dev": {
  56. "psr-4": {
  57. "PHPMailer\\Test\\": "test/"
  58. }
  59. },
  60. "license": "LGPL-2.1-only"
  61. }