Mark PHP 8.2 as stable

Update OS support in README
This commit is contained in:
Shivam Mathur
2022-12-08 12:45:38 +05:30
parent f7d3c00320
commit 53adb47562
6 changed files with 21 additions and 22 deletions

View File

@ -1,7 +1,7 @@
{
"latest": "8.1",
"nightly": "8.2",
"latest": "8.2",
"nightly": "8.3",
"5.x": "5.6",
"7.x": "7.4",
"8.x": "8.1"
"8.x": "8.2"
}

View File

@ -241,7 +241,7 @@ setup_php() {
}
# Variables
version=${1:-'8.1'}
version=${1:-'8.2'}
ini=${2:-'production'}
src=${0%/*}/..
php_formula=shivammathur/php/php@"$version"

View File

@ -267,7 +267,7 @@ setup_php() {
}
# Variables
version=${1:-'8.1'}
version=${1:-'8.2'}
ini=${2:-'production'}
src=${0%/*}/..
debconf_fix="DEBIAN_FRONTEND=noninteractive"

View File

@ -3,7 +3,7 @@ param (
[ValidateNotNull()]
[ValidateLength(1, [int]::MaxValue)]
[string]
$version = '8.1',
$version = '8.2',
[Parameter(Position = 1, Mandatory = $true)]
[ValidateNotNull()]
[ValidateLength(1, [int]::MaxValue)]
@ -264,7 +264,7 @@ $php_builder = "$github/shivammathur/php-builder-windows"
$current_profile = "$env:TEMP\setup-php.ps1"
$ProgressPreference = 'SilentlyContinue'
$jit_versions = '8.[0-9]'
$nightly_versions = '8.[2-9]'
$nightly_versions = '8.[3-9]'
$xdebug3_versions = "7.[2-4]|8.[0-9]"
$enable_extensions = ('openssl', 'curl', 'mbstring')