Skip to content

Releases: MusahMusah/laravel-multipayment-gateways

1.7.2

30 Mar 11:42
Compare
Choose a tag to compare

What's Changed

  • Bump dependabot/fetch-metadata from 1.6.0 to 2.0.0 by @dependabot in #21

Full Changelog: 1.7.1...1.7.2

1.7.1

30 Mar 11:16
Compare
Choose a tag to compare

What's Changed

  • Fix Bug when using stripe Payment Gateway Invalid request (check that your POST content type is application/x-www-form-urlencoded)

Full Changelog: 1.7.0...1.7.1

1.7.0

13 Mar 10:02
Compare
Choose a tag to compare

What's Changed

  • Added Support for Laravel ^11

1.6.7

08 Feb 11:07
Compare
Choose a tag to compare

What's Changed

  • Fixed issue with paystack's response typed when redirecting user to the specified callback_url by @MusahMusah
  • Fixed code styling

1.6.6

03 Jan 15:39
Compare
Choose a tag to compare

What's Changed

  • Fixed issue with paystack's redirectToCheckout when carrying out transaction method by @MusahMusah
  • Fixed code styling

1.6.5

22 Apr 16:37
bc58e63
Compare
Choose a tag to compare

What's Changed

  • Fixed issues with static analysis failing by @MusahMusah
  • Added automated tests for flutterwave service endpoints by @cybernerdie in #10

New Contributor

  • @Adams-Ijachi made their first contribution to the package in #9 which added better coverage to the httpClient Wrapper

1.6.3

13 Apr 21:57
Compare
Choose a tag to compare

What's Changed

  • Updated documentation on how to use the newly added HttpClientWrapper with any of the Payment Gateways.
  • Added all httpClient methods to individual Payment Gateways Facade, this will help IDEs better understand the underlying method signature and structure.

1.6.0

02 Apr 04:02
Compare
Choose a tag to compare

What's Changed

  • Added flutterwave gateway helper to ease usage of all the functionalities available in the flutterwave class.
 flutterwave->anymethod();
  • Optimized codebase with significant refactor

Significant Improvement

Added a HttpClientWrapper to enable making http get, post, put, patch and delete request using dependencies of the desired payment gateways in making such request.
All requests made through the HttpClientWrapper will have access to desired gateway base url, secret key among other dependencies. This change would allow extending the package beyond methods available in a specific gateway class, simply by calling any endpoint from your desired payment gateway api docs with parameters required to make the request should do.
In addition, the HttpClientWrapper is available via helpers, dependency injection and the facade of all payment gateways supported.

Usage

 // Example of making http get request
 paystack()->httpClient()->get('bank');

 // Example of making http post request
 $fields = [
    "email" => "customer@email.com",
     "first_name" => "Zero",
     "last_name" => "Sum",
    "phone" => "+2348123456789"
 ];
 $response = paystack()->httpClient()->post('customer', $fields);
 dd($response);

 // all payment gateways provided by the package can use the httpClient
 $response = Flutterwave::httpClient()->get('/banks/056');
 dd($response);

 $response = stripe()->httpClient()->get('v1/customers/cus_4QFOF3xrvBT2nU');
 dd($response);

1.2.5

26 Mar 09:48
Compare
Choose a tag to compare

What's Changed

  • New documentation page added by @cybernerdie
  • Add custom webhook signature validation by @MusahMusah
  • Additional transaction methods for Paystack Gateway

1.2.0

20 Feb 21:32
c2354f2
Compare
Choose a tag to compare

What's Changed