Skip to content

Commit

Permalink
path
Browse files Browse the repository at this point in the history
  • Loading branch information
TomasVotruba committed Jan 2, 2023
1 parent ed9b400 commit 22dc9d4
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 21 deletions.
21 changes: 0 additions & 21 deletions build/config/config-downgrade.php

This file was deleted.

21 changes: 21 additions & 0 deletions build/rector-downgrade-php-72.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<?php

declare(strict_types=1);

use Rector\Config\RectorConfig;
use Rector\Set\ValueObject\DowngradeLevelSetList;

return static function (RectorConfig $rectorConfig): void {
$rectorConfig->parallel(240, 8, 1);

$rectorConfig->sets([DowngradeLevelSetList::DOWN_TO_PHP_72]);

$rectorConfig->skip([
'*/Tests/*',
'*/tests/*',
__DIR__ . '/../../tests',
# missing "optional" dependency and never used here
'*/symfony/framework-bundle/KernelBrowser.php',
'*/symfony/http-kernel/HttpKernelBrowser.php',
]);
};

0 comments on commit 22dc9d4

Please sign in to comment.