This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Mime/composer.json

40 lines
1001 B
JSON
Raw Normal View History

2019-01-14 18:00:11 +00:00
{
"name": "symfony/mime",
"type": "library",
"description": "A library to manipulate MIME messages",
2019-01-14 18:00:11 +00:00
"keywords": ["mime", "mime-type"],
"homepage": "https://symfony.com",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"require": {
2019-05-28 14:10:17 +01:00
"php": "^7.2.9",
"symfony/polyfill-intl-idn": "^1.10",
"symfony/polyfill-mbstring": "^1.0"
2019-01-14 18:00:11 +00:00
},
"require-dev": {
"egulias/email-validator": "^2.0",
2019-05-28 16:41:12 +01:00
"symfony/dependency-injection": "^3.4|^4.1|^5.0"
},
2019-01-14 18:00:11 +00:00
"autoload": {
"psr-4": { "Symfony\\Component\\Mime\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
2019-05-28 13:18:42 +01:00
"dev-master": "5.0-dev"
2019-01-14 18:00:11 +00:00
}
}
}