2024-02-22 03:14:42 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
use Laminas\ConfigAggregator\ConfigAggregator;
|
|
|
|
|
|
|
|
return [
|
|
|
|
// Toggle the configuration cache. Set this to boolean false, or remove the
|
|
|
|
// directive, to disable configuration caching. Toggling development mode
|
|
|
|
// will also disable it by default; clear the configuration cache using
|
|
|
|
// `composer clear-config-cache`.
|
|
|
|
ConfigAggregator::ENABLE_CACHE => true,
|
|
|
|
|
|
|
|
// Enable debugging; typically used to provide debugging information within templates.
|
|
|
|
'debug' => false,
|
|
|
|
'mezzio' => [
|
|
|
|
// Provide templates for the error handling middleware to use when
|
|
|
|
// generating responses.
|
|
|
|
'error_handler' => [
|
|
|
|
'template_404' => 'error::404',
|
|
|
|
'template_error' => 'error::error',
|
|
|
|
],
|
|
|
|
],
|
2024-02-25 03:12:57 +00:00
|
|
|
'authentication' => [
|
|
|
|
'redirect' => '/login',
|
|
|
|
],
|
2024-02-22 03:14:42 +00:00
|
|
|
];
|