Skip to content

LPMatrix/laravel-redbiller

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Laravel Redbiller Package

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 [email protected] 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.