Skip to content

[Notifier] Remove the Gitter bridge #57658

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
Jul 6, 2024
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
Original file line number Diff line number Diff line change
Expand Up @@ -2779,7 +2779,6 @@ private function registerNotifierConfiguration(array $config, ContainerBuilder $
NotifierBridge\FortySixElks\FortySixElksTransportFactory::class => 'notifier.transport_factory.forty-six-elks',
NotifierBridge\FreeMobile\FreeMobileTransportFactory::class => 'notifier.transport_factory.free-mobile',
NotifierBridge\GatewayApi\GatewayApiTransportFactory::class => 'notifier.transport_factory.gateway-api',
NotifierBridge\Gitter\GitterTransportFactory::class => 'notifier.transport_factory.gitter',
NotifierBridge\GoIp\GoIpTransportFactory::class => 'notifier.transport_factory.go-ip',
NotifierBridge\GoogleChat\GoogleChatTransportFactory::class => 'notifier.transport_factory.google-chat',
NotifierBridge\Infobip\InfobipTransportFactory::class => 'notifier.transport_factory.infobip',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
'discord' => Bridge\Discord\DiscordTransportFactory::class,
'fake-chat' => Bridge\FakeChat\FakeChatTransportFactory::class,
'firebase' => Bridge\Firebase\FirebaseTransportFactory::class,
'gitter' => Bridge\Gitter\GitterTransportFactory::class,
'google-chat' => Bridge\GoogleChat\GoogleChatTransportFactory::class,
'line-notify' => Bridge\LineNotify\LineNotifyTransportFactory::class,
'linked-in' => Bridge\LinkedIn\LinkedInTransportFactory::class,
Expand Down
4 changes: 0 additions & 4 deletions src/Symfony/Component/Notifier/Bridge/Gitter/.gitattributes

This file was deleted.

3 changes: 0 additions & 3 deletions src/Symfony/Component/Notifier/Bridge/Gitter/.gitignore

This file was deleted.

7 changes: 0 additions & 7 deletions src/Symfony/Component/Notifier/Bridge/Gitter/CHANGELOG.md

This file was deleted.

This file was deleted.

This file was deleted.

19 changes: 0 additions & 19 deletions src/Symfony/Component/Notifier/Bridge/Gitter/LICENSE

This file was deleted.

23 changes: 0 additions & 23 deletions src/Symfony/Component/Notifier/Bridge/Gitter/README.md

This file was deleted.

This file was deleted.

This file was deleted.

30 changes: 0 additions & 30 deletions src/Symfony/Component/Notifier/Bridge/Gitter/composer.json

This file was deleted.

31 changes: 0 additions & 31 deletions src/Symfony/Component/Notifier/Bridge/Gitter/phpunit.xml.dist

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,6 @@ class UnsupportedSchemeException extends LogicException
'class' => Bridge\GatewayApi\GatewayApiTransportFactory::class,
'package' => 'symfony/gateway-api-notifier',
],
'gitter' => [
'class' => Bridge\Gitter\GitterTransportFactory::class,
'package' => 'symfony/gitter-notifier',
],
'goip' => [
'class' => Bridge\GoIp\GoIpTransportFactory::class,
'package' => 'symfony/go-ip-notifier',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ public static function setUpBeforeClass(): void
Bridge\FortySixElks\FortySixElksTransportFactory::class => false,
Bridge\FreeMobile\FreeMobileTransportFactory::class => false,
Bridge\GatewayApi\GatewayApiTransportFactory::class => false,
Bridge\Gitter\GitterTransportFactory::class => false,
Bridge\GoIp\GoIpTransportFactory::class => false,
Bridge\GoogleChat\GoogleChatTransportFactory::class => false,
Bridge\Infobip\InfobipTransportFactory::class => false,
Expand Down Expand Up @@ -137,7 +136,6 @@ public static function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \
yield ['firebase', 'symfony/firebase-notifier'];
yield ['freemobile', 'symfony/free-mobile-notifier'];
yield ['gatewayapi', 'symfony/gateway-api-notifier'];
yield ['gitter', 'symfony/gitter-notifier'];
yield ['googlechat', 'symfony/google-chat-notifier'];
yield ['infobip', 'symfony/infobip-notifier'];
yield ['iqsms', 'symfony/iqsms-notifier'];
Expand Down
Loading
Loading