webit / comarch-edi-order
Comarch EDI Order Lib
3.0.1
2022-04-08 08:55 UTC
Requires
- php: >=7.2.0
- jms/serializer: ^2.0|^3.0
- symfony/cache: ^5.4|^6.0
Requires (Dev)
- phpunit/phpunit: >=8.5.26
This package is auto-updated.
Last update: 2024-10-08 15:29:57 UTC
README
This library provides the object oriented representation of the Comarch EDI Order document along with its the XML parser.
Installation
The most convenient method is using Composer. Add the following line to the required section of your composer.json
"webit/comarch-edi-order": "^2.0.0"
Usage
XML Parser
<?php use Doctrine\Common\Annotations\AnnotationRegistry; // Configure the AnnotationRegistry $autoload = include 'vendor/autoload.php'; AnnotationRegistry::registerLoader(array($autoload, 'loadClass')); $xmlParserBuilder = new \Webit\Comarch\EDI\Order\Parser\XmlParserBuilder(); $xmlParserBuilder->setCacheDir(sys_get_temp_dir()); // recommended to set the cache dir for the inner Serializer /** @var \Webit\Comarch\EDI\Order\Parser\XmlParser $xmlParser */ $xmlParser = $xmlParserBuilder->build(); $myOrder = file_get_contents('my-edi-order.xml'); /** @var \Webit\Comarch\EDI\Order\DocumentOrder $documentOrder */ $documentOrder = $xmlParser->parse($myOrder);
XML File Parser
Optionally you can wrap the XMLParser with the XMLFileParser
<?php /** @var \Webit\Comarch\EDI\Order\Parser\XmlParser $xmlParser */ $xmlFileParser = new \Webit\Comarch\EDI\Order\Parser\XmlFileParser($xmlParser); $documentOrder = $xmlFileParser->parse(new \SplFileInfo('my-edi-order.xml'));
Supported document versions
The current implementation supports version 2.2 as states in the spec
Running the tests
./vendor/bin/phpunit