#php artisan list

Laravel Framework version 5.0.

Usage:

[options] command [arguments]

Options(选项):

--help (-h) Display this help message

                显示帮助信息
--quiet (-q) Do not output any message 不输出任何消息
--verbose (-v|vv|vvv) Increase the verbosity of messages: for normal output, for more verbose output and for debug 增加冗长的消息: 正常输出 更加详细的输出 3调试输出
--version (-V) Display this application version 显示此应用程序的版本
--ansi Force ANSI output 强制用 ANSI码输出
--no-ansi Disable ANSI output 禁用用 ANSI码输出
--no-interaction (-n) Do not ask any interactive question 不要问任何交互式问题
--env The environment the command should run under. 在环境命令下运行
Available commands(可用的命令): clear-compiled Remove the compiled class file 清除编译后的类文件
down Put the application into maintenance mode 使应用程序进入维修模式
env Display the current framework environment 显示当前框架环境
fresh Remove the scaffolding included with the framework 清楚包含框架外的支架
help Displays help for a command 显示命令行的帮助
inspire Display an inspiring quote 显示一个启发灵感的引用
list Lists commands 列出命令
migrate Run the database migrations 运行数据库迁移
optimize Optimize the framework for better performance 为了更好的框架去优化性能
serve Serve the application on the PHP development server 在php开发服务器中服务这个应用
tinker Interact with your application 在你的应用中交互
up Bring the application out of maintenance mode 退出应用程序的维护模式
app app:name Set the application namespace 设置应用程序命名空间
auth auth:clear-resets Flush expired password reset tokens 清除过期的密码重置密钥
cache cache:clear Flush the application cache 清除应用程序缓存
cache:table Create a migration for the cache database table 创建一个缓存数据库表的迁移
config config:cache Create a cache file for faster configuration loading 创建一个加载配置的缓存文件
config:clear Remove the configuration cache file 删除配置的缓存文件
db db:seed Seed the database with records 发送数据库的详细记录
event event:generate Generate the missing events and handlers based on registration 在记录上生成错过的事件和基础程序
handler handler:command Create a new command handler class 创建一个新的命令处理程序类
handler:event Create a new event handler class 创建一个新的事件处理程序类
key key:generate Set the application key 设置程序密钥
make make:command Create a new command class 生成一个命令类
make:console Create a new Artisan command 生成一个Artisan命令
make:controller Create a new resource controller class 生成一个资源控制类
make:event Create a new event class 生成一个事件类
make:middleware Create a new middleware class 生成一个中间件
make:migration Create a new migration file 生成一个迁移文件
make:model Create a new Eloquent model class 生成一个Eloquent 模型类
make:provider Create a new service provider class 生成一个服务提供商的类
make:request Create a new form request class 生成一个表单消息类
migrate migrate:install Create the migration repository 创建一个迁移库文件
migrate:refresh Reset and re-run all migrations 复位并重新运行所有的迁移
migrate:reset Rollback all database migrations 回滚全部数据库迁移
migrate:rollback Rollback the last database migration 回滚最后一个数据库迁移
migrate:status Show a list of migrations up/down 显示列表的迁移 上/下
queue queue:failed List all of the failed queue jobs 列出全部失败的队列工作
queue:failed-table Create a migration for the failed queue jobs database table 创建一个迁移的失败的队列数据库工作表
queue:flush Flush all of the failed queue jobs 清除全部失败的队列工作
queue:forget Delete a failed queue job 删除一个失败的队列工作
queue:listen Listen to a given queue 监听一个确定的队列工作
queue:restart Restart queue worker daemons after their current job 重启现在正在运行的所有队列工作
queue:retry Retry a failed queue job 重试一个失败的队列工作
queue:subscribe Subscribe a URL to an Iron.io push queue 去Iron.io 订阅URL,放到队列上
queue:table Create a migration for the queue jobs database table 创建一个迁移的队列数据库工作表
queue:work Process the next job on a queue 进行下一个队列任务
route route:cache Create a route cache file for faster route registration 为了更快的路由登记,创建一个路由缓存文件
route:clear Remove the route cache file 清除路由缓存文件
route:list List all registered routes 列出全部的注册路由
schedule schedule:run Run the scheduled commands 运行预定命令
session session:table Create a migration for the session database table 创建一个迁移的SESSION数据库工作表
vendor vendor:publish Publish any publishable assets from vendor packages 发表一些可以发布的有用的资源来自提供商的插件包

