mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Lots of new code for the Spectre routine.
This commit is contained in:
@@ -88,9 +88,9 @@ return [
|
||||
'is_demo_site' => false,
|
||||
],
|
||||
'encryption' => null === env('USE_ENCRYPTION') || env('USE_ENCRYPTION') === true,
|
||||
'version' => '4.7.3.2',
|
||||
'version' => '4.7.4',
|
||||
'api_version' => '0.3',
|
||||
'db_version' => 3,
|
||||
'db_version' => 4,
|
||||
'maxUploadSize' => 15242880,
|
||||
'allowedMimes' => [
|
||||
/* plain files */
|
||||
|
@@ -24,6 +24,7 @@ declare(strict_types=1);
|
||||
|
||||
use FireflyIII\Import\JobConfiguration\FakeJobConfiguration;
|
||||
use FireflyIII\Import\JobConfiguration\FileJobConfiguration;
|
||||
use FireflyIII\Import\JobConfiguration\SpectreJobConfiguration;
|
||||
use FireflyIII\Import\Prerequisites\FakePrerequisites;
|
||||
use FireflyIII\Import\Prerequisites\SpectrePrerequisites;
|
||||
use FireflyIII\Import\Routine\FakeRoutine;
|
||||
@@ -87,7 +88,7 @@ return [
|
||||
'fake' => true,
|
||||
'file' => true,
|
||||
'bunq' => false,
|
||||
'spectre' => false,
|
||||
'spectre' => true,
|
||||
'plaid' => false,
|
||||
'quovo' => false,
|
||||
'yodlee' => false,
|
||||
@@ -97,7 +98,7 @@ return [
|
||||
'fake' => FakeJobConfiguration::class,
|
||||
'file' => FileJobConfiguration::class,
|
||||
'bunq' => false,
|
||||
'spectre' => false,
|
||||
'spectre' => SpectreJobConfiguration::class,
|
||||
'plaid' => false,
|
||||
'quovo' => false,
|
||||
'yodlee' => false,
|
||||
|
Reference in New Issue
Block a user