Laravel_2021_2_13_3_49.xml 221 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <framework xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="schemas/frameworkDescriptionVersion1.1.4.xsd" frameworkId="com.laravel.component" name="Laravel_2021/2/13 下午3:49" invoke="/Users/chenlong/www/php_projects/redis-demo/artisan" alias="artisan" enabled="true" version="2">
  3. <extraData><![CDATA[version:3]]></extraData>
  4. <command>
  5. <name>clear-compiled</name>
  6. <help><![CDATA[Remove the compiled class file<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  7. <optionsBefore>
  8. <option name="--help" shortcut="-h">
  9. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  10. </option>
  11. <option name="--quiet" shortcut="-q">
  12. <help><![CDATA[Do not output any message]]></help>
  13. </option>
  14. <option name="--verbose" shortcut="-v">
  15. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  16. </option>
  17. <option name="--version" shortcut="-V">
  18. <help><![CDATA[Display this application version]]></help>
  19. </option>
  20. <option name="--ansi" shortcut="">
  21. <help><![CDATA[Force ANSI output]]></help>
  22. </option>
  23. <option name="--no-ansi" shortcut="">
  24. <help><![CDATA[Disable ANSI output]]></help>
  25. </option>
  26. <option name="--no-interaction" shortcut="-n">
  27. <help><![CDATA[Do not ask any interactive question]]></help>
  28. </option>
  29. <option name="--env" shortcut="" pattern="equals">
  30. <help><![CDATA[The environment the command should run under]]></help>
  31. </option>
  32. </optionsBefore>
  33. </command>
  34. <command>
  35. <name>db</name>
  36. <help><![CDATA[Start a new database CLI session<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  37. <params>connection[=null]</params>
  38. <optionsBefore>
  39. <option name="--help" shortcut="-h">
  40. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  41. </option>
  42. <option name="--quiet" shortcut="-q">
  43. <help><![CDATA[Do not output any message]]></help>
  44. </option>
  45. <option name="--verbose" shortcut="-v">
  46. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  47. </option>
  48. <option name="--version" shortcut="-V">
  49. <help><![CDATA[Display this application version]]></help>
  50. </option>
  51. <option name="--ansi" shortcut="">
  52. <help><![CDATA[Force ANSI output]]></help>
  53. </option>
  54. <option name="--no-ansi" shortcut="">
  55. <help><![CDATA[Disable ANSI output]]></help>
  56. </option>
  57. <option name="--no-interaction" shortcut="-n">
  58. <help><![CDATA[Do not ask any interactive question]]></help>
  59. </option>
  60. <option name="--env" shortcut="" pattern="equals">
  61. <help><![CDATA[The environment the command should run under]]></help>
  62. </option>
  63. </optionsBefore>
  64. </command>
  65. <command>
  66. <name>down</name>
  67. <help><![CDATA[Put the application into maintenance / demo mode<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--redirect</td><td></td><td>The path that users should be redirected to</td></tr> <tr><td>--render</td><td></td><td>The view that should be prerendered for display during maintenance mode</td></tr> <tr><td>--retry</td><td></td><td>The number of seconds after which the request may be retried</td></tr> <tr><td>--secret</td><td></td><td>The secret phrase that may be used to bypass maintenance mode</td></tr> <tr><td>--status</td><td></td><td>The status code that should be used when returning the maintenance mode response</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  68. <optionsBefore>
  69. <option name="--redirect" shortcut="" pattern="equals">
  70. <help><![CDATA[The path that users should be redirected to]]></help>
  71. </option>
  72. <option name="--render" shortcut="" pattern="equals">
  73. <help><![CDATA[The view that should be prerendered for display during maintenance mode]]></help>
  74. </option>
  75. <option name="--retry" shortcut="" pattern="equals">
  76. <help><![CDATA[The number of seconds after which the request may be retried]]></help>
  77. </option>
  78. <option name="--secret" shortcut="" pattern="equals">
  79. <help><![CDATA[The secret phrase that may be used to bypass maintenance mode]]></help>
  80. </option>
  81. <option name="--status" shortcut="" pattern="equals">
  82. <help><![CDATA[The status code that should be used when returning the maintenance mode response]]></help>
  83. </option>
  84. <option name="--help" shortcut="-h">
  85. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  86. </option>
  87. <option name="--quiet" shortcut="-q">
  88. <help><![CDATA[Do not output any message]]></help>
  89. </option>
  90. <option name="--verbose" shortcut="-v">
  91. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  92. </option>
  93. <option name="--version" shortcut="-V">
  94. <help><![CDATA[Display this application version]]></help>
  95. </option>
  96. <option name="--ansi" shortcut="">
  97. <help><![CDATA[Force ANSI output]]></help>
  98. </option>
  99. <option name="--no-ansi" shortcut="">
  100. <help><![CDATA[Disable ANSI output]]></help>
  101. </option>
  102. <option name="--no-interaction" shortcut="-n">
  103. <help><![CDATA[Do not ask any interactive question]]></help>
  104. </option>
  105. <option name="--env" shortcut="" pattern="equals">
  106. <help><![CDATA[The environment the command should run under]]></help>
  107. </option>
  108. </optionsBefore>
  109. </command>
  110. <command>
  111. <name>env</name>
  112. <help><![CDATA[Display the current framework environment<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  113. <optionsBefore>
  114. <option name="--help" shortcut="-h">
  115. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  116. </option>
  117. <option name="--quiet" shortcut="-q">
  118. <help><![CDATA[Do not output any message]]></help>
  119. </option>
  120. <option name="--verbose" shortcut="-v">
  121. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  122. </option>
  123. <option name="--version" shortcut="-V">
  124. <help><![CDATA[Display this application version]]></help>
  125. </option>
  126. <option name="--ansi" shortcut="">
  127. <help><![CDATA[Force ANSI output]]></help>
  128. </option>
  129. <option name="--no-ansi" shortcut="">
  130. <help><![CDATA[Disable ANSI output]]></help>
  131. </option>
  132. <option name="--no-interaction" shortcut="-n">
  133. <help><![CDATA[Do not ask any interactive question]]></help>
  134. </option>
  135. <option name="--env" shortcut="" pattern="equals">
  136. <help><![CDATA[The environment the command should run under]]></help>
  137. </option>
  138. </optionsBefore>
  139. </command>
  140. <command>
  141. <name>help</name>
  142. <help><![CDATA[The <b>help</b> command displays help for a given command:<br> <br> <b>/Users/chenlong/www/php_projects/redis-demo/artisan help list</b><br> <br> You can also output the help in other formats by using the <comment>--format</comment> option:<br> <br> <b>/Users/chenlong/www/php_projects/redis-demo/artisan help --format=xml list</b><br> <br> To display the list of available commands, please use the <b>list</b> command.<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--format</td><td></td><td>The output format (txt, xml, json, or md)</td></tr> <tr><td>--raw</td><td></td><td>To output raw command help</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  143. <params>command_name[=null]</params>
  144. <optionsBefore>
  145. <option name="--format" shortcut="" pattern="equals">
  146. <help><![CDATA[The output format (txt, xml, json, or md)]]></help>
  147. </option>
  148. <option name="--raw" shortcut="">
  149. <help><![CDATA[To output raw command help]]></help>
  150. </option>
  151. <option name="--help" shortcut="-h">
  152. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  153. </option>
  154. <option name="--quiet" shortcut="-q">
  155. <help><![CDATA[Do not output any message]]></help>
  156. </option>
  157. <option name="--verbose" shortcut="-v">
  158. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  159. </option>
  160. <option name="--version" shortcut="-V">
  161. <help><![CDATA[Display this application version]]></help>
  162. </option>
  163. <option name="--ansi" shortcut="">
  164. <help><![CDATA[Force ANSI output]]></help>
  165. </option>
  166. <option name="--no-ansi" shortcut="">
  167. <help><![CDATA[Disable ANSI output]]></help>
  168. </option>
  169. <option name="--no-interaction" shortcut="-n">
  170. <help><![CDATA[Do not ask any interactive question]]></help>
  171. </option>
  172. <option name="--env" shortcut="" pattern="equals">
  173. <help><![CDATA[The environment the command should run under]]></help>
  174. </option>
  175. </optionsBefore>
  176. </command>
  177. <command>
  178. <name>inspire</name>
  179. <help><![CDATA[Display an inspiring quote<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  180. <optionsBefore>
  181. <option name="--help" shortcut="-h">
  182. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  183. </option>
  184. <option name="--quiet" shortcut="-q">
  185. <help><![CDATA[Do not output any message]]></help>
  186. </option>
  187. <option name="--verbose" shortcut="-v">
  188. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  189. </option>
  190. <option name="--version" shortcut="-V">
  191. <help><![CDATA[Display this application version]]></help>
  192. </option>
  193. <option name="--ansi" shortcut="">
  194. <help><![CDATA[Force ANSI output]]></help>
  195. </option>
  196. <option name="--no-ansi" shortcut="">
  197. <help><![CDATA[Disable ANSI output]]></help>
  198. </option>
  199. <option name="--no-interaction" shortcut="-n">
  200. <help><![CDATA[Do not ask any interactive question]]></help>
  201. </option>
  202. <option name="--env" shortcut="" pattern="equals">
  203. <help><![CDATA[The environment the command should run under]]></help>
  204. </option>
  205. </optionsBefore>
  206. </command>
  207. <command>
  208. <name>list</name>
  209. <help><![CDATA[The <b>list</b> command lists all commands:<br> <br> <b>/Users/chenlong/www/php_projects/redis-demo/artisan list</b><br> <br> You can also display the commands for a specific namespace:<br> <br> <b>/Users/chenlong/www/php_projects/redis-demo/artisan list test</b><br> <br> You can also output the information in other formats by using the <comment>--format</comment> option:<br> <br> <b>/Users/chenlong/www/php_projects/redis-demo/artisan list --format=xml</b><br> <br> It's also possible to get raw list of commands (useful for embedding command runner):<br> <br> <b>/Users/chenlong/www/php_projects/redis-demo/artisan list --raw</b><br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--raw</td><td></td><td>To output raw command list</td></tr> <tr><td>--format</td><td></td><td>The output format (txt, xml, json, or md)</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  210. <params>namespace[=null]</params>
  211. <optionsBefore>
  212. <option name="--raw" shortcut="">
  213. <help><![CDATA[To output raw command list]]></help>
  214. </option>
  215. <option name="--format" shortcut="" pattern="equals">
  216. <help><![CDATA[The output format (txt, xml, json, or md)]]></help>
  217. </option>
  218. <option name="--help" shortcut="-h">
  219. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  220. </option>
  221. <option name="--quiet" shortcut="-q">
  222. <help><![CDATA[Do not output any message]]></help>
  223. </option>
  224. <option name="--verbose" shortcut="-v">
  225. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  226. </option>
  227. <option name="--version" shortcut="-V">
  228. <help><![CDATA[Display this application version]]></help>
  229. </option>
  230. <option name="--ansi" shortcut="">
  231. <help><![CDATA[Force ANSI output]]></help>
  232. </option>
  233. <option name="--no-ansi" shortcut="">
  234. <help><![CDATA[Disable ANSI output]]></help>
  235. </option>
  236. <option name="--no-interaction" shortcut="-n">
  237. <help><![CDATA[Do not ask any interactive question]]></help>
  238. </option>
  239. <option name="--env" shortcut="" pattern="equals">
  240. <help><![CDATA[The environment the command should run under]]></help>
  241. </option>
  242. </optionsBefore>
  243. </command>
  244. <command>
  245. <name>migrate</name>
  246. <help><![CDATA[Run the database migrations<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--database</td><td></td><td>The database connection to use</td></tr> <tr><td>--force</td><td></td><td>Force the operation to run when in production</td></tr> <tr><td>--path</td><td></td><td>The path(s) to the migrations files to be executed</td></tr> <tr><td>--realpath</td><td></td><td>Indicate any provided migration file paths are pre-resolved absolute paths</td></tr> <tr><td>--schema-path</td><td></td><td>The path to a schema dump file</td></tr> <tr><td>--pretend</td><td></td><td>Dump the SQL queries that would be run</td></tr> <tr><td>--seed</td><td></td><td>Indicates if the seed task should be re-run</td></tr> <tr><td>--step</td><td></td><td>Force the migrations to be run so they can be rolled back individually</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  247. <optionsBefore>
  248. <option name="--database" shortcut="" pattern="equals">
  249. <help><![CDATA[The database connection to use]]></help>
  250. </option>
  251. <option name="--force" shortcut="">
  252. <help><![CDATA[Force the operation to run when in production]]></help>
  253. </option>
  254. <option name="--path" shortcut="" pattern="equals">
  255. <help><![CDATA[The path(s) to the migrations files to be executed]]></help>
  256. </option>
  257. <option name="--realpath" shortcut="">
  258. <help><![CDATA[Indicate any provided migration file paths are pre-resolved absolute paths]]></help>
  259. </option>
  260. <option name="--schema-path" shortcut="" pattern="equals">
  261. <help><![CDATA[The path to a schema dump file]]></help>
  262. </option>
  263. <option name="--pretend" shortcut="">
  264. <help><![CDATA[Dump the SQL queries that would be run]]></help>
  265. </option>
  266. <option name="--seed" shortcut="">
  267. <help><![CDATA[Indicates if the seed task should be re-run]]></help>
  268. </option>
  269. <option name="--step" shortcut="">
  270. <help><![CDATA[Force the migrations to be run so they can be rolled back individually]]></help>
  271. </option>
  272. <option name="--help" shortcut="-h">
  273. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  274. </option>
  275. <option name="--quiet" shortcut="-q">
  276. <help><![CDATA[Do not output any message]]></help>
  277. </option>
  278. <option name="--verbose" shortcut="-v">
  279. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  280. </option>
  281. <option name="--version" shortcut="-V">
  282. <help><![CDATA[Display this application version]]></help>
  283. </option>
  284. <option name="--ansi" shortcut="">
  285. <help><![CDATA[Force ANSI output]]></help>
  286. </option>
  287. <option name="--no-ansi" shortcut="">
  288. <help><![CDATA[Disable ANSI output]]></help>
  289. </option>
  290. <option name="--no-interaction" shortcut="-n">
  291. <help><![CDATA[Do not ask any interactive question]]></help>
  292. </option>
  293. <option name="--env" shortcut="" pattern="equals">
  294. <help><![CDATA[The environment the command should run under]]></help>
  295. </option>
  296. </optionsBefore>
  297. </command>
  298. <command>
  299. <name>optimize</name>
  300. <help><![CDATA[Cache the framework bootstrap files<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  301. <optionsBefore>
  302. <option name="--help" shortcut="-h">
  303. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  304. </option>
  305. <option name="--quiet" shortcut="-q">
  306. <help><![CDATA[Do not output any message]]></help>
  307. </option>
  308. <option name="--verbose" shortcut="-v">
  309. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  310. </option>
  311. <option name="--version" shortcut="-V">
  312. <help><![CDATA[Display this application version]]></help>
  313. </option>
  314. <option name="--ansi" shortcut="">
  315. <help><![CDATA[Force ANSI output]]></help>
  316. </option>
  317. <option name="--no-ansi" shortcut="">
  318. <help><![CDATA[Disable ANSI output]]></help>
  319. </option>
  320. <option name="--no-interaction" shortcut="-n">
  321. <help><![CDATA[Do not ask any interactive question]]></help>
  322. </option>
  323. <option name="--env" shortcut="" pattern="equals">
  324. <help><![CDATA[The environment the command should run under]]></help>
  325. </option>
  326. </optionsBefore>
  327. </command>
  328. <command>
  329. <name>serve</name>
  330. <help><![CDATA[Serve the application on the PHP development server<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--host</td><td></td><td>The host address to serve the application on</td></tr> <tr><td>--port</td><td></td><td>The port to serve the application on</td></tr> <tr><td>--tries</td><td></td><td>The max number of ports to attempt to serve from</td></tr> <tr><td>--no-reload</td><td></td><td>Do not reload the development server on .env file changes</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  331. <optionsBefore>
  332. <option name="--host" shortcut="" pattern="equals">
  333. <help><![CDATA[The host address to serve the application on]]></help>
  334. </option>
  335. <option name="--port" shortcut="" pattern="equals">
  336. <help><![CDATA[The port to serve the application on]]></help>
  337. </option>
  338. <option name="--tries" shortcut="" pattern="equals">
  339. <help><![CDATA[The max number of ports to attempt to serve from]]></help>
  340. </option>
  341. <option name="--no-reload" shortcut="">
  342. <help><![CDATA[Do not reload the development server on .env file changes]]></help>
  343. </option>
  344. <option name="--help" shortcut="-h">
  345. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  346. </option>
  347. <option name="--quiet" shortcut="-q">
  348. <help><![CDATA[Do not output any message]]></help>
  349. </option>
  350. <option name="--verbose" shortcut="-v">
  351. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  352. </option>
  353. <option name="--version" shortcut="-V">
  354. <help><![CDATA[Display this application version]]></help>
  355. </option>
  356. <option name="--ansi" shortcut="">
  357. <help><![CDATA[Force ANSI output]]></help>
  358. </option>
  359. <option name="--no-ansi" shortcut="">
  360. <help><![CDATA[Disable ANSI output]]></help>
  361. </option>
  362. <option name="--no-interaction" shortcut="-n">
  363. <help><![CDATA[Do not ask any interactive question]]></help>
  364. </option>
  365. <option name="--env" shortcut="" pattern="equals">
  366. <help><![CDATA[The environment the command should run under]]></help>
  367. </option>
  368. </optionsBefore>
  369. </command>
  370. <command>
  371. <name>test</name>
  372. <help><![CDATA[Run the application tests<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--without-tty</td><td></td><td>Disable output to TTY</td></tr> <tr><td>--parallel</td><td></td><td>Indicates if the tests should run in parallel</td></tr> <tr><td>--recreate-databases</td><td></td><td>Indicates if the test databases should be re-created</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  373. <optionsBefore>
  374. <option name="--without-tty" shortcut="">
  375. <help><![CDATA[Disable output to TTY]]></help>
  376. </option>
  377. <option name="--parallel" shortcut="">
  378. <help><![CDATA[Indicates if the tests should run in parallel]]></help>
  379. </option>
  380. <option name="--recreate-databases" shortcut="">
  381. <help><![CDATA[Indicates if the test databases should be re-created]]></help>
  382. </option>
  383. <option name="--help" shortcut="-h">
  384. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  385. </option>
  386. <option name="--quiet" shortcut="-q">
  387. <help><![CDATA[Do not output any message]]></help>
  388. </option>
  389. <option name="--verbose" shortcut="-v">
  390. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  391. </option>
  392. <option name="--version" shortcut="-V">
  393. <help><![CDATA[Display this application version]]></help>
  394. </option>
  395. <option name="--ansi" shortcut="">
  396. <help><![CDATA[Force ANSI output]]></help>
  397. </option>
  398. <option name="--no-ansi" shortcut="">
  399. <help><![CDATA[Disable ANSI output]]></help>
  400. </option>
  401. <option name="--no-interaction" shortcut="-n">
  402. <help><![CDATA[Do not ask any interactive question]]></help>
  403. </option>
  404. <option name="--env" shortcut="" pattern="equals">
  405. <help><![CDATA[The environment the command should run under]]></help>
  406. </option>
  407. </optionsBefore>
  408. </command>
  409. <command>
  410. <name>tinker</name>
  411. <help><![CDATA[Interact with your application<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--execute</td><td></td><td>Execute the given code using Tinker</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  412. <params>include[=null]</params>
  413. <optionsBefore>
  414. <option name="--execute" shortcut="" pattern="equals">
  415. <help><![CDATA[Execute the given code using Tinker]]></help>
  416. </option>
  417. <option name="--help" shortcut="-h">
  418. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  419. </option>
  420. <option name="--quiet" shortcut="-q">
  421. <help><![CDATA[Do not output any message]]></help>
  422. </option>
  423. <option name="--verbose" shortcut="-v">
  424. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  425. </option>
  426. <option name="--version" shortcut="-V">
  427. <help><![CDATA[Display this application version]]></help>
  428. </option>
  429. <option name="--ansi" shortcut="">
  430. <help><![CDATA[Force ANSI output]]></help>
  431. </option>
  432. <option name="--no-ansi" shortcut="">
  433. <help><![CDATA[Disable ANSI output]]></help>
  434. </option>
  435. <option name="--no-interaction" shortcut="-n">
  436. <help><![CDATA[Do not ask any interactive question]]></help>
  437. </option>
  438. <option name="--env" shortcut="" pattern="equals">
  439. <help><![CDATA[The environment the command should run under]]></help>
  440. </option>
  441. </optionsBefore>
  442. </command>
  443. <command>
  444. <name>up</name>
  445. <help><![CDATA[Bring the application out of maintenance mode<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  446. <optionsBefore>
  447. <option name="--help" shortcut="-h">
  448. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  449. </option>
  450. <option name="--quiet" shortcut="-q">
  451. <help><![CDATA[Do not output any message]]></help>
  452. </option>
  453. <option name="--verbose" shortcut="-v">
  454. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  455. </option>
  456. <option name="--version" shortcut="-V">
  457. <help><![CDATA[Display this application version]]></help>
  458. </option>
  459. <option name="--ansi" shortcut="">
  460. <help><![CDATA[Force ANSI output]]></help>
  461. </option>
  462. <option name="--no-ansi" shortcut="">
  463. <help><![CDATA[Disable ANSI output]]></help>
  464. </option>
  465. <option name="--no-interaction" shortcut="-n">
  466. <help><![CDATA[Do not ask any interactive question]]></help>
  467. </option>
  468. <option name="--env" shortcut="" pattern="equals">
  469. <help><![CDATA[The environment the command should run under]]></help>
  470. </option>
  471. </optionsBefore>
  472. </command>
  473. <command>
  474. <name>auth:clear-resets</name>
  475. <help><![CDATA[Flush expired password reset tokens<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  476. <params>name[=null]</params>
  477. <optionsBefore>
  478. <option name="--help" shortcut="-h">
  479. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  480. </option>
  481. <option name="--quiet" shortcut="-q">
  482. <help><![CDATA[Do not output any message]]></help>
  483. </option>
  484. <option name="--verbose" shortcut="-v">
  485. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  486. </option>
  487. <option name="--version" shortcut="-V">
  488. <help><![CDATA[Display this application version]]></help>
  489. </option>
  490. <option name="--ansi" shortcut="">
  491. <help><![CDATA[Force ANSI output]]></help>
  492. </option>
  493. <option name="--no-ansi" shortcut="">
  494. <help><![CDATA[Disable ANSI output]]></help>
  495. </option>
  496. <option name="--no-interaction" shortcut="-n">
  497. <help><![CDATA[Do not ask any interactive question]]></help>
  498. </option>
  499. <option name="--env" shortcut="" pattern="equals">
  500. <help><![CDATA[The environment the command should run under]]></help>
  501. </option>
  502. </optionsBefore>
  503. </command>
  504. <command>
  505. <name>cache:clear</name>
  506. <help><![CDATA[Flush the application cache<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--tags</td><td></td><td>The cache tags you would like to clear</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  507. <params>store[=null]</params>
  508. <optionsBefore>
  509. <option name="--tags" shortcut="" pattern="equals">
  510. <help><![CDATA[The cache tags you would like to clear]]></help>
  511. </option>
  512. <option name="--help" shortcut="-h">
  513. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  514. </option>
  515. <option name="--quiet" shortcut="-q">
  516. <help><![CDATA[Do not output any message]]></help>
  517. </option>
  518. <option name="--verbose" shortcut="-v">
  519. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  520. </option>
  521. <option name="--version" shortcut="-V">
  522. <help><![CDATA[Display this application version]]></help>
  523. </option>
  524. <option name="--ansi" shortcut="">
  525. <help><![CDATA[Force ANSI output]]></help>
  526. </option>
  527. <option name="--no-ansi" shortcut="">
  528. <help><![CDATA[Disable ANSI output]]></help>
  529. </option>
  530. <option name="--no-interaction" shortcut="-n">
  531. <help><![CDATA[Do not ask any interactive question]]></help>
  532. </option>
  533. <option name="--env" shortcut="" pattern="equals">
  534. <help><![CDATA[The environment the command should run under]]></help>
  535. </option>
  536. </optionsBefore>
  537. </command>
  538. <command>
  539. <name>cache:forget</name>
  540. <help><![CDATA[Remove an item from the cache<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  541. <params>key store[=null]</params>
  542. <optionsBefore>
  543. <option name="--help" shortcut="-h">
  544. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  545. </option>
  546. <option name="--quiet" shortcut="-q">
  547. <help><![CDATA[Do not output any message]]></help>
  548. </option>
  549. <option name="--verbose" shortcut="-v">
  550. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  551. </option>
  552. <option name="--version" shortcut="-V">
  553. <help><![CDATA[Display this application version]]></help>
  554. </option>
  555. <option name="--ansi" shortcut="">
  556. <help><![CDATA[Force ANSI output]]></help>
  557. </option>
  558. <option name="--no-ansi" shortcut="">
  559. <help><![CDATA[Disable ANSI output]]></help>
  560. </option>
  561. <option name="--no-interaction" shortcut="-n">
  562. <help><![CDATA[Do not ask any interactive question]]></help>
  563. </option>
  564. <option name="--env" shortcut="" pattern="equals">
  565. <help><![CDATA[The environment the command should run under]]></help>
  566. </option>
  567. </optionsBefore>
  568. </command>
  569. <command>
  570. <name>cache:table</name>
  571. <help><![CDATA[Create a migration for the cache database table<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  572. <optionsBefore>
  573. <option name="--help" shortcut="-h">
  574. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  575. </option>
  576. <option name="--quiet" shortcut="-q">
  577. <help><![CDATA[Do not output any message]]></help>
  578. </option>
  579. <option name="--verbose" shortcut="-v">
  580. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  581. </option>
  582. <option name="--version" shortcut="-V">
  583. <help><![CDATA[Display this application version]]></help>
  584. </option>
  585. <option name="--ansi" shortcut="">
  586. <help><![CDATA[Force ANSI output]]></help>
  587. </option>
  588. <option name="--no-ansi" shortcut="">
  589. <help><![CDATA[Disable ANSI output]]></help>
  590. </option>
  591. <option name="--no-interaction" shortcut="-n">
  592. <help><![CDATA[Do not ask any interactive question]]></help>
  593. </option>
  594. <option name="--env" shortcut="" pattern="equals">
  595. <help><![CDATA[The environment the command should run under]]></help>
  596. </option>
  597. </optionsBefore>
  598. </command>
  599. <command>
  600. <name>config:cache</name>
  601. <help><![CDATA[Create a cache file for faster configuration loading<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  602. <optionsBefore>
  603. <option name="--help" shortcut="-h">
  604. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  605. </option>
  606. <option name="--quiet" shortcut="-q">
  607. <help><![CDATA[Do not output any message]]></help>
  608. </option>
  609. <option name="--verbose" shortcut="-v">
  610. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  611. </option>
  612. <option name="--version" shortcut="-V">
  613. <help><![CDATA[Display this application version]]></help>
  614. </option>
  615. <option name="--ansi" shortcut="">
  616. <help><![CDATA[Force ANSI output]]></help>
  617. </option>
  618. <option name="--no-ansi" shortcut="">
  619. <help><![CDATA[Disable ANSI output]]></help>
  620. </option>
  621. <option name="--no-interaction" shortcut="-n">
  622. <help><![CDATA[Do not ask any interactive question]]></help>
  623. </option>
  624. <option name="--env" shortcut="" pattern="equals">
  625. <help><![CDATA[The environment the command should run under]]></help>
  626. </option>
  627. </optionsBefore>
  628. </command>
  629. <command>
  630. <name>config:clear</name>
  631. <help><![CDATA[Remove the configuration cache file<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  632. <optionsBefore>
  633. <option name="--help" shortcut="-h">
  634. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  635. </option>
  636. <option name="--quiet" shortcut="-q">
  637. <help><![CDATA[Do not output any message]]></help>
  638. </option>
  639. <option name="--verbose" shortcut="-v">
  640. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  641. </option>
  642. <option name="--version" shortcut="-V">
  643. <help><![CDATA[Display this application version]]></help>
  644. </option>
  645. <option name="--ansi" shortcut="">
  646. <help><![CDATA[Force ANSI output]]></help>
  647. </option>
  648. <option name="--no-ansi" shortcut="">
  649. <help><![CDATA[Disable ANSI output]]></help>
  650. </option>
  651. <option name="--no-interaction" shortcut="-n">
  652. <help><![CDATA[Do not ask any interactive question]]></help>
  653. </option>
  654. <option name="--env" shortcut="" pattern="equals">
  655. <help><![CDATA[The environment the command should run under]]></help>
  656. </option>
  657. </optionsBefore>
  658. </command>
  659. <command>
  660. <name>db:seed</name>
  661. <help><![CDATA[Seed the database with records<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--class</td><td></td><td>The class name of the root seeder</td></tr> <tr><td>--database</td><td></td><td>The database connection to seed</td></tr> <tr><td>--force</td><td></td><td>Force the operation to run when in production</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  662. <optionsBefore>
  663. <option name="--class" shortcut="" pattern="equals">
  664. <help><![CDATA[The class name of the root seeder]]></help>
  665. </option>
  666. <option name="--database" shortcut="" pattern="equals">
  667. <help><![CDATA[The database connection to seed]]></help>
  668. </option>
  669. <option name="--force" shortcut="">
  670. <help><![CDATA[Force the operation to run when in production]]></help>
  671. </option>
  672. <option name="--help" shortcut="-h">
  673. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  674. </option>
  675. <option name="--quiet" shortcut="-q">
  676. <help><![CDATA[Do not output any message]]></help>
  677. </option>
  678. <option name="--verbose" shortcut="-v">
  679. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  680. </option>
  681. <option name="--version" shortcut="-V">
  682. <help><![CDATA[Display this application version]]></help>
  683. </option>
  684. <option name="--ansi" shortcut="">
  685. <help><![CDATA[Force ANSI output]]></help>
  686. </option>
  687. <option name="--no-ansi" shortcut="">
  688. <help><![CDATA[Disable ANSI output]]></help>
  689. </option>
  690. <option name="--no-interaction" shortcut="-n">
  691. <help><![CDATA[Do not ask any interactive question]]></help>
  692. </option>
  693. <option name="--env" shortcut="" pattern="equals">
  694. <help><![CDATA[The environment the command should run under]]></help>
  695. </option>
  696. </optionsBefore>
  697. </command>
  698. <command>
  699. <name>db:wipe</name>
  700. <help><![CDATA[Drop all tables, views, and types<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--database</td><td></td><td>The database connection to use</td></tr> <tr><td>--drop-views</td><td></td><td>Drop all tables and views</td></tr> <tr><td>--drop-types</td><td></td><td>Drop all tables and types (Postgres only)</td></tr> <tr><td>--force</td><td></td><td>Force the operation to run when in production</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  701. <optionsBefore>
  702. <option name="--database" shortcut="" pattern="equals">
  703. <help><![CDATA[The database connection to use]]></help>
  704. </option>
  705. <option name="--drop-views" shortcut="">
  706. <help><![CDATA[Drop all tables and views]]></help>
  707. </option>
  708. <option name="--drop-types" shortcut="">
  709. <help><![CDATA[Drop all tables and types (Postgres only)]]></help>
  710. </option>
  711. <option name="--force" shortcut="">
  712. <help><![CDATA[Force the operation to run when in production]]></help>
  713. </option>
  714. <option name="--help" shortcut="-h">
  715. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  716. </option>
  717. <option name="--quiet" shortcut="-q">
  718. <help><![CDATA[Do not output any message]]></help>
  719. </option>
  720. <option name="--verbose" shortcut="-v">
  721. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  722. </option>
  723. <option name="--version" shortcut="-V">
  724. <help><![CDATA[Display this application version]]></help>
  725. </option>
  726. <option name="--ansi" shortcut="">
  727. <help><![CDATA[Force ANSI output]]></help>
  728. </option>
  729. <option name="--no-ansi" shortcut="">
  730. <help><![CDATA[Disable ANSI output]]></help>
  731. </option>
  732. <option name="--no-interaction" shortcut="-n">
  733. <help><![CDATA[Do not ask any interactive question]]></help>
  734. </option>
  735. <option name="--env" shortcut="" pattern="equals">
  736. <help><![CDATA[The environment the command should run under]]></help>
  737. </option>
  738. </optionsBefore>
  739. </command>
  740. <command>
  741. <name>event:cache</name>
  742. <help><![CDATA[Discover and cache the application's events and listeners<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  743. <optionsBefore>
  744. <option name="--help" shortcut="-h">
  745. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  746. </option>
  747. <option name="--quiet" shortcut="-q">
  748. <help><![CDATA[Do not output any message]]></help>
  749. </option>
  750. <option name="--verbose" shortcut="-v">
  751. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  752. </option>
  753. <option name="--version" shortcut="-V">
  754. <help><![CDATA[Display this application version]]></help>
  755. </option>
  756. <option name="--ansi" shortcut="">
  757. <help><![CDATA[Force ANSI output]]></help>
  758. </option>
  759. <option name="--no-ansi" shortcut="">
  760. <help><![CDATA[Disable ANSI output]]></help>
  761. </option>
  762. <option name="--no-interaction" shortcut="-n">
  763. <help><![CDATA[Do not ask any interactive question]]></help>
  764. </option>
  765. <option name="--env" shortcut="" pattern="equals">
  766. <help><![CDATA[The environment the command should run under]]></help>
  767. </option>
  768. </optionsBefore>
  769. </command>
  770. <command>
  771. <name>event:clear</name>
  772. <help><![CDATA[Clear all cached events and listeners<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  773. <optionsBefore>
  774. <option name="--help" shortcut="-h">
  775. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  776. </option>
  777. <option name="--quiet" shortcut="-q">
  778. <help><![CDATA[Do not output any message]]></help>
  779. </option>
  780. <option name="--verbose" shortcut="-v">
  781. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  782. </option>
  783. <option name="--version" shortcut="-V">
  784. <help><![CDATA[Display this application version]]></help>
  785. </option>
  786. <option name="--ansi" shortcut="">
  787. <help><![CDATA[Force ANSI output]]></help>
  788. </option>
  789. <option name="--no-ansi" shortcut="">
  790. <help><![CDATA[Disable ANSI output]]></help>
  791. </option>
  792. <option name="--no-interaction" shortcut="-n">
  793. <help><![CDATA[Do not ask any interactive question]]></help>
  794. </option>
  795. <option name="--env" shortcut="" pattern="equals">
  796. <help><![CDATA[The environment the command should run under]]></help>
  797. </option>
  798. </optionsBefore>
  799. </command>
  800. <command>
  801. <name>event:generate</name>
  802. <help><![CDATA[Generate the missing events and listeners based on registration<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  803. <optionsBefore>
  804. <option name="--help" shortcut="-h">
  805. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  806. </option>
  807. <option name="--quiet" shortcut="-q">
  808. <help><![CDATA[Do not output any message]]></help>
  809. </option>
  810. <option name="--verbose" shortcut="-v">
  811. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  812. </option>
  813. <option name="--version" shortcut="-V">
  814. <help><![CDATA[Display this application version]]></help>
  815. </option>
  816. <option name="--ansi" shortcut="">
  817. <help><![CDATA[Force ANSI output]]></help>
  818. </option>
  819. <option name="--no-ansi" shortcut="">
  820. <help><![CDATA[Disable ANSI output]]></help>
  821. </option>
  822. <option name="--no-interaction" shortcut="-n">
  823. <help><![CDATA[Do not ask any interactive question]]></help>
  824. </option>
  825. <option name="--env" shortcut="" pattern="equals">
  826. <help><![CDATA[The environment the command should run under]]></help>
  827. </option>
  828. </optionsBefore>
  829. </command>
  830. <command>
  831. <name>event:list</name>
  832. <help><![CDATA[List the application's events and listeners<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--event</td><td></td><td>Filter the events by name</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  833. <optionsBefore>
  834. <option name="--event" shortcut="" pattern="equals">
  835. <help><![CDATA[Filter the events by name]]></help>
  836. </option>
  837. <option name="--help" shortcut="-h">
  838. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  839. </option>
  840. <option name="--quiet" shortcut="-q">
  841. <help><![CDATA[Do not output any message]]></help>
  842. </option>
  843. <option name="--verbose" shortcut="-v">
  844. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  845. </option>
  846. <option name="--version" shortcut="-V">
  847. <help><![CDATA[Display this application version]]></help>
  848. </option>
  849. <option name="--ansi" shortcut="">
  850. <help><![CDATA[Force ANSI output]]></help>
  851. </option>
  852. <option name="--no-ansi" shortcut="">
  853. <help><![CDATA[Disable ANSI output]]></help>
  854. </option>
  855. <option name="--no-interaction" shortcut="-n">
  856. <help><![CDATA[Do not ask any interactive question]]></help>
  857. </option>
  858. <option name="--env" shortcut="" pattern="equals">
  859. <help><![CDATA[The environment the command should run under]]></help>
  860. </option>
  861. </optionsBefore>
  862. </command>
  863. <command>
  864. <name>key:generate</name>
  865. <help><![CDATA[Set the application key<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--show</td><td></td><td>Display the key instead of modifying files</td></tr> <tr><td>--force</td><td></td><td>Force the operation to run when in production</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  866. <optionsBefore>
  867. <option name="--show" shortcut="">
  868. <help><![CDATA[Display the key instead of modifying files]]></help>
  869. </option>
  870. <option name="--force" shortcut="">
  871. <help><![CDATA[Force the operation to run when in production]]></help>
  872. </option>
  873. <option name="--help" shortcut="-h">
  874. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  875. </option>
  876. <option name="--quiet" shortcut="-q">
  877. <help><![CDATA[Do not output any message]]></help>
  878. </option>
  879. <option name="--verbose" shortcut="-v">
  880. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  881. </option>
  882. <option name="--version" shortcut="-V">
  883. <help><![CDATA[Display this application version]]></help>
  884. </option>
  885. <option name="--ansi" shortcut="">
  886. <help><![CDATA[Force ANSI output]]></help>
  887. </option>
  888. <option name="--no-ansi" shortcut="">
  889. <help><![CDATA[Disable ANSI output]]></help>
  890. </option>
  891. <option name="--no-interaction" shortcut="-n">
  892. <help><![CDATA[Do not ask any interactive question]]></help>
  893. </option>
  894. <option name="--env" shortcut="" pattern="equals">
  895. <help><![CDATA[The environment the command should run under]]></help>
  896. </option>
  897. </optionsBefore>
  898. </command>
  899. <command>
  900. <name>make:cast</name>
  901. <help><![CDATA[Create a new custom Eloquent cast class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  902. <params>name</params>
  903. <optionsBefore>
  904. <option name="--help" shortcut="-h">
  905. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  906. </option>
  907. <option name="--quiet" shortcut="-q">
  908. <help><![CDATA[Do not output any message]]></help>
  909. </option>
  910. <option name="--verbose" shortcut="-v">
  911. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  912. </option>
  913. <option name="--version" shortcut="-V">
  914. <help><![CDATA[Display this application version]]></help>
  915. </option>
  916. <option name="--ansi" shortcut="">
  917. <help><![CDATA[Force ANSI output]]></help>
  918. </option>
  919. <option name="--no-ansi" shortcut="">
  920. <help><![CDATA[Disable ANSI output]]></help>
  921. </option>
  922. <option name="--no-interaction" shortcut="-n">
  923. <help><![CDATA[Do not ask any interactive question]]></help>
  924. </option>
  925. <option name="--env" shortcut="" pattern="equals">
  926. <help><![CDATA[The environment the command should run under]]></help>
  927. </option>
  928. </optionsBefore>
  929. </command>
  930. <command>
  931. <name>make:channel</name>
  932. <help><![CDATA[Create a new channel class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  933. <params>name</params>
  934. <optionsBefore>
  935. <option name="--help" shortcut="-h">
  936. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  937. </option>
  938. <option name="--quiet" shortcut="-q">
  939. <help><![CDATA[Do not output any message]]></help>
  940. </option>
  941. <option name="--verbose" shortcut="-v">
  942. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  943. </option>
  944. <option name="--version" shortcut="-V">
  945. <help><![CDATA[Display this application version]]></help>
  946. </option>
  947. <option name="--ansi" shortcut="">
  948. <help><![CDATA[Force ANSI output]]></help>
  949. </option>
  950. <option name="--no-ansi" shortcut="">
  951. <help><![CDATA[Disable ANSI output]]></help>
  952. </option>
  953. <option name="--no-interaction" shortcut="-n">
  954. <help><![CDATA[Do not ask any interactive question]]></help>
  955. </option>
  956. <option name="--env" shortcut="" pattern="equals">
  957. <help><![CDATA[The environment the command should run under]]></help>
  958. </option>
  959. </optionsBefore>
  960. </command>
  961. <command>
  962. <name>make:command</name>
  963. <help><![CDATA[Create a new Artisan command<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--command</td><td></td><td>The terminal command that should be assigned</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  964. <params>name</params>
  965. <optionsBefore>
  966. <option name="--command" shortcut="" pattern="equals">
  967. <help><![CDATA[The terminal command that should be assigned]]></help>
  968. </option>
  969. <option name="--help" shortcut="-h">
  970. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  971. </option>
  972. <option name="--quiet" shortcut="-q">
  973. <help><![CDATA[Do not output any message]]></help>
  974. </option>
  975. <option name="--verbose" shortcut="-v">
  976. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  977. </option>
  978. <option name="--version" shortcut="-V">
  979. <help><![CDATA[Display this application version]]></help>
  980. </option>
  981. <option name="--ansi" shortcut="">
  982. <help><![CDATA[Force ANSI output]]></help>
  983. </option>
  984. <option name="--no-ansi" shortcut="">
  985. <help><![CDATA[Disable ANSI output]]></help>
  986. </option>
  987. <option name="--no-interaction" shortcut="-n">
  988. <help><![CDATA[Do not ask any interactive question]]></help>
  989. </option>
  990. <option name="--env" shortcut="" pattern="equals">
  991. <help><![CDATA[The environment the command should run under]]></help>
  992. </option>
  993. </optionsBefore>
  994. </command>
  995. <command>
  996. <name>make:component</name>
  997. <help><![CDATA[Create a new view component class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--force</td><td></td><td>Create the class even if the component already exists</td></tr> <tr><td>--inline</td><td></td><td>Create a component that renders an inline view</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  998. <params>name</params>
  999. <optionsBefore>
  1000. <option name="--force" shortcut="">
  1001. <help><![CDATA[Create the class even if the component already exists]]></help>
  1002. </option>
  1003. <option name="--inline" shortcut="">
  1004. <help><![CDATA[Create a component that renders an inline view]]></help>
  1005. </option>
  1006. <option name="--help" shortcut="-h">
  1007. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1008. </option>
  1009. <option name="--quiet" shortcut="-q">
  1010. <help><![CDATA[Do not output any message]]></help>
  1011. </option>
  1012. <option name="--verbose" shortcut="-v">
  1013. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1014. </option>
  1015. <option name="--version" shortcut="-V">
  1016. <help><![CDATA[Display this application version]]></help>
  1017. </option>
  1018. <option name="--ansi" shortcut="">
  1019. <help><![CDATA[Force ANSI output]]></help>
  1020. </option>
  1021. <option name="--no-ansi" shortcut="">
  1022. <help><![CDATA[Disable ANSI output]]></help>
  1023. </option>
  1024. <option name="--no-interaction" shortcut="-n">
  1025. <help><![CDATA[Do not ask any interactive question]]></help>
  1026. </option>
  1027. <option name="--env" shortcut="" pattern="equals">
  1028. <help><![CDATA[The environment the command should run under]]></help>
  1029. </option>
  1030. </optionsBefore>
  1031. </command>
  1032. <command>
  1033. <name>make:controller</name>
  1034. <help><![CDATA[Create a new controller class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--api</td><td></td><td>Exclude the create and edit methods from the controller.</td></tr> <tr><td>--force</td><td></td><td>Create the class even if the controller already exists</td></tr> <tr><td>--invokable</td><td>(-i)</td><td>Generate a single method, invokable controller class.</td></tr> <tr><td>--model</td><td>(-m)</td><td>Generate a resource controller for the given model.</td></tr> <tr><td>--parent</td><td>(-p)</td><td>Generate a nested resource controller class.</td></tr> <tr><td>--resource</td><td>(-r)</td><td>Generate a resource controller class.</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1035. <params>name</params>
  1036. <optionsBefore>
  1037. <option name="--api" shortcut="">
  1038. <help><![CDATA[Exclude the create and edit methods from the controller.]]></help>
  1039. </option>
  1040. <option name="--force" shortcut="">
  1041. <help><![CDATA[Create the class even if the controller already exists]]></help>
  1042. </option>
  1043. <option name="--invokable" shortcut="-i">
  1044. <help><![CDATA[Generate a single method, invokable controller class.]]></help>
  1045. </option>
  1046. <option name="--model" shortcut="-m" pattern="equals">
  1047. <help><![CDATA[Generate a resource controller for the given model.]]></help>
  1048. </option>
  1049. <option name="--parent" shortcut="-p" pattern="equals">
  1050. <help><![CDATA[Generate a nested resource controller class.]]></help>
  1051. </option>
  1052. <option name="--resource" shortcut="-r">
  1053. <help><![CDATA[Generate a resource controller class.]]></help>
  1054. </option>
  1055. <option name="--help" shortcut="-h">
  1056. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1057. </option>
  1058. <option name="--quiet" shortcut="-q">
  1059. <help><![CDATA[Do not output any message]]></help>
  1060. </option>
  1061. <option name="--verbose" shortcut="-v">
  1062. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1063. </option>
  1064. <option name="--version" shortcut="-V">
  1065. <help><![CDATA[Display this application version]]></help>
  1066. </option>
  1067. <option name="--ansi" shortcut="">
  1068. <help><![CDATA[Force ANSI output]]></help>
  1069. </option>
  1070. <option name="--no-ansi" shortcut="">
  1071. <help><![CDATA[Disable ANSI output]]></help>
  1072. </option>
  1073. <option name="--no-interaction" shortcut="-n">
  1074. <help><![CDATA[Do not ask any interactive question]]></help>
  1075. </option>
  1076. <option name="--env" shortcut="" pattern="equals">
  1077. <help><![CDATA[The environment the command should run under]]></help>
  1078. </option>
  1079. </optionsBefore>
  1080. </command>
  1081. <command>
  1082. <name>make:event</name>
  1083. <help><![CDATA[Create a new event class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1084. <params>name</params>
  1085. <optionsBefore>
  1086. <option name="--help" shortcut="-h">
  1087. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1088. </option>
  1089. <option name="--quiet" shortcut="-q">
  1090. <help><![CDATA[Do not output any message]]></help>
  1091. </option>
  1092. <option name="--verbose" shortcut="-v">
  1093. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1094. </option>
  1095. <option name="--version" shortcut="-V">
  1096. <help><![CDATA[Display this application version]]></help>
  1097. </option>
  1098. <option name="--ansi" shortcut="">
  1099. <help><![CDATA[Force ANSI output]]></help>
  1100. </option>
  1101. <option name="--no-ansi" shortcut="">
  1102. <help><![CDATA[Disable ANSI output]]></help>
  1103. </option>
  1104. <option name="--no-interaction" shortcut="-n">
  1105. <help><![CDATA[Do not ask any interactive question]]></help>
  1106. </option>
  1107. <option name="--env" shortcut="" pattern="equals">
  1108. <help><![CDATA[The environment the command should run under]]></help>
  1109. </option>
  1110. </optionsBefore>
  1111. </command>
  1112. <command>
  1113. <name>make:exception</name>
  1114. <help><![CDATA[Create a new custom exception class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--render</td><td></td><td>Create the exception with an empty render method</td></tr> <tr><td>--report</td><td></td><td>Create the exception with an empty report method</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1115. <params>name</params>
  1116. <optionsBefore>
  1117. <option name="--render" shortcut="">
  1118. <help><![CDATA[Create the exception with an empty render method]]></help>
  1119. </option>
  1120. <option name="--report" shortcut="">
  1121. <help><![CDATA[Create the exception with an empty report method]]></help>
  1122. </option>
  1123. <option name="--help" shortcut="-h">
  1124. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1125. </option>
  1126. <option name="--quiet" shortcut="-q">
  1127. <help><![CDATA[Do not output any message]]></help>
  1128. </option>
  1129. <option name="--verbose" shortcut="-v">
  1130. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1131. </option>
  1132. <option name="--version" shortcut="-V">
  1133. <help><![CDATA[Display this application version]]></help>
  1134. </option>
  1135. <option name="--ansi" shortcut="">
  1136. <help><![CDATA[Force ANSI output]]></help>
  1137. </option>
  1138. <option name="--no-ansi" shortcut="">
  1139. <help><![CDATA[Disable ANSI output]]></help>
  1140. </option>
  1141. <option name="--no-interaction" shortcut="-n">
  1142. <help><![CDATA[Do not ask any interactive question]]></help>
  1143. </option>
  1144. <option name="--env" shortcut="" pattern="equals">
  1145. <help><![CDATA[The environment the command should run under]]></help>
  1146. </option>
  1147. </optionsBefore>
  1148. </command>
  1149. <command>
  1150. <name>make:factory</name>
  1151. <help><![CDATA[Create a new model factory<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--model</td><td>(-m)</td><td>The name of the model</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1152. <params>name</params>
  1153. <optionsBefore>
  1154. <option name="--model" shortcut="-m" pattern="equals">
  1155. <help><![CDATA[The name of the model]]></help>
  1156. </option>
  1157. <option name="--help" shortcut="-h">
  1158. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1159. </option>
  1160. <option name="--quiet" shortcut="-q">
  1161. <help><![CDATA[Do not output any message]]></help>
  1162. </option>
  1163. <option name="--verbose" shortcut="-v">
  1164. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1165. </option>
  1166. <option name="--version" shortcut="-V">
  1167. <help><![CDATA[Display this application version]]></help>
  1168. </option>
  1169. <option name="--ansi" shortcut="">
  1170. <help><![CDATA[Force ANSI output]]></help>
  1171. </option>
  1172. <option name="--no-ansi" shortcut="">
  1173. <help><![CDATA[Disable ANSI output]]></help>
  1174. </option>
  1175. <option name="--no-interaction" shortcut="-n">
  1176. <help><![CDATA[Do not ask any interactive question]]></help>
  1177. </option>
  1178. <option name="--env" shortcut="" pattern="equals">
  1179. <help><![CDATA[The environment the command should run under]]></help>
  1180. </option>
  1181. </optionsBefore>
  1182. </command>
  1183. <command>
  1184. <name>make:job</name>
  1185. <help><![CDATA[Create a new job class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--sync</td><td></td><td>Indicates that job should be synchronous</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1186. <params>name</params>
  1187. <optionsBefore>
  1188. <option name="--sync" shortcut="">
  1189. <help><![CDATA[Indicates that job should be synchronous]]></help>
  1190. </option>
  1191. <option name="--help" shortcut="-h">
  1192. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1193. </option>
  1194. <option name="--quiet" shortcut="-q">
  1195. <help><![CDATA[Do not output any message]]></help>
  1196. </option>
  1197. <option name="--verbose" shortcut="-v">
  1198. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1199. </option>
  1200. <option name="--version" shortcut="-V">
  1201. <help><![CDATA[Display this application version]]></help>
  1202. </option>
  1203. <option name="--ansi" shortcut="">
  1204. <help><![CDATA[Force ANSI output]]></help>
  1205. </option>
  1206. <option name="--no-ansi" shortcut="">
  1207. <help><![CDATA[Disable ANSI output]]></help>
  1208. </option>
  1209. <option name="--no-interaction" shortcut="-n">
  1210. <help><![CDATA[Do not ask any interactive question]]></help>
  1211. </option>
  1212. <option name="--env" shortcut="" pattern="equals">
  1213. <help><![CDATA[The environment the command should run under]]></help>
  1214. </option>
  1215. </optionsBefore>
  1216. </command>
  1217. <command>
  1218. <name>make:listener</name>
  1219. <help><![CDATA[Create a new event listener class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--event</td><td>(-e)</td><td>The event class being listened for</td></tr> <tr><td>--queued</td><td></td><td>Indicates the event listener should be queued</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1220. <params>name</params>
  1221. <optionsBefore>
  1222. <option name="--event" shortcut="-e" pattern="equals">
  1223. <help><![CDATA[The event class being listened for]]></help>
  1224. </option>
  1225. <option name="--queued" shortcut="">
  1226. <help><![CDATA[Indicates the event listener should be queued]]></help>
  1227. </option>
  1228. <option name="--help" shortcut="-h">
  1229. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1230. </option>
  1231. <option name="--quiet" shortcut="-q">
  1232. <help><![CDATA[Do not output any message]]></help>
  1233. </option>
  1234. <option name="--verbose" shortcut="-v">
  1235. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1236. </option>
  1237. <option name="--version" shortcut="-V">
  1238. <help><![CDATA[Display this application version]]></help>
  1239. </option>
  1240. <option name="--ansi" shortcut="">
  1241. <help><![CDATA[Force ANSI output]]></help>
  1242. </option>
  1243. <option name="--no-ansi" shortcut="">
  1244. <help><![CDATA[Disable ANSI output]]></help>
  1245. </option>
  1246. <option name="--no-interaction" shortcut="-n">
  1247. <help><![CDATA[Do not ask any interactive question]]></help>
  1248. </option>
  1249. <option name="--env" shortcut="" pattern="equals">
  1250. <help><![CDATA[The environment the command should run under]]></help>
  1251. </option>
  1252. </optionsBefore>
  1253. </command>
  1254. <command>
  1255. <name>make:mail</name>
  1256. <help><![CDATA[Create a new email class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--force</td><td>(-f)</td><td>Create the class even if the mailable already exists</td></tr> <tr><td>--markdown</td><td>(-m)</td><td>Create a new Markdown template for the mailable</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1257. <params>name</params>
  1258. <optionsBefore>
  1259. <option name="--force" shortcut="-f">
  1260. <help><![CDATA[Create the class even if the mailable already exists]]></help>
  1261. </option>
  1262. <option name="--markdown" shortcut="-m" pattern="equals">
  1263. <help><![CDATA[Create a new Markdown template for the mailable]]></help>
  1264. </option>
  1265. <option name="--help" shortcut="-h">
  1266. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1267. </option>
  1268. <option name="--quiet" shortcut="-q">
  1269. <help><![CDATA[Do not output any message]]></help>
  1270. </option>
  1271. <option name="--verbose" shortcut="-v">
  1272. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1273. </option>
  1274. <option name="--version" shortcut="-V">
  1275. <help><![CDATA[Display this application version]]></help>
  1276. </option>
  1277. <option name="--ansi" shortcut="">
  1278. <help><![CDATA[Force ANSI output]]></help>
  1279. </option>
  1280. <option name="--no-ansi" shortcut="">
  1281. <help><![CDATA[Disable ANSI output]]></help>
  1282. </option>
  1283. <option name="--no-interaction" shortcut="-n">
  1284. <help><![CDATA[Do not ask any interactive question]]></help>
  1285. </option>
  1286. <option name="--env" shortcut="" pattern="equals">
  1287. <help><![CDATA[The environment the command should run under]]></help>
  1288. </option>
  1289. </optionsBefore>
  1290. </command>
  1291. <command>
  1292. <name>make:middleware</name>
  1293. <help><![CDATA[Create a new middleware class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1294. <params>name</params>
  1295. <optionsBefore>
  1296. <option name="--help" shortcut="-h">
  1297. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1298. </option>
  1299. <option name="--quiet" shortcut="-q">
  1300. <help><![CDATA[Do not output any message]]></help>
  1301. </option>
  1302. <option name="--verbose" shortcut="-v">
  1303. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1304. </option>
  1305. <option name="--version" shortcut="-V">
  1306. <help><![CDATA[Display this application version]]></help>
  1307. </option>
  1308. <option name="--ansi" shortcut="">
  1309. <help><![CDATA[Force ANSI output]]></help>
  1310. </option>
  1311. <option name="--no-ansi" shortcut="">
  1312. <help><![CDATA[Disable ANSI output]]></help>
  1313. </option>
  1314. <option name="--no-interaction" shortcut="-n">
  1315. <help><![CDATA[Do not ask any interactive question]]></help>
  1316. </option>
  1317. <option name="--env" shortcut="" pattern="equals">
  1318. <help><![CDATA[The environment the command should run under]]></help>
  1319. </option>
  1320. </optionsBefore>
  1321. </command>
  1322. <command>
  1323. <name>make:migration</name>
  1324. <help><![CDATA[Create a new migration file<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--create</td><td></td><td>The table to be created</td></tr> <tr><td>--table</td><td></td><td>The table to migrate</td></tr> <tr><td>--path</td><td></td><td>The location where the migration file should be created</td></tr> <tr><td>--realpath</td><td></td><td>Indicate any provided migration file paths are pre-resolved absolute paths</td></tr> <tr><td>--fullpath</td><td></td><td>Output the full path of the migration</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1325. <params>name</params>
  1326. <optionsBefore>
  1327. <option name="--create" shortcut="" pattern="equals">
  1328. <help><![CDATA[The table to be created]]></help>
  1329. </option>
  1330. <option name="--table" shortcut="" pattern="equals">
  1331. <help><![CDATA[The table to migrate]]></help>
  1332. </option>
  1333. <option name="--path" shortcut="" pattern="equals">
  1334. <help><![CDATA[The location where the migration file should be created]]></help>
  1335. </option>
  1336. <option name="--realpath" shortcut="">
  1337. <help><![CDATA[Indicate any provided migration file paths are pre-resolved absolute paths]]></help>
  1338. </option>
  1339. <option name="--fullpath" shortcut="">
  1340. <help><![CDATA[Output the full path of the migration]]></help>
  1341. </option>
  1342. <option name="--help" shortcut="-h">
  1343. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1344. </option>
  1345. <option name="--quiet" shortcut="-q">
  1346. <help><![CDATA[Do not output any message]]></help>
  1347. </option>
  1348. <option name="--verbose" shortcut="-v">
  1349. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1350. </option>
  1351. <option name="--version" shortcut="-V">
  1352. <help><![CDATA[Display this application version]]></help>
  1353. </option>
  1354. <option name="--ansi" shortcut="">
  1355. <help><![CDATA[Force ANSI output]]></help>
  1356. </option>
  1357. <option name="--no-ansi" shortcut="">
  1358. <help><![CDATA[Disable ANSI output]]></help>
  1359. </option>
  1360. <option name="--no-interaction" shortcut="-n">
  1361. <help><![CDATA[Do not ask any interactive question]]></help>
  1362. </option>
  1363. <option name="--env" shortcut="" pattern="equals">
  1364. <help><![CDATA[The environment the command should run under]]></help>
  1365. </option>
  1366. </optionsBefore>
  1367. </command>
  1368. <command>
  1369. <name>make:model</name>
  1370. <help><![CDATA[Create a new Eloquent model class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--all</td><td>(-a)</td><td>Generate a migration, seeder, factory, and resource controller for the model</td></tr> <tr><td>--controller</td><td>(-c)</td><td>Create a new controller for the model</td></tr> <tr><td>--factory</td><td>(-f)</td><td>Create a new factory for the model</td></tr> <tr><td>--force</td><td></td><td>Create the class even if the model already exists</td></tr> <tr><td>--migration</td><td>(-m)</td><td>Create a new migration file for the model</td></tr> <tr><td>--seed</td><td>(-s)</td><td>Create a new seeder file for the model</td></tr> <tr><td>--pivot</td><td>(-p)</td><td>Indicates if the generated model should be a custom intermediate table model</td></tr> <tr><td>--resource</td><td>(-r)</td><td>Indicates if the generated controller should be a resource controller</td></tr> <tr><td>--api</td><td></td><td>Indicates if the generated controller should be an API controller</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1371. <params>name</params>
  1372. <optionsBefore>
  1373. <option name="--all" shortcut="-a">
  1374. <help><![CDATA[Generate a migration, seeder, factory, and resource controller for the model]]></help>
  1375. </option>
  1376. <option name="--controller" shortcut="-c">
  1377. <help><![CDATA[Create a new controller for the model]]></help>
  1378. </option>
  1379. <option name="--factory" shortcut="-f">
  1380. <help><![CDATA[Create a new factory for the model]]></help>
  1381. </option>
  1382. <option name="--force" shortcut="">
  1383. <help><![CDATA[Create the class even if the model already exists]]></help>
  1384. </option>
  1385. <option name="--migration" shortcut="-m">
  1386. <help><![CDATA[Create a new migration file for the model]]></help>
  1387. </option>
  1388. <option name="--seed" shortcut="-s">
  1389. <help><![CDATA[Create a new seeder file for the model]]></help>
  1390. </option>
  1391. <option name="--pivot" shortcut="-p">
  1392. <help><![CDATA[Indicates if the generated model should be a custom intermediate table model]]></help>
  1393. </option>
  1394. <option name="--resource" shortcut="-r">
  1395. <help><![CDATA[Indicates if the generated controller should be a resource controller]]></help>
  1396. </option>
  1397. <option name="--api" shortcut="">
  1398. <help><![CDATA[Indicates if the generated controller should be an API controller]]></help>
  1399. </option>
  1400. <option name="--help" shortcut="-h">
  1401. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1402. </option>
  1403. <option name="--quiet" shortcut="-q">
  1404. <help><![CDATA[Do not output any message]]></help>
  1405. </option>
  1406. <option name="--verbose" shortcut="-v">
  1407. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1408. </option>
  1409. <option name="--version" shortcut="-V">
  1410. <help><![CDATA[Display this application version]]></help>
  1411. </option>
  1412. <option name="--ansi" shortcut="">
  1413. <help><![CDATA[Force ANSI output]]></help>
  1414. </option>
  1415. <option name="--no-ansi" shortcut="">
  1416. <help><![CDATA[Disable ANSI output]]></help>
  1417. </option>
  1418. <option name="--no-interaction" shortcut="-n">
  1419. <help><![CDATA[Do not ask any interactive question]]></help>
  1420. </option>
  1421. <option name="--env" shortcut="" pattern="equals">
  1422. <help><![CDATA[The environment the command should run under]]></help>
  1423. </option>
  1424. </optionsBefore>
  1425. </command>
  1426. <command>
  1427. <name>make:notification</name>
  1428. <help><![CDATA[Create a new notification class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--force</td><td>(-f)</td><td>Create the class even if the notification already exists</td></tr> <tr><td>--markdown</td><td>(-m)</td><td>Create a new Markdown template for the notification</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1429. <params>name</params>
  1430. <optionsBefore>
  1431. <option name="--force" shortcut="-f">
  1432. <help><![CDATA[Create the class even if the notification already exists]]></help>
  1433. </option>
  1434. <option name="--markdown" shortcut="-m" pattern="equals">
  1435. <help><![CDATA[Create a new Markdown template for the notification]]></help>
  1436. </option>
  1437. <option name="--help" shortcut="-h">
  1438. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1439. </option>
  1440. <option name="--quiet" shortcut="-q">
  1441. <help><![CDATA[Do not output any message]]></help>
  1442. </option>
  1443. <option name="--verbose" shortcut="-v">
  1444. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1445. </option>
  1446. <option name="--version" shortcut="-V">
  1447. <help><![CDATA[Display this application version]]></help>
  1448. </option>
  1449. <option name="--ansi" shortcut="">
  1450. <help><![CDATA[Force ANSI output]]></help>
  1451. </option>
  1452. <option name="--no-ansi" shortcut="">
  1453. <help><![CDATA[Disable ANSI output]]></help>
  1454. </option>
  1455. <option name="--no-interaction" shortcut="-n">
  1456. <help><![CDATA[Do not ask any interactive question]]></help>
  1457. </option>
  1458. <option name="--env" shortcut="" pattern="equals">
  1459. <help><![CDATA[The environment the command should run under]]></help>
  1460. </option>
  1461. </optionsBefore>
  1462. </command>
  1463. <command>
  1464. <name>make:observer</name>
  1465. <help><![CDATA[Create a new observer class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--model</td><td>(-m)</td><td>The model that the observer applies to.</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1466. <params>name</params>
  1467. <optionsBefore>
  1468. <option name="--model" shortcut="-m" pattern="equals">
  1469. <help><![CDATA[The model that the observer applies to.]]></help>
  1470. </option>
  1471. <option name="--help" shortcut="-h">
  1472. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1473. </option>
  1474. <option name="--quiet" shortcut="-q">
  1475. <help><![CDATA[Do not output any message]]></help>
  1476. </option>
  1477. <option name="--verbose" shortcut="-v">
  1478. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1479. </option>
  1480. <option name="--version" shortcut="-V">
  1481. <help><![CDATA[Display this application version]]></help>
  1482. </option>
  1483. <option name="--ansi" shortcut="">
  1484. <help><![CDATA[Force ANSI output]]></help>
  1485. </option>
  1486. <option name="--no-ansi" shortcut="">
  1487. <help><![CDATA[Disable ANSI output]]></help>
  1488. </option>
  1489. <option name="--no-interaction" shortcut="-n">
  1490. <help><![CDATA[Do not ask any interactive question]]></help>
  1491. </option>
  1492. <option name="--env" shortcut="" pattern="equals">
  1493. <help><![CDATA[The environment the command should run under]]></help>
  1494. </option>
  1495. </optionsBefore>
  1496. </command>
  1497. <command>
  1498. <name>make:policy</name>
  1499. <help><![CDATA[Create a new policy class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--model</td><td>(-m)</td><td>The model that the policy applies to</td></tr> <tr><td>--guard</td><td>(-g)</td><td>The guard that the policy relies on</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1500. <params>name</params>
  1501. <optionsBefore>
  1502. <option name="--model" shortcut="-m" pattern="equals">
  1503. <help><![CDATA[The model that the policy applies to]]></help>
  1504. </option>
  1505. <option name="--guard" shortcut="-g" pattern="equals">
  1506. <help><![CDATA[The guard that the policy relies on]]></help>
  1507. </option>
  1508. <option name="--help" shortcut="-h">
  1509. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1510. </option>
  1511. <option name="--quiet" shortcut="-q">
  1512. <help><![CDATA[Do not output any message]]></help>
  1513. </option>
  1514. <option name="--verbose" shortcut="-v">
  1515. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1516. </option>
  1517. <option name="--version" shortcut="-V">
  1518. <help><![CDATA[Display this application version]]></help>
  1519. </option>
  1520. <option name="--ansi" shortcut="">
  1521. <help><![CDATA[Force ANSI output]]></help>
  1522. </option>
  1523. <option name="--no-ansi" shortcut="">
  1524. <help><![CDATA[Disable ANSI output]]></help>
  1525. </option>
  1526. <option name="--no-interaction" shortcut="-n">
  1527. <help><![CDATA[Do not ask any interactive question]]></help>
  1528. </option>
  1529. <option name="--env" shortcut="" pattern="equals">
  1530. <help><![CDATA[The environment the command should run under]]></help>
  1531. </option>
  1532. </optionsBefore>
  1533. </command>
  1534. <command>
  1535. <name>make:provider</name>
  1536. <help><![CDATA[Create a new service provider class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1537. <params>name</params>
  1538. <optionsBefore>
  1539. <option name="--help" shortcut="-h">
  1540. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1541. </option>
  1542. <option name="--quiet" shortcut="-q">
  1543. <help><![CDATA[Do not output any message]]></help>
  1544. </option>
  1545. <option name="--verbose" shortcut="-v">
  1546. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1547. </option>
  1548. <option name="--version" shortcut="-V">
  1549. <help><![CDATA[Display this application version]]></help>
  1550. </option>
  1551. <option name="--ansi" shortcut="">
  1552. <help><![CDATA[Force ANSI output]]></help>
  1553. </option>
  1554. <option name="--no-ansi" shortcut="">
  1555. <help><![CDATA[Disable ANSI output]]></help>
  1556. </option>
  1557. <option name="--no-interaction" shortcut="-n">
  1558. <help><![CDATA[Do not ask any interactive question]]></help>
  1559. </option>
  1560. <option name="--env" shortcut="" pattern="equals">
  1561. <help><![CDATA[The environment the command should run under]]></help>
  1562. </option>
  1563. </optionsBefore>
  1564. </command>
  1565. <command>
  1566. <name>make:request</name>
  1567. <help><![CDATA[Create a new form request class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1568. <params>name</params>
  1569. <optionsBefore>
  1570. <option name="--help" shortcut="-h">
  1571. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1572. </option>
  1573. <option name="--quiet" shortcut="-q">
  1574. <help><![CDATA[Do not output any message]]></help>
  1575. </option>
  1576. <option name="--verbose" shortcut="-v">
  1577. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1578. </option>
  1579. <option name="--version" shortcut="-V">
  1580. <help><![CDATA[Display this application version]]></help>
  1581. </option>
  1582. <option name="--ansi" shortcut="">
  1583. <help><![CDATA[Force ANSI output]]></help>
  1584. </option>
  1585. <option name="--no-ansi" shortcut="">
  1586. <help><![CDATA[Disable ANSI output]]></help>
  1587. </option>
  1588. <option name="--no-interaction" shortcut="-n">
  1589. <help><![CDATA[Do not ask any interactive question]]></help>
  1590. </option>
  1591. <option name="--env" shortcut="" pattern="equals">
  1592. <help><![CDATA[The environment the command should run under]]></help>
  1593. </option>
  1594. </optionsBefore>
  1595. </command>
  1596. <command>
  1597. <name>make:resource</name>
  1598. <help><![CDATA[Create a new resource<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--collection</td><td>(-c)</td><td>Create a resource collection</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1599. <params>name</params>
  1600. <optionsBefore>
  1601. <option name="--collection" shortcut="-c">
  1602. <help><![CDATA[Create a resource collection]]></help>
  1603. </option>
  1604. <option name="--help" shortcut="-h">
  1605. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1606. </option>
  1607. <option name="--quiet" shortcut="-q">
  1608. <help><![CDATA[Do not output any message]]></help>
  1609. </option>
  1610. <option name="--verbose" shortcut="-v">
  1611. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1612. </option>
  1613. <option name="--version" shortcut="-V">
  1614. <help><![CDATA[Display this application version]]></help>
  1615. </option>
  1616. <option name="--ansi" shortcut="">
  1617. <help><![CDATA[Force ANSI output]]></help>
  1618. </option>
  1619. <option name="--no-ansi" shortcut="">
  1620. <help><![CDATA[Disable ANSI output]]></help>
  1621. </option>
  1622. <option name="--no-interaction" shortcut="-n">
  1623. <help><![CDATA[Do not ask any interactive question]]></help>
  1624. </option>
  1625. <option name="--env" shortcut="" pattern="equals">
  1626. <help><![CDATA[The environment the command should run under]]></help>
  1627. </option>
  1628. </optionsBefore>
  1629. </command>
  1630. <command>
  1631. <name>make:rule</name>
  1632. <help><![CDATA[Create a new validation rule<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1633. <params>name</params>
  1634. <optionsBefore>
  1635. <option name="--help" shortcut="-h">
  1636. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1637. </option>
  1638. <option name="--quiet" shortcut="-q">
  1639. <help><![CDATA[Do not output any message]]></help>
  1640. </option>
  1641. <option name="--verbose" shortcut="-v">
  1642. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1643. </option>
  1644. <option name="--version" shortcut="-V">
  1645. <help><![CDATA[Display this application version]]></help>
  1646. </option>
  1647. <option name="--ansi" shortcut="">
  1648. <help><![CDATA[Force ANSI output]]></help>
  1649. </option>
  1650. <option name="--no-ansi" shortcut="">
  1651. <help><![CDATA[Disable ANSI output]]></help>
  1652. </option>
  1653. <option name="--no-interaction" shortcut="-n">
  1654. <help><![CDATA[Do not ask any interactive question]]></help>
  1655. </option>
  1656. <option name="--env" shortcut="" pattern="equals">
  1657. <help><![CDATA[The environment the command should run under]]></help>
  1658. </option>
  1659. </optionsBefore>
  1660. </command>
  1661. <command>
  1662. <name>make:seeder</name>
  1663. <help><![CDATA[Create a new seeder class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1664. <params>name</params>
  1665. <optionsBefore>
  1666. <option name="--help" shortcut="-h">
  1667. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1668. </option>
  1669. <option name="--quiet" shortcut="-q">
  1670. <help><![CDATA[Do not output any message]]></help>
  1671. </option>
  1672. <option name="--verbose" shortcut="-v">
  1673. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1674. </option>
  1675. <option name="--version" shortcut="-V">
  1676. <help><![CDATA[Display this application version]]></help>
  1677. </option>
  1678. <option name="--ansi" shortcut="">
  1679. <help><![CDATA[Force ANSI output]]></help>
  1680. </option>
  1681. <option name="--no-ansi" shortcut="">
  1682. <help><![CDATA[Disable ANSI output]]></help>
  1683. </option>
  1684. <option name="--no-interaction" shortcut="-n">
  1685. <help><![CDATA[Do not ask any interactive question]]></help>
  1686. </option>
  1687. <option name="--env" shortcut="" pattern="equals">
  1688. <help><![CDATA[The environment the command should run under]]></help>
  1689. </option>
  1690. </optionsBefore>
  1691. </command>
  1692. <command>
  1693. <name>make:test</name>
  1694. <help><![CDATA[Create a new test class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--unit</td><td>(-u)</td><td>Create a unit test.</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1695. <params>name</params>
  1696. <optionsBefore>
  1697. <option name="--unit" shortcut="-u">
  1698. <help><![CDATA[Create a unit test.]]></help>
  1699. </option>
  1700. <option name="--help" shortcut="-h">
  1701. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1702. </option>
  1703. <option name="--quiet" shortcut="-q">
  1704. <help><![CDATA[Do not output any message]]></help>
  1705. </option>
  1706. <option name="--verbose" shortcut="-v">
  1707. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1708. </option>
  1709. <option name="--version" shortcut="-V">
  1710. <help><![CDATA[Display this application version]]></help>
  1711. </option>
  1712. <option name="--ansi" shortcut="">
  1713. <help><![CDATA[Force ANSI output]]></help>
  1714. </option>
  1715. <option name="--no-ansi" shortcut="">
  1716. <help><![CDATA[Disable ANSI output]]></help>
  1717. </option>
  1718. <option name="--no-interaction" shortcut="-n">
  1719. <help><![CDATA[Do not ask any interactive question]]></help>
  1720. </option>
  1721. <option name="--env" shortcut="" pattern="equals">
  1722. <help><![CDATA[The environment the command should run under]]></help>
  1723. </option>
  1724. </optionsBefore>
  1725. </command>
  1726. <command>
  1727. <name>migrate:fresh</name>
  1728. <help><![CDATA[Drop all tables and re-run all migrations<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--database</td><td></td><td>The database connection to use</td></tr> <tr><td>--drop-views</td><td></td><td>Drop all tables and views</td></tr> <tr><td>--drop-types</td><td></td><td>Drop all tables and types (Postgres only)</td></tr> <tr><td>--force</td><td></td><td>Force the operation to run when in production</td></tr> <tr><td>--path</td><td></td><td>The path(s) to the migrations files to be executed</td></tr> <tr><td>--realpath</td><td></td><td>Indicate any provided migration file paths are pre-resolved absolute paths</td></tr> <tr><td>--schema-path</td><td></td><td>The path to a schema dump file</td></tr> <tr><td>--seed</td><td></td><td>Indicates if the seed task should be re-run</td></tr> <tr><td>--seeder</td><td></td><td>The class name of the root seeder</td></tr> <tr><td>--step</td><td></td><td>Force the migrations to be run so they can be rolled back individually</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1729. <optionsBefore>
  1730. <option name="--database" shortcut="" pattern="equals">
  1731. <help><![CDATA[The database connection to use]]></help>
  1732. </option>
  1733. <option name="--drop-views" shortcut="">
  1734. <help><![CDATA[Drop all tables and views]]></help>
  1735. </option>
  1736. <option name="--drop-types" shortcut="">
  1737. <help><![CDATA[Drop all tables and types (Postgres only)]]></help>
  1738. </option>
  1739. <option name="--force" shortcut="">
  1740. <help><![CDATA[Force the operation to run when in production]]></help>
  1741. </option>
  1742. <option name="--path" shortcut="" pattern="equals">
  1743. <help><![CDATA[The path(s) to the migrations files to be executed]]></help>
  1744. </option>
  1745. <option name="--realpath" shortcut="">
  1746. <help><![CDATA[Indicate any provided migration file paths are pre-resolved absolute paths]]></help>
  1747. </option>
  1748. <option name="--schema-path" shortcut="" pattern="equals">
  1749. <help><![CDATA[The path to a schema dump file]]></help>
  1750. </option>
  1751. <option name="--seed" shortcut="">
  1752. <help><![CDATA[Indicates if the seed task should be re-run]]></help>
  1753. </option>
  1754. <option name="--seeder" shortcut="" pattern="equals">
  1755. <help><![CDATA[The class name of the root seeder]]></help>
  1756. </option>
  1757. <option name="--step" shortcut="">
  1758. <help><![CDATA[Force the migrations to be run so they can be rolled back individually]]></help>
  1759. </option>
  1760. <option name="--help" shortcut="-h">
  1761. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1762. </option>
  1763. <option name="--quiet" shortcut="-q">
  1764. <help><![CDATA[Do not output any message]]></help>
  1765. </option>
  1766. <option name="--verbose" shortcut="-v">
  1767. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1768. </option>
  1769. <option name="--version" shortcut="-V">
  1770. <help><![CDATA[Display this application version]]></help>
  1771. </option>
  1772. <option name="--ansi" shortcut="">
  1773. <help><![CDATA[Force ANSI output]]></help>
  1774. </option>
  1775. <option name="--no-ansi" shortcut="">
  1776. <help><![CDATA[Disable ANSI output]]></help>
  1777. </option>
  1778. <option name="--no-interaction" shortcut="-n">
  1779. <help><![CDATA[Do not ask any interactive question]]></help>
  1780. </option>
  1781. <option name="--env" shortcut="" pattern="equals">
  1782. <help><![CDATA[The environment the command should run under]]></help>
  1783. </option>
  1784. </optionsBefore>
  1785. </command>
  1786. <command>
  1787. <name>migrate:install</name>
  1788. <help><![CDATA[Create the migration repository<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--database</td><td></td><td>The database connection to use</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1789. <optionsBefore>
  1790. <option name="--database" shortcut="" pattern="equals">
  1791. <help><![CDATA[The database connection to use]]></help>
  1792. </option>
  1793. <option name="--help" shortcut="-h">
  1794. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1795. </option>
  1796. <option name="--quiet" shortcut="-q">
  1797. <help><![CDATA[Do not output any message]]></help>
  1798. </option>
  1799. <option name="--verbose" shortcut="-v">
  1800. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1801. </option>
  1802. <option name="--version" shortcut="-V">
  1803. <help><![CDATA[Display this application version]]></help>
  1804. </option>
  1805. <option name="--ansi" shortcut="">
  1806. <help><![CDATA[Force ANSI output]]></help>
  1807. </option>
  1808. <option name="--no-ansi" shortcut="">
  1809. <help><![CDATA[Disable ANSI output]]></help>
  1810. </option>
  1811. <option name="--no-interaction" shortcut="-n">
  1812. <help><![CDATA[Do not ask any interactive question]]></help>
  1813. </option>
  1814. <option name="--env" shortcut="" pattern="equals">
  1815. <help><![CDATA[The environment the command should run under]]></help>
  1816. </option>
  1817. </optionsBefore>
  1818. </command>
  1819. <command>
  1820. <name>migrate:refresh</name>
  1821. <help><![CDATA[Reset and re-run all migrations<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--database</td><td></td><td>The database connection to use</td></tr> <tr><td>--force</td><td></td><td>Force the operation to run when in production</td></tr> <tr><td>--path</td><td></td><td>The path(s) to the migrations files to be executed</td></tr> <tr><td>--realpath</td><td></td><td>Indicate any provided migration file paths are pre-resolved absolute paths</td></tr> <tr><td>--seed</td><td></td><td>Indicates if the seed task should be re-run</td></tr> <tr><td>--seeder</td><td></td><td>The class name of the root seeder</td></tr> <tr><td>--step</td><td></td><td>The number of migrations to be reverted & re-run</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1822. <optionsBefore>
  1823. <option name="--database" shortcut="" pattern="equals">
  1824. <help><![CDATA[The database connection to use]]></help>
  1825. </option>
  1826. <option name="--force" shortcut="">
  1827. <help><![CDATA[Force the operation to run when in production]]></help>
  1828. </option>
  1829. <option name="--path" shortcut="" pattern="equals">
  1830. <help><![CDATA[The path(s) to the migrations files to be executed]]></help>
  1831. </option>
  1832. <option name="--realpath" shortcut="">
  1833. <help><![CDATA[Indicate any provided migration file paths are pre-resolved absolute paths]]></help>
  1834. </option>
  1835. <option name="--seed" shortcut="">
  1836. <help><![CDATA[Indicates if the seed task should be re-run]]></help>
  1837. </option>
  1838. <option name="--seeder" shortcut="" pattern="equals">
  1839. <help><![CDATA[The class name of the root seeder]]></help>
  1840. </option>
  1841. <option name="--step" shortcut="" pattern="equals">
  1842. <help><![CDATA[The number of migrations to be reverted & re-run]]></help>
  1843. </option>
  1844. <option name="--help" shortcut="-h">
  1845. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1846. </option>
  1847. <option name="--quiet" shortcut="-q">
  1848. <help><![CDATA[Do not output any message]]></help>
  1849. </option>
  1850. <option name="--verbose" shortcut="-v">
  1851. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1852. </option>
  1853. <option name="--version" shortcut="-V">
  1854. <help><![CDATA[Display this application version]]></help>
  1855. </option>
  1856. <option name="--ansi" shortcut="">
  1857. <help><![CDATA[Force ANSI output]]></help>
  1858. </option>
  1859. <option name="--no-ansi" shortcut="">
  1860. <help><![CDATA[Disable ANSI output]]></help>
  1861. </option>
  1862. <option name="--no-interaction" shortcut="-n">
  1863. <help><![CDATA[Do not ask any interactive question]]></help>
  1864. </option>
  1865. <option name="--env" shortcut="" pattern="equals">
  1866. <help><![CDATA[The environment the command should run under]]></help>
  1867. </option>
  1868. </optionsBefore>
  1869. </command>
  1870. <command>
  1871. <name>migrate:reset</name>
  1872. <help><![CDATA[Rollback all database migrations<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--database</td><td></td><td>The database connection to use</td></tr> <tr><td>--force</td><td></td><td>Force the operation to run when in production</td></tr> <tr><td>--path</td><td></td><td>The path(s) to the migrations files to be executed</td></tr> <tr><td>--realpath</td><td></td><td>Indicate any provided migration file paths are pre-resolved absolute paths</td></tr> <tr><td>--pretend</td><td></td><td>Dump the SQL queries that would be run</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1873. <optionsBefore>
  1874. <option name="--database" shortcut="" pattern="equals">
  1875. <help><![CDATA[The database connection to use]]></help>
  1876. </option>
  1877. <option name="--force" shortcut="">
  1878. <help><![CDATA[Force the operation to run when in production]]></help>
  1879. </option>
  1880. <option name="--path" shortcut="" pattern="equals">
  1881. <help><![CDATA[The path(s) to the migrations files to be executed]]></help>
  1882. </option>
  1883. <option name="--realpath" shortcut="">
  1884. <help><![CDATA[Indicate any provided migration file paths are pre-resolved absolute paths]]></help>
  1885. </option>
  1886. <option name="--pretend" shortcut="">
  1887. <help><![CDATA[Dump the SQL queries that would be run]]></help>
  1888. </option>
  1889. <option name="--help" shortcut="-h">
  1890. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1891. </option>
  1892. <option name="--quiet" shortcut="-q">
  1893. <help><![CDATA[Do not output any message]]></help>
  1894. </option>
  1895. <option name="--verbose" shortcut="-v">
  1896. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1897. </option>
  1898. <option name="--version" shortcut="-V">
  1899. <help><![CDATA[Display this application version]]></help>
  1900. </option>
  1901. <option name="--ansi" shortcut="">
  1902. <help><![CDATA[Force ANSI output]]></help>
  1903. </option>
  1904. <option name="--no-ansi" shortcut="">
  1905. <help><![CDATA[Disable ANSI output]]></help>
  1906. </option>
  1907. <option name="--no-interaction" shortcut="-n">
  1908. <help><![CDATA[Do not ask any interactive question]]></help>
  1909. </option>
  1910. <option name="--env" shortcut="" pattern="equals">
  1911. <help><![CDATA[The environment the command should run under]]></help>
  1912. </option>
  1913. </optionsBefore>
  1914. </command>
  1915. <command>
  1916. <name>migrate:rollback</name>
  1917. <help><![CDATA[Rollback the last database migration<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--database</td><td></td><td>The database connection to use</td></tr> <tr><td>--force</td><td></td><td>Force the operation to run when in production</td></tr> <tr><td>--path</td><td></td><td>The path(s) to the migrations files to be executed</td></tr> <tr><td>--realpath</td><td></td><td>Indicate any provided migration file paths are pre-resolved absolute paths</td></tr> <tr><td>--pretend</td><td></td><td>Dump the SQL queries that would be run</td></tr> <tr><td>--step</td><td></td><td>The number of migrations to be reverted</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1918. <optionsBefore>
  1919. <option name="--database" shortcut="" pattern="equals">
  1920. <help><![CDATA[The database connection to use]]></help>
  1921. </option>
  1922. <option name="--force" shortcut="">
  1923. <help><![CDATA[Force the operation to run when in production]]></help>
  1924. </option>
  1925. <option name="--path" shortcut="" pattern="equals">
  1926. <help><![CDATA[The path(s) to the migrations files to be executed]]></help>
  1927. </option>
  1928. <option name="--realpath" shortcut="">
  1929. <help><![CDATA[Indicate any provided migration file paths are pre-resolved absolute paths]]></help>
  1930. </option>
  1931. <option name="--pretend" shortcut="">
  1932. <help><![CDATA[Dump the SQL queries that would be run]]></help>
  1933. </option>
  1934. <option name="--step" shortcut="" pattern="equals">
  1935. <help><![CDATA[The number of migrations to be reverted]]></help>
  1936. </option>
  1937. <option name="--help" shortcut="-h">
  1938. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1939. </option>
  1940. <option name="--quiet" shortcut="-q">
  1941. <help><![CDATA[Do not output any message]]></help>
  1942. </option>
  1943. <option name="--verbose" shortcut="-v">
  1944. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1945. </option>
  1946. <option name="--version" shortcut="-V">
  1947. <help><![CDATA[Display this application version]]></help>
  1948. </option>
  1949. <option name="--ansi" shortcut="">
  1950. <help><![CDATA[Force ANSI output]]></help>
  1951. </option>
  1952. <option name="--no-ansi" shortcut="">
  1953. <help><![CDATA[Disable ANSI output]]></help>
  1954. </option>
  1955. <option name="--no-interaction" shortcut="-n">
  1956. <help><![CDATA[Do not ask any interactive question]]></help>
  1957. </option>
  1958. <option name="--env" shortcut="" pattern="equals">
  1959. <help><![CDATA[The environment the command should run under]]></help>
  1960. </option>
  1961. </optionsBefore>
  1962. </command>
  1963. <command>
  1964. <name>migrate:status</name>
  1965. <help><![CDATA[Show the status of each migration<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--database</td><td></td><td>The database connection to use</td></tr> <tr><td>--path</td><td></td><td>The path(s) to the migrations files to use</td></tr> <tr><td>--realpath</td><td></td><td>Indicate any provided migration file paths are pre-resolved absolute paths</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1966. <optionsBefore>
  1967. <option name="--database" shortcut="" pattern="equals">
  1968. <help><![CDATA[The database connection to use]]></help>
  1969. </option>
  1970. <option name="--path" shortcut="" pattern="equals">
  1971. <help><![CDATA[The path(s) to the migrations files to use]]></help>
  1972. </option>
  1973. <option name="--realpath" shortcut="">
  1974. <help><![CDATA[Indicate any provided migration file paths are pre-resolved absolute paths]]></help>
  1975. </option>
  1976. <option name="--help" shortcut="-h">
  1977. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1978. </option>
  1979. <option name="--quiet" shortcut="-q">
  1980. <help><![CDATA[Do not output any message]]></help>
  1981. </option>
  1982. <option name="--verbose" shortcut="-v">
  1983. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1984. </option>
  1985. <option name="--version" shortcut="-V">
  1986. <help><![CDATA[Display this application version]]></help>
  1987. </option>
  1988. <option name="--ansi" shortcut="">
  1989. <help><![CDATA[Force ANSI output]]></help>
  1990. </option>
  1991. <option name="--no-ansi" shortcut="">
  1992. <help><![CDATA[Disable ANSI output]]></help>
  1993. </option>
  1994. <option name="--no-interaction" shortcut="-n">
  1995. <help><![CDATA[Do not ask any interactive question]]></help>
  1996. </option>
  1997. <option name="--env" shortcut="" pattern="equals">
  1998. <help><![CDATA[The environment the command should run under]]></help>
  1999. </option>
  2000. </optionsBefore>
  2001. </command>
  2002. <command>
  2003. <name>notifications:table</name>
  2004. <help><![CDATA[Create a migration for the notifications table<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2005. <optionsBefore>
  2006. <option name="--help" shortcut="-h">
  2007. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2008. </option>
  2009. <option name="--quiet" shortcut="-q">
  2010. <help><![CDATA[Do not output any message]]></help>
  2011. </option>
  2012. <option name="--verbose" shortcut="-v">
  2013. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2014. </option>
  2015. <option name="--version" shortcut="-V">
  2016. <help><![CDATA[Display this application version]]></help>
  2017. </option>
  2018. <option name="--ansi" shortcut="">
  2019. <help><![CDATA[Force ANSI output]]></help>
  2020. </option>
  2021. <option name="--no-ansi" shortcut="">
  2022. <help><![CDATA[Disable ANSI output]]></help>
  2023. </option>
  2024. <option name="--no-interaction" shortcut="-n">
  2025. <help><![CDATA[Do not ask any interactive question]]></help>
  2026. </option>
  2027. <option name="--env" shortcut="" pattern="equals">
  2028. <help><![CDATA[The environment the command should run under]]></help>
  2029. </option>
  2030. </optionsBefore>
  2031. </command>
  2032. <command>
  2033. <name>optimize:clear</name>
  2034. <help><![CDATA[Remove the cached bootstrap files<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2035. <optionsBefore>
  2036. <option name="--help" shortcut="-h">
  2037. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2038. </option>
  2039. <option name="--quiet" shortcut="-q">
  2040. <help><![CDATA[Do not output any message]]></help>
  2041. </option>
  2042. <option name="--verbose" shortcut="-v">
  2043. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2044. </option>
  2045. <option name="--version" shortcut="-V">
  2046. <help><![CDATA[Display this application version]]></help>
  2047. </option>
  2048. <option name="--ansi" shortcut="">
  2049. <help><![CDATA[Force ANSI output]]></help>
  2050. </option>
  2051. <option name="--no-ansi" shortcut="">
  2052. <help><![CDATA[Disable ANSI output]]></help>
  2053. </option>
  2054. <option name="--no-interaction" shortcut="-n">
  2055. <help><![CDATA[Do not ask any interactive question]]></help>
  2056. </option>
  2057. <option name="--env" shortcut="" pattern="equals">
  2058. <help><![CDATA[The environment the command should run under]]></help>
  2059. </option>
  2060. </optionsBefore>
  2061. </command>
  2062. <command>
  2063. <name>package:discover</name>
  2064. <help><![CDATA[Rebuild the cached package manifest<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2065. <optionsBefore>
  2066. <option name="--help" shortcut="-h">
  2067. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2068. </option>
  2069. <option name="--quiet" shortcut="-q">
  2070. <help><![CDATA[Do not output any message]]></help>
  2071. </option>
  2072. <option name="--verbose" shortcut="-v">
  2073. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2074. </option>
  2075. <option name="--version" shortcut="-V">
  2076. <help><![CDATA[Display this application version]]></help>
  2077. </option>
  2078. <option name="--ansi" shortcut="">
  2079. <help><![CDATA[Force ANSI output]]></help>
  2080. </option>
  2081. <option name="--no-ansi" shortcut="">
  2082. <help><![CDATA[Disable ANSI output]]></help>
  2083. </option>
  2084. <option name="--no-interaction" shortcut="-n">
  2085. <help><![CDATA[Do not ask any interactive question]]></help>
  2086. </option>
  2087. <option name="--env" shortcut="" pattern="equals">
  2088. <help><![CDATA[The environment the command should run under]]></help>
  2089. </option>
  2090. </optionsBefore>
  2091. </command>
  2092. <command>
  2093. <name>queue:batches-table</name>
  2094. <help><![CDATA[Create a migration for the batches database table<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2095. <optionsBefore>
  2096. <option name="--help" shortcut="-h">
  2097. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2098. </option>
  2099. <option name="--quiet" shortcut="-q">
  2100. <help><![CDATA[Do not output any message]]></help>
  2101. </option>
  2102. <option name="--verbose" shortcut="-v">
  2103. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2104. </option>
  2105. <option name="--version" shortcut="-V">
  2106. <help><![CDATA[Display this application version]]></help>
  2107. </option>
  2108. <option name="--ansi" shortcut="">
  2109. <help><![CDATA[Force ANSI output]]></help>
  2110. </option>
  2111. <option name="--no-ansi" shortcut="">
  2112. <help><![CDATA[Disable ANSI output]]></help>
  2113. </option>
  2114. <option name="--no-interaction" shortcut="-n">
  2115. <help><![CDATA[Do not ask any interactive question]]></help>
  2116. </option>
  2117. <option name="--env" shortcut="" pattern="equals">
  2118. <help><![CDATA[The environment the command should run under]]></help>
  2119. </option>
  2120. </optionsBefore>
  2121. </command>
  2122. <command>
  2123. <name>queue:clear</name>
  2124. <help><![CDATA[Delete all of the jobs from the specified queue<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--queue</td><td></td><td>The name of the queue to clear</td></tr> <tr><td>--force</td><td></td><td>Force the operation to run when in production</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2125. <params>connection[=null]</params>
  2126. <optionsBefore>
  2127. <option name="--queue" shortcut="" pattern="equals">
  2128. <help><![CDATA[The name of the queue to clear]]></help>
  2129. </option>
  2130. <option name="--force" shortcut="">
  2131. <help><![CDATA[Force the operation to run when in production]]></help>
  2132. </option>
  2133. <option name="--help" shortcut="-h">
  2134. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2135. </option>
  2136. <option name="--quiet" shortcut="-q">
  2137. <help><![CDATA[Do not output any message]]></help>
  2138. </option>
  2139. <option name="--verbose" shortcut="-v">
  2140. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2141. </option>
  2142. <option name="--version" shortcut="-V">
  2143. <help><![CDATA[Display this application version]]></help>
  2144. </option>
  2145. <option name="--ansi" shortcut="">
  2146. <help><![CDATA[Force ANSI output]]></help>
  2147. </option>
  2148. <option name="--no-ansi" shortcut="">
  2149. <help><![CDATA[Disable ANSI output]]></help>
  2150. </option>
  2151. <option name="--no-interaction" shortcut="-n">
  2152. <help><![CDATA[Do not ask any interactive question]]></help>
  2153. </option>
  2154. <option name="--env" shortcut="" pattern="equals">
  2155. <help><![CDATA[The environment the command should run under]]></help>
  2156. </option>
  2157. </optionsBefore>
  2158. </command>
  2159. <command>
  2160. <name>queue:failed</name>
  2161. <help><![CDATA[List all of the failed queue jobs<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2162. <optionsBefore>
  2163. <option name="--help" shortcut="-h">
  2164. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2165. </option>
  2166. <option name="--quiet" shortcut="-q">
  2167. <help><![CDATA[Do not output any message]]></help>
  2168. </option>
  2169. <option name="--verbose" shortcut="-v">
  2170. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2171. </option>
  2172. <option name="--version" shortcut="-V">
  2173. <help><![CDATA[Display this application version]]></help>
  2174. </option>
  2175. <option name="--ansi" shortcut="">
  2176. <help><![CDATA[Force ANSI output]]></help>
  2177. </option>
  2178. <option name="--no-ansi" shortcut="">
  2179. <help><![CDATA[Disable ANSI output]]></help>
  2180. </option>
  2181. <option name="--no-interaction" shortcut="-n">
  2182. <help><![CDATA[Do not ask any interactive question]]></help>
  2183. </option>
  2184. <option name="--env" shortcut="" pattern="equals">
  2185. <help><![CDATA[The environment the command should run under]]></help>
  2186. </option>
  2187. </optionsBefore>
  2188. </command>
  2189. <command>
  2190. <name>queue:failed-table</name>
  2191. <help><![CDATA[Create a migration for the failed queue jobs database table<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2192. <optionsBefore>
  2193. <option name="--help" shortcut="-h">
  2194. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2195. </option>
  2196. <option name="--quiet" shortcut="-q">
  2197. <help><![CDATA[Do not output any message]]></help>
  2198. </option>
  2199. <option name="--verbose" shortcut="-v">
  2200. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2201. </option>
  2202. <option name="--version" shortcut="-V">
  2203. <help><![CDATA[Display this application version]]></help>
  2204. </option>
  2205. <option name="--ansi" shortcut="">
  2206. <help><![CDATA[Force ANSI output]]></help>
  2207. </option>
  2208. <option name="--no-ansi" shortcut="">
  2209. <help><![CDATA[Disable ANSI output]]></help>
  2210. </option>
  2211. <option name="--no-interaction" shortcut="-n">
  2212. <help><![CDATA[Do not ask any interactive question]]></help>
  2213. </option>
  2214. <option name="--env" shortcut="" pattern="equals">
  2215. <help><![CDATA[The environment the command should run under]]></help>
  2216. </option>
  2217. </optionsBefore>
  2218. </command>
  2219. <command>
  2220. <name>queue:flush</name>
  2221. <help><![CDATA[Flush all of the failed queue jobs<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2222. <optionsBefore>
  2223. <option name="--help" shortcut="-h">
  2224. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2225. </option>
  2226. <option name="--quiet" shortcut="-q">
  2227. <help><![CDATA[Do not output any message]]></help>
  2228. </option>
  2229. <option name="--verbose" shortcut="-v">
  2230. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2231. </option>
  2232. <option name="--version" shortcut="-V">
  2233. <help><![CDATA[Display this application version]]></help>
  2234. </option>
  2235. <option name="--ansi" shortcut="">
  2236. <help><![CDATA[Force ANSI output]]></help>
  2237. </option>
  2238. <option name="--no-ansi" shortcut="">
  2239. <help><![CDATA[Disable ANSI output]]></help>
  2240. </option>
  2241. <option name="--no-interaction" shortcut="-n">
  2242. <help><![CDATA[Do not ask any interactive question]]></help>
  2243. </option>
  2244. <option name="--env" shortcut="" pattern="equals">
  2245. <help><![CDATA[The environment the command should run under]]></help>
  2246. </option>
  2247. </optionsBefore>
  2248. </command>
  2249. <command>
  2250. <name>queue:forget</name>
  2251. <help><![CDATA[Delete a failed queue job<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2252. <params>id</params>
  2253. <optionsBefore>
  2254. <option name="--help" shortcut="-h">
  2255. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2256. </option>
  2257. <option name="--quiet" shortcut="-q">
  2258. <help><![CDATA[Do not output any message]]></help>
  2259. </option>
  2260. <option name="--verbose" shortcut="-v">
  2261. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2262. </option>
  2263. <option name="--version" shortcut="-V">
  2264. <help><![CDATA[Display this application version]]></help>
  2265. </option>
  2266. <option name="--ansi" shortcut="">
  2267. <help><![CDATA[Force ANSI output]]></help>
  2268. </option>
  2269. <option name="--no-ansi" shortcut="">
  2270. <help><![CDATA[Disable ANSI output]]></help>
  2271. </option>
  2272. <option name="--no-interaction" shortcut="-n">
  2273. <help><![CDATA[Do not ask any interactive question]]></help>
  2274. </option>
  2275. <option name="--env" shortcut="" pattern="equals">
  2276. <help><![CDATA[The environment the command should run under]]></help>
  2277. </option>
  2278. </optionsBefore>
  2279. </command>
  2280. <command>
  2281. <name>queue:listen</name>
  2282. <help><![CDATA[Listen to a given queue<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--name</td><td></td><td>The name of the worker</td></tr> <tr><td>--delay</td><td></td><td>The number of seconds to delay failed jobs (Deprecated)</td></tr> <tr><td>--backoff</td><td></td><td>The number of seconds to wait before retrying a job that encountered an uncaught exception</td></tr> <tr><td>--force</td><td></td><td>Force the worker to run even in maintenance mode</td></tr> <tr><td>--memory</td><td></td><td>The memory limit in megabytes</td></tr> <tr><td>--queue</td><td></td><td>The queue to listen on</td></tr> <tr><td>--sleep</td><td></td><td>Number of seconds to sleep when no job is available</td></tr> <tr><td>--timeout</td><td></td><td>The number of seconds a child process can run</td></tr> <tr><td>--tries</td><td></td><td>Number of times to attempt a job before logging it failed</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2283. <params>connection[=null]</params>
  2284. <optionsBefore>
  2285. <option name="--name" shortcut="" pattern="equals">
  2286. <help><![CDATA[The name of the worker]]></help>
  2287. </option>
  2288. <option name="--delay" shortcut="" pattern="equals">
  2289. <help><![CDATA[The number of seconds to delay failed jobs (Deprecated)]]></help>
  2290. </option>
  2291. <option name="--backoff" shortcut="" pattern="equals">
  2292. <help><![CDATA[The number of seconds to wait before retrying a job that encountered an uncaught exception]]></help>
  2293. </option>
  2294. <option name="--force" shortcut="">
  2295. <help><![CDATA[Force the worker to run even in maintenance mode]]></help>
  2296. </option>
  2297. <option name="--memory" shortcut="" pattern="equals">
  2298. <help><![CDATA[The memory limit in megabytes]]></help>
  2299. </option>
  2300. <option name="--queue" shortcut="" pattern="equals">
  2301. <help><![CDATA[The queue to listen on]]></help>
  2302. </option>
  2303. <option name="--sleep" shortcut="" pattern="equals">
  2304. <help><![CDATA[Number of seconds to sleep when no job is available]]></help>
  2305. </option>
  2306. <option name="--timeout" shortcut="" pattern="equals">
  2307. <help><![CDATA[The number of seconds a child process can run]]></help>
  2308. </option>
  2309. <option name="--tries" shortcut="" pattern="equals">
  2310. <help><![CDATA[Number of times to attempt a job before logging it failed]]></help>
  2311. </option>
  2312. <option name="--help" shortcut="-h">
  2313. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2314. </option>
  2315. <option name="--quiet" shortcut="-q">
  2316. <help><![CDATA[Do not output any message]]></help>
  2317. </option>
  2318. <option name="--verbose" shortcut="-v">
  2319. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2320. </option>
  2321. <option name="--version" shortcut="-V">
  2322. <help><![CDATA[Display this application version]]></help>
  2323. </option>
  2324. <option name="--ansi" shortcut="">
  2325. <help><![CDATA[Force ANSI output]]></help>
  2326. </option>
  2327. <option name="--no-ansi" shortcut="">
  2328. <help><![CDATA[Disable ANSI output]]></help>
  2329. </option>
  2330. <option name="--no-interaction" shortcut="-n">
  2331. <help><![CDATA[Do not ask any interactive question]]></help>
  2332. </option>
  2333. <option name="--env" shortcut="" pattern="equals">
  2334. <help><![CDATA[The environment the command should run under]]></help>
  2335. </option>
  2336. </optionsBefore>
  2337. </command>
  2338. <command>
  2339. <name>queue:prune-batches</name>
  2340. <help><![CDATA[Prune stale entries from the batches database<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--hours</td><td></td><td>The number of hours to retain batch data</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2341. <optionsBefore>
  2342. <option name="--hours" shortcut="" pattern="equals">
  2343. <help><![CDATA[The number of hours to retain batch data]]></help>
  2344. </option>
  2345. <option name="--help" shortcut="-h">
  2346. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2347. </option>
  2348. <option name="--quiet" shortcut="-q">
  2349. <help><![CDATA[Do not output any message]]></help>
  2350. </option>
  2351. <option name="--verbose" shortcut="-v">
  2352. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2353. </option>
  2354. <option name="--version" shortcut="-V">
  2355. <help><![CDATA[Display this application version]]></help>
  2356. </option>
  2357. <option name="--ansi" shortcut="">
  2358. <help><![CDATA[Force ANSI output]]></help>
  2359. </option>
  2360. <option name="--no-ansi" shortcut="">
  2361. <help><![CDATA[Disable ANSI output]]></help>
  2362. </option>
  2363. <option name="--no-interaction" shortcut="-n">
  2364. <help><![CDATA[Do not ask any interactive question]]></help>
  2365. </option>
  2366. <option name="--env" shortcut="" pattern="equals">
  2367. <help><![CDATA[The environment the command should run under]]></help>
  2368. </option>
  2369. </optionsBefore>
  2370. </command>
  2371. <command>
  2372. <name>queue:restart</name>
  2373. <help><![CDATA[Restart queue worker daemons after their current job<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2374. <optionsBefore>
  2375. <option name="--help" shortcut="-h">
  2376. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2377. </option>
  2378. <option name="--quiet" shortcut="-q">
  2379. <help><![CDATA[Do not output any message]]></help>
  2380. </option>
  2381. <option name="--verbose" shortcut="-v">
  2382. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2383. </option>
  2384. <option name="--version" shortcut="-V">
  2385. <help><![CDATA[Display this application version]]></help>
  2386. </option>
  2387. <option name="--ansi" shortcut="">
  2388. <help><![CDATA[Force ANSI output]]></help>
  2389. </option>
  2390. <option name="--no-ansi" shortcut="">
  2391. <help><![CDATA[Disable ANSI output]]></help>
  2392. </option>
  2393. <option name="--no-interaction" shortcut="-n">
  2394. <help><![CDATA[Do not ask any interactive question]]></help>
  2395. </option>
  2396. <option name="--env" shortcut="" pattern="equals">
  2397. <help><![CDATA[The environment the command should run under]]></help>
  2398. </option>
  2399. </optionsBefore>
  2400. </command>
  2401. <command>
  2402. <name>queue:retry</name>
  2403. <help><![CDATA[Retry a failed queue job<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--range</td><td></td><td>Range of job IDs (numeric) to be retried</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2404. <params>id[=null]</params>
  2405. <optionsBefore>
  2406. <option name="--range" shortcut="" pattern="equals">
  2407. <help><![CDATA[Range of job IDs (numeric) to be retried]]></help>
  2408. </option>
  2409. <option name="--help" shortcut="-h">
  2410. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2411. </option>
  2412. <option name="--quiet" shortcut="-q">
  2413. <help><![CDATA[Do not output any message]]></help>
  2414. </option>
  2415. <option name="--verbose" shortcut="-v">
  2416. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2417. </option>
  2418. <option name="--version" shortcut="-V">
  2419. <help><![CDATA[Display this application version]]></help>
  2420. </option>
  2421. <option name="--ansi" shortcut="">
  2422. <help><![CDATA[Force ANSI output]]></help>
  2423. </option>
  2424. <option name="--no-ansi" shortcut="">
  2425. <help><![CDATA[Disable ANSI output]]></help>
  2426. </option>
  2427. <option name="--no-interaction" shortcut="-n">
  2428. <help><![CDATA[Do not ask any interactive question]]></help>
  2429. </option>
  2430. <option name="--env" shortcut="" pattern="equals">
  2431. <help><![CDATA[The environment the command should run under]]></help>
  2432. </option>
  2433. </optionsBefore>
  2434. </command>
  2435. <command>
  2436. <name>queue:retry-batch</name>
  2437. <help><![CDATA[Retry the failed jobs for a batch<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2438. <params>id</params>
  2439. <optionsBefore>
  2440. <option name="--help" shortcut="-h">
  2441. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2442. </option>
  2443. <option name="--quiet" shortcut="-q">
  2444. <help><![CDATA[Do not output any message]]></help>
  2445. </option>
  2446. <option name="--verbose" shortcut="-v">
  2447. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2448. </option>
  2449. <option name="--version" shortcut="-V">
  2450. <help><![CDATA[Display this application version]]></help>
  2451. </option>
  2452. <option name="--ansi" shortcut="">
  2453. <help><![CDATA[Force ANSI output]]></help>
  2454. </option>
  2455. <option name="--no-ansi" shortcut="">
  2456. <help><![CDATA[Disable ANSI output]]></help>
  2457. </option>
  2458. <option name="--no-interaction" shortcut="-n">
  2459. <help><![CDATA[Do not ask any interactive question]]></help>
  2460. </option>
  2461. <option name="--env" shortcut="" pattern="equals">
  2462. <help><![CDATA[The environment the command should run under]]></help>
  2463. </option>
  2464. </optionsBefore>
  2465. </command>
  2466. <command>
  2467. <name>queue:table</name>
  2468. <help><![CDATA[Create a migration for the queue jobs database table<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2469. <optionsBefore>
  2470. <option name="--help" shortcut="-h">
  2471. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2472. </option>
  2473. <option name="--quiet" shortcut="-q">
  2474. <help><![CDATA[Do not output any message]]></help>
  2475. </option>
  2476. <option name="--verbose" shortcut="-v">
  2477. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2478. </option>
  2479. <option name="--version" shortcut="-V">
  2480. <help><![CDATA[Display this application version]]></help>
  2481. </option>
  2482. <option name="--ansi" shortcut="">
  2483. <help><![CDATA[Force ANSI output]]></help>
  2484. </option>
  2485. <option name="--no-ansi" shortcut="">
  2486. <help><![CDATA[Disable ANSI output]]></help>
  2487. </option>
  2488. <option name="--no-interaction" shortcut="-n">
  2489. <help><![CDATA[Do not ask any interactive question]]></help>
  2490. </option>
  2491. <option name="--env" shortcut="" pattern="equals">
  2492. <help><![CDATA[The environment the command should run under]]></help>
  2493. </option>
  2494. </optionsBefore>
  2495. </command>
  2496. <command>
  2497. <name>queue:work</name>
  2498. <help><![CDATA[Start processing jobs on the queue as a daemon<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--name</td><td></td><td>The name of the worker</td></tr> <tr><td>--queue</td><td></td><td>The names of the queues to work</td></tr> <tr><td>--daemon</td><td></td><td>Run the worker in daemon mode (Deprecated)</td></tr> <tr><td>--once</td><td></td><td>Only process the next job on the queue</td></tr> <tr><td>--stop-when-empty</td><td></td><td>Stop when the queue is empty</td></tr> <tr><td>--delay</td><td></td><td>The number of seconds to delay failed jobs (Deprecated)</td></tr> <tr><td>--backoff</td><td></td><td>The number of seconds to wait before retrying a job that encountered an uncaught exception</td></tr> <tr><td>--max-jobs</td><td></td><td>The number of jobs to process before stopping</td></tr> <tr><td>--max-time</td><td></td><td>The maximum number of seconds the worker should run</td></tr> <tr><td>--force</td><td></td><td>Force the worker to run even in maintenance mode</td></tr> <tr><td>--memory</td><td></td><td>The memory limit in megabytes</td></tr> <tr><td>--sleep</td><td></td><td>Number of seconds to sleep when no job is available</td></tr> <tr><td>--timeout</td><td></td><td>The number of seconds a child process can run</td></tr> <tr><td>--tries</td><td></td><td>Number of times to attempt a job before logging it failed</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2499. <params>connection[=null]</params>
  2500. <optionsBefore>
  2501. <option name="--name" shortcut="" pattern="equals">
  2502. <help><![CDATA[The name of the worker]]></help>
  2503. </option>
  2504. <option name="--queue" shortcut="" pattern="equals">
  2505. <help><![CDATA[The names of the queues to work]]></help>
  2506. </option>
  2507. <option name="--daemon" shortcut="">
  2508. <help><![CDATA[Run the worker in daemon mode (Deprecated)]]></help>
  2509. </option>
  2510. <option name="--once" shortcut="">
  2511. <help><![CDATA[Only process the next job on the queue]]></help>
  2512. </option>
  2513. <option name="--stop-when-empty" shortcut="">
  2514. <help><![CDATA[Stop when the queue is empty]]></help>
  2515. </option>
  2516. <option name="--delay" shortcut="" pattern="equals">
  2517. <help><![CDATA[The number of seconds to delay failed jobs (Deprecated)]]></help>
  2518. </option>
  2519. <option name="--backoff" shortcut="" pattern="equals">
  2520. <help><![CDATA[The number of seconds to wait before retrying a job that encountered an uncaught exception]]></help>
  2521. </option>
  2522. <option name="--max-jobs" shortcut="" pattern="equals">
  2523. <help><![CDATA[The number of jobs to process before stopping]]></help>
  2524. </option>
  2525. <option name="--max-time" shortcut="" pattern="equals">
  2526. <help><![CDATA[The maximum number of seconds the worker should run]]></help>
  2527. </option>
  2528. <option name="--force" shortcut="">
  2529. <help><![CDATA[Force the worker to run even in maintenance mode]]></help>
  2530. </option>
  2531. <option name="--memory" shortcut="" pattern="equals">
  2532. <help><![CDATA[The memory limit in megabytes]]></help>
  2533. </option>
  2534. <option name="--sleep" shortcut="" pattern="equals">
  2535. <help><![CDATA[Number of seconds to sleep when no job is available]]></help>
  2536. </option>
  2537. <option name="--timeout" shortcut="" pattern="equals">
  2538. <help><![CDATA[The number of seconds a child process can run]]></help>
  2539. </option>
  2540. <option name="--tries" shortcut="" pattern="equals">
  2541. <help><![CDATA[Number of times to attempt a job before logging it failed]]></help>
  2542. </option>
  2543. <option name="--help" shortcut="-h">
  2544. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2545. </option>
  2546. <option name="--quiet" shortcut="-q">
  2547. <help><![CDATA[Do not output any message]]></help>
  2548. </option>
  2549. <option name="--verbose" shortcut="-v">
  2550. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2551. </option>
  2552. <option name="--version" shortcut="-V">
  2553. <help><![CDATA[Display this application version]]></help>
  2554. </option>
  2555. <option name="--ansi" shortcut="">
  2556. <help><![CDATA[Force ANSI output]]></help>
  2557. </option>
  2558. <option name="--no-ansi" shortcut="">
  2559. <help><![CDATA[Disable ANSI output]]></help>
  2560. </option>
  2561. <option name="--no-interaction" shortcut="-n">
  2562. <help><![CDATA[Do not ask any interactive question]]></help>
  2563. </option>
  2564. <option name="--env" shortcut="" pattern="equals">
  2565. <help><![CDATA[The environment the command should run under]]></help>
  2566. </option>
  2567. </optionsBefore>
  2568. </command>
  2569. <command>
  2570. <name>route:cache</name>
  2571. <help><![CDATA[Create a route cache file for faster route registration<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2572. <optionsBefore>
  2573. <option name="--help" shortcut="-h">
  2574. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2575. </option>
  2576. <option name="--quiet" shortcut="-q">
  2577. <help><![CDATA[Do not output any message]]></help>
  2578. </option>
  2579. <option name="--verbose" shortcut="-v">
  2580. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2581. </option>
  2582. <option name="--version" shortcut="-V">
  2583. <help><![CDATA[Display this application version]]></help>
  2584. </option>
  2585. <option name="--ansi" shortcut="">
  2586. <help><![CDATA[Force ANSI output]]></help>
  2587. </option>
  2588. <option name="--no-ansi" shortcut="">
  2589. <help><![CDATA[Disable ANSI output]]></help>
  2590. </option>
  2591. <option name="--no-interaction" shortcut="-n">
  2592. <help><![CDATA[Do not ask any interactive question]]></help>
  2593. </option>
  2594. <option name="--env" shortcut="" pattern="equals">
  2595. <help><![CDATA[The environment the command should run under]]></help>
  2596. </option>
  2597. </optionsBefore>
  2598. </command>
  2599. <command>
  2600. <name>route:clear</name>
  2601. <help><![CDATA[Remove the route cache file<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2602. <optionsBefore>
  2603. <option name="--help" shortcut="-h">
  2604. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2605. </option>
  2606. <option name="--quiet" shortcut="-q">
  2607. <help><![CDATA[Do not output any message]]></help>
  2608. </option>
  2609. <option name="--verbose" shortcut="-v">
  2610. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2611. </option>
  2612. <option name="--version" shortcut="-V">
  2613. <help><![CDATA[Display this application version]]></help>
  2614. </option>
  2615. <option name="--ansi" shortcut="">
  2616. <help><![CDATA[Force ANSI output]]></help>
  2617. </option>
  2618. <option name="--no-ansi" shortcut="">
  2619. <help><![CDATA[Disable ANSI output]]></help>
  2620. </option>
  2621. <option name="--no-interaction" shortcut="-n">
  2622. <help><![CDATA[Do not ask any interactive question]]></help>
  2623. </option>
  2624. <option name="--env" shortcut="" pattern="equals">
  2625. <help><![CDATA[The environment the command should run under]]></help>
  2626. </option>
  2627. </optionsBefore>
  2628. </command>
  2629. <command>
  2630. <name>route:list</name>
  2631. <help><![CDATA[List all registered routes<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--columns</td><td></td><td>Columns to include in the route table</td></tr> <tr><td>--compact</td><td>(-c)</td><td>Only show method, URI and action columns</td></tr> <tr><td>--json</td><td></td><td>Output the route list as JSON</td></tr> <tr><td>--method</td><td></td><td>Filter the routes by method</td></tr> <tr><td>--name</td><td></td><td>Filter the routes by name</td></tr> <tr><td>--path</td><td></td><td>Filter the routes by path</td></tr> <tr><td>--reverse</td><td>(-r)</td><td>Reverse the ordering of the routes</td></tr> <tr><td>--sort</td><td></td><td>The column (domain, method, uri, name, action, middleware) to sort by</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2632. <optionsBefore>
  2633. <option name="--columns" shortcut="" pattern="equals">
  2634. <help><![CDATA[Columns to include in the route table]]></help>
  2635. </option>
  2636. <option name="--compact" shortcut="-c">
  2637. <help><![CDATA[Only show method, URI and action columns]]></help>
  2638. </option>
  2639. <option name="--json" shortcut="">
  2640. <help><![CDATA[Output the route list as JSON]]></help>
  2641. </option>
  2642. <option name="--method" shortcut="" pattern="equals">
  2643. <help><![CDATA[Filter the routes by method]]></help>
  2644. </option>
  2645. <option name="--name" shortcut="" pattern="equals">
  2646. <help><![CDATA[Filter the routes by name]]></help>
  2647. </option>
  2648. <option name="--path" shortcut="" pattern="equals">
  2649. <help><![CDATA[Filter the routes by path]]></help>
  2650. </option>
  2651. <option name="--reverse" shortcut="-r">
  2652. <help><![CDATA[Reverse the ordering of the routes]]></help>
  2653. </option>
  2654. <option name="--sort" shortcut="" pattern="equals">
  2655. <help><![CDATA[The column (domain, method, uri, name, action, middleware) to sort by]]></help>
  2656. </option>
  2657. <option name="--help" shortcut="-h">
  2658. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2659. </option>
  2660. <option name="--quiet" shortcut="-q">
  2661. <help><![CDATA[Do not output any message]]></help>
  2662. </option>
  2663. <option name="--verbose" shortcut="-v">
  2664. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2665. </option>
  2666. <option name="--version" shortcut="-V">
  2667. <help><![CDATA[Display this application version]]></help>
  2668. </option>
  2669. <option name="--ansi" shortcut="">
  2670. <help><![CDATA[Force ANSI output]]></help>
  2671. </option>
  2672. <option name="--no-ansi" shortcut="">
  2673. <help><![CDATA[Disable ANSI output]]></help>
  2674. </option>
  2675. <option name="--no-interaction" shortcut="-n">
  2676. <help><![CDATA[Do not ask any interactive question]]></help>
  2677. </option>
  2678. <option name="--env" shortcut="" pattern="equals">
  2679. <help><![CDATA[The environment the command should run under]]></help>
  2680. </option>
  2681. </optionsBefore>
  2682. </command>
  2683. <command>
  2684. <name>sail:install</name>
  2685. <help><![CDATA[Install Laravel Sail's default Docker Compose file<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2686. <optionsBefore>
  2687. <option name="--help" shortcut="-h">
  2688. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2689. </option>
  2690. <option name="--quiet" shortcut="-q">
  2691. <help><![CDATA[Do not output any message]]></help>
  2692. </option>
  2693. <option name="--verbose" shortcut="-v">
  2694. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2695. </option>
  2696. <option name="--version" shortcut="-V">
  2697. <help><![CDATA[Display this application version]]></help>
  2698. </option>
  2699. <option name="--ansi" shortcut="">
  2700. <help><![CDATA[Force ANSI output]]></help>
  2701. </option>
  2702. <option name="--no-ansi" shortcut="">
  2703. <help><![CDATA[Disable ANSI output]]></help>
  2704. </option>
  2705. <option name="--no-interaction" shortcut="-n">
  2706. <help><![CDATA[Do not ask any interactive question]]></help>
  2707. </option>
  2708. <option name="--env" shortcut="" pattern="equals">
  2709. <help><![CDATA[The environment the command should run under]]></help>
  2710. </option>
  2711. </optionsBefore>
  2712. </command>
  2713. <command>
  2714. <name>sail:publish</name>
  2715. <help><![CDATA[Publish the Laravel Sail Docker files<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2716. <optionsBefore>
  2717. <option name="--help" shortcut="-h">
  2718. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2719. </option>
  2720. <option name="--quiet" shortcut="-q">
  2721. <help><![CDATA[Do not output any message]]></help>
  2722. </option>
  2723. <option name="--verbose" shortcut="-v">
  2724. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2725. </option>
  2726. <option name="--version" shortcut="-V">
  2727. <help><![CDATA[Display this application version]]></help>
  2728. </option>
  2729. <option name="--ansi" shortcut="">
  2730. <help><![CDATA[Force ANSI output]]></help>
  2731. </option>
  2732. <option name="--no-ansi" shortcut="">
  2733. <help><![CDATA[Disable ANSI output]]></help>
  2734. </option>
  2735. <option name="--no-interaction" shortcut="-n">
  2736. <help><![CDATA[Do not ask any interactive question]]></help>
  2737. </option>
  2738. <option name="--env" shortcut="" pattern="equals">
  2739. <help><![CDATA[The environment the command should run under]]></help>
  2740. </option>
  2741. </optionsBefore>
  2742. </command>
  2743. <command>
  2744. <name>schedule:finish</name>
  2745. <help><![CDATA[Handle the completion of a scheduled command<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2746. <params>id code[=null]</params>
  2747. <optionsBefore>
  2748. <option name="--help" shortcut="-h">
  2749. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2750. </option>
  2751. <option name="--quiet" shortcut="-q">
  2752. <help><![CDATA[Do not output any message]]></help>
  2753. </option>
  2754. <option name="--verbose" shortcut="-v">
  2755. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2756. </option>
  2757. <option name="--version" shortcut="-V">
  2758. <help><![CDATA[Display this application version]]></help>
  2759. </option>
  2760. <option name="--ansi" shortcut="">
  2761. <help><![CDATA[Force ANSI output]]></help>
  2762. </option>
  2763. <option name="--no-ansi" shortcut="">
  2764. <help><![CDATA[Disable ANSI output]]></help>
  2765. </option>
  2766. <option name="--no-interaction" shortcut="-n">
  2767. <help><![CDATA[Do not ask any interactive question]]></help>
  2768. </option>
  2769. <option name="--env" shortcut="" pattern="equals">
  2770. <help><![CDATA[The environment the command should run under]]></help>
  2771. </option>
  2772. </optionsBefore>
  2773. </command>
  2774. <command>
  2775. <name>schedule:list</name>
  2776. <help><![CDATA[List the scheduled commands<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--timezone</td><td></td><td>The timezone that times should be displayed in</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2777. <optionsBefore>
  2778. <option name="--timezone" shortcut="" pattern="equals">
  2779. <help><![CDATA[The timezone that times should be displayed in]]></help>
  2780. </option>
  2781. <option name="--help" shortcut="-h">
  2782. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2783. </option>
  2784. <option name="--quiet" shortcut="-q">
  2785. <help><![CDATA[Do not output any message]]></help>
  2786. </option>
  2787. <option name="--verbose" shortcut="-v">
  2788. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2789. </option>
  2790. <option name="--version" shortcut="-V">
  2791. <help><![CDATA[Display this application version]]></help>
  2792. </option>
  2793. <option name="--ansi" shortcut="">
  2794. <help><![CDATA[Force ANSI output]]></help>
  2795. </option>
  2796. <option name="--no-ansi" shortcut="">
  2797. <help><![CDATA[Disable ANSI output]]></help>
  2798. </option>
  2799. <option name="--no-interaction" shortcut="-n">
  2800. <help><![CDATA[Do not ask any interactive question]]></help>
  2801. </option>
  2802. <option name="--env" shortcut="" pattern="equals">
  2803. <help><![CDATA[The environment the command should run under]]></help>
  2804. </option>
  2805. </optionsBefore>
  2806. </command>
  2807. <command>
  2808. <name>schedule:run</name>
  2809. <help><![CDATA[Run the scheduled commands<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2810. <optionsBefore>
  2811. <option name="--help" shortcut="-h">
  2812. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2813. </option>
  2814. <option name="--quiet" shortcut="-q">
  2815. <help><![CDATA[Do not output any message]]></help>
  2816. </option>
  2817. <option name="--verbose" shortcut="-v">
  2818. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2819. </option>
  2820. <option name="--version" shortcut="-V">
  2821. <help><![CDATA[Display this application version]]></help>
  2822. </option>
  2823. <option name="--ansi" shortcut="">
  2824. <help><![CDATA[Force ANSI output]]></help>
  2825. </option>
  2826. <option name="--no-ansi" shortcut="">
  2827. <help><![CDATA[Disable ANSI output]]></help>
  2828. </option>
  2829. <option name="--no-interaction" shortcut="-n">
  2830. <help><![CDATA[Do not ask any interactive question]]></help>
  2831. </option>
  2832. <option name="--env" shortcut="" pattern="equals">
  2833. <help><![CDATA[The environment the command should run under]]></help>
  2834. </option>
  2835. </optionsBefore>
  2836. </command>
  2837. <command>
  2838. <name>schedule:test</name>
  2839. <help><![CDATA[Run a scheduled command<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2840. <optionsBefore>
  2841. <option name="--help" shortcut="-h">
  2842. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2843. </option>
  2844. <option name="--quiet" shortcut="-q">
  2845. <help><![CDATA[Do not output any message]]></help>
  2846. </option>
  2847. <option name="--verbose" shortcut="-v">
  2848. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2849. </option>
  2850. <option name="--version" shortcut="-V">
  2851. <help><![CDATA[Display this application version]]></help>
  2852. </option>
  2853. <option name="--ansi" shortcut="">
  2854. <help><![CDATA[Force ANSI output]]></help>
  2855. </option>
  2856. <option name="--no-ansi" shortcut="">
  2857. <help><![CDATA[Disable ANSI output]]></help>
  2858. </option>
  2859. <option name="--no-interaction" shortcut="-n">
  2860. <help><![CDATA[Do not ask any interactive question]]></help>
  2861. </option>
  2862. <option name="--env" shortcut="" pattern="equals">
  2863. <help><![CDATA[The environment the command should run under]]></help>
  2864. </option>
  2865. </optionsBefore>
  2866. </command>
  2867. <command>
  2868. <name>schedule:work</name>
  2869. <help><![CDATA[Start the schedule worker<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2870. <optionsBefore>
  2871. <option name="--help" shortcut="-h">
  2872. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2873. </option>
  2874. <option name="--quiet" shortcut="-q">
  2875. <help><![CDATA[Do not output any message]]></help>
  2876. </option>
  2877. <option name="--verbose" shortcut="-v">
  2878. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2879. </option>
  2880. <option name="--version" shortcut="-V">
  2881. <help><![CDATA[Display this application version]]></help>
  2882. </option>
  2883. <option name="--ansi" shortcut="">
  2884. <help><![CDATA[Force ANSI output]]></help>
  2885. </option>
  2886. <option name="--no-ansi" shortcut="">
  2887. <help><![CDATA[Disable ANSI output]]></help>
  2888. </option>
  2889. <option name="--no-interaction" shortcut="-n">
  2890. <help><![CDATA[Do not ask any interactive question]]></help>
  2891. </option>
  2892. <option name="--env" shortcut="" pattern="equals">
  2893. <help><![CDATA[The environment the command should run under]]></help>
  2894. </option>
  2895. </optionsBefore>
  2896. </command>
  2897. <command>
  2898. <name>schema:dump</name>
  2899. <help><![CDATA[Dump the given database schema<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--database</td><td></td><td>The database connection to use</td></tr> <tr><td>--path</td><td></td><td>The path where the schema dump file should be stored</td></tr> <tr><td>--prune</td><td></td><td>Delete all existing migration files</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2900. <optionsBefore>
  2901. <option name="--database" shortcut="" pattern="equals">
  2902. <help><![CDATA[The database connection to use]]></help>
  2903. </option>
  2904. <option name="--path" shortcut="" pattern="equals">
  2905. <help><![CDATA[The path where the schema dump file should be stored]]></help>
  2906. </option>
  2907. <option name="--prune" shortcut="">
  2908. <help><![CDATA[Delete all existing migration files]]></help>
  2909. </option>
  2910. <option name="--help" shortcut="-h">
  2911. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2912. </option>
  2913. <option name="--quiet" shortcut="-q">
  2914. <help><![CDATA[Do not output any message]]></help>
  2915. </option>
  2916. <option name="--verbose" shortcut="-v">
  2917. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2918. </option>
  2919. <option name="--version" shortcut="-V">
  2920. <help><![CDATA[Display this application version]]></help>
  2921. </option>
  2922. <option name="--ansi" shortcut="">
  2923. <help><![CDATA[Force ANSI output]]></help>
  2924. </option>
  2925. <option name="--no-ansi" shortcut="">
  2926. <help><![CDATA[Disable ANSI output]]></help>
  2927. </option>
  2928. <option name="--no-interaction" shortcut="-n">
  2929. <help><![CDATA[Do not ask any interactive question]]></help>
  2930. </option>
  2931. <option name="--env" shortcut="" pattern="equals">
  2932. <help><![CDATA[The environment the command should run under]]></help>
  2933. </option>
  2934. </optionsBefore>
  2935. </command>
  2936. <command>
  2937. <name>session:table</name>
  2938. <help><![CDATA[Create a migration for the session database table<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2939. <optionsBefore>
  2940. <option name="--help" shortcut="-h">
  2941. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2942. </option>
  2943. <option name="--quiet" shortcut="-q">
  2944. <help><![CDATA[Do not output any message]]></help>
  2945. </option>
  2946. <option name="--verbose" shortcut="-v">
  2947. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2948. </option>
  2949. <option name="--version" shortcut="-V">
  2950. <help><![CDATA[Display this application version]]></help>
  2951. </option>
  2952. <option name="--ansi" shortcut="">
  2953. <help><![CDATA[Force ANSI output]]></help>
  2954. </option>
  2955. <option name="--no-ansi" shortcut="">
  2956. <help><![CDATA[Disable ANSI output]]></help>
  2957. </option>
  2958. <option name="--no-interaction" shortcut="-n">
  2959. <help><![CDATA[Do not ask any interactive question]]></help>
  2960. </option>
  2961. <option name="--env" shortcut="" pattern="equals">
  2962. <help><![CDATA[The environment the command should run under]]></help>
  2963. </option>
  2964. </optionsBefore>
  2965. </command>
  2966. <command>
  2967. <name>storage:link</name>
  2968. <help><![CDATA[Create the symbolic links configured for the application<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--relative</td><td></td><td>Create the symbolic link using relative paths</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2969. <optionsBefore>
  2970. <option name="--relative" shortcut="">
  2971. <help><![CDATA[Create the symbolic link using relative paths]]></help>
  2972. </option>
  2973. <option name="--help" shortcut="-h">
  2974. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2975. </option>
  2976. <option name="--quiet" shortcut="-q">
  2977. <help><![CDATA[Do not output any message]]></help>
  2978. </option>
  2979. <option name="--verbose" shortcut="-v">
  2980. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2981. </option>
  2982. <option name="--version" shortcut="-V">
  2983. <help><![CDATA[Display this application version]]></help>
  2984. </option>
  2985. <option name="--ansi" shortcut="">
  2986. <help><![CDATA[Force ANSI output]]></help>
  2987. </option>
  2988. <option name="--no-ansi" shortcut="">
  2989. <help><![CDATA[Disable ANSI output]]></help>
  2990. </option>
  2991. <option name="--no-interaction" shortcut="-n">
  2992. <help><![CDATA[Do not ask any interactive question]]></help>
  2993. </option>
  2994. <option name="--env" shortcut="" pattern="equals">
  2995. <help><![CDATA[The environment the command should run under]]></help>
  2996. </option>
  2997. </optionsBefore>
  2998. </command>
  2999. <command>
  3000. <name>stub:publish</name>
  3001. <help><![CDATA[Publish all stubs that are available for customization<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--force</td><td></td><td>Overwrite any existing files</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  3002. <optionsBefore>
  3003. <option name="--force" shortcut="">
  3004. <help><![CDATA[Overwrite any existing files]]></help>
  3005. </option>
  3006. <option name="--help" shortcut="-h">
  3007. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3008. </option>
  3009. <option name="--quiet" shortcut="-q">
  3010. <help><![CDATA[Do not output any message]]></help>
  3011. </option>
  3012. <option name="--verbose" shortcut="-v">
  3013. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3014. </option>
  3015. <option name="--version" shortcut="-V">
  3016. <help><![CDATA[Display this application version]]></help>
  3017. </option>
  3018. <option name="--ansi" shortcut="">
  3019. <help><![CDATA[Force ANSI output]]></help>
  3020. </option>
  3021. <option name="--no-ansi" shortcut="">
  3022. <help><![CDATA[Disable ANSI output]]></help>
  3023. </option>
  3024. <option name="--no-interaction" shortcut="-n">
  3025. <help><![CDATA[Do not ask any interactive question]]></help>
  3026. </option>
  3027. <option name="--env" shortcut="" pattern="equals">
  3028. <help><![CDATA[The environment the command should run under]]></help>
  3029. </option>
  3030. </optionsBefore>
  3031. </command>
  3032. <command>
  3033. <name>vendor:publish</name>
  3034. <help><![CDATA[Publish any publishable assets from vendor packages<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--force</td><td></td><td>Overwrite any existing files</td></tr> <tr><td>--all</td><td></td><td>Publish assets for all service providers without prompt</td></tr> <tr><td>--provider</td><td></td><td>The service provider that has assets you want to publish</td></tr> <tr><td>--tag</td><td></td><td>One or many tags that have assets you want to publish</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  3035. <optionsBefore>
  3036. <option name="--force" shortcut="">
  3037. <help><![CDATA[Overwrite any existing files]]></help>
  3038. </option>
  3039. <option name="--all" shortcut="">
  3040. <help><![CDATA[Publish assets for all service providers without prompt]]></help>
  3041. </option>
  3042. <option name="--provider" shortcut="" pattern="equals">
  3043. <help><![CDATA[The service provider that has assets you want to publish]]></help>
  3044. </option>
  3045. <option name="--tag" shortcut="" pattern="equals">
  3046. <help><![CDATA[One or many tags that have assets you want to publish]]></help>
  3047. </option>
  3048. <option name="--help" shortcut="-h">
  3049. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3050. </option>
  3051. <option name="--quiet" shortcut="-q">
  3052. <help><![CDATA[Do not output any message]]></help>
  3053. </option>
  3054. <option name="--verbose" shortcut="-v">
  3055. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3056. </option>
  3057. <option name="--version" shortcut="-V">
  3058. <help><![CDATA[Display this application version]]></help>
  3059. </option>
  3060. <option name="--ansi" shortcut="">
  3061. <help><![CDATA[Force ANSI output]]></help>
  3062. </option>
  3063. <option name="--no-ansi" shortcut="">
  3064. <help><![CDATA[Disable ANSI output]]></help>
  3065. </option>
  3066. <option name="--no-interaction" shortcut="-n">
  3067. <help><![CDATA[Do not ask any interactive question]]></help>
  3068. </option>
  3069. <option name="--env" shortcut="" pattern="equals">
  3070. <help><![CDATA[The environment the command should run under]]></help>
  3071. </option>
  3072. </optionsBefore>
  3073. </command>
  3074. <command>
  3075. <name>view:cache</name>
  3076. <help><![CDATA[Compile all of the application's Blade templates<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  3077. <optionsBefore>
  3078. <option name="--help" shortcut="-h">
  3079. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3080. </option>
  3081. <option name="--quiet" shortcut="-q">
  3082. <help><![CDATA[Do not output any message]]></help>
  3083. </option>
  3084. <option name="--verbose" shortcut="-v">
  3085. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3086. </option>
  3087. <option name="--version" shortcut="-V">
  3088. <help><![CDATA[Display this application version]]></help>
  3089. </option>
  3090. <option name="--ansi" shortcut="">
  3091. <help><![CDATA[Force ANSI output]]></help>
  3092. </option>
  3093. <option name="--no-ansi" shortcut="">
  3094. <help><![CDATA[Disable ANSI output]]></help>
  3095. </option>
  3096. <option name="--no-interaction" shortcut="-n">
  3097. <help><![CDATA[Do not ask any interactive question]]></help>
  3098. </option>
  3099. <option name="--env" shortcut="" pattern="equals">
  3100. <help><![CDATA[The environment the command should run under]]></help>
  3101. </option>
  3102. </optionsBefore>
  3103. </command>
  3104. <command>
  3105. <name>view:clear</name>
  3106. <help><![CDATA[Clear all compiled view files<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Disable ANSI output</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  3107. <optionsBefore>
  3108. <option name="--help" shortcut="-h">
  3109. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3110. </option>
  3111. <option name="--quiet" shortcut="-q">
  3112. <help><![CDATA[Do not output any message]]></help>
  3113. </option>
  3114. <option name="--verbose" shortcut="-v">
  3115. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3116. </option>
  3117. <option name="--version" shortcut="-V">
  3118. <help><![CDATA[Display this application version]]></help>
  3119. </option>
  3120. <option name="--ansi" shortcut="">
  3121. <help><![CDATA[Force ANSI output]]></help>
  3122. </option>
  3123. <option name="--no-ansi" shortcut="">
  3124. <help><![CDATA[Disable ANSI output]]></help>
  3125. </option>
  3126. <option name="--no-interaction" shortcut="-n">
  3127. <help><![CDATA[Do not ask any interactive question]]></help>
  3128. </option>
  3129. <option name="--env" shortcut="" pattern="equals">
  3130. <help><![CDATA[The environment the command should run under]]></help>
  3131. </option>
  3132. </optionsBefore>
  3133. </command>
  3134. </framework>