Instant Upgrades and Automated Refactoring of any PHP 5.3+ code
Go to file
Tomas Votruba 7141ae6e56 Updated Rector to commit 8281a06bc8432d9d7f8e20842e3961df99a277bc
8281a06bc8 [PHP 7.2] Add error suppres support to each() rule (#5844)
2024-04-24 08:56:31 +00:00
.github Updated Rector to commit 8f993b57a88d299f57461169803ddfdab886a892 2024-02-09 16:49:04 +00:00
bin Updated Rector to commit 1d2d51e20ce11d0f603e42bd8869c1ab6d2a52cc 2024-04-09 20:37:51 +00:00
config Updated Rector to commit 0f1987b0faa8dc1c5e086c9b95457d6018b2cd82 2024-04-01 16:51:34 +00:00
docs Updated Rector to commit c860b0cd3976acfd4b05d6929f446a7b50454b52 2024-04-05 18:05:20 +00:00
e2e Updated Rector to commit 476cfb00cb6a94cb64badf9472ee78f33bdf44b3 2024-01-02 02:40:38 +00:00
rules Updated Rector to commit 8281a06bc8432d9d7f8e20842e3961df99a277bc 2024-04-24 08:56:31 +00:00
src Updated Rector to commit 8281a06bc8432d9d7f8e20842e3961df99a277bc 2024-04-24 08:56:31 +00:00
stubs-rector Updated Rector to commit 2aa1c38988c58fda5ae04a5b27fad255eaa2b141 2024-02-08 05:40:02 +00:00
templates Updated Rector to commit 94b5561ca87ee6825a098c7c506b774582bf3354 2024-03-01 20:02:28 +00:00
vendor Updated Rector to commit 8281a06bc8432d9d7f8e20842e3961df99a277bc 2024-04-24 08:56:31 +00:00
.gitattributes Updated Rector to commit 23e4b6631f1686ab59c0ebc962e3c4d8df181e76 2023-07-13 09:14:00 +00:00
CODE_OF_CONDUCT.md Use HTTPS instead of HTTP 2018-02-14 07:23:09 -02:00
CONTRIBUTING.md Updated Rector to commit f8ebe9b56b60f2cea6f5a0f6042aa8a2c844961a 2024-02-16 16:33:51 +00:00
LICENSE Update LICENSE year forever 2018-01-02 20:27:07 -02:00
README.md Updated Rector to commit 0f1987b0faa8dc1c5e086c9b95457d6018b2cd82 2024-04-01 16:51:34 +00:00
bootstrap.php Updated Rector to commit dc22a952fe92e3574a27c8e9e7de3d9aead42a4f 2022-09-01 22:05:56 +00:00
composer.json Updated Rector to commit 83046fcc340c19fc65bc09db25bbc018b01d6f30 2024-03-26 09:28:34 +00:00
preload.php Updated Rector to commit 087f07ae43a3842cf06b257b0ac69e20cac5a14a 2024-03-24 00:29:17 +00:00

README.md

Rector - Instant Upgrades and Automated Refactoring

Downloads


Rector instantly upgrades and refactors the PHP code of your application. It can help you in 2 major areas:

1. Instant Upgrades

Rector now supports upgrades from PHP 5.3 to 8.2 and major open-source projects like Symfony, PHPUnit, and Doctrine. Do you want to be constantly on the latest PHP and Framework without effort?

Use Rector to handle instant upgrades for you.

2. Automated Refactoring

Do you have code quality you need, but struggle to keep it with new developers in your team? Do you want to see smart code-reviews even when every senior developers sleeps?

Add Rector to your CI and let it continuously refactor your code and keep the code quality high.

Read our blogpost to see how to set up automated refactoring.

Install

composer require rector/rector --dev

Running Rector

There are 2 main ways to use Rector:

  • a single rule, to have the change under control
  • or group of rules called sets

To use them, create a rector.php in your root directory:

vendor/bin/rector

And modify it:

use Rector\Config\RectorConfig;
use Rector\TypeDeclaration\Rector\Property\TypedPropertyFromStrictConstructorRector;

return RectorConfig::configure()
    // register single rule
    ->withRules([
        TypedPropertyFromStrictConstructorRector::class
    ])
    // here we can define, what prepared sets of rules will be applied
    ->withPreparedSets(
        deadCode: true,
        codeQuality: true
    );

Then dry run Rector:

vendor/bin/rector process src --dry-run

Rector will show you diff of files that it would change. To make the changes, drop --dry-run:

vendor/bin/rector process src

Documentation


Learn Faster with a Book

Are you curious, how Rector works internally, how to create your own rules and test them and why Rector was born? Read Rector - The Power of Automated Refactoring that will take you step by step through the Rector setup and how to create your own rules.


Empowered by Community ❤️

The Rector community is powerful thanks to active maintainers who take care of Rector sets for particular projects.

Among there projects belong:


Hire us to get Job Done 💪

Rector is a tool that we develop and share for free, so anyone can automate their refactoring. But not everyone has dozens of hours to understand complexity of abstract-syntax-tree in their own time. That's why we provide commercial support - to save your time.

Would you like to apply Rector on your code base but don't have time for the struggle with your project? Hire us to get there faster.


How to Contribute

See the contribution guide or go to development repository rector/rector-src.


Debugging

You can use --debug option, that will print nested exceptions output:

vendor/bin/rector process src/Controller --dry-run --debug

Or with Xdebug:

  1. Make sure Xdebug is installed and configured
  2. Add --xdebug option when running Rector
vendor/bin/rector process src/Controller --dry-run --xdebug

To assist with simple debugging Rector provides 2 helpers to pretty-print AST-nodes:

use PhpParser\Node\Scalar\String_;
$node = new String_('hello world!');

// prints node to string, as PHP code displays it
print_node($node);

Known Drawbacks

  • 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.

  • Rector in parallel mode will work most of the times for most OS. On Windows, you may encounter issues unresolvable despite of following the Troubleshooting Parallel guide. In such case, check if you are using Powershell 7 (pwsh). Change your terminal to command prompt (cmd) or bash for Windows.

How to Apply Coding Standards?

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.

May cause unexpected output on File with mixed PHP+HTML content

When you apply changes to File(s) thas has mixed PHP+HTML content, you may need to manually verify the changed file after apply the changes.