PHPackages                             alekseon/yuppim-api-v1-php-sdk - 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. alekseon/yuppim-api-v1-php-sdk

ActiveLibrary

alekseon/yuppim-api-v1-php-sdk
==============================

Yuppim Api PHP SDK

1.0.2(5mo ago)011MITPHPPHP &gt;=7.0

Since Sep 21Pushed 5mo ago1 watchersCompare

[ Source](https://github.com/Alekseon/yuppim-api-v1-php-sdk)[ Packagist](https://packagist.org/packages/alekseon/yuppim-api-v1-php-sdk)[ RSS](/packages/alekseon-yuppim-api-v1-php-sdk/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (6)Used By (0)

Yuppim API v1 PHP SDK
=====================

[](#yuppim-api-v1-php-sdk)

It is an official PHP SDK for Yuppim PHP API v1.

Getting started
---------------

[](#getting-started)

In order to use this library you need to have at least PHP 7.0 version.

##### Use [Composer](https://getcomposer.org/)

[](#use-composer)

You will need to download Yuppim PHP SDK using Composer:

```
composer require alekseon/yuppim-api-v1-php-sdk

```

If you are not familiar with Composer, learn about it [here](https://getcomposer.org/doc/01-basic-usage.md).

Usage examples
--------------

[](#usage-examples)

In the given example you will see how to initiate selected API and a actions which are available:

- Get single product by ID
- Get array of products
- Get array of manufacturers
- Get array of suppliers

```
// get single product
$productApi = (new \YuppimApi\Yuppim('your-token'))->product();
$product = $productApi->get($productId);

// get all of products, deafult limit is 100 products in one response
$productsApi = (new \YuppimApi\Yuppim('your-token'))->products();
$products = $productsApi->get();

// get products with pagination
$productsApi = (new \YuppimApi\Yuppim('your-token'))->products();
$productsApi->setLimit($limit);
$productsApi->setPage($page);
$products = $productsApi->get();

// get products filtered
$productsApi = (new \YuppimApi\Yuppim('your-token'))->products();
$productsApi->addFilter($field, $operator, $value);
$products = $productsApi->get();

// get manufacturers list
$manufacturersApi = (new \YuppimApi\Yuppim('your-token'))->manufacturers();
$manufactreres = $manufacturersApi->get();

// get suppliers list
$suppliersApi = (new \YuppimApi\Yuppim('your-token'))->suppliers();
$suppliers = $suppliersApi->get();
```

### Product filters

[](#product-filters)

Fields allowed to filter are:

- Nazwa
- Nazwa\_lub\_identyfikator
- Numer\_katalogowy
- Cena\_obowiazuje\_od
- Data\_dodania
- Data\_modyfikacji
- Producent
- Dostawca

The supported operators are:

- "="
- "&gt;"
- "&lt;"
- "!="
- "IN"
- "CONTAINS"
- "STARTS WITH"
- "MATCH"

Note: Not all operators are available for all reference fileds.

```
// get products filtered example
$productsApi = (new \YuppimApi\Yuppim('your-token'))->products();
$productsApi->addFilter('Data_dodania', '>', '2020-01-01 00:00:00');
$productsApi->addFilter('Dostawca', 'IN', ['Dostawca_X', 'Dostawca_Y']);
$product = $productsApi->get();
```

Support and Feedback
--------------------

[](#support-and-feedback)

In case you find any bugs, submit an issue directly here in GitHub.

###  Health Score

36

—

LowBetter than 82% of packages

Maintenance69

Regular maintenance activity

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

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

Every ~626 days

Total

4

Last Release

179d ago

Major Versions

0.0.1 → 1.0.02020-09-22

PHP version history (2 changes)0.0.1PHP ^7.0

1.0.2PHP &gt;=7.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/34ad40435e893b6fb374da166b0dfa867d75b491db6be84155ceb1d688ab4d7c?d=identicon)[Alekseon](/maintainers/Alekseon)

---

Top Contributors

[![marcinfr](https://avatars.githubusercontent.com/u/1800417?v=4)](https://github.com/marcinfr "marcinfr (15 commits)")

### Embed Badge

![Health badge](/badges/alekseon-yuppim-api-v1-php-sdk/health.svg)

```
[![Health](https://phpackages.com/badges/alekseon-yuppim-api-v1-php-sdk/health.svg)](https://phpackages.com/packages/alekseon-yuppim-api-v1-php-sdk)
```

PHPackages © 2026

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