9 lines
172 B
PHP
9 lines
172 B
PHP
|
<?php
|
||
|
require 'vendor/autoload.php';
|
||
|
|
||
|
define('PLATFORM_VERSION', json_decode(file_get_contents('composer.json'))->version);
|
||
|
|
||
|
require 'bootstrap/app.php';
|
||
|
|
||
|
Flight::start();
|