Some checks failed
Build / PHP 8.3 + Symfony 7.4.* (pull_request) Has been cancelled
Build / PHP 8.4 + Symfony 7.4.* (pull_request) Has been cancelled
Build / PHP 8.5 + Symfony 7.4.* (pull_request) Has been cancelled
Build / Symfony 8 + PHP 8.5 consumer install (pull_request) Has been cancelled
Build / Run Psalm (pull_request) Has been cancelled
Build / Validate composer.json (pull_request) Has been cancelled
Build / Validate Coding Standards (pull_request) Has been cancelled
Build / PHP 8.3 + Symfony 7.4.* (push) Has been cancelled
Build / PHP 8.4 + Symfony 7.4.* (push) Has been cancelled
Build / PHP 8.5 + Symfony 7.4.* (push) Has been cancelled
Build / Symfony 8 + PHP 8.5 consumer install (push) Has been cancelled
Build / Run Psalm (push) Has been cancelled
Build / Validate composer.json (push) Has been cancelled
Build / Validate Coding Standards (push) Has been cancelled
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 <8.6",
|
|
"behat/behat": "^3.31 || ^4.0",
|
|
"symfony/dependency-injection": "^7.4 || ^8.0",
|
|
"symfony/http-kernel": "^7.4 || ^8.0"
|
|
},
|
|
"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.4",
|
|
"friends-of-behat/service-container-extension": "^2.0",
|
|
"sylius-labs/coding-standard": ">=4.1.1, <=4.2.1",
|
|
"symfony/browser-kit": "^7.4 || ^8.0",
|
|
"symfony/framework-bundle": "^7.4 || ^8.0",
|
|
"symfony/process": "^7.4 || ^8.0",
|
|
"symfony/yaml": "^7.4 || ^8.0",
|
|
"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.3-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"
|
|
]
|
|
}
|
|
}
|