krorten/cryptocomp is a Laravel package for cryptocompare.com api wrapper for laravel 5.5.
It currently has 1 GitHub stars and 69 downloads on Packagist.
Install it with composer require krorten/cryptocomp.
Discover more Laravel packages by krorten
or browse all Laravel packages to compare alternatives.
Last updated
Laravel wrapper using loeken/cryptocompare-api-php-wrapper
Ccryptocomp is a cryptocompare.com api wrapper for Laravel 5.5
composer require krorten/cryptocomp
After installing, register the Kroten\Cryptocomp\Providers\CryptocompProvider in your config/app.php configuration file:
'providers' => [
// Other service providers...
Kroten\Cryptocomp\Providers\CryptocompProvider::class,
],
Also, add the Cryptocomp facade to the aliases array in your app configuration file:
'Cryptocomp' => Kroten\Cryptocomp\Facades\CryptocompFacade::class,
See the API documentation for more information about the endpoints and responses.
Cryptocompare is open-sourced software licensed under the MIT license