dmstr / yii2-model-importer
There is no license information available for the latest version (dev-master) of this package.
Yii2 Model Importer
Package info
github.com/dmstr/yii2-model-importer
Type:yii2-extention
pkg:composer/dmstr/yii2-model-importer
dev-master
2019-05-29 11:40 UTC
Requires
- dmstr/yii2-web: *
- yiisoft/yii2: 2.*
This package is auto-updated.
Last update: 2026-03-01 00:24:19 UTC
README
A Yii2 Extention to import data to our cruds
Installation via composer
composer require dmstr/yii2-model-importer
Settings after installation
####Add the module to your application config
<?php
...
'modules' => [
'model-importer' => [
'class' => dmstr\importer\Module::class
]
]
...
####And the console controller to your console controllerMap config
<?php
...
'controllerMap' => [
'model-importer' => dmstr\commands\ModelImporterController::class
]
...