mirror of
https://github.com/silverstripe/silverstripe-behat-extension
synced 2024-10-22 17:05:32 +02:00
52 lines
1.3 KiB
JSON
52 lines
1.3 KiB
JSON
{
|
|
"name": "silverstripe/behat-extension",
|
|
"type": "behat-extension",
|
|
"description": "SilverStripe framework extension for Behat",
|
|
"keywords": [
|
|
"framework",
|
|
"web",
|
|
"bdd",
|
|
"silverstripe"
|
|
],
|
|
"homepage": "http://silverstripe.org",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Michal Ochman",
|
|
"email": "ochman.d.michal@gmail.com"
|
|
},
|
|
{
|
|
"name": "Ingo Schommer",
|
|
"email": "ingo@silverstripe.com"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": "^8.1",
|
|
"phpunit/phpunit": "^9.5",
|
|
"squizlabs/php_codesniffer": "^3.7",
|
|
"behat/behat": "^3.11.0",
|
|
"behat/mink": "^1.10.0",
|
|
"friends-of-behat/mink-extension": "^2",
|
|
"silverstripe/mink-facebook-web-driver": "^2",
|
|
"symfony/dom-crawler": "^6.1",
|
|
"silverstripe/testsession": "^3",
|
|
"silverstripe/framework": "^5",
|
|
"symfony/finder": "^6.1"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"SilverStripe\\BehatExtension\\": "src/",
|
|
"SilverStripe\\BehatExtension\\Tests\\": "tests/php/"
|
|
}
|
|
},
|
|
"extra": [],
|
|
"bin": [
|
|
"bin/behat-ss"
|
|
],
|
|
"scripts": {
|
|
"lint": "phpcs --standard=PSR2 -n src/ tests/php/"
|
|
},
|
|
"prefer-stable": true,
|
|
"minimum-stability": "dev"
|
|
}
|