PHPackages                             jeeb/jeeb-php - 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. jeeb/jeeb-php

ActiveLibrary[Payment Processing](/categories/payments)

jeeb/jeeb-php
=============

Jeeb library for PHP

1.0.0(6y ago)0181MITPHPCI failing

Since Nov 2Pushed 6y ago1 watchersCompare

[ Source](https://github.com/gdhar67/jeeb-php)[ Packagist](https://packagist.org/packages/jeeb/jeeb-php)[ Docs](https://jeeb.io)[ RSS](/packages/jeeb-jeeb-php/feed)WikiDiscussions master Synced today

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

Jeeb PHP library for API v2
===========================

[](#jeeb-php-library-for-api-v2)

PHP library for Jeeb API.

You can sign up for a Jeeb account at  for production and  for testing (sandbox).

Please note, that for Sandbox you must generate separate API credentials on . API credentials generated on  will not work for Sandbox mode.

Composer
--------

[](#composer)

You can install library via [Composer](http://getcomposer.org/). Run the following command in your terminal:

```
composer require jeeb/jeeb-php
```

Manual Installation
-------------------

[](#manual-installation)

Donwload [latest release](https://github.com/jeeb/jeeb-php/releases) and include `init.php` file.

```
require_once('/path/to/jeeb-php/init.php');
```

Getting Started
---------------

[](#getting-started)

Usage of Jeeb PHP library.

### Setting up Jeeb library

[](#setting-up-jeeb-library)

#### Setting default authentication

[](#setting-default-authentication)

```
use Jeeb\Jeeb;

\Jeeb\Jeeb::config(array(
    'environment'               => 'sandbox', // sandbox OR live
    'auth_token'                => 'YOUR_AUTH_TOKEN',
    'curlopt_ssl_verifypeer'    => TRUE // default is false
));

// $order = \Jeeb\Merchant\Order::find(7294);
```

#### Setting authentication individually

[](#setting-authentication-individually)

```
use Jeeb\Jeeb;

# \Jeeb\Merchant\Order::find($orderId, $options = array(), $authentication = array())

$order = \Jeeb\Merchant\Order::find(1087999, array(), array(
    'environment' => 'sandbox', // sandbox OR live
    'auth_token' => 'YOUR_AUTH_TOKEN'));
```

### Creating Merchant Order

[](#creating-merchant-order)

```
use Jeeb\Jeeb;

$post_params = array(
                   'order_id'          => 'YOUR-CUSTOM-ORDER-ID-115',
                   'price_amount'      => 1050.99,
                   'price_currency'    => 'USD',
                   'receive_currency'  => 'EUR',
                   'callback_url'      => 'https://example.com/payments/callback?token=6tCENGUYI62ojkuzDPX7Jg',
                   'cancel_url'        => 'https://example.com/cart',
                   'success_url'       => 'https://example.com/account/orders',
                   'title'             => 'Order #112',
                   'description'       => 'Apple Iphone 6'
               );

$order = \Jeeb\Merchant\Order::create($post_params);

if ($order) {
    echo $order->status;

    print_r($order);
} else {
    # Order Is Not Valid
}
```

### Getting Merchant Order

[](#getting-merchant-order)

```
use Jeeb\Jeeb;

try {
    $order = \Jeeb\Merchant\Order::find(7294);

    if ($order) {
      var_dump($order);
    }
    else {
      echo 'Order not found';
    }
} catch (Exception $e) {
  echo $e->getMessage(); // BadCredentials Not found App by Access-Key
}
```

### Test API Credentials

[](#test-api-credentials)

```
$testConnection = \Jeeb\Jeeb::testConnection(array(
  'environment'   => 'sandbox',
  'auth_token'    => 'YOUR_AUTH_TOKEN'
));

if ($testConnection !== true) {
  echo $testConnection; // Jeeb\BadCredentials: BadCredentials Not found App by Access-Key
}
```

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity57

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

2381d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/66ffcda5d66731ba5d4e0d9908ed1464f2ed2b43b41c0f7e1487dcfb0979dd25?d=identicon)[gdhar67](/maintainers/gdhar67)

---

Top Contributors

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

---

Tags

paymentgatewaybitcoinmerchantlitecoinjeeb

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/jeeb-jeeb-php/health.svg)

```
[![Health](https://phpackages.com/badges/jeeb-jeeb-php/health.svg)](https://phpackages.com/packages/jeeb-jeeb-php)
```

###  Alternatives

[coingate/coingate-php

CoinGate library for PHP

56459.2k1](/packages/coingate-coingate-php)[plisio/plisio-api-php

155.8k](/packages/plisio-plisio-api-php)[omnipay/bitpay

BitPay driver for the Omnipay payment processing library

1383.2k1](/packages/omnipay-bitpay)[coingate/omnipay-coingate

CoinGate driver for the Omnipay payment processing library

1037.0k1](/packages/coingate-omnipay-coingate)[sudiptpa/omnipay-nabtransact

National Australia Bank (NAB) Transact driver for the Omnipay payment processing library.

1017.2k](/packages/sudiptpa-omnipay-nabtransact)[lucassmacedo/omnipay-mercadopago

MercadoPago gateway for OmniPay

154.6k](/packages/lucassmacedo-omnipay-mercadopago)

PHPackages © 2026

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