PHPackages                             heureka/overenozakazniky - 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. heureka/overenozakazniky

Abandoned → [heureka/overeno-zakazniky](/?search=heureka%2Fovereno-zakazniky)Library[API Development](/categories/api)

heureka/overenozakazniky
========================

Heureka 'Ověřeno zákazníky' (ShopCertification) service API implementation

v4.0.2(2y ago)3173.7k—1.8%31[3 PRs](https://github.com/heureka/overeno-zakazniky/pulls)MITPHPPHP &gt;=7.3CI failing

Since Jun 26Pushed 2y ago21 watchersCompare

[ Source](https://github.com/heureka/overeno-zakazniky)[ Packagist](https://packagist.org/packages/heureka/overenozakazniky)[ RSS](/packages/heureka-overenozakazniky/feed)WikiDiscussions master Synced today

READMEChangelog (10)Dependencies (2)Versions (19)Used By (0)

Heureka 'Ověřeno zákazníky' PHP API
===================================

[](#heureka-ověřeno-zákazníky-php-api)

[Heureka Ověřeno zákazníky](http://overeno.heureka.cz/) (ShopCertification) service API client implementation for PHP.

Note: For **non-PHP** implementations check the API documentation in the [docs](docs) folder.

Examples
--------

[](#examples)

You can check working examples in the folder `examples` of this repository.

Usage
-----

[](#usage)

Initialize class `Heureka\ShopCertification` using [your API key](http://sluzby.heureka.cz/sluzby/certifikat-spokojenosti/) (you need to log in):

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

$shopCertification = new \Heureka\ShopCertification('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx');
```

**Keep in mind that your API key is only yours and it is supposed to be a secret.** Never post your API key to anyone, never put it into JavaScript or anywhere else. It should live on your server only. If you feel the need to break this rule then you are doing something wrong - please consult our [support department](http://onas.heureka.cz/kontakty)prior to any actions.

SK shops should initialize the class with a service parameter in the options:

```
$options = ['service' => \Heureka\ShopCertification::HEUREKA_SK];
$shopCertification = new \Heureka\ShopCertification('xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx', $options);
```

Set the customer e-mail address:

```
$shopCertification->setEmail('jan.novak@muj-eshop.cz');
```

Set the customer's order ID (only integers are allowed):

```
$shopCertification->setOrderId(15195618851564);
```

Add products which the customer ordered (use IDs which you used in ITEM\_ID field of the Heureka XML feed):

```
$shopCertification->addProductItemId('B1234');
$shopCertification->addProductItemId('15968421');
$shopCertification->addProductItemId('814687');
```

And finally send request to log the order:

```
$shopCertification->logOrder();
```

###  Health Score

41

—

FairBetter than 87% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity42

Moderate usage in the ecosystem

Community25

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor3

3 contributors hold 50%+ of commits

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 ~212 days

Recently: every ~260 days

Total

17

Last Release

992d ago

Major Versions

v0.1.1 → v2.0.02016-04-12

v2.0.6 → v3.0.02016-11-07

v3.x-dev → v4.0.02021-05-13

PHP version history (3 changes)v0.1PHP &gt;=5.1.0

v0.1.1PHP &gt;=5.4.0

v4.0.0PHP &gt;=7.3

### Community

Maintainers

![](https://www.gravatar.com/avatar/2efa5abba18c993be6ab763c4d879e50af01c9bd12a56c13e670ac45e8256300?d=identicon)[heureka](/maintainers/heureka)

---

Top Contributors

[![grongor](https://avatars.githubusercontent.com/u/972493?v=4)](https://github.com/grongor "grongor (11 commits)")[![vojtasvoboda](https://avatars.githubusercontent.com/u/374917?v=4)](https://github.com/vojtasvoboda "vojtasvoboda (7 commits)")[![MiroslavHlavka](https://avatars.githubusercontent.com/u/5640299?v=4)](https://github.com/MiroslavHlavka "MiroslavHlavka (6 commits)")[![filipmelikheureka](https://avatars.githubusercontent.com/u/6462122?v=4)](https://github.com/filipmelikheureka "filipmelikheureka (5 commits)")[![heureka-user](https://avatars.githubusercontent.com/u/19167448?v=4)](https://github.com/heureka-user "heureka-user (4 commits)")[![martinbartama](https://avatars.githubusercontent.com/u/4313687?v=4)](https://github.com/martinbartama "martinbartama (3 commits)")[![josef-polak-heu](https://avatars.githubusercontent.com/u/89189277?v=4)](https://github.com/josef-polak-heu "josef-polak-heu (1 commits)")[![NickCubarschi](https://avatars.githubusercontent.com/u/41183345?v=4)](https://github.com/NickCubarschi "NickCubarschi (1 commits)")[![Sparkycz](https://avatars.githubusercontent.com/u/4771180?v=4)](https://github.com/Sparkycz "Sparkycz (1 commits)")[![Vrtak-CZ](https://avatars.githubusercontent.com/u/112567?v=4)](https://github.com/Vrtak-CZ "Vrtak-CZ (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/heureka-overenozakazniky/health.svg)

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

###  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.0k15](/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)
