https://github.com/stechstudio/bai2
PHP library for parsing BAI2 files
https://github.com/stechstudio/bai2
Last synced: 11 months ago
JSON representation
PHP library for parsing BAI2 files
- Host: GitHub
- URL: https://github.com/stechstudio/bai2
- Owner: stechstudio
- License: mit
- Created: 2021-09-23T18:12:12.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-31T16:24:13.000Z (over 3 years ago)
- Last Synced: 2024-12-12T21:06:49.106Z (over 1 year ago)
- Language: PHP
- Size: 88.9 KB
- Stars: 2
- Watchers: 4
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PHP BAI2 Parser
Parse and consume [BAI2](https://www.bai.org/docs/default-source/libraries/site-general-downloads/cash_management_2005.pdf) data within your PHP 8 application.
## Installation
```
composer require stechstudio/bai2:@dev
```
## Usage
See example [`bai2json`](bin/bai2json) utility included with this project for a usage example.
This example utility is by itself a handy tool when working with BAI2 files, and pairs nicely with [`jq`](https://stedolan.github.io/jq/):
```
$ composer global require stechstudio/bai2:@dev
$ bai2json some_awesome_transaction_info.bai2.txt | jq -C | less -R
```