Skip to content

Commit

Permalink
Mark PHP 8.3 as stable
Browse files Browse the repository at this point in the history
  • Loading branch information
shivammathur committed Nov 23, 2023
1 parent 73dcf1f commit 22f2920
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ To install a PHP snapshot, open an elevated PowerShell session and run these com
$php_dir = 'C:\tools\php' # Set this as per your setup
$arch = 'x64' # Set x64 or x86
$ts = $False # Set $False for nts or $True for ts
$version = '8.1' # Set 8.0, 8.1, 8.2, 8.3, o4 8.4
$version = '8.3' # Set 8.0, 8.1, 8.2, 8.3, o4 8.4
# Install
New-Item -Path $php_dir -Type Directory -Force
Expand Down
2 changes: 1 addition & 1 deletion scripts/Get-Php.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ param (
[string] $Path,
[Parameter(Mandatory = $false, Position = 4, HelpMessage = 'The PHP version')]
[ValidateLength(1, [int]::MaxValue)]
[string] $Version = '8.0'
[string] $Version = '8.3'
)

Function Get-File {
Expand Down
4 changes: 2 additions & 2 deletions scripts/Get-PhpNightly.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ param (
[string] $Path,
[Parameter(Mandatory = $false, Position = 4, HelpMessage = 'The PHP version')]
[ValidateLength(1, [int]::MaxValue)]
[string] $Version = '8.2'
[string] $Version = '8.3'
)

Function Get-File {
Expand Down Expand Up @@ -67,7 +67,7 @@ $ts = '-nts'
if($ThreadSafe) {
$ts = ''
}
if($Version -match '8.[0-2]') {
if($Version -match '8.[0-3]') {
Install-Php -Version $Version -Architecture $Architecture -ThreadSafe $ThreadSafe -InstallVC -Path $Path -TimeZone UTC -InitialPhpIni Production -Force
} else {
$file = "php-$Version.0-dev$ts-Win32-vs16-$Architecture.zip"
Expand Down

0 comments on commit 22f2920

Please sign in to comment.