PackageTrack
Sign in Get early access

mollie/laravel-mollie

Mollie API client wrapper for Laravel & Mollie Connect provider for Laravel Socialite

v4.1.0 4.8M downloads/mo #1764 most downloaded on Packagist mollie/laravel-mollie

What this package is like to depend on

Last release 5 months ago

22 Mar 2026

Release timing varies

gaps range from 8 days to 11 months

Rarely documented

notes for 9 of 52 stable releases

Nothing withdrawn

no release was ever pulled

10 years old

54 releases · first in 2016

4 releases in the last 12 months

see the full history below

Release timeline

54 releases · May 2016 to Mar 2026
2017 2018 2019 2020 2021 2022 2023 2024 2025 2026
Release Pre-release

Releases

latest 54
  1. v4.1.0 22 Mar 2026
    Release notes

    What's Changed

    • Use setToken for universal API key and access token support by @Naoray in #259
    • Add Laravel 13 compatibility by @Naoray in #262

    Full Changelog: v4.0.2...v4.1.0

    Open source →
    Release notes

    What's Changed

    • Use setToken for universal API key and access token support by @Naoray in https://github.com/mollie/laravel-mollie/pull/259
    • Add Laravel 13 compatibility by @Naoray in https://github.com/mollie/laravel-mollie/pull/262

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

    Open source →
  2. v4.0.2 15 Jan 2026
    Release notes

    What's Changed

    • Fix/257 include query parameters in request uri by @Naoray in #258

    Full Changelog: v4.0.1...v4.0.2

    Open source →
    Release notes

    What's Changed

    • Fix/257 include query parameters in request uri by @Naoray in https://github.com/mollie/laravel-mollie/pull/258

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

    Open source →
  3. v4.0.1 15 Jan 2026
    Release notes

    What's Changed

    • fix: remove DeferrableProvider implementation by @Naoray in #256

    Full Changelog: v4.0.0...v4.0.1

    Open source →
    Release notes

    What's Changed

    • fix: remove DeferrableProvider implementation by @Naoray in https://github.com/mollie/laravel-mollie/pull/256

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

    Open source →
  4. v4.0.0 08 Jan 2026
    Release notes

    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 #252
    • fix version vars by @sandervanhooft in #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: v3.1.0...v4.0.0

    Open source →
    Release notes

    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

    This release leverages the V2 mollie-api-php client.

    Open source →
  5. v3.1.0 19 Feb 2025
    Release notes

    What's Changed

    New Contributors

    Full Changelog: v3.0.0...v3.1.0

    Open source →
  6. v3.0.0 17 Mar 2024
    Release notes

    What's Changed

    • Implemented PHP 8.3 compatibility in CI tests, courtesy of @jnoordsij.
    • Added support for Laravel v11, thanks to @Naoray's contribution.
    • Updated the license from BSD to MIT.
    • Discontinued support for PHP 8.0.
    • Discontinued Lumen support.
    • Removed the global mollie() helper method.

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

    Full Changelog: v2.25.0...v3.0.0

    Open source →
  7. v2.25.0 31 Jul 2023
    Release notes

    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: v2.24.0...v2.25.0

    Open source →
  8. v2.24.0 31 Jul 2023
    Release notes

    What's Changed

    New Contributors

    Full Changelog: v2.23.0...v2.24.0

    Open source →
  9. v2.24.0-beta 27 Jun 2023 pre-release
    Release notes

    What's Changed

    Full Changelog: v2.23.0...v2.24.0-beta

    Open source →
  10. v2.23.0 09 May 2023
    Release notes

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

    What's Changed

    Full Changelog: v2.22.0...v2.23.0

    Open source →
  11. v2.22.0 16 Feb 2023

    Nothing published for this version

  12. v2.21.1 15 Dec 2022

    Nothing published for this version

  13. v2.21.0 13 Dec 2022

    Nothing published for this version

  14. v2.20.2 06 Dec 2022

    Nothing published for this version

  15. v2.20.1 05 Dec 2022

    Nothing published for this version

  16. v2.20.0 05 Dec 2022

    Nothing published for this version

  17. v2.19.2 13 Sep 2022

    Nothing published for this version

  18. v2.19.1 11 Jul 2022

    Nothing published for this version

  19. v2.19.0 17 Feb 2022

    Nothing published for this version

  20. v2.18.0 31 Jan 2022

    Nothing published for this version

  21. v2.17.0 18 Jan 2022

    Nothing published for this version

  22. v2.16.0 02 Nov 2021

    Nothing published for this version

  23. v2.15.0 28 Jun 2021

    Nothing published for this version

  24. v2.14.0 19 Jan 2021

    Nothing published for this version

  25. v2.13.0 03 Dec 2020

    Nothing published for this version

  26. v2.12.0 30 Nov 2020

    Nothing published for this version

  27. v2.11.0 08 Sep 2020

    Nothing published for this version

  28. v2.10.0 18 May 2020

    Nothing published for this version

  29. v2.9.0 05 Mar 2020

    Nothing published for this version

  30. v2.8.0 20 Sep 2019

    Nothing published for this version

  31. v2.7.1 16 Sep 2019

    Nothing published for this version

  32. v2.7.0 04 Sep 2019

    Nothing published for this version

  33. v2.6.0 24 Apr 2019

    Nothing published for this version

  34. v2.5.0 03 Mar 2019

    Nothing published for this version

  35. v2.4.1 03 Dec 2018

    Nothing published for this version

  36. v2.4.0 22 Nov 2018

    Nothing published for this version

  37. v2.3.1 10 Nov 2018

    Nothing published for this version

  38. v2.3.0 04 Oct 2018

    Nothing published for this version

  39. v2.2.0 18 Sep 2018

    Nothing published for this version

  40. v2.1.0 30 Jul 2018

    Nothing published for this version

  41. v2.0.0 09 Jul 2018

    Nothing published for this version

  42. v2.0.0-beta1 02 Jul 2018 pre-release

    Nothing published for this version

  43. v1.5.1 12 Sep 2017

    Nothing published for this version

  44. v1.5.0 31 Mar 2017

    Nothing published for this version

  45. v1.4.2 07 Feb 2017

    Nothing published for this version

  46. v1.4.1 26 Jan 2017

    Nothing published for this version

  47. 1.3.0 10 Aug 2016

    Nothing published for this version

  48. 1.2.1 04 Aug 2016

    Nothing published for this version

  49. 1.2.0 16 Jun 2016

    Nothing published for this version

  50. 1.1.3 25 May 2016

    Nothing published for this version

  51. 1.1.2 18 May 2016

    Nothing published for this version

  52. 1.1.1 11 May 2016

    Nothing published for this version

  53. 1.1.0 10 May 2016

    Nothing published for this version

  54. 1.0.0 03 May 2016

    Nothing published for this version

Every package, every release, already written down.

The archive is open and free. Watching your own project is what we are building next.

Browse the archive