Skip to content

Instantly share code, notes, and snippets.

@peter279k
Last active August 14, 2016 14:08
Zend Framework 2 module configuration (with no routing and controller)
<?php
return array(
'controllers' => array(
'invokables' => array(
),
),
'view_manager' => array(
'template_path_stack' => array(
'album' => __DIR__ . '/../view',
),
),
);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment