linawolf / list-type-migration
List type to CType migration, backward compatible for TYPO3 v11 and v12
Installs: 6 887
Dependents: 5
Suggesters: 0
Security: 0
Stars: 4
Watchers: 1
Forks: 1
Open Issues: 1
Language:Shell
Type:typo3-cms-extension
pkg:composer/linawolf/list-type-migration
Requires
- php: ^7.4 || ^8.0 || ^8.1 || ^8.2 || ^8.3
- typo3/cms-install: ^11.5 || ^12.4 || ^13.4
Requires (Dev)
- ergebnis/composer-normalize: ^2.43
- phpstan/phpstan: ^1.8.2
- typo3/coding-standards: *
This package is auto-updated.
Last update: 2025-10-24 10:53:57 UTC
README
To offer a migration path for an extension that supports both TYPO3 v12 and v13,
extend Linawolf\ListTypeMigration\Upgrades\AbstractListTypeToCTypeUpdate:
<?php
declare(strict_types=1);
namespace MyVendor\MyExtension\Upgrades;
use Linawolf\ListTypeMigration\Upgrades\AbstractListTypeToCTypeUpdate;
use TYPO3\CMS\Install\Attribute\UpgradeWizard;
#[UpgradeWizard('myExtensionPluginListTypeToCTypeUpdate')]
final class PluginListTypeToCTypeUpdate extends AbstractListTypeToCTypeUpdate
{
    protected function getListTypeToCTypeMapping(): array
    {
        return [
            'my_extension_pi1' => 'my_extension_pi1',
            'my_extension_pi2' => 'my_extension_newpluginname',
        ];
    }
    public function getTitle(): string
    {
        return 'Migrates my_extension plugins';
    }
    public function getDescription(): string
    {
        return 'Migrates my_extension_pi1, my_extension_pi2  from list_type to CType. ';
    }
}
If you also have to be compatible with TYPO3 v11, register the Upgrade Wizard manually: https://docs.typo3.org/m/typo3/reference-coreapi/11.5/en-us/ExtensionArchitecture/HowTo/UpdateExtensions/UpdateWizards/Creation.html#upgrade-wizards-register