developing with Laravel 5 some times I encountered errors like Allowed memory size of .... bytes exhausted ... trying to allocate ...
Usually I faced this kind of error along with long resultsets using Eloquent / Models or using Flysystem to upload large files (sometimes chunking is not enough to have it solved, Lrvl's components bug w/ memory leaks?)
Sometimes I solved it by performing the same actions but with a "lower level" functionalities. (i.e. avoid using Builder/Eloquent in favour of raw queries)
But definitely I end up solving it, by increasing php allowed memory limit.
I'd like to know If there's a minimum suggested PHP config for memory_limit (default set is 128MB) in order to have enough room to use hi-level Laravel5 functionalities.