forked from Herzult/php-ssh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.36 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.36 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
54
55
56
57
{
"name": "luka/php-ssh",
"type": "library",
"description": "Provides an object-oriented wrapper for the php ssh2 extension.",
"keywords": [
"ssh",
"ssh2"
],
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Antoine Hérault",
"homepage": "https://github.com/Herzult"
},
{
"name": "herzult/php-ssh contributors",
"homepage": "http://github.com/Herzult/php-ssh/contributors"
},
{
"name": "Axel Helmert",
"homepage": "http://www.luka.de/"
},
{
"name": "luka/php-ssh contributors",
"homepage": "http://github.com/lukanetconsult/php-ssh/contributors"
}
],
"require": {
"php": "^8.2",
"ext-ssh2": "^1.0"
},
"require-dev": {
"ext-sockets": "*",
"ext-mbstring": "*",
"phpunit/phpunit": "^10.0",
"symfony/filesystem": "^6.0",
"vimeo/psalm": "^5.9",
"phpspec/prophecy-phpunit": "^2.0"
},
"autoload": {
"psr-4": {
"Ssh\\": "src/Ssh/"
}
},
"autoload-dev": {
"psr-4": {
"SshTest\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-latest": "3.0.x-dev"
}
}
}