PHPackages                             bitpiston/omnipay-first-atlantic-commerce - 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. bitpiston/omnipay-first-atlantic-commerce

AbandonedArchivedLibrary

bitpiston/omnipay-first-atlantic-commerce
=========================================

First Atlantic Commerce driver for the Omnipay PHP payment processing library

v1.0.1(8y ago)21183[1 issues](https://github.com/BitPiston/omnipay-first-atlantic-commerce/issues)1MITPHPPHP &gt;=5.4

Since Mar 27Pushed 8y ago1 watchersCompare

[ Source](https://github.com/BitPiston/omnipay-first-atlantic-commerce)[ Packagist](https://packagist.org/packages/bitpiston/omnipay-first-atlantic-commerce)[ Docs](https://github.com/bitpiston/omnipay-first-atlantic-commerce)[ RSS](/packages/bitpiston-omnipay-first-atlantic-commerce/feed)WikiDiscussions master Synced today

READMEChangelog (8)Dependencies (3)Versions (9)Used By (1)

Omnipay: First Atlantic Commerce
================================

[](#omnipay-first-atlantic-commerce)

**First Atlantic Commerce driver for the Omnipay PHP payment processing library**

[![Source Code](https://camo.githubusercontent.com/bb2fc27d21e07fca24e1871531fce50a5bb140a9005f49c651797eddbc7d2c02/687474703a2f2f696d672e736869656c64732e696f2f62616467652f736f757263652d626974706973746f6e2f6f6d6e697061792d2d66697273742d2d61746c616e7469632d2d636f6d6d657263652d626c75652e7376673f7374796c653d666c61742d737175617265)](https://github.com/bitpiston/omnipay-first-atlantic-commerce) [![Latest Version](https://camo.githubusercontent.com/022fe17bfa0e504fd8ca7ba9bc15459cf094fb11a1643b3c24e666cbdc2c2210/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f72656c656173652f626974706973746f6e2f6f6d6e697061792d66697273742d61746c616e7469632d636f6d6d657263652e7376673f7374796c653d666c61742d737175617265)](https://github.com/bitpiston/omnipay-first-atlantic-commerce/releases) [![Software License](https://camo.githubusercontent.com/602fbde7891df5cdc4376f37ea74f6db1c443d27311bc9b9d1f59d32be114269/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f626974706973746f6e2f6f6d6e697061792d66697273742d61746c616e7469632d636f6d6d657263652e7376673f7374796c653d666c61742d737175617265)](https://github.com/bitpiston/omnipay-first-atlantic-commerce/blob/master/LICENSE)

[![Total Downloads](https://camo.githubusercontent.com/693fa61e83e7ef51e564c29e56a627d91b8a4ff6363ffdac7ffc0506a86b8f13/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f626974706973746f6e2f6f6d6e697061792d66697273742d61746c616e7469632d636f6d6d657263652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/bitpiston/omnipay-first-atlantic-commerce/)

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

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

[](#installation)

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

```
$ composer require bitpiston/omnipay-first-atlantic-commerce

```

This package strives to use Semantic Versioning as explained [here](http://semver.org/).

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

[](#basic-usage)

The following gateways are provided by this package:

- FirstAtlanticCommerce

This package implements the following methods:

- `authorize($options)` – authorize an amount on the customer’s card.
- `capture($options)` – capture an amount you have previously authorized.
- `purchase($options)` – authorize and immediately capture an amount on the customer’s card.
- `refund($options)` – refund an already processed (settled) transaction.
- `void($options)` – reverse a previously authorized (unsettled) transaction.
- `status($options)` – check the status of a previous transaction.
- `createCard($options)` – create a stored card and return the reference token for future transactions.
- `updateCard($options)` – update a stored card's expiry or customer reference.

For general usage instructions, please see the [Omnipay documentation](http://omnipay.thephpleague.com/). For information on the parameters needed for each request, see the class documentation for that request in the Message folder.

### Basic Example

[](#basic-example)

```
use Omnipay\Omnipay;

// Setup payment gateway
$gateway = Omnipay::create('FirstAtlanticCommerce');
$gateway->setMerchantId('123456789');
$gateway->setMerchantPassword('abc123');

// Example form data
$formData = [
    'number'      => '4242424242424242',
    'expiryMonth' => '6',
    'expiryYear'  => '2016',
    'cvv'         => '123'
];

// Send purchase request
$response = $gateway->purchase([
    'amount'        => '10.00',
    'currency'      => 'USD',
    'transactionId' => '1234',
    'card'          => $formData
])->send();

// Process response
if ( $response->isSuccessful() )
{
    // Payment was successful
    print_r($response);
}
else
{
    // Payment failed
    echo $response->getMessage();
}
```

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/Strikewood/omnipay-first-atlantic-commerce/issues), or better yet, fork the library and submit a pull request.

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community14

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 97.6% 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 ~161 days

Recently: every ~112 days

Total

8

Last Release

2933d ago

Major Versions

v0.4.0 → v1.0.02017-02-22

PHP version history (2 changes)v0.1PHP &gt;=5.6

v0.2.1PHP &gt;=5.4

### Community

Maintainers

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

---

Top Contributors

[![einkoro](https://avatars.githubusercontent.com/u/1577833?v=4)](https://github.com/einkoro "einkoro (40 commits)")[![dcaswel](https://avatars.githubusercontent.com/u/20131539?v=4)](https://github.com/dcaswel "dcaswel (1 commits)")

---

Tags

composer-packageecommerceomnipaypayment-gatewaypayment-integrationpayment-processingphppayment processinggatewayomnipayfirst atlantic commercefac

### Embed Badge

![Health badge](/badges/bitpiston-omnipay-first-atlantic-commerce/health.svg)

```
[![Health](https://phpackages.com/badges/bitpiston-omnipay-first-atlantic-commerce/health.svg)](https://phpackages.com/packages/bitpiston-omnipay-first-atlantic-commerce)
```

PHPackages © 2026

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