Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to fb webdriver #263

Closed
wants to merge 11 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
16 changes: 16 additions & 0 deletions .php_cs.dist
@@ -0,0 +1,16 @@
<?php

return PhpCsFixer\Config::create()
->setRules(array(
'@PSR2' => true,
'array_syntax' => array('syntax' => 'long'),
'concat_with_space' => false,
'phpdoc_align' => true,
'single_quote' => true,
'binary_operator_spaces' => ['align_double_arrow' => true],
))
->setFinder(
PhpCsFixer\Finder::create()
->in(__DIR__.'/src')
)
;
4 changes: 2 additions & 2 deletions .travis.yml
Expand Up @@ -6,7 +6,7 @@ cache:
directories:
- $HOME/.composer/cache/files

php: [5.3, 5.4, 5.5, 5.6, 7.0, 7.1, hhvm]
php: [5.5, 5.6, 7.0, 7.1, hhvm]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Revert. See #262 (comment).


env:
- WEBDRIVER=selenium
Expand Down Expand Up @@ -35,7 +35,7 @@ before_script:
# Start a webserver for web fixtures. Force using PHP 5.6 to be able to run it on PHP 5.3 and HHVM jobs too
- MINK_PHP_BIN=~/.phpenv/versions/5.6/bin/php vendor/bin/mink-test-server > /dev/null 2>&1 &

script: phpunit -v --coverage-clover=coverage.clover
script: phpunit -v --coverage-clover=coverage.clover --stop-on-failure
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Revert. See #262 (comment).


after_script:
- wget https://scrutinizer-ci.com/ocular.phar
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Expand Up @@ -20,9 +20,9 @@
],

"require": {
"php": ">=5.3.1",
"behat/mink": "~1.7@dev",
"instaclick/php-webdriver": "~1.1"
"php": ">=5.5",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Revert. See #262 (comment).

"behat/mink": "~1.7@dev",
"facebook/webdriver": "~1.3"
},

"require-dev": {
Expand Down