Skip to content

Releases: mollie/laravel-mollie

Release v2.13.0

03 Dec 09:54
2387a0e
Compare
Choose a tag to compare
  • Added support for php 8 (Thanks @ciungulete !)
  • Added paymentRefunds endpoint, for directly accessing refunds.
  • Switched CI to GitHub Actions (Thanks @ciungulete !)

Release v2.12.0

30 Nov 14:28
cf1648d
Compare
Choose a tag to compare
  • Added the paymentRefund endpoint for accessing refunds directly without retrieving the payment first

Release v2.11.0

08 Sep 17:05
Compare
Choose a tag to compare
  • Added support for Laravel 8 🎉
  • Dropped support for Laravel 5.8

Release v2.10.0

18 May 07:55
6083771
Compare
Choose a tag to compare

@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([/*...*/]);

Release v2.9.0

05 Mar 14:41
8ba80f3
Compare
Choose a tag to compare

Added Laravel 7 support (thanks @madeITBelgium)

Release v2.8.0

20 Sep 12:31
71905c3
Compare
Choose a tag to compare

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.

Release v2.7.1

16 Sep 10:15
bfb2de0
Compare
Choose a tag to compare
  • Following the official Laravel guidelines, mollie/laravel-mollie this release drops support for Laravel versions prior to 5.8.
  • Fixed a Laravel 6.0 compatibility issue in the Mollie Socialite provider (#110).

Release v2.7.0

04 Sep 08:19
Compare
Choose a tag to compare

Support for Laravel version 6 - thanks to @vdbelt .

Release v2.6.0

24 Apr 14:45
7599520
Compare
Choose a tag to compare

Added support for the new Onboarding Endpoint, which you can use to check the Onboarding status of the authenticated organization.

Learn more about the Onboarding Endpoint here.

Release v2.5.0

03 Mar 19:19
db674de
Compare
Choose a tag to compare

If you're integrating this package within another package, this one is for you.

Added a method to record the User Agent (UA) string when calling the Mollie API:

mollie()->addVersionString('YourPackage/1.2.1').