Skip to content

fd6130/billplz-bundle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

billplz-bundle

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", "[email protected]", null, "Lorem Ipsum", 100, "https://127.0.0.1/payment/success", "A new product", []);

    // your own logic here...
}

About

Integrate Billplz to your Symfony applications

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages