We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 036847d + 80d68f6 commit 7bc3a3bCopy full SHA for 7bc3a3b
src/Hooks.php
@@ -3,7 +3,6 @@
3
namespace Larapack\Hooks;
4
5
use Carbon\Carbon;
6
-use Composer\XdebugHandler;
7
use Illuminate\Filesystem\Filesystem;
8
use Symfony\Component\Console\Input\ArrayInput;
9
@@ -35,11 +34,7 @@ public function __construct(Filesystem $filesystem)
35
34
36
$this->composerJson = new Composer(base_path('composer.json'));
37
38
- // Create output for XdebugHandler and Application
39
- $output = new RawOutput();
40
- $xdebug = new XdebugHandler($output);
41
- $xdebug->check();
42
- $this->composerOutput[] = $output;
+ $this->composerOutput[] = new RawOutput();
43
44
$this->prepareMemoryLimit();
45
}
0 commit comments