Results 109 comments of Marco Deleu

using `asset`, Laravel will automatically identify whether it's a secure request or not and setup https or http accordingly. That is also valid for HTTP requests that carry `_$SERVER['HTTPS']` as...

I have this `alias`: ``` alias unitreport='php -d xdebug.profiler_enable=On vendor/phpunit/phpunit/phpunit --coverage-html=./public/report' ``` Basically `php -d` will enable xdebug (PHP is really slow with it, so I keep it off and...

You need to install PHP XDebug

For me it's a little hard because I don't have knowledge of the mechanics yet, but I would be glad to review a refactor PR if you want.

Should I be using caching for PHPUnit? Is that really the recommendation?

I started getting this error now after running `composer install --no-dev`. DeepCopy gets removed and then the dump-autoload fails at this point. Seems pretty hard to debug.

So far what I've gather is that deep-copy gets installed by phpunit ``` sh-4.2# /tmp/composer why myclabs/deep-copy myclabs/deep-copy 1.9.5 replaces myclabs/deep-copy (self.version) phpunit/phpunit 8.5.4 requires myclabs/deep-copy (^1.9.1) ``` This is...

So I finally got to the bottom of this. There's only 2 things hard in computer science: naming things and **cache invalidation**. This issue came up on my CI when...

I appreciate the suggested review but I would argue that most use cases will be a single sg and potentially hard-coded subnets instead of environment variables. The config file just...

Why not make your own `BaseJsonResource` instead?