PHPackages                             simonblee/aba-file-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. [File &amp; Storage](/categories/file-storage)
4. /
5. simonblee/aba-file-generator

ActiveVcs[File &amp; Storage](/categories/file-storage)

simonblee/aba-file-generator
============================

Generate ABA bank transaction files from a collection of transactions.

1.1.0(4y ago)13210.4k↓11.5%9[1 PRs](https://github.com/simonblee/aba-file-generator/pulls)MITPHPPHP &gt;=5.3CI failing

Since Aug 12Pushed 4y ago2 watchersCompare

[ Source](https://github.com/simonblee/aba-file-generator)[ Packagist](https://packagist.org/packages/simonblee/aba-file-generator)[ RSS](/packages/simonblee-aba-file-generator/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (2)Versions (10)Used By (0)

ABA File Generator
==================

[](#aba-file-generator)

Overview
--------

[](#overview)

Generates an aba file for bulk banking transactions with Australian banks.

License
-------

[](#license)

[MIT License](http://en.wikipedia.org/wiki/MIT_License)

Installation
------------

[](#installation)

Copy the files where needed or install via composer:

```
composer require simonblee/aba-file-generator
```

Usage
-----

[](#usage)

Create a generator object with the descriptive type information for this aba file:

```
use AbaFileGenerator\Model\Transaction;
use AbaFileGenerator\Generator\AbaFileGenerator;

$generator = new AbaFileGenerator(
    '123-456', // bsb
    '12345678', // account number
    'CBA', // bank name
    'User Name',
    'Remitter',
    '175029', // direct entry id for CBA
    'Payroll' // description
);

// Set a custom processing date if required
$generator->setProcessingDate('tomorrow');
```

Create an object or array of objects implementing `AbaFileGenerator\Model\TransactionInterface`. A simple Transaction object is provided with the library but may be too simple for your project:

```
$transaction = new Transaction();
$transaction->setAccountName(...);
$transaction->setAccountNumber(...);
$transaction->setBsb(...);
$transaction->setTransactionCode(...);
$transaction->setReference(...);
$transaction->setAmount(...);
```

Generate the aba string and save into a file (or whatever else you want):

```
$abaString = $generator->generate($transaction); // $transaction could also be an array here
file_put_contents('/my/aba/file.aba', $abaString);
```

References
----------

[](#references)

-
-
-
-

###  Health Score

40

—

FairBetter than 88% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity43

Moderate usage in the ecosystem

Community16

Small or concentrated contributor base

Maturity64

Established project with proven stability

 Bus Factor1

Top contributor holds 73% 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 ~383 days

Recently: every ~646 days

Total

8

Last Release

1616d ago

Major Versions

0.0.6 → 1.0.02021-05-22

### Community

Maintainers

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

---

Top Contributors

[![simonblee](https://avatars.githubusercontent.com/u/1495783?v=4)](https://github.com/simonblee "simonblee (27 commits)")[![adamroyle](https://avatars.githubusercontent.com/u/25002779?v=4)](https://github.com/adamroyle "adamroyle (6 commits)")[![glennschmidt](https://avatars.githubusercontent.com/u/1758170?v=4)](https://github.com/glennschmidt "glennschmidt (3 commits)")[![Brody365](https://avatars.githubusercontent.com/u/7381285?v=4)](https://github.com/Brody365 "Brody365 (1 commits)")

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/simonblee-aba-file-generator/health.svg)

```
[![Health](https://phpackages.com/badges/simonblee-aba-file-generator/health.svg)](https://phpackages.com/packages/simonblee-aba-file-generator)
```

###  Alternatives

[knplabs/gaufrette

PHP library that provides a filesystem abstraction layer

2.5k39.8M123](/packages/knplabs-gaufrette)[superbalist/flysystem-google-storage

Flysystem adapter for Google Cloud Storage

26320.6M30](/packages/superbalist-flysystem-google-storage)[illuminate/filesystem

The Illuminate Filesystem package.

15161.6M2.6k](/packages/illuminate-filesystem)[creocoder/yii2-flysystem

The flysystem extension for the Yii framework

2931.7M62](/packages/creocoder-yii2-flysystem)[flowjs/flow-php-server

PHP library for handling chunk uploads. Works with flow.js html5 file uploads.

2451.6M15](/packages/flowjs-flow-php-server)[madnest/madzipper

Easier zip file handling for Laravel applications.

1382.3M6](/packages/madnest-madzipper)

PHPackages © 2026

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