lpmatrix/laravel-redbiller

A laravel package for Redbiller

v1.0.0 2022-06-10 17:58 UTC

This package is auto-updated.

Last update: 2024-05-29 05:09:27 UTC


README

Latest Version on Packagist Total Downloads

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.