@@ -330,7 +330,7 @@ A `stream_select()` based event loop.
330330This uses the [ ` stream_select() ` ] ( https://www.php.net/manual/en/function.stream-select.php )
331331function and is the only implementation that works out of the box with PHP.
332332
333- This event loop works out of the box on PHP 5.3 through PHP 8+ and HHVM .
333+ This event loop works out of the box on any PHP version .
334334This means that no installation is required and this library works on all
335335platforms and supported PHP versions.
336336Accordingly, the [ ` Loop ` class] ( #loop ) will use this event loop by default if
@@ -373,7 +373,7 @@ This uses the [`event` PECL extension](https://pecl.php.net/package/event),
373373that provides an interface to ` libevent ` library.
374374` libevent ` itself supports a number of system-specific backends (epoll, kqueue).
375375
376- This loop is known to work with PHP 5.4 through PHP 8+.
376+ This loop is known to work with PHP 7.1 through PHP 8+.
377377
378378#### ExtEvLoop
379379
@@ -384,7 +384,7 @@ that provides an interface to `libev` library.
384384` libev ` itself supports a number of system-specific backends (epoll, kqueue).
385385
386386
387- This loop is known to work with PHP 5.4 through PHP 8+.
387+ This loop is known to work with PHP 7.1 through PHP 8+.
388388
389389#### ExtUvLoop
390390
@@ -394,7 +394,7 @@ This loop uses the [`uv` PECL extension](https://pecl.php.net/package/uv),
394394that provides an interface to ` libuv ` library.
395395` libuv ` itself supports a number of system-specific backends (epoll, kqueue).
396396
397- This loop is known to work with PHP 7+.
397+ This loop is known to work with PHP 7.1 through PHP 8 +.
398398
399399### LoopInterface
400400
@@ -830,8 +830,7 @@ composer require react/event-loop:^3@dev
830830See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
831831
832832This project aims to run on any platform and thus does not require any PHP
833- extensions and supports running on legacy PHP 5.3 through current PHP 8+ and
834- HHVM.
833+ extensions and supports running on PHP 7.1 through current PHP 8+.
835834It's * highly recommended to use the latest supported PHP version* for this project.
836835
837836Installing any of the event loop extensions is suggested, but entirely optional.
0 commit comments