Skip to content

Commit e8d6c8a

Browse files
Support php83 (#56)
* Added php8.3 support tests * Added php8.3 support in Readme * Fix xdebug version in workflow
1 parent abdae16 commit e8d6c8a

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
version: ['7.0', '7.4', '8.0', '8.2']
13+
version: ['7.0', '7.4', '8.0', '8.3']
1414
max-parallel: 2
1515

1616
steps:
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ubuntu-latest
4242
strategy:
4343
matrix:
44-
version: ['7.0', '7.4', '8.0', '8.2']
44+
version: ['7.0', '7.4', '8.0', '8.3']
4545
max-parallel: 1
4646

4747
steps:
@@ -52,7 +52,7 @@ jobs:
5252
uses: shivammathur/setup-php@v2
5353
with:
5454
php-version: ${{ matrix.version }}
55-
coverage: xdebug2
55+
coverage: ${{ startsWith(matrix.version, '7.') && 'xdebug2' || 'xdebug3' }}
5656
env:
5757
COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5858

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ A software development kit to provide ways to interact with CM.com's Text servic
99

1010
### Requirements
1111

12-
- php 7.* or 8.0 or 8.1 or 8.2
12+
- php 7.* or 8.0 or 8.1 or 8.2 or 8.3
1313

1414

1515
## Usage

0 commit comments

Comments
 (0)