Laravel 10.x以降のartisanの「help」コマンドを解説します。
Description
コマンドのヘルプを表示します。
Usage
php artisan help [--format FORMAT] [--raw] [--] [<command_name>]
Arguments
引数 | 必須 | 説明 |
---|---|---|
command_name | - | コマンド名 |
Options
オプション | 省略形 | 必須 | 説明 |
---|---|---|---|
format | - | 必須 | 出力形式を指定します。(デフォルトはtxt) |
raw | - | - | 1行に1コマンドのヘルプを出力します。 |
Example
no options
php artisan help about
Description:
Display basic information about your application
Usage:
about [options]
Options:
--only[=ONLY] The section to display
--json Output the information as JSON
-h, --help Display help for the given command. When no command is given display help for the list command
-q, --quiet Do not output any message
-V, --version Display this application version
--ansi|--no-ansi Force (or disable --no-ansi) ANSI output
-n, --no-interaction Do not ask any interactive question
--env[=ENV] The environment the command should run under
-v|vv|vvv, --verbose Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
コメント