keis/just-ssh

libssh2 wrapper with minimal extra baggage

Maintainers

Details

github.com/keis/JustSSH

Source

Issues

Installs: 240

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/keis/just-ssh

0.1.2 2013-04-29 08:10 UTC

This package is not auto-updated.

Last update: 2025-10-06 16:04:56 UTC


README

libssh2 wrapper with minimal extra baggage.

Usage

$client = new \JustSSH\Client;
$client->connect('your-host');
$client->authenticate(
    new \JustSSH\PasswordAuthentication('username', 'password'));

$stream = $client->execute("cowsay 'Moo!'");
// do something with output