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(9mo ago)31.4k8[1 PRs](https://github.com/iUcto/iucto-api-php-sdk/pulls)MITPHPPHP ^7.2 || ^8.0

Since Nov 20Pushed 9mo 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 3w 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

46

—

FairBetter than 92% of packages

Maintenance56

Moderate activity, may be stable

Popularity21

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

290d ago

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

1.6PHP ^7.2 || ^8.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/276292?v=4)[Pavel Máca](/maintainers/PavelMaca)[@pavelmaca](https://github.com/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

[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3741.3M47](/packages/tencentcloud-tencentcloud-sdk-php)[mollie/mollie-api-php

Mollie API client library for PHP. Mollie is a European Payment Service provider and offers international payment methods such as Mastercard, VISA, American Express and PayPal, and local payment methods such as iDEAL, Bancontact, SOFORT Banking, SEPA direct debit, Belfius Direct Net, KBC Payment Button and various gift cards such as Podiumcadeaukaart and fashioncheque.

60216.0M85](/packages/mollie-mollie-api-php)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

273.0k](/packages/eslazarev-wildberries-sdk)[resend/resend-php

Resend PHP library.

617.2M43](/packages/resend-resend-php)[files.com/files-php-sdk

Files.com PHP SDK

2481.1k](/packages/filescom-files-php-sdk)[checkout/checkout-sdk-php

Checkout.com SDK for PHP

563.6M13](/packages/checkout-checkout-sdk-php)

PHPackages © 2026

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