1
0
Fork 0

Merge pull request #4134 from craue/patch-1

[docs] mention the `memory_limit` actually being set
pull/4136/head
Jordi Boggiano 2015-06-11 17:32:56 +01:00
commit 070007769a
1 changed files with 2 additions and 2 deletions

View File

@ -91,7 +91,7 @@ If composer shows memory errors on some commands:
The PHP `memory_limit` should be increased.
> **Note:** Composer internally increases the `memory_limit` to `512M`.
> **Note:** Composer internally increases the `memory_limit` to `1G`.
> If you have memory issues when using composer, please consider [creating
> an issue ticket](https://github.com/composer/composer/issues) so we can look into it.
@ -105,7 +105,7 @@ Try increasing the limit in your `php.ini` file (ex. `/etc/php5/cli/php.ini` for
Debian-like systems):
```ini
; Use -1 for unlimited or define an explicit value like 512M
; Use -1 for unlimited or define an explicit value like 2G
memory_limit = -1
```