Clement Herreman
Clement Herreman
### Context When returning the array of cURL raw headers, PHP-VCR returns them like this ```php [ "Content-Type: text/html; charset=UTF-8", "Content-Encoding: gzip", ] ``` However, cURL returns them more "raw",...
### Context symfony/http-client is using the cURL `CURLINFO_CERTINFO` (see [here](https://github.com/symfony/http-client/blob/master/Response/CurlResponse.php#L371)) However PHP-VCR is not handling this. By default, its value is `[]`, unless a developer use this: ``` curl_setopt($ch, CURLOPT_CERTINFO,...
## Context This PR adds the handling of `CURLINFO_PRIVATE` in PHP VCR. This header is used by the symfony/http-client, and make it incompatible with PHP VCR. There was a previous...
Hello, I recently got bit on production after deploying a code change. We created a new `FooMessage` & `FooHandler`, but didn't update the `messenger.yaml` to include routing information. This caused...
Hi! First of all, thank you for sharing this with the community. You rock! I'd like to have a way to customize the messages sent to Slack, without having to...