php artisan list
时间: 2023-08-12 19:03:21 浏览: 93
`php artisan list` 是 Laravel Artisan 命令的一个主要命令,它会列出所有可用的 Artisan 命令及其描述信息。使用该命令可以查看 Laravel 应用程序中所有可用的 Artisan 命令,以及它们的名称、描述和用法。
在终端中执行 `php artisan list` 命令,将会输出所有可用的 Artisan 命令列表,例如:
```
+-----------+----------------------------------+-------------------------------+
| Command | Description | Help |
+-----------+----------------------------------+-------------------------------+
| help | Displays help for a command | php artisan help {command} |
| list | Lists commands | php artisan list |
| migrate | Run the database migrations | php artisan migrate |
| serve | Serve the application on the web | php artisan serve |
| tinker | Interact with your application | php artisan tinker |
+-----------+----------------------------------+-------------------------------+
```
在上面的例子中,列出了 Laravel 应用程序中一些常用的 Artisan 命令,包括 `help`、`list`、`migrate`、`serve`、`tinker` 等。该命令也可以用于查看自定义的 Artisan 命令。
阅读全文