From bb53c682908149037645a860f5d6a902571c2ae9 Mon Sep 17 00:00:00 2001 From: Alexander Schranz Date: Tue, 31 Mar 2026 13:54:03 +0200 Subject: [PATCH] Define PHP version requirement to 7.2 or higher Brevo is built on top of guzzlehttp/guzzle 7.4 which min requirements is PHP 7.2.5 --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 176f1d78..e05419d1 100755 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ } ], "require": { - "php": ">=5.6", + "php": ">=7.2", "ext-curl": "*", "ext-json": "*", "ext-mbstring": "*", @@ -40,4 +40,4 @@ "dev-master": "1.x.x-dev" } } -} \ No newline at end of file +}