ssh
ssh copied to clipboard
A lightweight package to execute commands over an SSH connection
When I do: ``` $process = Ssh::create('root', 'host_ip_here')->execute('whoami') ->usePrivateKey('/home/user/.ssh/id_rsa'); $result = [ 'isSuccessful' => $process->isSuccessful(), 'output' => $process->getOutput(), ]; dd($result); ``` I get the error: ``` Call to undefined method...
Introduce optional password support in the Ssh class through the constructor and a new usePassword method. Updated README to document these changes and added relevant test cases. #100
I cannot update the CI, since the tooling this project uses does not support PHP 8.4. I patched my vendor to be able to run the tests. I was able...
# Allow to run ssh commands to localhost TL;DR: as a user I might want to run SSH commands to a local Docker container. For this, I would propose to...
Hey guys im facing an odd issue and unsure if its related to this pack im using Currently i have two symfony commands setup, the first command SSH' onto a...