diff --git a/composer.json b/composer.json index 15d5719498..e355ae795c 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ "nette/utils": "^4.0.7", "sebastian/diff": "^6.0.2", "squizlabs/php_codesniffer": "^3.13.2", - "symfony/console": "^6.4.23", + "symfony/console": "^6.4.24", "symfony/finder": "^7.3.0", "symplify/coding-standard": "^12.4.3", "symplify/easy-parallel": "^11.2.2", @@ -91,9 +91,6 @@ "patches": { "illuminate/container": [ "patches/illuminate-container-container-php.patch" - ], - "symfony/console": [ - "patches/symfony-console-helper-helper-php.patch" ] } } diff --git a/patches/symfony-console-helper-helper-php.patch b/patches/symfony-console-helper-helper-php.patch deleted file mode 100644 index 5d9205fbb9..0000000000 --- a/patches/symfony-console-helper-helper-php.patch +++ /dev/null @@ -1,18 +0,0 @@ ---- /dev/null -+++ ../Helper/Helper.php -@@ -46,6 +46,7 @@ - public static function width(?string $string): int - { - $string ??= ''; -+ return mb_strlen($string); - - if (preg_match('//u', $string)) { - return (new UnicodeString($string))->width(false); -@@ -65,6 +66,7 @@ - public static function length(?string $string): int - { - $string ??= ''; -+ return mb_strlen($string); - - if (preg_match('//u', $string)) { - return (new UnicodeString($string))->length();