dmstr/yii2-model-importer

There is no license information available for the latest version (dev-master) of this package.

Yii2 Model Importer

Installs: 6

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 6

Forks: 1

Open Issues: 1

Type:yii2-extention

dev-master 2019-05-29 11:40 UTC

This package is auto-updated.

Last update: 2024-02-29 03:37:02 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
    ]
    ...