Fixed the configuration for Selenium2 capabilities

Some capabilities need to have a dash in their name to match the name
expected by Selenium2 (which uses a mix of camel cased and dashed names).
This fix makes the MinkExtension incompatible with Symfony 2.0 and 2.1 but
they already reached their end of maintenance anyway.
Closes #91
This commit is contained in:
Christophe Coevoet
2013-09-23 18:44:37 +02:00
parent 0b72238263
commit 265aee68b3
2 changed files with 3 additions and 7 deletions

View File

@@ -15,7 +15,8 @@
"require": {
"php": ">=5.3.2",
"behat/behat": "~2.5.0",
"behat/mink": ">=1.4.3,<1.6-dev"
"behat/mink": ">=1.4.3,<1.6-dev",
"symfony/config": "~2.2"
},
"require-dev": {
@@ -24,11 +25,5 @@
"autoload": {
"psr-0": { "Behat\\MinkExtension": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.1.x-dev"
}
}
}