The following required dependency versions have been updated:
- The minimum PHP version is now v8.0
- The minimum Laravel version is now v9.0
- The minimum PHPUnit version is now v9.0
PR: laravel#873
Going forward, Dusk will not ship with pre-installed Chrome binaries. Instead, you should install the required Chrome driver for your operating system using the following command:
php artisan dusk:chrome-driver
Dusk now provides optional support for PHPUnit 8, which requires PHP >= 7.2 Please read through the entire list of changes in the PHPUnit 8 release announcement. Using PHPUnit 8 will require Laravel 5.8, which will be released at the end of February 2019.
You may also continue using PHPUnit 7, which requires a minimum of PHP 7.1.
Laravel 5.7 is now the minimum supported version of the framework and you should upgrade to continue using Dusk.
The setUp
and tearDown
methods now require the void
return type. If you were overwriting these methods you should add it to the method signatures.