Payyo Gateway for the Omnipay PHP payment processing library.
Omnipay is a framework agnostic, multi-gateway payment processing library for PHP 5.3+.
The Payyo Omnipay library requires PHP 7.0+.
Omnipay can be installed using Composer. Installation instructions.
Run the following command to install omnipay and the Payyo gateway:
composer require digitickets/omnipay-payyo
The following parameters are required:
apiKeyYour Payyo API/public keysecretKeyYour Payyo secret keymerchantIdYour Payyo merchant ID
$gateway = Omnipay::create('Payyo');
$gateway->setApiKey('api_...');
$gateway->setSecretKey('sec_...');
$gateway->setMerchantId('1234');
$gateway->setTestMode(true);
// Send purchase request
$response = $gateway->purchase([
'transactionId' => '123456',
'description' => '1x Book',
'amount' => '10.00',
'currency' => 'USD',
'paymentMethods' => ['credit_card'],
'returnUrl' => 'https://example.org/success',
'cancelUrl' => 'https://example.org/abort',
])->send();
// This is a redirect gateway, so redirect right away
$response->redirect();- purchase() calls
paymentPage.initialize, then you should redirect - completePurchase() calls
transaction.getNextActionand (if necessary)transaction.capture
- authorize() calls
paymentPage.initialize, then you should redirect - completeAuthorize() calls
transaction.getDetails - capture() calls
transaction.getNextActionand (if necessary)transaction.capture
- void() calls
transaction.void - refund() calls
transaction.refund
You can run docker-compose up and then go to http://localhost:8086/ to make a test payment against the Sandbox.