You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The PHP SSH Connection package provides an elegant syntax to connect to SSH servers and execute commands. It supports both password and public-private keypair authentication, and can easily capture command output and errors.
7
+
6
8
## Installation
7
9
10
+
First, you may need to install the PHP SSH2 extension. In Ubuntu and other Debian-based systems, you can install this extension by running the following command.
11
+
12
+
```bash
13
+
sudo apt install php-ssh2
14
+
```
15
+
16
+
For other operating systems, see the [PHP SSH2 extension documentation](https://www.php.net/manual/en/book.ssh2.php).
17
+
18
+
You can then run the following Composer command to install the PHP SSH Connection package.
0 commit comments