From 566f78a697abb668718f61326118658044d2bf00 Mon Sep 17 00:00:00 2001 From: Valentin Fayard Date: Fri, 14 Jun 2019 14:24:52 +0200 Subject: [PATCH] Compatibility with Magento 2.3 (#1) --- .travis.yml | 2 +- README.md | 4 ++-- composer.json | 12 ++++++------ 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4117a7e..fe400a9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: php php: - - '7.0' - '7.1' + - '7.2' install: composer install --prefer-dist addons: code_climate: diff --git a/README.md b/README.md index e9fea7b..69ee548 100644 --- a/README.md +++ b/README.md @@ -69,8 +69,8 @@ bin/magento urlrewrite:rebuild --help ## Requirements -- PHP: 7.0.x | 7.1.x -- Magento 2.1.x | 2.2.x +- PHP: 7.0.x | 7.1.x | 7.2.x +- Magento 2.1.x | 2.2.x | 2.3.x Support ------- diff --git a/composer.json b/composer.json index da0b6ce..b279c0f 100644 --- a/composer.json +++ b/composer.json @@ -2,14 +2,14 @@ "name": "staempfli/magento2-module-rebuild-url-rewrite", "description": "Magento 2 rebuild url rewrites for categories and products", "require": { - "php": "^7.0|^7.1", - "magento/framework": "~100.1|~101.0", - "magento/module-catalog-url-rewrite": "100.1|~100.2", - "magento/module-url-rewrite": "~101.0|~100.1", - "symfony/console": "~2.3, !=2.7.0" + "php": "~7.0.0 || ~7.1.0 || ~7.2.0", + "magento/framework": "~100.1 || ~101.0 || ~102.0", + "magento/module-catalog-url-rewrite": "*", + "magento/module-url-rewrite": "*", + "symfony/console": "~2.3, !=2.7.0 || ~4.1.0" }, "require-dev": { - "phpunit/phpunit": "~6.2.0", + "phpunit/phpunit": "~6.5.13", "codeclimate/php-test-reporter": "0.4.0", "magento/marketplace-eqp": "^1.0.5" },