Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
fix: fix for Db module not being included correctly causing some app …
Browse files Browse the repository at this point in the history
…issue. (#199)
  • Loading branch information
fibble authored Jul 18, 2024
1 parent 1dd525a commit 62ea17c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
3 changes: 0 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,6 @@
"laminas/laminas-cli": "^1.5"
},
"autoload": {
"classmap": [
"module/Db/src"
],
"psr-4": {
"Dvsa\\Olcs\\Db\\": "module/Db/src",
"Dvsa\\Olcs\\AcquiredRights\\": "module/AcquiredRights/src",
Expand Down
1 change: 1 addition & 0 deletions config/application.config.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
'Dvsa\Olcs\CompaniesHouse',
'Dvsa\Olcs\Cpms',
'Dvsa\Olcs\DocumentShare',
'Dvsa\Olcs\Db',
'LmcRbacMvc',
'Dvsa\Olcs\Transfer',
'DoctrineModule',
Expand Down
2 changes: 1 addition & 1 deletion module/Db/Module.php → module/Db/src/Module.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ public function onBootstrap(EventInterface $e)

public function getConfig()
{
return include __DIR__ . '/config/module.config.php';
return include __DIR__ . '/../config/module.config.php';
}
}

0 comments on commit 62ea17c

Please sign in to comment.