2019-09-06 05:17:43 +05:30
|
|
|
param (
|
|
|
|
[Parameter(Mandatory=$true)][string]$version = "7.3"
|
|
|
|
)
|
|
|
|
|
2019-09-09 05:41:17 +05:30
|
|
|
if($version -eq '7.4') {
|
2019-09-17 20:40:27 +05:30
|
|
|
$version = '7.4RC'
|
2019-09-09 05:41:17 +05:30
|
|
|
}
|
2019-09-21 21:36:03 +05:30
|
|
|
|
2019-10-08 18:12:54 +05:30
|
|
|
Write-Host "Installing PhpManager" -ForegroundColor Blue
|
2019-09-06 05:17:43 +05:30
|
|
|
Install-Module -Name PhpManager -Force -Scope CurrentUser
|
2019-09-17 20:40:27 +05:30
|
|
|
|
2019-09-21 21:36:03 +05:30
|
|
|
$installed = $($(php -v)[0] -join '')[4..6] -join ''
|
2019-09-17 20:40:27 +05:30
|
|
|
if($installed -ne $version) {
|
|
|
|
if($version -lt '7.0') {
|
2019-10-08 18:12:54 +05:30
|
|
|
Write-Host "Installing VcRedist"
|
2019-09-17 20:40:27 +05:30
|
|
|
Install-Module -Name VcRedist -Force
|
|
|
|
}
|
2019-10-08 18:12:54 +05:30
|
|
|
Write-Host "Installing PHP" -ForegroundColor Blue
|
2019-09-17 20:40:27 +05:30
|
|
|
Uninstall-Php C:\tools\php
|
2019-09-21 21:36:03 +05:30
|
|
|
Install-Php -Version $version -Architecture x86 -ThreadSafe $true -InstallVC -Path C:\tools\php$version -TimeZone UTC -InitialPhpIni Production -Force
|
2019-10-08 18:12:54 +05:30
|
|
|
Write-Host "Switch PHP" -ForegroundColor Blue
|
2019-09-17 20:40:27 +05:30
|
|
|
(Get-PhpSwitcher).targets
|
|
|
|
Initialize-PhpSwitcher -Alias C:\tools\php -Scope CurrentUser -Force
|
|
|
|
Add-PhpToSwitcher -Name $version -Path C:\tools\php$version -Force
|
|
|
|
Switch-Php $version -Force
|
2019-09-21 21:36:03 +05:30
|
|
|
}
|
|
|
|
|
2019-10-08 18:12:54 +05:30
|
|
|
Write-Host "Housekeeping in PHP.ini, enabling openssl" -ForegroundColor Blue
|
2019-10-04 13:30:16 +05:30
|
|
|
$ext_dir = "C:\tools\php\ext"
|
2019-09-21 21:36:03 +05:30
|
|
|
Add-Content C:\tools\php\php.ini "date.timezone = 'UTC'"
|
2019-10-04 13:30:16 +05:30
|
|
|
Set-PhpIniKey extension_dir $ext_dir
|
|
|
|
|
2019-09-21 21:36:03 +05:30
|
|
|
if($version -lt '7.4') {
|
|
|
|
Enable-PhpExtension openssl
|
|
|
|
} else {
|
|
|
|
Add-Content C:\tools\php\php.ini "extension=php_openssl.dll"
|
2019-10-04 13:30:16 +05:30
|
|
|
Copy-Item "php_pcov.dll" -Destination $ext_dir"\php_pcov.dll"
|
2019-09-09 05:41:17 +05:30
|
|
|
}
|
2019-09-17 20:40:27 +05:30
|
|
|
|
2019-10-08 18:12:54 +05:30
|
|
|
Write-Host "Installing Composer" -ForegroundColor Blue
|
2019-09-07 18:01:50 +05:30
|
|
|
Install-Composer -Scope System -Path C:\tools\php
|
2019-09-06 05:17:43 +05:30
|
|
|
php -v
|
|
|
|
composer -V
|