From f26db3bda4ba22d74ccfc98f59b632ab2b00e493 Mon Sep 17 00:00:00 2001 From: Ihor Sviziev Date: Thu, 11 Jul 2019 15:45:39 +0300 Subject: [PATCH 1/2] Make module compatible with Magento 2.3 --- composer.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/composer.json b/composer.json index 1592759..dbaad20 100644 --- a/composer.json +++ b/composer.json @@ -6,17 +6,17 @@ "AGPL-3.0+" ], "require": { - "php": "~7.0.0|~7.1.0", - "magento/framework": "~101.0", - "magento/module-catalog": "~102.0", - "magento/module-catalog-search": "~100.0", + "php": "~7.0.0|~7.1.0|~7.2.0", + "magento/framework": "~101.0|~102.0", + "magento/module-catalog": "~102.0|~103.0", + "magento/module-catalog-search": "~100.0|~101.0", "magento/module-checkout": "~100.0", "magento/module-config": "~101.0", - "magento/module-customer": "~101.0", + "magento/module-customer": "~101.0|~102.0", "magento/module-quote": "~101.0", - "magento/module-sales": "~101.0", - "magento/module-search": "~100.0", - "magento/module-store": "~100.0" + "magento/module-sales": "~101.0|~102.0", + "magento/module-search": "~100.0|~101.0", + "magento/module-store": "~100.0|~101.0" }, "autoload": { "files": ["registration.php"], From 470e5f44d1a415790cc17c97f2e221fc0938bafb Mon Sep 17 00:00:00 2001 From: Henrik Hedelund Date: Fri, 23 Aug 2019 21:28:15 +0200 Subject: [PATCH 2/2] Update build versions --- .travis.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9088111..88cf1c0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,13 +1,17 @@ language: php php: + - 7.2 - 7.1 - - 7.0 env: - - M2_VERSION=2.2.4 - - M2_VERSION=2.2.3 - - M2_VERSION=2.2.2 - - M2_VERSION=2.2.1 - - M2_VERSION=2.2.0 + - M2_VERSION=2.3.2 + - M2_VERSION=2.3.1 + - M2_VERSION=2.3.0 +matrix: + include: + - php: 7.1 + env: M2_VERSION=2.2.9 + - php: 7.0 + env: M2_VERSION=2.2.9 cache: directories: - $HOME/.composer/cache