Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.json 996B

123456789101112131415161718192021222324252627282930313233343536373839
  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.1.3",
  20. "symfony/polyfill-intl-idn": "^1.10",
  21. "symfony/polyfill-mbstring": "^1.0"
  22. },
  23. "require-dev": {
  24. "egulias/email-validator": "^2.0",
  25. "symfony/dependency-injection": "~3.4|^4.1"
  26. },
  27. "autoload": {
  28. "psr-4": { "Symfony\\Component\\Mime\\": "" },
  29. "exclude-from-classmap": [
  30. "/Tests/"
  31. ]
  32. },
  33. "minimum-stability": "dev",
  34. "extra": {
  35. "branch-alias": {
  36. "dev-master": "4.3-dev"
  37. }
  38. }
  39. }