From f84d002d35e50eb4fd11976c0b088ea70f5718a5 Mon Sep 17 00:00:00 2001 From: Toby Zerner Date: Thu, 27 Aug 2015 20:11:14 +0930 Subject: [PATCH] Don't enable the Pusher extension by default --- .../core/src/Install/Console/InstallCommand.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/framework/core/src/Install/Console/InstallCommand.php b/framework/core/src/Install/Console/InstallCommand.php index d185a0a35..e566b32f4 100644 --- a/framework/core/src/Install/Console/InstallCommand.php +++ b/framework/core/src/Install/Console/InstallCommand.php @@ -248,16 +248,22 @@ class InstallCommand extends Command $migrator = $extensions->getMigrator(); foreach ($extensions->getInfo() as $extension) { - $this->info('Enabling extension: '.$extension->name); + $name = $extensions->name; - $extensions->enable($extension->name); + if ($name === 'pusher') { + continue; + } + + $this->info('Enabling extension: '.$name); + + $extensions->enable($name); foreach ($migrator->getNotes() as $note) { $this->info($note); } } } - + protected function getConfigFile() { return base_path('../config.php');