Skip to content

Commit

Permalink
Add PHP 8.4
Browse files Browse the repository at this point in the history
  • Loading branch information
thekid committed Feb 4, 2024
1 parent 5684483 commit 99c52b6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
if: "!contains(github.event.head_commit.message, 'skip ci')"
name: PHP ${{ matrix.php-versions }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.php-versions == '8.3' }}
continue-on-error: ${{ matrix.php-versions >= '8.3' }}
strategy:
fail-fast: false
matrix:
php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3', '8.4']
os: [ubuntu-latest, windows-latest]

steps:
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:

- name: Install dependencies
run: >
curl -sSL https://baltocdn.com/xp-framework/xp-runners/distribution/downloads/e/entrypoint/xp-run-8.6.2.sh > xp-run &&
curl -sSL https://baltocdn.com/xp-framework/xp-runners/distribution/downloads/e/entrypoint/xp-run-8.8.0.sh > xp-run &&
composer install --prefer-dist &&
echo "vendor/autoload.php" > composer.pth
Expand Down
2 changes: 2 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ MongoDB Sessions change log

## ?.?.? / ????-??-??

* Added PHP 8.4 to the test matrix - @thekid

## 1.3.0 / 2023-08-19

* Made this library compatible with `xp-forge/mongodb` 2.0.0 - @thekid
Expand Down

0 comments on commit 99c52b6

Please sign in to comment.