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,322,198
Downloads of v 5.6.15:
379
Last Update:
29 Oct 2015
Package Maintainer(s):
Software Author(s):
- PHP Authors
Tags:
php admin- Software Specific:
- Software Site
- Software License
- Package Specific:
- Possible 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 License
- Package Specific:
- Possible Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
1,322,198
Downloads of v 5.6.15:
379
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) 5.6.15
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=5.6.15 --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: 5.6.15
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 '5.6.15'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: php,
Version: 5.6.15,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller php
{
Name = 'php'
Ensure = 'Present'
Version = '5.6.15'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'php':
provider => 'chocolatey',
ensure => '5.6.15',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install php version="5.6.15" 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 25 Dec 2015.
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.
Function DoesWebPageExist($uri) {
try {
$webClient =[System.Net.HttpWebRequest] [System.Net.WebRequest]::Create($uri)
$webClient.Method = "HEAD"
$webClient.Timeout = 3000
$webClient.GetResponse()
}
catch [System.Net.WebException] {
return $FALSE;
}
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
}
write-host 'Please make sure you have CGI installed in IIS for local hosting'
$packageName = 'php'
$url = 'http://windows.php.net/downloads/releases/php-5.6.15-nts-Win32-VC11-x86.zip'
$url64 = 'http://windows.php.net/downloads/releases/php-5.6.15-nts-Win32-VC11-x64.zip'
write-host 'Locating package …'
if (-Not (DoesWebPageExist($url))) {
Echo ("Checking archive …")
$url = AddArchivePathToUrl($url)
$url64 = AddArchivePathToUrl($url64) # Assuming the 64 bit version is archived simultaneously as the 32 bit one
}
$validExitCodes = @(0)
$targetFolder = Join-Path $(Get-BinRoot) $packageName
Install-ChocolateyZipPackage "$packageName" "$url" "$targetFolder" "$url64"
Install-ChocolateyPath $targetFolder
echo ("PHP installed in " + $targetFolder)
write-host 'Please make sure you have CGI installed in IIS'
$packageName = 'php'
$validExitCodes = @(0)
$targetFolder = Join-Path $(Get-BinRoot) $packageName
Echo ("Deleting " + $targetFolder)
Remove-Item -Force -Recurse $targetFolder
Log in or click on link to see number of positives.
- glib-2.dll (0325d34aff93) - ## / 55
- gmodule-2.dll (b76a30f78171) - ## / 56
- libenchant.dll (91a4ff5b6a23) - ## / 57
- libenchant_ispell.dll (18a179dc0ba5) - ## / 55
- libenchant_myspell.dll (156ca42b656f) - ## / 55
- libsasl.dll (b2e477f43764) - ## / 54
- glib-2.dll (42a86dfa0ccd) - ## / 57
- gmodule-2.dll (ad8ca522ef5c) - ## / 55
- libenchant.dll (504a91eabc40) - ## / 57
- libenchant_ispell.dll (12cdcc79e9f1) - ## / 56
- libenchant_myspell.dll (060be12076a1) - ## / 56
- libsasl.dll (8fa91f9dc39b) - ## / 54
- icudt54.dll (8f810098f0a9) - ## / 55
- icuin54.dll (48c8122588fa) - ## / 56
- icuio54.dll (b58a1564252d) - ## / 55
- icule54.dll (9514b1810875) - ## / 55
- iculx54.dll (b5df29793598) - ## / 55
- icutest54.dll (51f2028630ca) - ## / 56
- icutu54.dll (2724b2218f55) - ## / 56
- icuuc54.dll (ff6b526d057e) - ## / 56
- icudt54.dll (aa2eb9366a79) - ## / 54
- icuin54.dll (bbf690547218) - ## / 55
- icuio54.dll (abd094b9640d) - ## / 56
- icule54.dll (35c4e5280116) - ## / 55
- iculx54.dll (9154d565cc75) - ## / 56
- icutest54.dll (202f0dd6bcdb) - ## / 56
- icutu54.dll (f015b0030d42) - ## / 55
- icuuc54.dll (7917e8009703) - ## / 54
- libpq.dll (4ba4b83a7ba2) - ## / 55
- libssh2.dll (fff6a7402e8a) - ## / 55
- libpq.dll (a7ce0c7ec025) - ## / 55
- libssh2.dll (ed0db696c2ae) - ## / 55
- libeay32.dll (2ddf93f146b8) - ## / 57
- ssleay32.dll (48901b8f6508) - ## / 57
- libeay32.dll (619ef0526b50) - ## / 55
- ssleay32.dll (1777466526a6) - ## / 56
- php.5.6.15.nupkg (b9ffe710d1de) - ## / 57
- deplister.exe (042c9f50a668) - ## / 55
- php-cgi.exe (26fb537bb616) - ## / 56
- php-win.exe (aec8e644a74c) - ## / 56
- php.exe (7fc172e60087) - ## / 56
- php5.dll (13c4d3983b40) - ## / 55
- php5phpdbg.dll (9f9828fdff5e) - ## / 56
- phpdbg.exe (b61004cd5cdf) - ## / 56
- php_bz2.dll (172340233deb) - ## / 55
- php_com_dotnet.dll (3a68ca56b1f4) - ## / 55
- php_curl.dll (616aa1c9bd4f) - ## / 56
- php_enchant.dll (a7abe6c70ce0) - ## / 55
- php_exif.dll (229f6a531d67) - ## / 55
- php_fileinfo.dll (0ab5d69ff4ea) - ## / 55
- php_gd2.dll (2f6021d64d6b) - ## / 55
- php_gettext.dll (627e4955ed29) - ## / 55
- php_gmp.dll (2f95ced6da26) - ## / 56
- php_imap.dll (4a0840ba9db9) - ## / 55
- php_interbase.dll (c52ada093407) - ## / 56
- php_intl.dll (fe747895c19b) - ## / 56
- php_ldap.dll (dcecdc89596f) - ## / 56
- php_mbstring.dll (a5605f7cf1c8) - ## / 56
- php_mysql.dll (050fd64f583b) - ## / 55
- php_mysqli.dll (04ed9841519f) - ## / 56
- php_oci8_12c.dll (aeeba02ebfdd) - ## / 56
- php_opcache.dll (38014dc7f800) - ## / 56
- php_openssl.dll (7a654a219beb) - ## / 56
- php_pdo_firebird.dll (9d194893af39) - ## / 56
- php_pdo_mysql.dll (a53051bfff46) - ## / 56
- php_pdo_oci.dll (411f8414c319) - ## / 56
- php_pdo_odbc.dll (3c09131ae788) - ## / 56
- php_pdo_pgsql.dll (8b487d31170c) - ## / 56
- php_pdo_sqlite.dll (e649301324b8) - ## / 56
- php_pgsql.dll (94c54dcf0cca) - ## / 55
- php_shmop.dll (82ba10f748ec) - ## / 56
- php_snmp.dll (53f44ebfd422) - ## / 56
- php_soap.dll (588b0cd9cec6) - ## / 56
- php_sockets.dll (4f62775e279f) - ## / 56
- php_sqlite3.dll (956d8bc51505) - ## / 53
- php_sybase_ct.dll (5cf22c6e48f0) - ## / 55
- php_tidy.dll (f282b0916b8a) - ## / 56
- php_xmlrpc.dll (998fbe1cf39a) - ## / 56
- php_xsl.dll (642257d1847c) - ## / 56
- deplister.exe (9e32e906f867) - ## / 55
- php-cgi.exe (c3b1bb4857bd) - ## / 55
- php-win.exe (2b69a554af8b) - ## / 55
- php.exe (93a30c391e44) - ## / 56
- php5.dll (28ce24773dca) - ## / 56
- php5phpdbg.dll (60e934903d1e) - ## / 56
- phpdbg.exe (4b4ed7e2d056) - ## / 56
- php_bz2.dll (b627337a33ff) - ## / 56
- php_com_dotnet.dll (6c17f90d3130) - ## / 55
- php_curl.dll (ff82a5d7966a) - ## / 56
- php_enchant.dll (92acc03e05dd) - ## / 54
- php_exif.dll (93dfd9adaae0) - ## / 56
- php_fileinfo.dll (462eee454797) - ## / 56
- php_gd2.dll (bd49c3cad816) - ## / 56
- php_gettext.dll (e00c464859d1) - ## / 55
- php_gmp.dll (d246a9595cab) - ## / 56
- php_imap.dll (df4d1eda06df) - ## / 56
- php_interbase.dll (5b0281a58efb) - ## / 55
- php_intl.dll (10a7288e7dab) - ## / 52
- php_ldap.dll (cad9b7fb0ef8) - ## / 55
- php_mbstring.dll (65247f862995) - ## / 55
- php_mysql.dll (7f59e7f2a0ea) - ## / 55
- php_mysqli.dll (b2bafe6d7716) - ## / 55
- php_oci8_12c.dll (4d27d138195d) - ## / 55
- php_opcache.dll (a50c70811b2a) - ## / 56
- php_openssl.dll (31cbe45ae274) - ## / 56
- php_pdo_firebird.dll (1209235ca641) - ## / 56
- php_pdo_mysql.dll (7f653fcc25f4) - ## / 55
- php_pdo_oci.dll (590c809348e4) - ## / 56
- php_pdo_odbc.dll (44899571fd67) - ## / 54
- php_pdo_pgsql.dll (f16eb766b9a2) - ## / 56
- php_pdo_sqlite.dll (ad69dbc511b8) - ## / 55
- php_pgsql.dll (52ee0dcccc88) - ## / 56
- php_shmop.dll (2680ea9a87bc) - ## / 55
- php_snmp.dll (69b78b37d9a5) - ## / 55
- php_soap.dll (bbcd2832f9bb) - ## / 56
- php_sockets.dll (d48dd8392199) - ## / 56
- php_sqlite3.dll (d9affff6de62) - ## / 55
- php_sybase_ct.dll (228c12804a46) - ## / 56
- php_tidy.dll (a099b8ebf35f) - ## / 56
- php_xmlrpc.dll (16250af71787) - ## / 56
- php_xsl.dll (dac900fbb713) - ## / 56
- php-5.6.15-nts-Win32-VC11-x64.zip (81fcb40baaec) - ## / 55
- php-5.6.15-nts-Win32-VC11-x86.zip (560c3ffd3a4b) - ## / 54
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 | 4614 | Wednesday, January 6, 2021 | Approved |
PHP (Hypertext Preprocessor) 8.0.0.20201221 | 4579 | Monday, December 21, 2020 | Approved |
PHP (Hypertext Preprocessor) 8.0.0 | 7322 | Friday, November 27, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.4.14 | 827 | Tuesday, January 5, 2021 | Approved |
PHP (Hypertext Preprocessor) 7.4.13 | 4269 | Tuesday, November 24, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.4.11 | 17238 | Tuesday, September 29, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.4.9 | 15636 | Wednesday, August 5, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.4.7 | 15124 | Wednesday, June 10, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.4.6 | 5403 | Thursday, May 28, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.4.5 | 14944 | Wednesday, April 15, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.4.3 | 16624 | Friday, February 21, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.4.2 | 8273 | Wednesday, January 22, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.4.1 | 7809 | Tuesday, December 24, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.4.0 | 8212 | Wednesday, November 27, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.26 | 568 | Tuesday, January 5, 2021 | Approved |
PHP (Hypertext Preprocessor) 7.3.25 | 1652 | Tuesday, November 24, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.3.24 | 741 | Tuesday, October 27, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.3.23 | 1466 | 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 | 818 | Tuesday, July 7, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.3.19 | 1074 | Wednesday, June 10, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.3.18 | 972 | 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 | 1639 | Tuesday, January 21, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.3.13 | 2527 | Wednesday, December 18, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.12 | 10814 | Wednesday, November 20, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.11 | 9593 | Tuesday, October 22, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.10 | 11869 | Wednesday, September 25, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.9 | 10548 | Wednesday, August 28, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.8 | 7711 | Tuesday, August 6, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.7 | 14109 | Wednesday, July 3, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.6 | 12939 | Wednesday, May 29, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.5 | 9580 | Wednesday, May 1, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.4 | 8258 | Wednesday, April 3, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.3 | 6844 | Thursday, March 14, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.1 | 55392 | Thursday, January 10, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.3.0 | 31797 | Thursday, December 6, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.2.34 | 5488 | Thursday, October 1, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.2.33 | 2045 | Wednesday, August 5, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.2.32 | 841 | Wednesday, July 8, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.2.31 | 2116 | Tuesday, May 12, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.2.30 | 1134 | Wednesday, April 15, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.2.29 | 1498 | Tuesday, March 17, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.2.28 | 1521 | Tuesday, February 18, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.2.27 | 1486 | Thursday, January 23, 2020 | Approved |
PHP (Hypertext Preprocessor) 7.2.26 | 4321 | Thursday, December 19, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.2.25 | 1710 | Thursday, November 21, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.2.24 | 1322 | Tuesday, October 22, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.2.23 | 3898 | Friday, September 27, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.2.22 | 1717 | Wednesday, August 28, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.2.20 | 4100 | Friday, July 5, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.2.19 | 4625 | Wednesday, May 29, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.2.18 | 65476 | Wednesday, May 1, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.2.17 | 3027 | 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 | 28077 | Thursday, November 8, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.2.10 | 45847 | 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 | 21755 | 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 | 6282 | Thursday, February 1, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.2.1 | 6958 | Saturday, January 6, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.2.0 | 25795 | Friday, December 1, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.1.33 | 9403 | Wednesday, October 23, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.1.32 | 2537 | Wednesday, August 28, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.1.31 | 719 | Wednesday, July 31, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.1.30 | 2736 | Tuesday, May 28, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.1.29 | 3204 | Wednesday, May 1, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.1.28 | 2392 | Wednesday, April 3, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.1.27 | 3061 | Thursday, March 7, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.1.26 | 3769 | Thursday, January 10, 2019 | Approved |
PHP (Hypertext Preprocessor) 7.1.25 | 2885 | Thursday, December 6, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.1.24 | 2544 | 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 | 5044 | Thursday, March 1, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.1.14 | 4679 | Thursday, February 1, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.1.13 | 2301 | Saturday, January 6, 2018 | Approved |
PHP (Hypertext Preprocessor) 7.1.12 | 9712 | Thursday, November 23, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.1.11 | 9182 | Wednesday, October 25, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.1.10 | 8933 | 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 | 16687 | Wednesday, May 10, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.1.4 | 17468 | Wednesday, April 12, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.1.3 | 18913 | Thursday, March 16, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.1.2 | 31119 | Wednesday, February 15, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.1.1.20170212 | 1892 | Sunday, February 12, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.1.1 | 5839 | Thursday, January 19, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.1.0 | 8161 | Friday, December 2, 2016 | Approved |
PHP (Hypertext Preprocessor) 7.0.33 | 15114 | 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 | 4546 | 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 | 1889 | Tuesday, September 26, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.0.23 | 2252 | Tuesday, August 29, 2017 | Approved |
PHP (Hypertext Preprocessor) 7.0.22 | 3148 | 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 | 1683 | Monday, November 28, 2016 | Approved |
PHP (Hypertext Preprocessor) 7.0.9 | 134677 | Wednesday, July 20, 2016 | Approved |
PHP (Hypertext Preprocessor) 7.0.8 | 375 | Wednesday, June 22, 2016 | Approved |
PHP (Hypertext Preprocessor) 7.0.7 | 1103 | Wednesday, May 25, 2016 | Approved |
PHP (Hypertext Preprocessor) 7.0.6 | 632 | Sunday, May 8, 2016 | Approved |
PHP (Hypertext Preprocessor) 7.0.5 | 3484 | Wednesday, March 30, 2016 | Approved |
PHP (Hypertext Preprocessor) 7.0.4 | 2955 | Friday, March 4, 2016 | Approved |
PHP (Hypertext Preprocessor) 7.0.3 | 3759 | Wednesday, February 3, 2016 | Approved |
PHP (Hypertext Preprocessor) 7.0.2 | 2458 | Wednesday, January 6, 2016 | Approved |
PHP (Hypertext Preprocessor) 7.0.1 | 2060 | Wednesday, December 16, 2015 | Approved |
PHP (Hypertext Preprocessor) 5.6.40 | 8407 | 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 | 2139 | Friday, July 20, 2018 | Approved |
PHP (Hypertext Preprocessor) 5.6.36 | 3423 | 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 | 4547 | Wednesday, February 3, 2016 | Approved |
PHP (Hypertext Preprocessor) 5.6.16 | 584 | Thursday, November 26, 2015 | Approved |
PHP (Hypertext Preprocessor) 5.6.15 | 379 | 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 | 4166 | Friday, May 15, 2015 | Approved |
PHP (Hypertext Preprocessor) 5.6.8 | 443 | Thursday, April 16, 2015 | Approved |
PHP (Hypertext Preprocessor) 5.6.7 | 1071 | 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 | 20051 | 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 | 1089 | Thursday, August 28, 2014 | Approved |
PHP (Hypertext Preprocessor) 5.5.38 | 6166 | 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 | 526 | 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 | 505 | Thursday, April 11, 2013 | Approved |
PHP (Hypertext Preprocessor) 5.3.23 | 480 | Friday, March 15, 2013 | Approved |
PHP (Hypertext Preprocessor) 5.3.22 | 497 | Thursday, February 21, 2013 | Approved |
PHP (Hypertext Preprocessor) 5.3.21 | 542 | Thursday, January 17, 2013 | Approved |
PHP (Hypertext Preprocessor) 5.3.20 | 505 | Thursday, December 20, 2012 | Approved |
PHP (Hypertext Preprocessor) 5.3.19 | 484 | Tuesday, November 27, 2012 | Approved |
PHP (Hypertext Preprocessor) 5.3.18 | 511 | 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 | 516 | 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 | 603 | 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 |
This package has no dependencies.
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.