https://github.com/dmstr/yii2-model-importer
https://github.com/dmstr/yii2-model-importer
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dmstr/yii2-model-importer
- Owner: dmstr
- Created: 2017-11-16T15:28:28.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2019-05-29T11:40:21.000Z (about 7 years ago)
- Last Synced: 2025-06-12T17:11:23.017Z (12 months ago)
- Language: PHP
- Size: 6.84 KB
- Stars: 2
- Watchers: 5
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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
]
...
```