An open API service indexing awesome lists of open source software.

https://github.com/netlogix/netlogix.migrations.neos

Neos package to run Node migrations using Netlogix.Migrations
https://github.com/netlogix/netlogix.migrations.neos

migrations neoscms

Last synced: about 2 months ago
JSON representation

Neos package to run Node migrations using Netlogix.Migrations

Awesome Lists containing this project

README

        

# Netlogix.Migrations.Neos

This package provides a simple abstraction layer to execute Neos node migrations with the [Netlogix.Migrations](https://github.com/netlogix/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
addMigrationVersion('20200909170000');
}

}
```