PHPackages                             k3rnel/omnipay-arca - 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. k3rnel/omnipay-arca

ActiveLibrary[Payment Processing](/categories/payments)

k3rnel/omnipay-arca
===================

Arca gateway for Omnipay payment processing library

v1.2.0(2y ago)622.9k↓33.3%3MITPHPPHP ^7.2|8.\*CI passing

Since Dec 29Pushed 1y ago1 watchersCompare

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

READMEChangelog (10)Dependencies (2)Versions (15)Used By (0)

Omnipay: Arca (Armenian Card)
=============================

[](#omnipay-arca-armenian-card)

**Arca driver for the Omnipay Laravel payment processing library**

[![Latest Stable Version](https://camo.githubusercontent.com/57b75ff580112c0c8c0d4bc547b5380e1266918641bd680e6a04d2e1d3b2d6ad/68747470733a2f2f706f7365722e707567782e6f72672f6b33726e656c2f6f6d6e697061792d617263612f76)](https://packagist.org/packages/k3rnel/omnipay-arca) [![Total Downloads](https://camo.githubusercontent.com/c9112cc9d76ca77266af69b8f19f7fbff72750817e1966b1837c54970f41d7e6/68747470733a2f2f706f7365722e707567782e6f72672f6b33726e656c2f6f6d6e697061792d617263612f646f776e6c6f616473)](https://packagist.org/packages/k3rnel/omnipay-arca) [![Latest Unstable Version](https://camo.githubusercontent.com/15dc0dbddb50a2c6c962d57c85396927ff0b372b151f279343cf1d5438a5b9fe/68747470733a2f2f706f7365722e707567782e6f72672f6b33726e656c2f6f6d6e697061792d617263612f762f756e737461626c65)](https://packagist.org/packages/k3rnel/omnipay-arca) [![License](https://camo.githubusercontent.com/4d074b86b457363beedbd4c4f2e932f54112d49b453a7182fdcfb01706aeaa38/68747470733a2f2f706f7365722e707567782e6f72672f6b33726e656c2f6f6d6e697061792d617263612f6c6963656e7365)](https://packagist.org/packages/k3rnel/omnipay-arca) [![PHP Version Require](https://camo.githubusercontent.com/5bd2277405368682bf7d5fa28523a0828b9095cf3f20375a4fbfc2fbd5b15fba/68747470733a2f2f706f7365722e707567782e6f72672f6b33726e656c2f6f6d6e697061792d617263612f726571756972652f706870)](https://packagist.org/packages/k3rnel/omnipay-arca)

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

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

[](#installation)

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

```
{
    "require": {
        "k3rnel/omnipay-arca": "dev-master"
    }
}
```

And run composer to update your dependencies:

```
composer update

```

Or you can simply run

```
composer require k3rnel/omnipay-arca

```

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

[](#basic-usage)

1. Use Omnipay gateway class:

```
    use Omnipay\Omnipay;
```

2. Initialize Arca gateway:

```
    $gateway = Omnipay::create('Arca');
    $gateway->setUsername(env('ARCA_USERNAME'));
    $gateway->setPassword(env('ARCA_PASSWORD'));
    $gateway->setReturnUrl(env('ARCA_RETURN_URL')); // Return url, that should be point to your arca webhook route
    $gateway->setLanguage(\App::getLocale()); // Language
    $gateway->setAmount(10); // Amount to charge
    $gateway->setTransactionId(XXXX); // Transaction ID from your system
```

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

```
    $purchase = $gateway->purchase()->send();
    $purchase->redirect();
```

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

```
    $gateway = Omnipay::create('Arca');
    $gateway->setUsername(env('ARCA_USERNAME'));
    $gateway->setPassword(env('ARCA_PASSWORD'));

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

    // Do the rest with $purchase and response with 'OK'
    if ($purchase->isSuccessful()) {

        // Your logic

    }

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

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](https://stackoverflow.com/). Be sure to add the [omnipay tag](https://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/k3rnel/omnipay-arca/issues), or better yet, fork the library and submit a pull request.

###  Health Score

36

—

LowBetter than 82% of packages

Maintenance34

Infrequent updates — may be unmaintained

Popularity30

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 96.4% 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 ~105 days

Recently: every ~115 days

Total

12

Last Release

805d ago

Major Versions

v0.7 → 1.02022-11-24

v0.6.1 → v1.1.02024-01-10

PHP version history (2 changes)v0.2PHP ^7.1

v0.7PHP ^7.2|8.\*

### Community

Maintainers

![](https://www.gravatar.com/avatar/4d58acc832ecf456890a3a879f7898ac7d52e43434883400fa42a0fd9b368a21?d=identicon)[k3rnel](/maintainers/k3rnel)

---

Top Contributors

[![k3rnel](https://avatars.githubusercontent.com/u/44973047?v=4)](https://github.com/k3rnel "k3rnel (27 commits)")[![gaurav-ucraft](https://avatars.githubusercontent.com/u/59954080?v=4)](https://github.com/gaurav-ucraft "gaurav-ucraft (1 commits)")

---

Tags

paymentgatewaypaymerchantomnipaypurchasearca

### Embed Badge

![Health badge](/badges/k3rnel-omnipay-arca/health.svg)

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

###  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)
