http icon indicating copy to clipboard operation
http copied to clipboard

The sabre/http library provides utilities for dealing with http requests and responses.

Results 13 http issues
Sort by recently updated
recently updated
newest added

After spending a few days fighting to get Sabredav running with Caddy (and a few other webservers) via php-fpm, I noticed that I was struggling to get the server to...

This is a rebase of #98

# Changed log - add more tests.

Hi, First of all thanks your work. I use this package for a longtime along with backup-manager/backup-manager but it stop working since 7 october. I have try to find a...

hi, i have a nextcloud instance running behind a pfsense haproxy: `[client] -- https --> [haproxy] -- http --> [nginx] -- fpm --> [nextcloud]` and i am seeing stalled uploads...

Hello. I noticed a long time ago that the HTTP Client buffers the loaded documents into RAM because curl returns the response body as a string when the `curl_exec()` method...

After upgrade to 5.0 my IDE (PHP Storm) shows me a warning: `Expected \Sabre\HTTP\scalar, got string Inspection info: Invocation parameter types are not compatible with declared.` https://github.com/sabre-io/http/blob/3577f014fe188572386903722e2a78ad6ad45e7e/lib/Message.php#L223 In the previous...

if behind a proxy

Moved from here: https://github.com/fruux/sabre-dav/issues/321

enhancement

The method is: ``` /** * Generates an HMAC-SHA1 signature. */ private function hmacsha1(string $key, string $message): string { if (function_exists('hash_hmac')) { return hash_hmac('sha1', $message, $key, true); } $blocksize =...