Behat / MinkExtension

Mink extension (tight integration and configuration) for Behat
MIT License
636 stars 276 forks source link

dev-master is behind the latest tagged version #318

Closed yakobe closed 2 years ago

yakobe commented 6 years ago

The latest tag (2.3.1 at the time of writing) is a lower version than the version alias in composer.json on master:

"branch-alias": {
    "dev-master": "2.1.x-dev"
}

This is causing some problems for me resolving dependencies with composer. i.e. if i require the following:

        "behat/mink-extension": "dev-master",
        "behatch/contexts": "dev-master",

Then i cannot resolve dependencies because behatch/contexts:dev-master requires behat/mink-extension: ^2.3.1 which is cannot be satisfied by behat/mink-extension:dev-master.

I hope you get what i mean 😄 . Basically, can we update the composer.json of master? Or is there a reason for this?