Skip to content

Commit

Permalink
Test on PHP 8.3 (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
colinodell committed Oct 7, 2023
1 parent c9f767d commit c52bd01
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ jobs:
stable: true
coverage: false
composer-flags: '--prefer-lowest'
- php: '8.3'
stable: false
coverage: false
composer-flags: '--ignore-platform-req=php+'

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion src/Json5Decoder.php
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ private static function getEscapee(string $ch): ?string
case 'r': return "\r";
case 't': return "\t";
default: return null;
// @codingStandardsIgnoreEnd
// @codingStandardsIgnoreEnd
}
}
}

0 comments on commit c52bd01

Please sign in to comment.