El problema es que el url ViewHelper, ha cambiado, los parámetros ahora son así:
Código PHP:
Ver original/**
* Generates an url given the name of a route.
*
* @see Zend\Mvc\Router\Route::assemble()
* @param string $name Name of the route
* @param array $params Parameters for the link
* @param array $options Options for the route
* @param boolean $reuseMatchedParams Whether to reuse matched parameters
* @return string Url For the link href attribute
* @throws Exception\RuntimeException If no RouteStack was provided
* @throws Exception\RuntimeException If no RouteMatch was provided
* @throws Exception\RuntimeException If RouteMatch didn't contain a matched route name
*/
public function __invoke
($name = null, array $params = array(), array $options = array(), $reuseMatchedParams = false)
Es por eso que te marca el error, por otro lado desde el DI podrías indicarle usar el mismo view, usando algo así:
Código PHP:
Ver original'Zend\Paginator\Paginator' => array( 'view' => 'view' // alias
)
Saludos.