Skip to content

Commit d4e16d3

Browse files
authored
Merge pull request #147 from yadaiio/test_suite
Run tests on PHP 8.3 and update test suite
2 parents 76bd8ae + 15f43bf commit d4e16d3

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

.github/workflows/ci.yml

+4-2
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
@@ -19,7 +20,7 @@ jobs:
1920
- 7.2
2021
- 7.1
2122
steps:
22-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2324
- uses: shivammathur/setup-php@v2
2425
with:
2526
php-version: ${{ matrix.php }}
@@ -44,6 +45,7 @@ jobs:
4445
strategy:
4546
matrix:
4647
php:
48+
- 8.3
4749
- 8.2
4850
- 8.1
4951
- 8.0
@@ -52,7 +54,7 @@ jobs:
5254
- 7.2
5355
- 7.1
5456
steps:
55-
- uses: actions/checkout@v3
57+
- uses: actions/checkout@v4
5658
- uses: shivammathur/setup-php@v2
5759
with:
5860
php-version: ${{ matrix.php }}

composer.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,13 @@
2525
"phpunit/phpunit": "^9.6 || ^7.5"
2626
},
2727
"autoload": {
28-
"psr-4": { "Clue\\React\\Redis\\": "src/" }
28+
"psr-4": {
29+
"Clue\\React\\Redis\\": "src/"
30+
}
2931
},
3032
"autoload-dev": {
31-
"psr-4": { "Clue\\Tests\\React\\Redis\\": "tests/" }
33+
"psr-4": {
34+
"Clue\\Tests\\React\\Redis\\": "tests/"
35+
}
3236
}
3337
}

0 commit comments

Comments
 (0)