PHPackages                             soukicz/flexibee-fio-fixer - 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. soukicz/flexibee-fio-fixer

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

soukicz/flexibee-fio-fixer
==========================

Fix FIO payment labels in Flexibee

113PHP

Since Jan 29Pushed 8y ago1 watchersCompare

[ Source](https://github.com/soukicz/flexibee-fio-fixer)[ Packagist](https://packagist.org/packages/soukicz/flexibee-fio-fixer)[ RSS](/packages/soukicz-flexibee-fio-fixer/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Opravovač popisku FIO transakcí ve Flexibee
-------------------------------------------

[](#opravovač-popisku-fio-transakcí-ve-flexibee)

Flexibee při napojení na FIO stahuje jen prvních 20 znaků z popisu. Tento balíček stáhne kompletní popisky přes FIO API a doplní je do Flexibee.

Balíček pouze aktualizuje popisy existujících pohybů, které vyhledá podle ID. Původní popis přepisuje a neexistující transakce ignoruje.

Instalace
---------

[](#instalace)

```
composer require soukicz/flexibee-fio-fixer
```

Použití
-------

[](#použití)

##### Aktualizovat transakce za posledních 24 hodin:

[](#aktualizovat-transakce-za-posledních-24-hodin)

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

$fixer = \Soukicz\FlexibeeFioFixer\FlexibeeFioFixer::factory(
    'flexibee-user',
    'flexibee-password',
    'demo.flexibee.eu',
    5434,
    'demo',
    'fio-token-absdflkgsdjkgjdfkljgdkljg'
);

$fixer->update(new DateTimeImmutable('-24 hours'), new DateTimeImmutable('-24 hours'));
```

##### Aktualizovat transakce za poslední rok:

[](#aktualizovat-transakce-za-poslední-rok)

Pro delší časové úseky je lepší aktualizaci rozdělit na dávky.

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

$fixer = \Soukicz\FlexibeeFioFixer\FlexibeeFioFixer::factory(
    'flexibee-user',
    'flexibee-password',
    'demo.flexibee.eu',
    5434,
    'demo',
    'fio-token-absdflkgsdjkgjdfkljgdkljg'
);

$date = time();
$endDate = strtotime('-1 year');
$timeStep = 60 * 60 * 24 * 30;
while ($date > $endDate) {
    $last = time();
    $fixer->update(DateTime::createFromFormat('U', $date - $timeStep), DateTime::createFromFormat('U', $date));
    echo date('Y-m-d', $date) . "\n";
    while (time() < $last + 30) sleep(1); // FIO dovoluje stažení jednou za 30 sekund
    $date -= $timeStep;
}
```

###  Health Score

20

—

LowBetter than 14% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 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.

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/704500?v=4)[petrsoukup](/maintainers/petrsoukup)[@petrsoukup](https://github.com/petrsoukup)

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/soukicz-flexibee-fio-fixer/health.svg)

```
[![Health](https://phpackages.com/badges/soukicz-flexibee-fio-fixer/health.svg)](https://phpackages.com/packages/soukicz-flexibee-fio-fixer)
```

###  Alternatives

[dg/composer-cleaner

Victor The Cleaner: removes unnecessary files from vendor directory.

1401.5M29](/packages/dg-composer-cleaner)[paragonie/random-lib

A Library For Generating Secure Random Numbers

703.3M26](/packages/paragonie-random-lib)[kartik-v/bootstrap-tabs-x

Extended Bootstrap Tabs with ability to align tabs in multiple ways, add borders, rotated titles, and more.

1021.3M1](/packages/kartik-v-bootstrap-tabs-x)[undefinedoffset/sortablegridfield

Adds drag and drop functionality to Silverstripe's GridField

941.2M50](/packages/undefinedoffset-sortablegridfield)[log1x/sage-svg

A simple package for using inline SVGs in Sage 10 projects.

121546.7k3](/packages/log1x-sage-svg)[nullpunkt/lz-string-php

PHP Class implementation of LZ-String javascript.

111485.0k20](/packages/nullpunkt-lz-string-php)

PHPackages © 2026

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