I would like to use this library in a symfony4 project: link
The fact is that I have used this library on other occasions, in small pure php projects, without any framework and including it was as simple as using this:
require 'libs/simplehtmldom/simple_html_dom.php';
The problem is that in Symfony4 I do not know which directory to include this folder or how to call it. I've already tried require
, require_once
, include
, include_once
...
If someone could give me some guidance, I would appreciate it, I have been foolish for several days and I can not move forward.
Thank you very much.