PHPackages                             dusterio/laravel-verbose - 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. dusterio/laravel-verbose

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

dusterio/laravel-verbose
========================

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

0.1.6(8y ago)66.3kMITPHPPHP &gt;=5.5.0

Since Apr 11Pushed 8y ago1 watchersCompare

[ Source](https://github.com/dusterio/laravel-verbose)[ Packagist](https://packagist.org/packages/dusterio/laravel-verbose)[ Docs](https://github.com/dusterio/laravel-verbose)[ RSS](/packages/dusterio-laravel-verbose/feed)WikiDiscussions master Synced 4w ago

READMEChangelog (7)Dependencies (3)Versions (8)Used By (0)

laravel-verbose
===============

[](#laravel-verbose)

[![Latest Stable Version](https://camo.githubusercontent.com/b0c4708e62d6f175684ae76ff878b828726de1f633b368441474e234a1ddc8ed/68747470733a2f2f706f7365722e707567782e6f72672f647573746572696f2f6c61726176656c2d766572626f73652f762f737461626c65)](https://packagist.org/packages/dusterio/laravel-verbose)[![Total Downloads](https://camo.githubusercontent.com/2c0dacaeec8de96cc6b766e0f343a79436fd506af546ce21f28ff6f674865076/68747470733a2f2f706f7365722e707567782e6f72672f647573746572696f2f6c61726176656c2d766572626f73652f646f776e6c6f616473)](https://packagist.org/packages/dusterio/laravel-verbose)[![License](https://camo.githubusercontent.com/38eff001ba127f9db004ac07d82d22ce3c6877a15dbbce7367b609e3308e0003/68747470733a2f2f706f7365722e707567782e6f72672f647573746572696f2f6c61726176656c2d766572626f73652f6c6963656e7365)](https://packagist.org/packages/dusterio/laravel-verbose)

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

[![Laravel Verbose in action](https://camo.githubusercontent.com/add60ff2345244594f16e75d3c4259e1a3a5a067a77c6bafd53404799a6fcfd0/68747470733a2f2f7777772e6d7973656e6b6f2e636f6d2f696d616765732f6c61726176656c2d766572626f7365322e676966)](https://camo.githubusercontent.com/add60ff2345244594f16e75d3c4259e1a3a5a067a77c6bafd53404799a6fcfd0/68747470733a2f2f7777772e6d7973656e6b6f2e636f6d2f696d616765732f6c61726176656c2d766572626f7365322e676966)

Overview
--------

[](#overview)

Even though Laravel console commands have verbosity flags `-v/-vv/-vvv` they are actually ignored. Therefore, using some of the console commands leaves developer completely blind – you have no idea what's happening behind the scenes.

Example running `queue:work` without this package:

```
$ php artisan queue:work --once
$
```

What? Did it work or not? Was there a job in the queue or not? Why did it take several seconds to complete - does it mean it actually worked? What queue or connection did it use because I don't remember if I set them correctly?

Reminds of Microsoft products uh? :)

Example running `queue:work` after installing this package:

```
$ php artisan queue:work -vv
Using connection: sqs
Using queue: live-visits
The queue seems to be empty.
Sleeping for 3 seconds.
```

Let's now break AWS credentials so that SQS is unreachable:

```
$ php artisan queue:work -vv
Using connection: sqs
Using queue: live-visits
Error executing "ReceiveMessage" on "https://sqs.ap-southeast-2.amazonaws.com/XXX/live-visits"; AWS HTTP error...
Couldn't fetch a job from the queue. See the log file for more information.
```

Voilà! Now I know exactly what happened in both cases, and now `-vv` flag did exactly what it was supposed to do.

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

[](#installation)

```
$ composer require dusterio/laravel-verbose
```

Then add a service provider to your `config/app.php`:

```
  /* ... */
  Dusterio\LaravelVerbose\Integrations\LaravelServiceProvider::class,
  /* ... */
```

Compatibility
-------------

[](#compatibility)

So far tested with:

- Laravel 5.4
- Laravel 5.3 (`queue:work` only at the moment)
- Lumen 5.4

Currently supported (read extended) commands
--------------------------------------------

[](#currently-supported-read-extended-commands)

- `queue:work`
- `queue:listen`

###  Health Score

29

—

LowBetter than 57% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity23

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

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 ~51 days

Recently: every ~77 days

Total

7

Last Release

3061d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/a44ee42fe69a7926153637c0249b0faf83a1a67edd1231f449a74dcf5721c345?d=identicon)[dusterio](/maintainers/dusterio)

---

Top Contributors

[![dusterio](https://avatars.githubusercontent.com/u/11039918?v=4)](https://github.com/dusterio "dusterio (18 commits)")

---

Tags

laravellumenverboseverbosityphpconsolelaravelverboseverbosity

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/dusterio-laravel-verbose/health.svg)

```
[![Health](https://phpackages.com/badges/dusterio-laravel-verbose/health.svg)](https://phpackages.com/packages/dusterio-laravel-verbose)
```

###  Alternatives

[nunomaduro/collision

Cli error handling for console/command-line PHP applications.

4.7k348.7M10.5k](/packages/nunomaduro-collision)[nunomaduro/laravel-console-menu

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

815424.6k52](/packages/nunomaduro-laravel-console-menu)[nunomaduro/laravel-console-task

Laravel Console Task is a output method for your Laravel/Laravel Zero commands.

2592.3M13](/packages/nunomaduro-laravel-console-task)[nunomaduro/laravel-console-summary

A Beautiful Laravel Console Summary for your Laravel/Laravel Zero commands.

672.2M4](/packages/nunomaduro-laravel-console-summary)[nunomaduro/laravel-console-dusk

Laravel Console Dusk allows the usage of Laravel Dusk in Laravel/Laravel Zero artisan commands.

16357.3k8](/packages/nunomaduro-laravel-console-dusk)[rahul900day/laravel-console-spinner

Laravel Console Spinner is a spinner output for Laravel command line.

76128.8k1](/packages/rahul900day-laravel-console-spinner)

PHPackages © 2026

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