outl1ne/laravel-console-over-http

Run console commands over HTTP connection for Laravel applications.
16,343 2
Install
composer require outl1ne/laravel-console-over-http
Latest Version:2.0.4
License:MIT
Last Updated:Apr 26, 2024
Links: GitHub  ·  Packagist
Maintainer: Tarpsvo

Laravel Console over HTTP

Latest Version on Packagist Total Downloads

Run console commands over HTTP connection for Laravel applications.

Creates a route with a path /console that runs the command from HTTP parameters in a console.

Usage

In routes/web.php add a line:

ConsoleOverHttp::endpoint();

Configure an environment variable CONSOLE_OVER_HTTP_TOKEN to secure the endpoint.

Visit the route in your app, e.g. http://localhost:4000/console?command=php%20artisan%20inspire&token=your-token

Example - insecure usage

ConsoleOverHttp::endpoint()->insecure();

Or set the environment variable CONSOLE_OVER_HTTP_INSECURE=true.

Example - custom authentication logic

ConsoleOverHttp::endpoint()->auth(function () {
    return \Auth::check();
});

Installation

Install the package in a Laravel project via Composer:

composer require outl1ne/laravel-console-over-http

Credits

License

Laravel Console over HTTP is open-sourced software licensed under the MIT license.

Related Packages

optimistdigital/laravel-console-over-http

Run console commands over HTTP connection for Laravel applications.

12,568 2
recca0120/terminal

run laravel artisan command in web application

422,680 877
darsain/laravel-console

Browser console for Laravel Framework.

57,253 167
dusterio/laravel-verbose

Package that adds verbosity to Laravel/Lumen built-in console commands

6,292 6
emir/laravel-webartisan

Web artisan allows to run artisan console commands using a browser

913 57