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; } diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..61eb794 --- /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\\": "" + } + } +}