php-binance-api
php-binance-api copied to clipboard
how can I use this package in laravel?
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;
https://github.com/Chico3001/BinanceAPI its based on Laravel
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;