Releases: MusahMusah/laravel-multipayment-gateways
Releases · MusahMusah/laravel-multipayment-gateways
1.7.2
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
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
What's Changed
- Added Support for Laravel ^11
1.6.7
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
What's Changed
- Fixed issue with paystack's
redirectToCheckout
when carrying out transaction method by @MusahMusah - Fixed code styling
1.6.5
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
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
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
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
What's Changed
- Add Support for Flutterwave Gateway by @cybernerdie in #6