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.
12 lines
351 B
12 lines
351 B
<?php
|
|
|
|
require __DIR__ . '/../src/Silex/Config/SplClassLoader.php';
|
|
require __DIR__ . '/../src/Silex/Config/Config.php';
|
|
|
|
$loader = new SplClassLoader('Silex', __DIR__ . '/../src');
|
|
$loader->register();
|
|
|
|
// TODO router
|
|
$controller = new \Silex\Controller\UserController();
|
|
$controller->index(new \Silex\DI\DI())->render(__DIR__ . '/../' . VIEW_PATH);
|