mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-10 17:28:40 +00:00
40 lines
1.0 KiB
PHP
Executable File
40 lines
1.0 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Jingga
|
|
*
|
|
* PHP Version 8.2
|
|
*
|
|
* @package Jingga
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 2.0
|
|
* @version 1.0.0
|
|
* @link https://jingga.app
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
// @codeCoverageIgnoreStart
|
|
require_once __DIR__ . '/Preloader.php';
|
|
|
|
$preloader = new \phpOMS\Preloader();
|
|
|
|
$preloader->includePath(__DIR__ . '/Account')
|
|
->includePath(__DIR__ . '/Asset')
|
|
->includePath(__DIR__ . '/Auth')
|
|
->includePath(__DIR__ . '/Cache')
|
|
->includePath(__DIR__ . '/Config')
|
|
->includePath(__DIR__ . '/Contract')
|
|
->includePath(__DIR__ . '/DataStorage')
|
|
->includePath(__DIR__ . '/Dispatcher')
|
|
->includePath(__DIR__ . '/Event')
|
|
->includePath(__DIR__ . '/Localization')
|
|
->includePath(__DIR__ . '/Log')
|
|
->includePath(__DIR__ . '/Message')
|
|
->includePath(__DIR__ . '/Model')
|
|
->includePath(__DIR__ . '/Module')
|
|
->includePath(__DIR__ . '/Router')
|
|
->includePath(__DIR__ . '/Stdlib')
|
|
->includePath(__DIR__ . '/Uri')
|
|
->includePath(__DIR__ . '/Views')
|
|
->load();
|
|
// @codeCoverageIgnoreEnd
|