Skip to content

Commit

Permalink
Compatible with PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
struzik-vladislav committed Feb 7, 2024
1 parent e56b4df commit 4908bc1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ 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' ]
dependency-versions: [ 'lowest', 'highest' ]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: shivammathur/setup-php@v2
with:
Expand All @@ -28,7 +29,9 @@ jobs:
run: composer validate --strict

- name: Install dependencies
run: composer install --prefer-dist --no-progress
uses: ramsey/composer-install@v2
with:
dependency-versions: ${{ matrix.dependency-versions }}

- name: Run test suite
run: composer run-script test
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": ">=7.4 <8.3",
"php": ">=7.4 <8.4",
"ext-dom": "*",
"psr/log": "~1.0 | ~2.0 | ~3.0",
"struzik-vladislav/epp-client": "^2.0"
Expand Down

0 comments on commit 4908bc1

Please sign in to comment.