You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Veritrans driver for the Omnipay PHP payment processing library
Omnipay is a framework agnostic, multi-gateway payment
processing library for PHP 5.3+. This package implements Veritrans support for Omnipay.
This is a third party package maintained by the author and community.
If you want to use Veritrans Payment API without Omnipay, we suggest you check out The official PHP wrapper for Veritrans Payment API.
Installation
Omnipay is installed via Composer. To install, simply run:
The following gateways are provided by this package:
VT-Web
<?phprequire_once__DIR__ . '/vendor/autoload.php';
useOmnipay\Omnipay;
useOmnipay\Common\CreditCard;
$gateway = Omnipay::create('Veritrans_VTWeb');
$gateway->setServerKey('server-key-replace-with-yours');
$gateway->setEnvironment('sandbox'); // [production|sandbox] default to production$data = array(
'transactionId' => '123456',
'amount' => '145000.00',
'card' => newCreditCard(),
'vtwebConfiguration' => array(
'credit_card_3d_secure' => true,
),
'currency' => 'IDR',
);
$response = $gateway->purchase($data)->send();
if ($response->isSuccessful()) {
// payment success, update database// using VT-Web, you will always get redirected to offsite (veritrans page)// so here won't be reached.
} elseif ($response->isRedirect()) {
// redirect to offsite payment gateway$response->redirect();
} else {
echo$response->getMessage();
}
For general usage instructions, please see the main Omnipay
repository.
And for more information about Veritrans features, please see Veritrans Documentation
Support
If you are having general issues with Omnipay, we suggest posting on
Stack Overflow. Be sure to add the
omnipay tag so it can be easily found.
If you want to keep up to date with release anouncements, discuss ideas for the project,
or ask more detailed questions, there is also a mailing list which
you can subscribe to.
If you believe you have found a bug, please report it using the GitHub issue tracker,
or better yet, fork the library and submit a pull request.
About
Veritrans driver for the Omnipay PHP payment processing library