From 6b086c9bff87fe11f12e2429ea88d7f84e2f92c0 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 4 May 2025 16:57:38 +0200 Subject: [PATCH] Add config for rector. --- .ci/rector.php | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .ci/rector.php diff --git a/.ci/rector.php b/.ci/rector.php new file mode 100644 index 0000000000..f758a43a09 --- /dev/null +++ b/.ci/rector.php @@ -0,0 +1,21 @@ +withPaths([ + __DIR__ . '/../app', + __DIR__ . '/../bootstrap', + __DIR__ . '/../config', + __DIR__ . '/../public', + __DIR__ . '/../resources', + __DIR__ . '/../routes', + __DIR__ . '/../tests', + ]) + // uncomment to reach your current PHP version + ->withPhpSets() + ->withTypeCoverageLevel(0) + ->withDeadCodeLevel(0) + ->withCodeQualityLevel(0);