Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
Downloads:
1,325,590
Downloads of v 7.2.12:
28,079
Last Update:
08 Nov 2018
Package Maintainer(s):
Software Author(s):
- PHP Authors
Tags:
php development programming foss cross-platform admin- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
PHP (Hypertext Preprocessor)
This is not the latest version of PHP (Hypertext Preprocessor) available.
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,325,590
Downloads of v 7.2.12:
28,079
Maintainer(s):
Software Author(s):
- PHP Authors
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
PHP (Hypertext Preprocessor) 7.2.12
This is not the latest version of PHP (Hypertext Preprocessor) available.
All Checks are Passing
2 Passing Test
To install PHP (Hypertext Preprocessor), run the following command from the command line or from PowerShell:
To upgrade PHP (Hypertext Preprocessor), run the following command from the command line or from PowerShell:
To uninstall PHP (Hypertext Preprocessor), run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download php --internalize --version=7.2.12 --source=https://chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade php -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade php -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure php installed
win_chocolatey:
name: php
state: present
version: 7.2.12
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'php' do
action :install
version '7.2.12'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: php,
Version: 7.2.12,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller php
{
Name = 'php'
Ensure = 'Present'
Version = '7.2.12'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'php':
provider => 'chocolatey',
ensure => '7.2.12',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install php version="7.2.12" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 08 Nov 2018.
PHP is an HTML-embedded scripting language. Much of its syntax is borrowed from C, Java and Perl with a couple of unique PHP-specific features thrown in. The goal of the language is to allow web developers to write dynamically generated pages quickly.
Package Parameters
/DontAddToPath
- Do not add install directory to path/InstallDir
- Override the installation directory (needs to be specified both during install and update, until it is remembered by choco)/ThreadSafe
- Install the thread safe version of php that is compatible with Apache.
These parameters can be passed to the installer with the use of --params.
For example: --params '"/ThreadSafe ""/InstallDir:C:\PHP"""'
.
$ErrorActionPreference = 'Stop'
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1
$installLocation = GetInstallLocation "$toolsPath\.."
if ($installLocation) {
Write-Host "Uninstalling previous version of php..."
UninstallPackage -libDirectory "$toolsPath\.." -packageName 'php'
Uninstall-ChocolateyPath $installLocation
}
$pp = Get-PackageParameters
$downloadInfo = GetDownloadInfo -downloadInfoFile "$toolsPath\downloadInfo.csv" -parameters $pp
if (!(UrlExists($downloadInfo.URL32))) {
Write-Host "Using archive urls"
$downloadInfo.URL32 = AddArchivePathToUrl($downloadInfo.URL32)
$downloadInfo.URL64 = AddArchivePathToUrl($downloadInfo.URL64) # Assuming the 64 bit version is archived simultaneously as the 32 bit one
}
$packageArgs = @{
packageName = 'php'
url = $downloadInfo.URL32
url64Bit = $downloadInfo.URL64
checksum = $downloadInfo.Checksum32
checksum64 = $downloadInfo.Checksum64
checksumType = 'sha256'
checksumType64 = 'sha256'
}
$newInstallLocation = $packageArgs.unzipLocation = GetNewInstallLocation $packageArgs.packageName $env:ChocolateyPackageVersion $pp
Install-ChocolateyZipPackage @packageArgs
if (!$pp.DontAddToPath) { Install-ChocolateyPath $newInstallLocation 'Machine' }
$php_ini_path = $newInstallLocation + '/php.ini'
if (($installLocation -ne $newInstallLocation) -and (Test-Path "$installLocation\php.ini")) {
Write-Host "Moving old configuration file."
Move-Item "$installLocation\php.ini" "$php_ini_path"
$di = Get-ChildItem $installLocation -ea 0 | Measure-Object
if ($di.Count -eq 0) {
Write-Host "Removing old install location."
Remove-Item -Force -ea 0 $installLocation
}
}
if (!(Test-Path $php_ini_path)) {
Write-Host 'Creating default php.ini'
Copy-Item $newInstallLocation/php.ini-production $php_ini_path
Write-Host 'Configuring PHP extensions directory'
(Get-Content $php_ini_path) -replace '; extension_dir = "ext"', 'extension_dir = "ext"' | Set-Content $php_ini_path
}
if (!$pp.ThreadSafe) { Write-Host 'Please make sure you have CGI installed in IIS for local hosting' }
$toolsPath = Split-Path $MyInvocation.MyCommand.Definition
. $toolsPath\helpers.ps1
$packageName = 'php'
$installLocation = GetInstallLocation -libDirectory "$toolsPath\.."
if ($installLocation) {
UninstallPackage -libDirectory "$toolsPath\.." -packageName $packageName
$di = Get-ChildItem $installLocation -ea 0 | Measure-Object
if ($di.Count -eq 0) {
Remove-Item -Force -ea 0 $installLocation
}
Uninstall-ChocolateyPath $installLocation
} else {
Write-Warning "$packageName install path was not found. It may already be uninstalled!"
}
threadsafe|http://windows.php.net/downloads/releases/php-7.2.12-Win32-VC15-x86.zip|http://windows.php.net/downloads/releases/php-7.2.12-Win32-VC15-x64.zip|bfa8315b5c24fd4e11044da4e997cb22262f3eb4d143d73b8862196d9b880711|cf4f192bfab0b59b6af64a2ce9f4a0394ebce1a695d0f1a478c4443e601f9f87
not-threadsafe|http://windows.php.net/downloads/releases/php-7.2.12-nts-Win32-VC15-x86.zip|http://windows.php.net/downloads/releases/php-7.2.12-nts-Win32-VC15-x64.zip|f799fbe7aae8939e3eba3c9814777dca7e641554cf6fee9dcf1dd9c3c792e027|d911f377c1dcdd0a62d235db064baac0317851dec3bb1b60b22916045de4728c
function UrlExists($uri) {
try {
Get-WebHeaders $uri | Out-Null
}
catch {
if ($_ -match "unauthorized") { return $false }
throw $_
}
return $true;
}
function AddArchivePathToUrl($url) {
$newUrl = $url
$lix = $url.LastIndexOf("/")
if ($lix -ne -1) {
$newUrl = $url.SubString(0, $lix) + "/archives" + $url.SubString($lix)
}
return $newUrl
}
function GetDownloadInfo {
param(
[string]$downloadInfoFile,
$parameters
)
Write-Debug "Reading CSV file from $downloadInfoFile"
$downloadInfo = Get-Content -Encoding UTF8 -Path $downloadInfoFile | ConvertFrom-Csv -Delimiter '|' -Header 'Type','URL32','URL64','Checksum32','Checksum64'
if ($parameters.ThreadSafe) {
$downloadInfo | Where-Object { $_.Type -eq 'threadsafe' } | Select-Object -first 1
} else {
$downloadInfo | Where-Object { $_.Type -eq 'not-threadsafe' } | Select-Object -first 1
}
}
function GetInstallLocation {
param(
[string]$libDirectory
)
Write-Debug "Checking for uninstall text document in $libDirectory"
if (Test-Path "$libDirectory\*.txt") {
$txtContent = Get-Content -Encoding UTF8 "$libDirectory\*.txt" | Select-Object -first 1
$index = $txtContent.LastIndexOf('\')
if ($index -gt 0) {
return $txtContent.Substring(0, $index)
}
}
# If we got here, the text file doesn't exist or is empty
# we don't return anything as it may be already uninstalled
}
function GetNewInstallLocation {
param(
[string]$PackageName,
[string]$Version,
$pp
)
if ($pp -and $pp.InstallDir) {
return $pp.InstallDir
}
$toolsLocation = Get-ToolsLocation
return "$toolsLocation\{0}{1}" -f $PackageName, ($Version -replace '\.').Substring(0,2)
}
function UninstallPackage {
param(
[string]$libDirectory,
[string]$packageName
)
if (Test-Path "$libDirectory\*.txt") {
$txtFile = Resolve-Path "$libDirectory\*.txt" | Select-Object -first 1
$fileName = ($txtFile -split '\\' | Select-Object -last 1).TrimEnd('.txt')
Uninstall-ChocolateyZipPackage -PackageName $packageName -ZipFileName $fileName
if (Test-Path $txtFile) {
Remove-Item -Force -ea 0 $txtFile
}
}
}
if (!(Test-Path function:\Uninstall-ChocolateyPath)) {
function Uninstall-ChocolateyPath {
param(
[string]$pathToRemove,
[System.EnvironmentVariableTarget] $pathType = [System.EnvironmentVariableTarget]::User
)
Write-Debug "Running 'Uninstall-ChocolateyPath' with pathToRemove: `'$pathToRemove`'"
# get the PATH variable
Update-SessionEnvironment
$envPath = $env:PATH
if ($envPath.ToLower().Contains($pathToRemove.ToLower())) {
Write-Host "The PATH environment variable already contains the directory '$pathToRemove'. Removing..."
$actualPath = Get-EnvironmentVariable -Name 'Path' -Scope $pathType -PreserveVariables
$newPath = $actualPath -replace [regex]::Escape($pathToRemove + ';'),'' -replace ';;',';'
if (($pathType -eq [System.EnvironmentVariableTarget]::Machine) -and !(Test-ProcessAdminRights)) {
Write-Warning "Removing path from machine environment variable is not supported when not running as an elevated user!"
} else {
Set-EnvironmentVariable -Name 'Path' -Value $newPath -Scope $pathType
}
$env:PATH = $newPath
}
}
}
Log in or click on link to see number of positives.
- php.7.2.12.nupkg (7a9a053ef60e) - ## / 59
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
PHP (Hypertext Preprocessor) 8.0.1 | 6001 | Wednesday, January 6, 2021 | Approved |
PHP (Hypertext Preprocessor) 8.0.0.20201221 | 4579 | Monday, December 21, 2020 | Approved |
PHP (Hypertext Preprocessor) 8.0.0 | 7343 | Friday, November 27, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.4.14 | 1128 | Tuesday, January 5, 2021 | Approved |
PHP (Hypertext Preprocessor) 7.4.13 | 4312 | Tuesday, November 24, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.4.11 | 17253 | Tuesday, September 29, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.4.9 | 15642 | Wednesday, August 5, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.4.7 | 15128 | Wednesday, June 10, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.4.6 | 5411 | Thursday, May 28, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.4.5 | 14948 | Wednesday, April 15, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.4.3 | 16662 | Friday, February 21, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.4.2 | 8274 | Wednesday, January 22, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.4.1 | 7819 | Tuesday, December 24, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.4.0 | 8253 | Wednesday, November 27, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.26 | 813 | Tuesday, January 5, 2021 | Approved |
PHP (Hypertext Preprocessor) 7.3.25 | 1673 | Tuesday, November 24, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.3.24 | 742 | Tuesday, October 27, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.3.23 | 1478 | Tuesday, September 29, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.3.22 | 956 | Tuesday, September 1, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.3.21 | 1203 | Wednesday, August 5, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.3.20 | 819 | Tuesday, July 7, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.3.19 | 1076 | Wednesday, June 10, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.3.18 | 973 | Tuesday, May 12, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.3.17 | 956 | Wednesday, April 15, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.3.15 | 2886 | Tuesday, February 18, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.3.14 | 1642 | Tuesday, January 21, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.3.13 | 2530 | Wednesday, December 18, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.12 | 10821 | Wednesday, November 20, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.11 | 9597 | Tuesday, October 22, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.10 | 11870 | Wednesday, September 25, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.9 | 10549 | Wednesday, August 28, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.8 | 7712 | Tuesday, August 6, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.7 | 14115 | Wednesday, July 3, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.6 | 12940 | Wednesday, May 29, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.5 | 9584 | Wednesday, May 1, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.4 | 8258 | Wednesday, April 3, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.3 | 6851 | Thursday, March 14, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.1 | 55396 | Thursday, January 10, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.0 | 31825 | Thursday, December 6, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.2.34 | 5777 | Thursday, October 1, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.2.33 | 2045 | Wednesday, August 5, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.2.32 | 842 | Wednesday, July 8, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.2.31 | 2117 | Tuesday, May 12, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.2.30 | 1135 | Wednesday, April 15, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.2.29 | 1500 | Tuesday, March 17, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.2.28 | 1521 | Tuesday, February 18, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.2.27 | 1487 | Thursday, January 23, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.2.26 | 4323 | Thursday, December 19, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.2.25 | 1710 | Thursday, November 21, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.2.24 | 1324 | Tuesday, October 22, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.2.23 | 3901 | Friday, September 27, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.2.22 | 1718 | Wednesday, August 28, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.2.20 | 4103 | Friday, July 5, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.2.19 | 4626 | Wednesday, May 29, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.2.18 | 66087 | Wednesday, May 1, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.2.17 | 3028 | Wednesday, April 3, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.2.15 | 6810 | Friday, February 8, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.2.14 | 2285 | Thursday, January 10, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.2.13 | 5808 | Thursday, December 6, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.2.12 | 28079 | Thursday, November 8, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.2.10 | 45855 | Thursday, September 13, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.2.9 | 23257 | Thursday, August 16, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.2.8 | 20990 | Wednesday, July 18, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.2.7 | 21756 | Wednesday, June 20, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.2.5 | 60508 | Thursday, April 26, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.2.4 | 4858 | Thursday, March 29, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.2.3 | 11661 | Thursday, March 1, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.2.2 | 6286 | Thursday, February 1, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.2.1 | 6958 | Saturday, January 6, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.2.0 | 25804 | Friday, December 1, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.1.33 | 9450 | Wednesday, October 23, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.1.32 | 2537 | Wednesday, August 28, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.1.31 | 720 | Wednesday, July 31, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.1.30 | 2743 | Tuesday, May 28, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.1.29 | 3206 | Wednesday, May 1, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.1.28 | 2393 | Wednesday, April 3, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.1.27 | 3062 | Thursday, March 7, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.1.26 | 3770 | Thursday, January 10, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.1.25 | 2885 | Thursday, December 6, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.1.24 | 2545 | Thursday, November 8, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.1.22 | 2151 | Thursday, September 13, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.1.21 | 3329 | Thursday, August 16, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.1.20 | 3928 | Thursday, July 19, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.1.19 | 4495 | Thursday, June 21, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.1.18 | 3570 | Friday, May 25, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.1.17 | 2862 | Thursday, April 26, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.1.16 | 3494 | Thursday, March 29, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.1.15 | 5047 | Thursday, March 1, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.1.14 | 4679 | Thursday, February 1, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.1.13 | 2302 | Saturday, January 6, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.1.12 | 9712 | Thursday, November 23, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.1.11 | 9184 | Wednesday, October 25, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.1.10 | 8934 | Wednesday, September 27, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.1.8 | 19637 | Wednesday, August 2, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.1.7 | 14008 | Thursday, July 6, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.1.6 | 18849 | Thursday, June 8, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.1.5 | 16689 | Wednesday, May 10, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.1.4 | 17470 | Wednesday, April 12, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.1.3 | 18915 | Thursday, March 16, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.1.2 | 31119 | Wednesday, February 15, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.1.1.20170212 | 1894 | Sunday, February 12, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.1.1 | 5839 | Thursday, January 19, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.1.0 | 8163 | Friday, December 2, 2016 | Approved |
PHP (Hypertext Preprocessor) 7.0.33 | 15153 | Friday, December 7, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.0.32 | 5658 | Thursday, September 13, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.0.31 | 6622 | Friday, July 20, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.0.30 | 9518 | Thursday, April 26, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.0.28 | 2385 | Thursday, March 1, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.0.27 | 4547 | Saturday, January 6, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.0.26 | 3134 | Thursday, November 23, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.0.25 | 1856 | Wednesday, October 25, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.0.24 | 1890 | Tuesday, September 26, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.0.23 | 2252 | Tuesday, August 29, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.0.22 | 3149 | Wednesday, August 2, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.0.21 | 3226 | Thursday, July 6, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.0.20 | 4231 | Wednesday, June 7, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.0.19 | 5435 | Tuesday, May 9, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.0.18 | 3383 | Wednesday, April 12, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.0.17 | 4341 | Thursday, March 16, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.0.16 | 3536 | Tuesday, February 14, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.0.15 | 315 | Sunday, February 12, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.0.13 | 1685 | Monday, November 28, 2016 | Approved |
PHP (Hypertext Preprocessor) 7.0.9 | 134678 | Wednesday, July 20, 2016 | Approved |
PHP (Hypertext Preprocessor) 7.0.8 | 377 | Wednesday, June 22, 2016 | Approved |
PHP (Hypertext Preprocessor) 7.0.7 | 1103 | Wednesday, May 25, 2016 | Approved |
PHP (Hypertext Preprocessor) 7.0.6 | 633 | Sunday, May 8, 2016 | Approved |
PHP (Hypertext Preprocessor) 7.0.5 | 3485 | Wednesday, March 30, 2016 | Approved |
PHP (Hypertext Preprocessor) 7.0.4 | 2955 | Friday, March 4, 2016 | Approved |
PHP (Hypertext Preprocessor) 7.0.3 | 3760 | Wednesday, February 3, 2016 | Approved |
PHP (Hypertext Preprocessor) 7.0.2 | 2459 | Wednesday, January 6, 2016 | Approved |
PHP (Hypertext Preprocessor) 7.0.1 | 2063 | Wednesday, December 16, 2015 | Approved |
PHP (Hypertext Preprocessor) 5.6.40 | 8454 | Thursday, January 10, 2019 | Approved |
PHP (Hypertext Preprocessor) 5.6.39 | 1518 | Friday, December 7, 2018 | Approved |
PHP (Hypertext Preprocessor) 5.6.38 | 2967 | Friday, September 14, 2018 | Approved |
PHP (Hypertext Preprocessor) 5.6.37 | 2140 | Friday, July 20, 2018 | Approved |
PHP (Hypertext Preprocessor) 5.6.36 | 3425 | Thursday, April 26, 2018 | Approved |
PHP (Hypertext Preprocessor) 5.6.35 | 1679 | Friday, March 30, 2018 | Approved |
PHP (Hypertext Preprocessor) 5.6.34 | 1323 | Thursday, March 1, 2018 | Approved |
PHP (Hypertext Preprocessor) 5.6.33 | 2765 | Saturday, January 6, 2018 | Approved |
PHP (Hypertext Preprocessor) 5.6.32 | 2445 | Thursday, October 26, 2017 | Approved |
PHP (Hypertext Preprocessor) 5.6.31 | 6056 | Thursday, July 6, 2017 | Approved |
PHP (Hypertext Preprocessor) 5.6.30 | 18043 | Sunday, February 12, 2017 | Approved |
PHP (Hypertext Preprocessor) 5.6.17 | 4548 | Wednesday, February 3, 2016 | Approved |
PHP (Hypertext Preprocessor) 5.6.16 | 586 | Thursday, November 26, 2015 | Approved |
PHP (Hypertext Preprocessor) 5.6.15 | 380 | Thursday, October 29, 2015 | Approved |
PHP (Hypertext Preprocessor) 5.6.14 | 333 | Thursday, October 1, 2015 | Approved |
PHP (Hypertext Preprocessor) 5.6.13 | 366 | Friday, September 4, 2015 | Approved |
PHP (Hypertext Preprocessor) 5.6.12 | 374 | Thursday, August 6, 2015 | Approved |
PHP (Hypertext Preprocessor) 5.6.11 | 476 | Sunday, July 12, 2015 | Approved |
PHP (Hypertext Preprocessor) 5.6.10 | 383 | Thursday, June 11, 2015 | Approved |
PHP (Hypertext Preprocessor) 5.6.9 | 4167 | Friday, May 15, 2015 | Approved |
PHP (Hypertext Preprocessor) 5.6.8 | 443 | Thursday, April 16, 2015 | Approved |
PHP (Hypertext Preprocessor) 5.6.7 | 1074 | Monday, March 23, 2015 | Approved |
PHP (Hypertext Preprocessor) 5.6.6 | 391 | Thursday, February 19, 2015 | Approved |
PHP (Hypertext Preprocessor) 5.6.5 | 410 | Thursday, January 22, 2015 | Approved |
PHP (Hypertext Preprocessor) 5.6.4 | 493 | Friday, December 12, 2014 | Approved |
PHP (Hypertext Preprocessor) 5.6.3 | 20052 | Thursday, November 13, 2014 | Approved |
PHP (Hypertext Preprocessor) 5.6.2 | 966 | Thursday, October 16, 2014 | Approved |
PHP (Hypertext Preprocessor) 5.6.1 | 719 | Friday, September 26, 2014 | Approved |
PHP (Hypertext Preprocessor) 5.6.0 | 1091 | Thursday, August 28, 2014 | Approved |
PHP (Hypertext Preprocessor) 5.5.38 | 6174 | Thursday, February 9, 2017 | Approved |
PHP (Hypertext Preprocessor) 5.5.16 | 687 | Thursday, August 21, 2014 | Approved |
PHP (Hypertext Preprocessor) 5.5.15 | 715 | Tuesday, July 29, 2014 | Approved |
PHP (Hypertext Preprocessor) 5.5.14 | 669 | Tuesday, July 1, 2014 | Approved |
PHP (Hypertext Preprocessor) 5.5.13 | 602 | Thursday, June 5, 2014 | Approved |
PHP (Hypertext Preprocessor) 5.5.12 | 541 | Wednesday, May 21, 2014 | Approved |
PHP (Hypertext Preprocessor) 5.5.11 | 835 | Tuesday, April 22, 2014 | Approved |
PHP (Hypertext Preprocessor) 5.4.45 | 1299 | Thursday, February 9, 2017 | Approved |
PHP (Hypertext Preprocessor) 5.3.29 | 527 | Thursday, February 9, 2017 | Approved |
PHP (Hypertext Preprocessor) 5.3.28 | 1053 | Thursday, December 12, 2013 | Approved |
PHP (Hypertext Preprocessor) 5.3.27 | 753 | Friday, July 12, 2013 | Approved |
PHP (Hypertext Preprocessor) 5.3.26 | 536 | Thursday, June 6, 2013 | Approved |
PHP (Hypertext Preprocessor) 5.3.25 | 539 | Thursday, May 9, 2013 | Approved |
PHP (Hypertext Preprocessor) 5.3.24 | 506 | Thursday, April 11, 2013 | Approved |
PHP (Hypertext Preprocessor) 5.3.23 | 480 | Friday, March 15, 2013 | Approved |
PHP (Hypertext Preprocessor) 5.3.22 | 498 | Thursday, February 21, 2013 | Approved |
PHP (Hypertext Preprocessor) 5.3.21 | 545 | Thursday, January 17, 2013 | Approved |
PHP (Hypertext Preprocessor) 5.3.20 | 506 | Thursday, December 20, 2012 | Approved |
PHP (Hypertext Preprocessor) 5.3.19 | 484 | Tuesday, November 27, 2012 | Approved |
PHP (Hypertext Preprocessor) 5.3.18 | 512 | Thursday, October 18, 2012 | Approved |
PHP (Hypertext Preprocessor) 5.3.17 | 533 | Thursday, September 13, 2012 | Approved |
PHP (Hypertext Preprocessor) 5.3.16 | 469 | Thursday, August 16, 2012 | Approved |
PHP (Hypertext Preprocessor) 5.3.15 | 517 | Friday, July 20, 2012 | Approved |
PHP (Hypertext Preprocessor) 5.3.14 | 472 | Wednesday, June 27, 2012 | Approved |
PHP (Hypertext Preprocessor) 5.3.10 | 579 | Monday, February 20, 2012 | Approved |
PHP (Hypertext Preprocessor) 5.3.9 | 536 | Thursday, January 12, 2012 | Approved |
PHP (Hypertext Preprocessor) 5.3.6.2 | 604 | Tuesday, August 23, 2011 | Approved |
PHP (Hypertext Preprocessor) 5.3.6.1 | 471 | Tuesday, August 23, 2011 | Approved |
PHP (Hypertext Preprocessor) 5.3.6 | 818 | Tuesday, August 23, 2011 | Approved |
-
- vcredist140 (≥ 14.11.25325.0)
- chocolatey-core.extension (≥ 1.3.3)
- chocolatey (≥ 0.10.0)
Ground Rules:
- This discussion is only about PHP (Hypertext Preprocessor) and the PHP (Hypertext Preprocessor) package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or PHP (Hypertext Preprocessor), or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.