From dbfc64ec8a98183f0ee7d2f46a29ea3bf9664874 Mon Sep 17 00:00:00 2001 From: Thomas Flori <thflori@gmail.com> Date: Sat, 27 Oct 2018 17:29:37 +0200 Subject: [PATCH] require getallheaders polyfill till guzzle requires it There is an ongoing release process for guzzle 1.5.0 which requires the same library. The last guzzle release is over 6 month ago. --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 3f6a398..12afeb1 100644 --- a/composer.json +++ b/composer.json @@ -7,7 +7,8 @@ "code-style": "phpcs --standard=PSR2 src && phpcs --standard=PSR2 --ignore=example tests" }, "require": { - "guzzlehttp/psr7": "^1.4.2" + "guzzlehttp/psr7": "^1.4.2", + "ralouphie/getallheaders": "^2.0.5" }, "require-dev": { "phpunit/phpunit": "^7.2.7", -- GitLab