Skip to content

Releases: luigel/laravel-paymongo

v2.5.0

09 Apr 01:25
64a2ad2
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.4.0...v2.5.0

v2.4.0

22 May 04:09
1c826da
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.3.0...v2.4.0

v2.3.0

15 Dec 23:29
d218190
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.2.0...v2.3.0

v2.2.0

20 Mar 05:04
7329fd4
Compare
Choose a tag to compare

What's Changed

Added

Full Changelog: v2.1.2...v2.2.0

v2.1.2

23 Jan 00:46
921382e
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.1.1...v2.1.2

v2.0.0

29 Oct 02:45
4b777f9
Compare
Choose a tag to compare

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

20 Oct 14:42
9937e8a
Compare
Choose a tag to compare

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

Full Changelog: v1.3.4...v1.4.0

v1.3.3

26 Mar 12:48
381c55b
Compare
Choose a tag to compare
fixed the incorrect docblock (#32)

v1.3.0

31 Oct 07:34
e8261fc
Compare
Choose a tag to compare

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