PHPackages                             arbory/omnipay-everypay - 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. arbory/omnipay-everypay

ActiveLibrary[Payment Processing](/categories/payments)

arbory/omnipay-everypay
=======================

Every Pay omnipay package

1.2.0(1y ago)02.0k↓60%1MITPHPPHP &gt;=7.2.0

Since Jul 14Pushed 1y agoCompare

[ Source](https://github.com/arbory/omnipay-everypay)[ Packagist](https://packagist.org/packages/arbory/omnipay-everypay)[ Docs](https://github.com/arbory/omnipay-everypay)[ RSS](/packages/arbory-omnipay-everypay/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (7)Versions (5)Used By (0)

EveryPay gateway for Omnipay
============================

[](#everypay-gateway-for-omnipay)

[![Build Status](https://camo.githubusercontent.com/8458e4c04b475501564315dd5644f8d62426131adea1798cea79de925e33f48d/68747470733a2f2f7472617669732d63692e6f72672f6172626f72792f6f6d6e697061792d65766572797061792e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/arbory/omnipay-everypay)[![Coverage Status](https://camo.githubusercontent.com/a22569e98e60073a74bac14bc71dafab784d947f54147299f9e405caa588e677/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6769746875622f6172626f72792f6f6d6e697061792d65766572797061792f62616467652e7376673f6272616e63683d6d6173746572)](https://coveralls.io/github/arbory/omnipay-everypay?branch=master)

Usage
-----

[](#usage)

Require the package using composer:

> composer require arbory/omnipay-everypay

### Initialize the gateway

[](#initialize-the-gateway)

```
$gateway = Omnipay::create('EveryPay')->initialize([
  'username' => '', // EveryPay api username
  'secret' => '', // EveryPay api secret
  'accountName' => '', // merchant account name
  'gatewayUrl' => 'https://igw-demo.every-pay.com/api/v3', // use merchant provided url for production
]);
```

### Process a authorize (Gateway)

[](#process-a-authorize-gateway)

```
$authorize = $gateway
    ->authorize([
      'amount' => '1.28',
      'transactionId' => uniqid(),
      'email' => 'user@example.com',
      'customerIp' => '1.2.3.4',
      'callbackUrl' => 'https://shop.example.com/cart',
      'customerUrl' => 'https://shop.example.com/cart'
    ]);

$response = $authorize->send();

// Gateway transaction reference
$response->getTransactionReference();

return $response->redirect(); // this will call redirect to payment portal
```

### Complete Payment (handle Gateway redirect from EveryPay)

[](#complete-payment-handle-gateway-redirect-from-everypay)

EveryPay will return to your callback url with a `GET` request once the payment is finalized. You need to validate this response and check if the payment succeeded.

```
// Here, pass the payment array that we previously stored when creating the payment
$response = $gateway->completeAuthorize(['transactionReference' => 'foo')->send();

if ($response->isSuccessful()) {
  // Payment succeeded!
}

// Payment succeeded!
// Here's your payment reference number: $response->getTransactionReference()
```

###  Health Score

32

—

LowBetter than 72% of packages

Maintenance36

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 71.4% 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 ~771 days

Total

3

Last Release

592d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/686243?v=4)[Miks Miķelsons](/maintainers/miks)[@miks](https://github.com/miks)

---

Top Contributors

[![miks](https://avatars.githubusercontent.com/u/686243?v=4)](https://github.com/miks "miks (5 commits)")[![sabineabele](https://avatars.githubusercontent.com/u/50020884?v=4)](https://github.com/sabineabele "sabineabele (2 commits)")

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/arbory-omnipay-everypay/health.svg)

```
[![Health](https://phpackages.com/badges/arbory-omnipay-everypay/health.svg)](https://phpackages.com/packages/arbory-omnipay-everypay)
```

###  Alternatives

[league/omnipay

Omnipay payment processing library

6.1k9.7M166](/packages/league-omnipay)[silverstripe/silverstripe-omnipay

SilverStripe Omnipay Payment Module

38106.0k15](/packages/silverstripe-silverstripe-omnipay)

PHPackages © 2026

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