blessedjasonmwanza / artisan-ui
GUI package for managing and monitoring Laravel artisan commands and their output
Package info
github.com/blessedjasonmwanza/artisan-ui
Language:JavaScript
pkg:composer/blessedjasonmwanza/artisan-ui
Requires
- php: >=8.1
- illuminate/support: >=10.0
- laravel/framework: >=10.0
- symfony/process: >=6.0
Requires (Dev)
- orchestra/testbench: ^8.0|^9.0
- pestphp/pest: ^2.0|^3.0
- dev-main
- v1.0.43
- v1.0.42
- v1.0.41
- v1.0.40
- v1.0.39
- v1.0.38
- v1.0.37
- v1.0.36
- v1.0.35
- v1.0.34
- v1.0.33
- v1.0.32
- v1.0.31
- v1.0.30
- v1.0.29
- v1.0.28
- v1.0.27
- v1.0.26
- v1.0.25
- v1.0.24
- v1.0.23
- v1.0.22
- v1.0.21
- v1.0.19
- v1.0.18
- v1.0.17
- v1.0.16
- v1.0.15
- v1.0.14
- v1.0.13
- v1.0.12
- v1.0.11
- v1.0.10
- v1.0.9
- v1.0.8
- v1.0.7
- v1.0.6
- v1.0.5
- v1.0.4
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
This package is auto-updated.
Last update: 2026-04-17 23:00:06 UTC
README
Artisan UI is a production-grade Laravel package that provides a secure, modern web-based interface for your Artisan commands. No more typing in the terminal—manage your application through a beautiful graphical UI.
Features
- 🚀 Dynamic Discovery: Automatically finds all your Artisan commands.
- 🛡️ Secure by Default: Standalone authentication system and command filtering.
- 📊 Live Console: See command output in real-time as if you were in the terminal.
- 📱 Modern Design: Built with React and Radix Themes for a premium feel.
- 🕵️ Audit Logs: Full history of every command executed, who ran it, and what the output was.
Requirements
- PHP 8.1+
- Laravel 10.0, 11.0, or 12.0+
Note
PHP Version Support: Artisan UI supports PHP 8.1 and all future versions. If you encounter installation issues with a newer PHP version, see Installation Troubleshooting Guide.
Installation
Getting started is simple. Artisan UI features Zero-Config Installation—it handles everything automatically.
1. Install via Composer
Run the following command in your terminal:
composer require blessedjasonmwanza/artisan-ui
2. Publish Assets and Run migrations
php artisan artisan-ui:install
2. Access the Dashboard
Navigate to /artisan-ui in your browser.
The package will automatically handle:
- Publishing assets and configuration files.
- Running database migrations.
- Setting up your first administrator account on the setup page.
No manual commands needed! Everything runs on first access after installation or update.
Tip
Manual Installation: If you ever need to manually trigger installation, use:
php artisan artisan-ui:install
Or publish assets individually:
php artisan vendor:publish --tag=artisan-ui-assets --force php artisan vendor:publish --tag=artisan-ui-config --force
Uninstallation: To remove the package completely:
php artisan artisan-ui:install --uninstall
This will remove published assets, configuration files, and optionally drop database tables.
Configuration
You can customize the package by editing config/artisan-ui.php.
Command Whitelist/Blacklist
Control which commands are visible in the UI:
'commands' => [ 'only' => [], // Leave empty to show all 'exclude' => [ 'tinker', 'up', 'down', ], ],
Path & Middleware
Change the URL or add your own security layers:
'path' => 'my-custom-artisan-path', 'middleware' => ['web', 'auth'],
Security
- No Shell Execution: We use
symfony/processto run only legitimate Laravel commands. - Standalone Auth: Artisan UI doesn't touch your main
userstable. It uses its own secure authentication. - Input Validation: All arguments and options are strictly validated before execution.
License
The MIT License (MIT). Please see License File for more information.
