Skip to content

apeiniger/bank-feed-convert

Repository files navigation

Bank Feed Convert

Build Status

Importing

This class helps importing CSV bank feeds from currently a few different German banks and credit card companies.

As of today the following ones are supported:

  • ING Diba
  • Sparkasse
  • Lufthansa Miles&More creditcard

Further support can be added by just creating an importer.

Usage

$importer = new \BankFeedConvert\Importer\IngDiba();
$importer->loadFromFile('import.csv');
$importer->import();
$transactions = $importer->getTransactions();

Exporting

Furthermore the class has different Exporters, so that you can convert the feeds into a format that is supported by other systems to which you want to import the feeds.

Currently the following export formats are supported:

  • QIF

Usage

$exporter = new \BankFeedConvert\Exporter\QIF($transactions);
$exporter->export('export.qif');

About

A way to convert some bank feed exports to a different format

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages