minor #6 Add tests for Symfony 3.4, 5.1 and 5.2 (pamil)
This PR was merged into the 2.1.x-dev branch.
Discussion
----------
Commits
-------
2b77bf6cd1 Add tests for Symfony 3.4, 5.1 and 5.2
This commit is contained in:
@@ -13,11 +13,13 @@ php:
|
|||||||
- 8.0
|
- 8.0
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
- SYMFONY_VERSION=3.4.*
|
||||||
- SYMFONY_VERSION=4.4.*
|
- SYMFONY_VERSION=4.4.*
|
||||||
- SYMFONY_VERSION=5.0.*
|
- SYMFONY_VERSION=5.0.*
|
||||||
|
- SYMFONY_VERSION=5.1.*
|
||||||
|
- SYMFONY_VERSION=5.2.*
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- if [ "$SYMFONY_VERSION" = "5.0.*" ]; then composer require behat/behat:dev-master --no-update --no-scripts --prefer-dist; fi
|
|
||||||
- composer require symfony/config:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist
|
- composer require symfony/config:${SYMFONY_VERSION} --no-update --no-scripts --prefer-dist
|
||||||
- composer update --no-progress
|
- composer update --no-progress
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,12 @@
|
|||||||
"name": "friends-of-behat/mink-extension",
|
"name": "friends-of-behat/mink-extension",
|
||||||
"type": "behat-extension",
|
"type": "behat-extension",
|
||||||
"description": "Mink extension for Behat",
|
"description": "Mink extension for Behat",
|
||||||
"keywords": ["web", "test", "browser", "gui"],
|
"keywords": [
|
||||||
|
"web",
|
||||||
|
"test",
|
||||||
|
"browser",
|
||||||
|
"gui"
|
||||||
|
],
|
||||||
"homepage": "http://extensions.behat.org/mink",
|
"homepage": "http://extensions.behat.org/mink",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"authors": [
|
"authors": [
|
||||||
@@ -15,30 +20,27 @@
|
|||||||
"email": "stof@notk.org"
|
"email": "stof@notk.org"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
"require": {
|
"require": {
|
||||||
"php": ">=7.2",
|
"php": ">=7.2",
|
||||||
"behat/behat": "^3.0.5",
|
"behat/behat": "^3.0.5",
|
||||||
"behat/mink": "^1.5",
|
"behat/mink": "^1.5",
|
||||||
"symfony/config": "^3.4|^4.4|^5.0"
|
"symfony/config": "^3.4 || ^4.4 || ^5.0"
|
||||||
},
|
},
|
||||||
|
|
||||||
"require-dev": {
|
|
||||||
"behat/mink-goutte-driver": "^1.1",
|
|
||||||
"phpspec/phpspec": "^6.0"
|
|
||||||
},
|
|
||||||
|
|
||||||
"replace": {
|
"replace": {
|
||||||
"behat/mink-extension": "self.version"
|
"behat/mink-extension": "self.version"
|
||||||
},
|
},
|
||||||
|
"require-dev": {
|
||||||
"autoload": {
|
"behat/mink-goutte-driver": "^1.1",
|
||||||
"psr-0": { "Behat\\MinkExtension": "src/" }
|
"phpspec/phpspec": "^6.0 || ^7.0"
|
||||||
},
|
},
|
||||||
|
|
||||||
"extra": {
|
"extra": {
|
||||||
"branch-alias": {
|
"branch-alias": {
|
||||||
"dev-master": "2.1.x-dev"
|
"dev-master": "2.1.x-dev"
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"psr-0": {
|
||||||
|
"Behat\\MinkExtension": "src/"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user