mirror of
https://github.com/shivammathur/setup-php.git
synced 2025-08-14 17:44:40 +07:00
Mark PHP 8.3 as stable
This commit is contained in:
@ -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'
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
|
Reference in New Issue
Block a user