AbacatePay is a PHP library for integrating with the AbacatePay payment gateway.
Install the library using Composer:
composer require andrefelipe18/abacatepay-php
First, you need to initialize the AbacatePay class with your API token:
require __DIR__ . '/../vendor/autoload.php';
use Andrefelipe18\AbacatePay\AbacatePay;
$abacatePay = new AbacatePay('your_api_token');
You can create a new customer using the create
method:
$customer = $abacatePay->customer()->create(
new \Andrefelipe18\AbacatePay\Models\Customer(
'[email protected]',
'Customer Name',
'+1234567890',
'123456789'
)
);
You can list all customers using the list
method:
$customers = $abacatePay->customer()->list();
To create a new billing, use the create
method:
$billing = $abacatePay->billing()->create(
'ONE_TIME',
['PIX'],
[
new \Andrefelipe18\AbacatePay\Models\Product(
'product_1',
'Product 1',
'Product 1 description',
1,
1000
),
new \Andrefelipe18\AbacatePay\Models\Product(
'product_2',
'Product 2',
'Product 2 description',
1,
2000
),
],
'https://example.com/return',
'https://example.com/completion',
$customer->data->metadata,
);
You can list all billings using the list
method:
$billings = $abacatePay->billing()->list();
Licensed under the MIT license.
Contributions are welcome! Please open an issue or submit a pull request.