PHPackages                             mollie-logeecom/sylius-plugin - 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. mollie-logeecom/sylius-plugin

ActiveSylius-plugin[Payment Processing](/categories/payments)

mollie-logeecom/sylius-plugin
=============================

Mollie payment plugin for Sylius applications.

1.0(3y ago)05MITPHPPHP ^7.4 || ^8.0

Since May 9Pushed 3y agoCompare

[ Source](https://github.com/logeecom-dev/mollie-sylius-fork)[ Packagist](https://packagist.org/packages/mollie-logeecom/sylius-plugin)[ RSS](/packages/mollie-logeecom-sylius-plugin/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (37)Versions (2)Used By (0)

[![](https://camo.githubusercontent.com/5e82b48d472901c82b0ea8328ebea293ca2f6fa44ca50e20c5797d82550684a6/68747470733a2f2f63646e2e6d6f6c6c69652e636f6d2f6173736574732f6f672d696d6167652d6d6f6c6c69652e706e67)](https://mollie.com/en)
====================================================================================================================================================================================================================================

[](#)

Mollie Payments Plugin for Sylius
=================================

[](#mollie-payments-plugin-for-sylius)

---

Table of Content
----------------

[](#table-of-content)

---

- [Overview](#overview)
- [Support](#we-are-here-to-help)
- [Installation](#installation)
    - [Requirements](#requirements)
    - [Usage](#usage)
    - [Customization](#customization)
    - [Testing](#testing)
    - [Recurring subscription (internal CRON)](doc/recurring.md)
    - [Frontend part](#frontend)
- [Recurring payments](doc/recurring.md)
- [Community](#community)
- [Additional Sylius resources for developers](#additional-resources-for-developers)
- [License](#license)
- [Contact](#contact)

Overview
========

[](#overview)

---

[![Screenshot showing payment methods show in shop](doc/payment_methods_shop.png)](doc/payment_methods_shop.png)

[![Screenshot showing payment methods show in admin](doc/payment_methods_admin.png)](doc/payment_methods_admin.png)

[![Screenshot showing payment method config in admin](doc/payment_method_config.png)](doc/payment_method_config.png)

[Mollie](https://www.mollie.com/) is the most popular and advanced payment gateway integration with Sylius. This plugin is officially certified by Mollie. The integration currently supports the following payment methods:

1. Credit Cards (Master Card, VISA, American Express)
2. PayPal
3. ApplePay
4. Klarna
5. iDEAL
6. SEPA
7. SOFORT
8. EPS
9. Giropay
10. KBC/CBC Payment Button
11. Przelewy24
12. ING Home'Pay
13. Belfius Pay Button
14. Gift cards
15. Apple Pay Direct

Few words from Mollie: Our mission is to create a greater playing field for everyone. By offering convenient, safe world-wide payment solutions we remove barriers so you could focus on growing your business. Being authentic is our baseline.

Mollie is one of Europe's fastest-growing fin-tech companies. We provide a simple payment API, that enables webshop and app builders to implement more than twenty different payment methods in one go. Our packages and plugins are completely open-source, freely available, and easy to integrate into your current project.

Mollie thrives on innovation. When we started we spearheaded the payments industry by introducing effortless payment products that were easier, cheaper, and more flexible than what the rigid, cumbersome banks could do. Now, more than a decade later, trusted by 70.000+ businesses, Mollie is still building innovative products and working hard to make payments better.

We are here to help
-------------------

[](#we-are-here-to-help)

This **open-source plugin was developed to help the Sylius community** and make Mollie payments platform available to any Sylius store. If you have any additional questions, would like help with installing or configuring the plugin or need any assistance with your Sylius project - let us know by sending an email to

Installation
============

[](#installation)

---

### Requirements

[](#requirements)

We work on stable, supported and up-to-date versions of packages. We recommend you to do the same.

PackageVersionPHP^7.2ext-json: \*mollie/mollie-api-php^2.0sylius/admin-order-creation-plugin^0.9.0sylius/refund-plugin^1.0.0-RC.3sylius/sylius^1.7.0---

For the full installation guide please go to [installation](doc/installation.md)

Usage
-----

[](#usage)

---

During configuration first, save the keys to the database and then click "Load methods"

### Rendering Mollie credit card form

[](#rendering-mollie-credit-card-form)

You can use `SyliusMolliePlugin:DirectDebit:_form.html.twig` and `@SyliusMolliePlugin/Grid/Action/cancelSubscriptionMollie.html.twig` templates for adding the form to supplementing the direct debit card data from and cancel the subscription form the Twig UI.

For an example on how to do that, take a look at [these source files](tests/Application/templates/bundles/SyliusShopBundle).

Customization
-------------

[](#customization)

---

##### You can [decorate](https://symfony.com/doc/current/service_container/service_decoration.html) available services and [extend](https://symfony.com/doc/current/form/create_form_type_extension.html) current forms.

[](#you-can-decorate-available-services-and-extend-current-forms)

Run the below command to see what Symfony services are shared with this plugin:

```
$ bin/console debug:container sylius_mollie_plugin

```

Plugin Development
------------------

[](#plugin-development)

---

### Instalation

[](#instalation)

```
$ composer install
$ cd tests/Application
$ yarn install
$ yarn encore dev
$ bin/console assets:install -e test
$ bin/console doctrine:database:create -e test
$ bin/console doctrine:schema:create -e test
$ symfony server:start
$ open http://localhost:8080 // or the port showed in your terminal while runing command with symfony server:start

```

- Also in tests/Application/config/packages/webpack\_encore.yaml, make sure there is such configuration:

```
webpack_encore:
    output_path: '%kernel.project_dir%/public/build/default'
    builds:
        mollie-admin: '%kernel.project_dir%/public/build/mollie-admin'
        mollie-shop: '%kernel.project_dir%/public/build/mollie-shop'

```

- Also make sure you have such configuration in your shop and admin views directory:

```
in: src/Resources/views/Shop/_javascripts.html.twig:

{{ encore_entry_script_tags('shop-entry', null, 'mollie-shop') }}
{{ encore_entry_script_tags('plugin-shop-entry', null, 'mollie-shop') }}

in: src/Resources/views/Shop/_stylesheets.html.twig:
{{ encore_entry_link_tags('shop-entry', null, 'mollie-shop') }}
{{ encore_entry_link_tags('plugin-shop-entry', null, 'mollie-shop') }}

```

```
in: src/Resources/views/Admin/_javascripts.html.twig:
{{ encore_entry_script_tags('admin-entry', null, 'mollie-admin') }}
{{ encore_entry_script_tags('plugin-admin-entry', null, 'mollie-admin') }}

in: src/Resources/views/Admin/_stylesheets.html.twig:
{{ encore_entry_link_tags('admin-entry', null, 'mollie-admin') }}
{{ encore_entry_link_tags('plugin-admin-entry', null, 'mollie-admin') }}

```

### Frontend

[](#frontend)

#### Starting server and building assets

[](#starting-server-and-building-assets)

- Go to `./tests/Application/` directory
- Run `symfony server:start` in terminal. It will start local server.
- Run `yarn watch` in terminal. It will watch your changes in admin and shop catalogs: `../../src/Resources/assets/admin/..`, `../../src/Resources/assets/shop/..`
- Run `yarn dev` in terminal to build your assets once in development mode.
- Run `yarn encore production` in terminal, to build your assets once in production mode - its required before creating every Pull Request.
- All assets (mollie assets + sylius base assets) will be build in:

```
tests/application/public/build/mollie-admin/..
tests/application/public/build/mollie-shop/..

```

#### Rebuilding assets in your root/SRC directory

[](#rebuilding-assets-in-your-rootsrc-directory)

- `bin/console assets:install`

#### CSS &amp; JS files directory you can edit and work with:

[](#css--js-files-directory-you-can-edit-and-work-with)

- Admin: go to `./src/Resources/assets/admin/**/`
- Shop: go to `./src/Resources/assets/shop/**/`

Testing
-------

[](#testing)

```
$ bin/behat
$ bin/phpspec run

```

Community
---------

[](#community)

---

For online communication, we invite you to chat with us &amp; other users on [Sylius Slack](https://sylius-devs.slack.com/).

Additional resources for developers
-----------------------------------

[](#additional-resources-for-developers)

---

To learn more about our contribution workflow and more, we encourage you to use the following resources:

- [Sylius Documentation](https://docs.sylius.com/en/latest/)
- [Sylius Contribution Guide](https://docs.sylius.com/en/latest/contributing/)
- [Sylius Online Course](https://sylius.com/online-course/)

License
-------

[](#license)

---

This plugin's source code is completely free and released under the terms of the MIT license.

Contact
-------

[](#contact)

---

If you want to contact us, the best way is to fill the form on [our website](https://www.mollie.com/en/contact/merchants) or send us an e-mail to  with your question(s). We guarantee that we answer as soon as we can!

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community19

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor3

3 contributors hold 50%+ of commits

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

Unknown

Total

1

Last Release

1099d ago

### Community

Maintainers

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

---

Top Contributors

[![daniel8702](https://avatars.githubusercontent.com/u/6348491?v=4)](https://github.com/daniel8702 "daniel8702 (173 commits)")[![Harvel218](https://avatars.githubusercontent.com/u/59796176?v=4)](https://github.com/Harvel218 "Harvel218 (74 commits)")[![kptLucek](https://avatars.githubusercontent.com/u/6822027?v=4)](https://github.com/kptLucek "kptLucek (56 commits)")[![patrick477](https://avatars.githubusercontent.com/u/21317699?v=4)](https://github.com/patrick477 "patrick477 (50 commits)")[![marekrzytki](https://avatars.githubusercontent.com/u/61479357?v=4)](https://github.com/marekrzytki "marekrzytki (31 commits)")[![Gavric-Sava](https://avatars.githubusercontent.com/u/101103082?v=4)](https://github.com/Gavric-Sava "Gavric-Sava (24 commits)")[![RyleySill93](https://avatars.githubusercontent.com/u/20671872?v=4)](https://github.com/RyleySill93 "RyleySill93 (21 commits)")[![MarcinKuklinskiBitBag](https://avatars.githubusercontent.com/u/182501146?v=4)](https://github.com/MarcinKuklinskiBitBag "MarcinKuklinskiBitBag (17 commits)")[![bitbager](https://avatars.githubusercontent.com/u/28542010?v=4)](https://github.com/bitbager "bitbager (17 commits)")[![brankologeecom](https://avatars.githubusercontent.com/u/97597214?v=4)](https://github.com/brankologeecom "brankologeecom (8 commits)")[![logeecom](https://avatars.githubusercontent.com/u/20204230?v=4)](https://github.com/logeecom "logeecom (7 commits)")[![DieterHolvoet](https://avatars.githubusercontent.com/u/3606531?v=4)](https://github.com/DieterHolvoet "DieterHolvoet (5 commits)")[![senghe](https://avatars.githubusercontent.com/u/2512726?v=4)](https://github.com/senghe "senghe (4 commits)")[![sebastian-mollie](https://avatars.githubusercontent.com/u/103488530?v=4)](https://github.com/sebastian-mollie "sebastian-mollie (4 commits)")[![vvasiloi](https://avatars.githubusercontent.com/u/7114562?v=4)](https://github.com/vvasiloi "vvasiloi (4 commits)")[![xNordo](https://avatars.githubusercontent.com/u/57177980?v=4)](https://github.com/xNordo "xNordo (4 commits)")[![Jeroen-G](https://avatars.githubusercontent.com/u/1116853?v=4)](https://github.com/Jeroen-G "Jeroen-G (3 commits)")[![wimulkeman](https://avatars.githubusercontent.com/u/964346?v=4)](https://github.com/wimulkeman "wimulkeman (2 commits)")[![JoppeDC](https://avatars.githubusercontent.com/u/9723620?v=4)](https://github.com/JoppeDC "JoppeDC (2 commits)")[![tsiwarski](https://avatars.githubusercontent.com/u/63642967?v=4)](https://github.com/tsiwarski "tsiwarski (2 commits)")

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan, Psalm

Type Coverage Yes

### Embed Badge

![Health badge](/badges/mollie-logeecom-sylius-plugin/health.svg)

```
[![Health](https://phpackages.com/badges/mollie-logeecom-sylius-plugin/health.svg)](https://phpackages.com/packages/mollie-logeecom-sylius-plugin)
```

###  Alternatives

[sylius/invoicing-plugin

Invoicing plugin for Sylius.

901.0M2](/packages/sylius-invoicing-plugin)[mollie/laravel-cashier-mollie

Laravel Cashier provides an expressive, fluent interface to Mollie's subscription billing services.

172155.4k1](/packages/mollie-laravel-cashier-mollie)[sylius/paypal-plugin

PayPal plugin for Sylius.

451.4M4](/packages/sylius-paypal-plugin)[duncanmcclean/simple-commerce

A simple, yet powerful e-commerce addon for Statamic.

16313.2k2](/packages/duncanmcclean-simple-commerce)[flux-se/sylius-payum-stripe-plugin

Payum Stripe gateways plugin for Sylius.

61342.2k](/packages/flux-se-sylius-payum-stripe-plugin)[sylius/payment-bundle

Flexible payments system for Symfony e-commerce applications.

22268.0k5](/packages/sylius-payment-bundle)

PHPackages © 2026

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