PHP code example of kurniajigunawan / faspay-omnipay
1. Go to this page and download the library: Download kurniajigunawan/faspay-omnipay 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/ */
kurniajigunawan / faspay-omnipay example snippets
$gateway = new DebitGateway();
$gateway->setMerchantId('YOUR_MERCHANT_ID');
$gateway->setMerchant('YOUR_MERCHANT');
$gateway->setProductionMode(true);
$gateway->setPassword('YOUR_PASSWORD');
$gateway->setUserId('YOUR_USER_ID');
$channel = $gateway->channel();
$channel->setRequest('Daftar Payment Channel');
$channel->setSignature();
$channel->send();