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

ActiveLibrary

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 1mo ago

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 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity48

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

1717d 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.6k509.9M17.0k](/packages/laravel-framework)[laravel/dusk

Laravel Dusk provides simple end-to-end testing and browser automation.

1.9k36.7M259](/packages/laravel-dusk)[netflie/whatsapp-cloud-api

The first PHP SDK to send and receive messages using a cloud-hosted version of the WhatsApp Business Platform

640431.7k4](/packages/netflie-whatsapp-cloud-api)[tempest/framework

The PHP framework that gets out of your way.

2.1k23.1k9](/packages/tempest-framework)[saithink/saiadmin

webman plugin

2709.9k1](/packages/saithink-saiadmin)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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