A lightweight PHP micro-framework starter with routing, templating, hive configuration, and ORM-lite — packaged as a deployable project with sample routes and a Brokie landing demo.
cd package
php -S localhost:8080 index.php
http://localhost:8080/ # framework welcome
http://localhost:8080/demo # Brokie landing template
http://localhost:8080/api/health # JSON smoke test
$f3->route('GET /demo', function ($f3) {
$f3->set('tagline', 'Ship PHP apps fast.');
$f3->set('content', 'landing.htm');
echo View::instance()->render('landing-layout.htm');
});
lib/ fatfree-core included — no git submodule required./demo Brokie landing page proves templates work./api/health JSON endpoint for deployment checks.