mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-05-03 20:56:21 +00:00
Merge branch 'release/3.2.2'
This commit is contained in:
2
app/config/.gitignore
vendored
2
app/config/.gitignore
vendored
@@ -1,4 +1,4 @@
|
||||
local/
|
||||
laptop/
|
||||
vagrant/
|
||||
production/
|
||||
production/
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
<?php
|
||||
|
||||
return [];
|
||||
return [];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
<?php
|
||||
return [
|
||||
'import' => ''
|
||||
];
|
||||
];
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
return [
|
||||
'index_periods' => ['1D', '1W', '1M', '3M', '6M', '1Y', 'custom'],
|
||||
'budget_periods' => ['daily', 'weekly', 'monthly', 'quarterly', 'half-year', 'yearly'],
|
||||
'piggybank_periods' => [
|
||||
'piggy_bank_periods' => [
|
||||
'week' => 'Week',
|
||||
'month' => 'Month',
|
||||
'quarter' => 'Quarter',
|
||||
@@ -46,4 +46,4 @@ return [
|
||||
'6M' => 'half-year',
|
||||
'custom' => 'monthly'
|
||||
],
|
||||
];
|
||||
];
|
||||
|
||||
@@ -12,4 +12,4 @@ return [
|
||||
*/
|
||||
'debug' => true,
|
||||
'log_level' => 'debug',
|
||||
];
|
||||
];
|
||||
|
||||
@@ -34,4 +34,4 @@ return [
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
];
|
||||
|
||||
0
app/config/queue.php
Executable file → Normal file
0
app/config/queue.php
Executable file → Normal file
@@ -1,2 +1,2 @@
|
||||
<?php
|
||||
return ['log_level' => 'debug',];
|
||||
return ['log_level' => 'debug',];
|
||||
|
||||
@@ -9,4 +9,4 @@ return [
|
||||
]
|
||||
|
||||
]
|
||||
];
|
||||
];
|
||||
|
||||
2
app/config/testingInMemory/app.php
Normal file
2
app/config/testingInMemory/app.php
Normal file
@@ -0,0 +1,2 @@
|
||||
<?php
|
||||
return ['log_level' => 'debug',];
|
||||
8
app/config/testingInMemory/auth.php
Normal file
8
app/config/testingInMemory/auth.php
Normal file
@@ -0,0 +1,8 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'verify_mail' => false,
|
||||
'verify_reset' => true,
|
||||
'allow_register' => true
|
||||
|
||||
];
|
||||
3
app/config/testingInMemory/cache.php
Normal file
3
app/config/testingInMemory/cache.php
Normal file
@@ -0,0 +1,3 @@
|
||||
<?php
|
||||
|
||||
return ['driver' => 'array',];
|
||||
12
app/config/testingInMemory/database.php
Normal file
12
app/config/testingInMemory/database.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
return [
|
||||
'default' => 'sqlite',
|
||||
'connections' => [
|
||||
'sqlite' => [
|
||||
'driver' => 'sqlite',
|
||||
'database' => ':memory:',
|
||||
'prefix' => ''
|
||||
]
|
||||
|
||||
]
|
||||
];
|
||||
13
app/config/testingInMemory/mail.php
Normal file
13
app/config/testingInMemory/mail.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'driver' => 'smtp',
|
||||
'host' => '',
|
||||
'port' => 587,
|
||||
'from' => ['address' => '', 'name' => 'Firefly III'],
|
||||
'encryption' => 'tls',
|
||||
'username' => '',
|
||||
'password' => '',
|
||||
'sendmail' => '/usr/sbin/sendmail -bs',
|
||||
'pretend' => true,
|
||||
];
|
||||
3
app/config/testingInMemory/session.php
Normal file
3
app/config/testingInMemory/session.php
Normal file
@@ -0,0 +1,3 @@
|
||||
<?php
|
||||
|
||||
return ['driver' => 'array',];
|
||||
Reference in New Issue
Block a user