PHPackages                             rick20/ibanking - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. rick20/ibanking

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

rick20/ibanking
===============

An automatic way to check the balance and received payment in your bank account.

v1.1.1(9y ago)957717[2 issues](https://github.com/rick20/ibanking/issues)PHPPHP &gt;=5.5.9

Since Jul 16Pushed 9y ago3 watchersCompare

[ Source](https://github.com/rick20/ibanking)[ Packagist](https://packagist.org/packages/rick20/ibanking)[ RSS](/packages/rick20-ibanking/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (3)Dependencies (3)Versions (4)Used By (0)

IBanking Package for Laravel 5
==============================

[](#ibanking-package-for-laravel-5)

This package allows you to crawl and parse your bank balance and statement. Currently available for Bank BCA and Bank Mandiri. Inspired by the original [BCA Parser](http://www.randomlog.org/article/bca-parser-lagi/). Thank you yah gan =)

Installation
------------

[](#installation)

To get started with IBanking, run this command or add the package to your `composer.json`

```
composer require rick20/ibanking

```

Configuration
-------------

[](#configuration)

After installing the IBanking package, register the `Rick20\IBanking\IBankingServiceProvider` in your `config/app.php` file. Also, add the `IBanking` facade to the `aliases` array in your `app` configuration file:

```
'IBanking' => Rick20\IBanking\Facades\IBanking::class,
```

Finally add these lines to your `config/services.php` file:

```
'bca' => [
    'username' => 'your-klikbca-username',
    'password' => 'your-klikbca-password'
],
'mandiri' => [
    'username' => 'your-mandiri-username',
    'password' => 'your-mandiri-password'
]
```

How To Use
----------

[](#how-to-use)

After all sets, use the IBanking as follows:

```
$ibank = IBanking::bank('bca');

$ibank->login();

$balance = $ibank->getBalance();

$statement = $ibank->getStatement(3); // mutation within last 3 days. Default: 1 (yesterday)

$ibank->logout();
```

The `logout()` method should be called to avoid single session at a time restriction from the internet banking provider. This means if you don't call the `logout()` method at the end of your codes, you won't be able to login to your internet banking from anywhere until its session expired.

Non-Laravel Usage
-----------------

[](#non-laravel-usage)

You can stil use IBanking without Laravel. This is how:

After running `composer require rick20/ibanking`, create a php file in your project folder and put the following codes

```
require 'vendor/autoload.php';

use Rick20\IBanking\CrawlerParser;
use Rick20\IBanking\Providers\BCAProvider;

$ibank = new BCAProvider(new CrawlerParser(), 'username', 'password');
$ibank->login();
$balance = $ibank->getBalance();
$statement = $ibank->getStatement();
$ibank->logout();

// the rest of your code...
```

Tips &amp; Advice
-----------------

[](#tips--advice)

You can place the above code under the Scheduled Command job (Laravel) and sets it to run [not more than 100x per day](http://www.randomlog.org/article/bca-parser-lagi/#comment-2912). The less you run it per day, the less chances you are being suspended by the internet banking provider. Please make any necessary effort to keep your ibank username and password safe and secure. Changing your password regularly can help to keep it more secure.

Bugs &amp; Improvements
-----------------------

[](#bugs--improvements)

Feel free to report me any bug you found. I would be also very happy to receive pull requests for improvements and for other internet banking provider as well.

###  Health Score

31

—

LowBetter than 66% of packages

Maintenance16

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

3

Last Release

3628d ago

PHP version history (2 changes)v1.0.0PHP &gt;=5.4.0

v1.1.0PHP &gt;=5.5.9

### Community

Maintainers

![](https://www.gravatar.com/avatar/6e7fec185ff90ca8ab547b702291bea3f6541842b69c6fed53787dfe53fefd41?d=identicon)[rick20](/maintainers/rick20)

---

Top Contributors

[![rick20](https://avatars.githubusercontent.com/u/1517180?v=4)](https://github.com/rick20 "rick20 (12 commits)")

### Embed Badge

![Health badge](/badges/rick20-ibanking/health.svg)

```
[![Health](https://phpackages.com/badges/rick20-ibanking/health.svg)](https://phpackages.com/packages/rick20-ibanking)
```

###  Alternatives

[laravel/framework

The Laravel Framework.

34.8k532.1M19.4k](/packages/laravel-framework)[craftcms/cms

Craft CMS

3.6k3.6M2.9k](/packages/craftcms-cms)[pimcore/pimcore

Content &amp; Product Management Framework (CMS/PIM/E-Commerce)

3.8k3.8M462](/packages/pimcore-pimcore)[spatie/laravel-export

Create a static site bundle from a Laravel app

672139.5k6](/packages/spatie-laravel-export)[open-dxp/opendxp

Content &amp; Product Management Framework (CMS/PIM)

9317.2k55](/packages/open-dxp-opendxp)[ashallendesign/favicon-fetcher

A Laravel package for fetching website's favicons.

190293.5k3](/packages/ashallendesign-favicon-fetcher)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
