mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-22 17:06:41 -06:00
31 lines
1.1 KiB
PHP
31 lines
1.1 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace Shlinkio\Shlink;
|
|
|
|
use Acelaya\ExpressiveErrorHandler;
|
|
use Zend\ConfigAggregator;
|
|
use Zend\Expressive;
|
|
|
|
use function Shlinkio\Shlink\Common\env;
|
|
|
|
return (new ConfigAggregator\ConfigAggregator([
|
|
Expressive\ConfigProvider::class,
|
|
Expressive\Router\ConfigProvider::class,
|
|
Expressive\Router\FastRouteRouter\ConfigProvider::class,
|
|
Expressive\Plates\ConfigProvider::class,
|
|
Expressive\Swoole\ConfigProvider::class,
|
|
ExpressiveErrorHandler\ConfigProvider::class,
|
|
Common\ConfigProvider::class,
|
|
Core\ConfigProvider::class,
|
|
CLI\ConfigProvider::class,
|
|
Rest\ConfigProvider::class,
|
|
EventDispatcher\ConfigProvider::class,
|
|
new ConfigAggregator\PhpFileProvider('config/autoload/{{,*.}global,{,*.}local}.php'),
|
|
env('APP_ENV') === 'test'
|
|
? new ConfigAggregator\PhpFileProvider('config/test/*.global.php')
|
|
: new ConfigAggregator\ZendConfigProvider('config/params/{generated_config.php,*.config.{php,json}}'),
|
|
], 'data/cache/app_config.php', [
|
|
Core\SimplifiedConfigParser::class,
|
|
]))->getMergedConfig();
|