A laravel package to seamlessly integrate into fluidcoins
You can install the package via composer:
composer require lpmatrix/laravel-fluidcoins
use FluidCoins;
FluidCoins::createNewAddress($data);
Documentation for the library can be found here
composer test
You can publish the configuration file using this command:
php artisan LPMatrix:publish --provider="LPMatrix\FluidCoins\FluidcoinsServiceProvider"
A configuration-file named fluidcoins.php
with some sensible defaults will be placed in your config
directory:
<?php
return [
/**
* Secret Key From Fluidcoins Dashboard
*
*/
'secretKey' => getenv('FLUIDCOINS_SECRET_KEY');
];
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email mubaraqsanusi908@gmail.com instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
This package was generated using the Laravel Package Boilerplate.