Skip to content

This is a small http server framework built on top of react http. It allows to quickly build simple applications

License

Notifications You must be signed in to change notification settings

phpbg/mini-httpd

Repository files navigation

PhpBg\MiniHttpd

This is a small http server framework built on top of React HTTP.

This framework is designed to build quick proofs of concepts.

It is not mature enough to run in production environments, because:

  • it still contains synchronous blocking code
  • it lacks a dependency (ioc) /configuration management

License

MIT

Features

Most of features are directly inherited from PHP React HTTP

  • Middleware based
  • Highly customizable
  • PSR-7 messages
  • Basic routing
  • Basic PSR-3 logging
  • Static files serving
  • Let you focus on your service logic, not building a HTTP response (boooring)
    • Just return arrays or objects in your route handlers, that's it:
    function (ServerRequestInterface $request) {
        return ['hello' => 'world'];
    }

Install

Install with composer:

composer require phpbg/mini-httpd

Examples

See example folder

  • bare-minimal-json-server.php shows the very minimal setup for json rendering
  • full-featured-server.php shows a full setup with:
    • Static files serving
    • Route redirection examples
    • Automatic PHTML renderer features and suggested layout
    • Accessing request params with proper validation / filtering

There is also a complete example that integrates with ratchet Websockets here: https://github.com/phpbg/mini-httpd-ratchet

TODO

  • writing tests

About

This is a small http server framework built on top of react http. It allows to quickly build simple applications

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published