Skip to content

shivammathur/php-builder-windows

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
August 30, 2023 00:38
February 3, 2023 04:44

PHP Builder for Windows

Build status LICENSE PHP Versions Supported cloudsmith mirror

Build PHP snapshots for Windows.

Builds

The following configurations are built nightly.

  • nts-x64, nts-x64-AVX, ts-x64, nts-x86, ts-x86.
  • debug-pack, devel=pack for each configuration.
  • test pack for the version.

PHP 8.4.0-dev/master

https://github.com/shivammathur/php-builder-windows/releases/tag/php8.4

PHP 8.3.0-dev

https://github.com/shivammathur/php-builder-windows/releases/tag/php8.3

PHP 8.2.x-dev

https://github.com/shivammathur/php-builder-windows/releases/tag/php8.2

PHP 8.1.x-dev

https://github.com/shivammathur/php-builder-windows/releases/tag/php8.1

PHP 8.0.x-dev

https://github.com/shivammathur/php-builder-windows/releases/tag/php8.0

Install

To install a PHP snapshot, open an elevated PowerShell session and run these commands. You can change the configure variables as per your requirements.

# 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, 8.1, 8.2, 8.3, o4 8.4

# 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 -v

License

The 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.

Dependencies