Installing Modules via Composer

Thank you for choosing our Magento 2 extensions. To streamline the installation process, we recommend using Composer, a dependency management tool for PHP. Here are the steps to install our modules:

Step 1: Obtain Your Composer Access Credentials

Your Composer credentials can be found in your customer account. If you haven't created an account yet, please do so by visiting our website and registering as a customer.

Step 2: Add Our Composer Repository

In your terminal, navigate to your Magento 2 project's root directory and run the following command:

composer config repositories.magefine composer https://packages.magefine.com

Step 3: Require the Module

Run the following command to require the module you wish to install. Replace vendor/module with the actual package name:

composer require vendor/module

Step 4: Enable the Module

After successfully requiring the module, enable it by running the following commands:

php bin/magento module:enable Vendor_Module
php bin/magento setup:upgrade
php bin/magento cache:clean

Step 5: Configure the Module

Access the Magento Admin Panel and configure the module as needed. Be sure to save your settings.

Step 6: Clear Cache and Reindex

Finally, clear the cache and reindex your Magento store to ensure the module functions correctly:

php bin/magento cache:clean
php bin/magento indexer:reindex

Congratulations! You have successfully installed and configured our Magento 2 module. If you encounter any issues during installation or have any questions, please don't hesitate to contact our support team.