From bb912ec8839645bff3ba38e8e0175e0d535c6e5c Mon Sep 17 00:00:00 2001 From: Omar Date: Wed, 28 Jun 2023 13:43:23 +0200 Subject: [PATCH] Require php-http/message-factory This library is needed to send the messages through sparkpost. It was initially required by php-http/message , but since version 1.16.0 it is not required anymore. --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 1736421..638e001 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,8 @@ "php-http/httplug": "^1.0 || ^2.0", "php-http/message": "^1.0", "php-http/client-implementation": "^1.0", - "php-http/discovery": "^1.0" + "php-http/discovery": "^1.0", + "php-http/message-factory": "^1.0" }, "require-dev": { "phpunit/phpunit": "^8.0 || ^9.0",