ebanx/benjamin-local

EBANX Pay's API library for local payments

1.22.4 2021-03-10 17:57 UTC

README

Build Status Latest Stable Version Total Downloads License

This is the repository for business rules as of implemented by merchant sites for use in e-commerce platform plugins. The objective is to be a central repository for services and to communicate with the EBANX Local API (also known as "Pay Local").

Getting Started

It is very simple to use Benjamin. You will only need an instance of Ebanx\Benjamin\Models\Configs\Config and an instance of Ebanx\Benjamin\Models\Payment:

<?php

require_once __DIR__ . '/vendor/autoload.php';

use Ebanx\Benjamin\Models\Configs\Config;
use Ebanx\Benjamin\Models\Payment;

$config = new Config([
    'integrationKey' => 'YOUR_INTEGRATION_KEY',
    'sandboxIntegrationKey' => 'YOUR_SANDBOX_INTEGRATION_KEY'
]);

$payment = new Payment([
    //Payment properties(see wiki)
]);

$result = EBANX($config)->create($payment);

If you want more information you can check the Wiki.