Skip to content

Commit

Permalink
chore: Compatibility with PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vincent4vx committed Feb 28, 2024
1 parent c6f84ec commit 03e16e3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['7.4', '8.0', '8.1', '8.2']
php-versions: ['7.4', '8.0', '8.1', '8.2', '8.3']
name: PHP ${{ matrix.php-versions }}

steps:
Expand Down
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@
}
},
"require": {
"php": "~7.4 | ~8.0.0 | ~8.1.0 | ~8.2.0",
"php": "~7.4 | ~8.0.0 | ~8.1.0 | ~8.2.0 | ~8.3.0",
"b2pweb/bdf-prime": "~1.1|~2.0",
"moln/php-mysql-replication": "~1.2"
"moln/php-mysql-replication": "~1.2",
"psr/simple-cache": "^1.0@stable | ^3.0@stable"
},
"require-dev": {
"ext-pcntl": "*",
Expand Down
4 changes: 4 additions & 0 deletions psalm.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
xmlns="https://getpsalm.org/schema/config"
xsi:schemaLocation="https://getpsalm.org/schema/config vendor/vimeo/psalm/config.xsd"
>
<issueHandlers>
<RiskyTruthyFalsyComparison errorLevel="suppress" />
</issueHandlers>

<projectFiles>
<directory name="src"/>
<ignoreFiles>
Expand Down

0 comments on commit 03e16e3

Please sign in to comment.