You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<?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'); |