I'm new to use namespaces so I may be missing something obvious. I am trying to get the colorizzae to work but keep getting missing files messages. I have copied the example from that page and changed the path to autoload that is on my server. So my code looks like this
require_once 'C:\Users\myuser\vendor\autoload.php';
use Colorizzar\ChangeColor;
$changeColor = new ChangeColor('red_car.png');
//From Red Hexadecimal
$changeColor->setFromHex('#FF1F28');
// Will create 'blue.png' in new_cars/ folder
$changeColor->colorizeByNameColor('Blue', 'new_cars/');
But when I run that I get the error
Class 'Colorizzar\ChangeColor' not found
So after the namespace statement I added
include('c:\wamp\tests\Colorizzar\ChangeColor.php');
That fixed that error but then another popped up for another file in the Colorizzar directory. I added that and then a third one popped up. It seems wrong that I have to include all of the files in the directory. Am I missing some general include or use statement?