| Install | |
|---|---|
composer require bummzack/omnipay-postfinance |
|
| Latest Version: | 1.0.1 |
Postfinance Gateway for the Omnipay PHP payment processing library.
Omnipay is a framework agnostic, multi-gateway payment processing library for PHP 5.3+.
This Gateway implements offsite payments via Postfinance. Purchase and Authorization are available, capturing an authorized payment has to be performed via Postfinance backend (not currently implemented for this Gateway).
Please note: This gateway cannot successfully complete your requests if you don't use an SHA-OUT signature. If you don't set the SHA-OUT signature in the Postfinance backend, callback URLs won't be supplied with any parameters, which makes it impossible to determine success or failure of a payment-request.
Omnipay can be installed using Composer. Installation instructions.
Run the following command to install omnipay and the postfinance gateway:
composer require bummzack/omnipay-postfinance ~1.0
This is the easiest way to setup your Postfinance account to work with the Omnipay Gateway:
hashingMethod parameter to the gateway if you're using anything else than the default (sha1)Payment requests to the Postfinance Gateway must at least supply the following parameters:
pspId Your postfinance account IDtransactionId unique transaction IDamount monetary amountcurrency currencylanguage locale code indicating the customer language preference, example: en_USIt is highly recommended to use SHA-IN and -OUT signatures for your requests.
$gateway = Omnipay::create('Postfinance');
$gateway->setPspId('myPspId');
$gateway->setShaIn('MyShaInSecret');
$gateway->setShaOut('MyShaOutSecret');
$gateway->setLanguage('de_DE');
// Send purchase request
$response = $gateway->purchase(
[
'transactionId' => '17',
'amount' => '10.00',
'currency' => 'CHF'
]
)->send();
// This is a redirect gateway, so redirect right away
$response->redirect();