Skip to content

Commit

Permalink
Merge pull request #180 from clue-labs/php8.3
Browse files Browse the repository at this point in the history
Run tests on PHP 8.3 and update test suite
  • Loading branch information
WyriHaximus authored Nov 3, 2023
2 parents f9c55f5 + 74b9d3d commit 99c6366
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
strategy:
matrix:
php:
- 8.3
- 8.2
- 8.1
- 8.0
Expand All @@ -23,7 +24,7 @@ jobs:
- 5.5
- 5.4
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
Expand All @@ -42,7 +43,7 @@ jobs:
runs-on: ubuntu-22.04
continue-on-error: true
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: cp "$(which composer)" composer.phar && ./composer.phar self-update --2.2 # downgrade Composer for HHVM
- name: Run hhvm composer.phar install
uses: docker://hhvm/hhvm:3.30-lts-latest
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@
"react/socket": "^1.12"
},
"require-dev": {
"phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.35",
"phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
"react/async": "^4 || ^3 || ^2"
},
"autoload": {
"psr-4": {
"React\\MySQL\\": "src"
"React\\MySQL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"React\\Tests\\MySQL\\": "tests"
"React\\Tests\\MySQL\\": "tests/"
}
}
}

0 comments on commit 99c6366

Please sign in to comment.