PHPackages                             manifestseerbit/seerbit-laravel - 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. manifestseerbit/seerbit-laravel

ActiveLibrary[Payment Processing](/categories/payments)

manifestseerbit/seerbit-laravel
===============================

SeerBit API Laravel SDK Forked

v1.0.0(2y ago)0925MITHTMLPHP &gt;=7.1.3

Since Mar 20Pushed 2y ago1 watchersCompare

[ Source](https://github.com/johnsonsebire/manifest-seerbit-package-laravel)[ Packagist](https://packagist.org/packages/manifestseerbit/seerbit-laravel)[ Docs](https://github.com/johnsonsebire/manifest-seerbit-package-laravel)[ RSS](/packages/manifestseerbit-seerbit-laravel/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (3)Versions (2)Used By (0)

 [![](https://camo.githubusercontent.com/289797e3276831403592d09b8ea9d41f327041b6853c7f915c904695c5d8b781/68747470733a2f2f7265732e636c6f7564696e6172792e636f6d2f6470656a6b626f66352f696d6167652f75706c6f61642f76313632303332333731382f536565726269745f6c6f676f5f706e675f6464636f72342e706e67)](https://camo.githubusercontent.com/289797e3276831403592d09b8ea9d41f327041b6853c7f915c904695c5d8b781/68747470733a2f2f7265732e636c6f7564696e6172792e636f6d2f6470656a6b626f66352f696d6167652f75706c6f61642f76313632303332333731382f536565726269745f6c6f676f5f706e675f6464636f72342e706e67)

 [![](https://camo.githubusercontent.com/add54281c9fb74f167b2c1f1e13468346d6ef8885dc90eb7036e09b579462947/68747470733a2f2f6c61726176656c2e636f6d2f696d672f6c6f676f6d61726b2e6d696e2e737667)](https://camo.githubusercontent.com/add54281c9fb74f167b2c1f1e13468346d6ef8885dc90eb7036e09b579462947/68747470733a2f2f6c61726176656c2e636f6d2f696d672f6c6f676f6d61726b2e6d696e2e737667) SeerBit
===========================================================================================================================================================================================================================================================================================================================================================================================

[](#-----seerbit)

SeerBit's API SDK for Laravel
=============================

[](#seerbits-api-sdk-for-laravel)

SeerBit PHP SDK for easy integration with SeerBit's API.

Requirements
------------

[](#requirements)

This package can be used with Laravel 5.8 or higher PHP 7.1 or higher

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

[](#installation)

The preferred method is via [composer](https://getcomposer.org). Follow the composer [installation instructions](https://getcomposer.org/doc/00-intro.md) if you do not already have composer installed.

Once composer is installed, execute the following command in your project root to install this library:

```
composer require seerbit/seerbit-laravel
```

The service provider will automatically register itself.

You can publish the config file with:

```
 php artisan vendor:publish --provider="SeerbitLaravel\SeerbitServiceProvider" --tag="config"
```

This is the contents of the config file that will be published to your app's directory path `config/seerbit.php`:

```
return [
    'environment' => env('SEERBIT_ENVIRONMENT', \Seerbit\Environment::LIVE),
    'public_key' => env('SEERBIT_PUBLIC_KEY'),
    'secret_key' => env('SEERBIT_SECRET_KEY'),
    'token' => env('SEERBIT_TOKEN'),
];
```

You can find both public and secret keys from your merchant dashboard.

The token can be generated following the guides [here](https://doc.seerbit.com/getstarted/authentication)

Replace them by changes the key values in your **.env** file.

`SEERBIT_ENVIRONMENT="public_key"`

Usage
-----

[](#usage)

\###Standard checkout

```
namespace App\Http\Controllers;

use SeerbitLaravel\Facades\Seerbit;

class Standard
{
        public function Checkout(){
            try{
            $uuid = bin2hex(random_bytes(6));
            $transaction_ref = strtoupper(trim($uuid));

            $payload = [
                "amount" => "1000",
                "callbackUrl" => "http:yourwebsite.com",
                "country" => "NG",
                "currency" => "NGN",
                "email" => "customer@email.com",
                "paymentReference" => $transaction_ref,
                "productDescription" => "product_description",
                "productId" => "64310880-2708933-427"
            ];

            $trans = seerbit()->Standard()->Initialize($payload);
            //Or with Facade
            $trans = SeerBit::Standard()->Initialize($payload);

        }catch (\Exception $e){
           ;
        }
}
```

Full documentation can be found [**here**](https://seerbit.github.io/seerbit-laravel)

Configure Logger
----------------

[](#configure-logger)

```
//Set Logger path in environment config file
SEERBIT_LOGGER_PATH = ""
```

API Documentation
-----------------

[](#api-documentation)

-

### Changelog

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Contributing
------------

[](#contributing)

We strongly encourage you to join us in contributing to this repository so everyone can benefit from:

- New features and functionality
- Resolved bug fixes and issues
- Any general improvements

### Security

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [Victor Osas Ighalo](https://github.com/victorighalo)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity36

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

789d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/fa703b9d31d7b53b14312c5d72634d9c2c46d27851d8e7da7f6211e3814230c3?d=identicon)[johnsonsebire](/maintainers/johnsonsebire)

---

Top Contributors

[![johnsonsebire](https://avatars.githubusercontent.com/u/27930478?v=4)](https://github.com/johnsonsebire "johnsonsebire (4 commits)")

---

Tags

payment gatewaymanifestseerbitseerbit-laravel

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/manifestseerbit-seerbit-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/manifestseerbit-seerbit-laravel/health.svg)](https://phpackages.com/packages/manifestseerbit-seerbit-laravel)
```

###  Alternatives

[shetabit/payment

Laravel Payment Gateway Integration Package

944330.1k5](/packages/shetabit-payment)[shetabit/multipay

PHP Payment Gateway Integration Package

291348.2k3](/packages/shetabit-multipay)[cybersource/rest-client-php

Client SDK for CyberSource REST APIs

39881.3k6](/packages/cybersource-rest-client-php)[jomweb/billplz

PHP Agnostic library for working with BillPlz API

77199.0k3](/packages/jomweb-billplz)[luigel/laravel-paymongo

A laravel wrapper for Paymongo API

7956.2k1](/packages/luigel-laravel-paymongo)[hexters/coinpayment

CoinPayment is a Laravel module for handling transactions from CoinPayment like a create transaction, history transaction, etc.

7058.0k](/packages/hexters-coinpayment)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
