composer.json 845 B

123456789101112131415161718192021222324252627282930313233
  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": "Jim Jagielski",
  8. "email": "jimjag@gmail.com"
  9. },
  10. {
  11. "name": "Marcus Bointon",
  12. "email": "phpmailer@synchromedia.co.uk"
  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": "*"
  28. },
  29. "autoload": {
  30. "classmap": ["class.phpmailer.php", "class.pop3.php", "class.smtp.php"]
  31. },
  32. "license": "LGPL-2.1"
  33. }