Skip to main content

mageforge:install

info

Install the MageForge tool into your Magento 2 project.

Description

The mageforge:install command installs the MageForge module into your Magento 2 installation by running the standard Composer and Magento setup steps:

  1. composer require openforgeproject/mageforge
  2. bin/magento module:enable OpenForgeProject_MageForge
  3. bin/magento setup:upgrade

After a successful installation, the command automatically runs mageforge:hyva:compatibility:check to verify that the setup is working correctly. This post-install check can be suppressed with the --no-check option.

Usage

n98-magerun2.phar mageforge:install
n98-magerun2.phar mageforge:install --no-check

Options

OptionDescription
--no-checkSkip the post-install mageforge:hyva:compatibility:check run

Examples

Standard installation with post-install check:

n98-magerun2.phar mageforge:install

Installation without running the compatibility check:

n98-magerun2.phar mageforge:install --no-check