Skip to content
This repository was archived by the owner on Apr 20, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ cache:

env:
matrix:
- DEPS=hight
- DEPS=high
- DEPS=low

php:
Expand Down Expand Up @@ -40,8 +40,8 @@ before_script:
- cp behat.yml{.dist,}
- composer install

- test "$DEPS" == "hight" || composer update --prefer-lowest
- test "$DEPS" == "hight" || composer update atoum/atoum
- test "$DEPS" == "high" || composer update --prefer-lowest
- test "$DEPS" == "high" || composer update atoum/atoum

script:
- ./bin/atoum
Expand Down
2 changes: 1 addition & 1 deletion behat.yml.dist
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
default:
suites:
default:
paths: [ %paths.base%/tests/features ]
paths: [ '%paths.base%/tests/features' ]
contexts:
- Behat\MinkExtension\Context\MinkContext
- behatch:browser:
Expand Down
20 changes: 10 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@

"require": {
"php": ">=5.5",
"behat/behat": ">=3.0.13,<4.0",
"behat/mink-extension": "~2.0",
"justinrainbow/json-schema": "~5.0",
"symfony/property-access": "~2.3|~3.0",
"symfony/http-foundation": "~2.3|~3.0",
"symfony/dom-crawler": "~2.4|~3.0"
"behat/behat": "^3.0.13",
"behat/mink-extension": "^2.0",
"justinrainbow/json-schema": "^5.0",
"symfony/property-access": "^2.3|^3.0|^4.0",
"symfony/http-foundation": "^2.3|^3.0|^4.0",
"symfony/dom-crawler": "^2.4|^3.0|^4.0"
},

"require-dev": {
"behat/mink-goutte-driver": "~1.1",
"behat/mink-selenium2-driver": "~1.3",
"atoum/atoum": "~2.8|~3.0",
"fabpot/goutte": "~3.2"
"behat/mink-goutte-driver": "^1.1",
"behat/mink-selenium2-driver": "^1.3",
"atoum/atoum": "^2.8|^3.0",
"fabpot/goutte": "^3.2"
},

"autoload": {
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/services/http_call.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services:
tags:
- { name: behatch.context_voter }

Behatch.http_call.request:
behatch.http_call.request:
class: Behatch\HttpCall\Request
arguments: ["@mink"]

Expand Down