Fix extension support on php 8.2 on windows

Add PHP 8.2 support for backfire extension
This commit is contained in:
Shivam Mathur
2022-12-08 19:58:40 +05:30
parent 53adb47562
commit aa9b80f158
3 changed files with 11 additions and 11 deletions

View File

@ -60,9 +60,9 @@ Function Add-Extension {
}
}
else {
# Patch till PHP 8.1 DLLs are released as stable.
# Patch till PHP 8.2 DLLs are released as stable.
$minimumStability = $stability
if($version -eq '8.1' -and $stability -eq 'stable') {
if($version -eq '8.2' -and $stability -eq 'stable') {
$minimumStability = 'snapshot'
}