From 2123e0cdcc2f52b8eedb39c3ae4cd7bffd2e465d Mon Sep 17 00:00:00 2001 From: Moshchenko Bohdan Date: Tue, 10 Oct 2023 16:15:47 +0300 Subject: [PATCH 1/2] Updated README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 1525512..3474264 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ Pick one of the rule sets: * [`VisualCraft\PhpCsFixerConfig\RuleSet\Php74`](src/RuleSet/Php74.php) * [`VisualCraft\PhpCsFixerConfig\RuleSet\Php80`](src/RuleSet/Php80.php) * [`VisualCraft\PhpCsFixerConfig\RuleSet\Php81`](src/RuleSet/Php81.php) +* [`VisualCraft\PhpCsFixerConfig\RuleSet\Php82`](src/RuleSet/Php82.php) Create a configuration file `.php-cs-fixer.dist.php` in the root of your project: From 851e30049606b637b1278e065545ec2bafef1f83 Mon Sep 17 00:00:00 2001 From: Moshchenko Bohdan Date: Tue, 10 Oct 2023 16:19:16 +0300 Subject: [PATCH 2/2] Updated README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3474264..be44b57 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ $finder = PhpCsFixer\Finder::create() ]) ; -$config = PhpCsFixerConfig\Factory::fromRuleSet(new PhpCsFixerConfig\RuleSet\Php74()); +$config = PhpCsFixerConfig\Factory::fromRuleSet(new PhpCsFixerConfig\RuleSet\Php82()); $config ->setFinder($finder) ->setCacheFile(__DIR__ . '/.php-cs-fixer.cache')