Build PHP nightly for windows.
Following configurations are build nightly.
nts-x64,nts-x64-AVX,ts-x64,nts-x86,ts-x86.debug-pack,devel=packfor each configuration.test packfor the version.
https://github.com/shivammathur/php-builder-windows/releases/tag/php8.2
https://github.com/shivammathur/php-builder-windows/releases/tag/php8.1
https://github.com/shivammathur/php-builder-windows/releases/tag/php8.0
# Configure
$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 or 8.1
# Install
New-Item -Path $php_dir -Type Directory -Force
Invoke-WebRequest -UseBasicParsing -Uri https://github.com/shivammathur/php-builder-windows/releases/latest/download/Get-Php.ps1 -OutFile $php_dir\Get-Php.ps1
. $php_dir\Get-Php.ps1 -Architecture $arch -ThreadSafe $ts -Path $php_dir -Version $version
# Test
. $php_dir\php -vThe code in this project is licensed under the MIT license. Please see the license file for more information. This project has multiple dependencies. Their licenses can be found in their respective repositories.