Skip to content

Repository files navigation

tripay-sdk-php

Unofficial TriPay.co.id Integration Kit for PHP

releaselanguagelicensesizedownloadspulls

Requirements

  • PHP v7.2.5+
  • PHP JSON Extension
  • PHP cURL Extension

Installation

  1. Run command
composer require zerosdev/tripay-sdk-php

Usage

<?phprequire'path/to/your/vendor/autoload.php';
useZerosDev\TriPay\ClientasTriPayClient;
useZerosDev\TriPay\Support\Constant;
useZerosDev\TriPay\Support\Helper;
useZerosDev\TriPay\Transaction;
$merchantCode = 'T12345';
$apiKey = 'd1cfd***********888ed3';
$privateKey = 'd1cfd***********888ed3';
$mode = Constant::MODE_DEVELOPMENT;
$guzzleOptions = []; // Your additional Guzzle options (https://docs.guzzlephp.org/en/stable/request-options.html)$client = newTriPayClient($merchantCode, $apiKey, $privateKey, $mode, $guzzleOptions);
$transaction = newTransaction($client);
/** * `amount` will be calculated automatically from order items * so you don't have to enter it * In this example, amount will be 40.000 */$result = $transaction
->addOrderItem('Gula', 10000, 1)
->addOrderItem('Kopi', 6000, 5)
->create([
'method' => 'BRIVA',
'merchant_ref' => 'INV123',
'customer_name' => 'Nama Pelanggan',
'customer_email' => 'email@konsumen.id',
'customer_phone' => '081234567890',
'expired_time' => Helper::makeTimestamp('6 HOUR'), // see Supported Time Units
]);
echo$result->getBody()->getContents();
/*** For debugging purpose*/$debugs = $client->debugs();
echojson_encode($debugs, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);

Please check the /examples for the other examples

Supported Time Units

❗ All time units are in a singular noun

  • SECOND
  • MINUTE
  • HOUR
  • DAY

About

Unofficial TriPay.co.id Integration Kit for PHP

Resources

Stars

15 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages