guzzle @ 6.2.1
integrity
- size
- 96.5 KiB
- downloaded
- last checked
- overlays
- composer
- detected
- composer guzzlehttp/guzzle
release notes
- Addressing HTTP_PROXY security vulnerability, CVE-2016-5385: https://httpoxy.org/. Please update to this version of Guzzle in order to mitigate the vulnerability when sending Guzzle requests inside of a CGI application.
- Fixing timeout bug with StreamHandler
- Only read up to
Content-Lengthin PHP StreamHandler to avoid timeouts when a server does not honorConnection: close. - Ignore URI fragment when sending requests.
download
unix · zip
curl -fL -o 6.2.1.zip https://ratatoskr.space/pkg/guzzle/6.2.1.zip
printf '%s %s\n' '85f93108ef713f94e4b7ef35ec70baa24b02aedda1d7fcbfb44c9ef076d804b4' '6.2.1.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/guzzle/6.2.1.zip"
$out = "6.2.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "85f93108ef713f94e4b7ef35ec70baa24b02aedda1d7fcbfb44c9ef076d804b4") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 6.2.1.tar.gz https://ratatoskr.space/pkg/guzzle/6.2.1.tar.gz
printf '%s %s\n' '7bda7327b814ca4cdfdd0d1d73963045da099691cf74f1d8e3a1f381cf8797ff' '6.2.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/guzzle/6.2.1.tar.gz"
$out = "6.2.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "7bda7327b814ca4cdfdd0d1d73963045da099691cf74f1d8e3a1f381cf8797ff") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o 6.2.1.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/guzzle/6.2.1.zip
printf '%s %s\n' '85f93108ef713f94e4b7ef35ec70baa24b02aedda1d7fcbfb44c9ef076d804b4' '6.2.1.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/guzzle/6.2.1.zip"
$out = "6.2.1.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "85f93108ef713f94e4b7ef35ec70baa24b02aedda1d7fcbfb44c9ef076d804b4") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 6.2.1.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/guzzle/6.2.1.tar.gz
printf '%s %s\n' '7bda7327b814ca4cdfdd0d1d73963045da099691cf74f1d8e3a1f381cf8797ff' '6.2.1.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/guzzle/6.2.1.tar.gz"
$out = "6.2.1.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "7bda7327b814ca4cdfdd0d1d73963045da099691cf74f1d8e3a1f381cf8797ff") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| 6.2.1.zip | zip | 96.3 KiB |
blake3-24 8366e62ff5ca41acbfcaa3648ed19c28b3dce34c31ba3e92
sha256 85f93108ef713f94e4b7ef35ec70baa24b02aedda1d7fcbfb44c9ef076d804b4
sha1 d6e32b3ff0ba5843ab8d3387980bb5844033bf4d
|
| 6.2.1.tar.gz | tar.gz | 78.3 KiB |
blake3-24 7f27924896fd201393331bf04fc275e9d285f7a38e7f4b71
sha256 7bda7327b814ca4cdfdd0d1d73963045da099691cf74f1d8e3a1f381cf8797ff
sha1 dfe3a0423c2a997ad8934c738b7386bfd048295b
|
install
bazel
http_archive(
name = "guzzle",
urls = ["https://ratatoskr.space/pkg/guzzle/6.2.1.tar.gz"],
integrity = "sha256-e9pzJ7gUykzf3Q0dc5YwRdoJlpHPdPHY46Hzgc+Hl/8=",
strip_prefix = "guzzle-6.2.1",
)
zig
.url = "https://ratatoskr.space/pkg/guzzle/6.2.1.tar.gz",
composer
composer config repositories.yggvault composer https://ratatoskr.space/pkg composer require guzzlehttp/guzzle:6.2.1
install via yggdrasil mesh
bazel
http_archive(
name = "guzzle",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/guzzle/6.2.1.tar.gz"],
integrity = "sha256-e9pzJ7gUykzf3Q0dc5YwRdoJlpHPdPHY46Hzgc+Hl/8=",
strip_prefix = "guzzle-6.2.1",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/guzzle/6.2.1.tar.gz",
composer
composer config secure-http false composer config repositories.yggvault composer http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg composer require guzzlehttp/guzzle:6.2.1