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/Notifier/composer.json

34 lines
788 B
JSON
Raw Normal View History

2019-08-23 21:48:48 +01:00
{
"name": "symfony/notifier",
"type": "library",
"description": "A library to notify messages",
"keywords": ["notifier", "notification"],
"homepage": "https://symfony.com",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "fabien@symfony.com"
},
{
"name": "Symfony Community",
"homepage": "https://symfony.com/contributors"
}
],
"require": {
"php": "^7.2.9"
},
"autoload": {
"psr-4": { "Symfony\\Component\\Notifier\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "5.0-dev"
}
}
}