Releases: luigel/laravel-paymongo
Releases · luigel/laravel-paymongo
v2.5.0
What's Changed
- Laravel 11.x Compatibility by @laravel-shift in #95
- Bump http-cache-semantics from 4.1.0 to 4.1.1 in /docs by @dependabot in #86
- Bump ua-parser-js from 0.7.28 to 0.7.33 in /docs by @dependabot in #85
- Bump json5 from 1.0.1 to 1.0.2 in /docs by @dependabot in #84
- Bump express from 4.17.1 to 4.18.2 in /docs by @dependabot in #81
- Bump decode-uri-component from 0.2.0 to 0.2.2 in /docs by @dependabot in #80
- Bump terser from 4.8.0 to 4.8.1 in /docs by @dependabot in #76
- Bump eventsource from 1.1.0 to 1.1.1 in /docs by @dependabot in #75
- Fix unit test by @luigel in #96
New Contributors
- @laravel-shift made their first contribution in #95
Full Changelog: v2.4.0...v2.5.0
v2.4.0
v2.3.0
What's Changed
- Bump cross-fetch from 3.1.4 to 3.1.5 in /docs by @dependabot in #72
- Bump minimist from 1.2.5 to 1.2.6 in /docs by @dependabot in #70
- Bump async from 2.6.3 to 2.6.4 in /docs by @dependabot in #73
- Added: Links and Customers API by @gringiemarfelix in #82
- Apply fixes from StyleCI by @luigel in #83
New Contributors
- @gringiemarfelix made their first contribution in #82
Full Changelog: v2.2.0...v2.3.0
v2.2.0
What's Changed
- Apply fixes from StyleCI by @luigel in #66
- Bump url-parse from 1.5.3 to 1.5.10 in /docs by @dependabot in #64
- Bump prismjs from 1.25.0 to 1.27.0 in /docs by @dependabot in #63
- Bump follow-redirects from 1.14.7 to 1.14.8 in /docs by @dependabot in #61
Added
- Support for Refund API. https://developers.paymongo.com/docs/refunding-transactions
- Fixes issue #65
Full Changelog: v2.1.2...v2.2.0
v2.1.2
What's Changed
- Add support to laravel 9 by @luigel in #60
- Bump nanoid from 3.1.25 to 3.2.0 in /docs by @dependabot in #59
- Bump follow-redirects from 1.14.3 to 1.14.7 in /docs by @dependabot in #58
- Bump shelljs from 0.8.4 to 0.8.5 in /docs by @dependabot in #57
Full Changelog: v2.1.1...v2.1.2
v2.0.0
What's Changed
- Updated the test cases to PestPHP
- Added type hints in the source code.
- Drop PHP versions under 8.0
Full Changelog: v1.4.0...v2.0.0
v1.4.0
What's Changed
- Reintroduce
paymongo.webhook_signature
config by @rdaitan-cp in #37 - Bump prismjs from 1.24.1 to 1.25.0 in /docs by @dependabot in #39
- Add support for paymaya payment intent attach. by @luigel in #44
New Contributors
- @rdaitan-cp made their first contribution in #37
- @dependabot made their first contribution in #39
Full Changelog: v1.3.4...v1.4.0
v1.3.3
v1.3.0
1.3.0 (2020-10-31)
Added
- Added
getData()
for all the models. - It can now access the properties of the data directly. (eg.
$token->id
) - Added magic methods to all the models to get the specific data. Using the
get
prefix for the method.
Example:
// Get the ID of the token.
$id = $token->getId();
// Get the billing details of the payment method.
$paymentMethod->getBilling();
// Get the billing name of the payment method.
$paymentMethod->getBillingName();
- Added artisan commands for webhooks.
# Adding webhook.
php artisan paymongo:webhook
# List webhooks
php artisan paymongo:list-webhooks
# Enable webhook with webhook id
php artisan paymongo:toggle-webhook {webhook_id} --enable
# Disable webhook with webhook id
php artisan paymongo:toggle-webhook {webhook_id} --disable
# Or you can just run paymongo:toggle-webhook and input needed data on runtime.
php artisan paymongo:toggle-webhook
Changed
- Drop support Laravel 5.8