From 2705302b78db14efdcfc69514202bdc7378e96fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Pineau?= Date: Thu, 27 Nov 2025 18:07:28 +0100 Subject: [PATCH] [Meta] Allow to use PHP 8.5 with php-cs-fixer --- .php-cs-fixer.dist.php | 1 + 1 file changed, 1 insertion(+) diff --git a/.php-cs-fixer.dist.php b/.php-cs-fixer.dist.php index b6d2355f0..cc7d8b640 100644 --- a/.php-cs-fixer.dist.php +++ b/.php-cs-fixer.dist.php @@ -30,6 +30,7 @@ return (new PhpCsFixer\Config()) // @see https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/pull/7777 ->setParallelConfig(PhpCsFixer\Runner\Parallel\ParallelConfigFactory::detect()) + ->setUnsupportedPhpVersionAllowed(true) ->setRules([ '@Symfony' => true, '@Symfony:risky' => true,