shlink/config/config.php

31 lines
1.1 KiB
PHP
Raw Normal View History

2016-04-10 02:38:07 -05:00
<?php
2017-10-12 03:13:20 -05:00
declare(strict_types=1);
namespace Shlinkio\Shlink;
2016-08-14 14:28:21 -05:00
use Acelaya\ExpressiveErrorHandler;
2017-03-24 14:34:18 -05:00
use Zend\ConfigAggregator;
2018-03-26 11:49:28 -05:00
use Zend\Expressive;
use function Shlinkio\Shlink\Common\env;
2016-04-10 02:38:07 -05:00
2017-03-24 14:34:18 -05:00
return (new ConfigAggregator\ConfigAggregator([
2018-03-26 11:49:28 -05:00
Expressive\ConfigProvider::class,
Expressive\Router\ConfigProvider::class,
Expressive\Router\FastRouteRouter\ConfigProvider::class,
Expressive\Plates\ConfigProvider::class,
Expressive\Swoole\ConfigProvider::class,
2016-08-14 14:28:21 -05:00
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();