Files
friends-of-behat-mink-exten…/composer.json
Kamil Kokot 3c40979f38 feature #3 Support Symfony 3.4 (LTS) (johanwilfer)
This PR was merged into the 2.1.x-dev branch.

Discussion
----------

behatch/contexts relies on your fork (thanks for fixing PHP compability!), but in one project we still use Symfony 3.4 (LTS). This adds compatibility with that. 

Would be great if a minor version could be released with this so I can remove my fork that now publish a version we use with a repository override in composer.json
```
    "repositories": [
        {
            "type": "vcs",
            "url": "https://github.com/johanwilfer/MinkExtension"
        }
    ],
```

Commits
-------

4613f91427 Update composer.json
a0559e1455 Update composer.json
f4c2fcf345 Update composer.json
2021-01-21 10:07:29 +01:00

45 lines
993 B
JSON

{
"name": "friends-of-behat/mink-extension",
"type": "behat-extension",
"description": "Mink extension for Behat",
"keywords": ["web", "test", "browser", "gui"],
"homepage": "http://extensions.behat.org/mink",
"license": "MIT",
"authors": [
{
"name": "Konstantin Kudryashov",
"email": "ever.zet@gmail.com"
},
{
"name": "Christophe Coevoet",
"email": "stof@notk.org"
}
],
"require": {
"php": ">=7.2",
"behat/behat": "^3.0.5",
"behat/mink": "^1.5",
"symfony/config": "^3.4|^4.4|^5.0"
},
"require-dev": {
"behat/mink-goutte-driver": "^1.1",
"phpspec/phpspec": "^6.0"
},
"replace": {
"behat/mink-extension": "self.version"
},
"autoload": {
"psr-0": { "Behat\\MinkExtension": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev"
}
}
}