1
0
mirror of https://gitnet.fr/deblan/gist.git synced 2021-08-14 08:30:49 +02:00
GIST/app/bootstrap.php.d/10-config.php
Simon Vieille 843cf43b54 git + form
2015-05-05 22:04:04 +02:00

12 lines
240 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']);
};
$app['env'] = 'dev';