Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit6ad0169

Browse files
[Intl] deprecate polyfills in favor of symfony/polyfill-intl-icu
1 parent2d7e0b0 commit6ad0169

File tree

43 files changed

+242
-48
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+242
-48
lines changed

‎src/Symfony/Component/Form/composer.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"symfony/intl":"^4.4|^5.0",
2323
"symfony/options-resolver":"^5.1",
2424
"symfony/polyfill-ctype":"~1.8",
25+
"symfony/polyfill-intl-icu":"^1.21",
2526
"symfony/polyfill-mbstring":"~1.0",
2627
"symfony/polyfill-php80":"^1.15",
2728
"symfony/property-access":"^5.0.8",
@@ -48,7 +49,6 @@
4849
"symfony/error-handler":"<4.4.5",
4950
"symfony/framework-bundle":"<4.4",
5051
"symfony/http-kernel":"<4.4",
51-
"symfony/intl":"<4.4",
5252
"symfony/translation":"<4.4",
5353
"symfony/translation-contracts":"<1.1.7",
5454
"symfony/twig-bridge":"<4.4"

‎src/Symfony/Component/Intl/Collator/Collator.php‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@
3232
* @author Bernhard Schussek <bschussek@gmail.com>
3333
*
3434
* @internal
35+
*
36+
* @deprecated since Symfony 5.3, use symfony/polyfill-intl-icu ^1.21 instead
3537
*/
3638
abstractclass Collator
3739
{

‎src/Symfony/Component/Intl/DateFormatter/DateFormat/AmPmTransformer.php‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
* @author Igor Wiedler <igor@wiedler.ch>
1818
*
1919
* @internal
20+
*
21+
* @deprecated since Symfony 5.3, use symfony/polyfill-intl-icu ^1.21 instead
2022
*/
2123
class AmPmTransformerextends Transformer
2224
{

‎src/Symfony/Component/Intl/DateFormatter/DateFormat/DayOfWeekTransformer.php‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
* @author Igor Wiedler <igor@wiedler.ch>
1818
*
1919
* @internal
20+
*
21+
* @deprecated since Symfony 5.3, use symfony/polyfill-intl-icu ^1.21 instead
2022
*/
2123
class DayOfWeekTransformerextends Transformer
2224
{

‎src/Symfony/Component/Intl/DateFormatter/DateFormat/DayOfYearTransformer.php‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
* @author Igor Wiedler <igor@wiedler.ch>
1818
*
1919
* @internal
20+
*
21+
* @deprecated since Symfony 5.3, use symfony/polyfill-intl-icu ^1.21 instead
2022
*/
2123
class DayOfYearTransformerextends Transformer
2224
{

‎src/Symfony/Component/Intl/DateFormatter/DateFormat/DayTransformer.php‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
* @author Igor Wiedler <igor@wiedler.ch>
1818
*
1919
* @internal
20+
*
21+
* @deprecated since Symfony 5.3, use symfony/polyfill-intl-icu ^1.21 instead
2022
*/
2123
class DayTransformerextends Transformer
2224
{

‎src/Symfony/Component/Intl/DateFormatter/DateFormat/FullTransformer.php‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@
2020
* @author Igor Wiedler <igor@wiedler.ch>
2121
*
2222
* @internal
23+
*
24+
* @deprecated since Symfony 5.3, use symfony/polyfill-intl-icu ^1.21 instead
2325
*/
2426
class FullTransformer
2527
{

‎src/Symfony/Component/Intl/DateFormatter/DateFormat/Hour1200Transformer.php‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
* @author Igor Wiedler <igor@wiedler.ch>
1818
*
1919
* @internal
20+
*
21+
* @deprecated since Symfony 5.3, use symfony/polyfill-intl-icu ^1.21 instead
2022
*/
2123
class Hour1200Transformerextends HourTransformer
2224
{

‎src/Symfony/Component/Intl/DateFormatter/DateFormat/Hour1201Transformer.php‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
* @author Igor Wiedler <igor@wiedler.ch>
1818
*
1919
* @internal
20+
*
21+
* @deprecated since Symfony 5.3, use symfony/polyfill-intl-icu ^1.21 instead
2022
*/
2123
class Hour1201Transformerextends HourTransformer
2224
{

‎src/Symfony/Component/Intl/DateFormatter/DateFormat/Hour2400Transformer.php‎

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
* @author Igor Wiedler <igor@wiedler.ch>
1818
*
1919
* @internal
20+
*
21+
* @deprecated since Symfony 5.3, use symfony/polyfill-intl-icu ^1.21 instead
2022
*/
2123
class Hour2400Transformerextends HourTransformer
2224
{

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp