* Refactor and add importer to Installer module #443 * Refactor for finances to use in import * Import groups into roles * Formatting * Formatting * Add interface in installer for import * Notes about importing * Check for installer folder * Formatting * Fix pirep->user mapping * Unused import * Formatting
This commit is contained in:
@@ -1,5 +1,12 @@
|
||||
<?php
|
||||
|
||||
use Modules\Installer\Services\Importer\Stages\Stage1;
|
||||
use Modules\Installer\Services\Importer\Stages\Stage2;
|
||||
use Modules\Installer\Services\Importer\Stages\Stage3;
|
||||
use Modules\Installer\Services\Importer\Stages\Stage4;
|
||||
use Modules\Installer\Services\Importer\Stages\Stage5;
|
||||
use Modules\Installer\Services\Importer\Stages\Stage6;
|
||||
|
||||
return [
|
||||
'php' => [
|
||||
'version' => '7.2',
|
||||
@@ -37,4 +44,16 @@ return [
|
||||
'storage/framework/views',
|
||||
'storage/logs',
|
||||
],
|
||||
|
||||
'importer' => [
|
||||
'batch_size' => 150,
|
||||
'stages' => [
|
||||
'stage1' => Stage1::class,
|
||||
'stage2' => Stage2::class,
|
||||
'stage3' => Stage3::class,
|
||||
'stage4' => Stage4::class,
|
||||
'stage5' => Stage5::class,
|
||||
'stage6' => Stage6::class,
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user