Skip to content

LPMatrix/laravel-fluidcoins

Repository files navigation

Laravel Fluidcoins

Latest Version on Packagist Total Downloads GitHub Actions

A laravel package to seamlessly integrate into fluidcoins

Installation

You can install the package via composer:

composer require lpmatrix/laravel-fluidcoins

Usage

create a new crypto deposit address

use FluidCoins;

FluidCoins::createNewAddress($data);

Documentation

Documentation for the library can be found here

Testing

composer test

Configuration

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');


];

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email mubaraqsanusi908@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

Laravel Package Boilerplate

This package was generated using the Laravel Package Boilerplate.