mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-23 05:13:13 +03:00
15 lines
362 B
PHP
15 lines
362 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Laminas\ConfigAggregator\ConfigAggregator;
|
|
|
|
return [
|
|
|
|
'debug' => false,
|
|
|
|
// Disabling config cache for cli, ensures it's never used for swoole and also that console commands don't generate
|
|
// a cache file that's then used by non-swoole web executions
|
|
ConfigAggregator::ENABLE_CACHE => PHP_SAPI !== 'cli',
|
|
|
|
];
|