A lightweight MVC style microframework that's basically just a wiring of Symfony's HttpFoundation and Routing components.
Add the package as a requirement to your composer.json
:
$ composer require starlit/app
<?php
// In public index.php file
$app = new BaseApp();
$request = Symfony\Component\HttpFoundation\Request::createFromGlobals();
$response = $app->handle($request);
$response->send();
// IndexController.php
class IndexController extends AbstractController
{
public function indexAction()
{
$this->view->headline = 'Hello, world!"
}
}
// index.html.php
?>
<h1><?=$this->getEscaped('headline')?></h1>
- Requires PHP 5.6 or above.
This software is licensed under the BSD 3-Clause License - see the LICENSE
file for details.