PHPackages                             chrisidakwo/flutterwave-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. chrisidakwo/flutterwave-php

ActiveLibrary[Payment Processing](/categories/payments)

chrisidakwo/flutterwave-php
===========================

A PHP client library for Flutterwave payment processing system

0.1.3(4y ago)21.8k21MITPHPPHP ^7.4CI failing

Since Aug 4Pushed 3y ago1 watchersCompare

[ Source](https://github.com/chrisidakwo/flutterwave-php)[ Packagist](https://packagist.org/packages/chrisidakwo/flutterwave-php)[ RSS](/packages/chrisidakwo-flutterwave-php/feed)WikiDiscussions master Synced today

READMEChangelog (2)Dependencies (6)Versions (6)Used By (1)

Flutterwave-PHP
===============

[](#flutterwave-php)

A PHP client for the Flutterwave payment processing system. This is intended for cases where the payment process is initiated from an API server but carried-out by a web application or SPA.

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

[](#installation)

As expected:

```
composer require chrisidakwo/flutterwave-php
```

Usage
-----

[](#usage)

```
use ChrisIdakwo\Flutterwave\Rave;
$secretKey = 'FLW-SECRET-KEY';
$baseUrl = 'https://baseurl.com/v3';
$rave = new Rave($secretKey, $baseUrl);

// To generate a payment link
$requestData = []; // See https://developer.flutterwave.com/docs/flutterwave-standard
$paymentLink = $rave->standardPayment($requestData)['data']['link'];

// To verify a transaction
$transactionID = '123456';
$transaction = $rave->verifyTransaction($transactionID);

$amount = 34000;
$customerEmail = 'customer@email.com';

$isVerified = $transaction->amount === $amount && $transaction->currency === 'NGN'
                && $transaction->customer->email === $customerEmail;

// Refund a transaction
$transactionID = '9408294';
$amount = 300;
$refund = $rave->refundTransaction($transactionID, $amount);
```

Contribution
------------

[](#contribution)

Feel free to make contributions following the existing patterns. If you do, please format your code before creating a PR. This will format all files as specified in `.php_cs`:

```
vendor/bin/php-cs-fixer fix
```

Please write tests and make use of micro commits, that is, you should commit even the slightest change you make. Do not wait till you've written a lot of intertwined implementations before making one commit. Use the rule of one commit to one action. It makes reverting a whole lot easier, and allows one to easily follow through your implementation. Not clear? You can go through the present commit history to understand.

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity49

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

Every ~132 days

Total

4

Last Release

1762d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6f9d8495283ff2495d41150c337c2b0c4791af2de575a80e8e35f174565f6abd?d=identicon)[chrisidakwo](/maintainers/chrisidakwo)

---

Top Contributors

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

---

Tags

flutterwaveflutterwave-apiflutterwave-payment-processingflutterwave-phpflutterwave-raveflutterwave-ravepay-apipayment-gatewaypayment-integrationphpphp-clientravepay

###  Code Quality

TestsPHPUnit

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/chrisidakwo-flutterwave-php/health.svg)

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

###  Alternatives

[laravel/framework

The Laravel Framework.

34.8k543.8M19.9k](/packages/laravel-framework)[tempest/framework

The PHP framework that gets out of your way.

2.2k34.4k14](/packages/tempest-framework)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k656.1k38](/packages/neuron-core-neuron-ai)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3741.3M46](/packages/tencentcloud-tencentcloud-sdk-php)[chargebee/chargebee-php

ChargeBee API client implementation for PHP

758.5M9](/packages/chargebee-chargebee-php)[lion/bundle

Lion-framework configuration and initialization package

122.3k4](/packages/lion-bundle)

PHPackages © 2026

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