gallery-api/config/container.php

15 lines
293 B
PHP
Raw Normal View History

2017-07-21 19:59:16 +02:00
<?php
2020-04-23 18:26:12 +02:00
declare(strict_types=1);
2020-05-01 13:46:59 +02:00
use Laminas\ServiceManager\ServiceManager;
2017-07-21 19:59:16 +02:00
// Load configuration
$config = require __DIR__ . '/config.php';
2020-04-23 18:26:12 +02:00
$dependencies = $config['dependencies'];
$dependencies['services']['config'] = $config;
2017-07-21 19:59:16 +02:00
2020-04-23 18:26:12 +02:00
// Build container
return new ServiceManager($dependencies);