Skip to content

Commit 41e59c5

Browse files
committed
[Core] added ability to load additional module during development, ref #613
1 parent d613f14 commit 41e59c5

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

config/modules.php

+13-5
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,7 @@
88
* @license MIT
99
*/
1010

11-
if (getenv('ADDITIONAL_MODULES')) {
12-
13-
}
14-
15-
return [
11+
$modules = [
1612
'SlmQueue',
1713
'Core',
1814
'Auth',
@@ -26,3 +22,15 @@
2622
'ReleaseTools',
2723
'Yawik\\Migration'
2824
];
25+
26+
// add ability to load additional module in autoload/*.module.php
27+
use Symfony\Component\Finder\Finder;
28+
$finder = Finder::create()
29+
->name('*.module.php')
30+
->in(__DIR__.'/autoload');
31+
32+
foreach($finder->files() as $file){
33+
$modules = array_merge($modules, include $file);
34+
}
35+
36+
return $modules;

0 commit comments

Comments
 (0)