Skip to content

Commit

Permalink
EA-6324:
Browse files Browse the repository at this point in the history
 make it php 8.2 compatible
  • Loading branch information
KaiSchwendig committed Mar 7, 2024
1 parent 1dab1bc commit 750154e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,18 @@ jobs:

runs-on: ubuntu-20.04

strategy:
fail-fast: false
matrix:
php-version:
- "8.1"
- "8.2"

steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.1'
php-version: "${{ matrix.php-version }}"

- 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 @@ -4,7 +4,7 @@
"type": "library",
"license": "MIT",
"require": {
"php": "8.1.*|8.2.0",
"php": "8.1.* || 8.2.*",
"ext-json": "*",
"ext-pcntl": "*",
"jtl/php-generic-collection": "^0.5",
Expand Down
4 changes: 2 additions & 2 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 750154e

Please sign in to comment.