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