lpmatrix / laravel-fluidcoins
Laravel Package to seamlessly integrate with Fluidcoins
Requires
- php: ^7.4|^8.0
- illuminate/support: ^6.0 || ^7.0 || ^8.0|^9.0
Requires (Dev)
- orchestra/testbench: ^6.0
- phpunit/phpunit: ^9.0
This package is auto-updated.
Last update: 2024-10-22 18:56:16 UTC
README
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.