Skip to content

Commit 7d10eba

Browse files
committed
Update supported PHP versions for loop extensions
1 parent cd3f42b commit 7d10eba

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ jobs:
2929
php-version: ${{ matrix.php }}
3030
coverage: xdebug
3131
- run: sudo apt-get update && sudo apt-get install libevent-dev
32-
- name: Install ext-event between PHP 5.4 and PHP 7.x
32+
- name: Install ext-event on PHP >= 5.4
3333
run: |
3434
echo "yes" | sudo pecl install event
3535
# explicitly enable extensions in php.ini on PHP 5.6+
3636
php -r 'exit((int)(PHP_VERSION_ID >= 50600));' || echo "extension=event.so" | sudo tee -a "$(php -r 'echo php_ini_loaded_file();')"
37-
if: ${{ matrix.php >= 5.4 && matrix.php < 8.0 }}
37+
if: ${{ matrix.php >= 5.4 }}
3838
- name: Install ext-ev on PHP >= 5.4
3939
run: |
4040
echo "yes" | sudo pecl install ev

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ A `stream_select()` based event loop.
353353
This uses the [`stream_select()`](https://www.php.net/manual/en/function.stream-select.php)
354354
function and is the only implementation that works out of the box with PHP.
355355

356-
This event loop works out of the box on PHP 5.3 through PHP 7+ and HHVM.
356+
This event loop works out of the box on PHP 5.3 through PHP 8+ and HHVM.
357357
This means that no installation is required and this library works on all
358358
platforms and supported PHP versions.
359359
Accordingly, the [`Loop` class](#loop) and the deprecated [`Factory`](#factory)
@@ -397,7 +397,7 @@ This uses the [`event` PECL extension](https://pecl.php.net/package/event),
397397
that provides an interface to `libevent` library.
398398
`libevent` itself supports a number of system-specific backends (epoll, kqueue).
399399

400-
This loop is known to work with PHP 5.4 through PHP 7+.
400+
This loop is known to work with PHP 5.4 through PHP 8+.
401401

402402
#### ExtEvLoop
403403

@@ -408,7 +408,7 @@ that provides an interface to `libev` library.
408408
`libev` itself supports a number of system-specific backends (epoll, kqueue).
409409

410410

411-
This loop is known to work with PHP 5.4 through PHP 7+.
411+
This loop is known to work with PHP 5.4 through PHP 8+.
412412

413413
#### ExtUvLoop
414414

@@ -418,7 +418,7 @@ This loop uses the [`uv` PECL extension](https://pecl.php.net/package/uv),
418418
that provides an interface to `libuv` library.
419419
`libuv` itself supports a number of system-specific backends (epoll, kqueue).
420420

421-
This loop is known to work with PHP 7+.
421+
This loop is known to work with PHP 7.x.
422422

423423
#### ~~ExtLibeventLoop~~
424424

src/ExtEvLoop.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* that provides an interface to `libev` library.
1717
* `libev` itself supports a number of system-specific backends (epoll, kqueue).
1818
*
19-
* This loop is known to work with PHP 5.4 through PHP 7+.
19+
* This loop is known to work with PHP 5.4 through PHP 8+.
2020
*
2121
* @see http://php.net/manual/en/book.ev.php
2222
* @see https://bitbucket.org/osmanov/pecl-ev/overview

src/ExtEventLoop.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
* that provides an interface to `libevent` library.
1717
* `libevent` itself supports a number of system-specific backends (epoll, kqueue).
1818
*
19-
* This loop is known to work with PHP 5.4 through PHP 7+.
19+
* This loop is known to work with PHP 5.4 through PHP 8+.
2020
*
2121
* @link https://pecl.php.net/package/event
2222
*/

src/ExtUvLoop.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* that provides an interface to `libuv` library.
1414
* `libuv` itself supports a number of system-specific backends (epoll, kqueue).
1515
*
16-
* This loop is known to work with PHP 7+.
16+
* This loop is known to work with PHP 7.x.
1717
*
1818
* @see https://github.com/bwoebi/php-uv
1919
*/

src/StreamSelectLoop.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* This uses the [`stream_select()`](https://www.php.net/manual/en/function.stream-select.php)
1313
* function and is the only implementation that works out of the box with PHP.
1414
*
15-
* This event loop works out of the box on PHP 5.4 through PHP 7+ and HHVM.
15+
* This event loop works out of the box on PHP 5.4 through PHP 8+ and HHVM.
1616
* This means that no installation is required and this library works on all
1717
* platforms and supported PHP versions.
1818
* Accordingly, the [`Loop` class](#loop) and the deprecated [`Factory`](#factory)

0 commit comments

Comments
 (0)