Download the PHP package zowesoft/web-terminal without Composer

On this page you can find all versions of the php package zowesoft/web-terminal. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package web-terminal

đŸ–Ĩī¸ Laravel Web Terminal

A secure, browser-based terminal for Laravel applications. Run Artisan, Git, Composer and shell commands directly from your browser — perfect for shared hosting environments where SSH access is unavailable.


Features


Requirements

Note: Artisan commands work even if shell_exec is disabled, since they run in-process.


Installation

1. Install via Composer

2. Publish and run the migration

This adds two columns to your users table:

3. Grant yourself access

4. Visit the terminal

Log in with your Laravel account, paste your token when prompted, and you're in.


Publishing

You can publish various parts of the package for customisation:


Configuration

Publish the config file to customise behaviour:


Customising the UI

Publish the views to override the terminal interface:

This copies the view to resources/views/vendor/web-terminal/index.blade.php where you can freely edit it.


Environment Variables

You can configure the package via .env without publishing the config:


Security

This package uses two independent security layers:

  1. Laravel auth — user must be logged in
  2. Admin flag — is_admin must be true on the user record
  3. Terminal token — a per-user secret sent as X-Terminal-Token on every request

Recommendations:


Available Commands

Category Examples
Artisan artisan migrate --force, artisan cache:clear, artisan optimize
Git git pull origin main, git status, git log --oneline -10
Composer composer install --no-dev, composer dump-autoload
PHP/Shell php -v, ls -la, pwd
Built-in help, clear

Troubleshooting

Shell commands return no output Your host likely has shell_exec / proc_open disabled. Artisan commands will still work. Check with:

git or composer not found Add the correct binary paths to WEB_TERMINAL_PATH in your .env. Find the path with:

403 on every request Make sure you have run the migration, set is_admin = true on your user, and are sending the correct token.


License

MIT — see LICENSE for details.


All versions of web-terminal with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1
illuminate/support Version ^9.0|^10.0|^11.0|^12.0|^13.0
illuminate/routing Version ^9.0|^10.0|^11.0|^12.0|^13.0
illuminate/http Version ^9.0|^10.0|^11.0|^12.0|^13.0
illuminate/database Version ^9.0|^10.0|^11.0|^12.0|^13.0
symfony/process Version ^6.0|^7.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package zowesoft/web-terminal contains the following files

Loading the files please wait ...