Home > Blockchain >  DDEV/Laravel/PHPUnit: Problems with setup in PhpStorm
DDEV/Laravel/PHPUnit: Problems with setup in PhpStorm

Time:12-30

Using Laravel with DDEV/Docker on a Mac, I am stuck getting PhpStorm to run directly PHPUnit with coverage. I am following these instructions: PhpStorm does not find PHPUnit

What am I missing out? PHPUnit is located within the directory and it is composer-installed as well:

composer.json for PHPUnit

CodePudding user response:

With composer version 2.2 the phpunit executable in vendor/bin is not a symlink anymore. It‘s a PHP file which includes the original executable with help of stream-wrapper, but including phpunit is not allowed: setup test framework in PHPStorm PHP remote executable in PHPStorm

  • Related