Never run this tool on production, only on development environment where code is under version control (e.g. git). Always review and test automatic changes before releasing to production.
This repository (ssch/typo3-rector
) is for development TYPO3 Rector only.
Head to rectorphp/rector
for installation.
Apply automatic fixes on your TYPO3 code.
Rector aims to provide instant upgrades and instant refactoring of any PHP 5.3+ code. This project adds rectors specific to TYPO3 to help you migrate between TYPO3 releases or keep your code deprecation free.
- Examples in action
- Overview of all rules
- Installation
- Configuration and Processing
- Best practice guide
- Beyond PHP - Entering the realm of FileProcessors
- Limitations
- Contribution
Please also have a look at the documentation for Rector itself.
Please post questions to TYPO3 Slack (https://typo3.slack.com) in the channel #ext-typo3-rector. Or feel free to open an issue or start a discussion on github.
Many thanks to Tomas Votruba for his on going support and Rector. Many thanks to every other contributor.
Oh, and if you've come down this far, you might as well follow me on twitter.
Rector uses nikic/php-parser, built on technology called an abstract syntax tree (AST). An AST doesn't know about spaces and when written to a file it produces poorly formatted code in both PHP and docblock annotations. That's why your project needs to have a coding standard tool and a set of formatting rules, so it can make Rector's output code nice and shiny again.
We're using ECS with this setup.