2012-12-19 14:20:06 +01:00
|
|
|
{
|
2017-11-28 01:19:02 +01:00
|
|
|
"name": "silverstripe/testsession",
|
2018-03-07 00:04:11 +01:00
|
|
|
"type": "silverstripe-vendormodule",
|
2017-11-28 01:19:02 +01:00
|
|
|
"description": "Support module for browser-based test sessions, e.g. for Behat behaviour testing",
|
|
|
|
"homepage": "http://silverstripe.org",
|
|
|
|
"license": "BSD-3-Clause",
|
|
|
|
"keywords": [
|
|
|
|
"silverstripe",
|
|
|
|
"testing"
|
|
|
|
],
|
|
|
|
"authors": [
|
|
|
|
{
|
|
|
|
"name": "SilverStripe",
|
|
|
|
"homepage": "http://silverstripe.com"
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"require": {
|
2018-06-08 06:05:00 +02:00
|
|
|
"silverstripe/framework": "^5",
|
2018-03-07 00:04:11 +01:00
|
|
|
"silverstripe/vendor-plugin": "^1.3"
|
2017-11-28 01:19:02 +01:00
|
|
|
},
|
2020-03-26 17:46:18 +01:00
|
|
|
"require-dev": {
|
|
|
|
"phpunit/phpunit": "^8 || ^9"
|
|
|
|
},
|
2017-11-28 01:20:08 +01:00
|
|
|
"extra": {
|
2018-03-07 00:04:11 +01:00
|
|
|
"expose": [
|
|
|
|
"client"
|
|
|
|
]
|
2017-11-28 01:20:08 +01:00
|
|
|
},
|
2017-11-28 01:19:02 +01:00
|
|
|
"scripts": {
|
|
|
|
"lint": "phpcs -s src/ tests/"
|
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
|
|
|
"SilverStripe\\TestSession\\": "src/",
|
|
|
|
"SilverStripe\\TestSession\\Tests\\": "tests/"
|
|
|
|
}
|
|
|
|
},
|
2020-03-26 17:46:18 +01:00
|
|
|
"minimum-stability": "dev",
|
|
|
|
"prefer-stable": true
|
2014-07-21 00:14:56 +02:00
|
|
|
}
|