weslleyraraujo / ofx
Simple OFX File Reader
v1.1.0
2025-03-05 02:07 UTC
Requires (Dev)
- phpunit/phpunit: 12.0
README
A simple OFX file reader
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();