laravel 5.0 artisan 命令列表(中文简体)的更多相关文章

  1. php artisan 命令列表

    php  artisan 命令列表 命令获取 上面的翻译内容 命令 说明 备注 php artisan make:resource ? 创建api返回格式化资源 >=5.4版本可用 php ar ...

  2. laravel artisan 命令列表

    5.4版本新增 命令 说明 备注 php artisan make:resource ? 创建api返回格式化资源 >=5.4版本可用 php artisan make:rule ? 创建val ...

  3. Laravel 5.0 之命令及处理程序

    本文译自 Matt Stauffer 的 系列文章 . 本文中涉及的新功能都是关于 Commands 的,这些特性在 Laravel 旧版本中已经有了,但是在 Laravel 5.0 中变得更加好用了 ...

  4. laravel常用的artisan命令

    转载来源链接: https://blog.csdn.net/jiandanokok/article/details/72897682 全局篇 查看artisan命令 php artisan php a ...

  5. 关于Laravel中的artisan命令

    p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 14.0px Helvetica; color: #454545 } p.p2 { margin: 0.0p ...

  6. Laravel artisan 命令

    获取命令列表 php artisan Laravel Framework 7.26.0 Usage: command [options] [arguments] Options: -h, --help ...

  7. Laravel5.0学习--03 Artisan命令

    本文以laravel5.0.22为例. 简介 Artisan 是 Laravel 内置的命令行接口.它提供了一些有用的命令协助您开发,它是由强大的 Symfony Console 组件所驱动.利用它, ...

  8. laravel中一些非常常用的php artisan命令

    php artisan 命令在开发laravel项目中非常常用,下面是一些总结 composer config -g repo.packagist composer https://mirrors.a ...

  9. Laravel 的Artisan 命令学习

    Laravel 的Artisan 命令学习 Artisan 是 Laravel 提供的 CLI(命令行接口),它提供了非常多实用的命令来帮助我们开发 Laravel 应用.前面我们已使用过 Artis ...

随机推荐

  1. c++类使用

    一.C++定义类(注意:结束部分的分号不能省略) class 类名 { public: //公共的行为或属性 private: //公共的行为或属性 }; 注意:类的成员变量在定义时不能进行初始化, ...

  2. 【125】固定IP的电脑配置无线路由

    标题所提到的情况即为有些电脑是用静态IP上网的,与普通的宽带连接稍微有些不同,例如我的电脑的静态IP设置是这样的: 只有按照上面的设置才可以正常上网,因此在配置无线路由器的时候也要用到上面的内容,废话 ...

  3. redis缓存数据表

    直观上看,数据库中的数据都是按表存储的:更微观地看,这些表都是按行存储的.每执行一 次select查询,数据库都会返回一个结果集,这个结果集由若干行组成.所以,一个自然而然 的想法就是在Redis中找 ...

  4. JS点击任意标签获得该标签属性,以获得ID为例,以及AJAX的异步原理和 $(document).ready()与window.onload加载方法的区别

    js代码: //$(document).click(function (e) { // 在页面任意位置点击而触发此事件 // var select = ""; // var i = ...

  5. C# JackLib系列之GdiHelper圆角矩形的快速生成

    using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.D ...

  6. Linux下如何用vi编辑和保存文件

    vi是Linux终端下或控制台下常用的编辑器,基本的操作方式为:vi /路径/文件名 例如,vi /etc/fstab表示显示/etc/fstab文件的内容.使用键盘上的Page Up和Page Do ...

  7. installshield Basic 工程每次安装完提示重启电脑

     将Sequence中的ScheduleReboot Action的Condition清空即可. 

  8. OC:copy 与 retain 的区别

    copy与retain的区别: copy是创建一个新对象,retain是创建一个指针,引用对象计数加1.Copy属性表示两个对象内容相同,新的对象retain为1 ,与旧有对象的引用计数无关,旧有对象 ...

  9. 分布式文件系统HDFS体系

    系列文件列表: http://os.51cto.com/art/201306/399379.htm 1.介绍 hadoop文件系统(HDFS)是一个运行在普通的硬件之上的分布式文件系统,它和现有的分布 ...

  10. PPAS上运行pg_dump经过II

    这一次,我用三台机器. 其他步骤和<PPAS上运行pg_dump经过>中讲到的一样. http://www.cnblogs.com/gaojian/p/3195321.html 只是,pg ...