A Laravel Package for working with Redbiller seamlessly
You can install the package via composer:
composer require lpmatrix/laravel-redbillerYou can publish the configuration file using this command:
php artisan LPMatrix:publish --provider="LPMatrix\Redbiller\RedbillerServiceProvider"A configuration-file named redbiller.php with some sensible defaults will be placed in your config directory:
<?php
return [
/**
* Secret Key From Redbiller Dashboard
*
*/
'secretKey' => getenv('REDBILLER_SECRET_KEY');
'paymentUrl' => getenv('REDBILLER_URL');
];composer testFind the documentation for this package here: lpmatrix.github.io/laravel-redbiller/
Please see CHANGELOG for more information what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.
https://github.com/LPMatrix/laravel-redbiller-example
This package was generated using the Laravel Package Boilerplate.