PHPackages                             zgabievi/e-money - 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. zgabievi/e-money

AbandonedArchivedLibrary[Payment Processing](/categories/payments)

zgabievi/e-money
================

eMoney Payment System

0.1.0(10y ago)11251[2 PRs](https://github.com/zgabievi/laravel-emoney/pulls)MITPHPPHP &gt;=5.3.0

Since Jan 14Pushed 8y ago2 watchersCompare

[ Source](https://github.com/zgabievi/laravel-emoney)[ Packagist](https://packagist.org/packages/zgabievi/e-money)[ Docs](https://github.com/zgabievi/eMoney)[ RSS](/packages/zgabievi-e-money/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (1)Dependencies (4)Versions (4)Used By (0)

laravel-emoney
==============

[](#laravel-emoney)

> Some great updates are comming soon...

[![Latest Stable Version](https://camo.githubusercontent.com/1941674e413e109cc9f2aab246e77b48e84b64bbd5272440ff12f92a09104de0/68747470733a2f2f706f7365722e707567782e6f72672f7a676162696576692f652d6d6f6e65792f76657273696f6e3f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/zgabievi/e-money) [![Total Downloads](https://camo.githubusercontent.com/2a3c33a0af7a3b55f9654e9c1a1825112465af55ec262b3069fc9f4bab4466cd/68747470733a2f2f706f7365722e707567782e6f72672f7a676162696576692f652d6d6f6e65792f642f746f74616c3f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/zgabievi/e-money) [![License](https://camo.githubusercontent.com/0897302075bc60418164925ce0bf2a674e2d67320e633cad9a1117a4f63b24cb/68747470733a2f2f706f7365722e707567782e6f72672f7a676162696576692f652d6d6f6e65792f6c6963656e73653f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/zgabievi/e-money)

eMoney[![eMoney](https://camo.githubusercontent.com/69d6faa6b217ae7ba8707da6b24485ced441ff2ba903bac5b48b917344052f92/68747470733a2f2f692e696d67736166652e6f72672f666262653163363336662e706e67)](https://github.com/zgabievi/laravel-emoney)eMoney payment system integration for [Laravel 5.\*](http://laravel.com/) 😎 Trying to make it perfect, easy to use and awesome package 🎉 Pull requests are welcome.Table of Contents
-----------------

[](#table-of-contents)

- [Installation](#installation)
    - [Composer](#composer)
    - [Laravel](#laravel)
- [Usage](#usage)
- [Example](#example)
- [Codes](#codes)
- [Config](#config)
- [License](#license)

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

[](#installation)

### Composer

[](#composer)

Run composer command in your terminal.

```
composer require zgabievi/e-money

```

### Laravel

[](#laravel)

Open `config/app.php` and find the `providers` key. Add `eMoneyServiceProvider` to the array.

```
Gabievi\eMoney\eMoneyServiceProvider::class
```

Find the `aliases` key and add `Facade` to the array.

```
'eMoney' => Gabievi\eMoney\eMoneyFacade::class
```

Usage
-----

[](#usage)

There is main method with will call method by first parameter. And it will return the result of the request:

`eMoney::GetResult($method, ...$args);`

Example:

```
return eMoney::GetResult('GetBalance');
```

Outputs:

```
{
  "Code": 1,
  "ExtraInfo": null,
  "ID": "374E9088F2FA45F5ABF411DFE9B06D36",
  "Message": "Success",
  "SystemCode": "OK",
  "Value": {
    "AccountBalance": {
      "Account": 110100015,
      "Balance": "0",
      "Currency": "GEL"
    }
  }
}
```

Behind the scene it does something like this:

```
return (array)eMoney::GetBalance(...$args)->GetBalanceResult;
```

---

This is the list of all methods:

- `GetServiceGroups();`
- `GetServices($group_id);`
- `GetServiceProperties($service_id);`
- `GetServiceParameterReferences($service_parameter_id);`
- `GetInfo($service_id, $parameters);`
- `Pay($service_id, $amount, $currency, $txn_id, $parameters);`
- `GetTransactionDetails($txn_id);`
- `GetTransactionInfo($txn_id);`
- `GetStatement($start_date, $end_date);`
- `GetBalance();`
- `ConfirmPayment($txn_id, $amount, $currency, $parameters);`

Example
-------

[](#example)

```
return eMoney::GetResult('GetStatement', '01/01/2016', '01/14/2016');
```

Outputs:

```
{
  "Code": 1,
  "ExtraInfo": null,
  "ID": "3D3FFA52900E468CA3E3F39CD6819E44",
  "Message": "Success",
  "SystemCode": "OK",
  "Value": {
    "StatementEntry": [
      {
        "Amount": "15",
        "Code": 866730178,
        "Credit": 110100052,
        "Currency": "GEL",
        "Date": "2016-01-12T00:00:00",
        "Debit": 110100015,
        "Description": "12345678910, 02.04.1994, Test #1",
        "ID": 16673017,
        "Status": "Canceled",
        "Type": "Test transaction"
      },
      {
        "Amount": "1",
        "Code": 866730178,
        "Credit": 800000003,
        "Currency": "GEL",
        "Date": "2016-01-12T00:00:00",
        "Debit": 110100015,
        "Description": "Test transaction",
        "ID": 16673019,
        "Status": "Canceled",
        "Type": "Test transaction"
      }
    ]
  }
}
```

Codes
-----

[](#codes)

KeyValueDescription1SuccessOK11UnknownUnknown error12InvalidHashInvalid hash13InvalidParametersSome of the input parameters are invalid14InvalidDistributorInvalid distributor name16ServicesProviderNotFoundService provider not found17AbonentNotFoundAbonent not found19ParameterNotFoundParameter not found20ParameterValueNotFoundParameter value not found30ErrorGeneral error31ServiceNotFoundService not found34ServiceInternalErrorService internal error40WrongAmountWrong amount41ServiceTimeoutOperation timeout42PaymentWontBeAcceptedPayment wont be accepted. Your company has not enough balance in eMoney43AccountOperationDeniedAccount operation denied44AmountLessThanMinAmount is less than acceptable minumum45AmountMoreThanMaxAmount is more than acceptable maximum46TransactionLimitExceededTransaction limit exceededConfig
------

[](#config)

Publish eMoney config file using command:

```
php artisan vendor:publish

```

Created file `config\eMoney.php`. Inside you can change configuration as you wish.

License
-------

[](#license)

laravel-emoney is licensed under a [MIT License](https://github.com/zgabievi/laravel-promocodes/blob/master/LICENSE).

TODO
----

[](#todo)

- Create tests to check funtionality
- Create separated file for response codes
- Make artisan command that will write this response codes in php file
- Make eMoney object more Model like

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity50

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

Unknown

Total

1

Last Release

3769d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/97b2001280ff47bbc67e542074e290919291715cd6c9f694e6787b50d67c60ad?d=identicon)[zgabievi](/maintainers/zgabievi)

---

Top Contributors

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

---

Tags

paymenteMoneyzgabievi

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/zgabievi-e-money/health.svg)

```
[![Health](https://phpackages.com/badges/zgabievi-e-money/health.svg)](https://phpackages.com/packages/zgabievi-e-money)
```

###  Alternatives

[shetabit/payment

Laravel Payment Gateway Integration Package

944330.1k5](/packages/shetabit-payment)[sebdesign/laravel-viva-payments

A Laravel package for integrating the Viva Payments gateway

4845.9k](/packages/sebdesign-laravel-viva-payments)[021/laravel-wallet

Reliable and flexible wallet system for Laravel

2785.2k](/packages/021-laravel-wallet)[tzsk/payu

PayU India Payment Gateway Integration with Laravel

47108.8k6](/packages/tzsk-payu)[henryejemuta/laravel-monnify

A laravel package to seamlessly integrate monnify api within your laravel application

132.1k](/packages/henryejemuta-laravel-monnify)

PHPackages © 2026

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