From 6a138f5e06538099e08f290afd6f17283b9fb535 Mon Sep 17 00:00:00 2001 From: Franck Cassedanne Date: Tue, 9 Feb 2021 22:34:35 +0000 Subject: [PATCH] Fix version dependency. Cloudinary PHP SDK v2 brought some breaking changes not (yet) compatible with this module. This quick-fix constraint to use the v1 for backwards compatibility. --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 7637dce..b2d7152 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,7 @@ "version": "1.14.4", "license": "MIT", "require": { - "cloudinary/cloudinary_php": "*" + "cloudinary/cloudinary_php": "^1.2" }, "autoload": { "files": [ @@ -19,4 +19,4 @@ "type": "git", "url": "https://github.com/cloudinary/cloudinary_magento2" }] -} \ No newline at end of file +}