There is a bug in the Rocsvi.php file
foreach ($namespaces as $suffix => $path) {
if (Folder::exists($path)) {
\JLoader::registerNamespace('\\Rolandd\\Component\\Rocsvi\\' . $suffix, $path);
}
}
should be
foreach ($namespaces as $suffix => $path) {
if (is_dir($path)) {
\JLoader::registerNamespace('\\Rolandd\\Component\\Rocsvi\\' . $suffix, $path);
}
}
best regards,
Chris