推土机/files

此包的最新版本(0.1.6)没有可用的许可信息。

Bulldozer CMF 的文件模块

安装: 447

依赖项: 4

建议者: 0

安全性: 0

星星: 0

关注者: 2

分支: 0

开放问题: 0

类型:yii2-extension

0.1.6 2019-07-14 09:49 UTC

This package is not auto-updated.

Last update: 2024-09-29 04:25:55 UTC


README

Bulldozer CMF 的文件模块。

安装

在 composer 中连接

composer require bulldozer/files "*"

添加到 backend\config\main.php

return [
    'modules' => [
        'files' => [
            'class' => 'bulldozer\files\Module',
        ],
    ],
]

添加到 console\config\main.php

return [
    ...

    'controllerMap' => [
        'migrate' => [
            'class' => 'yii\console\controllers\MigrateController',
            'migrationNamespaces' => [
                'bulldozer\files\migrations',
            ],
        ],
    ],

    ...
]