gist/app/bootstrap.php.d/10-config.php
2015-05-05 20:33:05 +02:00

10 lines
217 B
PHP

<?php
use Symfony\Component\Config\FileLocator;
$app['config.locator.path'] = $app['root_path'].'/app/config';
$app['config.locator'] = function ($app) {
return new FileLocator($app['config.locator.path']);
};