PHPackages                             miroslavmerinsky/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. miroslavmerinsky/iucto-api-php-sdk

ActiveLibrary[API Development](/categories/api)

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

iÚčto PHP SDK library

014PHP

Since Jun 6Pushed 2y agoCompare

[ Source](https://github.com/MiroslavMerinsky/iucto-api-php-sdk)[ Packagist](https://packagist.org/packages/miroslavmerinsky/iucto-api-php-sdk)[ RSS](/packages/miroslavmerinsky-iucto-api-php-sdk/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)DependenciesVersions (1)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

15

—

LowBetter than 3% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity22

Early-stage or recently created project

 Bus Factor1

Top contributor holds 80.2% 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.

### Community

Maintainers

![](https://www.gravatar.com/avatar/3139bd19de155cd474091e2e72224d8d4a34e4cde52ca7d8fad9bb7371cc0980?d=identicon)[miroslav.merinsky](/maintainers/miroslav.merinsky)

---

Top Contributors

[![pavelmaca](https://avatars.githubusercontent.com/u/276292?v=4)](https://github.com/pavelmaca "pavelmaca (89 commits)")[![martincarda](https://avatars.githubusercontent.com/u/79578091?v=4)](https://github.com/martincarda "martincarda (8 commits)")[![luke015](https://avatars.githubusercontent.com/u/12049930?v=4)](https://github.com/luke015 "luke015 (4 commits)")[![genesiscz](https://avatars.githubusercontent.com/u/1512353?v=4)](https://github.com/genesiscz "genesiscz (3 commits)")[![MiroslavMerinsky](https://avatars.githubusercontent.com/u/7864641?v=4)](https://github.com/MiroslavMerinsky "MiroslavMerinsky (3 commits)")[![kenichiii](https://avatars.githubusercontent.com/u/4957323?v=4)](https://github.com/kenichiii "kenichiii (3 commits)")[![MikKuba](https://avatars.githubusercontent.com/u/22917857?v=4)](https://github.com/MikKuba "MikKuba (1 commits)")

### Embed Badge

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

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

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M475](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M270](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M452](/packages/google-gax)

PHPackages © 2026

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