From 817c1722246df61e9b46734bd847ff796b1091ee Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Tue, 5 Dec 2023 16:13:46 +0100 Subject: [PATCH] fix the Runtime component introduction --- components/runtime.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/components/runtime.rst b/components/runtime.rst index df7b26141aa..bc2fe81e726 100644 --- a/components/runtime.rst +++ b/components/runtime.rst @@ -2,8 +2,8 @@ The Runtime Component ===================== The Runtime Component decouples the bootstrapping logic from any global state - to make sure the application can run with runtimes like PHP-FPM, ReactPHP, - Swoole, etc. without any changes. + to make sure the application can run with runtimes like `PHP-PM`_, `ReactPHP`_, + `Swoole`_, etc. without any changes. .. versionadded:: 5.3 @@ -483,5 +483,7 @@ The end user will now be able to create front controller like:: return new SomeCustomPsr15Application(); }; +.. _PHP-PM: https://github.com/php-pm/php-pm +.. _Swoole: https://openswoole.com/ .. _ReactPHP: https://reactphp.org/ .. _`PSR-15`: https://www.php-fig.org/psr/psr-15/