PHPackages                             monei/module-monei-payment - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Payment Processing](/categories/payments)
4. /
5. monei/module-monei-payment

ActiveMagento2-module[Payment Processing](/categories/payments)

monei/module-monei-payment
==========================

MONEI Payments Adobe Commerce (Magento 2) module

2.2.4(3mo ago)11.5k↓50%3[1 issues](https://github.com/MONEI/MONEI-AdobeCommerce-Magento2/issues)proprietaryPHPPHP ^8.1.0CI failing

Since Nov 6Pushed 3mo ago1 watchersCompare

[ Source](https://github.com/MONEI/MONEI-AdobeCommerce-Magento2)[ Packagist](https://packagist.org/packages/monei/module-monei-payment)[ Docs](https://github.com/MONEI/MONEI-AdobeCommerce-Magento2)[ RSS](/packages/monei-module-monei-payment/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (10)Dependencies (6)Versions (46)Used By (0)

MONEI Payments for Adobe Commerce (Magento 2)
=============================================

[](#monei-payments-for-adobe-commerce-magento-2)

[![Magento Marketplace](https://camo.githubusercontent.com/4542971fd33d6800048e0d932070f570ab1aa1c95917bd3a4c2cdfd5c184a188/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4d6167656e746f2d4d61726b6574706c6163652d6f72616e67652e737667)](https://marketplace.magento.com/monei-module-monei-payment.html)[![Latest Version](https://camo.githubusercontent.com/2a3b3960f5cb93355d5346d01f3eb84557498f3ef99ad9f60671625ba8ba0acc/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6d6f6e65692f6d6f64756c652d6d6f6e65692d7061796d656e742e737667)](https://packagist.org/packages/monei/module-monei-payment)[![Minimum PHP Version](https://camo.githubusercontent.com/183804d09fec16ca7b6209b007250b7d8db1b915042feb093a9f20e6e1f25359/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7068702d253345253344253230382e312d3838393242462e737667)](https://php.net/)

Accept payments through [MONEI](https://monei.com) in your Adobe Commerce (Magento 2) store with our official extension.

Table of Contents
-----------------

[](#table-of-contents)

- [MONEI Payments for Adobe Commerce (Magento 2)](#monei-payments-for-adobe-commerce-magento-2)
    - [Table of Contents](#table-of-contents)
    - [Overview](#overview)
    - [Features](#features)
    - [Requirements](#requirements)
    - [Installation](#installation)
        - [Via Composer (Recommended)](#via-composer-recommended)
        - [Manual Installation](#manual-installation)
        - [Bitnami Installation](#bitnami-installation)
        - [Before You Begin](#before-you-begin)

Overview
--------

[](#overview)

MONEI Payments for Adobe Commerce (Magento 2) allows you to seamlessly integrate MONEI's payment processing capabilities into your Magento store. This official module provides a secure, reliable, and user-friendly payment experience for your customers.

Features
--------

[](#features)

- Accept payments via credit cards, Apple Pay, Google Pay, and more
- Seamless checkout experience with embedded payment forms
- Secure payment processing with full PCI compliance
- Real-time payment notifications and order status updates
- Detailed transaction reporting in your MONEI dashboard
- Customizable payment experience to match your store's design
- Integration with the official MONEI PHP SDK for reliable API communication
- Automatic Apple Pay domain verification through configuration settings

Requirements
------------

[](#requirements)

- PHP: ^8.1.0
- Magento: &gt;=2.4.4 (Support for Magento 2.4.0-2.4.3 release line ended on November 28, 2022) ([Adobe Commerce Release Versions](https://experienceleague.adobe.com/en/docs/commerce-operations/release/versions))
- MONEI Account ([Sign up here](https://monei.com/signup))
- MONEI PHP SDK: ^2.8.3 (automatically installed with Composer)

Installation
------------

[](#installation)

### Via Composer (Recommended)

[](#via-composer-recommended)

Go to your Adobe Commerce (Magento 2) root directory and run the following commands:

1. Add the package to your Magento installation:

```
composer require monei/module-monei-payment
```

2. Enable the module:

```
bin/magento module:enable Monei_MoneiPayment
```

3. Run the following commands to upgrade and compile the module:

```
bin/magento setup:upgrade
bin/magento setup:di:compile
bin/magento setup:static-content:deploy
bin/magento cache:clean
```

### Manual Installation

[](#manual-installation)

Go to your Adobe Commerce (Magento 2) root directory.

1. Download the latest release from the [GitHub repository](https://github.com/MONEI/MONEI-AdobeCommerce-Magento2/releases)
2. Extract the contents to your `app/code/Monei/MoneiPayment` directory
3. Install the MONEI PHP SDK:

```
composer require monei/monei-php-sdk:^2.8.3
```

4. Go to your Adobe Commerce (Magento 2) root directory and run:

```
bin/magento module:enable Monei_MoneiPayment
bin/magento setup:upgrade
bin/magento setup:di:compile
bin/magento setup:static-content:deploy
bin/magento cache:clean
```

Alternatively, you can use this one-line command to download and extract the latest release:

```
curl -L https://github.com/MONEI/MONEI-AdobeCommerce-Magento2/releases/latest/download/monei-module-monei-payment.zip -o monei.zip && \
mkdir -p app/code/Monei/MoneiPayment && \
unzip monei.zip -d app/code/Monei/MoneiPayment && \
rm monei.zip
```

### Bitnami Installation

[](#bitnami-installation)

If you're running Magento on a Bitnami server, you'll need to use the `magento-cli` tool instead of the regular `magento` command. Follow these steps:

1. First, install the module using one of the methods above (Composer or Manual)
2. Navigate to your Magento installation directory:

```
cd ~/stack/magento
```

3. Run the required commands using `magento-cli`:

```
sudo bin/magento-cli module:enable Monei_MoneiPayment
sudo bin/magento-cli setup:upgrade
sudo bin/magento-cli setup:di:compile
sudo bin/magento-cli setup:static-content:deploy
sudo bin/magento-cli cache:clean
```

Note: The `magento-cli` tool is provided by Bitnami to handle permissions and ownership issues correctly in their server setup.

### Before You Begin

[](#before-you-begin)

When testing your integration:

- Use your [test mode](https://docs.monei.com/docs/testing) API Key from [MONEI Dashboard → Settings → API Access](https://dashboard.monei.com/settings/api)
- Check the status of test payments in your [MONEI Dashboard → Payments](https://dashboard.monei.com/payments) (in test mode)

###  Health Score

44

—

FairBetter than 92% of packages

Maintenance58

Moderate activity, may be stable

Popularity22

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 75.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~28 days

Recently: every ~76 days

Total

42

Last Release

115d ago

Major Versions

1.4.2 → 2.0.02025-03-18

PHP version history (2 changes)v1.0.0PHP ^7.4.0

v1.1.0PHP ^8.1.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/8593aa2d2e50a4159fd92c60c331daad9b37dd0baaf71ebcf6e2d6423884d4ff?d=identicon)[dmitriy\_nevzorov](/maintainers/dmitriy_nevzorov)

![](https://www.gravatar.com/avatar/c32d0fa858b59a8ae39d6c8470ab6e8ae9f604bfae91f08c25a4ee3e9d05ee91?d=identicon)[MONEI](/maintainers/MONEI)

---

Top Contributors

[![jimmyn](https://avatars.githubusercontent.com/u/5391775?v=4)](https://github.com/jimmyn "jimmyn (374 commits)")[![moneimagento](https://avatars.githubusercontent.com/u/151738054?v=4)](https://github.com/moneimagento "moneimagento (59 commits)")[![jcuervas](https://avatars.githubusercontent.com/u/11786008?v=4)](https://github.com/jcuervas "jcuervas (54 commits)")[![alexandresaiz](https://avatars.githubusercontent.com/u/239624?v=4)](https://github.com/alexandresaiz "alexandresaiz (4 commits)")[![microapps-machine-user](https://avatars.githubusercontent.com/u/58481260?v=4)](https://github.com/microapps-machine-user "microapps-machine-user (2 commits)")[![mrodespin](https://avatars.githubusercontent.com/u/31536387?v=4)](https://github.com/mrodespin "mrodespin (1 commits)")

---

Tags

magentomagento-extensionmagento2magento2-modulemoneimonei-apimonei-paymentspaymentmodulemonei

### Embed Badge

![Health badge](/badges/monei-module-monei-payment/health.svg)

```
[![Health](https://phpackages.com/badges/monei-module-monei-payment/health.svg)](https://phpackages.com/packages/monei-module-monei-payment)
```

###  Alternatives

[mollie/magento2

Mollie Payment Module for Magento 2

1121.6M10](/packages/mollie-magento2)[pagbank/payment-magento

PagBank - Payment for Magento and Adobe

2128.3k7](/packages/pagbank-payment-magento)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
