I am trying to implement minify and I have the below code and error. Minify folder is in the same as the index.php
CODE:
<?php
require_once 'minify/src/Minify.php';
require_once 'minify/src/JS.php';
require_once 'minify/src/Exception.php';
use MatthiasMullie\Minify;
$cssMin = new Minify\CSS('assets/css/myCssFile.css');
Error in error_log file:
[23-Jan-2018 05:14:12 America/New_York] PHP Fatal error: Class 'MatthiasMullie\Minify\CSS' not found in /home/johannes/public_html/2018/index.php on line 8
How can I fix this problem?