I recently created a fresh Laravel Spark project following the official documentation.
This set the version constraint for laravel/spark to *@dev.
Now, PhpStorm warns:
The version constraint has no upper bound – this is not a good idea. See https://getcomposer.org/doc/faqs/why-are-unbound-version-constraints-a-bad-idea.md for more information.
I'm planning to change the version constraint to ^4.0 in order to not get any breaking changes when running composer update.
However, before doing so, I'd like to know why Spark has an unbound version constraint by default.
