17 lines
357 B
PHP
17 lines
357 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
use Zend\ServiceManager\Config;
|
||
|
|
use Zend\ServiceManager\ServiceManager;
|
||
|
|
|
||
|
|
// Load configuration
|
||
|
|
$config = require __DIR__ . '/config.php';
|
||
|
|
|
||
|
|
// Build container
|
||
|
|
$container = new ServiceManager();
|
||
|
|
(new Config($config['dependencies']))->configureServiceManager($container);
|
||
|
|
|
||
|
|
// Inject config
|
||
|
|
$container->setService('config', $config);
|
||
|
|
|
||
|
|
return $container;
|