PHPackages                             bluntk/joom - 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. [API Development](/categories/api)
4. /
5. bluntk/joom

ActiveLibrary[API Development](/categories/api)

bluntk/joom
===========

Joom API V3 PHP Client

v1.0(3y ago)03MITPHP

Since Jul 16Pushed 3y ago1 watchersCompare

[ Source](https://github.com/kivancagaogluu/Joom)[ Packagist](https://packagist.org/packages/bluntk/joom)[ RSS](/packages/bluntk-joom/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)DependenciesVersions (2)Used By (0)

Joom
====

[](#joom)

Joom API V3 PHP Client

Initiating Library
------------------

[](#initiating-library)

```
require_once __DIR__ . '/vendor/autoload.php';

use bluntk\Joom;

$config = [
    'client_id' => 'xxx',
    'client_secret' => 'xxx',
    'grant_type' => 'authorization_code',
    'code' => 'xxx',
    'redirect_uri' => 'https://xxx',
    'refresh_token' => 'xx',
    'access_token' => 'xx',
];

$joom = new Joom([
    'clientId' => $config['client_id'],
    'clientSecret' => $config['client_secret'],
    'refreshToken' => $config['refresh_token'],
    'accessToken' => $config['access_token'],
]);
```

Product Service
---------------

[](#product-service)

### Retrieve Products

[](#retrieve-products)

```
$products = $joom->product()->retrieveProducts();
```

### Create Product

[](#create-product)

```
$product = [
    'storeId' => 'xx',
    'attributes' => [
        ['key' => 'cvd', 'value' => '22']
    ],
    'mainImage' => 'https://www.example.com/image/1.jpg',
    'name' => 'Test',
    'sku' => (string) rand(),
    'variants' => [[
        'attributes' => [
            ['material' => '90% cotton, 10% polyester']
        ],
        'currency' => 'EUR',
        'declaredValue' => '4.32',
        'price' => '4.32',
        'sku' => (string) rand()
    ]]
];

$products = $joom->product()->createProduct($product);
```

### Remove Product

[](#remove-product)

```
$removeProduct = [
    'sku' => 'tst-1',
    'reason' => 'stopSelling',
];

$products = $joom->product()->removeProduct($product);
```

### Product Colors and Categories

[](#product-colors-and-categories)

```
$colors = $joom->product()->productColors();

$categories = $joom->product()->productCategories();
```

I created this library because of my own needs and that is only product service. Feel free to contribute

###  Health Score

21

—

LowBetter than 18% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity48

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

1447d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/41261976?v=4)[kivancagaoglu](/maintainers/kivancagaoglu)[@KivancAgaoglu](https://github.com/KivancAgaoglu)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/bluntk-joom/health.svg)

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

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35916.4M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24016.2M20](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172445.0k13](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

93459.5k6](/packages/botman-driver-telegram)

PHPackages © 2026

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