Skip to content

Commit

Permalink
Merge pull request #451 from clue-labs/php8.1
Browse files Browse the repository at this point in the history
Support PHP 8.1 release
  • Loading branch information
WyriHaximus committed Feb 11, 2022
2 parents 6b14f69 + 767d11e commit 75afcb1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ jobs:
strategy:
matrix:
php:
- 8.1
- 8.0
- 7.4
- 7.3
- 7.2
Expand Down
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
"require": {
"php": ">=5.3.8",
"react/cache": "^1.1",
"react/dns": "^1.8",
"react/dns": "^1.9",
"react/event-loop": "^1.2",
"react/http": "^1.6",
"react/promise": "^2.8 || ^1.2",
"react/promise": "^2.9 || ^1.2",
"react/promise-stream": "^1.3",
"react/promise-timer": "^1.7",
"react/socket": "^1.9",
"react/promise-timer": "^1.8",
"react/socket": "^1.11",
"react/stream": "^1.2"
},
"require-dev": {
Expand Down
4 changes: 3 additions & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.5/phpunit.xsd"
bootstrap="tests/bootstrap.php"
cacheResult="false"
colors="true">
colors="true"
convertDeprecationsToExceptions="true">
<testsuites>
<testsuite name="ReactPHP Test Suite">
<directory>./vendor/react/*/tests/</directory>
<!-- temporarily skip broken und unneeded tests, see https://github.com/reactphp/event-loop/pull/232 -->
<exclude>./vendor/react/event-loop/tests/BinTest.php</exclude>
<exclude>./vendor/react/event-loop/tests/ExtLibeventLoopTest.php</exclude>
<!-- temporarily skip broken und unneeded tests, see https://github.com/reactphp/http/pull/440 -->
<exclude>./vendor/react/http/tests/HttpServerTest.php</exclude>
</testsuite>
Expand Down

0 comments on commit 75afcb1

Please sign in to comment.