shlink/config/config.php

28 lines
988 B
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);
2016-08-14 14:28:21 -05:00
use Acelaya\ExpressiveErrorHandler;
2016-07-19 09:50:02 -05:00
use Shlinkio\Shlink\CLI;
2016-07-19 10:38:41 -05:00
use Shlinkio\Shlink\Common;
2016-07-19 11:01:39 -05:00
use Shlinkio\Shlink\Core;
2016-07-19 10:07:59 -05:00
use Shlinkio\Shlink\Rest;
2017-03-24 14:34:18 -05:00
use Zend\ConfigAggregator;
2016-04-10 02:38:07 -05:00
/**
* 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.
*/
2017-03-24 14:34:18 -05:00
return (new ConfigAggregator\ConfigAggregator([
2016-08-14 14:28:21 -05:00
ExpressiveErrorHandler\ConfigProvider::class,
Common\ConfigProvider::class,
Core\ConfigProvider::class,
CLI\ConfigProvider::class,
Rest\ConfigProvider::class,
2017-03-24 14:34:18 -05:00
new ConfigAggregator\ZendConfigProvider('config/{autoload/{{,*.}global,{,*.}local},params/generated_config}.php'),
], 'data/cache/app_config.php'))->getMergedConfig();