Skip to content

Commit 9f40de7

Browse files
committed
Merge branch '6.4' into 7.1
* 6.4: (23 commits) fix tests using Twig 3.12 skip tests requiring the intl extension if it's not installed 🐛 throw ParseException on invalid date fix permitted data type of the default choice [ExpressionLanguage] Improve test coverage Fix invalid phpdoc in ContainerBuilder [HttpKernel] [WebProfileBundle] Fix Routing panel for URLs with a colon [Form] NumberType: Fix parsing of numbers in exponential notation with negative exponent [Security] consistent singular/plural translation in Dutch reset the validation context after validating nested constraints do not duplicate directory separators fix handling empty data in ValueToDuplicatesTransformer fix compatibility with redis extension 6.0.3+ synchronize unsupported scheme tests [String] Fixed Quorum plural, that was inflected to be only "Quora" and never "Quorums" Fix symfony/kaz-info-teh-notifier package [Validator] review latvian translations [Validator] Add Dutch translation for `WordCount` constraint allow more unicode characters in URL paths [String][EnglishInflector] Fix words ending in 'le', e.g., articles ...
2 parents 17079e5 + 7aa8efe commit 9f40de7

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

Exception/UnsupportedSchemeException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ class UnsupportedSchemeException extends LogicException
118118
],
119119
'kaz-info-teh' => [
120120
'class' => Bridge\KazInfoTeh\KazInfoTehTransportFactory::class,
121-
'package' => 'symfony/symfony/kaz-info-teh-notifier',
121+
'package' => 'symfony/kaz-info-teh-notifier',
122122
],
123123
'lightsms' => [
124124
'class' => Bridge\LightSms\LightSmsTransportFactory::class,

Tests/Exception/UnsupportedSchemeExceptionTest.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,21 +126,26 @@ public static function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \
126126
yield ['bandwidth', 'symfony/bandwidth-notifier'];
127127
yield ['bluesky', 'symfony/bluesky-notifier'];
128128
yield ['brevo', 'symfony/brevo-notifier'];
129+
yield ['chatwork', 'symfony/chatwork-notifier'];
129130
yield ['clickatell', 'symfony/clickatell-notifier'];
130131
yield ['clicksend', 'symfony/click-send-notifier'];
131132
yield ['contact-everyone', 'symfony/contact-everyone-notifier'];
132133
yield ['discord', 'symfony/discord-notifier'];
134+
yield ['engagespot', 'symfony/engagespot-notifier'];
133135
yield ['esendex', 'symfony/esendex-notifier'];
136+
yield ['expo', 'symfony/expo-notifier'];
134137
yield ['fakechat', 'symfony/fake-chat-notifier'];
135138
yield ['fakesms', 'symfony/fake-sms-notifier'];
136139
yield ['firebase', 'symfony/firebase-notifier'];
140+
yield ['forty-six-elks', 'symfony/forty-six-elks-notifier'];
137141
yield ['freemobile', 'symfony/free-mobile-notifier'];
138142
yield ['gatewayapi', 'symfony/gateway-api-notifier'];
139143
yield ['gitter', 'symfony/gitter-notifier'];
140144
yield ['googlechat', 'symfony/google-chat-notifier'];
141145
yield ['infobip', 'symfony/infobip-notifier'];
142146
yield ['iqsms', 'symfony/iqsms-notifier'];
143147
yield ['isendpro', 'symfony/isendpro-notifier'];
148+
yield ['kaz-info-teh', 'symfony/kaz-info-teh-notifier'];
144149
yield ['lightsms', 'symfony/light-sms-notifier'];
145150
yield ['linenotify', 'symfony/line-notify-notifier'];
146151
yield ['linkedin', 'symfony/linked-in-notifier'];
@@ -157,8 +162,11 @@ public static function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \
157162
yield ['ntfy', 'symfony/ntfy-notifier'];
158163
yield ['octopush', 'symfony/octopush-notifier'];
159164
yield ['onesignal', 'symfony/one-signal-notifier'];
165+
yield ['orange-sms', 'symfony/orange-sms-notifier'];
160166
yield ['ovhcloud', 'symfony/ovh-cloud-notifier'];
167+
yield ['pagerduty', 'symfony/pager-duty-notifier'];
161168
yield ['plivo', 'symfony/plivo-notifier'];
169+
yield ['pushover', 'symfony/pushover-notifier'];
162170
yield ['redlink', 'symfony/redlink-notifier'];
163171
yield ['ringcentral', 'symfony/ring-central-notifier'];
164172
yield ['rocketchat', 'symfony/rocket-chat-notifier'];
@@ -181,6 +189,8 @@ public static function messageWhereSchemeIsPartOfSchemeToPackageMapProvider(): \
181189
yield ['twilio', 'symfony/twilio-notifier'];
182190
yield ['twitter', 'symfony/twitter-notifier'];
183191
yield ['unifonic', 'symfony/unifonic-notifier'];
192+
yield ['vonage', 'symfony/vonage-notifier'];
193+
yield ['yunpian', 'symfony/yunpian-notifier'];
184194
yield ['zendesk', 'symfony/zendesk-notifier'];
185195
yield ['zulip', 'symfony/zulip-notifier'];
186196
yield ['goip', 'symfony/go-ip-notifier'];

0 commit comments

Comments
 (0)