tallieutallieu / dry-mollie
Mollie payment gateway for dry-ecommerce
3.1.0
2026-09-02 09:47 UTC
Requires
- php: >=8.4
- mollie/mollie-api-php: ^3.13
- tallieutallieu/dry-ecommerce: ^3.10
Requires (Dev)
- pestphp/pest: ^3.8
- phpstan/phpstan: ^2.1
Suggests
None
Provides
None
Conflicts
None
Replaces
None
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:
config/mollie.php—api_key(from the env),redirect_url,webhook_url; and'payment' => \Tnt\Mollie\MolliePayment::classinconfig/ecommerce.php.- One webhook route handed to dry-ecommerce's
PaymentWebhook. - 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.