All Projects → alkhachatryan → laravel-web-console

alkhachatryan / laravel-web-console

Licence: MIT License
💻 Web console for your Laravel application

Programming Languages

Blade
752 projects
PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to laravel-web-console

unity-rich-text
🌈 Forget about rich text tags pain
Stars: ✭ 14 (-90.14%)
Mutual labels:  console
termgraph
terminal candle stick graph library
Stars: ✭ 62 (-56.34%)
Mutual labels:  console
console4cats
💻 Effect-type agnostic Console I/O for Cats Effect (archived, use Cats Effect 3 instead)
Stars: ✭ 55 (-61.27%)
Mutual labels:  console
asciichart-sharp
C# port of asciichart
Stars: ✭ 27 (-80.99%)
Mutual labels:  console
colored-cout
"colored cout" is a simple overloading of operator<< that allow you to print in console using 8 basic colors
Stars: ✭ 19 (-86.62%)
Mutual labels:  console
unist-util-inspect
utility to inspect nodes
Stars: ✭ 16 (-88.73%)
Mutual labels:  console
debug.js
Debugger of JavaScript, by JavaScript, for JavaScript
Stars: ✭ 19 (-86.62%)
Mutual labels:  console
jira-cli
🔥 [WIP] Feature-rich interactive Jira command line.
Stars: ✭ 809 (+469.72%)
Mutual labels:  console
acquia cli
Provides a Robo console application to the Acquia CloudAPI for managing deployment tasks and environment configuration.
Stars: ✭ 30 (-78.87%)
Mutual labels:  console
laravel-crud-generator
Laravel CRUD Generator
Stars: ✭ 181 (+27.46%)
Mutual labels:  console
webinc
Webex in console - Cisco Webex Teams Client for Linux/MacOS/Windows
Stars: ✭ 17 (-88.03%)
Mutual labels:  console
magic-console
Interactive programming for Atom
Stars: ✭ 13 (-90.85%)
Mutual labels:  console
LinuxLikeConsole
Linux Like Console written in gdscript for Godot (Game Engine)
Stars: ✭ 26 (-81.69%)
Mutual labels:  console
mautic-cron-commands
Script to run Mautic commands from a web page.
Stars: ✭ 32 (-77.46%)
Mutual labels:  console
UE4 MagicConsole
Enhanced UE4 output log widget
Stars: ✭ 71 (-50%)
Mutual labels:  console
serilog-sinks-richtextbox
A Serilog sink that writes log events to a WPF RichTextBox control with colors and theme support
Stars: ✭ 48 (-66.2%)
Mutual labels:  console
PathFinding
C# project. Realized a visualization of the pathfinding algorithms using Console (2D version), Windows Forms (2D version) and WPF (2D and 3D versions)
Stars: ✭ 18 (-87.32%)
Mutual labels:  console
pretty-routes
Display your Laravel routes in the console, but make it pretty. 😎
Stars: ✭ 627 (+341.55%)
Mutual labels:  console
ConEmuIntegration
Using the console emulator ConEmu within Visual Studio. This project integrates the console emulator ConEmu in Visual Studio.
Stars: ✭ 36 (-74.65%)
Mutual labels:  console
Yuna
Yuan企业通用后台,快速实现微后台架构
Stars: ✭ 19 (-86.62%)
Mutual labels:  console

LaravelWebConsole

Latest Version on Packagist StyleCI TESTED OS Total Downloads

Laravel Web Console is a package for Laravel applications that allow user to connect to the server via browser.

Screenshot

What is this package useful for?

Despite the fact that cloud hosting is now growing up and many people use VPS / Dedicated Server hosting, most people still use Sharing hosting without SSH connection. Using this package you can execute shell commands from your browser. Using Laravel Middleware features you can protect your system from danger from outside.

Features

  • Enable / Disable custom login
  • Multi-account support
  • Home dir selection
  • Home dir selection for multiple accounts
  • Custom password hashing

Supported Laravel Versions

  • 5.7.*
  • 5.8.*
  • 6.*
  • 7.*
  • 8.*

Installation

Manually:

  • Download the last release: https://github.com/alkhachatryan/laravel-web-console/releases/latest
  • Upload the compressed file to the server.
  • Unzip the files into /vendor/alkhachatryan/laravel-web-console (Without version number)
  • Add maintance for this package into composer autoloaders -- In /vendor/composer/autoload_namespaces.php add in the array this line:
     'Alkhachatryan\\LaravelWebConsole\\' => array($vendorDir . '/alkhachatryan/laravel-web-console/src'),
    -- In /vendor/composer/autoload_psr4.php add in the array this line:
     'Alkhachatryan\\LaravelWebConsole\\' => array($vendorDir . '/alkhachatryan/laravel-web-console/src'),
  • Update the /config/app.php and add the service provider into providers array
    Alkhachatryan\LaravelWebConsole\LaravelWebConsoleServiceProvider::class,
  • Remove the cache: delete the following files: /bootstrap/cache/packages.php /bootstrap/cache/services.php

Or Via Composer:

$ composer require alkhachatryan/laravel-web-console

Configuration

Publish the config file

  • Copy /vendor/alkhachatryan/laravel-web-console/config file to your /config folder

    OR via command line:

    php artisan vendor:publish --tag=webconsole
  • Edit the /config/laravelwebconsole.php file, create your credentials in .env file.

        // Single-user credentials (REQUIRED)
        'user' => [
            'name' => env('CONSOLE_USER_NAME', 'root'),
            'password' => env('CONSOLE_USER_PASSWORD', 'root')
        ],

!!! ATTENTION !!!! These user credentials ARE NOT your server user credentials. You can type here everything you want. This method of custom login is a small addition in the protection. Anyway you can disable it. Set no_login value TRUE

     // Disable login (don't ask for credentials, be careful)
    'no_login' => true,

Usage

use Alkhachatryan\LaravelWebConsole\LaravelWebConsole;

class HomeController extends Controller
{
    public function index() {
       return LaravelWebConsole::show();
    }
}

Change log

Please see the changelog for more information on what has changed recently.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

Open source tools included

License

MIT. Please see the license file for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].