mirror of
https://gh.wpcy.net/https://github.com/aspirepress/AspireCloud.git
synced 2026-07-17 11:37:03 +08:00
14 lines
315 B
PHP
14 lines
315 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Laminas\ServiceManager\ServiceManager;
|
|
|
|
// Load configuration
|
|
$config = require __DIR__ . '/config.php';
|
|
|
|
$dependencies = $config['dependencies'];
|
|
$dependencies['services']['config'] = $config;
|
|
|
|
// Build container
|
|
return new ServiceManager($dependencies);
|