An open API service indexing awesome lists of open source software.

https://github.com/dmstr/yii2-model-importer


https://github.com/dmstr/yii2-model-importer

Last synced: 8 months ago
JSON representation

Awesome Lists containing this project

README

          

Yii2 Model Importer
====

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
```
[
'model-importer' => [
'class' => dmstr\importer\Module::class
]
]
...
```
####And the console controller to your console controllerMap config
```
[
'model-importer' => dmstr\commands\ModelImporterController::class
]
...
```