PHPackages                             harmonic/ezypay - 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. harmonic/ezypay

ActiveLibrary[Payment Processing](/categories/payments)

harmonic/ezypay
===============

A PHP SDK for the Ezypay v2.0 API

v1.0.11(6y ago)1370MITPHP

Since Jul 15Pushed 6y ago3 watchersCompare

[ Source](https://github.com/Harmonic/Ezypay)[ Packagist](https://packagist.org/packages/harmonic/ezypay)[ Docs](https://github.com/harmonic/ezypay)[ RSS](/packages/harmonic-ezypay/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (10)Dependencies (8)Versions (15)Used By (0)

Ezypay PHP SDK
==============

[](#ezypay-php-sdk)

[![Latest Version on Packagist](https://camo.githubusercontent.com/b17337cfd955b0498ff4ab97ea1cb6b8d913f559e3baebb036e6605f121245b4/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6861726d6f6e69632f657a797061792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/harmonic/ezypay)[![Total Downloads](https://camo.githubusercontent.com/cd2572e651beca6e2888b71212afebd8bf82a7b065b1359ac9d25e81cf2942e1/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6861726d6f6e69632f657a797061792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/harmonic/ezypay)[![Build Status](https://camo.githubusercontent.com/19f93ff911bd6d11865a5a5e91fbbe4e03165e8e9260d88285a5f704a0042387/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6861726d6f6e69632f657a797061792f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/harmonic/ezypay)[![StyleCI](https://camo.githubusercontent.com/8ccd29694b59fc80425a049048d7ab3a45350eff19575b7b7abab33259161df7/68747470733a2f2f7374796c6563692e696f2f7265706f732f3139313136393232362f736869656c64)](https://styleci.io/repos/12345678)

A Laravel/PHP SDK for the Ezypay v2 API. Take a look at [contributing.md](contributing.md) to see a to do list.

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

[](#installation)

### Via Composer

[](#via-composer)

```
$ composer require harmonic/ezypay
```

### Publish config file

[](#publish-config-file)

```
php artisan vendor:publish --provider="harmonic\Ezypay"
```

### Alias

[](#alias)

Optionally add Ezypay alias tp app.php config file:

```
'aliases' => [
	...
	'Ezypay' => harmonic\Ezypay\Facades\Ezypay::class,
```

Usage
-----

[](#usage)

Add Ezypay credentials to your .env file

```
EZY_PAY_WEBHOOK_CLIENT_KEY=YOUR_WEBHOOK_CLIENT_KEY
EZY_PAY_API_URL=https://api-global.ezypay.com
EZY_PAY_USER=your@email.com
EZY_PAY_PASSWORD=YOUR_PASSWORD
EZYPAY_INTEGRATOR_ID=YOUR_INTEGRATOR_ID
EZY_PAY_API_CLIENT_ID=YOUR_CLIENT_ID
EZY_PAY_CLIENT_SECRET=YOUR_SECRET
EZY_PAY_MERCHANT_ID=YOUR_MERCHANT_ID

```

All Ezypay API methods are availble via the Ezypay facade.

Simply call

```
Ezypay::methodName

```

Where methodName is any method from eg. createCustomer(), getCustomers()

Testing Facade
--------------

[](#testing-facade)

There is a testing facade available for your tests that will return fake data. In your tests:

```
use harmonic\Ezypay\Facades\Ezypay;

...

Ezypay::fake();
```

Then use Ezypay facade as normal.

Change log
----------

[](#change-log)

Please see the [changelog](changelog.md) for more information on what has changed recently.

Tests
-----

[](#tests)

Add a .env file containing your Ezypay details, then:

```
$ vendor/bin/phpunit
```

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

[](#contributing)

Please see [contributing.md](contributing.md) for details and a todolist.

Security
--------

[](#security)

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

Credits
-------

[](#credits)

- [Craig Harman](https://github.com/harmonic)
- [All Contributors](../../contributors)

License
-------

[](#license)

MIT. Please see the [license file](license.md) for more information.

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity66

Established project with proven stability

 Bus Factor1

Top contributor holds 87.5% 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 ~5 days

Total

12

Last Release

2438d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8861aca590339e178dcfe71ffefc138b28d3a21d0a6f98a9f3f498940382f512?d=identicon)[craigharman](/maintainers/craigharman)

---

Top Contributors

[![aljaym](https://avatars.githubusercontent.com/u/47496779?v=4)](https://github.com/aljaym "aljaym (7 commits)")[![anthonys-harmonic](https://avatars.githubusercontent.com/u/17037336?v=4)](https://github.com/anthonys-harmonic "anthonys-harmonic (1 commits)")

---

Tags

laravelEzypay

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/harmonic-ezypay/health.svg)

```
[![Health](https://phpackages.com/badges/harmonic-ezypay/health.svg)](https://phpackages.com/packages/harmonic-ezypay)
```

###  Alternatives

[sebdesign/laravel-viva-payments

A Laravel package for integrating the Viva Payments gateway

4845.9k](/packages/sebdesign-laravel-viva-payments)[luigel/laravel-paymongo

A laravel wrapper for Paymongo API

7956.2k1](/packages/luigel-laravel-paymongo)[musahmusah/laravel-multipayment-gateways

A Laravel Package that makes implementation of multiple payment Gateways endpoints and webhooks seamless

852.2k1](/packages/musahmusah-laravel-multipayment-gateways)[henryejemuta/laravel-monnify

A laravel package to seamlessly integrate monnify api within your laravel application

132.1k](/packages/henryejemuta-laravel-monnify)

PHPackages © 2026

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