-
Notifications
You must be signed in to change notification settings - Fork 82
/
composer.json
35 lines (35 loc) · 848 Bytes
/
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
{
"name": "herzult/php-ssh",
"type": "library",
"description": "Provides an object-oriented wrapper for the php ssh2 extension.",
"keywords": ["ssh", "ssh2"],
"license": "MIT",
"authors": [
{
"name": "Antoine Hérault",
"homepage": "https://github.com/Herzult"
},
{
"name": "The contributors",
"homepage": "http://github.com/Herzult/php-ssh/contributors"
}
],
"require": {
"php": ">=5.3.2",
"ext-ssh2": "*"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"symfony/filesystem": "~2.4"
},
"autoload": {
"psr-0": {
"Ssh": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}