Releases: mollie/laravel-mollie
Release v2.13.0
- 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
- Added the
paymentRefund
endpoint for accessing refunds directly without retrieving the payment first
Release v2.11.0
- Added support for Laravel 8 🎉
- Dropped support for Laravel 5.8
Release 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([/*...*/]);
Release v2.9.0
Added Laravel 7 support (thanks @madeITBelgium)
Release 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.
Release v2.7.1
- 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
Support for Laravel version 6 - thanks to @vdbelt .
Release v2.6.0
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
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')
.