php-binance-api icon indicating copy to clipboard operation
php-binance-api copied to clipboard

how can I use this package in laravel?

Open ghost opened this issue 4 years ago • 2 comments

Hi how can I use this package in laravel? I have installed it by composer in my Laravel project composer.json


        "jaggedsoft/php-binance-api": "^0.5.26",

and in mu controller when I use this command it is not working

<?php
namespace App\Http\Controllers;
use jaggedsoft/php-binance-api;

ghost avatar Jun 29 '21 12:06 ghost

https://github.com/Chico3001/BinanceAPI its based on Laravel

qant avatar Jul 27 '21 11:07 qant

To give you an idea.

Composer require jaggedsoft/php-binance-api
use Binance;
 // new instance
$api = new Binance\API(
    your key,
    your password
);

// allow override
$api->caOverride = true;

wesly1988 avatar Aug 14 '21 23:08 wesly1988