简体   繁体   中英

Laravel 5.4 - How to use EDI Vendor Library

I have installed EDI Library through composer command.

Library Link. https://github.com/php-edifact/edifact

But in this, they did not give how to register your library in App file.

So can please help me how to register it. They are giving examples of how to use this. I am just writing simple code.

   $x = [1,5,8,9];
   $c = new Parser($x);

But the above code is giving an error.

Class 'Parser' not found

Try using new EDI\\Parser($x) . You need to tell php in what namespace to find the class you are looking for.

Run this command in your command prompt

composer require sabas/edifact 

Use in the top of the file like:

namespace EDITest;
use EDI\Parser;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM