mirror of
https://github.com/silverstripe/silverstripe-testsession
synced 2024-10-22 14:06:00 +02:00
41 lines
1011 B
JSON
41 lines
1011 B
JSON
{
|
|
"name": "silverstripe/testsession",
|
|
"type": "silverstripe-vendormodule",
|
|
"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": {
|
|
"composer/installers": "*",
|
|
"silverstripe/framework": "^4@dev",
|
|
"silverstripe/vendor-plugin": "^1.3"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"2.x-dev": "2.2.x-dev"
|
|
},
|
|
"expose": [
|
|
"client"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"lint": "phpcs -s src/ tests/"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"SilverStripe\\TestSession\\": "src/",
|
|
"SilverStripe\\TestSession\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"minimum-stability": "dev"
|
|
}
|