PHPackages                             nuvocode/nuvo-payment-sdk - 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. nuvocode/nuvo-payment-sdk

ActiveLibrary[Payment Processing](/categories/payments)

nuvocode/nuvo-payment-sdk
=========================

PHP SDK for Nuvo Payment API

v1.0.0(6mo ago)01MITPHPPHP &gt;=8.1

Since Oct 24Pushed 6mo agoCompare

[ Source](https://github.com/Nuvo-Code/nuvo-payment-sdk)[ Packagist](https://packagist.org/packages/nuvocode/nuvo-payment-sdk)[ RSS](/packages/nuvocode-nuvo-payment-sdk/feed)WikiDiscussions master Synced 1mo ago

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

Nuvo Payment SDK
================

[](#nuvo-payment-sdk)

A simple PHP SDK for the Nuvo Payment API.

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

[](#installation)

```
composer require nuvocode/nuvo-payment-sdk
```

Setup
-----

[](#setup)

Copy `.env.example` to `.env` and add your credentials:

```
NUVO_PAYMENT_BASE_URL=https://api.sample-payment.com
NUVO_CLIENT_ID=your-client-id
NUVO_CLIENT_SECRET=your-client-secret
```

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

[](#quick-start)

```
use NuvoPayment\NuvoPayment;

$nuvo = new NuvoPayment();

// Create a payment
$payment = $nuvo->payments->create(49.99, 'USD', [
    'success' => 'https://example.com/success',
    'cancel' => 'https://example.com/cancel'
]);

if (!isset($payment['error'])) {
    header('Location: ' . $payment['redirect_url']);
} else {
    echo "Error: " . $payment['message'];
}

// Get payment status
$status = $nuvo->payments->find('pay_123');
```

API Methods
-----------

[](#api-methods)

### `create(float $amount, string $currency = 'USD', array $redirectUrls = [], array $metadata = [])`

[](#createfloat-amount-string-currency--usd-array-redirecturls---array-metadata--)

Create a new payment and get a redirect URL.

```
$payment = $nuvo->payments->create(
    49.99,
    'USD',
    [
        'success' => 'https://example.com/success',
        'cancel' => 'https://example.com/cancel'
    ],
    ['order_id' => 'ORD-12345']
);
```

### `find(string $paymentId)`

[](#findstring-paymentid)

Retrieve payment details by ID.

```
$status = $nuvo->payments->find('pay_123');
```

Response Format
---------------

[](#response-format)

**Success:**

```
[
    'status' => 'success',
    'payment_id' => 'pay_123',
    'redirect_url' => 'https://checkout.stripe.com/...',
    'provider' => 'stripe'
]
```

**Error:**

```
[
    'error' => true,
    'status' => 401,
    'message' => 'Unauthorized'
]
```

Testing
-------

[](#testing)

```
# Run tests
composer test

# Run with coverage report
composer test-coverage
```

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

[](#requirements)

- PHP &gt;= 8.1
- guzzlehttp/guzzle ^7.0
- vlucas/phpdotenv ^5.5

License
-------

[](#license)

MIT

###  Health Score

32

—

LowBetter than 71% of packages

Maintenance70

Regular maintenance activity

Popularity1

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

 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

197d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/79da0545b9876deec0ba93e476fad55022dc3179a1a49c7e9ff135c98c2ff7bc?d=identicon)[ozerozdas](/maintainers/ozerozdas)

---

Top Contributors

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

---

Tags

payment-orchestrator

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/nuvocode-nuvo-payment-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/nuvocode-nuvo-payment-sdk/health.svg)](https://phpackages.com/packages/nuvocode-nuvo-payment-sdk)
```

###  Alternatives

[imdhemy/google-play-billing

Google Play Billing

491.3M5](/packages/imdhemy-google-play-billing)[bitpay/sdk

Complete version of the PHP library for the new cryptographically secure BitPay API

42337.5k4](/packages/bitpay-sdk)[flutterwavedev/flutterwave-v3

A simple SDK for integrating to Flutterwave Payment

24174.1k6](/packages/flutterwavedev-flutterwave-v3)[buckaroo/sdk

Buckaroo payment SDK

12189.1k8](/packages/buckaroo-sdk)[contica/facturador-electronico-cr

Un facturador de código libre para integrar facturación electrónica en Costa Rica a un proyecto PHP

2128.8k](/packages/contica-facturador-electronico-cr)[mabiola/paystack-php-lib

A PHP Library for https://paystack.co

262.0k](/packages/mabiola-paystack-php-lib)

PHPackages © 2026

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