added some stuff

This commit is contained in:
2023-03-09 16:42:07 -08:00
parent b4738b0718
commit 93e3348b41
5 changed files with 91 additions and 8 deletions

13
app/settings.php Normal file
View File

@@ -0,0 +1,13 @@
<?php
use Psr\Container\ContainerInterface;
return function(ContainerInterface $container) {
$container->set('settings', function() {
return [
'displayErrorDetails' => true,
'logErrorDetails' => true,
'logErrors' => true
];
});
};