Skip to content

Commit

Permalink
feature symfony#57658 [Notifier] Remove the Gitter bridge (fabpot)
Browse files Browse the repository at this point in the history
This PR was merged into the 7.2 branch.

Discussion
----------

[Notifier] Remove the Gitter bridge

| Q             | A
| ------------- | ---
| Branch?       | 7.2
| Bug fix?      | no
| New feature?  | yes <!-- please update src/**/CHANGELOG.md files -->
| Deprecations? | no <!-- please update UPGRADE-*.md and src/**/CHANGELOG.md files -->
| Issues        | Fix symfony#52862 <!-- prefix each issue number with "Fix #", no need to create an issue if none exists, explain below instead -->
| License       | MIT

The Gitter API does not exist anymore.

Commits
-------

e0a1a90 [Notifier] Remove the Gitter bridge
  • Loading branch information
fabpot committed Jul 6, 2024
2 parents 25b881a + e0a1a90 commit 0d77a05
Show file tree
Hide file tree
Showing 16 changed files with 0 additions and 355 deletions.
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.

83 changes: 0 additions & 83 deletions src/Symfony/Component/Notifier/Bridge/Gitter/GitterTransport.php

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 @@ -138,7 +137,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

0 comments on commit 0d77a05

Please sign in to comment.