PHPackages                             johnenokyan/omnipay\_ameria - 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. johnenokyan/omnipay\_ameria

ActiveLibrary[Payment Processing](/categories/payments)

johnenokyan/omnipay\_ameria
===========================

AmeriaBank gateway for Omnipay payment processing library

1.1(4y ago)037MITPHP

Since Apr 21Pushed 4y ago1 watchersCompare

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

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

Omnipay: Ameria
===============

[](#omnipay-ameria)

**Ameria bank driver for the Omnipay Laravel payment processing library**

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

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

[](#installation)

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

```
{
    "require": {
        "paymentsistem/omnipay-ameria": "dev-master"
    }
}
```

And run composer to update your dependencies:

```
composer update

```

Or you can simply run

```
composer require paymentsistem/omnipay-ameria

```

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

[](#basic-usage)

1. Use Omnipay gateway class:

```
    use Omnipay\Omnipay;
```

2. Initialize Ameria gateway:

```
     $gateway = Omnipay::create('Ameria');
     $gateway->setClientId(env('clientId'));
     $gateway->setUsername(env('username'));
     $gateway->setPassword(env('password'));
     $gateway->setTestMode('bool');
     $gateway->setLanguage('ameria language');
     $gateway->setDescription('some description');
     $gateway->setAmount(10);  // Amount to charge, for test it should be 10
     $gateway->setTransactionId('XXXX');  // Transaction ID from your system
     ....
```

3. Call purchase, it will automatically redirect to ameria's hosted page

```
     $purchase = $gateway->purchase()->send();
     if ($purchase->isRedirect()) {
         $purchase->redirect();
     }
```

4. Create a webhook controller to handle the callback request at your `RESULT_URL` and catch the webhook as follows

```
    $gateway = Omnipay::create('Ameria');
    $gateway->setClientId(env('clientId'));
    $gateway->setUsername(env('username'));
    $gateway->setPassword(env('password'));

    $purchase = $gateway->completePurchase('paymentID')->send();

    if ($purchase->isSuccessful()) {
        // Your logic
    }

    return new Response('OK');
```

Information
-----------

[](#information)

In this package implemented AmeriaBank integration vPOS 3.0.

API interaction is performed via data exchange through Rest (except administration page: SOAP) .

For more information read ameria Bank documentation.

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

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~57 days

Total

2

Last Release

1789d ago

### Community

Maintainers

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

---

Top Contributors

[![johnenokyan](https://avatars.githubusercontent.com/u/82959856?v=4)](https://github.com/johnenokyan "johnenokyan (4 commits)")

---

Tags

paymentgatewaypaymerchantomnipaypurchaseAmeria

### Embed Badge

![Health badge](/badges/johnenokyan-omnipay-ameria/health.svg)

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

###  Alternatives

[lokielse/omnipay-alipay

Alipay gateway for Omnipay payment processing library

587421.0k11](/packages/lokielse-omnipay-alipay)

PHPackages © 2026

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