-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 950 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
36
37
{
"name": "faraweilyas/sshbunny",
"type": "library",
"description": "PHP library that provides an object-oriented wrapper to connect to SSH and run shell commands with the php ssh2 extension.",
"keywords": ["ssh", "ssh connector", "shell", "shell commands"],
"homepage": "https://github.com/faraweilyas/sshbunny",
"license": "MIT",
"authors": [
{
"name": "Farawe iLyas",
"email": "faraweilyas@gmail.com"
}
],
"support": {
"email": "faraweilyas@gmail.com",
"issues": "https://github.com/faraweilyas/sshbunny/issues"
},
"autoload": {
"psr-4": {
"SSHBunny\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"require-dev": {
"phpunit/phpunit": "^6.4"
},
"scripts": {
"tests": "phpunit"
},
"config": {
"optimize-autoloader": true
}
}