瀏覽代碼

Merge remote-tracking branch 'ktomk/patch-2'

Jordi Boggiano 13 年之前
父節點
當前提交
1f76274b61
共有 2 個文件被更改,包括 4 次插入0 次删除
  1. 2 0
      bin/compile
  2. 2 0
      bin/composer

+ 2 - 0
bin/compile

@@ -5,5 +5,7 @@ require __DIR__.'/../src/bootstrap.php';
 
 use Composer\Compiler;
 
+error_reporting(~0); ini_set('display_errors', 1);
+
 $compiler = new Compiler();
 $compiler->compile();

+ 2 - 0
bin/composer

@@ -5,6 +5,8 @@ require __DIR__.'/../src/bootstrap.php';
 
 use Composer\Console\Application;
 
+error_reporting(~0); ini_set('display_errors', 1);
+
 // run the command application
 $application = new Application();
 $application->run();