PHP 8.1 reached EOL in November 2024, PHP 8.2 active support ended December 2024. Symfony 6.4 LTS support continues but aligning with the Symfony 7.4 LTS-only stance simplifies the matrix and removes the separate include entry. Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
73 lines
2.1 KiB
JSON
73 lines
2.1 KiB
JSON
{
|
|
"name": "friends-of-behat/symfony-extension",
|
|
"type": "symfony-bundle",
|
|
"description": "Integrates Behat with Symfony.",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Kamil Kokot",
|
|
"email": "kamil@kokot.me",
|
|
"homepage": "https://kamilkokot.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.3",
|
|
"behat/behat": "^3.22",
|
|
"symfony/dependency-injection": "^7.4",
|
|
"symfony/http-kernel": "^7.4"
|
|
},
|
|
"require-dev": {
|
|
"behat/mink-browserkit-driver": "^2.0",
|
|
"behat/mink-selenium2-driver": "^1.3",
|
|
"behat/mink": "^1.9",
|
|
"friends-of-behat/mink-extension": "^2.5",
|
|
"friends-of-behat/page-object-extension": "^0.3.2",
|
|
"friends-of-behat/service-container-extension": "^1.1",
|
|
"sylius-labs/coding-standard": ">=4.1.1, <=4.2.1",
|
|
"symfony/browser-kit": "^7.4",
|
|
"symfony/framework-bundle": "^7.4",
|
|
"symfony/process": "^7.4",
|
|
"symfony/yaml": "^7.4",
|
|
"vimeo/psalm": "^6.0"
|
|
},
|
|
"suggest": {
|
|
"behat/mink-browserkit-driver": "^2.0",
|
|
"behat/mink": "^1.9",
|
|
"friends-of-behat/mink-extension": "^2.5"
|
|
},
|
|
"config": {
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"dealerdirect/phpcodesniffer-composer-installer": true
|
|
}
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "2.2-dev"
|
|
}
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"FriendsOfBehat\\SymfonyExtension\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Tests\\": "tests/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"analyse": [
|
|
"@composer validate --ansi --strict",
|
|
"vendor/bin/ecs check --ansi --no-progress-bar src tests || true",
|
|
"vendor/bin/psalm src --no-progress"
|
|
],
|
|
"fix": [
|
|
"vendor/bin/ecs check --ansi --no-progress-bar src tests --fix"
|
|
],
|
|
"test": [
|
|
"vendor/bin/behat -f progress --strict -vvv --no-interaction --colors"
|
|
]
|
|
}
|
|
}
|