mirror of
https://github.com/nextcloud/mail.git
synced 2025-08-16 17:04:19 +00:00
27 lines
437 B
PHP
27 lines
437 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
use Rector\Config\RectorConfig;
|
|
|
|
return RectorConfig::configure()
|
|
->withPaths([
|
|
__DIR__ . '/lib',
|
|
__DIR__ . '/tests',
|
|
])
|
|
->withSkip([
|
|
__DIR__ . '/lib/Vendor'
|
|
])
|
|
->withPreparedSets(
|
|
phpunitCodeQuality: true,
|
|
phpunit: true,
|
|
)
|
|
->withPhpSets(
|
|
php53: true,
|
|
);
|