Laravel-inspired, zero dependencies

Small core.
Big ideas.

A practical PHP 8 framework that borrows the workflow you like—routing, middleware, validation, Blade-style views, migrations—without classes or hidden machinery.

route_get('/hello/{name?}',
    function (?string $name = null) {
        return json_response([
            'message' => "Hello, $name!"
        ]);
    },
    ['name' => 'hello']
);
01

Routes

Expressive verbs, parameters, names, groups, and middleware.

02

Views

Escaped output, layouts, sections, includes, and familiar directives.

03

Database

PDO connections, safe bindings, CRUD helpers, and migrations.

04

Requests

Unified input, JSON, headers, method spoofing, and responses.

05

Validation

Composable rules, old input, error bags, and redirect helpers.

06

Console

Serve, inspect routes, migrate, scaffold, and clear caches.

Put the request cycle to work.

This form exercises sessions, CSRF protection, validation, flash data, redirects, and the database helper.