-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.46 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"name": "terminus-plugin-project/terminus-wraith-plugin",
"description": "Wraith - A Terminus plugin to assist with visual regression testing of Pantheon site environments.",
"homepage": "https://github.com/terminus-plugin-project/terminus-wraith-plugin",
"authors": [
{
"name": "Ed Reel",
"email": "edreel@gmail.com",
"homepage": "https://github.com/uberhacker",
"role": "Developer"
}
],
"type": "terminus-plugin",
"keywords": [
"pantheon",
"terminus",
"regression",
"testing",
"wraith",
"plugin"
],
"support": {
"issues": "https://github.com/terminus-plugin-project/terminus-wraith-plugin/issues"
},
"license": "MIT",
"require": {
"php": "^5.5 || ^7.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.7"
},
"scripts": {
"install-bats": "if [ ! -f bin/bats ] ; then git clone https://github.com/sstephenson/bats.git; mkdir -p bin; bats/install.sh .; fi",
"bats": "TERMINUS_PLUGINS_DIR=.. bin/bats tests",
"cs": "phpcs --standard=PSR2 -n src",
"cbf": "phpcbf --standard=PSR2 -n src",
"test": [
"@install-bats",
"@bats"
]
},
"autoload": {
"psr-4": { "TerminusPluginProject\\TerminusWraith\\": "src" }
},
"extra": {
"terminus": {
"compatible-version": "^1"
}
}
}