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

Abandoned → [sylius/mollie-plugin](/?search=sylius%2Fmollie-plugin)Sylius-plugin[Payment Processing](/categories/payments)

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

Mollie payment plugin for Sylius applications.

v5.7.5(1y ago)6156.8k—10%16[6 issues](https://github.com/mollie/Sylius/issues)MITPHPPHP ^7.4 || ^8.0

Since May 5Pushed 1y ago7 watchersCompare

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

READMEChangelog (10)Dependencies (37)Versions (73)Used By (0)

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

[](#)

### This plugin is discontinued.

[](#this-plugin-is-discontinued)

This Plugin is now maintained by Sylius. Please use the Mollie Plugin offered on the Sylius Namespace (). You can find the new package here: sylius/mollie-plugin ()

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.

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.2 || ^8.0ext-json: \*mollie/mollie-api-php^2.0sylius/admin-order-creation-plugin^0.12 || ^0.13 || v0.14sylius/refund-plugin^1.0sylius/sylius~1.9.0 || ~1.10.0 || ~1.11.0 || ~1.12.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

47

—

FairBetter than 94% of packages

Maintenance25

Infrequent updates — may be unmaintained

Popularity40

Moderate usage in the ecosystem

Community27

Small or concentrated contributor base

Maturity83

Battle-tested with a long release history

 Bus Factor4

4 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

Every ~48 days

Recently: every ~22 days

Total

51

Last Release

480d ago

Major Versions

v1.0.1 → v2.0.02018-06-04

v2.1.2 → v3.0.02020-05-13

3.6.0 → v4.0.0-beta.12022-02-16

v4.0.1 → v5.0.02023-05-10

PHP version history (5 changes)v1.0.0PHP ^7.1

v2.1.0PHP ^7.2

v3.3.5PHP ^7.3

v3.4.0-beta.1PHP ^7.4 || ^8.0

v4.0.0PHP ^8.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/6184158?v=4)[Robbert Schreuder Hes](/maintainers/mollierobbert)[@mollierobbert](https://github.com/mollierobbert)

---

Top Contributors

[![daniel8702](https://avatars.githubusercontent.com/u/6348491?v=4)](https://github.com/daniel8702 "daniel8702 (173 commits)")[![SergejSavic](https://avatars.githubusercontent.com/u/88436584?v=4)](https://github.com/SergejSavic "SergejSavic (84 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 (26 commits)")[![hwysoszynski](https://avatars.githubusercontent.com/u/89980301?v=4)](https://github.com/hwysoszynski "hwysoszynski (24 commits)")[![RyleySill93](https://avatars.githubusercontent.com/u/20671872?v=4)](https://github.com/RyleySill93 "RyleySill93 (21 commits)")[![bitbager](https://avatars.githubusercontent.com/u/28542010?v=4)](https://github.com/bitbager "bitbager (17 commits)")[![MarcinKuklinskiBitBag](https://avatars.githubusercontent.com/u/182501146?v=4)](https://github.com/MarcinKuklinskiBitBag "MarcinKuklinskiBitBag (17 commits)")[![ivan-logeecom](https://avatars.githubusercontent.com/u/40860598?v=4)](https://github.com/ivan-logeecom "ivan-logeecom (15 commits)")[![lukasimovic3](https://avatars.githubusercontent.com/u/101101828?v=4)](https://github.com/lukasimovic3 "lukasimovic3 (13 commits)")[![logeecom](https://avatars.githubusercontent.com/u/20204230?v=4)](https://github.com/logeecom "logeecom (8 commits)")[![brankologeecom](https://avatars.githubusercontent.com/u/97597214?v=4)](https://github.com/brankologeecom "brankologeecom (8 commits)")[![markbeazley](https://avatars.githubusercontent.com/u/17005579?v=4)](https://github.com/markbeazley "markbeazley (7 commits)")[![sebastian-mollie](https://avatars.githubusercontent.com/u/103488530?v=4)](https://github.com/sebastian-mollie "sebastian-mollie (7 commits)")[![DieterHolvoet](https://avatars.githubusercontent.com/u/3606531?v=4)](https://github.com/DieterHolvoet "DieterHolvoet (5 commits)")[![xNordo](https://avatars.githubusercontent.com/u/57177980?v=4)](https://github.com/xNordo "xNordo (4 commits)")[![senghe](https://avatars.githubusercontent.com/u/2512726?v=4)](https://github.com/senghe "senghe (4 commits)")

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan, Psalm

Type Coverage Yes

### Embed Badge

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

```
[![Health](https://phpackages.com/badges/mollie-sylius-plugin/health.svg)](https://phpackages.com/packages/mollie-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)
