Skip to content

Commit

Permalink
test module struct
Browse files Browse the repository at this point in the history
  • Loading branch information
merlin committed Jun 28, 2015
1 parent b162b2b commit 3878c7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file added composer.phar
Binary file not shown.
4 changes: 2 additions & 2 deletions Module.php → src/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ class Module
{
public function getConfig()
{
return include __DIR__ . '/config/module.config.php';
return include __DIR__ . '/../config/module.config.php';
}

public function getAutoloaderConfig()
{
return [
'Zend\Loader\StandardAutoloader' => [
'namespaces' => [
__NAMESPACE__ => __DIR__ . '/src',
__NAMESPACE__ => __DIR__ . '/',
],
],
];
Expand Down

0 comments on commit 3878c7a

Please sign in to comment.