I am trying to get Composer do download the latest commit for the Behat/MinkSelenium2Driver package. That particular repo only has a master branch. I have tried every method I c
Simply specify the master branch:
composer require --dev behat/mink-selenium2-driver:dev-master
PS: the --dev is just to specify it's a test/development requirement, that's probably what you want.