PHPackages                             apexmediacz/pohoda-export-generator - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. apexmediacz/pohoda-export-generator

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

apexmediacz/pohoda-export-generator
===================================

Generator of XML exports for POHODA accounting sw

v2.3(1y ago)08PHPPHP &gt;=7.0

Since May 29Pushed 1y ago1 watchersCompare

[ Source](https://github.com/apexmediacz/pohoda-import-generator)[ Packagist](https://packagist.org/packages/apexmediacz/pohoda-export-generator)[ RSS](/packages/apexmediacz-pohoda-export-generator/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (4)DependenciesVersions (5)Used By (0)

php-pohoda-export
=================

[](#php-pohoda-export)

Export invoices to XML format used in accounting software POHODA using simple object

Quick Start
-----------

[](#quick-start)

```
require_once("../vendor/autoload.php");

use Apexmediacz\PohodaExportGenerator;

$invoice_item = (object)[
	"name" => "skv-01521/24 VLOŽKY ORTOPEDICKÉ INDIV. ZHOTOVOVANÉ (2 ks)",
	"quantity" => 1,
	"unit_label" => "ks",
	"vat_rate_percent" => 12,
	"unit_price_base" => 946.43,
	"unit_price_vat_inclusive" => 1060,
	"total_item_price_base" => 946.43,
	"total_item_price_vat_inclusive" => 1060,
];

$invoice = (object)[
	"accounting_series_no" => "24FV",
	"request_number" => true,
	"invoice_id" => "00041",
	"invoice_type" => "issuedInvoice", //issuedInvoice = vydaná faktura | commitment = ostatní závazky
	"order_id" => "skv-01521/24",
	"issue_date" => "2024-06-04",
	"tax_point_date" => "2024-06-04",
	"is_vat_applicable" => true,
	"description" => "popis faktury",
	"customer" => (object)[
		"name" => "Zákazník",
		"identification_number" => "07968116",
		"tax_number" => "CZ07968116",
		"address" => (object)[
			"street" => "Vltavínová",
			"house_number" => "7",
			"city" => "Plzeň",
			"zip_code" => "326 00",
			"country_code" => "CZ"
		],
	],
	"payment" => (object)[
		"payment_type" => "cash", //cash = hotovost | transfer = převod | creditCard = karta
		"bank_account_number" => "12345678",
		"bank_code" => "0300",
		"variable_symbol" => "41240985",
		"constant_symbol" => null,
		"specific_symbol" => null,
		"payment_due_date" => "2024-06-04",
	],
	"items" => [
		$invoice_item
	]
];

$data = (object)[
	"accounting_unit_identification_number" => "ICO_UCETNI_JEDNOTKY",
	"invoices" => [
		$invoice,
	]
];

$pohoda = new PohodaExportGenerator;
$xmlString = $pohoda->generateXml($data, false);
```

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance32

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity38

Early-stage or recently created project

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

Total

4

Last Release

694d ago

Major Versions

v1.0.0 → v2.02024-06-04

### Community

Maintainers

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

---

Top Contributors

[![stepannemejc](https://avatars.githubusercontent.com/u/25880550?v=4)](https://github.com/stepannemejc "stepannemejc (10 commits)")

### Embed Badge

![Health badge](/badges/apexmediacz-pohoda-export-generator/health.svg)

```
[![Health](https://phpackages.com/badges/apexmediacz-pohoda-export-generator/health.svg)](https://phpackages.com/packages/apexmediacz-pohoda-export-generator)
```

###  Alternatives

[components/modernizr

Modernizr is a JavaScript library that detects HTML5 and CSS3 features in the user's browser.

10254.3k8](/packages/components-modernizr)

PHPackages © 2026

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