The lock-symfony-version.sh script pins all symfony/* packages to the matrix version, but symfony/deprecation-contracts uses its own versioning (3.x) rather than following Symfony's major/minor scheme. Removing it as a direct dependency is safe — it is always pulled in transitively via symfony/config and others. Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
{
|
|
"name": "friends-of-behat/mink-extension",
|
|
"description": "Mink extension for Behat",
|
|
"license": "MIT",
|
|
"type": "behat-extension",
|
|
"keywords": [
|
|
"web",
|
|
"test",
|
|
"browser",
|
|
"gui"
|
|
],
|
|
"authors": [
|
|
{
|
|
"name": "Konstantin Kudryashov",
|
|
"email": "ever.zet@gmail.com"
|
|
},
|
|
{
|
|
"name": "Christophe Coevoet",
|
|
"email": "stof@notk.org"
|
|
}
|
|
],
|
|
"homepage": "https://github.com/FriendsOfBehat/MinkExtension#readme",
|
|
"require": {
|
|
"php": "^8.3",
|
|
"behat/behat": "^3.31",
|
|
"behat/mink": "^1.5",
|
|
"symfony/config": "^7.4"
|
|
},
|
|
"require-dev": {
|
|
"behat/mink-browserkit-driver": "^2.0",
|
|
"phpspec/phpspec": "^8.0",
|
|
"symfony/browser-kit": "^7.4",
|
|
"symfony/http-client": "^7.4"
|
|
},
|
|
"replace": {
|
|
"behat/mink-extension": "self.version"
|
|
},
|
|
"autoload": {
|
|
"psr-0": {
|
|
"Behat\\MinkExtension": "src/"
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "2.x-dev"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": [
|
|
"vendor/bin/phpspec run -f pretty",
|
|
"vendor/bin/behat -fprogress --strict"
|
|
]
|
|
}
|
|
}
|