Example #1
0
<?php

/*
 * This file is part of the Cqrs-Framework package.
 *
 * (c) Hexacodelabs <http://hexacodelabs.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
use Borobudur\Http\Request;
require_once __DIR__ . '/../app/bootstrap.php';
require_once __DIR__ . '/../app/AppKernel.php';
$kernel = new AppKernel('prod');
$kernel->listen(Request::createFromServer());
$kernel->boot();