silverstripe-behat-extension/composer.json

52 lines
1.3 KiB
JSON
Raw Normal View History

2012-08-15 16:50:19 +02:00
{
"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": {
2022-02-10 03:39:25 +01:00
"php": "^7.4 || ^8.0",
2021-10-27 06:14:44 +02:00
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3",
2021-11-07 22:28:45 +01:00
"behat/behat": "^3.9",
"behat/mink": "^1.7",
"behat/mink-extension": "^2.1",
2018-03-15 23:52:01 +01:00
"silverstripe/mink-facebook-web-driver": "^1",
"symfony/dom-crawler": "^3 || ^4",
"silverstripe/testsession": "^2.2",
2021-10-27 06:14:44 +02:00
"silverstripe/framework": "^4.10",
"symfony/finder": "^3.2 || ^4"
2014-08-02 08:30:27 +02:00
},
"autoload": {
"psr-4": {
"SilverStripe\\BehatExtension\\": "src/",
"SilverStripe\\BehatExtension\\Tests\\": "tests/php/"
}
},
2018-10-16 17:32:58 +02:00
"extra": [],
"bin": [
"bin/behat-ss"
],
"scripts": {
"lint": "phpcs --standard=PSR2 -n src/ tests/php/"
},
"prefer-stable": true,
"minimum-stability": "dev"
}