Skip to content

Commit

Permalink
Merge pull request #6 from paxal/php8.3
Browse files Browse the repository at this point in the history
Add PHP 8.3 compatibility
  • Loading branch information
ericnorris authored Nov 1, 2024
2 parents c778b05 + 47f546d commit d1d36a8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
php-version: ['8.1', '8.2']
php-version: ['8.1', '8.2', '8.3']

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
}
],
"require": {
"php": "8.1.x|8.2.x",
"php": "8.1.x|8.2.x|8.3.x",
"ext-mbstring": "*"
},
"autoload": {
Expand Down
2 changes: 0 additions & 2 deletions tests/MultibyteStringStreamTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,6 @@ public function testMultibyteEdgeHandling(): void {
'Wrote out invalid character'
);

fseek($output, 2);

fwrite($output, $donut_second_half);
fflush($output);

Expand Down

0 comments on commit d1d36a8

Please sign in to comment.