Guest User

Untitled

a guest
Feb 24th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. This happens when trying to install a new dependency and there is not enough memory, so you can raise the memory (in this case to 3GB) temporarily using :
  2.  
  3. ```cmd
  4. php -d memory_limit=3G C:\ProgramData\ComposerSetup\bin\composer.phar require excelwebzone/r
  5. ```
  6. Check the actual memory limit with:
  7.  
  8. ```cmd
  9. php -r "echo ini_get('memory_limit').PHP_EOL;"
  10. ```
Add Comment
Please, Sign In to add comment