- Drop PHP <8.3 and Symfony <7.4 (both EOL), require PHP ^8.3 and symfony/config ^7.4 - Require behat ^3.31 (first version with PHP 8 attribute and PHP config support) - Upgrade phpspec to ^8.0 (supports PHP 8.5) - Add symfony/browser-kit and symfony/http-client to dev deps; switch from deprecated goutte driver to browserkit_http - Update CI matrix: PHP 8.3/8.4/8.5 × Symfony 7.4 + PHP 8.4/8.5 × Symfony 8.0/8.1 - Add Symfony 8+ CI step: override behat to 4.x-dev as 3.31.0 - Restrict push trigger to master branch only (no duplicate runs on PRs) - Add behat.dist.php for behat 4.x compatibility (PHP config format) - Update behat.yml.dist to use FQCN extension name (works in both behat 3.x and 4.x) - Add lock-symfony-version.sh script for pinning Symfony in CI Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
56 lines
1.3 KiB
JSON
56 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",
|
|
"symfony/deprecation-contracts": "^3.0"
|
|
},
|
|
"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"
|
|
]
|
|
}
|
|
}
|