You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
498 B

9 years ago
  1. <?php
  2. chdir('..');
  3. include('vendor/autoload.php');
  4. use Symfony\Component\HttpFoundation\Request;
  5. use Symfony\Component\HttpFoundation\Response;
  6. $router = new League\Route\RouteCollection;
  7. $templates = new League\Plates\Engine(dirname(__FILE__).'/../views');
  8. $router->addRoute('GET', '/', 'Controller::index');
  9. $dispatcher = $router->getDispatcher();
  10. $request = Request::createFromGlobals();
  11. $response = $dispatcher->dispatch($request->getMethod(), $request->getPathInfo());
  12. $response->send();