Fix composer missing setting error on install when calling package auto discovery

This commit is contained in:
DariusIII
2017-11-09 15:25:45 +01:00
parent 74db510a2c
commit d01dc10b03
3 changed files with 4 additions and 2 deletions
+1
View File
@@ -1,4 +1,5 @@
2017-11-09 DariusIII
* Fix: Fix composer missing setting error on install when calling package auto discovery
* Chg: Update Binaries class to use Group model
* Chg: Adjust some renaming
2017-11-08 DariusIII
+1 -1
View File
@@ -18,7 +18,7 @@
*/
use App\Models\Settings;
if (defined('NN_INSTALLER') && NN_INSTALLER !== false) {
if ((defined('NN_INSTALLER') && NN_INSTALLER !== false) || ! file_exists(NN_ROOT.'_install/install.lock')) {
$adapter = 'Php';
} else {
switch (true) {
+2 -1
View File
@@ -172,7 +172,8 @@
"nntmux\\build\\ComposerScripts::postUpdate"
],
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump"
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
"@php tmux package:discover"
]
},
"suggest": {