symfony new rector-symfony cd rector-symfony composer require rector/rector --dev composer require symfony/orm-pack composer require --dev symfony/maker-bundle
#composer fix-cs #composer phpstan
vi .gitignore git rm --cached .env vi .env mkdir src/rector-testing
vendor/bin/rector process src/rector-testing --dry-run --debug --config rector_src.php
vendor/bin/rector process src/new-rector-testing --dry-run --debug vendor/bin/rector process src/new-rector-testing/SomeClass.php --dry-run --debug vendor/bin/rector process src/new-rector-testing/SymfonyRoute.php --dry-run --debug
vendor/bin/rector process src/rector-testing/SomeFile.php --dry-run --debug --config rector_FinalizeClassesWithoutChildrenRector.php
vendor/bin/rector process src/rector-testing/SomeClass.php --dry-run --debug --config rector_TypedPropertyRector.php
vendor/bin/rector process src/rector-testing/SymfonyRoute.php --dry-run --debug --config rector_AnnotationToAttributeRector.php
vendor/bin/rector process src/rector-testing/SomeAnnotation.php --dry-run --debug --config rector_DoctrineAnnotationClassToAttributeRector.php
vendor/bin/rector process src/rector-testing/SomeAnnotation2.php --dry-run --debug --config rector_DoctrineAnnotationClassToAttributeRector.php
vendor/bin/phpstan analyse src/rector-testing/*