in the module.config.php remove the mapping ClassMapAutoLoader , it should only have a standard autoloader, as shown below;
public function getAutoloaderConfig() { return array( 'Zend\Loader\StandardAutoloader' => array( 'namespaces' => array( __NAMESPACE__ => __DIR__ . '/src/' . __NAMESPACE__, ), ), ); }
This will solve the problem.
Naresh chennuri
source share