PHPackages                             pipedev/lazerpay - 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. pipedev/lazerpay

ActiveLibrary[Payment Processing](/categories/payments)

pipedev/lazerpay
================

laravel sdk for lazerpay

3043PHP

Since Aug 7Pushed 3y ago3 watchersCompare

[ Source](https://github.com/pipethedev/lazerpay-laravelsdk)[ Packagist](https://packagist.org/packages/pipedev/lazerpay)[ RSS](/packages/pipedev-lazerpay/feed)WikiDiscussions main Synced 1w ago

READMEChangelogDependenciesVersions (2)Used By (0)

 [![](https://camo.githubusercontent.com/c5bbc90fe24b33e290908f5a3aab62c262630de29e0563365af579f3acbaf258/68747470733a2f2f692e6962622e636f2f6b677171394a702f696d6167652e706e67 "Termii")](https://camo.githubusercontent.com/c5bbc90fe24b33e290908f5a3aab62c262630de29e0563365af579f3acbaf258/68747470733a2f2f692e6962622e636f2f6b677171394a702f696d6167652e706e67)

Lazerpay Laravel Package
------------------------

[](#lazerpay-laravel-package)

pipedev/lazerpay is a laravel sdk package that access to laravel api

[![Total Downloads](https://camo.githubusercontent.com/a4f3ad84b4c904ad2fd51ed0d99f7a3444eee9841580bf543d60fa3c1ee0592f/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7a656576782f6c6172612d7465726d69692e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/pipedev/lazerpay)

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

[](#installation)

[PHP](https://php.net) 5.4+ and [Composer](https://getcomposer.org) are required.

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

```
composer require pipedev/lazerpay
```

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

```
"pipedev/lazerpay": "*"

```

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

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

```
'providers' => [
    ...
    Pipedev\Lazerpay\LazerPayServiceProvider::class,
    ...
]
```

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

- `Pipedev\Lazerpay\LazerPayServiceProvider::class`

Also, register the Facade like so:

```
'aliases' => [
    ...
    'Lazerpay' => Pipedev\Lazerpay\Facades\LazerpayFacade::class,
    ...
]
```

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

[](#configuration)

You can publish the configuration file using this command:

```
php artisan vendor:publish --provider="Pipedev\Lazerpay\LazerPayServiceProvider" --tag="lazerpay"
```

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

```
