2012-08-15 16:50:19 +02:00
|
|
|
{
|
2017-11-28 01:08:03 +01: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": {
|
2017-12-17 12:49:56 +01:00
|
|
|
"php": ">=7.1",
|
|
|
|
"phpunit/phpunit": "^7@dev",
|
2017-11-28 01:08:03 +01:00
|
|
|
"behat/behat": "^3.2",
|
|
|
|
"behat/mink": "^1.7",
|
|
|
|
"behat/mink-extension": "^2.1",
|
2018-03-15 23:52:01 +01:00
|
|
|
"silverstripe/mink-facebook-web-driver": "^1",
|
2017-11-28 01:08:03 +01:00
|
|
|
"symfony/dom-crawler": "^3",
|
2017-11-28 01:11:20 +01:00
|
|
|
"silverstripe/testsession": "^3",
|
|
|
|
"silverstripe/framework": "^5",
|
2017-11-28 01:08:03 +01:00
|
|
|
"symfony/finder": "^3.2"
|
2014-08-02 08:30:27 +02:00
|
|
|
},
|
2017-11-28 01:08:03 +01:00
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"SilverStripe\\BehatExtension\\": "src/"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
|
|
|
"SilverStripe\\BehatExtension\\Tests\\": "tests/php/"
|
|
|
|
}
|
|
|
|
},
|
2017-11-28 01:09:17 +01:00
|
|
|
"extra": {
|
|
|
|
"branch-alias": {
|
2018-04-12 01:50:07 +02:00
|
|
|
"dev-master": "5.x-dev"
|
2017-11-28 01:09:17 +01:00
|
|
|
}
|
|
|
|
},
|
2018-03-15 23:42:37 +01:00
|
|
|
"bin": [
|
|
|
|
"bin/behat-ss"
|
|
|
|
],
|
2017-11-28 01:08:03 +01:00
|
|
|
"scripts": {
|
|
|
|
"lint": "phpcs --standard=PSR2 -n src/ tests/php/"
|
|
|
|
},
|
|
|
|
"prefer-stable": true,
|
|
|
|
"minimum-stability": "dev"
|
2012-11-17 01:51:41 +01:00
|
|
|
}
|