laravel-mail/composer.json

42 lines
981 B
JSON
Raw Normal View History

2020-04-09 10:56:55 +02:00
{
2020-05-12 17:16:40 +02:00
"name": "bluescale/laravel-mail",
"description": "Send Bluescale Mail templates from your Laravel notifications.",
"keywords": [
"package",
"bluescale",
2020-05-12 17:16:40 +02:00
"bmail",
"mail",
"api",
"template",
"email"
],
2020-05-12 17:16:40 +02:00
"homepage": "https://git.bluesquare.io/bluescale/laravel-mail",
"license": "proprietary",
"authors": [
{
"name": "Bluesquare",
"email": "contact@bluesquare.io",
"homepage": "https://bluesquare.io/",
"role": "Developers"
}
],
"minimum-stability": "dev",
"autoload": {
"psr-4": {
2020-05-12 17:16:40 +02:00
"Bluescale\\Mail\\": "src/"
}
},
2020-04-09 13:08:17 +02:00
"extra": {
"laravel": {
"providers": [
2020-05-12 17:16:40 +02:00
"Bluescale\\Mail\\BluescaleMailServiceProvider"
2020-04-09 13:08:17 +02:00
]
}
},
2020-04-09 10:56:55 +02:00
"require": {
"guzzlehttp/guzzle": "^6.5",
2021-03-09 13:18:30 +01:00
"php": "^7.2 | ^8.0"
},
"prefer-stable": true
2020-04-09 10:56:55 +02:00
}