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 Sep 27, 2023
1 parent 9c3c280 commit b080ba2
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 15 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-8.1.23-Win32-vs16-x86.zip>
64-Bit software (threadsafe): <http://windows.php.net/downloads/releases/php-8.1.23-Win32-vs16-x64.zip>
32-Bit software (non-threadsafe): <http://windows.php.net/downloads/releases/php-8.1.23-nts-Win32-vs16-x86.zip>
64-Bit software (non-threadsafe): <http://windows.php.net/downloads/releases/php-8.1.23-nts-Win32-vs16-x64.zip>
32-Bit software (threadsafe): <http://windows.php.net/downloads/releases/php-8.2.11-Win32-vs16-x86.zip>
64-Bit software (threadsafe): <http://windows.php.net/downloads/releases/php-8.2.11-Win32-vs16-x64.zip>
32-Bit software (non-threadsafe): <http://windows.php.net/downloads/releases/php-8.2.11-nts-Win32-vs16-x86.zip>
64-Bit software (non-threadsafe): <http://windows.php.net/downloads/releases/php-8.2.11-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): 12E76FB800A87CFA5D1C4B4928ACB145A835348EE72E424646B36A25054CE414
checksum64 (threadsafe): D6F14E6A246F92A5A1156AC30C60645229D93A92ACCDD5D849664BA2A0A7A698
checksum32 (non-threadsafe): AA151AA8B64C64FFC4E0C92115E1FFB446445E651171F3C6F8F2FD16BB7057DF
checksum64 (non-threadsafe): 35EB66BF28DE4EB89B2985B0087760B586E454D20219FF967B93FE5B4AA723C5
checksum32 (threadsafe): A19013C2725417D8E11F633940BC5101D4A09F36C4F5F2BDCA8AF06D0559ECDD
checksum64 (threadsafe): A60BF6859EDD0E7A08561BA7510C6B8A2E69CA60BA7998DADC66D31C5E99B386
checksum32 (non-threadsafe): 0361EC9937586F52B045200D16EC809AC2809FFBBB70F90020A71D5595154E92
checksum64 (non-threadsafe): 2F603DB80F0E4FFD0330140D12926A822E47F9825FD0ADBB55611857AA1B4109

The file 'LICENSE.txt' has been obtained from <http://www.php.net/license/3_01.txt>
2 changes: 1 addition & 1 deletion automatic/php/php.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"7.4": "7.4.33",
"8.0": "8.0.30",
"8.1": "8.1.23",
"8.2": "8.2.8"
"8.2": "8.2.11"
}
4 changes: 2 additions & 2 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>8.1.23</version>
<version>8.2.11</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 @@ -29,7 +29,7 @@ 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://www.php.net/ChangeLog-8.php#8.1.23</releaseNotes>
<releaseNotes>https://www.php.net/ChangeLog-8.php#8.2.11</releaseNotes>
<iconUrl>https://cdn.jsdelivr.net/gh/chocolatey-community/chocolatey-packages@4e147ce52b1a2a7ac522ffbce6d176f257de6ac1/icons/php.svg</iconUrl>
<bugTrackerUrl>https://bugs.php.net/</bugTrackerUrl>
<docsUrl>https://secure.php.net/docs.php</docsUrl>
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-8.1.23-Win32-vs16-x86.zip"
filets64 = "$toolsPath\php-8.1.23-Win32-vs16-x64.zip"
filents32 = "$toolsPath\php-8.1.23-nts-Win32-vs16-x86.zip"
filents64 = "$toolsPath\php-8.1.23-nts-Win32-vs16-x64.zip"
filets32 = "$toolsPath\php-8.2.11-Win32-vs16-x86.zip"
filets64 = "$toolsPath\php-8.2.11-Win32-vs16-x64.zip"
filents32 = "$toolsPath\php-8.2.11-nts-Win32-vs16-x86.zip"
filents64 = "$toolsPath\php-8.2.11-nts-Win32-vs16-x64.zip"
}

if ($pp.ThreadSafe) {
Expand Down

0 comments on commit b080ba2

Please sign in to comment.