Download the PHP package sevaske/payfort without Composer
On this page you can find all versions of the php package sevaske/payfort. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download sevaske/payfort
More information about sevaske/payfort
Files in sevaske/payfort
Package payfort
Short Description Laravel plugin. Payfort API integration.
License MIT
Homepage https://github.com/sevaske/payfort
Informations about the package payfort
Laravel package for payfort
This Laravel plugin lets you work with the Payfort Payment API and manage multiple merchants easily.
Beta version
Note: This plugin is currently in beta. This means that while it is functional and ready for use, it may still have some bugs or incomplete features. We are actively working on improvements and welcome feedback to help us enhance the plugin.
Requirements
- PHP 8.1+
- Laravel 10+
Installation
You can install the package via composer:
You can publish the config file with:
This is the contents of the published config file (payfort.php):
Add the following lines to your .env
file and set values:
Multiple merchants
You can add new merchants in config/payfort.php.
Usage
Webhook events
This package triggers events that allow developers to handle Payfort webhook data according to their application logic. The events provide all necessary data from the webhook requests, enabling customized handling of feedback and notification events.
Available events
-
PayfortFeedbackReceived
Triggered when feedback data is received from Payfort. This event provides access to the Payfort merchant and data from the webhook request. PayfortNotificationReceived
Triggered when a notification is received from Payfort. It also includes the Payfort merchant and webhook data.
Event data
Each event includes:
getMerchantName()
: The merchant name.getPayload()
: ThePOST
data sent by Payfort in the webhook.getMerchant()
: An instance ofMerchant
containing merchant-specific information.
Setting up event listeners
To handle these events, you need to create listeners in your application and register them in your EventServiceProvider
.
1. Create a listener
Create a custom listener to handle PayfortFeedbackReceived
:
2. Register the listener
In your EventServiceProvider
, map the event to the listener:
Debug mode
Enables debug mode for logging detailed request/response information. You can set the "log_channel".
What to expect
- Feature Set: Some features might be incomplete or subject to change based on user feedback and further development.
- Stability: Although we strive for stability, you may encounter issues or bugs. Please report any problems you find.
- Support: We provide basic support for beta users, but responses might be slower compared to stable releases.
Thank you for trying out our beta version and helping us make it better!
License
The MIT License (MIT). Please see License File for more information.
All versions of payfort with dependencies
spatie/laravel-package-tools Version ^1.16
illuminate/contracts Version ^10.0||^11.0