weslleyraraujo / ofx
Simple OFX File Reader
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/weslleyraraujo/ofx
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();