설명 없음
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.

composer.json 2.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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. "php-parallel-lint/php-console-highlighter": "^0.5.0",
  38. "php-parallel-lint/php-parallel-lint": "^1.3",
  39. "phpcompatibility/php-compatibility": "^9.3.5",
  40. "roave/security-advisories": "dev-latest",
  41. "squizlabs/php_codesniffer": "^3.6.0",
  42. "yoast/phpunit-polyfills": "^1.0.0"
  43. },
  44. "suggest": {
  45. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  46. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  47. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  48. "psr/log": "For optional PSR-3 debug logging",
  49. "stevenmaguire/oauth2-microsoft": "Needed for Microsoft XOAUTH2 authentication",
  50. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)"
  51. },
  52. "autoload": {
  53. "psr-4": {
  54. "PHPMailer\\PHPMailer\\": "src/"
  55. }
  56. },
  57. "autoload-dev": {
  58. "psr-4": {
  59. "PHPMailer\\Test\\": "test/"
  60. }
  61. },
  62. "license": "LGPL-2.1-only",
  63. "scripts": {
  64. "check": "./vendor/bin/phpcs",
  65. "test": "./vendor/bin/phpunit --no-coverage",
  66. "coverage": "./vendor/bin/phpunit",
  67. "lint": [
  68. "@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php,phps --exclude vendor --exclude .git --exclude build"
  69. ]
  70. }
  71. }