PHPackages                             baytek/eft - 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. baytek/eft

ActiveLibrary

baytek/eft
==========

Package for Generating 80 byte EFT files

1.0.5(7y ago)018MITPHPPHP &gt;=7.0.0

Since Aug 17Pushed 7y ago2 watchersCompare

[ Source](https://github.com/baytek-team/EFT80)[ Packagist](https://packagist.org/packages/baytek/eft)[ RSS](/packages/baytek-eft/feed)WikiDiscussions master Synced 3d ago

READMEChangelogDependencies (1)Versions (7)Used By (0)

Readme for EFT80
================

[](#readme-for-eft80)

To generate an EFT there are a few details that are required from your bank account:

- CPA
- OriginatorName
- Institution
- Transit
- Account

```
$eft = new EFT();

$eft->initialize([
    'originatorId' => 'fklssasdfa',
    'transactionType' => 'C',
    'cpa' => '123',
    'dueDate' => '140618', //ddmmyy
    'originatorName' => 'INCORPORATED INC.',
    'institutionTransit' => '000412345',
    'account' => '12345678910 ',
    'fileCreationNumber' => '1',
]);

foreach (range(0, rand(5, 50)) as $i) {
    $eft->addDetail(new Detail([
        'name' => 'This is a test',
        'referenceNumber' => 'INV-1808-' . str_pad(rand(0, 999999), 6, "0", STR_PAD_LEFT),
        'institutionTransit' => '000412345',
        'account' => rand(5, 99999999),
        'amount' => rand(0, 99999999),
    ]));
}

$eft->finalize();

echo "{$eft->export()}";
```

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity61

Established project with proven stability

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

Total

6

Last Release

2824d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9562e34cab6f9761e22df75222bda0fc7daadd2c2e411b27aedca5628f2a6507?d=identicon)[Baytek](/maintainers/Baytek)

---

Top Contributors

[![baytek-yvon](https://avatars.githubusercontent.com/u/12969611?v=4)](https://github.com/baytek-yvon "baytek-yvon (11 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/baytek-eft/health.svg)

```
[![Health](https://phpackages.com/badges/baytek-eft/health.svg)](https://phpackages.com/packages/baytek-eft)
```

PHPackages © 2026

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