See the README for current tweaks

This commit is contained in:
2023-05-31 11:51:12 +01:00
parent 97407e9532
commit a67214d024
18 changed files with 1260 additions and 2 deletions

30
config/production.php Normal file
View File

@@ -0,0 +1,30 @@
<?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 [
/*
* ----------------------------------------------------------------------
* Session Config
* ----------------------------------------------------------------------
* Default session timeout to be 1 hour
*/
'session' => [
'minutes' => 60,
],
/*
* ----------------------------------------------------------------------
* PHP global settings
* ----------------------------------------------------------------------
* Default to php's recommended production value for error_reporting
*/
'php' => [
'error_reporting' => E_ALL & ~E_DEPRECATED & ~E_STRICT,
],
];