8000 [Mailer] drop dev dependency on the HttpClient component by xabbuh · Pull Request #44153 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Mailer] drop dev dependency on the HttpClient component #44153

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
Nov 21, 2021
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
drop dev dependency on the HttpClient component
  • Loading branch information
xabbuh committed Nov 20, 2021
commit b17ab7453c938ac869213b96f1c85d64ceb24ca0
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class GmailTransportFactoryTest extends TransportFactoryTestCase
{
public function getFactory(): TransportFactoryInterface
{
return new GmailTransportFactory($this->getDispatcher(), $this->getClient(), $this->getLogger());
return new GmailTransportFactory($this->getDispatcher(), null, $this->getLogger());
}

public function supportsProvider(): iterable
Expand Down
3 changes: 0 additions & 3 deletions src/Symfony/Component/Mailer/Bridge/Google/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,6 @@
"php": ">=7.1.3",
"symfony/mailer": "^4.4|^5.0"
},
"require-dev": {
"symfony/http-client": "^4.3|^5.0"
},
"autoload": {
"psr-4": { "Symfony\\Component\\Mailer\\Bridge\\Google\\": "" },
"exclude-from-classmap": [
Expand Down
0