46 lines
1.3 KiB
PHP
46 lines
1.3 KiB
PHP
<?php
|
|
|
|
/*
|
|
* AVSDev UF Tweaks (https://avsdev.uk)
|
|
*
|
|
* @link https://git.avsdev.uk/avsdev/sprinkle-uf-tweaks
|
|
* @license https://git.avsdev.uk/avsdev/sprinkle-uf-tweaks/blob/master/LICENSE.md (LGPL-3.0 License)
|
|
*/
|
|
|
|
return [
|
|
'debug' => [
|
|
'tokens' => false,
|
|
],
|
|
/*
|
|
* ----------------------------------------------------------------------
|
|
* Database Config
|
|
* ----------------------------------------------------------------------
|
|
* Added schema to default with a default schema of public (postgres)
|
|
*/
|
|
'db' => [
|
|
'default' => [
|
|
'schema' => [env('DB_SCHEMA'), 'public'],
|
|
],
|
|
],
|
|
|
|
/*
|
|
* ----------------------------------------------------------------------
|
|
* Session Config
|
|
* ----------------------------------------------------------------------
|
|
* Extended session timeout to be 9 hours (average working day) for development
|
|
*/
|
|
'session' => [
|
|
'minutes' => 540,
|
|
],
|
|
|
|
/*
|
|
* ----------------------------------------------------------------------
|
|
* PHP global settings
|
|
* ----------------------------------------------------------------------
|
|
* Personal pereference of default timezone...
|
|
*/
|
|
'php' => [
|
|
'timezone' => 'Europe/London',
|
|
],
|
|
];
|