Skip to content

Commit 41e54b7

Browse files
authored
Merge pull request #164 from clue-labs/php8.4
Run tests on PHP 8.4 and update test environment
2 parents 3f518cc + 1c1e0ba commit 41e54b7

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/ci.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,11 @@ on:
77
jobs:
88
PHPUnit:
99
name: PHPUnit (PHP ${{ matrix.php }})
10-
runs-on: ubuntu-22.04
10+
runs-on: ubuntu-24.04
1111
strategy:
1212
matrix:
1313
php:
14+
- 8.4
1415
- 8.3
1516
- 8.2
1617
- 8.1
@@ -41,10 +42,11 @@ jobs:
4142
4243
PHPStan:
4344
name: PHPStan (PHP ${{ matrix.php }})
44-
runs-on: ubuntu-22.04
45+
runs-on: ubuntu-24.04
4546
strategy:
4647
matrix:
4748
php:
49+
- 8.4
4850
- 8.3
4951
- 8.2
5052
- 8.1

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@
1919
"react/socket": "^1.16"
2020
},
2121
"require-dev": {
22-
"phpstan/phpstan": "1.10.15 || 1.4.10",
22+
"phpstan/phpstan": "1.12.13 || 1.4.10",
2323
"phpunit/phpunit": "^9.6 || ^7.5",
2424
"react/async": "^4.3 || ^3.2"
2525
},
2626
"autoload": {
27-
"psr-4": {
27+
"psr-4": {
2828
"Clue\\React\\Redis\\": "src/"
2929
}
3030
},
3131
"autoload-dev": {
32-
"psr-4": {
32+
"psr-4": {
3333
"Clue\\Tests\\React\\Redis\\": "tests/"
3434
}
3535
}

0 commit comments

Comments
 (0)