mondu / magento2-payment
Mondu payment method for magento 2
Package info
github.com/mondu-ai/magento2-checkout
Type:magento2-module
pkg:composer/mondu/magento2-payment
2.8.2
2026-03-05 14:27 UTC
Requires
- php: >=8.1
- ext-json: *
This package is auto-updated.
Last update: 2026-06-29 08:27:22 UTC
README
Installation
Install using Composer (Recommended)
- From the CLI, run the following commands to install the Mondu module.
composer require mondu/magento2-payment - Run Magento install/upgrade scripts:
php bin/magento setup:upgrade - Compile dependency injection:
php bin/magento setup:di:compile - Deploy static view files (production mode only):
php bin/magento setup:static-content:deploy - Flush Magento cache:
php bin/magento cache:flush
Install using Docker
- Install docker and docker-compose.
- Create a `auth.json` file copying it from `auth.json.example` according to https://experienceleague.adobe.com/docs/commerce-cloud-service/user-guide/develop/authentication-keys.html?lang=en.
- Run the following script:
docker-compose up. - Wait the container to start (it may take a while).
- Run `composer install` inside the magento container.
Install manually
- Download the latest release of Mondu module for Magento 2 file from the Mondu github repository https://github.com/mondu-ai/magento2-checkout/releases
- Unzip the file
- Create a directory `Mondu/Mondu` in: [MAGENTO]/app/code/
- Copy the files to `Mondu/Mondu` directory
- Run Magento install/upgrade scripts:
php bin/magento setup:upgrade - Compile dependency injection:
php bin/magento setup:di:compile - Deploy static view files (production mode only):
php bin/magento setup:static-content:deploy - Flush Magento cache:
php bin/magento cache:flush