PHPackages                             laragear/artisan-ui - 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. [CLI &amp; Console](/categories/cli)
4. /
5. laragear/artisan-ui

ActiveLibrary[CLI &amp; Console](/categories/cli)

laragear/artisan-ui
===================

Interactive Artisan command browser UI

v1.0.0(1mo ago)00MITPHPPHP ^8.3CI passing

Since May 8Pushed 1mo agoCompare

[ Source](https://github.com/Laragear/ArtisanUi)[ Packagist](https://packagist.org/packages/laragear/artisan-ui)[ Fund](https://github.com/sponsors/DarkGhostHunter)[ Fund](https://paypal.me/darkghosthunter)[ RSS](/packages/laragear-artisan-ui/feed)WikiDiscussions 1.x Synced 1w ago

READMEChangelog (1)Dependencies (7)Versions (2)Used By (0)

Artisan UI
==========

[](#artisan-ui)

[![Latest Version on Packagist](https://camo.githubusercontent.com/4c2a7d0aadc4f24b518dfb3e18bf465445f864dc5ad1aa46d4324724386abb8d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c617261676561722f6172746973616e2d75692e737667)](https://packagist.org/packages/laragear/artisan-ui)[![Latest stable test run](https://github.com/Laragear/ArtisanUi/workflows/Tests/badge.svg)](https://github.com/Laragear/ArtisanUi/actions)[![Codecov coverage](https://camo.githubusercontent.com/49bfee8b82471a017ee0250cb6847694ae308ef9f7660029d1f953849e2e3c70/68747470733a2f2f636f6465636f762e696f2f67682f4c617261676561722f4172746973616e55692f67726170682f62616467652e7376673f746f6b656e3d6d61494e55656b37756c)](https://codecov.io/gh/Laragear/ArtisanUi)[![Maintainability](https://camo.githubusercontent.com/3ee27051c11bc069fc5266e2c1e40277cf0b275ee80201d5329ef17ab97c3ca3/68747470733a2f2f716c74792e73682f67682f4c617261676561722f70726f6a656374732f4172746973616e55692f6d61696e7461696e6162696c6974792e737667)](https://qlty.sh/gh/Laragear/projects/ArtisanUi)[![Sonarcloud Status](https://camo.githubusercontent.com/e0855f9311e588a73e125783c5f42a7737977969e7de7133a4d1daf8c0b0045a/68747470733a2f2f736f6e6172636c6f75642e696f2f6170692f70726f6a6563745f6261646765732f6d6561737572653f70726f6a6563743d4c617261676561725f4172746973616e5569266d65747269633d616c6572745f737461747573)](https://sonarcloud.io/dashboard?id=Laragear_ArtisanUi)

Interactive Artisan command browser UI.

```
> php artisan ui

┌ ⚡ Laragear Artisan UI ──────────────────────────────────────┐
│ ab                                                           │
├──────────────────────────────────────────────────────────────┤
│ › about                                                    ┃ │
│   auth:clear-resets                                        │ │
│   serve                                                    │ │
│   vendor:publish                                           │ │
│   schedule:list                                            │ │
└──────────── Display basic information about your application ┘

```

Keep this package free
----------------------

[](#keep-this-package-free)

[![](.github/assets/support.png)](https://github.com/sponsors/DarkGhostHunter)

Your support allows me to keep this package free, up-to-date and maintainable. Alternatively, you can **spread the word on social media**.

Requirements
------------

[](#requirements)

- PHP 8.3 or later
- Laravel 12 or later

How does this work?
-------------------

[](#how-does-this-work)

Artisan UI is an interactive command browser for Laravel. It adds a rich, searchable terminal interface with fuzzy search using Laravel Prompts.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require laragear/artisan-ui
```

You can publish the config file with:

```
php artisan vendor:publish --provider=Laragear\ArtisanUi\ArtisanUiServiceProvider --tag="config"
```

Usage
-----

[](#usage)

Simply run `php artisan` without any arguments to launch the interactive UI.

Alternatively, you can call the `ui` command explicitly:

```
php artisan ui
```

### Show hidden commands

[](#show-hidden-commands)

By default, commands that are set to be hidden are not shown in the suggestion list. If you wish to show these commands, use the `--show-hidden` flag.

```
php artisan ui --show-hidden
```

Note

Hidden commands are still executable. The command input does not pose restrictions on what command to run.

Zed Editor Task
---------------

[](#zed-editor-task)

If you're using Zed, you will notice that tasks do not accept arguments. Laragear Artisan UI fixes this problem by showing a command browser. Simply add this task to your editor and you're all set.

```
{
    "label": "laragear artisan ui",
    "command": "php",
    "reveal": "always",
    "save": "all",
    "args": [
      "$ZED_WORKTREE_ROOT/artisan",
      "ui"
    ]
}
```

If you're using a remote container for PHP like [Laragear/PHP](https://github.com/Laragear/php), you can use *Docker* (or similar container runtime like [Podman](https://podman.io/) or [Rancher](https://www.rancher.com/)):

```
{
    "label": "laravel artisan",
    "command": "docker",
    "reveal": "always",
    "save": "all",
    "args": [
        "run",
        "--rm",
        "-v",
        "$ZED_WORKTREE_ROOT:/app",
        "-u",
        "1000:1000",
        "-w",
        "/app",
        "-it",
        "laragear/php",
        "/usr/local/bin/php",
        "/app/artisan"
    ]
}
```

Tip

For more information, check out the [Zed Editor tasks documentation](https://zed.dev/docs/tasks).

Security
--------

[](#security)

If you discover any security-related issues, please issue a security advisory.

License
=======

[](#license)

This specific package version is licensed under the terms of the [MIT License](LICENSE.md), at the time of publishing.

[Laravel](https://laravel.com) is a Trademark of [Taylor Otwell](https://github.com/TaylorOtwell/). Copyright © 2011–2026 Laravel LLC.

###  Health Score

39

—

LowBetter than 84% of packages

Maintenance94

Actively maintained with recent releases

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

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

32d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/5141911?v=4)[Italo](/maintainers/DarkGhostHunter)[@DarkGhostHunter](https://github.com/DarkGhostHunter)

---

Top Contributors

[![DarkGhostHunter](https://avatars.githubusercontent.com/u/5141911?v=4)](https://github.com/DarkGhostHunter "DarkGhostHunter (2 commits)")

---

Tags

clilaraveluiartisaninteractive

### Embed Badge

![Health badge](/badges/laragear-artisan-ui/health.svg)

```
[![Health](https://phpackages.com/badges/laragear-artisan-ui/health.svg)](https://phpackages.com/packages/laragear-artisan-ui)
```

###  Alternatives

[laravel/ai

The official AI SDK for Laravel.

9782.1M153](/packages/laravel-ai)[spatie/laravel-responsecache

Speed up a Laravel application by caching the entire response

2.8k8.7M64](/packages/spatie-laravel-responsecache)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9732.3M121](/packages/roots-acorn)[propaganistas/laravel-disposable-email

Disposable email validator

6012.9M7](/packages/propaganistas-laravel-disposable-email)[livewire/flux

The official UI component library for Livewire.

9466.8M119](/packages/livewire-flux)[nunomaduro/laravel-console-menu

Laravel Console Menu is an output method for your Laravel/Laravel Zero commands.

816424.6k51](/packages/nunomaduro-laravel-console-menu)

PHPackages © 2026

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