Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Guilherme Nascimento edited this page Jan 16, 2026 · 10 revisions

Note: This documentation covers Inphinit 1.0. For the 2.1 documentation, visit: https://inphinit.github.io/en/docs/

The fast and "sustainable" PHP micro-framework

Infinite possibilities to use with other packages in an easy and simple way and still achieve a good performance

<?php
use Inphinit\Routing\Route;

Route::set('ANY', '/', function () {
    return 'Hello, World!';
});

Route::set('GET', '/user/{:[\w\-]+:}', function ($name) {
    return 'Hello, ' . $name;
});

Getting Started - Vamos começar

Clone this wiki locally