PHP detect Allowed memory size of bytes exhausted code example
Example 1: PHP Fatal error: Allowed memory size of 134217728 bytes exhausted
memory_limit = 64M;
Example 2: allowed memory size of bytes exhausted composer
Go to your php.ini file - search for memory_limit and set to -1
memory_limit = -1
*Change it back when done.