composer.json 822 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "phpmailer/phpmailer",
  3. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  4. "authors": [
  5. {
  6. "name": "Jim Jagielski",
  7. "email": "jimjag@gmail.com"
  8. },
  9. {
  10. "name": "Marcus Bointon",
  11. "email": "phpmailer@synchromedia.co.uk"
  12. },
  13. {
  14. "name": "Andy Prevost",
  15. "email": "codeworxtech@users.sourceforge.net"
  16. },
  17. {
  18. "name": "Brent R. Matzelle"
  19. }
  20. ],
  21. "require": {
  22. "php": ">=5.0.0"
  23. },
  24. "require-dev": {
  25. "phpdocumentor/phpdocumentor": "*",
  26. "phpunit/phpunit": "*"
  27. },
  28. "autoload": {
  29. "classmap": ["class.phpmailer.php", "class.pop3.php", "class.smtp.php"]
  30. },
  31. "license": "LGPL-2.1"
  32. }