From 29b6d7d88fca63f8b25ab958142815ed55a4fdf5 Mon Sep 17 00:00:00 2001 From: evs-xsarus <44158071+evs-xsarus@users.noreply.github.com> Date: Tue, 16 Apr 2024 16:27:21 +0200 Subject: [PATCH 1/3] Make installable on PHP 8.x New PHP subversions hardly ever break, remove the hard upper version constraint. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index ed5a615..69f9fee 100644 --- a/composer.json +++ b/composer.json @@ -4,7 +4,7 @@ "license": "OSL-3.0", "version": "4.3.1", "require": { - "php": ">=8.0 <8.3", + "php": ">=8.0", "tweakwise/magento2-tweakwise": "^5.7.4", "emico/m2-attributelanding": "^4.1" }, From 0dae510600dcbbf4c77e9a3d6d4c76b56032fbcd Mon Sep 17 00:00:00 2001 From: evs-xsarus <44158071+evs-xsarus@users.noreply.github.com> Date: Tue, 16 Apr 2024 16:59:10 +0200 Subject: [PATCH 2/3] Support Tweakwise 6.x --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 69f9fee..a240346 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,7 @@ "version": "4.3.1", "require": { "php": ">=8.0", - "tweakwise/magento2-tweakwise": "^5.7.4", + "tweakwise/magento2-tweakwise": "^5.7.4|^6.0", "emico/m2-attributelanding": "^4.1" }, "require-dev": { From 165c5d5e5ebb4fe536ff11641b9f42484cbd8c15 Mon Sep 17 00:00:00 2001 From: ah-net <103565001+ah-net@users.noreply.github.com> Date: Tue, 30 Apr 2024 15:57:53 +0200 Subject: [PATCH 3/3] fix: make installable on php 8.3 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index ca27305..793d82c 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,7 @@ "description": "Provides compatibility between Attribute landing module and Tweakwise module.", "license": "OSL-3.0", "require": { - "php": ">=8.0", + "php": "^8.0", "tweakwise/magento2-tweakwise": ">=5.7.4", "emico/m2-attributelanding": ">=4.1" },