Error during installation
– The requested package laravel/nova could not be found in any version, there may be a typo in the package name.
This error caught me out because it suggests the Nova package couldn’t be found. This isn’t actually the case and it turns out it’s my composer’s Minimum Stability setting, updating the laravel/nova composer require import from
"laravel/nova": "*"
To
"laravel/nova": "@dev"
Nova should then install as expected.