Skip to content

Commit 05ec1ac

Browse files
committed
Make it ready for PHP 8.4 and 8.5
1 parent eafbeee commit 05ec1ac

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
strategy:
1919
fail-fast: false
2020
matrix:
21-
php: ["7.3", "7.4", "8.0", "8.1", "8.2"]
21+
php: ["7.3", "7.4", "8.0", "8.1", "8.2", "8.3", "8.4", "8.5"]
2222
arch: [x86, x64]
2323
ts: [nts, ts]
2424
experimental: [false]
@@ -71,6 +71,9 @@ jobs:
7171
if ('8.0' -eq '${{matrix.php}}') { $artifact_name = $artifact_name + '-vs16' }
7272
if ('8.1' -eq '${{matrix.php}}') { $artifact_name = $artifact_name + '-vs16' }
7373
if ('8.2' -eq '${{matrix.php}}') { $artifact_name = $artifact_name + '-vs16' }
74+
if ('8.3' -eq '${{matrix.php}}') { $artifact_name = $artifact_name + '-vs16' }
75+
if ('8.4' -eq '${{matrix.php}}') { $artifact_name = $artifact_name + '-vs17' }
76+
if ('8.5' -eq '${{matrix.php}}') { $artifact_name = $artifact_name + '-vs17' }
7477
7578
if ('nts' -eq '${{matrix.ts}}') { $artifact_name = $artifact_name + '-nts' }
7679
if ('x64' -eq '${{matrix.arch}}') { $artifact_name = $artifact_name + '-x86_64' }

package.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@
106106
<required>
107107
<php>
108108
<min>7.2.0</min>
109-
<max>8.4.0</max>
110-
<exclude>8.4.0</exclude>
109+
<max>8.6.0</max>
110+
<exclude>8.6.0</exclude>
111111
</php>
112112
<pearinstaller>
113113
<min>1.4.0</min>

0 commit comments

Comments
 (0)