mirror of
https://github.com/silverstripe/silverstripe-behat-extension
synced 2024-10-22 17:05:32 +02:00
2c4eb2050d
The bootstrap_file parameter specifies a PHP file that will be included between Constants.php (which is included by the composer autoloader) and Core.php (which is included by SilverStripeAwareInitializer). The goal of this setting is to provide a bit more flexibility about how behat test environments are set up. It’s the logical companion of PHPUnit’s bootstrap property.
61 lines
1.3 KiB
JSON
61 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": ">=5.3.3",
|
|
"phpunit/phpunit": "~4.8",
|
|
"behat/behat": "~2.5.0",
|
|
"behat/mink": "~1.6.0",
|
|
"behat/mink-extension": "~1.3.0",
|
|
"behat/mink-selenium2-driver": "~1.2.0",
|
|
"symfony/dom-crawler": "~2.0",
|
|
"symfony/console": "~2.0",
|
|
"symfony/config": "~2.0",
|
|
"symfony/dependency-injection": "~2.0",
|
|
"symfony/event-dispatcher": "~2.0",
|
|
"symfony/translation": "~2.0",
|
|
"symfony/yaml": "~2.0",
|
|
"symfony/finder": "~2.0",
|
|
"silverstripe/testsession": "^2.0.0-alpha2",
|
|
"silverstripe/framework": "^4.0.0-alpha2"
|
|
},
|
|
|
|
"autoload": {
|
|
"psr-0": {
|
|
"SilverStripe\\BehatExtension": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-0": {
|
|
"SilverStripe\\BehatExtension\\Tests": "tests/"
|
|
},
|
|
"classmap": [
|
|
"testsession/code",
|
|
"framework",
|
|
"vendor/phpunit/phpunit"
|
|
]
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "2.0.x-dev"
|
|
}
|
|
},
|
|
"prefer-stable": true,
|
|
"minimum-stability": "dev"
|
|
}
|