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

Getting Started

Usage

Setup

All classes are in the Metroplex\Edifact namespace.

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

require_once __DIR__ . "vendor/autoload.php";

use Metroplex\Edifact\Message;

$edifact = new Message;