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 Feb 1, 2023
1 parent aa519ac commit b36e57a
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.2.2-Win32-vs16-x86.zip>
64-Bit software (threadsafe): <http://windows.php.net/downloads/releases/php-8.2.2-Win32-vs16-x64.zip>
32-Bit software (non-threadsafe): <http://windows.php.net/downloads/releases/php-8.2.2-nts-Win32-vs16-x86.zip>
64-Bit software (non-threadsafe): <http://windows.php.net/downloads/releases/php-8.2.2-nts-Win32-vs16-x64.zip>
32-Bit software (threadsafe): <http://windows.php.net/downloads/releases/php-8.1.15-Win32-vs16-x86.zip>
64-Bit software (threadsafe): <http://windows.php.net/downloads/releases/php-8.1.15-Win32-vs16-x64.zip>
32-Bit software (non-threadsafe): <http://windows.php.net/downloads/releases/php-8.1.15-nts-Win32-vs16-x86.zip>
64-Bit software (non-threadsafe): <http://windows.php.net/downloads/releases/php-8.1.15-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): D48104994DA4F0D56C1D5382DA4BE11AF8A9991872B04F7167A98F7182594A75
checksum64 (threadsafe): 31C2C009A66CCAAE5C39B9AEA37FF55AE6FA080C7B48317513699B4DF2582E14
checksum32 (non-threadsafe): DB7CE99B1FD8DED5BAB46F20BAD1B8861DD9113C620AC37C7EC6D14375BB449C
checksum64 (non-threadsafe): B464E94C7022E3DF826E001D3837C92542BF89D7E8CACAB0EF75835771E77C56
checksum32 (threadsafe): 000BF25E12C8BAFEAC2D732F5EA37EFF49C50CF12D42EBE3BD95D95028E6086B
checksum64 (threadsafe): 116B890C0053C28D140D93C699E5C6995944FCC9420AC117F44772B1BB69F9FF
checksum32 (non-threadsafe): FF793DB8BADD3D52651BB3A73F45BAE095FEF25F064C460805CCBE5BB8659E83
checksum64 (non-threadsafe): FCC6F9195E8083616DD626177F0F3A25F1CA63FC06B075C7FA988D9C19A708E4

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 @@ -6,6 +6,6 @@
"7.3": "7.3.33",
"7.4": "7.4.33",
"8.0": "8.0.27",
"8.1": "8.1.14",
"8.1": "8.1.15",
"8.2": "8.2.2"
}
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.2.2</version>
<version>8.1.15</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.2.2</releaseNotes>
<releaseNotes>https://www.php.net/ChangeLog-8.php#8.1.15</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.2.2-Win32-vs16-x86.zip"
filets64 = "$toolsPath\php-8.2.2-Win32-vs16-x64.zip"
filents32 = "$toolsPath\php-8.2.2-nts-Win32-vs16-x86.zip"
filents64 = "$toolsPath\php-8.2.2-nts-Win32-vs16-x64.zip"
filets32 = "$toolsPath\php-8.1.15-Win32-vs16-x86.zip"
filets64 = "$toolsPath\php-8.1.15-Win32-vs16-x64.zip"
filents32 = "$toolsPath\php-8.1.15-nts-Win32-vs16-x86.zip"
filents64 = "$toolsPath\php-8.1.15-nts-Win32-vs16-x64.zip"
}

if ($pp.ThreadSafe) {
Expand Down

0 comments on commit b36e57a

Please sign in to comment.