amos/userimporter

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

Amos User Importer

dev-master 2020-04-14 15:23 UTC

README

User Importer.

Installation

  1. You need to require this package and enable the module in your configuration.

add to composer requirements in composer.json

"/amos/userimporter": "dev-master as 1.0.0",

or run command bash:

composer require "amos/userimporter": "dev-master as 1.0.0"

add Places migrations to console modules (console/config/migrations-amos.php):

'@vendor/amos/userimporter/src/migrations'

Add module to your modules-amos config in backend:

	<?php
	$config = [
		'modules' => [
			'userimporter' => [
                            'class' => 'amos\userimporter\Module',
                        ],
		],
	];