PHPackages                             landofcoder/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. [Payment Processing](/categories/payments)
4. /
5. landofcoder/omnipay-first-atlantic-commerce

ActiveLibrary[Payment Processing](/categories/payments)

landofcoder/omnipay-first-atlantic-commerce
===========================================

First Atlantic Commerce driver for the Omnipay PHP payment processing library

1.0.1(4y ago)04MITPHPPHP &gt;=5.4

Since Mar 27Pushed 4y agoCompare

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

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

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

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

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

[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:

```
$ php composer.phar require strikewood/omnipay-first-atlantic-commerce:dev-master

```

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

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 82.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 ~351 days

Recently: every ~445 days

Total

8

Last Release

1599d ago

Major Versions

0.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/db448e930f6e4cb8da91a337027d8b11645732d24ede2a46c5844967a395ca1e?d=identicon)[landofcoder](/maintainers/landofcoder)

---

Top Contributors

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

---

Tags

payment processinggatewayomnipayfirst atlantic commercefac

### Embed Badge

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

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

PHPackages © 2026

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