shlink/config/container.php

24 lines
584 B
PHP
Raw Normal View History

2016-04-10 10:52:44 +03:00
<?php
2017-10-12 11:13:20 +03:00
declare(strict_types=1);
use Symfony\Component\Dotenv\Dotenv;
2016-04-10 10:52:44 +03:00
use Zend\ServiceManager\ServiceManager;
2016-04-10 13:06:28 +03:00
chdir(dirname(__DIR__));
2016-04-17 21:27:24 +03:00
require 'vendor/autoload.php';
2016-04-10 10:52:44 +03: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 10:52:44 +03:00
// Build container
$config = require __DIR__ . '/config.php';
$container = new ServiceManager($config['dependencies']);
2016-04-10 10:52:44 +03:00
$container->setService('config', $config);
2016-04-17 21:27:24 +03:00
return $container;