lpmatrix / laravel-redbiller
A laravel package for Redbiller
Requires
- php: ^7.4|^8.0
- illuminate/support: ^8.0|^9.0
Requires (Dev)
- orchestra/testbench: ^6.0|^7.0
- phpunit/phpunit: ^9.0
This package is auto-updated.
Last update: 2024-10-29 06:19:45 UTC
README
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.