PHPackages                             lemonstand/omnipay-elavon - 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. lemonstand/omnipay-elavon

ActiveLibrary[Payment Processing](/categories/payments)

lemonstand/omnipay-elavon
=========================

Elavon payments driver for the Omnipay payment processing library

v1.1.0(9y ago)85.6k17[2 issues](https://github.com/lemonstand/omnipay-elavon/issues)MITPHP

Since Mar 25Pushed 7y ago15 watchersCompare

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

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

Omnipay: Elavon
===============

[](#omnipay-elavon)

**Elavon payment processing driver for the Omnipay PHP payment processing library**

[![Build Status](https://camo.githubusercontent.com/7b7eef8fc06742e851d1e77628cc8b2b608f7ba49d62d564c3c96d6b992c13f0/68747470733a2f2f7472617669732d63692e6f72672f6c656d6f6e7374616e642f6f6d6e697061792d656c61766f6e2e737667)](https://travis-ci.org/lemonstand/omnipay-elavon) [![Coverage Status](https://camo.githubusercontent.com/3dd3de2e47c1e2a1d6320ae943d2b6fd45ef0b9a83dce881edb149df24d0b241/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6769746875622f6c656d6f6e7374616e642f6f6d6e697061792d656c61766f6e2f62616467652e7376673f6272616e63683d6d6173746572)](https://coveralls.io/github/lemonstand/omnipay-elavon?branch=master) [![Latest Stable Version](https://camo.githubusercontent.com/27f80de4a8c30e629c09574fb54e56af1bc37247de67ced96594458a761df434/68747470733a2f2f706f7365722e707567782e6f72672f6c656d6f6e7374616e642f6f6d6e697061792d656c61766f6e2f762f737461626c652e737667)](https://packagist.org/packages/lemonstand/omnipay-elavon) [![Total Downloads](https://camo.githubusercontent.com/04640435d3d95afc35ea46075eac5ad00fa17810044bf44fd3a500bab8bcfa2a/68747470733a2f2f706f7365722e707567782e6f72672f6c656d6f6e7374616e642f6f6d6e697061792d656c61766f6e2f646f776e6c6f616473)](https://packagist.org/packages/lemonstand/omnipay-elavon)

[Omnipay](https://github.com/thephpleague/omnipay) is a framework agnostic, multi-gateway payment processing library for PHP 5.3+. This package implements Elavon Payments support for Omnipay. Please see the full [Converge documentation](https://www.myvirtualmerchant.com/VirtualMerchant/download/developerGuide.pdf) for more information.

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

[](#installation)

Omnipay is installed via [Composer](http://getcomposer.org/). To install, simply add it to your `composer.json` file:

```
{
    "require": {
        "lemonstand/omnipay-elavon": "~1.0"
    }
}
```

And run composer to update your dependencies:

```
$ curl -s http://getcomposer.org/installer | php
$ php composer.phar update

```

Basic Usage
-----------

[](#basic-usage)

The following gateways are provided by this package:

- Converge

```
    $gateway = Omnipay::create('Elavon_Converge');
    $gateway->setMerchantId('[MERCHANT_ID]');
    $gateway->setUsername('[USER_ID]');
    $gateway->setPassword('[USER_PIN]');

    // Test mode hits the demo endpoint.
    $gateway->setTestMode(true);

    try {
        $params = array(
            'amount'                => 10.00,
            'card'                  => $card,
            'ssl_invoice_number'    => 1,
            'ssl_show_form'         => 'false',
            'ssl_result_format'     => 'ASCII',
        );

        $response = $gateway->purchase($params)->send();

        if ($response->isSuccessful()) {
            // successful
        } else {
            throw new ApplicationException($response->getMessage());
        }
    } catch (ApplicationException $e) {
        throw new ApplicationException($e->getMessage());
    }
```

For general usage instructions, please see the main [Omnipay](https://github.com/thephpleague/omnipay)repository.

Support
-------

[](#support)

If you are having general issues with Omnipay, we suggest posting on [Stack Overflow](http://stackoverflow.com/). Be sure to add the [omnipay tag](http://stackoverflow.com/questions/tagged/omnipay) so it can be easily found.

If you want to keep up to date with release anouncements, discuss ideas for the project, or ask more detailed questions, there is also a [mailing list](https://groups.google.com/forum/#!forum/omnipay) which you can subscribe to.

If you believe you have found a bug, please report it using the [GitHub issue tracker](https://github.com/lemonstand/omnipay-elavon/issues), or better yet, fork the library and submit a pull request.

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance15

Infrequent updates — may be unmaintained

Popularity27

Limited adoption so far

Community19

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 91.7% 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 ~362 days

Total

2

Last Release

3344d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/eb3f3ba8ea2b0d3eee8567205fb16f2bca9fe1e251bf97382952d7728866bf76?d=identicon)[lemonstand](/maintainers/lemonstand)

---

Top Contributors

[![aperdomo](https://avatars.githubusercontent.com/u/3967712?v=4)](https://github.com/aperdomo "aperdomo (22 commits)")[![barrycarrjr](https://avatars.githubusercontent.com/u/19543612?v=4)](https://github.com/barrycarrjr "barrycarrjr (1 commits)")[![garak](https://avatars.githubusercontent.com/u/179866?v=4)](https://github.com/garak "garak (1 commits)")

---

Tags

paymentpaymentsgatewaypaymerchantomnipayelavonconverge

### Embed Badge

![Health badge](/badges/lemonstand-omnipay-elavon/health.svg)

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

PHPackages © 2026

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