Composer User Guide for MageBees Extensions
How to generate access keys and find Composer names?
MageBees repository is a private one. To access the purchased modules/extensions, access keys are required. It will ask for a Username (Public Key) and password (Private Key) when trying to install the package from the MageBees Composer repository.
Please open https://www.magebees.com site then go to My Account (Login here) -> My Downloadable Products -> Click to “Create New Access Key” => Now you can see the “Public Key” and “Private Key”

How to Install extensions using composer?
1) Open command prompt /terminal and change directory to your magento install directory.
2) Run following command:
composer config repositories.private-packagist composer https://repo.magebees.com/<MageBees Public Key>composer config --global --auth http-basic.repo.magebees.com <MageBees Public Key> <MageBess Private Key>composer require magebees/module-name
Example: composer require magebees/module-featuredproduct:1.0.7

3) To activate the extension, below commands should be executed:
php bin/magento setup:upgradephp bin/magento setup:di:compilephp bin/magento setup:static-content:deploy (your locale)
(your locale) will be like this en_US, en_AU etc.
You can check available extensions and their versions also.
1) Show MageBees Extensions/Modules:
composer show -a magebees/*
2) Check MageBees module versions are available
composer show -a magebees/module-name
Example: composer show -a magebees/module-featuredproduct
How to Delete extension using composer?
Run following command:
composer remove magebees/module-name
Ex: composer remove magebees/module-featuredproduct
If you want to delete all Magebees extension using composer then run this command:
composer remove magebees/*
To apply this change, below commands should be executed:
php bin/magento setup:upgradephp bin/magento setup:di:compilephp bin/magento setup:static-content:deploy (your locale)
(your locale) will be like this en_US, en_AU etc.
Thank you from MageBees Team.
Do you need Extension Support? Please create support ticket for quick reply,
