Skip to content

Commit 74b9d3d

Browse files
committed
Run tests on PHP 8.3 and update test suite
1 parent f9c55f5 commit 74b9d3d

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
php:
14+
- 8.3
1415
- 8.2
1516
- 8.1
1617
- 8.0
@@ -23,7 +24,7 @@ jobs:
2324
- 5.5
2425
- 5.4
2526
steps:
26-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2728
- uses: shivammathur/setup-php@v2
2829
with:
2930
php-version: ${{ matrix.php }}
@@ -42,7 +43,7 @@ jobs:
4243
runs-on: ubuntu-22.04
4344
continue-on-error: true
4445
steps:
45-
- uses: actions/checkout@v3
46+
- uses: actions/checkout@v4
4647
- run: cp "$(which composer)" composer.phar && ./composer.phar self-update --2.2 # downgrade Composer for HHVM
4748
- name: Run hhvm composer.phar install
4849
uses: docker://hhvm/hhvm:3.30-lts-latest

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@
1313
"react/socket": "^1.12"
1414
},
1515
"require-dev": {
16-
"phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.35",
16+
"phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
1717
"react/async": "^4 || ^3 || ^2"
1818
},
1919
"autoload": {
2020
"psr-4": {
21-
"React\\MySQL\\": "src"
21+
"React\\MySQL\\": "src/"
2222
}
2323
},
2424
"autoload-dev": {
2525
"psr-4": {
26-
"React\\Tests\\MySQL\\": "tests"
26+
"React\\Tests\\MySQL\\": "tests/"
2727
}
2828
}
2929
}

0 commit comments

Comments
 (0)