Pure PHP SSH server

The simplest way to build PHP SSH apps

use Whisp\Server;

$server = new Server(port: 2020);

$server->run(apps: [
    'default' => __DIR__.'/examples/hello-world.php',
    'guestbook' => __DIR__.'/examples/guestbook.php',
    'chat-{roomName}' => __DIR__.'/chat.php',
]);