Last active
August 14, 2016 14:08
-
-
Save peter279k/5948b945c97fd67cdc8583c23bce6c3c to your computer and use it in GitHub Desktop.
Zend Framework 2 module configuration (with no routing and controller)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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