composer.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "symfony/mime",
  3. "type": "library",
  4. "description": "A library to manipulate MIME messages",
  5. "keywords": ["mime", "mime-type"],
  6. "homepage": "https://symfony.com",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Fabien Potencier",
  11. "email": "fabien@symfony.com"
  12. },
  13. {
  14. "name": "Symfony Community",
  15. "homepage": "https://symfony.com/contributors"
  16. }
  17. ],
  18. "require": {
  19. "php": "^7.2.5",
  20. "symfony/polyfill-intl-idn": "^1.10",
  21. "symfony/polyfill-mbstring": "^1.0"
  22. },
  23. "require-dev": {
  24. "egulias/email-validator": "^2.1.10",
  25. "symfony/dependency-injection": "^4.4|^5.0"
  26. },
  27. "conflict": {
  28. "symfony/mailer": "<4.4"
  29. },
  30. "autoload": {
  31. "psr-4": { "Symfony\\Component\\Mime\\": "" },
  32. "exclude-from-classmap": [
  33. "/Tests/"
  34. ]
  35. },
  36. "minimum-stability": "dev",
  37. "extra": {
  38. "branch-alias": {
  39. "dev-master": "5.0-dev"
  40. }
  41. }
  42. }