Releases: zf-fr/zfr-cash
Releases · zf-fr/zfr-cash
v1.2.3
v1.2.2
v1.2.1
v1.2.0
v1.1.1
v1.1.0
Add compatibility with the new 2015-02-18
Stripe API version. This change removes the "card" concept in favour of a more abstract "source" concept. ZfrCash will automatically use the right calls based on your set API version.
This adds a BC if you are using this new version (2015-02-18 or newer), as you need to replace the card
occurrence to source
. For instance, to create a customer with a card, instead of:
$user = $this->customerService->create($user, [
'card' => $cardToken,
]);
use:
$user = $this->customerService->create($user, [
'source' => $cardToken,
]);
v1.0.0
v1.0.0-beta.4
- Updated the
CustomerTrait
to allow null values for Stripe ID. This is useful if you are using a unique user table to hold the Stripe ID, but not all users have a Stripe ID
v1.0.0-beta.3
- Fix mapping
v1.0.0-beta.2
- Add a validator for VIES european codes