zacksleo/yii2-rom-release

yii2 om发布模块

安装: 510

依赖关系: 0

建议者: 0

安全性: 0

星星: 3

关注者: 4

分支: 1

开放问题: 0

类型:yii2-extension

1.2.0 2017-08-17 13:29 UTC

This package is auto-updated.

Last update: 2024-09-08 07:00:33 UTC


README

yii2 rom发布模块

Latest Stable Version Total Downloads License styleci Build Status Scrutinizer Code Quality Code Coverage Build Status

用法

通过迁移路径配置或通过迁移路径参数配置迁移路径

在Yii配置文件中配置迁移路径,如下所示

    'controllerMap' => [
        'migrate' => [
            'class' => 'yii\console\controllers\MigrateController',
            'migrationPath' => [
                '@console/migrations/',
                '@zacksleo/yii2/romrelease/migrations',
            ],
        ],
    ],

通过迁移路径参数运行迁移

  ./yii migrate --migrationPath=@zacksleo/yii2/romrelease/migrations

在components部分配置模块

    'rom-release' => [
        'class' => 'zacksleo\yii2\romrelease\Module',
    ]