Download the PHP package drrepo/larafort without Composer
On this page you can find all versions of the php package drrepo/larafort. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Informations about the package larafort
Larafort Package
Larafort
provides a simple and rich way to perform and handle operations for
Payfort
(MEA based online payment gateway) check here to read more Payfort.
This package supports a set of Payfort
operations as listed below, other operations are open for future work and
contribution.
- AUTHORIZATION/PURCHASE
- TOKENIZATION
- SDK_TOKEN
- CHECK_STATUS
You have to read the Payfort
documentation very well before proceeding in using any package, the package author
will not write about Payfort
operations, what and how to use.
Install
You can install Larafort
package to your laravel project via composer command:
Configuration
For Laravel < 5.5 (Package Auto Discovery : Skip the following two step for laravel 5.5+ )
After installing the Larafort
library, register the LaravelPayfort\Providers\PayfortServiceProvider
in your config/app.php
configuration file:
Also, add the Payfort
facade to the aliases
array in your app
configuration file:
After that, run the following command to publish the configurations file:
This will create a new config file named payfort.php
in config
folder. Then you have to add the following
constants in the .env
file, you can find most of these values in your Payfort
account.
Basic Usage
Once all configuration steps are done, you are ready to use payfort operations in your app. Here is some examples on how to use this package:
Authorization/Purchase request (Redirection)
To display payfort authorization or purchase page, in your controller's method add the following code snippet:
Other optional parameters that can be passed to displayRedirectionPage
method as follows:
- token_name
- payment_option
- sadad_olp
- eci
- order_description
- customer_ip
- customer_name
- merchant_extra
- merchant_extra1
- merchant_extra2
- merchant_extra3
Payfort
page will be displayed and once user submits the payment form, the return url defined in the environment
configurations will be called.
See Payfort
documentation for more info.
Tokenization request
To display payfort tokenization page, in your controller's method add the following code snippet:
Payfort
page will be displayed and once user submits the payment form, the return url defined in the config file
will be called.
See Payfort
documentation for more info.
Handling Payfort Authorization/Purchase response
Handling callback (return)
In your handling controller that handle the return url, you can simply use the PayfortResponse
trait as follows:
See Payfort
documentation for more info.
Handling Direct Transaction Feedback
Same as handling payfort response except that you have to call handlePayfortFeedback
instead of handlePayfortCallback
License
Larafort
is open-sourced software licensed under the MIT license
All versions of larafort with dependencies
illuminate/support Version *
nesbot/carbon Version ^2.30.0
guzzlehttp/guzzle Version ~5.0|~6.0|~7.0