Skip to content

Commit 6b4f524

Browse files
authored
Support PHP 8.3 (#622)
1 parent 05c546e commit 6b4f524

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

.github/workflows/php-linter.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
php-version: ['7.4', '8.2']
17+
php-version: ['7.4', '8.3']
1818

1919
steps:
2020
- uses: actions/checkout@v2

lib/RexStanSettings.php

+6-4
Original file line numberDiff line numberDiff line change
@@ -54,16 +54,18 @@ final class RexStanSettings
5454
70333 => '7.3.x [Mindestanforderung für REDAXO bis 5.14]',
5555
70433 => '7.4.x',
5656
80028 => '8.0.x',
57-
80115 => '8.1.x',
58-
80203 => '8.2.x',
57+
80125 => '8.1.x',
58+
80212 => '8.2.x',
59+
80300 => '8.3.x',
5960
];
6061

6162
/**
6263
* @var array<int, string>
6364
*/
6465
private static $phpVersionListFrom5_15 = [
65-
80115 => '8.1.x [Mindestanforderung für REDAXO ab 5.15]',
66-
80203 => '8.2.x',
66+
80125 => '8.1.x [Mindestanforderung für REDAXO ab 5.15]',
67+
80212 => '8.2.x',
68+
80300 => '8.3.x',
6769
];
6870

6971
/**

0 commit comments

Comments
 (0)