Download the PHP package io-digital/payfast without Composer
On this page you can find all versions of the php package io-digital/payfast. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download io-digital/payfast
More information about io-digital/payfast
Files in io-digital/payfast
Package payfast
Short Description Laravel 5 package for processing ITN payments through payfast.co.za
License MIT
Informations about the package payfast
Laravel 5 Payfast
A dead simple Laravel 5 payment processing class for payments through payfast.co.za. This package only supports ITN transactions.
Forked from billowapp/payfast.
This repo adds missing verification steps that are required.
Still in development.
Installation
Add Laravel 5 Payfast to your composer.json
composer require io-digital/payfast
Add the PayfastServiceProvider to your providers array in config/app.php
In your .env
add the following keys:
IMPORTANT: In order to work with the ITN callback reliably, it's suggested to make use of ngrok.
That would make your config/payfast.php
file url's look like:
Config
publish default configuration file.
php artisan vendor:publish
IMPORTANT: You will need to edit App\Http\Middleware\VerifyCsrfToken by adding the route, which handles the ITN response to the $except array. Validation is done via the ITN response.
Usage
Creating a payment returns an html form ready to POST to payfast. When the customer submits the form they will be redirected to payfast to complete payment. Upon successful payment the customer will be returned to the specified 'return_url' and in the case of a cancellation they will be returned to the specified 'cancel_url'
ITN Responses
Payfast will send a POST request to notify the merchant (You) with a status on the transaction. This will allow you to update your order status based on the appropriate status sent back from Payfast. You are not forced to use the key 'm_payment_id' to store your merchant reference but this is the the key that will be returned back to you from Payfast for further verification.
The response variables POSTED back by payfast may be accessed as follows:
Variables Returned by Payfast
Amounts
In the case of an integer, the cart total must be passed through in cents, as follows:
Payment Form
By default the getPaymentForm() method will return a compiled HTML form including a submit button. There are 3 configurations available for the submit button.
To Do's
- Unit Testing
- Add in a Facade Class
- Allow for custom integers/strings
- Curl request to Payfast (validation) -> needs more testing
All versions of payfast with dependencies
illuminate/http Version ^5.1
mathiasverraes/money Version ^1.3