11 lines
309 B
PHP
11 lines
309 B
PHP
|
<?php
|
||
|
declare(strict_types=1);
|
||
|
|
||
|
use GamesShop\ContainerHandler;
|
||
|
use GamesShop\DoctrineManager;
|
||
|
use GamesShop\Environment\EnvironmentHandler;
|
||
|
|
||
|
require_once __DIR__ . '/../../vendor/autoload.php';
|
||
|
|
||
|
ContainerHandler::get(EnvironmentHandler::class)->load();
|
||
|
ContainerHandler::get(DoctrineManager::class)->setup();
|