Home

Awesome

CLI Data Import Module For Kohana

Extends the Minion module to provide a framework for importing/populating data.

Example terminal session

Two main use cases:

Real world use case

You are tasked with creating a new version of your in-house issue tracker, from scratch. You design your new database model and now you need to import existing data from the old system. The schema has changed so the columns do not match one-to-one and maybe you want to filter out deleted issues and what-knot.

Use this module to help you do that. Simply define a Minion_Import_* model for your entity to do data fetching, mapping and filtering. See example implementation for companies.

Usage

Faker

Use fzaninotto/Faker to generate dummy sample/test data with minion-importer.

Requires

Installation

Place the files in your modules directory

As a Git submodule:

git clone git://github.com/anroots/kohana-minion-importer.git modules/minion-importer

As a Composer dependency

{
	"require": {
		"anroots/minion-importer":"1.*"
	}
}

Activate the module in bootstrap.php.

<?php
Kohana::modules(array(
	...
	'minion-importer' => MODPATH.'minion-importer',
));

Licence

MIT, do whatever. Pull requests and feedback appreciated.