From 8b305e2535c05b46114f72a15319696fd1192472 Mon Sep 17 00:00:00 2001 From: yamlahik Date: Fri, 28 Jun 2024 16:16:55 +0200 Subject: [PATCH 1/2] upgrade dependency require-dev and php8 --- composer.json | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/composer.json b/composer.json index 4931884..343486c 100755 --- a/composer.json +++ b/composer.json @@ -3,20 +3,20 @@ "description": "Pacemaker library providing basic Magento 2 EE product import functionality", "license": "MIT", "require": { - "php": ">=7.3.0", - "techdivision/import-ee": "^16.0.0", - "techdivision/import-product": "^25.0.0" + "php": "^8.1", + "techdivision/import-ee": "dev-compatibility-php-81", + "techdivision/import-product": "dev-compatibility-php-81" }, "require-dev": { - "doctrine/dbal": "2.5.*", - "pdepend/pdepend": "2.5.2", - "phpmd/phpmd": "@stable", - "phpunit/phpunit": "^6.5.0|^8.0.0|~9.5.0", - "sebastian/phpcpd": "~3.0|~4.0|~5.0|~6.0", - "squizlabs/php_codesniffer": "~3.4.0|~3.6.0", - "consolidation/robo": "~1.0", - "mikey179/vfsstream": "~1.0", - "symfony/http-kernel": "~2.0|~3.0|~4.0" + "doctrine/dbal": "^4.0.4", + "pdepend/pdepend": "^2.16.2", + "phpmd/phpmd": "^2.15.0", + "phpunit/phpunit": "^11.2.5", + "sebastian/phpcpd": "^2.0.1", + "squizlabs/php_codesniffer": "^3.10.1", + "consolidation/robo": "^4.0.2", + "mikey179/vfsstream": "v1.6.11", + "symfony/http-kernel": "v4.4.51" }, "minimum-stability": "dev", "prefer-stable": true, From 0cf184f813b9a9d24639e6f4f152102b243025e0 Mon Sep 17 00:00:00 2001 From: yamlahik Date: Wed, 24 Jul 2024 17:18:56 +0200 Subject: [PATCH 2/2] UPDATE composer.json & changelog --- CHANGELOG.md | 10 ++++++++++ composer.json | 8 ++++---- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a15c1a..5a5eeeb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# Version 27.0.0 + +## Features + +### PHP 8.1 Compatibility + +* Update dependencies +* Add PHP ">=8.1" support +* Remove PHP 7.3 support + # Version 26.1.2 ## Bugfixes diff --git a/composer.json b/composer.json index 343486c..dff1b12 100755 --- a/composer.json +++ b/composer.json @@ -4,8 +4,8 @@ "license": "MIT", "require": { "php": "^8.1", - "techdivision/import-ee": "dev-compatibility-php-81", - "techdivision/import-product": "dev-compatibility-php-81" + "techdivision/import-ee": "^17.0.0", + "techdivision/import-product": "^26.0.0" }, "require-dev": { "doctrine/dbal": "^4.0.4", @@ -15,8 +15,8 @@ "sebastian/phpcpd": "^2.0.1", "squizlabs/php_codesniffer": "^3.10.1", "consolidation/robo": "^4.0.2", - "mikey179/vfsstream": "v1.6.11", - "symfony/http-kernel": "v4.4.51" + "mikey179/vfsstream": "~1.6.11", + "symfony/http-kernel": "~4.4.51" }, "minimum-stability": "dev", "prefer-stable": true,