-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 980 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": "sandeshjangam/tiny-ssh-php",
"description": "Tiny SSH package that allows you to execute commands over SSH connections.",
"keywords": ["ssh", "php", "phpseclib"],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Sandesh\\Ssh\\": "src/"
}
},
"authors": [
{
"name": "Sandesh Jangam",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"phpseclib/phpseclib": "^3.0"
},
"require-dev": {
"nunomaduro/phpinsights": "^2.11",
"pestphp/pest": "^2.35"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage-html coverage",
"insights": "vendor/bin/phpinsights"
}
}