The branch alias in composer.json says that dev-master is 4.0.x-dev but this project has a release for version 6.1.0 that is based on the master branch.
When the branch alias is not maintained, it's not possible to track the master branch while also depending on projects that require the latest version (6.x) of this one.
The branch alias in
composer.json
says thatdev-master
is4.0.x-dev
but this project has a release for version 6.1.0 that is based on the master branch.When the branch alias is not maintained, it's not possible to track the master branch while also depending on projects that require the latest version (6.x) of this one.
Should the branch alias be
6.2.x-dev
or6.x-dev
?