From 0d37eb65c90d4bfd0e8d3f9f5b660ade5370e838 Mon Sep 17 00:00:00 2001 From: Alejandro Celaya Date: Tue, 11 Jan 2022 19:05:53 +0100 Subject: [PATCH] Used PhpFileProvider to load installer generated config --- config/config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/config.php b/config/config.php index 330cd836..33c78896 100644 --- a/config/config.php +++ b/config/config.php @@ -37,7 +37,7 @@ return (new ConfigAggregator\ConfigAggregator([ new ConfigAggregator\PhpFileProvider('config/autoload/{{,*.}global,{,*.}local}.php'), env('APP_ENV') === 'test' ? new ConfigAggregator\PhpFileProvider('config/test/*.global.php') - : new ConfigAggregator\LaminasConfigProvider('config/params/generated_config.php'), + : new ConfigAggregator\PhpFileProvider('config/params/generated_config.php'), ], 'data/cache/app_config.php', [ Core\Config\BasePathPrefixer::class, ]))->getMergedConfig();