Instant Upgrades and Automated Refactoring of any PHP 5.3+ code
Go to file
Tomas Votruba 277e853737 Updated Rector to commit dc22a952fe92e3574a27c8e9e7de3d9aead42a4f
dc22a952fe [Scoped] Clean up SmartFileInfo (#2889)
2022-09-01 22:05:56 +00:00
.github Updated Rector to commit b536a67738 2022-06-14 06:49:40 +00:00
bin Updated Rector to commit 8961d20f56fa4b39bb21feec1f24422398f13dba 2022-09-01 19:30:48 +00:00
config Updated Rector to commit 88b75c6180cab29f49e7ec6567df80b052987978 2022-09-01 20:56:47 +00:00
docs Updated Rector to commit 6db4c0e0ae74867ec12b2a4fa7cf934a4a60a742 2022-08-31 07:08:44 +00:00
e2e Updated Rector to commit 55227be6c338823f47f3fe6d4b1e48a4d8291740 2022-09-01 11:24:29 +00:00
packages Updated Rector to commit dc22a952fe92e3574a27c8e9e7de3d9aead42a4f 2022-09-01 22:05:56 +00:00
rules Updated Rector to commit 2c454d292b8af3a8e8eb61f813efe6b12c66ae81 2022-09-01 21:06:09 +00:00
src Updated Rector to commit dc22a952fe92e3574a27c8e9e7de3d9aead42a4f 2022-09-01 22:05:56 +00:00
stubs-rector Updated Rector to commit 38ed8d2f6d 2022-05-27 15:54:40 +00:00
templates Updated Rector to commit 51e89c3f32 2022-04-12 08:58:57 +00:00
vendor Updated Rector to commit dc22a952fe92e3574a27c8e9e7de3d9aead42a4f 2022-09-01 22:05:56 +00:00
.gitattributes Updated Rector to commit e3f20c1fb6 2021-08-08 16:52:18 +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 fc8efa0fe446dd648d5d4d393e32ee06a8876837 2022-08-19 07:22:29 +00:00
LICENSE Update LICENSE year forever 2018-01-02 20:27:07 -02:00
README.md Updated Rector to commit 74f6b181e82f191c1e471d446a029a06dff16619 2022-08-29 21:45:23 +00:00
bootstrap.php Updated Rector to commit dc22a952fe92e3574a27c8e9e7de3d9aead42a4f 2022-09-01 22:05:56 +00:00
composer.json Updated Rector to commit 3c07468691132d0246e55627495a1e7d4cd76a8d 2022-09-01 19:50:06 +00:00
preload.php Rector 0.13.5 2022-06-09 12:54:02 +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.1 and major open-source projects like Symfony, PHPUnit, Laravel, CakePHP 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 a First Book About Rector

Are you curious, how Rector works internally, how to create your own rules and test them and why Rector was born? In May 2021 we've released the very first book: Rector - The Power of Automated Refactoring.

By buying a book you directly support maintainers who are working on Rector.


Documentation

For Rule Developers and Contributors

See the full documentation.


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 init

And modify it:

use Rector\Php74\Rector\Property\TypedPropertyRector;
use Rector\Set\ValueObject\SetList;
use Rector\Config\RectorConfig;

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

    // register single rule
    $rectorConfig->rule(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.

Note: Rector will only update legacy code to utilize new features which are supported by the PHP version defined in your composer.json file. For instance, if require.php is >=7.2.5, Rector will not make changes which are only available for PHP versions after 7.2.5.


Configuration

// rector.php
use Rector\Core\ValueObject\PhpVersion;
use Rector\Config\RectorConfig;

return static function (RectorConfig $rectorConfig): void {
    // paths to refactor; solid alternative to CLI arguments
    $rectorConfig->paths([__DIR__ . '/src', __DIR__ . '/tests']);

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

    // Path to PHPStan with extensions, that PHPStan in Rector uses to determine types
    $rectorConfig->phpstanConfig(__DIR__ . '/phpstan-for-config.neon');
};

Empowered by Rector 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

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.