Skip to content

Commit b292dd6

Browse files
authored
Merge pull request #28 from clue-labs/php8.1
Support PHP 8.1 release
2 parents 28d4fe2 + 5752f2d commit b292dd6

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
php:
14+
- 8.1
1415
- 8.0
1516
- 7.4
1617
- 7.3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ $ composer require clue/reactphp-eventsource:dev-master
9090

9191
This project aims to run on any platform and thus does not require any PHP
9292
extensions and supports running on legacy PHP 5.4 through current PHP 8+.
93-
It's *highly recommended to use PHP 7+* for this project.
93+
It's *highly recommended to use the latest supported PHP version* for this project.
9494

9595
## Tests
9696

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"php": ">=5.4",
1515
"evenement/evenement": "^3.0 || ^2.0",
1616
"react/event-loop": "^1.2",
17-
"react/http": "^1.5"
17+
"react/http": "^1.6"
1818
},
1919
"require-dev": {
2020
"phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35"

phpunit.xml.dist

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
55
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
66
bootstrap="vendor/autoload.php"
7+
cacheResult="false"
78
colors="true"
8-
cacheResult="false">
9+
convertDeprecationsToExceptions="true">
910
<testsuites>
1011
<testsuite name="EventSource Test Suite">
1112
<directory>./tests/</directory>

0 commit comments

Comments
 (0)