Download the PHP package kubinyete/edi-php without Composer
On this page you can find all versions of the php package kubinyete/edi-php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download kubinyete/edi-php
More information about kubinyete/edi-php
Files in kubinyete/edi-php
Package edi-php
Short Description A standard library for reading EDI files and declaring your own EDI parsers
License MIT
Informations about the package edi-php
EDI PHP
A standard library for declaring EDI parsers, because that's not a fun thing to do.
Why should I use it?
This is a very common use-case for many services that output data using a defined text-file layout, for example, many services (Ex: Payment providers) output some sort of layout file that follows a simplified column separated values that has a fixed size set.
For example, the following line (25 bytes):
120240503Hello World
Can be interpreted as
Range | Size | Column | Value |
---|---|---|---|
0 - 0 | 1 | Reg. type | 1 |
1 - 8 | 8 | Date | 2024-05-03 |
9 - 25 | 16 | Message | Hello World |
How it works
To provide a better developer experience while creating these parsers, this library provides some useful property attributes and a base class for declaring these types of data.
For example, to declare the previous line, we can declare it in code as the following:
Declaring dynamic parsers
Using our built in line parser, we can create dynamically parsed (by line) types, with the power of generators, these types are parsed on demand:
Understanding parsing errors
This feature is work-in-progress, there are a some things we can do to make it better
We enable out-of-the-box support for friendly contextual messages on any errors that ocurred.
PHP Fatal error: Uncaught Kubinyete\Edi\Parser\Exception\ParseException: Line 1: Failed to parse field '202d1001025840' as a date with format 'YmdHis'
Contents: "A00003.1202d1001025840000442ADIQ SOLUCOES PAGAMENTOS S.A 0040002783189N000001"
--------^
in /home/vitorkubinyete/code/edi-php/src/Parser/LineContext.php:38