PHPackages                             toluxsys/laravel-budpay - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Payment Processing](/categories/payments)
4. /
5. toluxsys/laravel-budpay

ActiveLibrary[Payment Processing](/categories/payments)

toluxsys/laravel-budpay
=======================

A Laravel Package for Budpay

03PHP

Since Sep 6Pushed 1y ago1 watchersCompare

[ Source](https://github.com/toluxsys/laravel-budpay)[ Packagist](https://packagist.org/packages/toluxsys/laravel-budpay)[ RSS](/packages/toluxsys-laravel-budpay/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

laravel-Budpay
==============

[](#laravel-budpay)

[![Latest Stable Version](https://camo.githubusercontent.com/e7b7fbdbac71bea5958ff89464049fcaccd4689e86ee46b41df30a2cb49a03fd/68747470733a2f2f706f7365722e707567782e6f72672f746f6c75787379732f6c61726176656c2d4275647061792f762f737461626c652e737667)](https://packagist.org/packages/toluxsys/laravel-Budpay)[![License](https://camo.githubusercontent.com/6a1e546e5285f9767d98f7ec9a9847e9713c800b4599713756ab398a12458f95/68747470733a2f2f706f7365722e707567782e6f72672f746f6c75787379732f6c61726176656c2d4275647061792f6c6963656e73652e737667)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/6eec8e9e89b4f100a922f996acafb2318e545ed230ce19b90fc4cdc002d523fb/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f746f6c75787379732f6c61726176656c2d4275647061792e737667)](https://travis-ci.org/toluxsys/laravel-Budpay)[![Quality Score](https://camo.githubusercontent.com/97597cb206ce79d8310a20979c31d252007f5e67b8b602225861ccb8414f264f/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f746f6c75787379732f6c61726176656c2d4275647061792e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/toluxsys/laravel-Budpay)[![Total Downloads](https://camo.githubusercontent.com/dfe863131ac6c0d08b2b35def1d4f9df8ec1c1439fe1456a87034a4dcc16677f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f746f6c75787379732f6c61726176656c2d4275647061792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/toluxsys/laravel-Budpay)

> A Laravel Package for working with Budpay seamlessly

Installation
------------

[](#installation)

[PHP](https://php.net) 5.4+ or [HHVM](http://hhvm.com) 3.3+, and [Composer](https://getcomposer.org) are required.

To get the latest version of Laravel Budpay, simply require it

```
composer require toluxsys/laravel-Budpay
```

Or add the following line to the require block of your `composer.json` file.

```
"toluxsys/laravel-Budpay": "1.0.*"

```

You'll then need to run `composer install` or `composer update` to download it and have the autoloader updated.

Once Laravel Budpay is installed, you need to register the service provider. Open up `config/app.php` and add the following to the `providers` key.

```
'providers' => [
    ...
    toluxsys\Budpay\BudpayServiceProvider::class,
    ...
]
```

> If you use **Laravel &gt;= 5.5** you can skip this step and go to [**`configuration`**](https://github.com/toluxsys/laravel-Budpay#configuration)

- `toluxsys\Budpay\BudpayServiceProvider::class`

Also, register the Facade like so:

```
'aliases' => [
    ...
    'Budpay' => toluxsys\Budpay\Facades\Budpay::class,
    ...
]
```

Configuration
-------------

[](#configuration)

You can publish the configuration file using this command:

```
php artisan vendor:publish --provider="toluxsys\Budpay\BudpayServiceProvider"
```

A configuration-file named `Budpay.php` with some sensible defaults will be placed in your `config` directory:

```
