PHPackages                             phuongdev89/omnipay-voguepay - 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. phuongdev89/omnipay-voguepay

ActiveLibrary

phuongdev89/omnipay-voguepay
============================

Omnipay for Voguepay

00PHP

Since Jan 10Pushed 3y agoCompare

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

READMEChangelogDependenciesVersions (1)Used By (0)

Omnipay for Voguepay
====================

[](#omnipay-for-voguepay)

Omnipay for Voguepay

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

[](#installation)

The preferred way to install this extension is through [composer](http://getcomposer.org/download/).

Either run

```
php composer.phar require --prefer-dist phuongdev89/omnipay-voguepay "*"

```

or add

```
"phuongdev89/omnipay-voguepay": "*"

```

to the require section of your `composer.json` file.

Usage
-----

[](#usage)

The following gateways are provided by this package:

- Voguepay

For general usage instructions, please see the main [Omnipay](https://github.com/thephpleague/omnipay)repository.

Example
-------

[](#example)

### Create payment url

[](#create-payment-url)

```
$gateway = Omnipay::create('Voguepay');

$gateway->initialize(array(
    'demo' => true,
    'v_merchant_id' => ''
));

$response = $gateway->payUrl([
    'total' => 10.00,
    'memo' => 'Payment description',
    'cur' => 'USD',
    'merchant_ref' => 'Your payment identity',
])->send();

if ($response->isSuccessful()) {
    $data = $response->getData();
}
```

### Get transaction detail

[](#get-transaction-detail)

```
$gateway = Omnipay::create('Voguepay');

$gateway->initialize(array(
    'demo' => true,
    'v_merchant_id' => ''
));

$response = $gateway->transaction([
    'v_transaction_id' => '9GAS78ETG',
    'type' => 'json',
])->send();

if ($response->isSuccessful()) {
    $data = $response->getData();
}
```

###  Health Score

12

—

LowBetter than 0% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity0

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity23

Early-stage or recently created project

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.

### Community

Maintainers

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

### Embed Badge

![Health badge](/badges/phuongdev89-omnipay-voguepay/health.svg)

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

PHPackages © 2026

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