- Added config autoload

This commit is contained in:
Dave M. 2023-11-07 16:25:26 +00:00
parent 10317a55f2
commit a5d8e0a1aa
2 changed files with 12 additions and 0 deletions

View File

@ -22,6 +22,9 @@
"autoload": {
"definitions" : [
"meta/definitions/software.php"
],
"config": [
"meta/config.php"
]
}
}

9
meta/config.php Normal file
View File

@ -0,0 +1,9 @@
<?php
return [
'lean' => [
'autoload' => [
getenv('DEBUG') ? 'lean.console' : null,
]
],
];