mirror of
https://gitnet.fr/deblan/gist.git
synced 2021-08-14 08:30:49 +02:00
12 lines
240 B
PHP
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';
|