ssch/typo3-rector-testing-framework

Rector upgrade or migration rules for TYPO3 Testing Framework

Maintainers

👁 schreiberten

Package info

github.com/sabbelasichon/typo3-rector-testing-framework

Type:rector-extension

pkg:composer/ssch/typo3-rector-testing-framework

Statistics

Installs: 462 362

Dependents: 6

Suggesters: 0

Stars: 3

Open Issues: 2

v3.0.0 2025-01-30 08:06 UTC

Requires

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT a34916cd7f8d817be54e728c3bb1fe8207974ab6

  • Sebastian Schreiber <me.woop@schreibersebastian.de>

This package is auto-updated.

Last update: 2026-06-29 02:23:43 UTC


README

Install

All you need to do is install the package, and you're good to go:

composer require ssch/typo3-rector-testing-framework --dev

Use Sets

To add a set to your config, use one of the classes from sets under Ssch\\Typo3RectorTestingFramework\\Set\\ class and pick one of the constants:

use Ssch\Typo3RectorTestingFramework\Set\NimutTestingFrameworkSetList;
use Ssch\Typo3RectorTestingFramework\Set\TYPO3TestingFrameworkSetList;
use Rector\Config\RectorConfig;

return static function (RectorConfig $rectorConfig): void {
 $rectorConfig->sets([
 NimutTestingFrameworkSetList::NIMUT_TESTING_FRAMEWORK_TO_TYPO3_TESTING_FRAMEWORK,
 TYPO3TestingFrameworkSetList::TYPO3_TESTING_FRAMEWORK_7,
 ]);
};