Skip to content

Commit

Permalink
Revert bumping PHP version for snapshot minimum stability.
Browse files Browse the repository at this point in the history
  • Loading branch information
shivammathur committed Dec 23, 2023
1 parent 5a2bd88 commit 97e0a97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/scripts/extensions/add_extensions.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -125,9 +125,9 @@ Function Add-Extension {
if(($version -match $nightly_versions) -and (Select-String -Path $src\configs\windows_extensions -Pattern $extension -SimpleMatch -Quiet)) {
Add-NightlyExtension $extension
} else {
# Patch till DLLs for PHP 8.2 and above are released as stable.
# Patch till DLLs for PHP 8.1 and above are released as stable.
$minimumStability = $stability
if ($version -match '8.[2-4]' -and $stability -eq 'stable') {
if ($version -match '8.[1-4]' -and $stability -eq 'stable') {
$minimumStability = 'snapshot'
}

Expand Down

0 comments on commit 97e0a97

Please sign in to comment.