前提
Laravel7 アップグレード時にphpinsightsが死亡
Laravel 7でphpinsights使いたい
原因
Note for Laravel 7 users: phpinsights requires PHP 7.3+, and PHPUnit 9.0+. For upgrading PHPUnit, you can use following command:
PHP 7.3
PHPUnit v9以上
が必要
やりかた
PHP7.3へあげる
PHPUnitを^9.0にする
composer require --dev phpunit/phpunit:^9.0 --update-with-dependencies
phpinsightsをいれる
composer require nunomaduro/phpinsights
参考