asmitta-01/binance-pay

A helper for Binance Pay API in PHP

v1.0.0 2024-03-23 22:15 UTC

This package is auto-updated.

Last update: 2025-03-24 00:29:41 UTC


README

This is a helper to use Binance Pay Api in your php projects.

Installation

composer require asmitta-01/binance-pay-api-php

How to use

require_once 'vendor/autoload.php';

$client = new \BinancePay\C2B(apiKey: $key, secret: $secret);
$response = $client->getWalletBalance();
print_r($response);