/hogephp

A single file PHP framework

Primary LanguagePHPDo What The F*ck You Want To Public LicenseWTFPL

Hoge - A single file PHP framework

Sample code

<?= (require __DIR__ . '/../Hoge.php')(function (Hoge\Framework $php) {
    $php->get('/', function () { ?>
<!DOCTYPE html>
<html>
<title>Hoge index</title>
<h1>The Hoge PHP Framework</h1>
</html>
    <?php });
}) ?>