8000 bug #59361 [Mailer] Fix AhaSend composer name (fabpot) · symfony/symfony@d00ae83 · GitHub
[go: up one dir, main page]

Skip to content

Commit d00ae83

Browse files
committed
bug #59361 [Mailer] Fix AhaSend composer name (fabpot)
This PR was merged into the 7.3 branch. Discussion ---------- [Mailer] Fix AhaSend composer name | Q | A | ------------- | --- | Branch? | 7.3 | Bug fix? | yes | New feature? | no <!-- please update src/**/CHANGELOG.md files --> | Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files --> | Issues | | License | MIT Commits ------- 4c820a3 [Mailer] Fix AhaSend composer name
2 parents b4f121a + 4c820a3 commit d00ae83

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

src/Symfony/Component/Mailer/Bridge/AhaSend/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ CHANGELOG
33

44
7.3
55
---
6+
67
* Add the bridge

src/Symfony/Component/Mailer/Bridge/AhaSend/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "symfony/ahasend-mailer",
2+
"name": "symfony/aha-send-mailer",
33
"type": "symfony-mailer-bridge",
44
"description": "Symfony AhaSend Mailer Bridge",
55
"keywords": [],

src/Symfony/Component/Mailer/Exception/UnsupportedSchemeException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class UnsupportedSchemeException extends LogicException
2222
private const SCHEME_TO_PACKAGE_MAP = [
2323
'ahasend' => [
2424
'class' => Bridge\AhaSend\Transport\AhaSendTransportFactory::class,
25-
'package' => 'symfony/ahasend-mailer',
25+
'package' => 'symfony/aha-send-mailer',
2626
],
2727
'azure' => [
2828
'class' => Bridge\Azure\Transport\AzureTransportFactory::class,

src/Symfony/Component/Mailer/Tests/Exception/UnsupportedSchemeExceptionTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ public function testMessageWhereSchemeIsPartOfSchemeToPackageMap(string $scheme,
8181

8282
public static function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \Generator
8383
{
84-
yield ['ahasend', 'symfony/ahasend-mailer'];
84+
yield ['ahasend', 'symfony/aha-send-mailer'];
8585
yield ['azure', 'symfony/azure-mailer'];
8686
yield ['brevo', 'symfony/brevo-mailer'];
8787
yield ['gmail', 'symfony/google-mailer'];

0 commit comments

Comments
 (0)
0