armino-dev/binance-connector

Binance API connector for PHP

v0.0.1-alpha 2021-12-23 09:54 UTC

This package is auto-updated.

Last update: 2024-06-09 16:02:09 UTC


README

Build Status

*** Work in progress ***

Usage

Go to your project folder and type in a terminal:

composer require armino-dev/binance-connector

The following is an example php file that is dumping the binance exchange information.

<?php

// uncomment and adjust to your path if needed
// require __DIR__ . "/../vendor/autoload.php";

use Armino\BinanceConnector\Binance\Connector;

$connector = Connector::init('your_api_key', 'your_api_secret');

$exchangeInformation = $connector->market->exchangeInformation();

var_dump($exchangeInformation);