Skip to content

Commit d3c1052

Browse files
WyriHaximusclue
authored andcommitted
Update to require PHP 7.1+
1 parent 229fb29 commit d3c1052

12 files changed

+18
-89
lines changed

.github/workflows/ci.yml

+2-24
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,6 @@ jobs:
1919
- 7.3
2020
- 7.2
2121
- 7.1
22-
- 7.0
23-
- 5.6
24-
- 5.5
25-
- 5.4
26-
- 5.3
2722
steps:
2823
- uses: actions/checkout@v4
2924
- uses: shivammathur/setup-php@v2
@@ -32,7 +27,7 @@ jobs:
3227
coverage: xdebug
3328
ini-file: development
3429
ini-values: disable_functions='' # do not disable PCNTL functions on PHP < 8.1
35-
extensions: sockets, pcntl ${{ matrix.php >= 5.6 && ', event' || '' }} ${{ matrix.php >= 5.4 && ', ev' || '' }}
30+
extensions: sockets, pcntl, event, ev
3631
env:
3732
fail-fast: true # fail step if any extension can not be installed
3833
- run: composer install
@@ -56,7 +51,6 @@ jobs:
5651
- 7.3
5752
- 7.2
5853
- 7.1
59-
- 7.0
6054
steps:
6155
- uses: actions/checkout@v4
6256
- uses: shivammathur/setup-php@v2
@@ -65,7 +59,7 @@ jobs:
6559
coverage: xdebug
6660
ini-file: development
6761
extensions: sockets, pcntl
68-
- name: Install ext-uv on PHP 7+
62+
- name: Install ext-uv
6963
run: |
7064
sudo apt-get update -q && sudo apt-get install libuv1-dev
7165
echo "yes" | sudo pecl install ${{ matrix.php >= 8.0 && 'uv-0.3.0' || 'uv-0.2.4' }}
@@ -104,19 +98,3 @@ jobs:
10498
if: ${{ matrix.php >= 7.3 }}
10599
- run: vendor/bin/phpunit --coverage-text -c phpunit.xml.legacy
106100
if: ${{ matrix.php < 7.3 }}
107-
108-
PHPUnit-hhvm:
109-
name: PHPUnit (HHVM)
110-
runs-on: ubuntu-22.04
111-
continue-on-error: true
112-
steps:
113-
- uses: actions/checkout@v4
114-
- run: cp "$(which composer)" composer.phar && ./composer.phar self-update --2.2 # downgrade Composer for HHVM
115-
- name: Run hhvm composer.phar install
116-
uses: docker://hhvm/hhvm:3.30-lts-latest
117-
with:
118-
args: hhvm composer.phar install
119-
- name: Run hhvm vendor/bin/phpunit
120-
uses: docker://hhvm/hhvm:3.30-lts-latest
121-
with:
122-
args: hhvm vendor/bin/phpunit

README.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ A `stream_select()` based event loop.
330330
This uses the [`stream_select()`](https://www.php.net/manual/en/function.stream-select.php)
331331
function 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.
334334
This means that no installation is required and this library works on all
335335
platforms and supported PHP versions.
336336
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),
373373
that 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),
394394
that 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
830830
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
831831

832832
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+.
835834
It's *highly recommended to use the latest supported PHP version* for this project.
836835

837836
Installing any of the event loop extensions is suggested, but entirely optional.

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
}
2727
],
2828
"require": {
29-
"php": ">=5.3.0"
29+
"php": ">=7.1"
3030
},
3131
"require-dev": {
32-
"phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
32+
"phpunit/phpunit": "^9.6 || ^5.7"
3333
},
3434
"suggest": {
3535
"ext-pcntl": "For signal handling support when using the StreamSelectLoop"

phpunit.xml.legacy

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<!-- PHPUnit configuration file with old format for legacy PHPUnit -->
44
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5-
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/4.8/phpunit.xsd"
5+
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/5.7/phpunit.xsd"
66
bootstrap="vendor/autoload.php"
77
colors="true">
88
<testsuites>

src/ExtEvLoop.php

+1-1
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 8+.
19+
* This loop is known to work with PHP 7.1 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

+3-7
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 8+.
19+
* This loop is known to work with PHP 7.1 through PHP 8+.
2020
*
2121
* @link https://pecl.php.net/package/event
2222
*/
@@ -85,9 +85,7 @@ public function addReadStream($stream, $listener)
8585

8686
// ext-event does not increase refcount on stream resources for PHP 7+
8787
// manually keep track of stream resource to prevent premature garbage collection
88-
if (\PHP_VERSION_ID >= 70000) {
89-
$this->readRefs[$key] = $stream;
90-
}
88+
$this->readRefs[$key] = $stream;
9189
}
9290

