citricguy/ofx-php-parser
Composer 安装命令:
composer require citricguy/ofx-php-parser
包简介
OFX PHP parser library
README 文档
README
This project consists of a PHP parser for OFX (Open Financial Exchange) files, implemented using PHP 8.2. Our aim is to make the process of importing OFX files as straightforward and hassle-free as possible.
Installation
Simply require the package using Composer:
$ composer require endeken/ofx-php-parser
Usage
This project primarily revolves around the OFX class in the Endeken\OFX namespace. This class provides a static function parse() which is used to parse OFX data and return the parsed information. Here is a basic usage example:
<?php require 'vendor/autoload.php'; use Endeken\OFX\OFX; try { // Load the OFX data $ofxData = file_get_contents('path_to_your_ofx_file.ofx'); // Parse the OFX data $parsedData = OFX::parse($ofxData); // $parsedData is an instance of OFXData which gives you access to all parsed data // Access the sign-on status code $statusCode = $parsedData->signOn->status->code; // Accessing bank accounts data $bankAccounts = $parsedData->bankAccounts; foreach($bankAccounts as $account) { echo 'Account ID: ' .$account->accountNumber . PHP_EOL; echo 'Bank ID: ' .$account->routingNumber . PHP_EOL; // Loop through each transaction foreach ($account->statement->transactions as $transaction) { echo 'Transaction Type: ' . $transaction->type . PHP_EOL; echo 'Date: ' . $transaction->date . PHP_EOL; echo 'Amount: ' . $transaction->amount . PHP_EOL; } } } catch (Exception $e) { echo 'An error occurred: ' . $e->getMessage(); }
Release v2.0.0
This repository has been modernized and is being released as v2.0.0. Highlights in this major release:
- Tests migrated to Pest v4 and modernized to use
test()/it()style. ✅ - Added PHPStan static analysis (configured at level 10) and fixed reported issues. ✅
- Applied automated, safe refactorings with Rector to modernize code (constructor promotion, strict types, type hints). ✅
- Added test coverage tooling and composer scripts to generate HTML, text, and Clover reports. ✅
- Improved overall test coverage and fixed parsing edge cases uncovered by stricter types.
This is a breaking change release due to modernization and stricter typing; users should test their consuming code and consult the migration notes.
Development & Testing
Quick commands to run locally:
- Run tests:
composer test(Pest) - Static analysis:
composer analyse(PHPStan) - Coverage (HTML, no Xdebug required):
composer coverageorcomposer coverage:html - Coverage (text, uses Xdebug):
composer run coverage:textorphp -d xdebug.mode=coverage ./vendor/bin/pest --coverage --coverage-text --coverage-filter=./src - Generate Clover XML (CI):
composer run coverage:clover
If you'd like to run coverage without changing Xdebug settings, use the composer coverage script (it uses phpdbg).
Acknowledgements
This library stands on the shoulders of giants — full credit and appreciation go to the projects and maintainers that paved the way:
- asgrim/ofxparser — provided an invaluable reference implementation and inspired much of the parsing behaviour we relied on. (https://github.com/asgrim/ofxparser)
- grimfor/ofxparser — the earlier work and ideas that influenced subsequent forks and improvements. (https://github.com/grimfor/ofxparser)
- The many contributors, maintainers, and users of these projects for rigorous examples, bug reports, and design decisions that guided our modernization.
We did not merely fork these projects; we built on their foundations, modernized the codebase (tests, static analysis, and refactorings), and worked to make the library safer and easier to use for everyone. If you contributed to any of the above projects — thank you, your work made this possible.
citricguy/ofx-php-parser 适用场景与选型建议
citricguy/ofx-php-parser 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 4 次下载、GitHub Stars 达 0, 最近一次更新时间为 2026 年 01 月 15 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「parser」 「finance」 「ofx」 「open financial exchange」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 citricguy/ofx-php-parser 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 citricguy/ofx-php-parser 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 citricguy/ofx-php-parser 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Easy to use SDK with grabber for multiple platforms at once like YouTube, Dailymotion, Facebook and more.
Sila PHP SDK for API Version 0.2
Simple OFX file parser
An MT940 bank statement parser for PHP
Simple OFX file parser
PHP SDK for Ledga.io - Programmatic double-entry ledgers for finance, gaming and multi-tenant SaaS
统计信息
- 总下载量: 4
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 26
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-15