mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-23 21:27:44 +03:00
29 lines
1.1 KiB
PHP
29 lines
1.1 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
use Acelaya\ExpressiveErrorHandler;
|
|
use Shlinkio\Shlink\CLI;
|
|
use Shlinkio\Shlink\Common;
|
|
use Shlinkio\Shlink\Core;
|
|
use Shlinkio\Shlink\Rest;
|
|
use Zend\ConfigAggregator;
|
|
|
|
/**
|
|
* Configuration files are loaded in a specific order. First ``global.php``, then ``*.global.php``.
|
|
* then ``local.php`` and finally ``*.local.php``. This way local settings overwrite global settings.
|
|
*
|
|
* The configuration can be cached. This can be done by setting ``config_cache_enabled`` to ``true``.
|
|
*
|
|
* Obviously, if you use closures in your config you can't cache it.
|
|
*/
|
|
|
|
return (new ConfigAggregator\ConfigAggregator([
|
|
Zend\Expressive\ConfigProvider::class,
|
|
Zend\Expressive\Router\ConfigProvider::class,
|
|
ExpressiveErrorHandler\ConfigProvider::class,
|
|
Common\ConfigProvider::class,
|
|
Core\ConfigProvider::class,
|
|
CLI\ConfigProvider::class,
|
|
Rest\ConfigProvider::class,
|
|
new ConfigAggregator\ZendConfigProvider('config/{autoload/{{,*.}global,{,*.}local},params/generated_config}.php'),
|
|
], 'data/cache/app_config.php'))->getMergedConfig();
|