shlink/config/container.php

25 lines
585 B
PHP
Raw Normal View History

2016-04-10 02:52:44 -05:00
<?php
2019-10-05 10:26:10 -05:00
2017-10-12 03:13:20 -05:00
declare(strict_types=1);
use Symfony\Component\Dotenv\Dotenv;
2016-04-10 02:52:44 -05:00
use Zend\ServiceManager\ServiceManager;
2016-04-10 05:06:28 -05:00
chdir(dirname(__DIR__));
2016-04-17 13:27:24 -05:00
require 'vendor/autoload.php';
2016-04-10 02:52:44 -05:00
// If the Dotenv class exists, load env vars and enable errors
if (class_exists(Dotenv::class)) {
error_reporting(E_ALL);
ini_set('display_errors', '1');
$dotenv = new Dotenv();
$dotenv->load(__DIR__ . '/../.env');
}
2016-04-10 02:52:44 -05:00
// Build container
$config = require __DIR__ . '/config.php';
$container = new ServiceManager($config['dependencies']);
2016-04-10 02:52:44 -05:00
$container->setService('config', $config);
2016-04-17 13:27:24 -05:00
return $container;