mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-11-06 12:18:24 +00:00
- Added `SetList::PHP_80` to `SetList::PHP_84` for advanced PHP version support. - Enhanced compatibility by incorporating broader PHP syntax improvements.
24 lines
762 B
PHP
24 lines
762 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* Chill is a software for social workers
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
use Rector\CodeQuality\Rector\Class_\InlineConstructorDefaultToPropertyRector;
|
|
use Rector\Config\RectorConfig;
|
|
use Rector\Php80\Rector\Class_\AnnotationToAttributeRector;
|
|
use Rector\Set\ValueObject\LevelSetList;
|
|
use Rector\Set\ValueObject\SetList;
|
|
use Rector\Symfony\Set\SymfonySetList;
|
|
|
|
return RectorConfig::configure()
|
|
->withPaths(['./src', './docs', './rector.php'])
|
|
->withComposerBased(twig: true, doctrine: true, symfony: true)
|
|
->withSets([SetList::PHP_80, SetList::PHP_81, SetList::PHP_82, SetList::PHP_83, SetList::PHP_84])
|
|
;
|