Эх сурвалжийг харах

Increase memory to 512M, remove warning

Kirill chEbba Chebunin 13 жил өмнө
parent
commit
21596b2ccd

+ 3 - 4
bin/composer

@@ -24,10 +24,9 @@ $memoryInBytes = function ($value) {
 };
 
 $memoryLimit = trim(ini_get('memory_limit'));
-// Increase memory_limit if it is lower than 256M
-if ($memoryLimit != -1 && $memoryInBytes($memoryLimit) < 256 * 1024 * 1024) {
-    @ini_set('memory_limit', '256M');
-    printf('Warning: memory_limit was increased from %s to %s' . PHP_EOL . PHP_EOL, $memoryLimit, '256M');
+// Increase memory_limit if it is lower than 512M
+if ($memoryLimit != -1 && $memoryInBytes($memoryLimit) < 512 * 1024 * 1024) {
+    @ini_set('memory_limit', '512M');
 }
 unset($memoryInBytes);
 

+ 1 - 1
doc/articles/troubleshooting.md

@@ -9,7 +9,7 @@ If composer shows memory errors on some commands:
 
 The `memory_limit` ini value should be increased.
 
-> **Note:** Composer internaly increases the memory_limit to 256M.
+> **Note:** Composer internaly increases the memory_limit to 512M.
 > It is a good idea to create an issue for composer if you get memory errors.
 
 Get current value: