Skip to content

Commit

Permalink
Merge pull request #26 from larapack/bugfix/xdebug
Browse files Browse the repository at this point in the history
Disable XdebugHandler
  • Loading branch information
marktopper authored Jan 17, 2018
2 parents 036847d + 80d68f6 commit 7bc3a3b
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/Hooks.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace Larapack\Hooks;

use Carbon\Carbon;
use Composer\XdebugHandler;
use Illuminate\Filesystem\Filesystem;
use Symfony\Component\Console\Input\ArrayInput;

Expand Down Expand Up @@ -35,11 +34,7 @@ public function __construct(Filesystem $filesystem)

$this->composerJson = new Composer(base_path('composer.json'));

// Create output for XdebugHandler and Application
$output = new RawOutput();
$xdebug = new XdebugHandler($output);
$xdebug->check();
$this->composerOutput[] = $output;
$this->composerOutput[] = new RawOutput();

$this->prepareMemoryLimit();
}
Expand Down

0 comments on commit 7bc3a3b

Please sign in to comment.