andskur / coinmc
CoinMarketCap.com api wrapper for Laravel 5.4
0.5
2017-05-25 01:06 UTC
Requires
- php: >=5.5.9
- guzzlehttp/guzzle: ^6.2
- laravel/framework: 5.4.*
This package is not auto-updated.
Last update: 2024-11-24 03:40:21 UTC
README
CoinMc-laravel is a sCoinMarketCap.com api wrapper for Laravel 5.4
Install
composer require andskur/coinmc
Configuration
After installing, register the Andskur\CoinMc\CoinMcServiceProvide
in your config/app.php
configuration file:
'providers' => [ // Other service providers... Andskur\CoinMc\CoinMcServiceProvider::class, ],
Also, add the CoinMc
facade to the aliases
array in your app
configuration file:
'CoinMc' => Andskur\CoinMc\CoinMcFacade::class,
Usage
<?php namespace App\Http\Controllers; use CoinMc; class SomeController extends Controller { public function index(CoinMc $coinmc) { // Get CoinMarketCap tickers sorting by 24h volume $coinmc->getTicker(); // Get ticker for specific coin $coin = 'bitcoin'; $coinmc->tickerCoin($coin); // Get global data $coinmc->globalData(); } }
See the API documentation for more information about the endpoints and responses.
License
CoinMc-laravel is open-sourced software licensed under the MIT license