Renamed services first level config key to dependencies

This commit is contained in:
Alejandro Celaya
2016-07-31 16:30:05 +02:00
parent ce00874dd1
commit a957f66ed0
11 changed files with 11 additions and 11 deletions

View File

@@ -16,6 +16,6 @@ if (class_exists(Dotenv::class)) {
// Build container
$config = require __DIR__ . '/config.php';
$container = new ServiceManager($config['services']);
$container = new ServiceManager($config['dependencies']);
$container->setService('config', $config);
return $container;