From 9b07ae1124a29ce52c2ab1990232785a1979fc75 Mon Sep 17 00:00:00 2001 From: W0rma Date: Sat, 3 Aug 2024 12:15:53 +0200 Subject: [PATCH] Update rule sets to PHP 8 + PHPUnit 10 --- .php-cs-fixer.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.php-cs-fixer.php b/.php-cs-fixer.php index 31c6ba72..e63b85f5 100644 --- a/.php-cs-fixer.php +++ b/.php-cs-fixer.php @@ -9,9 +9,9 @@ return (new PhpCsFixer\Config()) ->setRiskyAllowed(true) ->setRules([ - '@PHP71Migration:risky' => true, - '@PHP73Migration' => true, - '@PHPUnit75Migration:risky' => true, + '@PHP80Migration:risky' => true, + '@PHP81Migration' => true, + '@PHPUnit100Migration:risky' => true, 'array_syntax' => ['syntax' => 'short'], 'ordered_imports' => true, 'declare_strict_types' => false,