composer.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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-only", "GPL-3.0-only"],
  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": ">=7.1 <8.3",
  19. "ext-iconv": "*",
  20. "nette/utils": "^3.1 || ~4.0.0"
  21. },
  22. "require-dev": {
  23. "nette/di": "^3.0.0",
  24. "nette/tester": "^2.0",
  25. "tracy/tracy": "^2.4",
  26. "phpstan/phpstan-nette": "^0.12"
  27. },
  28. "conflict": {
  29. "nette/di": "<3.0-stable"
  30. },
  31. "suggest": {
  32. "ext-fileinfo": "to detect type of attached files",
  33. "ext-openssl": "to use Nette\\Mail\\DkimSigner"
  34. },
  35. "autoload": {
  36. "classmap": ["src/"]
  37. },
  38. "minimum-stability": "dev",
  39. "scripts": {
  40. "phpstan": "phpstan analyse",
  41. "tester": "tester tests -s"
  42. },
  43. "extra": {
  44. "branch-alias": {
  45. "dev-master": "3.1-dev"
  46. }
  47. }
  48. }