@iodic: It seems that for some reason, the composer autoload isnt working on your system.
The autoloader is included like this in TestRun.php
:
include_once __DIR__ . '/../../vendor/autoload.php';
And from there, it should handle loading the classes in the /vendor folder, when needed.
However, you get a “class not found” error, which is triggered when one of these classes are called.
Did you download WebP Express through wordpress, or from github? If the latter is the case, then the problem is simply that the ‘vendor’ folder is not distributed on github – you then need to run composer update
to pull it in.
-
This reply was modified 5 years, 11 months ago by
rosell.dk.
-
This reply was modified 5 years, 11 months ago by
rosell.dk.