-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
54 lines (54 loc) · 1.49 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
{
"prefer-stable": true,
"name": "fpoirotte/pssht",
"description": "SSH server library written in PHP",
"keywords": ["SSH", "server", "secure", "shell"],
"homepage": "https://github.com/fpoirotte/pssht",
"license": "MIT",
"authors": [
{
"name": "François Poirotte",
"email": "[email protected]",
"role": "lead"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/fpoirotte/pssht/issues",
"irc": "irc://irc.iiens.net/Erebot",
"source": "https://github.com/fpoirotte/pssht"
},
"require": {
"php": ">=5.3.3",
"ext-openssl": "*",
"ext-mcrypt": "*",
"ext-gmp": "*",
"symfony/dependency-injection": "*",
"symfony/config": "*",
"erebot/plop": "~0.5"
},
"require-dev": {
"phing/phing": "*",
"phpmd/phpmd": "*",
"sebastian/phpcpd": "*",
"phpunit/phpunit": "<4",
"squizlabs/php_codesniffer": "*",
"erebot/buildenv": "~1.2.0"
},
"suggest": {
"ext-http": "Add zlib-compression support (~1.0)",
"ext-hash": "Add support for various additional algorithms",
"ext-posix": "Improve detection of user running pssht"
},
"autoload": {
"psr-4": {
"fpoirotte\\Pssht\\": "src/"
}
},
"bin": ["bin/pssht"],
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}