Mark PHP 8.3 as stable

This commit is contained in:
Shivam Mathur
2023-11-23 17:12:56 +05:30
parent e6d44f159a
commit 7c6c249257
10 changed files with 63 additions and 61 deletions

View File

@ -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.1 and 8.2 are released as stable.
# Patch till DLLs for PHP 8.2 and above are released as stable.
$minimumStability = $stability
if ($version -match '8.[1-2]' -and $stability -eq 'stable') {
if ($version -match '8.[2-4]' -and $stability -eq 'stable') {
$minimumStability = 'snapshot'
}

View File

@ -13,7 +13,7 @@ get_event_configure_opts() {
)
else
event_opts+=(
--with-openssl-dir="$(brew --prefix openssl@1.1)"
--with-openssl-dir="$(brew --prefix openssl@3)"
--with-event-libevent-dir="$(brew --prefix libevent)"
)
fi