2016-04-10 10:38:07 +03:00
|
|
|
<?php
|
2019-10-05 18:26:10 +03:00
|
|
|
|
2017-10-12 11:13:20 +03:00
|
|
|
declare(strict_types=1);
|
2016-04-10 10:38:07 +03:00
|
|
|
|
2020-01-01 23:11:53 +03:00
|
|
|
use Laminas\ConfigAggregator\ConfigAggregator;
|
2018-11-18 18:02:52 +03:00
|
|
|
|
2016-04-10 10:38:07 +03:00
|
|
|
return [
|
|
|
|
|
2016-07-19 19:32:59 +03:00
|
|
|
'debug' => false,
|
2020-11-22 12:24:06 +03:00
|
|
|
|
2022-01-23 13:29:53 +03:00
|
|
|
// Disabling config cache for cli, ensures it's never used for openswoole and also that console commands don't
|
|
|
|
// generate a cache file that's then used by non-openswoole web executions
|
2020-11-22 12:24:06 +03:00
|
|
|
ConfigAggregator::ENABLE_CACHE => PHP_SAPI !== 'cli',
|
2016-04-10 10:38:07 +03:00
|
|
|
|
|
|
|
];
|