Instant Upgrades and Automated Refactoring of any PHP 5.3+ code
Go to file
Tomas Votruba 8ef1dfb7af Updated Rector to commit ed8191fb64
ed8191fb64 [Docs] Fixes rector_rules_overview.md docs link in each rules (#92)
2021-05-23 09:33:26 +00:00
.docker Updated Rector to commit dedd4b55fe 2021-05-09 20:15:43 +00:00
.github Updated Rector to commit ddd054ffff 2021-05-20 18:27:23 +00:00
bin Updated Rector to commit ed8191fb64 2021-05-23 09:33:26 +00:00
config Updated Rector to commit ed8191fb64 2021-05-23 09:33:26 +00:00
docs Updated Rector to commit ed8191fb64 2021-05-23 09:33:26 +00:00
e2e Updated Rector to commit 58e7624357 2021-05-11 16:11:30 +00:00
packages Updated Rector to commit ed8191fb64 2021-05-23 09:33:26 +00:00
rules Updated Rector to commit ed8191fb64 2021-05-23 09:33:26 +00:00
src Updated Rector to commit ed8191fb64 2021-05-23 09:33:26 +00:00
templates Move from SETS parameter to explicit import() (#6375) 2021-05-06 20:06:31 +00:00
upgrade Updated Rector to commit ed8191fb64 2021-05-23 09:33:26 +00:00
vendor Updated Rector to commit ed8191fb64 2021-05-23 09:33:26 +00:00
.dockerignore Updated Rector to commit dedd4b55fe 2021-05-09 20:15:43 +00:00
.gitattributes Updated Rector to commit eb82c401dd 2021-05-17 20:30:01 +00:00
bootstrap.php hotfix 2021-05-13 19:16:52 +01:00
CODE_OF_CONDUCT.md Use HTTPS instead of HTTP 2018-02-14 07:23:09 -02:00
composer.json Updated Rector to commit 0728e7ff2d 2021-05-17 13:29:04 +00:00
CONTRIBUTING.md Updated Rector to commit d8b4a92932 2021-05-19 23:43:23 +00:00
Dockerfile Updated Rector to commit dedd4b55fe 2021-05-09 20:15:43 +00:00
LICENSE Update LICENSE year forever 2018-01-02 20:27:07 -02:00
preload.php Updated Rector to commit ddd054ffff 2021-05-20 18:27:23 +00:00
README.md Updated Rector to commit 0b9c95e8d6 2021-05-20 21:20:15 +00:00
UPGRADE.md Add upgrade path to Rector 0.10 - upgrade set included (#6061) 2021-04-09 01:12:42 +00:00

Rector - Instant Upgrades and Automated Refactoring

Downloads


Rector helps you with 2 areas - major code changes and in daily work.

  • Do you have a legacy code base? Do you want to have that latest version of PHP or your favorite framework? → Rector gets you there with instant upgrade.

  • Do you have code quality you need, but struggle to keep it with new developers in your team? Do you wish to have code-reviews for each member of your team, but don't have time for it? → Add Rector to you CI and let it fix your code for you. Get instant feedback after each commit.

It's a tool that we develop and share for free, so anyone can automate their refactoring.

Hire us to speed up learning Rector, AST and nodes, to educate your team about Rectors benefits and to setup Rector in your project, so that you can enjoy the 300 % development speed 👍


Open-Source First

Rector instantly upgrades and refactors the PHP code of your application. It supports all versions of PHP from 5.3 and major open-source projects:


Drupal Rector rules


What Can Rector Do for You?


Documentation

Advanced

Contributing


Install

composer require rector/rector --dev

Running Rector

There a 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 init

And modify it:

// rector.php
use Rector\Php74\Rector\Property\TypedPropertyRector;
use Rector\Set\ValueObject\SetList;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;

return static function (ContainerConfigurator $containerConfigurator): void {
    // here we can define, what sets of rules will be applied
    // tip: use "SetList" class to autocomplete sets
    $containerConfigurator->import(SetList::CODE_QUALITY);

    // register single rule
    $services = $containerConfigurator->services();
    $services->set(TypedPropertyRector::class);
};

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

Note: rector.php is loaded by default. For different location, use --config option.


Configuration

// rector.php
use Rector\Core\Configuration\Option;
use Rector\Core\ValueObject\PhpVersion;
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;

return static function (ContainerConfigurator $containerConfigurator): void {
    $parameters = $containerConfigurator->parameters();

    // paths to refactor; solid alternative to CLI arguments
    $parameters->set(Option::PATHS, [__DIR__ . '/src', __DIR__ . '/tests']);

    // is your PHP version different from the one your refactor to? [default: your PHP version], uses PHP_VERSION_ID format
    $parameters->set(Option::PHP_VERSION_FEATURES, PhpVersion::PHP_72);

    // Run Rector only on changed files
    $parameters->set(Option::ENABLE_CACHE, true);

    // Path to phpstan with extensions, that PHPSTan in Rector uses to determine types
    $parameters->set(Option::PHPSTAN_FOR_RECTOR_PATH, getcwd() . '/phpstan-for-config.neon');
};

How to Contribute

See the contribution guide.


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 a 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);

// dump nested node object with nested properties
dump_node($node);
// 2nd argument is how deep the nesting is - this makes sure the dump is short and useful
dump_node($node, 1);

Known Drawbacks

How to Apply Coding Standards?

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.