Skip to content

Commit

Permalink
AU: 1 updated - php
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey Community committed Nov 27, 2020
1 parent 639491a commit 38fb0d3
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 16 deletions.
16 changes: 8 additions & 8 deletions automatic/php/legal/VERIFICATION.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ location on <http://windows.php.net/download>
and can be verified by doing the following:

1. Download the following:
32-Bit software (threadsafe): <http://windows.php.net/downloads/releases/php-7.4.13-Win32-vc15-x86.zip>
64-Bit software (threadsafe): <http://windows.php.net/downloads/releases/php-7.4.13-Win32-vc15-x64.zip>
32-Bit software (non-threadsafe): <http://windows.php.net/downloads/releases/php-7.4.13-nts-Win32-vc15-x86.zip>
64-Bit software (non-threadsafe): <http://windows.php.net/downloads/releases/php-7.4.13-nts-Win32-vc15-x64.zip>
32-Bit software (threadsafe): <http://windows.php.net/downloads/releases/php-8.0.0-Win32-vs16-x86.zip>
64-Bit software (threadsafe): <http://windows.php.net/downloads/releases/php-8.0.0-Win32-vs16-x64.zip>
32-Bit software (non-threadsafe): <http://windows.php.net/downloads/releases/php-8.0.0-nts-Win32-vs16-x86.zip>
64-Bit software (non-threadsafe): <http://windows.php.net/downloads/releases/php-8.0.0-nts-Win32-vs16-x64.zip>
2. Get the checksum using one of the following methods:
- Using powershell function 'Get-FileHash'
- Use chocolatey utility 'checksum.exe'
3. The checksums should match the following:

checksum type:
checksum32 (threadsafe): 6433F2DD6D7B52FD7BC4996126A0767AC96F31F1C4A40C648DBA736FD0373AF7
checksum64 (threadsafe): F8044E0FE9C71E1EC7A74F5EDB35D08D844C3FF546F981DE4812091574C2FE20
checksum32 (non-threadsafe): 5173011BD29B4ED8FFE4C5E5937DAF18D556FE45BFF3508ED656A644EB826E02
checksum64 (non-threadsafe): 38A0A759D677CD47C9A7B71D308EA93CDA62B5EB70AF5F8BEEA6E233A744ACCC
checksum32 (threadsafe): 63D53A937C6D7E5B056012E25911B0D0CB576CD3F16B104D0E9500E581283729
checksum64 (threadsafe): 712D36F5F40F128E0D5FC7DCA03F2386C9F39CD250ECD1A25FB574D3D28FFA49
checksum32 (non-threadsafe): 97A3C39ABC900C04F2E53A85222E5F82F23D9B2924CE640D1540A292D9015E7B
checksum64 (non-threadsafe): D2A24B60CC4CB337BCC4869D3AAABE53B641254882DFE63F95BAA32035C8807C

The file 'LICENSE.txt' has been obtained from <http://www.php.net/license/3_01.txt>
3 changes: 2 additions & 1 deletion automatic/php/php.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
"5.6": "5.6.40",
"7.2": "7.2.34",
"7.3": "7.3.25",
"7.4": "7.4.13"
"7.4": "7.4.13",
"8.0": "8.0.0"
}
6 changes: 3 additions & 3 deletions automatic/php/php.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>php</id>
<title>PHP (Hypertext Preprocessor)</title>
<version>7.4.13</version>
<version>8.0.0</version>
<authors>PHP Authors</authors>
<owners>chocolatey-community, Rob Reynolds</owners>
<summary>PHP – widely-used general-purpose scripting language that is especially suited for Web development and can be embedded into HTML.</summary>
Expand All @@ -26,13 +26,13 @@ For example: `choco install php --package-parameters='"/ThreadSafe ""/InstallDir
<tags>php development programming foss cross-platform admin</tags>
<licenseUrl>http://us.php.net/license/</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>https://secure.php.net/ChangeLog-7.php#7.4.13</releaseNotes>
<releaseNotes>https://www.php.net/ChangeLog-8.php#8.0.0</releaseNotes>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-coreteampackages@4e147ce52b1a2a7ac522ffbce6d176f257de6ac1/icons/php.svg</iconUrl>
<bugTrackerUrl>https://bugs.php.net/</bugTrackerUrl>
<docsUrl>https://secure.php.net/docs.php</docsUrl>
<projectSourceUrl>http://git.php.net</projectSourceUrl>
<dependencies>
<dependency id="vcredist140" version="14.16.27012.6" />
<dependency id="visualstudio2019buildtools" version="16.8.2.0" />
<dependency id="chocolatey-core.extension" version="1.3.3" />
<dependency id="chocolatey" version="0.10.0" />
</dependencies>
Expand Down
8 changes: 4 additions & 4 deletions automatic/php/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ if ($installLocation) {
$pp = Get-PackageParameters

$filesInfo = @{
filets32 = "$toolsPath\php-7.4.13-Win32-vc15-x86.zip"
filets64 = "$toolsPath\php-7.4.13-Win32-vc15-x64.zip"
filents32 = "$toolsPath\php-7.4.13-nts-Win32-vc15-x86.zip"
filents64 = "$toolsPath\php-7.4.13-nts-Win32-vc15-x64.zip"
filets32 = "$toolsPath\php-8.0.0-Win32-vs16-x86.zip"
filets64 = "$toolsPath\php-8.0.0-Win32-vs16-x64.zip"
filents32 = "$toolsPath\php-8.0.0-nts-Win32-vs16-x86.zip"
filents64 = "$toolsPath\php-8.0.0-nts-Win32-vs16-x64.zip"
}

if ($pp.ThreadSafe) {
Expand Down

0 comments on commit 38fb0d3

Please sign in to comment.