[Vuejs]-Is there a way to check breaking changes of a php package?

0👍

Usually breaking changes managed by composer (by SemVer convention – https://semver.org/, all composer packages should follow it).
But, Laravel before version 6 is not following semver, so you need to check all your laravel-related packages manually, by inspecting package docs.

Leave a comment