shlink/config/config.php

25 lines
865 B
PHP
Raw Normal View History

2016-04-10 09:38:07 +02:00
<?php
2016-07-19 16:50:02 +02:00
use Shlinkio\Shlink\CLI;
2016-07-19 17:07:59 +02:00
use Shlinkio\Shlink\Rest;
2016-07-19 16:30:48 +02:00
use Zend\Expressive\ConfigManager\ConfigManager;
use Zend\Expressive\ConfigManager\ZendConfigProvider;
2016-04-10 09:38:07 +02: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.
*/
2016-07-19 16:30:48 +02:00
return call_user_func(function () {
$configManager = new ConfigManager([
2016-07-19 17:12:50 +02:00
new ZendConfigProvider('config/autoload/{{,*.}global,{,*.}local}.php'),
2016-07-19 17:07:59 +02:00
CLI\ConfigProvider::class,
Rest\ConfigProvider::class,
2016-07-19 16:30:48 +02:00
], 'data/cache/app_config.php');
2016-04-10 09:38:07 +02:00
2016-07-19 16:30:48 +02:00
return $configManager->getMergedConfig();
});