thicha0/laravel-documentation-commands

A command to generate a documentation of commands of your project

Installs: 653

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

Language:Blade

pkg:composer/thicha0/laravel-documentation-commands

1.0.3 2024-11-06 13:10 UTC

This package is auto-updated.

Last update: 2025-11-06 15:23:20 UTC


README

This package adds a laravel command that allows you to generate a HTML file that lists all your commands.

https://packagist.org/packages/thicha0/laravel-documentation-commands

How to use ?

composer require thicha0/laravel-documentation-commands

Add the ServiceProvider to your config/app.php

'providers' => [
  ...
      Thicha0\LaravelDocumentationCommands\LaravelDocumentationCommandsServiceProvider::class,
  ...
]

The new command php artisan generate:documentation-commands should appear in the php artisan list command.

When launching the command, the HTML file will be generated to public/documentation-commands.html.

Features

  • Show signature and description of command
  • Group commands by directory
  • Ignores abstract commands
  • Show if command is called a cron in Laravel Scheduler