Instant Upgrades and Automated Refactoring of any PHP 5.3+ code
Go to file
2021-04-29 19:55:03 +02:00
.docker [Docker] Support multiple PHP versions for xdebug + blackfire images (#5760) 2021-03-03 18:48:43 +01:00
.github skip examples in linter 2021-04-24 16:32:37 +02:00
bin add preload in build 2021-04-29 19:55:03 +02:00
build add preload in build 2021-04-29 19:55:03 +02:00
config [TypeDeclaration] Traverse the param node that is changed in ParamTypeFromStrictTypedPropertyRector (#6260) 2021-04-28 20:33:20 +00:00
docs [TypeDeclaration] Traverse the param node that is changed in ParamTypeFromStrictTypedPropertyRector (#6260) 2021-04-28 20:33:20 +00:00
packages [Downgrade 7.2] Fix DowngradeStreamIsattyRector with return (#6266) 2021-04-29 13:58:00 +00:00
packages-tests Add AbstractTestCase (#6205) 2021-04-22 21:36:50 +00:00
rules [Downgrade 7.2] Fix DowngradeStreamIsattyRector with return (#6266) 2021-04-29 13:58:00 +00:00
rules-tests [Downgrade 7.2] Fix DowngradeStreamIsattyRector with return (#6266) 2021-04-29 13:58:00 +00:00
src [TypeDeclaration] Traverse the param node that is changed in ParamTypeFromStrictTypedPropertyRector (#6260) 2021-04-28 20:33:20 +00:00
stubs Refactor doctrine/annotation from dynamic to own static-reflection parser (#5974) 2021-04-04 11:01:11 +02:00
templates [RectorGenerator] Decouple to external package (#5825) 2021-03-12 20:13:27 +01:00
tests Decouple Rector PHPStan rules to own package (#6242) 2021-04-25 23:12:14 +00:00
upgrade Add setter/getter factory (#6219) 2021-04-23 18:14:51 +00:00
utils fixing version in scoped 2021-04-29 12:36:11 +02:00
.dockerignore Build "scoped" Docker images in GitHub Actions (#5667) 2021-03-02 14:25:39 +01:00
.editorconfig cleanup 2020-04-03 13:24:44 +02:00
.gitattributes [GitAttributes] Add phpstan-for-rector.neon to .gitattributes (#5986) 2021-03-25 22:14:20 +01:00
.gitignore [CI] Downgrade Rector to PHP 7.1 + prefix it (#5880) 2021-03-18 02:48:44 +01:00
.phpstorm.meta.php Make use of File object instead of passing around provider of file info, tokens, stmts etc. (#6110) 2021-04-13 00:12:48 +00:00
CHANGELOG.md [DeadCode] Remove duplicated RemoveUnusedPrivateConstantRector (#6151) 2021-04-15 23:38:44 +02:00
CODE_OF_CONDUCT.md Use HTTPS instead of HTTP 2018-02-14 07:23:09 -02:00
composer.json try prefixd 2021-04-29 11:00:02 +02:00
CONTRIBUTING.md Move contributing guide to its own file 2020-03-21 14:22:10 +01:00
Dockerfile [prefixed] rector dump-autoload, need if box is not used 2021-04-22 21:10:32 +02:00
ecs.php Decouple Rector PHPStan rules to own package (#6242) 2021-04-25 23:12:14 +00:00
full_build.sh use portable shebang 2021-04-22 21:12:02 +02:00
LICENSE Update LICENSE year forever 2018-01-02 20:27:07 -02:00
phpstan-for-rector.neon Decouple Rector PHPStan rules to own package (#6242) 2021-04-25 23:12:14 +00:00
phpstan.neon [PHPStan] Resolve dependency juggling (#6258) 2021-04-28 09:33:25 +00:00
phpunit.xml phpunit: run defect first 2021-04-25 15:46:45 +02:00
preload.php add preload in build 2021-04-29 19:55:03 +02:00
README.md [TASK] Add template type option for init command (#6233) 2021-04-25 21:43:59 +02:00
rector-testing.php [Downgrade PHP 7.2] Make covariant change local methods only (#6218) 2021-04-23 17:54:30 +00:00
rector.php make ComposerFileProcessor run on non-root paths of composer.json (#6111) 2021-04-12 20:47:56 +00:00
rule-doc-generator.php Add setter/getter factory (#6219) 2021-04-23 18:14:51 +00:00
scoper.php fix old Versions path 2021-04-29 17:37:16 +02:00
UPGRADE.md Add upgrade path to Rector 0.10 - upgrade set included (#6061) 2021-04-09 01:12:42 +00:00

Rector - Speedup Your PHP Development

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
  • Having conflicts during composer require? → Use the Rector Prefixed with PHP 7.1+ version
  • Using a different PHP version than Rector supports? → Use the Docker image

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\Core\Configuration\Option;
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
    $parameters = $containerConfigurator->parameters();

    // tip: use "SetList" class to autocomplete sets
    $parameters->set(Option::SETS, [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.


Full Config 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');
};

Symfony Container

To work with some Symfony rules, you now need to link your container XML file

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

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

    $parameters->set(
        Option::SYMFONY_CONTAINER_XML_PATH_PARAMETER,
        __DIR__ . '/var/cache/dev/AppKernelDevDebugContainer.xml'
    );
};

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 echo-style debugging rector provides a print_node() helper method which is useful to pretty-print AST-nodes:

/**
 * @param Class_ $node
 */
public function refactor(Node $node): ?Node
{
    print_node($node);
    die;
}

Community Packages

Do you use Rector to upgrade your code? Add it here:


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.