Edifact A PHP library to parse and serialize UN/EDIFACT messages

Getting Started

Usage

Formatting

Setup

All classes are in the Estrato\Edifact namespace.

The easiest way of working with EDI messages is using the Message class:

require_once __DIR__ . "/vendor/autoload.php";

use Estrato\Edifact\Message;

$edifact = new Message();