laravel-redbiller maintained by lpmatrix
Laravel Redbiller Package
A Laravel Package for working with Redbiller seamlessly
Installation
You can install the package via composer:
composer require lpmatrix/laravel-redbiller
Configuration
You 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');
];
Testing
composer test
Documentation
Find the documentation for this package here: lpmatrix.github.io/laravel-redbiller/
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.
Sample project
https://github.com/LPMatrix/laravel-redbiller-example
Laravel Package Boilerplate
This package was generated using the Laravel Package Boilerplate.