netlogix/migrations-neos

Custom neos migrations

Installs: 14 203

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 4

Forks: 0

Open Issues: 0

Type:neos-package

pkg:composer/netlogix/migrations-neos

1.1.0 2022-05-24 07:08 UTC

This package is auto-updated.

Last update: 2025-09-24 14:36:54 UTC


README

This package provides a simple abstraction layer to execute Neos node migrations with the Netlogix.Migrations package.

Usage

Simply create a new Migration file that extends Netlogix\Migrations\Neos\Domain\Migration\NodeMigration, then use $this->addMigrationVersion('...') to add your Node migration.

<?php
declare(strict_types=1);

namespace Netlogix\Migrations\Persistence\Migrations;

use Netlogix\Migrations\Neos\Domain\Migration\NodeMigration;

class Version20200909170000 extends NodeMigration
{

    public function up(): void
    {
        $this->addMigrationVersion('20200909170000');
    }

}