laravel php artisan list make

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/yueruitao/article/details/81530574

蚂蚁小草

Usage:
  command [options] [arguments]

Options:
  -h, --help            Display this help message帮助
  -q, --quiet           Do not output any message不输出任何消息
  -V, --version         Display this application version显示程序的版本
      --ansi            Force ANSI output 强制ansi输出
      --no-ansi         Disable ANSI output禁止ansi输出

(ANSI是一种字符代码,为使计算机支持更多语言,通常使用 0x00~0x7f 范围的1 个字节来表示 1 个英文字符。超出此范围的使用0x80~0xFFFF来编码,即扩展的ASCII编码。)
  -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

增加消息的冗长:1用于正常输出,2用于更详细的输出,3用于调试

Available commands for the "make" namespace:用于“make”名称空间的可用命令:
  make:auth          Scaffold basic login and registration views and routes脚手架基本登录和注册视图和路线
  make:command       Create a new Artisan command创建一个新的工匠命令
  make:controller    Create a new controller class创建一个新的控制器类
  make:event         Create a new event class创建一个新的事件类
  make:job           Create a new job class
  make:listener      Create a new event listener class创建一个新的事件监听器类
  make:mail          Create a new email class创建一个新的电子邮件类
  make:middleware    Create a new middleware class中间件
  make:migration     Create a new migration file创建一个新的迁移文件
  make:model         Create a new Eloquent model class创建一个新的雄辩模型类
  make:notification  Create a new notification class创建一个新的通知类
  make:policy        Create a new policy class创建一个新的政策类
  make:provider      Create a new service provider class创建一个新的服务提供者类
  make:request       Create a new form request class创建一个新的表单请求类
  make:seeder        Create a new seeder class创建一个新的seeder类
  make:test          Create a new test class创建一个新的测试类

猜你喜欢

转载自blog.csdn.net/yueruitao/article/details/81530574