gist/app/bootstrap.php.d/10-config.php

12 lines
241 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'] = 'prod';