composer.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. "ext-ctype": "*",
  24. "php": ">=5.0.0"
  25. },
  26. "require-dev": {
  27. "doctrine/annotations": "1.2.*",
  28. "jms/serializer": "0.16.*",
  29. "phpdocumentor/phpdocumentor": "2.*",
  30. "phpunit/phpunit": "4.8.*",
  31. "symfony/debug": "2.8.*",
  32. "symfony/filesystem": "2.8.*",
  33. "symfony/translation": "2.8.*",
  34. "symfony/yaml": "2.8.*",
  35. "zendframework/zend-cache": "2.5.1",
  36. "zendframework/zend-config": "2.5.1",
  37. "zendframework/zend-eventmanager": "2.5.1",
  38. "zendframework/zend-filter": "2.5.1",
  39. "zendframework/zend-i18n": "2.5.1",
  40. "zendframework/zend-json": "2.5.1",
  41. "zendframework/zend-math": "2.5.1",
  42. "zendframework/zend-serializer": "2.5.*",
  43. "zendframework/zend-servicemanager": "2.5.*",
  44. "zendframework/zend-stdlib": "2.5.1"
  45. },
  46. "suggest": {
  47. "league/oauth2-google": "Needed for Google XOAUTH2 authentication"
  48. },
  49. "autoload": {
  50. "classmap": [
  51. "class.phpmailer.php",
  52. "class.phpmaileroauth.php",
  53. "class.phpmaileroauthgoogle.php",
  54. "class.smtp.php",
  55. "class.pop3.php",
  56. "extras/EasyPeasyICS.php",
  57. "extras/ntlm_sasl_client.php"
  58. ]
  59. },
  60. "license": "LGPL-2.1"
  61. }