Example #1
0
 public function bootstrap(Application $app)
 {
     $config_path = $app['config']['config_path'];
     $app->setConfigPath($config_path);
     foreach ($this->getConfigurationFiles($config_path) as $key => $path) {
         $app['config']->set($key, require $path);
     }
 }