Browse Source

Disable GC when computing deps, refs #3482

Jordi Boggiano 10 years ago
parent
commit
ac676f47f7
1 changed files with 2 additions and 0 deletions
  1. 2 0
      src/Composer/Installer.php

+ 2 - 0
src/Composer/Installer.php

@@ -160,6 +160,8 @@ class Installer
      */
     public function run()
     {
+        gc_disable();
+
         if ($this->dryRun) {
             $this->verbose = true;
             $this->runScripts = false;