Introduction

This is a PHP library that serves as a wrapper for the SNAP API BI. It is fully compatible with Composer.

Bank Support

php-snap-bi currently support for this bank :

Bank
Method
Support

BCA

bca

YES. Check here for available function

Mandiri

mandiri

YES. Check here for available function

DANA

dana

YES. Check here for available function

BRI

bri

YES. Check here for available function

Next, you will need a method from this bank support to use php-snap-bi. The method from this table will be useful as follows :

Make request

// Use for Config class
Config::bca([]);
Config::mandiri([]);
Config::bri([]);
// or
Config::for("bca");
Config::for("mandiri");
Config::for("bri");

// Use for SnapBi class
SnapBi::bca();
SnapBi::mandiri();
SnapBi::bri();
// or
SnapBi::for("bca")
SnapBi::for("mandiri")
SnapBi::for("bri")

Last updated