Browse Source

Disable xdebug scream/show_exception_trace, fixes #989

Jordi Boggiano 12 years ago
parent
commit
456b35ae72
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/Composer/Console/Application.php

+ 3 - 0
src/Composer/Console/Application.php

@@ -49,6 +49,9 @@ class Application extends BaseApplication
     public function __construct()
     {
         ErrorHandler::register();
+        ini_set('xdebug.show_exception_trace', false);
+        ini_set('xdebug.scream', false);
+
         parent::__construct('Composer', Composer::VERSION);
     }