puff/http-server

HTTP web application orchestration for PHP Unison Fiber Framework

Maintainers

Package info

github.com/php-puff/http-server

pkg:composer/puff/http-server

Transparency log

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

dev-main 2026-08-27 15:01 UTC

This package is auto-updated.

Last update: 2026-08-27 15:02:14 UTC


README

HTTP application orchestration for Puff. The puff/http-server package connects the protocol-independent puff/application lifecycle to HTTP requests, routing, middleware pipelines and PSR-15 servers.

use Puff\HttpServer\ServiceProvider;

$provider = make(ServiceProvider::class);

The package publishes config/http.server.php; its values are available under http.server:

'http' => [
    'server' => [
        'addr' => '127.0.0.1:8620',
        'routes' => [dirname(__DIR__) . '/app/routes.php'],
        'pipeline' => [],
        'workers' => 1,
        'trusted_proxies' => [],
    ],
],