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

ActiveLibrary[API Development](/categories/api)

iucto/iucto-api-php-sdk
=======================

iÚčto PHP SDK library

1.7(8mo ago)31.4k8[1 PRs](https://github.com/iUcto/iucto-api-php-sdk/pulls)MITPHPPHP ^7.2 || ^8.0

Since Nov 20Pushed 8mo ago2 watchersCompare

[ Source](https://github.com/iUcto/iucto-api-php-sdk)[ Packagist](https://packagist.org/packages/iucto/iucto-api-php-sdk)[ Docs](https://online.iucto.cz)[ RSS](/packages/iucto-iucto-api-php-sdk/feed)WikiDiscussions master Synced 1w ago

READMEChangelogDependencies (2)Versions (18)Used By (0)

iÚčto PHP SDK
=============

[](#iúčto-php-sdk)

Officiální SDK knihovna v PHP pro apliakaci .

Dokumentace je k dispozici na [https://iucto.docs.apiary.io](https://iucto.docs.apiary.io/)

Instalace knihovny
------------------

[](#instalace-knihovny)

```
composer require iucto/iucto-api-php-sdk
```

Příklad použití
---------------

[](#příklad-použití)

### Načtení seznamu faktur vydaných

[](#načtení-seznamu-faktur-vydaných)

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

$iUcto = IUcto\IUctoFactory::create('your-secret-key');

try {
    $invoiceList = $iUcto->getInvoiceIssued();
    foreach ($invoiceList as $invoice) {
        var_dump($invoice->getId());
    }
} catch (IUcto\ConnectionException $e) {
    // handle connection exception
} catch (\IUcto\ValidationException $e) {
    //handle validation exception
}
```

### Vytvoření kontaktu

[](#vytvoření-kontaktu)

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

$iUcto = IUcto\IUctoFactory::create('your-secret-key');

try {
    $customer = new \IUcto\Command\SaveCustomer();
    $customer->setName('Jan Novák');
    $customer->setComid('123456');
    $customer->setVatid('CZ123456');
    $customer->setVatPayer(true);
    $customer->setPhone('+420123123123');
    $customer->setUsualMaturity(14);
    $customer->setPreferredPaymentMethod('transfer');
    $customer->setInvoiceLanguage('cs');

    $address = new \IUcto\Dto\Address();
    $address->setCountry('CZ');
    $address->setStreet('Lanova 52/12');
    $address->setCity('Praha');
    $address->setPostalcode('21005');

    // Přiřazení adresy k zákazníkovi
    $customer->setAddress($address);

    $iUcto->createCustomer($customer);
} catch (IUcto\ConnectionException $e) {
    // handle connection exception
} catch (\IUcto\ValidationException $e) {
    //handle validation exception
}
```

###  Health Score

48

—

FairBetter than 95% of packages

Maintenance61

Regular maintenance activity

Popularity25

Limited adoption so far

Community20

Small or concentrated contributor base

Maturity75

Established project with proven stability

 Bus Factor1

Top contributor holds 73.8% 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 ~178 days

Recently: every ~360 days

Total

15

Last Release

244d ago

PHP version history (2 changes)v1.1PHP ^5.6 || ^7.0

1.6PHP ^7.2 || ^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/fadce37e874cf86011089cc03e47c263ab1a3f937924eaf21caeeefb0f202450?d=identicon)[PavelMaca](/maintainers/PavelMaca)

---

Top Contributors

[![pavelmaca](https://avatars.githubusercontent.com/u/276292?v=4)](https://github.com/pavelmaca "pavelmaca (104 commits)")[![martincarda](https://avatars.githubusercontent.com/u/79578091?v=4)](https://github.com/martincarda "martincarda (8 commits)")[![Sezil](https://avatars.githubusercontent.com/u/72402109?v=4)](https://github.com/Sezil "Sezil (6 commits)")[![luke015](https://avatars.githubusercontent.com/u/12049930?v=4)](https://github.com/luke015 "luke015 (5 commits)")[![jendasv](https://avatars.githubusercontent.com/u/54263866?v=4)](https://github.com/jendasv "jendasv (4 commits)")[![tomasstejskal43](https://avatars.githubusercontent.com/u/105084376?v=4)](https://github.com/tomasstejskal43 "tomasstejskal43 (3 commits)")[![genesiscz](https://avatars.githubusercontent.com/u/1512353?v=4)](https://github.com/genesiscz "genesiscz (3 commits)")[![kenichiii](https://avatars.githubusercontent.com/u/4957323?v=4)](https://github.com/kenichiii "kenichiii (3 commits)")[![Bleksak](https://avatars.githubusercontent.com/u/5411554?v=4)](https://github.com/Bleksak "Bleksak (3 commits)")[![TomasStejskal](https://avatars.githubusercontent.com/u/92731198?v=4)](https://github.com/TomasStejskal "TomasStejskal (1 commits)")[![MikKuba](https://avatars.githubusercontent.com/u/22917857?v=4)](https://github.com/MikKuba "MikKuba (1 commits)")

---

Tags

iuctophpphp-sdkrest-apiapiiucto

### Embed Badge

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

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

###  Alternatives

[openai-php/laravel

OpenAI PHP for Laravel is a supercharged PHP API client that allows you to interact with the Open AI API

3.7k7.6M74](/packages/openai-php-laravel)[get-stream/stream-chat

A PHP client for Stream Chat (https://getstream.io/chat/)

301.8M2](/packages/get-stream-stream-chat)[mvdnbrk/dhlparcel-php-api

DHL Parcel API client for PHP

3957.9k5](/packages/mvdnbrk-dhlparcel-php-api)[convertkit/convertkitapi

Kit PHP SDK for the Kit API

2167.1k1](/packages/convertkit-convertkitapi)

PHPackages © 2026

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