9391
public function addWriteStream($stream, $listener)
@@ -104,9 +102,7 @@ public function addWriteStream($stream, $listener)
104102

105103
// ext-event does not increase refcount on stream resources for PHP 7+
106104
// manually keep track of stream resource to prevent premature garbage collection
107-
if (\PHP_VERSION_ID >= 70000) {
108-
$this->writeRefs[$key] = $stream;
109-
}
105+
$this->writeRefs[$key] = $stream;
110106
}
111107

112108
public function removeReadStream($stream)

src/ExtUvLoop.php

+1-1
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.1 through PHP 8+.
1717
*
1818
* @see https://github.com/bwoebi/php-uv
1919
*/

src/StreamSelectLoop.php

+3-6
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 8+ and HHVM.
15+
* This event loop works out of the box on any PHP version.
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) will use this event loop by default if
@@ -302,13 +302,10 @@ private function streamSelect(array &$read, array &$write, $timeout)
302302
try {
303303
$ret = \stream_select($read, $write, $except, $timeout === null ? null : 0, $timeout);
304304
\restore_error_handler();
305-
} catch (\Throwable $e) { // @codeCoverageIgnoreStart
305+
} catch (\Throwable $e) {
306306
\restore_error_handler();
307307
throw $e;
308-
} catch (\Exception $e) {
309-
\restore_error_handler();
310-
throw $e;
311-
} // @codeCoverageIgnoreEnd
308+
}
312309

313310
if ($except) {
314311
$write = \array_merge($write, $except);

tests/AbstractLoopTest.php

-4
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,6 @@ public function testAddWriteStreamTriggersWhenSocketConnectionSucceeds()
118118

119119
public function testAddWriteStreamTriggersWhenSocketConnectionRefused()
120120
{
121-
if (defined('HHVM_VERSION')) {
122-
$this->markTestSkipped('Not supported on HHVM');
123-
}
124-
125121
// first verify the operating system actually refuses the connection and no firewall is in place
126122
// use higher timeout because Windows retires multiple times and has a noticeable delay
127123
// @link https://stackoverflow.com/questions/19440364/why-do-failed-attempts-of-socket-connect-take-1-sec-on-windows

tests/BinTest.php

-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ class BinTest extends TestCase
99
*/
1010
public function setUpBin()
1111
{
12-
if (!defined('PHP_BINARY') || defined('HHVM_VERSION')) {
13-
$this->markTestSkipped('Tests not supported on legacy PHP 5.3 or HHVM');
14-
}
15-
1612
chdir(__DIR__ . '/bin/');
1713
}
1814

tests/ExtEventLoopTest.php

-25
Original file line numberDiff line numberDiff line change
@@ -70,29 +70,4 @@ public function writeToStream($stream, $content)
7070

7171
fwrite($stream, $content);
7272
}
73-
74-
/**
75-
* @group epoll-readable-error
76-
*/
77-
public function testCanUseReadableStreamWithFeatureFds()
78-
{
79-
if (PHP_VERSION_ID > 70000) {
80-
$this->markTestSkipped('Memory stream not supported');
81-
}
82-
83-
$this->loop = $this->createLoop(true);
84-
85-
$input = fopen('php://temp/maxmemory:0', 'r+');
86-
87-
fwrite($input, 'x');
88-
ftruncate($input, 0);
89-
90-
$this->loop->addReadStream($input, $this->expectCallableExactly(2));
91-
92-
fwrite($input, "foo\n");
93-
$this->tickLoop($this->loop);
94-
95-
fwrite($input, "bar\n");
96-
$this->tickLoop($this->loop);
97-
}
9873
}

tests/StreamSelectLoopTest.php

-8
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,6 @@ public function testStreamSelectTimeoutEmulation()
4242

4343
public function testStreamSelectReportsWarningForStreamWithFilter()
4444
{
45-
if (defined('HHVM_VERSION')) {
46-
$this->markTestSkipped('Not supported on legacy HHVM');
47-
}
48-
4945
$stream = tmpfile();
5046
stream_filter_append($stream, 'string.rot13');
5147

@@ -80,10 +76,6 @@ public function testStreamSelectReportsWarningForStreamWithFilter()
8076

8177
public function testStreamSelectThrowsWhenCustomErrorHandlerThrowsForStreamWithFilter()
8278
{
83-
if (defined('HHVM_VERSION')) {
84-
$this->markTestSkipped('Not supported on legacy HHVM');
85-
}
86-
8779
$stream = tmpfile();
8880
stream_filter_append($stream, 'string.rot13');
8981

0 commit comments

Comments
 (0)