shlink/config/container.php

22 lines
533 B
PHP
Raw Normal View History

2016-04-10 02:52:44 -05:00
<?php
use 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(__DIR__ . '/..');
$dotenv->load();
}
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;