0.5.14
- fixes an issue with subdirectory installations
- you can now influence how your subscription is cancelled with an extender:
/extend.php
return [
(new \Blomstra\Payments\Extend\Subscription)
// Cancel the membership at the end of the period, not immediately
->atPeriodEnd()
// Prorate, see https://stripe.com/docs/billing/subscriptions/prorations
->proRate()
// Invoice now instead of at period end
->invoiceNow(),
Make sure to end with a ,
, you can leave out each entry individually if you need.
];