Weave Code
Code Weaver
Helps Laravel developers discover, compare, and choose open-source packages. See popularity, security, maintainers, and scores at a glance to make better decisions.
Feedback
Share your thoughts, report bugs, or suggest improvements.
Subject
Message

Laravel Mollie Laravel Package

mollie/laravel-mollie

Laravel integration for Mollie payments. Easily set up the Mollie API client via configuration and service container, handle payments, refunds, and subscriptions, and keep your checkout flow clean with a simple, idiomatic Laravel package.

View on GitHub
Deep Wiki
Context7
v4.1.0

What's Changed

Full Changelog: https://github.com/mollie/laravel-mollie/compare/v4.0.2...v4.1.0

v4.0.2

What's Changed

Full Changelog: https://github.com/mollie/laravel-mollie/compare/v4.0.1...v4.0.2

v4.0.1

What's Changed

Full Changelog: https://github.com/mollie/laravel-mollie/compare/v4.0.0...v4.0.1

v4.0.0

This new version brings you full support for the mollie-api-php v3 SDK, first-class handling for Mollie's new webhook features, and more.

Upgrading from version 3? Check out the complete upgrade guide here.

Added

  • Support for mollie-api-php v3 with typed request objects - you can now use Mollie::send(new CreatePaymentRequest(...)).
  • ValidatesWebhookSignatures middleware for validating incoming webhook signatures.
  • HandleIncomingWebhook controller for processing webhook requests.
  • WebhookDispatcher service that dispatches webhook events (extensible for custom handling strategies).
  • SetupWebhookCommand to automatically configure webhooks via the Mollie API or guide manual setup.
  • Webhook route file (routes/webhook.php) for handling incoming webhooks.
  • Applied updated Adapter Contract to MollieLaravelHttpClientAdapter.

Changed

  • Minimum PHP version is now 8.2.0.
  • Only Laravel 11.x and 12.x are supported.
  • Upgraded to mollie-api-php v3 which includes several breaking changes (see mollie-api-php upgrade guide).
  • Endpoint access changed from methods to properties (e.g., payments() becomes payments).
  • Metadata in API request payloads now only accepts arrays (not strings or objects).
  • Main MollieServiceProvider is now deferred for improved performance.
  • MollieSocialiteServiceProvider is now deferred and only loaded when laravel/socialite is installed.
  • Separated Socialite integration into dedicated service provider (MollieSocialiteServiceProvider).
  • Test on PHP 8.4 and 8.5 by @jnoordsij in https://github.com/mollie/laravel-mollie/pull/252
  • fix version vars by @sandervanhooft in https://github.com/mollie/laravel-mollie/pull/254

Removed

  • Mollie\Laravel\MollieManager class (use Mollie facade instead).
  • mollie() global helper function (use Mollie::api() facade or dependency injection instead).
  • Support for Laravel 10.x and earlier.
  • Support for PHP 8.1 and earlier.

Full Changelog: https://github.com/mollie/laravel-mollie/compare/v3.1.0...v4.0.0

v3.1.0

What's Changed

New Contributors

Full Changelog: https://github.com/mollie/laravel-mollie/compare/v3.0.0...v3.1.0

v3.0.0

What's Changed

For detailed instructions on upgrading from v2.x to v3.0, please consult our UPGRADE.md guide.

Full Changelog: https://github.com/mollie/laravel-mollie/compare/v2.25.0...v3.0.0

v2.25.0

This release enables idempotency methods on the Mollie Laravel client. Note that idempotency is all wired up by default for you, no additional actions required to benefit from this. 🪄

What's Changed

Full Changelog: https://github.com/mollie/laravel-mollie/compare/v2.24.0...v2.25.0

v2.24.0

What's Changed

New Contributors

Full Changelog: https://github.com/mollie/laravel-mollie/compare/v2.23.0...v2.24.0

v2.23.0

This release adds support for Mollie's brand new terminals endpoint.

What's Changed

Full Changelog: https://github.com/mollie/laravel-mollie/compare/v2.22.0...v2.23.0

v2.22.0

🥳 Laravel 10 support has landed.

What's Changed

New Contributors

Full Changelog: https://github.com/mollie/laravel-mollie/compare/v2.21.1...v2.22.0

v2.21.1

What's Changed

Full Changelog: https://github.com/mollie/laravel-mollie/compare/v2.21.0...v2.21.1

v2.21.0

This release adds support for Mollie's shiny new Balance API.

What's Changed

Full Changelog: https://github.com/mollie/laravel-mollie/compare/v2.20.2...v2.21.0

v2.20.1

What's Changed

Full Changelog: https://github.com/mollie/laravel-mollie/compare/v2.20.0...v2.20.1

v2.20.0

:clap: Special thanks to @Skullbock for refactoring to the Laravel Http adapter!

What's Changed

New Contributors

Full Changelog: https://github.com/mollie/laravel-mollie/compare/v2.19.2...v2.20.0

v2.19.2
v2.19.1

What's Changed

New Contributors

Full Changelog: https://github.com/mollie/laravel-mollie/compare/v2.19.0...v2.19.1

v2.19.0

What's Changed

New Contributors

Full Changelog: https://github.com/mollie/laravel-mollie/compare/v2.18.0...v2.19.0

v2.17.0

What's Changed

New Contributors

Full Changelog: https://github.com/mollie/laravel-mollie/compare/v2.16.0...v2.17.0

v2.16.0
  • Added support for php 8.1
  • Dropped support for php < 7.4
  • Dropped support for Laravel 6

Thanks @ciungulete !

v2.15.0

🚀 Mollie introduces Payment Links.

A payment link by default does not expire and can be easily shared with your customers. More information here.

  • Added the mollie()->paymentLinks() endpoint (thanks @ciungulete!)
v2.14.0
  • Added the profileMethods endpoint.

Thanks @ciungulete !

v2.13.0
  • Added support for php 8 (Thanks @ciungulete !)
  • Added paymentRefunds endpoint, for directly accessing refunds.
  • Switched CI to GitHub Actions (Thanks @ciungulete !)
v2.12.0
  • Added the paymentRefund endpoint for accessing refunds directly without retrieving the payment first
v2.11.0
  • Added support for Laravel 8 🎉
  • Dropped support for Laravel 5.8
v2.10.0

@jubeki worked his magic here 🧙.

You can now call endpoints using attributes instead of methods.

This may seem like a small change. But it makes the call signatures consistent with the core Mollie php package. It allows you to copy-paste code samples from the official Mollie documentation.

// This still works
mollie()->payments()->create([/*...*/]);

// You can now also do this
mollie()->payments->create([/*...*/]);
v2.9.0

Added Laravel 7 support (thanks @madeITBelgium)

v2.8.0

Adding support for Mollie's wallet endpoint.

Using the wallet endpoint your customer can pay using Apple Pay directly, without going through Mollie's checkout.

More info here.

Weaver

How can I help you explore Laravel packages today?

Conversation history is not saved when not logged in.
Prompt
Add packages to context
No packages found.
directorytree/privacy-filter-classifier
directorytree/privacy-filter
datacore/hub-sdk
develia/commons
cuci/prototurk-sdk
cuci/prototurk-sdk-symfony
develia/geo-bundle
dreamzy/livewire-charts
touchestate-sdk/php-sdk
22h/doctrine-garbage-collection-bundle
agtp/agtp-php
agtp/mod-php
splash/sonata-admin
splash/metadata
splash/openapi
splash/scopes
splash/toolkit
testo/output-teamcity
testo/bridge-symfony
spatie/flare-daemon-runtime