推土机 / files
此包的最新版本(0.1.6)没有可用的许可信息。
Bulldozer CMF 的文件模块
0.1.6
2019-07-14 09:49 UTC
Requires
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',
],
],
],
...
]