From d25a3b33f23053d489bf29c23f136ba51321df31 Mon Sep 17 00:00:00 2001 From: Ben Giamarino Date: Thu, 11 May 2023 15:54:48 -0500 Subject: [PATCH 1/3] Move return statement within execute function --- Console/UpgradeHelperCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Console/UpgradeHelperCommand.php b/Console/UpgradeHelperCommand.php index 8ee8426..d14a35b 100644 --- a/Console/UpgradeHelperCommand.php +++ b/Console/UpgradeHelperCommand.php @@ -73,6 +73,6 @@ protected function execute(InputInterface $input, OutputInterface $output) } } } + return Command::SUCCESS; } - return Command::SUCCESS; } From 59588e74c192bd297353cedba2e744d015722756 Mon Sep 17 00:00:00 2001 From: Ben Giamarino Date: Thu, 11 May 2023 16:12:10 -0500 Subject: [PATCH 2/3] Add composer file to indicate minimum Symfony_Console package requirement --- composer.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..7be7805 --- /dev/null +++ b/composer.json @@ -0,0 +1,14 @@ +{ + "name": "somethingdigital/magento2-upgradehelper", + "description": "This tool assists engineers in identifying changes to Magento core and how they can impact customizations", + "type": "magento2-module", + "require": { + "symfony/console": "^5.1" + }, + "license": "proprietary", + "autoload": { + "psr-4": { + "SomethingDigital\\Upgradehelper\\": "" + } + } +} From 3eabe6dc495674ff2e0b0c6465bd2d2ad941062f Mon Sep 17 00:00:00 2001 From: Ben Giamarino Date: Thu, 11 May 2023 16:18:03 -0500 Subject: [PATCH 3/3] Correct package version requirement --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 7be7805..61eb794 100644 --- a/composer.json +++ b/composer.json @@ -3,7 +3,7 @@ "description": "This tool assists engineers in identifying changes to Magento core and how they can impact customizations", "type": "magento2-module", "require": { - "symfony/console": "^5.1" + "symfony/console": ">=5.1" }, "license": "proprietary", "autoload": {