The Home for Magento 2 Excellence

Automated build tests for Magento 2 modules. Explore. Evaluate. Elevate. #magento2

1094 Modules
671 Ready
422 Need Help
Vendors 🏆 Leaderboard
Top 10% by Downloads Actively Maintained v1.12.0 MIT

Marketplace

swissup/module-marketplace 70

Magento modules and themes CLI/GUI downloader and installer

443,077
Downloads
3x above avg
17
GitHub Stars
Below average
15d ago
Last Release
0
Open Issues
Build Passing
Ready to install

Build Tests

Composer Install
DI Compile
Templates

Code Quality

CS Coding Standard
104 warnings
PHPStan Failed

Release Discipline

90 SemVer 90% compliant What is this?

Release history audited up to v1.12.0

Tested on Magento 2.4.9

Recent Test History

Each release is tested against the latest Magento version at that time.

v1.12.0 on Magento 2.4.9
Sep 3, 2026
v1.11.0 on Magento 2.4.9
Jul 28, 2026
v1.10.7 on Magento 2.4.9
May 27, 2026
v1.10.7 on Magento 2.4.8-p4
Mar 22, 2026
v1.10.7 on Magento 2.4.8-p3
Dec 16, 2025
v1.10.7 on Magento 2.4.8-p2
Aug 14, 2025

+8 older tests

Share This Module's Status

Marketplace Magento compatibility status badge

README

Loaded from GitHub

Marketplace

Marketplace — is an extensible one-click modules and themes installer with command line and Magento backend interfaces. It allows to add unlimited number of custom software update channels and install modules and themes from any third-party vendor including official Magento Marketplace.

Contents

Installation

composer require swissup/module-marketplace
bin/magento setup:upgrade

Usage

Command line interface

  1. Activate update channel and enter access keys:

    bin/magento marketplace:channel:enable
    bin/magento marketplace:auth:key:add <channel>
    

    Use marketplace:channel:list to see the registered channels, and marketplace:auth:show / marketplace:auth:check to inspect and verify the stored credentials.

  2. Install the package(s) you need:

    # Download and enable module:
    bin/magento marketplace:require <package/name>
    # Run one-click installer (if module provides it):
    bin/magento marketplace:install <package/name>
    
  3. That's all. Check your store frontend now!

    Some modules requires additional configuration after installation. Please refer to the module documentation.

Magento backend interface

Composer is never executed from the backend - running it through Magento is not reliable. Instead, the backend shows the command to copy and run in your terminal. The one-click installer does not use composer and is still available right in the backend.

Channels and access keys are managed from the command line only - see Command line interface above.

  1. Navigate to System > Tools > Marketplace page.

  2. Search for the module you'd like to install, and press Install button. Copy the suggested command and run it:

    bin/magento marketplace:require <package/name>
    
  3. Reload the page and press Run Installer button, if the module provides a one-click installer.

  4. That's all. Check your store frontend now!

    Some modules requires additional configuration after installation. Please refer to the module documentation.

Extending Marketplace

Create one-click installer

One-click installer is registered with etc/marketplace/installer.xml file. See following examples:

FAQ

Can I install modules from the packagist?

Yes. But via CLI only.

Can I install modules from private repository?

Yes. But via CLI only. Here is an example:

# 1. Add your private repository to the composer.json
composer config repositories.<id> vcs https://github.com/repo/url.git

# 2. Setup auth data. Get token at https://github.com/settings/tokens/new?scopes=repo
bin/magento marketplace:auth github-oauth.github.com <token>

# 3. Use marketplace to download the module and run installer (if any)
bin/magento marketplace:require <package/name>
bin/magento marketplace:install <package/name>

This content is fetched directly from the module's GitHub repository. We are not the authors of this content and take no responsibility for its accuracy, completeness, or any consequences arising from its use.