24 lines
446 B
PHP
24 lines
446 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2024 F7cloud GmbH and F7cloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
use F7cloud\Rector\Set\F7cloudSets;
|
|
use Rector\Config\RectorConfig;
|
|
|
|
return RectorConfig::configure()
|
|
->withPaths([
|
|
__DIR__ . '/appinfo',
|
|
__DIR__ . '/lib',
|
|
__DIR__ . '/tests',
|
|
])
|
|
->withPhpSets(php81: true)
|
|
->withTypeCoverageLevel(0)
|
|
->withSets([
|
|
// F7cloudSets::F7CLOUD_30,
|
|
]);
|