2017-12-16 08:03:35 +01:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
return [
|
2017-12-16 19:47:14 +01:00
|
|
|
'enabled' => [
|
2017-12-16 08:03:35 +01:00
|
|
|
'file' => true,
|
|
|
|
'bunq' => true,
|
|
|
|
'spectre' => true,
|
|
|
|
'plaid' => true,
|
|
|
|
],
|
2017-12-16 19:47:14 +01:00
|
|
|
'prerequisites' => [
|
2017-12-16 08:03:35 +01:00
|
|
|
'file' => 'FireflyIII\Import\Prerequisites\FilePrerequisites',
|
|
|
|
'bunq' => 'FireflyIII\Import\Prerequisites\BunqPrerequisites',
|
|
|
|
'spectre' => 'FireflyIII\Import\Prerequisites\SpectrePrerequisites',
|
|
|
|
'plaid' => 'FireflyIII\Import\Prerequisites\PlaidPrerequisites',
|
|
|
|
|
|
|
|
],
|
2017-12-16 19:47:14 +01:00
|
|
|
'configuration' => [
|
2017-12-16 08:03:35 +01:00
|
|
|
'file' => 'FireflyIII\Import\Configuration\FileConfigurator',
|
|
|
|
'bunq' => 'FireflyIII\Import\Configuration\BunqConfigurator',
|
|
|
|
'spectre' => 'FireflyIII\Import\Configuration\SpectreConfigurator',
|
|
|
|
'plaid' => 'FireflyIII\Import\Configuration\PlaidConfigurator',
|
|
|
|
],
|
2017-12-16 19:47:14 +01:00
|
|
|
'routine' => [
|
|
|
|
'file' => 'FireflyIII\Import\Routine\FileRoutine',
|
|
|
|
'bunq' => 'FireflyIII\Import\Routine\BunqRoutine',
|
|
|
|
'spectre' => 'FireflyIII\Import\Routine\SpectreRoutine',
|
|
|
|
'plaid' => 'FireflyIII\Import\Routine\PlaidRoutine',
|
|
|
|
],
|
|
|
|
|
2017-12-16 17:19:10 +01:00
|
|
|
'options' => [
|
|
|
|
'file' => [
|
|
|
|
'import_formats' => ['csv'], // mt940
|
|
|
|
'default_import_format' => 'csv',
|
2017-12-16 20:21:05 +01:00
|
|
|
'processors' => [
|
|
|
|
'csv' => 'FireflyIII\Import\FileProcessor\CsvProcessor',
|
|
|
|
],
|
2017-12-16 17:19:10 +01:00
|
|
|
],
|
|
|
|
],
|
2017-12-16 08:03:35 +01:00
|
|
|
'default_config' => [
|
|
|
|
'file' => [
|
|
|
|
'has-config-file' => true,
|
|
|
|
'auto-start' => false,
|
|
|
|
],
|
|
|
|
'bunq' => [
|
|
|
|
'has-config-file' => false,
|
|
|
|
'auto-start' => true,
|
|
|
|
],
|
|
|
|
'spectre' => [
|
|
|
|
'has-config-file' => false,
|
|
|
|
'auto-start' => true,
|
|
|
|
],
|
|
|
|
'plaid' => [
|
|
|
|
'has-config-file' => false,
|
|
|
|
'auto-start' => true,
|
|
|
|
],
|
|
|
|
],
|
|
|
|
];
|