PHPackages                             softcommerce/omnipay-paytrace - 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. softcommerce/omnipay-paytrace

AbandonedLibrary[Payment Processing](/categories/payments)

softcommerce/omnipay-paytrace
=============================

PayTrace gateway for the Omnipay payment processing library

v1.2.1(8y ago)444.2k11[2 issues](https://github.com/iddqdidkfa/omnipay-paytrace/issues)MITPHP

Since Aug 11Pushed 8y ago1 watchersCompare

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

READMEChangelog (5)Dependencies (2)Versions (6)Used By (0)

Omnipay: PayTrace
=================

[](#omnipay-paytrace)

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

[![Build Status](https://camo.githubusercontent.com/73ac09586874d77f8312593b3fc4fa7ac2fbf146b99e996b3bbc2168f83175ea/68747470733a2f2f7472617669732d63692e6f72672f696464716469646b66612f6f6d6e697061792d70617974726163652e706e673f6272616e63683d6d6173746572)](https://travis-ci.org/iddqdidkfa/omnipay-paytrace)[![Latest Stable Version](https://camo.githubusercontent.com/2e6fc7e6acaf55baecc4f9a54388435c2a986ffafd8c2cea9f31d4c10f4659cc/68747470733a2f2f706f7365722e707567782e6f72672f736f6674636f6d6d657263652f6f6d6e697061792d70617974726163652f76657273696f6e2e706e67)](https://packagist.org/packages/softcommerce/omnipay-paytrace)[![Total Downloads](https://camo.githubusercontent.com/0dc00617721b2b0f6a695b8ddde33899392f358584e60101d551dce0e005dc79/68747470733a2f2f706f7365722e707567782e6f72672f736f6674636f6d6d657263652f6f6d6e697061792d70617974726163652f642f746f74616c2e706e67)](https://packagist.org/packages/softcommerce/omnipay-paytrace)

[Omnipay](https://github.com/thephpleague/omnipay) is a framework agnostic, multi-gateway payment processing library for PHP 5.3+. This package implements [PayTrace](https://www.paytrace.net) support for Omnipay.

This package require PHP 5.4+

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

[](#installation)

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

```
{
    "require": {
        "softcommerce/omnipay-paytrace": "~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:

- Paytrace\_CreditCard
- Paytrace\_Check

Usage Example:

```
$ccGateway = \Omnipay\Omnipay::create('Paytrace_CreditCard');
$ccGateway->setUserName('demo123')
	->setPassword('demo123')
	->setTestMode(true);

$creditCardData = ['number' => '4242424242424242', 'expiryMonth' => '6', 'expiryYear' => '2016', 'cvv' => '123'];
$response = $ccGateway->purchase(['amount' => '10.00', 'currency' => 'USD', 'card' => $creditCardData])->send();

if ($response->isSuccessful()) {
	// SUCCESS
    echo $response->getMessage();
} else {
	// FAIL
    echo $response->getMessage();
}

$chGateWay = \Omnipay\Omnipay::create('Paytrace_Check');
$chGateway->setUserName('demo123')
	->setPassword('demo123')
	->setTestMode(true);

$checkData = ['routingNumber' => '325070760', 'bankAccount' => '1234567890', 'name' => 'John Doe'];
$response = $chGateway->purchase(['amount' => '10.00', 'currency' => 'USD', 'check' => $checkData])->send();

if ($response->isSuccessful()) {
	// SUCCESS
    echo $response->getMessage();
} else {
	// FAIL
    echo $response->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 announcements, 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/iddqdidkfa/omnipay-paytrace/issues), or better yet, fork the library and submit a pull request.

###  Health Score

34

—

LowBetter than 77% of packages

Maintenance10

Infrequent updates — may be unmaintained

Popularity31

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

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 ~186 days

Total

5

Last Release

3180d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1221268?v=4)[Dylan Hart](/maintainers/exec)[@exec](https://github.com/exec)

---

Top Contributors

[![zmonteca](https://avatars.githubusercontent.com/u/1678976?v=4)](https://github.com/zmonteca "zmonteca (7 commits)")[![iddqdidkfa](https://avatars.githubusercontent.com/u/1819727?v=4)](https://github.com/iddqdidkfa "iddqdidkfa (5 commits)")[![KnightAR](https://avatars.githubusercontent.com/u/195225?v=4)](https://github.com/KnightAR "KnightAR (4 commits)")

---

Tags

paymentgatewaymerchantomnipaypaytrace

### Embed Badge

![Health badge](/badges/softcommerce-omnipay-paytrace/health.svg)

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

###  Alternatives

[lokielse/omnipay-alipay

Alipay gateway for Omnipay payment processing library

587421.0k11](/packages/lokielse-omnipay-alipay)[sudiptpa/omnipay-nabtransact

National Australia Bank (NAB) Transact driver for the Omnipay payment processing library.

1017.2k](/packages/sudiptpa-omnipay-nabtransact)[lucassmacedo/omnipay-mercadopago

MercadoPago gateway for OmniPay

154.6k](/packages/lucassmacedo-omnipay-mercadopago)

PHPackages © 2026

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