Concurrent by default
Modern applications demand tolerance to high traffic. Non-blocking I/O operations and asynchronism allow maximum performance to be achieved.
High-performance framework for build APIs, powered by Amphp.
PhenixPHP style
PhenixPHP combines expressive APIs with PHP Fibers and the Amp ecosystem, so routing, validation, persistence, and async work stay readable without special runtime extensions.
<?php
declare(strict_types=1);
use App\Http\Controllers\UserController;
use Phenix\Facades\Route;
Route::get('/users', [UserController::class, 'index'])
->name('users.index');
Route::post('/users', [UserController::class, 'store'])
->name('users.store');
Define readable CRUD endpoints with controller actions and route names that match the quick start flow.