Rodrigo Pedra Brum

Results 19 comments of Rodrigo Pedra Brum

Hi, just faced this installation issue yesterday. I was using composer v2 by default, by changing composer to v1 installation went fine. Check your composer version: ~~~ composer --version ~~~...

Thanks @jonasBoss for the response. I searched a lot to see if a similar issue was already reported but could not find that one. I wish I could help you...

Not sure if the question is a technical one or related to how I generated the output. The first output on my report was created by pressing and "unpressing" the...

Adding this line: ~~~php \Illuminate\Console\Application::forgetBootstrappers(); ~~~ Right after `$this->createApplication()->flush();` reduced the memory increase dramatically (from 54MB to 28MB) And commenting the last 2 bootstrapers in: https://github.com/laravel/framework/blob/f40fe7d303544a66f7bcbee8e25c96c743d64d1a/src/Illuminate/Foundation/Console/Kernel.php#L82-L90 Further reduced from 28MB...

I wrote this shell script (tested in Linux) that: - Creates a fresh Laravel - Updates `laravel/framework` to `9.x-dev` - Creates 1,000 test classes, with a single test case and...

@PHLAK thanks for reviewing it. When running a single test class with `--repeat=1000` the memory: - goes from 20MB to 28MB on Feature Tests - stays constant at 8MB on...

@nunomaduro , thanks for looking into it. The app I tested only has the standard breeze tests installed. It is a real app, but without any further tests written. The...

Thanks @X-Coder264 for looking into this, really appreciate. I didn't think on those benefits you mentioned at the time, but this is actually something that had bitten me before, specially...

From the current middleware priority stack, the most likely point of struggle for users - with this PR implementation - would be the `auth` and `throttle` middleware behavior. If they...

> 1. Document on the upgrade guide that any auth and throttle middleware should be moved to a route definition, in the case a user defines them on a controller's...