PHPackages                             andskur/coinmc - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. andskur/coinmc

ActiveLibrary[API Development](/categories/api)

andskur/coinmc
==============

CoinMarketCap.com api wrapper for Laravel 5.4

0.5(8y ago)132239MITPHPPHP &gt;=5.5.9

Since May 25Pushed 7y ago2 watchersCompare

[ Source](https://github.com/andskur/CoinMc-laravel)[ Packagist](https://packagist.org/packages/andskur/coinmc)[ Docs](https://github.com/andskur/CoinMc-laravel)[ RSS](/packages/andskur-coinmc/feed)WikiDiscussions master Synced 4d ago

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

CoinMc-laravel
==============

[](#coinmc-laravel)

[![PHP version](https://camo.githubusercontent.com/21fd4e4e93508dc73206a55e660b755898a24e9e27a8f8c5ab34b48b37fa3d75/68747470733a2f2f62616467652e667572792e696f2f70682f616e64736b7572253246636f696e6d632e737667)](https://badge.fury.io/ph/andskur%2Fcoinmc)[![Latest Stable Version](https://camo.githubusercontent.com/e7c8058902619d81c46e31bce7766a4cf0da78a1679c8447117cd0a44ea26ef8/68747470733a2f2f706f7365722e707567782e6f72672f616e64736b75722f636f696e6d632f762f737461626c65)](https://packagist.org/packages/andskur/coinmc)

**CoinMc-laravel** is a sCoinMarketCap.com api wrapper for Laravel 5.4

Install
-------

[](#install)

```
composer require andskur/coinmc

```

### Configuration

[](#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

[](#usage)

```
