/ */ return array( 'router' => array( 'routes' => array( 'highscore' => array( 'type' => 'Zend\Mvc\Router\Http\Segment', 'options' => array( 'route' => '/highscore[/]', 'defaults' => array( 'controller' => 'Teampage\Controller\Index', 'action' => 'highscore', ), ), ) ), ), 'controllers' => array( 'invokables' => array( 'Teampage\Controller\Index' => 'Teampage\Controller\IndexController' ), ), 'view_manager' => array( 'template_map' => array( 'highscore/index/index' => __DIR__ . '/../view/highscore/index/highscore.phtml', ), 'template_path_stack' => array( __DIR__ . '/../view', ), ), );