- Added config autoload
This commit is contained in:
parent
10317a55f2
commit
a5d8e0a1aa
|
@ -22,6 +22,9 @@
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"definitions" : [
|
"definitions" : [
|
||||||
"meta/definitions/software.php"
|
"meta/definitions/software.php"
|
||||||
|
],
|
||||||
|
"config": [
|
||||||
|
"meta/config.php"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
return [
|
||||||
|
'lean' => [
|
||||||
|
'autoload' => [
|
||||||
|
getenv('DEBUG') ? 'lean.console' : null,
|
||||||
|
]
|
||||||
|
],
|
||||||
|
];
|
Loading…
Reference in New Issue