-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·53 lines (53 loc) · 1.28 KB
/
composer.json
File metadata and controls
executable file
·53 lines (53 loc) · 1.28 KB
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
51
52
53
{
"name": "bopdesign/terminus-scripts-plugin",
"description": "Terminus Scripts - A Terminus plugin that has commonly used commands put into aliases.",
"homepage": "https://github.com/bopdesign/terminus-scripts-plugin",
"license": "MIT",
"type": "terminus-plugin",
"authors": [
{
"name": "Aivaras Stankevicius",
"email": "aivaras@bopdesign.com",
"homepage": "https://github.com/bopdesign",
"role": "Web Developer"
}
],
"keywords": [
"pantheon",
"terminus",
"connection",
"cache",
"plugin",
"backup"
],
"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",
"@cs"
]
},
"require": {
"php": ">=5.4"
},
"require-dev": {
"squizlabs/php_codesniffer": "^2.7"
},
"support": {
"issues": "https://github.com/bopdesign/terminus-scripts-plugin/issues"
},
"autoload": {
"psr-4": {
"Pantheon\\TerminusConnectionSet\\": "src"
}
},
"extra": {
"terminus": {
"compatible-version": "^1"
}
}
}