web/public/index.php
2019-11-20 23:27:15 +01:00

9 lines
No EOL
227 B
PHP

<?php
use CubiStore\Web\Main;
include(__DIR__ . '/../vendor/autoload.php');
define('STDOUT', fopen('php://stdout', 'w'));
fprintf(STDOUT, $_SERVER['REQUEST_METHOD'] . ' ' . $_SERVER['REQUEST_URI'] . "\n");
Main::main('dev');