PHP code example of gauravjain028 / omnipay-ameria
1. Go to this page and download the library: Download gauravjain028/omnipay-ameria library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
gauravjain028 / omnipay-ameria example snippets
use Omnipay\Omnipay;
$gateway = Omnipay::create('Ameria');
$gateway->setClientId(env('AMERIA_CLIENT_ID'));
$gateway->setUsername(env('AMERIA_USERNAME'));
$gateway->setPassword(env('AMERIA_PASSWORD'));
$gateway->setReturnUrl(env('AMERIA_RETURN_URL')); // Return url, that should be point to your ameria webhook route
$gateway->setLanguage(\App::getLocale()); // Language
$gateway->setAmount(10); // Amount to charge
$gateway->setTransactionId(XXXX); // Transaction ID from your system
$gateway = Omnipay::create('Ameria');
$gateway->setUsername(env('AMERIA_USERNAME'));
$gateway->setPassword(env('AMERIA_PASSWORD'));
$purchase = $gateway->completePurchase()->send();
// Do the rest with $purchase and response with 'OK'
if ($purchase->isSuccessful()) {
// Your logic
}
return new Response('OK');
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.