composer.json 926 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "nette/mail",
  3. "description": "📧 Nette Mail: handy email creation and transfer library for PHP with both text and MIME-compliant support.",
  4. "keywords": ["nette", "mail", "mailer", "smtp", "mime"],
  5. "homepage": "https://nette.org",
  6. "license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
  7. "authors": [
  8. {
  9. "name": "David Grudl",
  10. "homepage": "https://davidgrudl.com"
  11. },
  12. {
  13. "name": "Nette Community",
  14. "homepage": "https://nette.org/contributors"
  15. }
  16. ],
  17. "require": {
  18. "php": ">=5.6.0",
  19. "ext-iconv": "*",
  20. "nette/utils": "^2.4 || ~3.0.0"
  21. },
  22. "require-dev": {
  23. "nette/di": "^2.4 || ~3.0.0",
  24. "nette/tester": "^2.0",
  25. "tracy/tracy": "^2.4"
  26. },
  27. "conflict": {
  28. "nette/nette": "<2.2"
  29. },
  30. "suggest": {
  31. "ext-fileinfo": "to detect type of attached files"
  32. },
  33. "autoload": {
  34. "classmap": ["src/"]
  35. },
  36. "minimum-stability": "dev",
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "2.4-dev"
  40. }
  41. }
  42. }