13 lines
314 B
PHP
13 lines
314 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
require dirname(__DIR__) . '/vendor/autoload.php';
|
|
|
|
use Netig\Netslim\Kernel\Runtime\Module\ModuleRegistry;
|
|
use Netig\Netslim\Kernel\Runtime\RuntimePaths;
|
|
|
|
RuntimePaths::setProjectRoot(dirname(__DIR__));
|
|
RuntimePaths::setApplicationRoot(dirname(__DIR__));
|
|
ModuleRegistry::reset();
|