Skip to content

Commit

Permalink
Support php83 (#56)
Browse files Browse the repository at this point in the history
* Added php8.3 support tests

* Added php8.3 support in Readme

* Fix xdebug version in workflow
  • Loading branch information
hexonthebeach authored Jun 18, 2024
1 parent abdae16 commit e8d6c8a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: ['7.0', '7.4', '8.0', '8.2']
version: ['7.0', '7.4', '8.0', '8.3']
max-parallel: 2

steps:
Expand Down Expand Up @@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: ['7.0', '7.4', '8.0', '8.2']
version: ['7.0', '7.4', '8.0', '8.3']
max-parallel: 1

steps:
Expand All @@ -52,7 +52,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.version }}
coverage: xdebug2
coverage: ${{ startsWith(matrix.version, '7.') && 'xdebug2' || 'xdebug3' }}
env:
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ A software development kit to provide ways to interact with CM.com's Text servic

### Requirements

- php 7.* or 8.0 or 8.1 or 8.2
- php 7.* or 8.0 or 8.1 or 8.2 or 8.3


## Usage
Expand Down

0 comments on commit e8d6c8a

Please sign in to comment.