PHPackages                             tiran133/phpwebterm - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. tiran133/phpwebterm

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

tiran133/phpwebterm
===================

Simple PHP Web Terminal for Server and Docker

0.1.1(1y ago)13MITPHPPHP ^8.0

Since Nov 29Pushed 1y ago1 watchersCompare

[ Source](https://github.com/tiran133/phpwebterm)[ Packagist](https://packagist.org/packages/tiran133/phpwebterm)[ Docs](https://github.com/tiran133/phpwebterm)[ RSS](/packages/tiran133-phpwebterm/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (7)Versions (3)Used By (0)

PHPWEBTERM
==========

[](#phpwebterm)

A simple php web terminal application with laravel support.

Install
-------

[](#install)

```
composer require tiran133/phpwebterm
```

Basic Usage
-----------

[](#basic-usage)

### PHP

[](#php)

```
require __DIR__.'/../vendor/autoload.php';

$config = [
    'port' => 8034,
    'listen' => '0.0.0.0',
    'scheme' => 'http',
    // SSL/TLS context
    'certificate' => [
        'local_cert' => 'server.crt',
        'local_pk' => 'server.key',
        'passphrase' => '',
    ],
];

//Create new websocket server
$websocketServe = new Server(new ServerConfig($config));

// Add route: Uses a simple approach to spawn the process.
$websocketServe->addRoute('/server-shell', ServerShellProcess::class);

//Startwebsocket server

$websocketServe->start();
```

### JS

[](#js)

```
import {TerminalManager} from '/../dist/TerminalManager.es.js';

// If the config is not supplied, it will read the config from ENV variable during vite build process
const config = {
    WEBSOCKET_SCHEME: 'http',
    WEBSOCKET_HOST: '127.0.0.1',
    WEBSOCKET_PORT: '8034',
}

// Instantiate and expose the manager
const terminalManager = new TerminalManager(config);

window.connectServerShell = terminalManager.newEndpoint('server-shell');

// Opens a shell to a server
window.connectServerShell({
    host: '',
    port: 22,
    username: 'dashboard',
    jump_proxy: '@:',
    ssh_key_path: ''
});
```

See `example` directory for more details.

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance38

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity34

Early-stage or recently created project

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

2

Last Release

536d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3b7a8ac9cf74424bd22ba21e2669799a7c91affdb19fc463e76afe41e024938e?d=identicon)[tiran133](/maintainers/tiran133)

### Embed Badge

![Health badge](/badges/tiran133-phpwebterm/health.svg)

```
[![Health](https://phpackages.com/badges/tiran133-phpwebterm/health.svg)](https://phpackages.com/packages/tiran133-phpwebterm)
```

###  Alternatives

[illuminate/events

The Illuminate Events package.

13454.3M1.8k](/packages/illuminate-events)[illuminate/session

The Illuminate Session package.

9937.4M753](/packages/illuminate-session)[illuminate/pagination

The Illuminate Pagination package.

10532.5M862](/packages/illuminate-pagination)[illuminate/broadcasting

The Illuminate Broadcasting package.

7126.5M178](/packages/illuminate-broadcasting)[glhd/conveyor-belt

14797.0k](/packages/glhd-conveyor-belt)[illuminate/redis

The Illuminate Redis package.

8314.0M314](/packages/illuminate-redis)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
