fd6130/billplz-bundle

Integrate Billplz to your Symfony applications

Installs: 339

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

Type:symfony-bundle

v1.0.3 2022-07-29 03:18 UTC

This package is auto-updated.

Last update: 2024-04-29 04:41:06 UTC


README

This is a billplz payment gateway wrapper for Symfony application.

Installation

composer require fd6130/billplz-bundle

Requirement

  • PHP 7.4+
  • Symfony 4.4+

Configuration

# .env
BILLPLZ_API_KEY=
BILLPLZ_SIGNATURE_KEY=
BILLPLZ_SANDBOX=
BILLPLZ_SANDBOX_API_KEY=
BILLPLZ_SANDBOX_SIGNATURE_KEY=
# /config/packages/fd_billplz.yaml
fd_billplz:
    enable_sandbox: "%env(bool:BILLPLZ_SANDBOX)%" # true or false
    sandbox:
        api_key: "%env(BILLPLZ_SANDBOX_API_KEY)%"
        signature_key: "%env(BILLPLZ_SANDBOX_SIGNATURE_KEY)%"
        collection: # add your bill collection here
            - { name: "", id: ""} # will use when create new bill
    live:
        api_key: "%env(BILLPLZ_API_KEY)%"
        signature_key: "%env(BILLPLZ_SIGNATURE_KEY)%"
        collection:
            - { name: "", id: ""}

Usage

/**
 * Note: if you have set 'enable_sandbox' to true, billplz will use 'sandbox' configuration only.
 */
function createPayment(BillplzInterface $billplz)
{
    /**
     * Assume you have set { name: "product", id: "ae12345"} in collection.
     * 
     * It will get the id from the given name, you don't have to do anything. 
     */
    $response = $billplz->createBill("product", "lorem@ipsum.com", null, "Lorem Ipsum", 100, "https://127.0.0.1/payment/success", "A new product", []);

    // your own logic here...
}