You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
change package name (the name key) to: qa-tools/behat-extension
remove dependency to Mink ("behat/mink": "dev-master",), because MinkExtension already has it
change qa-tools dependency ("aik099/qa-tools": "dev-master") to *@dev, because it's valid version format and it will automatically pickup release when it happens, while dev-master is fixed link to master branch
not sure about "minimum-stability": "dev",, maybe it's not needed at all and better to specify @dev in required package version in project's own composer.json
remove the repositories key, because qa-tools library is already published on packagist
split autoload into autoload (for main code) and autoload-dev (for tests)
fixed mixed use of tabs/spaces
change dependency from aik099/qa-tools to qa-tools\qa-tools
The text was updated successfully, but these errors were encountered:
That's the Composer's trick. If it happens, that you rely on non-released version (in dev-master) or used dependencies, then you need to include them in your project's composer.json. That's why on QA-Tools installation instructions you not only need to include qa-tools/qa-tools but also mindplay/annotations, since otherwise you'll get same exception.
I bet you need to manually list dev versions of mink & drivers in project's composer.json or otherwise 1.5 versions will be used.
name
key) to:qa-tools/behat-extension
"behat/mink": "dev-master",
), because MinkExtension already has it"aik099/qa-tools": "dev-master"
) to*@dev
, because it's valid version format and it will automatically pickup release when it happens, whiledev-master
is fixed link tomaster
branch"minimum-stability": "dev",
, maybe it's not needed at all and better to specify@dev
in required package version in project's owncomposer.json
repositories
key, because qa-tools library is already published on packagistautoload
intoautoload
(for main code) andautoload-dev
(for tests)aik099/qa-tools
toqa-tools\qa-tools
The text was updated successfully, but these errors were encountered: