Search by

tallieutallieu / dry-mollie

Mollie payment gateway for dry-ecommerce

Maintainers

Package info

github.com/TallieuTallieu/dry-mollie

pkg:composer/tallieutallieu/dry-mollie

Transparency log

Statistics

Installs: 76

Dependents: 0

Suggesters: 0

Stars: 0

3.1.0 2026-09-02 09:47 UTC

README

Mollie payment gateway for dry-ecommerce — the first gateway on that package's payment harness (PaymentGatewayInterface + PaymentWebhook), and the reference shape for new provider packages.

Install

See docs/installation.md. Short version:

composer require tallieutallieu/dry-mollie

with the VCS repositories configured — dry-mollie and dry-ecommerce (^3.10, the release that ships the payment harness) from GitHub, dry from Bitbucket.

Wiring

Three things, all project-side and all documented in docs/gateway.md:

  1. config/mollie.phpapi_key (from the env), redirect_url, webhook_url; and 'payment' => \Tnt\Mollie\MolliePayment::class in config/ecommerce.php.
  2. One webhook route handed to dry-ecommerce's PaymentWebhook.
  3. A return page that reads the order's own payment status.

The gateway dispatches events and never writes payment_status — the dry-ecommerce listeners own that column.