Simple OFX File Reader

Maintainers

Package info

github.com/WeslleyRAraujo/OFX

pkg:composer/weslleyraraujo/ofx

Statistics

Installs: 4

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

v1.1.0 2025-03-05 02:07 UTC

This package is auto-updated.

Last update: 2026-03-10 14:01:03 UTC


README

A simple OFX file reader

image

Authors

How to use

Installation

composer require weslleyraraujo/ofx

Use Example

<?php
require_once __DIR__ . '/vendor/autoload.php';

use WeslleyRAraujo\OFX\OFX AS OFXReader;

$OFXReader = new OFXReader(__DIR__.'/foo_bar.ofx');

$transactionList = $OFXReader->getTransactionList();
$headers = $OFXReader->getHeaders();