This repository has been archived by the owner on Mar 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
58 lines (58 loc) · 1.94 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
51
52
53
54
55
56
57
58
{
"name": "edno/codeception-secureshell",
"description": "Codeception extension providing SSH capabilitie: SSH command, SSH file transfer, SSH tunneling",
"keywords": ["codeception", "extension", "ssh", "scp"],
"homepage": "https://github.com/edno/codeception-secureshell",
"license": "MIT",
"authors": [
{
"name": "Gregory Heitz",
"email": "edno@edno.io"
}
],
"require": {
"php": "^5.6 || ^7.0",
"ext-ssh2": ">=0.13",
"codeception/codeception": ">=2.2"
},
"require-dev": {
"satooshi/php-coveralls": "^2.1",
"victorjonsson/markdowndocs": "dev-master"
},
"autoload": {
"psr-4": {
"Codeception\\Extension\\": "src/"
}
},
"config": {
"preferred-install": "dev"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"docker-build": "docker build -t codecept/secureshell tests/_data/docker/",
"docker-run": [
"docker run -d -p 127.0.0.1:32768:22 --name codecept_secureshell codecept/secureshell",
"docker ps -a"
],
"docker-stop": "docker stop codecept_secureshell",
"docker-restart": "docker restart codecept_secureshell",
"docker-remove": [
"docker rm -f codecept_secureshell",
"docker rmi codecept/secureshell"
],
"setup-keys": [
"chmod 600 tests/_data/docker/keys/user001",
"ssh-add tests/_data/docker/keys/user001"
],
"setup-knownhosts": [
"ssh-keyscan -p 32768 localhost > tests/_data/knownhosts.file",
"cp tests/_data/knownhosts.file ./known_hosts"
],
"phpdoc-md": [
"rm -rf docs",
"git clone https://github.com/edno/codeception-secureshell.wiki.git docs",
"vendor/victorjonsson/markdowndocs/bin/phpdoc-md generate src > docs/Extension.md"
]
}
}