@@ -330,7 +330,7 @@ A `stream_select()` based event loop.
330
330
This uses the [ ` stream_select() ` ] ( https://www.php.net/manual/en/function.stream-select.php )
331
331
function and is the only implementation that works out of the box with PHP.
332
332
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 .
334
334
This means that no installation is required and this library works on all
335
335
platforms and supported PHP versions.
336
336
Accordingly, 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),
373
373
that provides an interface to ` libevent ` library.
374
374
` libevent ` itself supports a number of system-specific backends (epoll, kqueue).
375
375
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+.
377
377
378
378
#### ExtEvLoop
379
379
@@ -384,7 +384,7 @@ that provides an interface to `libev` library.
384
384
` libev ` itself supports a number of system-specific backends (epoll, kqueue).
385
385
386
386
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+.
388
388
389
389
#### ExtUvLoop
390
390
@@ -394,7 +394,7 @@ This loop uses the [`uv` PECL extension](https://pecl.php.net/package/uv),
394
394
that provides an interface to ` libuv ` library.
395
395
` libuv ` itself supports a number of system-specific backends (epoll, kqueue).
396
396
397
- This loop is known to work with PHP 7+.
397
+ This loop is known to work with PHP 7.1 through PHP 8 +.
398
398
399
399
### LoopInterface
400
400
@@ -830,8 +830,7 @@ composer require react/event-loop:^3@dev
830
830
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
831
831
832
832
This 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+.
835
834
It's * highly recommended to use the latest supported PHP version* for this project.
836
835
837
836
Installing any of the event loop extensions is suggested, but entirely optional.
0 commit comments