9 lines
214 B
PHP
9 lines
214 B
PHP
<?php
|
|
require __DIR__ . '/vendor/autoload.php';
|
|
|
|
define('BASE_DIR', __DIR__ . '/');
|
|
define('PLATFORM_VERSION', json_decode(file_get_contents('composer.json'))->version);
|
|
|
|
require 'bootstrap/app.php';
|
|
|
|
$app->run();
|