-
Notifications
You must be signed in to change notification settings - Fork 163
Description
Problem
While creating the 1.4.0 release of this project this line was changed:
This resulted in broken builds for all packages that depended on behat/mink-selenium2-driver: 1.3.x-dev
such as Drupal core and many others. In turn this resulted in several CI/CD builds to fail with the following message:
Problem 1
- webflo/drupal-core-require-dev 8.7.x-dev requires behat/mink-selenium2-driver 1.3.x-dev -> no matching package found.
Also, we cannot simply fix our composer.json files by upgrading it to 1.4.x-dev
since builds that depends on current or previous versions of, say webflo/drupal-core-require-dev, have no way of fixing that dependency, other than forking this project, creating a 1.3.x-dev
branch and update all their composer.json by adding a custom repository information.
Proposed solution
The proposed solution is to create an actual 1.3.x-dev
branch on this project, branching off the correct commit hash, this branch will then be published on Packagist, allowing all projects to access it.