antidot-fw / reactive-starter
Reactive Antidot Framework Apllication Starter
Package info
github.com/antidot-framework/reactive-antidot-starter
Type:project
pkg:composer/antidot-fw/reactive-starter
Fund package maintenance!
Requires
- php: ^7.4|^8.0
- ext-json: *
- antidot-fw/antidot-react-psr15: ^0.0.1
- antidot-fw/cli: ^1.1.0
- antidot-fw/container: ^0.1.0
- antidot-fw/dev-tools: ^0.1.2
- antidot-fw/event-dispatcher: ^2.0.3
- antidot-fw/fast-router-adapter: ^0.2.0
- antidot-fw/logger: ^1.1.0
- antidot-fw/react-framework: ^1.1.1
- antidot-fw/symfony-config-translator: ^1.1.0
- antidot-fw/yaml-config-provider: ^0.1.0
- webmozart/assert: ^1.7.0
- wshafer/psr11-monolog: ^3.0.0|@dev
Requires (Dev)
- franzl/whoops-middleware: ^2.0
- laminas/laminas-component-installer: ^2.1.2
- phpro/grumphp: ^1.0
- phpstan/phpstan: ^0.12
- phpunit/phpunit: ^8.0|^9.0
- roave/security-advisories: dev-master
- squizlabs/php_codesniffer: ^3.4
- symfony/var-dumper: ^5.2
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
This framework is based on concepts and components of other open source software, especially Zend Expressive, Zend Stratigillity, Recoil and React PHP.
Installation
Install a project using composer package manager:
composer create-project antidot-fw/reactive-starter dev mv dev/.* dev/* ./ && rmdir dev bin/console server:run
Open your browser localhost on port 5555 and you will see the DriftPHP Server up and running.
Config
Server Config
Default config
parameters: server: host: '0.0.0.0' port: '5555' max_concurrency: 100 buffer_size: 4096 workers: 4
Development Mode
To run it in dev mode you can run config:development-mode command
bin/console config:development-mode
Or you can do it by hand renaming from config/services/dependencies.dev.yaml.dist to config/services/dependencies.dev.yaml
mv config/services/dependencies.dev.yaml.dist config/services/dependencies.dev.yaml
Hot Code Reloading
composer require seregazhuk/php-watcher --dev
You can use Php whatcher with composer for more friendly development.
bin/console server:watch
Open another console and check the built-in Cli tool
bin/console
Async Usage
It allows executing promises inside PSR-15 and PSR-7 Middlewares and request handlers
PSR-15 Middleware
<?php declare(strict_types = 1); namespace App; use Antidot\React\PromiseResponse; use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\ServerRequestInterface; use Psr\Http\Server\MiddlewareInterface; use Psr\Http\Server\RequestHandlerInterface; class SomeMiddleware implements MiddlewareInterface { public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface { return new PromiseResponse( resolve($request)->then(static fn(ServerrequestInsterface $request) => $handler->handle($request)) ); } }
PSR-7 Request Handler
<?php declare(strict_types = 1); namespace App; use Antidot\React\PromiseResponse; use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\ServerRequestInterface; use Psr\Http\Server\RequestHandlerInterface; class SomeMiddleware implements RequestHandlerInterface { public function process(ServerRequestInterface $request): ResponseInterface { return resolve($request)->then( function(ServerrequestInterface $request): ResponseInterface { return new Response('Hello World!!!'); } );; } }
Classic Usage
It allows executing classic PSR-15 middleware and request handler:
PSR-15 Middleware
<?php declare(strict_types = 1); namespace App; use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\ServerRequestInterface; use Psr\Http\Server\MiddlewareInterface; use Psr\Http\Server\RequestHandlerInterface; class SomeMiddleware implements MiddlewareInterface { public function process(ServerRequestInterface $request, RequestHandlerInterface $handler): ResponseInterface { return $handler->handle($request); } }
PSR-7 Request Handler
<?php declare(strict_types = 1); namespace App; use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\ServerRequestInterface; use Psr\Http\Server\RequestHandlerInterface; class SomeMiddleware implements RequestHandlerInterface { public function process(ServerRequestInterface $request): ResponseInterface { return new Response('Hello World!!!'); } }
Benchmark
Using apache ab with single thread:
> ab -n 40000 -c 64 http://127.0.0.1:8080/ This is ApacheBench, Version 2.3 <$Revision: 1843412 $> Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/ Licensed to The Apache Software Foundation, http://www.apache.org/ Benchmarking 127.0.0.1 (be patient) Server Software: ReactPHP/1 Server Hostname: 127.0.0.1 Server Port: 8080 Document Path: / Document Length: 96 bytes Concurrency Level: 64 Time taken for tests: 16.201 seconds Complete requests: 40000 Failed requests: 0 Total transferred: 8960000 bytes HTML transferred: 3840000 bytes Requests per second: 2468.93 [#/sec] (mean) Time per request: 25.922 [ms] (mean) Time per request: 0.405 [ms] (mean, across all concurrent requests) Transfer rate: 540.08 [Kbytes/sec] received Connection Times (ms) min mean[+/-sd] median max Connect: 0 0 0.0 0 1 Processing: 15 26 1.4 25 33 Waiting: 15 26 1.4 25 33 Total: 16 26 1.4 25 33 Percentage of the requests served within a certain time (ms) 50% 25 66% 25 75% 26 80% 26 90% 27 95% 29 98% 31 99% 32 100% 33 (longest request)
using wrk:
> wrk -t8 -c64 -d15s http://127.0.0.1:8080/ [95ba8e6] Running 15s test @ http://127.0.0.1:8080/ 8 threads and 64 connections Thread Stats Avg Stdev Max +/- Stdev Latency 26.14ms 1.44ms 34.63ms 92.76% Req/Sec 306.84 24.52 373.00 81.17% 36670 requests in 15.04s, 8.50MB read Requests/sec: 2437.45 Transfer/sec: 578.42KB
See ranking in The Benchmarker - Web Framework project.