updated custom modules version flag, installed drupal/core-dev and rector

This commit is contained in:
2024-08-20 19:09:09 +02:00
parent e1378a4656
commit 38501ecf4d
19 changed files with 306 additions and 30 deletions

16
rector.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
declare(strict_types=1);
use Rector\Config\RectorConfig;
return RectorConfig::configure()
->withPaths([
__DIR__ . '/drush',
__DIR__ . '/node_modules',
__DIR__ . '/scripts',
__DIR__ . '/web',
])
// uncomment to reach your current PHP version
// ->withPhpSets()
->withTypeCoverageLevel(0);