PHPackages                             nelsius/nelsius-pay-php - 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. nelsius/nelsius-pay-php

ActiveLibrary[Payment Processing](/categories/payments)

nelsius/nelsius-pay-php
=======================

Official PHP SDK for the Nelsius pay Developer API

v1.0.3(3mo ago)111MITPHPPHP &gt;=7.4

Since Mar 20Pushed 3mo agoCompare

[ Source](https://github.com/nelson-siebi/nelsius-pay-php)[ Packagist](https://packagist.org/packages/nelsius/nelsius-pay-php)[ RSS](/packages/nelsius-nelsius-pay-php/feed)WikiDiscussions main Synced 3w ago

READMEChangelogDependenciesVersions (3)Used By (0)

Nelsius PHP SDK
===============

[](#nelsius-php-sdk)

Official PHP SDK by Nelson Siebi for the [Nelsius Developer API](https://nelsius.com/docs).

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

[](#installation)

```
composer require nelsius/nelsius-pay-php
```

*Note: For manual installation, require the files in `src/`.*

Quick Start
-----------

[](#quick-start)

```
use Nelsius\NelsiusClient;

$nelsius = new NelsiusClient('your_secret_key', [
    'base_url' => 'https://api.nelsius.com/api/v1',
    'verify_ssl' => false // Set to false for local development (Laragon, WAMP, etc.)
]);

// 1. Get Payment Methods
$methods = $nelsius->charges->methods();

// 2. Create Hosted Checkout Session
$checkout = $nelsius->checkout->createSession([
    'amount' => 5000,
    'currency' => 'XAF',
    'reference' => 'ORDER_12345',
    'description' => 'Purchase Description',
    'return_url' => 'https://your-site.com/success',
    'cancel_url' => 'https://your-site.com/cancel',
    'customer' => [
        'email' => 'customer@example.com',
        'name' => 'Customer Name'
    ]
]);

header('Location: ' . $checkout['data']['checkout_url']);

// 3. Create Direct Charge (Mobile Money)
$charge = $nelsius->charges->create([
    'amount' => 2500,
    'currency' => 'XAF',
    'method' => 'mobile_money',
    'operator' => 'orange',
    'customer_phone' => '690000000',
    'reference' => 'TXN_REF_001'
]);
```

Features
--------

[](#features)

- **Charges**: Direct payment processing (Mobile Money, Crypto, etc.)
- **Checkout**: Hosted payment pages for easier integration.
- **Balance**: Check your merchant account balance programmatically.
- **Payment Methods**: Retrieve supported payment methods dynamically.

License
-------

[](#license)

MIT

###  Health Score

34

—

LowBetter than 75% of packages

Maintenance82

Actively maintained with recent releases

Popularity7

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity35

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

Every ~1 days

Total

2

Last Release

93d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3f5d0c90b7eaeffa195c749d1e91115a73727f30d1765001dbe7c53b2eedc335?d=identicon)[nelsius](/maintainers/nelsius)

---

Top Contributors

[![nelson-siebi](https://avatars.githubusercontent.com/u/245132899?v=4)](https://github.com/nelson-siebi "nelson-siebi (4 commits)")

### Embed Badge

![Health badge](/badges/nelsius-nelsius-pay-php/health.svg)

```
[![Health](https://phpackages.com/badges/nelsius-nelsius-pay-php/health.svg)](https://phpackages.com/packages/nelsius-nelsius-pay-php)
```

###  Alternatives

[omnipay/coinbase

Coinbase driver for the Omnipay payment processing library

18570.2k1](/packages/omnipay-coinbase)

PHPackages © 2026

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