mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-02-05 17:49:20 +00:00
Bump php to ^8.0, add tooling, linting, fixes
This commit is contained in:
16
rector.php
Normal file
16
rector.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use Rector\Config\RectorConfig;
|
||||
|
||||
return RectorConfig::configure()
|
||||
->withPaths([
|
||||
__DIR__.'/config',
|
||||
__DIR__.'/src',
|
||||
__DIR__.'/tests',
|
||||
])
|
||||
->withPhpSets()
|
||||
->withPreparedSets(deadCode: true, codeQuality: true)
|
||||
->withImportNames(removeUnusedImports: true)
|
||||
->withTypeCoverageLevel(0);
|
||||
Reference in New Issue
Block a user