Skip to content

[READ ONLY] Http Server Plugin for PHPStreamServer

Notifications You must be signed in to change notification settings

phpstreamserver/http-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PHPStreamServer logo

HTTP Server Plugin for PHPStreamServer

PHP >=8.2 Version Downloads

The HTTP Server Plugin for PHPStreamServer extends the core functionality by providing a high performance, asynchronous HTTP server. It works in the event loop and always persists in memory, enabling fast request handling and reducing startup overhead.

Features:

  • Non-blocking, high concurrency request handling.
  • Protocol support: HTTP/1.1, HTTP/2.
  • HTTPS encrypted connections.
  • GZIP compression.
  • Serve static files: Can serve files from a directory, making it easy to host static assets like HTML, CSS, JavaScript, and images.
  • Middleware support: Integrates middleware for flexible request/response processing.

Install

$ composer require phpstreamserver/core phpstreamserver/http-server

Configure

Here is an example of a simple HTTP server configuration.

// server.php

use Amp\Http\Server\HttpErrorException;
use Amp\Http\Server\Request;
use Amp\Http\Server\Response;
use PHPStreamServer\Core\Server;
use PHPStreamServer\Plugin\HttpServer\HttpServerPlugin;
use PHPStreamServer\Plugin\HttpServer\HttpServerProcess;

$server = new Server();

$server->addPlugin(
    new HttpServerPlugin(),
);

$server->addWorker(
    new HttpServerProcess(
        name: 'Web Server',
        count: 4,
        listen: '0.0.0.0:8080',
        onStart: function (HttpServerProcess $worker): void {
            // initialization
        },
        onRequest: function (Request $request, HttpServerProcess $worker): Response {
            return match ($request->getUri()->getPath()) {
                '/' => new Response(body: 'Hello world'),
                '/ping' => new Response(body: 'pong'),
                default => throw new HttpErrorException(404),
            };
        }
    ),
);

exit($server->run());

Run

$ php server.php start

About

[READ ONLY] Http Server Plugin for PHPStreamServer

Topics

Resources

Stars

Watchers

Forks

Languages