klsandbox / Billplz by hamzahjamad

Just another Billplz package for Laravel
287
0
3
Package Data
Maintainer Username: hamzahjamad
Maintainer Contact: ibrahim@klsandbox.com (Ibrahim Abdul Rahim)
Package Create Date: 2017-01-05
Package Last Update: 2017-01-26
Language: PHP
License: MIT
Last Refreshed: 2025-02-06 15:02:01
Package Statistics
Total Downloads: 287
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 3
Total Forks: 0
Total Open Issues: 0

BillPlz Client For Laravel

Build Status

This client is a simple Billplz client that can be used with Laravel 5. You may check their api for full documentation.

How To Use

After installing via composer, simply use it by creating a new object and put the Api key as it argument.

$billplz = new \Klsandbox\BillPlz\BillPlz("Token_here");

To use the Sandbox Mode api, just pass false as a second argument.

$billplz = new \Klsandbox\BillPlz\BillPlz("Token_here" , false);

Create a new collection.

$billplz = new \Klsandbox\BillPlz\BillPlz("Token_here");

$billplz->setCollection(['title'=>'Ahmad Shop']);

Create a new bill.

$billplz = new \Klsandbox\BillPlz\BillPlz("Token_here");

$data = [
        "collection_id" => "some_collection_id",
        "description" => "some_description",
        "name" => "test",
        "email" => "test@example.com",
        "amount" => 300,
        "callback_url" => "https://test.com/test",
        ];        

$billplz->setBill($data);

List of available method

Collection

  • setCollection(array $data)
  • setOpenCollection(array $data)
  • deactivateCollection($collection_id)
  • activateCollection($collection_id)

Bill

  • setBill(array $data)
  • getBill($bill_id)
  • deleteBill($bill_id)

Bank Account

  • verifyAccount($bank_account)

Run Test File

To run the test, create a new secret-env-plain file. In this file, put this two line,

TOKEN=PUT_TOKEN_HERE
BANK_ACC=PUT_BANK_ACCOUNT_HERE

replace the PUT_TOKEN_HERE and PUT_BANK_ACCOUNT_HERE text with the token and bank account you filled on the staging server. The test will run using the staging server api.

Security Vulnerabilities

If you discover a security vulnerability within this BillPlz client, please send an e-mail to Ibrahim Abdul Rahim at ibrahim@klsandbox.com.

License

This client are open-sourced software licensed under the MIT license.