runtime
runtime copied to clipboard
A home for runtimes.
See @dunglas PR for FrankenPHP https://github.com/php-runtime/runtime/pull/143
See @dunglas for FrankenPHP: https://github.com/php-runtime/runtime/pull/142
These changes allow parent request headers to be taken into sub-request when creating it. One of the popular features of Symfony and Twig is the ability to render a controller...
the REQUEST_URI will return the uri path only now. Should append with the query string if exists Discussion in swoole repo: https://github.com/swoole/swoole-src/issues/961 Swoole does not planning to add this feature...
The runtime/react instantiates an HttpServer for you which is where one would define middleware. Can we abstract this in a decent way? Maybe we can add an optional `$middlewares` argument...
Requires a few tweaks: https://github.com/symfony/symfony/issues/49443 Some of these could be solved in the runtime instead of relying on the user to do them: https://github.com/box-project/box/blob/main/doc/symfony.md#symfony-support Runtime would need to ship: 1....
This pull request adds support for RoadRunner **2023** and **2024**. The required PHP packages have been added to the dependencies. With the old version of RoadRunner (2.x), need to explicitly...
When recieving a big number of requests (via stress test, for example) while having `hook_flags` set to `SWOOLE_HOOK_ALL`, the Runtime triggers the following Swoole error: > app-1 | [2024-04-16 22:31:36...
This runtime is more a PSR-15 runtime than a PSR-17 one. The implementation relies (optionally) on PSR-17 to know how to create the PSR-7 request. But the application logic being...