keis/just-ssh

libssh2 wrapper with minimal extra baggage

Maintainers

Package info

github.com/keis/JustSSH

pkg:composer/keis/just-ssh

Statistics

Installs: 240

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

0.1.2 2013-04-29 08:10 UTC

This package is not auto-updated.

Last update: 2026-02-23 17:56:49 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