8000 [Mailer] Fix AhaSend composer name by fabpot · Pull Request #59361 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Mailer] Fix AhaSend composer name #59361

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 5, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/Symfony/Component/Mailer/Bridge/AhaSend/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ CHANGELOG

7.3
---

* Add the bridge
2 changes: 1 addition & 1 deletion src/Symfony/Component/Mailer/Bridge/AhaSend/composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "symfony/ahasend-mailer",
"name": "symfony/aha-send-mailer",
"type": "symfony-mailer-bridge",
"description": "Symfony AhaSend Mailer Bridge",
"keywords": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class UnsupportedSchemeException extends LogicException
private const SCHEME_TO_PACKAGE_MAP = [
'ahasend' => [
'class' => Bridge\AhaSend\Transport\AhaSendTransportFactory::class,< A8B6 /td>
'package' => 'symfony/ahasend-mailer',
'package' => 'symfony/aha-send-mailer',
],
'azure' => [
'class' => Bridge\Azure\Transport\AzureTransportFactory::class,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function testMessageWhereSchemeIsPartOfSchemeToPackageMap(string $scheme,

public static function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \Generator
{
yield ['ahasend', 'symfony/ahasend-mailer'];
yield ['ahasend', 'symfony/aha-send-mailer'];
yield ['azure', 'symfony/azure-mailer'];
yield ['brevo', 'symfony/brevo-mailer'];
yield ['gmail', 'symfony/google-mailer'];
Expand Down
0