composer.json 850 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "txthinking/mailer",
  3. "type": "library",
  4. "keywords": ["mail", "smtp"],
  5. "description": "A very lightweight PHP SMTP mail sender",
  6. "license": "MIT",
  7. "homepage": "http://github.com/txthinking/Mailer",
  8. "authors": [
  9. {
  10. "name": "Cloud",
  11. "email": "cloud@txthinking.com",
  12. "homepage": "http://www.txthinking.com",
  13. "role": "Thinker"
  14. },
  15. {
  16. "name": "Matt Sowers",
  17. "email": "msowers@erblearn.org"
  18. }
  19. ],
  20. "require": {
  21. "php": ">=5.3.2",
  22. "psr/log": "~1.0"
  23. },
  24. "require-dev": {
  25. "phpunit/phpunit": "~4.0",
  26. "monolog/monolog": "~1.13"
  27. },
  28. "autoload": {
  29. "psr-4": {
  30. "Tx\\": "src/"
  31. }
  32. },
  33. "autoload-dev": {
  34. "classmap": [
  35. "tests/TestCase.php"
  36. ]
  37. }
  38. }