Skip to content

Commit

Permalink
Allow php 8 and bump phpunit dev deps
Browse files Browse the repository at this point in the history
  • Loading branch information
mbonneau committed Oct 19, 2021
1 parent 71dd23e commit da96788
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,17 +37,17 @@
]
},
"require": {
"php": "^7.1",
"php": ">=7.1",
"voryx/thruway-common": "^1.0.0",
"reactivex/rxphp": "^2.0.4",
"rx/websocket": "^2.1.1"
},
"require-dev": {
"phpunit/phpunit": "^5.5"
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5"
}
}
3 changes: 1 addition & 2 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,11 @@
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="tests/bootstrap.php">
<testsuites>
<testsuite name="Rx/ThruwayClient">
<directory>tests/</directory>
</testsuite>
</testsuites>

</phpunit>
</phpunit>

0 comments on commit da96788

Please sign in to comment.