Skip to content

Commit cd10480

Browse files
authored
Merge pull request #351 from Art4/add-php-83-support
Add support for PHP 8.3 and 8.4
2 parents fd1b599 + b33f846 commit cd10480

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ on:
66

77
jobs:
88
tests:
9-
name: Tests (PHP ${{ matrix.php-versions }} on ${{ matrix.operating-system }})
9+
name: Tests (PHP ${{ matrix.php }} on ${{ matrix.operating-system }})
1010
runs-on: ubuntu-latest
1111

1212
strategy:
1313
fail-fast: false
1414
matrix:
1515
operating-system: ["ubuntu-latest"]
16-
php-versions: ["7.4", "8.0", "8.1", "8.2"]
16+
php: ["7.4", "8.0", "8.1", "8.2", "8.3", "8.4"]
1717

1818
steps:
1919
- name: Checkout
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup PHP, with composer and extensions
2727
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
2828
with:
29-
php-version: ${{ matrix.php-versions }}
29+
php-version: ${{ matrix.php }}
3030
tools: phpunit
3131
extensions: mbstring, xml, ctype, iconv, intl, pdo_sqlite
3232
coverage: xdebug
@@ -37,14 +37,14 @@ jobs:
3737
uses: "ramsey/composer-install@v2"
3838

3939
- name: Run static code analysis
40-
if: ${{ matrix.php-versions == '8.2' }}
40+
if: ${{ matrix.php == '8.3' }}
4141
run: composer run phpstan -- --error-format=github
4242

4343
- name: Run tests
4444
run: vendor/bin/phpunit --coverage-clover .phpunit.cache/clover.xml
4545

4646
- name: Upload coverage reports to Codecov
47-
if: ${{ success() && matrix.php-versions == '8.2' }}
47+
if: ${{ success() && matrix.php == '8.3' }}
4848
uses: codecov/codecov-action@v3
4949
with:
5050
token: ${{ secrets.CODECOV_TOKEN }}

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12+
- Added support for PHP 8.3
1213
- New method `Redmine\Api\CustomField::list()` to list custom fields.
1314
- New method `Redmine\Api\Group::list()` to list groups.
1415
- New method `Redmine\Api\Issue::list()` to list issues.

0 commit comments

Comments
 (0)