netlogix/migrations-neos
最新稳定版本:1.1.0
Composer 安装命令:
composer require netlogix/migrations-neos
包简介
Custom neos migrations
README 文档
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'); } }
统计信息
- 总下载量: 15.56k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-09-09