adman9000 / laravelkraken
This package is abandoned and no longer maintained.
The author suggests using the adman9000/laravel-kraken package instead.
Kraken.com Trading API integration for Laravel
v0.1
2018-04-29 10:35 UTC
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2022-02-01 13:09:35 UTC
README
Laravel implementation of the Kraken crypto exchange trading API
Install
Install via Composer
composer require adman9000/laravel-kraken
Utilises autoloading in Laravel 5.5+. For older versions add the following lines to your config/app.php
'providers' => [ ... adman9000\kraken\KrakenServiceProvider::class, ... ], 'aliases' => [ ... 'Kraken' => adman9000\kraken\KrakenAPIFacade::class, ],
Features
Price tickers, balances, trades, deposits and withdrawals
Notes
Kraken API is quite unreliable. If the endpoint is down it returns a json encode error, retrying will sometimes work.