Laravel_2020_12_17_2_12.xml 195 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949
  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_2020/12/17 下午2:12" invoke="/Users/chenlong/www/php_projects/blog/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 this help message</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 this help message]]></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 this help message</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 this help message]]></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 this help message</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 this help message]]></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 this help message</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 this help message]]></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>php /Users/chenlong/www/php_projects/blog/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>php /Users/chenlong/www/php_projects/blog/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 this help message</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 this help message]]></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 this help message</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 this help message]]></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>php /Users/chenlong/www/php_projects/blog/artisan list</b><br> <br> You can also display the commands for a specific namespace:<br> <br> <b>php /Users/chenlong/www/php_projects/blog/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>php /Users/chenlong/www/php_projects/blog/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>php /Users/chenlong/www/php_projects/blog/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> </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. </optionsBefore>
  219. </command>
  220. <command>
  221. <name>migrate</name>
  222. <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 this help message</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>
  223. <optionsBefore>
  224. <option name="--database" shortcut="" pattern="equals">
  225. <help><![CDATA[The database connection to use]]></help>
  226. </option>
  227. <option name="--force" shortcut="">
  228. <help><![CDATA[Force the operation to run when in production]]></help>
  229. </option>
  230. <option name="--path" shortcut="" pattern="equals">
  231. <help><![CDATA[The path(s) to the migrations files to be executed]]></help>
  232. </option>
  233. <option name="--realpath" shortcut="">
  234. <help><![CDATA[Indicate any provided migration file paths are pre-resolved absolute paths]]></help>
  235. </option>
  236. <option name="--schema-path" shortcut="" pattern="equals">
  237. <help><![CDATA[The path to a schema dump file]]></help>
  238. </option>
  239. <option name="--pretend" shortcut="">
  240. <help><![CDATA[Dump the SQL queries that would be run]]></help>
  241. </option>
  242. <option name="--seed" shortcut="">
  243. <help><![CDATA[Indicates if the seed task should be re-run]]></help>
  244. </option>
  245. <option name="--step" shortcut="">
  246. <help><![CDATA[Force the migrations to be run so they can be rolled back individually]]></help>
  247. </option>
  248. <option name="--help" shortcut="-h">
  249. <help><![CDATA[Display this help message]]></help>
  250. </option>
  251. <option name="--quiet" shortcut="-q">
  252. <help><![CDATA[Do not output any message]]></help>
  253. </option>
  254. <option name="--verbose" shortcut="-v">
  255. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  256. </option>
  257. <option name="--version" shortcut="-V">
  258. <help><![CDATA[Display this application version]]></help>
  259. </option>
  260. <option name="--ansi" shortcut="">
  261. <help><![CDATA[Force ANSI output]]></help>
  262. </option>
  263. <option name="--no-ansi" shortcut="">
  264. <help><![CDATA[Disable ANSI output]]></help>
  265. </option>
  266. <option name="--no-interaction" shortcut="-n">
  267. <help><![CDATA[Do not ask any interactive question]]></help>
  268. </option>
  269. <option name="--env" shortcut="" pattern="equals">
  270. <help><![CDATA[The environment the command should run under]]></help>
  271. </option>
  272. </optionsBefore>
  273. </command>
  274. <command>
  275. <name>optimize</name>
  276. <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 this help message</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>
  277. <optionsBefore>
  278. <option name="--help" shortcut="-h">
  279. <help><![CDATA[Display this help message]]></help>
  280. </option>
  281. <option name="--quiet" shortcut="-q">
  282. <help><![CDATA[Do not output any message]]></help>
  283. </option>
  284. <option name="--verbose" shortcut="-v">
  285. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  286. </option>
  287. <option name="--version" shortcut="-V">
  288. <help><![CDATA[Display this application version]]></help>
  289. </option>
  290. <option name="--ansi" shortcut="">
  291. <help><![CDATA[Force ANSI output]]></help>
  292. </option>
  293. <option name="--no-ansi" shortcut="">
  294. <help><![CDATA[Disable ANSI output]]></help>
  295. </option>
  296. <option name="--no-interaction" shortcut="-n">
  297. <help><![CDATA[Do not ask any interactive question]]></help>
  298. </option>
  299. <option name="--env" shortcut="" pattern="equals">
  300. <help><![CDATA[The environment the command should run under]]></help>
  301. </option>
  302. </optionsBefore>
  303. </command>
  304. <command>
  305. <name>serve</name>
  306. <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 this help message</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>
  307. <optionsBefore>
  308. <option name="--host" shortcut="" pattern="equals">
  309. <help><![CDATA[The host address to serve the application on]]></help>
  310. </option>
  311. <option name="--port" shortcut="" pattern="equals">
  312. <help><![CDATA[The port to serve the application on]]></help>
  313. </option>
  314. <option name="--tries" shortcut="" pattern="equals">
  315. <help><![CDATA[The max number of ports to attempt to serve from]]></help>
  316. </option>
  317. <option name="--no-reload" shortcut="">
  318. <help><![CDATA[Do not reload the development server on .env file changes]]></help>
  319. </option>
  320. <option name="--help" shortcut="-h">
  321. <help><![CDATA[Display this help message]]></help>
  322. </option>
  323. <option name="--quiet" shortcut="-q">
  324. <help><![CDATA[Do not output any message]]></help>
  325. </option>
  326. <option name="--verbose" shortcut="-v">
  327. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  328. </option>
  329. <option name="--version" shortcut="-V">
  330. <help><![CDATA[Display this application version]]></help>
  331. </option>
  332. <option name="--ansi" shortcut="">
  333. <help><![CDATA[Force ANSI output]]></help>
  334. </option>
  335. <option name="--no-ansi" shortcut="">
  336. <help><![CDATA[Disable ANSI output]]></help>
  337. </option>
  338. <option name="--no-interaction" shortcut="-n">
  339. <help><![CDATA[Do not ask any interactive question]]></help>
  340. </option>
  341. <option name="--env" shortcut="" pattern="equals">
  342. <help><![CDATA[The environment the command should run under]]></help>
  343. </option>
  344. </optionsBefore>
  345. </command>
  346. <command>
  347. <name>test</name>
  348. <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>--help</td><td>(-h)</td><td>Display this help message</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>
  349. <optionsBefore>
  350. <option name="--without-tty" shortcut="">
  351. <help><![CDATA[Disable output to TTY]]></help>
  352. </option>
  353. <option name="--help" shortcut="-h">
  354. <help><![CDATA[Display this help message]]></help>
  355. </option>
  356. <option name="--quiet" shortcut="-q">
  357. <help><![CDATA[Do not output any message]]></help>
  358. </option>
  359. <option name="--verbose" shortcut="-v">
  360. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  361. </option>
  362. <option name="--version" shortcut="-V">
  363. <help><![CDATA[Display this application version]]></help>
  364. </option>
  365. <option name="--ansi" shortcut="">
  366. <help><![CDATA[Force ANSI output]]></help>
  367. </option>
  368. <option name="--no-ansi" shortcut="">
  369. <help><![CDATA[Disable ANSI output]]></help>
  370. </option>
  371. <option name="--no-interaction" shortcut="-n">
  372. <help><![CDATA[Do not ask any interactive question]]></help>
  373. </option>
  374. <option name="--env" shortcut="" pattern="equals">
  375. <help><![CDATA[The environment the command should run under]]></help>
  376. </option>
  377. </optionsBefore>
  378. </command>
  379. <command>
  380. <name>tinker</name>
  381. <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 this help message</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>
  382. <params>include[=null]</params>
  383. <optionsBefore>
  384. <option name="--execute" shortcut="" pattern="equals">
  385. <help><![CDATA[Execute the given code using Tinker]]></help>
  386. </option>
  387. <option name="--help" shortcut="-h">
  388. <help><![CDATA[Display this help message]]></help>
  389. </option>
  390. <option name="--quiet" shortcut="-q">
  391. <help><![CDATA[Do not output any message]]></help>
  392. </option>
  393. <option name="--verbose" shortcut="-v">
  394. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  395. </option>
  396. <option name="--version" shortcut="-V">
  397. <help><![CDATA[Display this application version]]></help>
  398. </option>
  399. <option name="--ansi" shortcut="">
  400. <help><![CDATA[Force ANSI output]]></help>
  401. </option>
  402. <option name="--no-ansi" shortcut="">
  403. <help><![CDATA[Disable ANSI output]]></help>
  404. </option>
  405. <option name="--no-interaction" shortcut="-n">
  406. <help><![CDATA[Do not ask any interactive question]]></help>
  407. </option>
  408. <option name="--env" shortcut="" pattern="equals">
  409. <help><![CDATA[The environment the command should run under]]></help>
  410. </option>
  411. </optionsBefore>
  412. </command>
  413. <command>
  414. <name>up</name>
  415. <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 this help message</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>
  416. <optionsBefore>
  417. <option name="--help" shortcut="-h">
  418. <help><![CDATA[Display this help message]]></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>auth:clear-resets</name>
  445. <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 this help message</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. <params>name[=null]</params>
  447. <optionsBefore>
  448. <option name="--help" shortcut="-h">
  449. <help><![CDATA[Display this help message]]></help>
  450. </option>
  451. <option name="--quiet" shortcut="-q">
  452. <help><![CDATA[Do not output any message]]></help>
  453. </option>
  454. <option name="--verbose" shortcut="-v">
  455. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  456. </option>
  457. <option name="--version" shortcut="-V">
  458. <help><![CDATA[Display this application version]]></help>
  459. </option>
  460. <option name="--ansi" shortcut="">
  461. <help><![CDATA[Force ANSI output]]></help>
  462. </option>
  463. <option name="--no-ansi" shortcut="">
  464. <help><![CDATA[Disable ANSI output]]></help>
  465. </option>
  466. <option name="--no-interaction" shortcut="-n">
  467. <help><![CDATA[Do not ask any interactive question]]></help>
  468. </option>
  469. <option name="--env" shortcut="" pattern="equals">
  470. <help><![CDATA[The environment the command should run under]]></help>
  471. </option>
  472. </optionsBefore>
  473. </command>
  474. <command>
  475. <name>cache:clear</name>
  476. <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 this help message</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>
  477. <params>store[=null]</params>
  478. <optionsBefore>
  479. <option name="--tags" shortcut="" pattern="equals">
  480. <help><![CDATA[The cache tags you would like to clear]]></help>
  481. </option>
  482. <option name="--help" shortcut="-h">
  483. <help><![CDATA[Display this help message]]></help>
  484. </option>
  485. <option name="--quiet" shortcut="-q">
  486. <help><![CDATA[Do not output any message]]></help>
  487. </option>
  488. <option name="--verbose" shortcut="-v">
  489. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  490. </option>
  491. <option name="--version" shortcut="-V">
  492. <help><![CDATA[Display this application version]]></help>
  493. </option>
  494. <option name="--ansi" shortcut="">
  495. <help><![CDATA[Force ANSI output]]></help>
  496. </option>
  497. <option name="--no-ansi" shortcut="">
  498. <help><![CDATA[Disable ANSI output]]></help>
  499. </option>
  500. <option name="--no-interaction" shortcut="-n">
  501. <help><![CDATA[Do not ask any interactive question]]></help>
  502. </option>
  503. <option name="--env" shortcut="" pattern="equals">
  504. <help><![CDATA[The environment the command should run under]]></help>
  505. </option>
  506. </optionsBefore>
  507. </command>
  508. <command>
  509. <name>cache:forget</name>
  510. <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 this help message</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>
  511. <params>key store[=null]</params>
  512. <optionsBefore>
  513. <option name="--help" shortcut="-h">
  514. <help><![CDATA[Display this help message]]></help>
  515. </option>
  516. <option name="--quiet" shortcut="-q">
  517. <help><![CDATA[Do not output any message]]></help>
  518. </option>
  519. <option name="--verbose" shortcut="-v">
  520. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  521. </option>
  522. <option name="--version" shortcut="-V">
  523. <help><![CDATA[Display this application version]]></help>
  524. </option>
  525. <option name="--ansi" shortcut="">
  526. <help><![CDATA[Force ANSI output]]></help>
  527. </option>
  528. <option name="--no-ansi" shortcut="">
  529. <help><![CDATA[Disable ANSI output]]></help>
  530. </option>
  531. <option name="--no-interaction" shortcut="-n">
  532. <help><![CDATA[Do not ask any interactive question]]></help>
  533. </option>
  534. <option name="--env" shortcut="" pattern="equals">
  535. <help><![CDATA[The environment the command should run under]]></help>
  536. </option>
  537. </optionsBefore>
  538. </command>
  539. <command>
  540. <name>cache:table</name>
  541. <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 this help message</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>
  542. <optionsBefore>
  543. <option name="--help" shortcut="-h">
  544. <help><![CDATA[Display this help message]]></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>config:cache</name>
  571. <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 this help message</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 this help message]]></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:clear</name>
  601. <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 this help message</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 this help message]]></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>db:seed</name>
  631. <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 this help message</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="--class" shortcut="" pattern="equals">
  634. <help><![CDATA[The class name of the root seeder]]></help>
  635. </option>
  636. <option name="--database" shortcut="" pattern="equals">
  637. <help><![CDATA[The database connection to seed]]></help>
  638. </option>
  639. <option name="--force" shortcut="">
  640. <help><![CDATA[Force the operation to run when in production]]></help>
  641. </option>
  642. <option name="--help" shortcut="-h">
  643. <help><![CDATA[Display this help message]]></help>
  644. </option>
  645. <option name="--quiet" shortcut="-q">
  646. <help><![CDATA[Do not output any message]]></help>
  647. </option>
  648. <option name="--verbose" shortcut="-v">
  649. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  650. </option>
  651. <option name="--version" shortcut="-V">
  652. <help><![CDATA[Display this application version]]></help>
  653. </option>
  654. <option name="--ansi" shortcut="">
  655. <help><![CDATA[Force ANSI output]]></help>
  656. </option>
  657. <option name="--no-ansi" shortcut="">
  658. <help><![CDATA[Disable ANSI output]]></help>
  659. </option>
  660. <option name="--no-interaction" shortcut="-n">
  661. <help><![CDATA[Do not ask any interactive question]]></help>
  662. </option>
  663. <option name="--env" shortcut="" pattern="equals">
  664. <help><![CDATA[The environment the command should run under]]></help>
  665. </option>
  666. </optionsBefore>
  667. </command>
  668. <command>
  669. <name>db:wipe</name>
  670. <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 this help message</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>
  671. <optionsBefore>
  672. <option name="--database" shortcut="" pattern="equals">
  673. <help><![CDATA[The database connection to use]]></help>
  674. </option>
  675. <option name="--drop-views" shortcut="">
  676. <help><![CDATA[Drop all tables and views]]></help>
  677. </option>
  678. <option name="--drop-types" shortcut="">
  679. <help><![CDATA[Drop all tables and types (Postgres only)]]></help>
  680. </option>
  681. <option name="--force" shortcut="">
  682. <help><![CDATA[Force the operation to run when in production]]></help>
  683. </option>
  684. <option name="--help" shortcut="-h">
  685. <help><![CDATA[Display this help message]]></help>
  686. </option>
  687. <option name="--quiet" shortcut="-q">
  688. <help><![CDATA[Do not output any message]]></help>
  689. </option>
  690. <option name="--verbose" shortcut="-v">
  691. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  692. </option>
  693. <option name="--version" shortcut="-V">
  694. <help><![CDATA[Display this application version]]></help>
  695. </option>
  696. <option name="--ansi" shortcut="">
  697. <help><![CDATA[Force ANSI output]]></help>
  698. </option>
  699. <option name="--no-ansi" shortcut="">
  700. <help><![CDATA[Disable ANSI output]]></help>
  701. </option>
  702. <option name="--no-interaction" shortcut="-n">
  703. <help><![CDATA[Do not ask any interactive question]]></help>
  704. </option>
  705. <option name="--env" shortcut="" pattern="equals">
  706. <help><![CDATA[The environment the command should run under]]></help>
  707. </option>
  708. </optionsBefore>
  709. </command>
  710. <command>
  711. <name>event:cache</name>
  712. <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 this help message</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>
  713. <optionsBefore>
  714. <option name="--help" shortcut="-h">
  715. <help><![CDATA[Display this help message]]></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:clear</name>
  742. <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 this help message</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 this help message]]></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:generate</name>
  772. <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 this help message</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 this help message]]></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:list</name>
  802. <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 this help message</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="--event" shortcut="" pattern="equals">
  805. <help><![CDATA[Filter the events by name]]></help>
  806. </option>
  807. <option name="--help" shortcut="-h">
  808. <help><![CDATA[Display this help message]]></help>
  809. </option>
  810. <option name="--quiet" shortcut="-q">
  811. <help><![CDATA[Do not output any message]]></help>
  812. </option>
  813. <option name="--verbose" shortcut="-v">
  814. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  815. </option>
  816. <option name="--version" shortcut="-V">
  817. <help><![CDATA[Display this application version]]></help>
  818. </option>
  819. <option name="--ansi" shortcut="">
  820. <help><![CDATA[Force ANSI output]]></help>
  821. </option>
  822. <option name="--no-ansi" shortcut="">
  823. <help><![CDATA[Disable ANSI output]]></help>
  824. </option>
  825. <option name="--no-interaction" shortcut="-n">
  826. <help><![CDATA[Do not ask any interactive question]]></help>
  827. </option>
  828. <option name="--env" shortcut="" pattern="equals">
  829. <help><![CDATA[The environment the command should run under]]></help>
  830. </option>
  831. </optionsBefore>
  832. </command>
  833. <command>
  834. <name>key:generate</name>
  835. <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 this help message</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>
  836. <optionsBefore>
  837. <option name="--show" shortcut="">
  838. <help><![CDATA[Display the key instead of modifying files]]></help>
  839. </option>
  840. <option name="--force" shortcut="">
  841. <help><![CDATA[Force the operation to run when in production]]></help>
  842. </option>
  843. <option name="--help" shortcut="-h">
  844. <help><![CDATA[Display this help message]]></help>
  845. </option>
  846. <option name="--quiet" shortcut="-q">
  847. <help><![CDATA[Do not output any message]]></help>
  848. </option>
  849. <option name="--verbose" shortcut="-v">
  850. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  851. </option>
  852. <option name="--version" shortcut="-V">
  853. <help><![CDATA[Display this application version]]></help>
  854. </option>
  855. <option name="--ansi" shortcut="">
  856. <help><![CDATA[Force ANSI output]]></help>
  857. </option>
  858. <option name="--no-ansi" shortcut="">
  859. <help><![CDATA[Disable ANSI output]]></help>
  860. </option>
  861. <option name="--no-interaction" shortcut="-n">
  862. <help><![CDATA[Do not ask any interactive question]]></help>
  863. </option>
  864. <option name="--env" shortcut="" pattern="equals">
  865. <help><![CDATA[The environment the command should run under]]></help>
  866. </option>
  867. </optionsBefore>
  868. </command>
  869. <command>
  870. <name>make:cast</name>
  871. <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 this help message</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>
  872. <params>name</params>
  873. <optionsBefore>
  874. <option name="--help" shortcut="-h">
  875. <help><![CDATA[Display this help message]]></help>
  876. </option>
  877. <option name="--quiet" shortcut="-q">
  878. <help><![CDATA[Do not output any message]]></help>
  879. </option>
  880. <option name="--verbose" shortcut="-v">
  881. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  882. </option>
  883. <option name="--version" shortcut="-V">
  884. <help><![CDATA[Display this application version]]></help>
  885. </option>
  886. <option name="--ansi" shortcut="">
  887. <help><![CDATA[Force ANSI output]]></help>
  888. </option>
  889. <option name="--no-ansi" shortcut="">
  890. <help><![CDATA[Disable ANSI output]]></help>
  891. </option>
  892. <option name="--no-interaction" shortcut="-n">
  893. <help><![CDATA[Do not ask any interactive question]]></help>
  894. </option>
  895. <option name="--env" shortcut="" pattern="equals">
  896. <help><![CDATA[The environment the command should run under]]></help>
  897. </option>
  898. </optionsBefore>
  899. </command>
  900. <command>
  901. <name>make:channel</name>
  902. <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 this help message</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>
  903. <params>name</params>
  904. <optionsBefore>
  905. <option name="--help" shortcut="-h">
  906. <help><![CDATA[Display this help message]]></help>
  907. </option>
  908. <option name="--quiet" shortcut="-q">
  909. <help><![CDATA[Do not output any message]]></help>
  910. </option>
  911. <option name="--verbose" shortcut="-v">
  912. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  913. </option>
  914. <option name="--version" shortcut="-V">
  915. <help><![CDATA[Display this application version]]></help>
  916. </option>
  917. <option name="--ansi" shortcut="">
  918. <help><![CDATA[Force ANSI output]]></help>
  919. </option>
  920. <option name="--no-ansi" shortcut="">
  921. <help><![CDATA[Disable ANSI output]]></help>
  922. </option>
  923. <option name="--no-interaction" shortcut="-n">
  924. <help><![CDATA[Do not ask any interactive question]]></help>
  925. </option>
  926. <option name="--env" shortcut="" pattern="equals">
  927. <help><![CDATA[The environment the command should run under]]></help>
  928. </option>
  929. </optionsBefore>
  930. </command>
  931. <command>
  932. <name>make:command</name>
  933. <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 this help message</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>
  934. <params>name</params>
  935. <optionsBefore>
  936. <option name="--command" shortcut="" pattern="equals">
  937. <help><![CDATA[The terminal command that should be assigned]]></help>
  938. </option>
  939. <option name="--help" shortcut="-h">
  940. <help><![CDATA[Display this help message]]></help>
  941. </option>
  942. <option name="--quiet" shortcut="-q">
  943. <help><![CDATA[Do not output any message]]></help>
  944. </option>
  945. <option name="--verbose" shortcut="-v">
  946. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  947. </option>
  948. <option name="--version" shortcut="-V">
  949. <help><![CDATA[Display this application version]]></help>
  950. </option>
  951. <option name="--ansi" shortcut="">
  952. <help><![CDATA[Force ANSI output]]></help>
  953. </option>
  954. <option name="--no-ansi" shortcut="">
  955. <help><![CDATA[Disable ANSI output]]></help>
  956. </option>
  957. <option name="--no-interaction" shortcut="-n">
  958. <help><![CDATA[Do not ask any interactive question]]></help>
  959. </option>
  960. <option name="--env" shortcut="" pattern="equals">
  961. <help><![CDATA[The environment the command should run under]]></help>
  962. </option>
  963. </optionsBefore>
  964. </command>
  965. <command>
  966. <name>make:component</name>
  967. <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 this help message</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>
  968. <params>name</params>
  969. <optionsBefore>
  970. <option name="--force" shortcut="">
  971. <help><![CDATA[Create the class even if the component already exists]]></help>
  972. </option>
  973. <option name="--inline" shortcut="">
  974. <help><![CDATA[Create a component that renders an inline view]]></help>
  975. </option>
  976. <option name="--help" shortcut="-h">
  977. <help><![CDATA[Display this help message]]></help>
  978. </option>
  979. <option name="--quiet" shortcut="-q">
  980. <help><![CDATA[Do not output any message]]></help>
  981. </option>
  982. <option name="--verbose" shortcut="-v">
  983. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  984. </option>
  985. <option name="--version" shortcut="-V">
  986. <help><![CDATA[Display this application version]]></help>
  987. </option>
  988. <option name="--ansi" shortcut="">
  989. <help><![CDATA[Force ANSI output]]></help>
  990. </option>
  991. <option name="--no-ansi" shortcut="">
  992. <help><![CDATA[Disable ANSI output]]></help>
  993. </option>
  994. <option name="--no-interaction" shortcut="-n">
  995. <help><![CDATA[Do not ask any interactive question]]></help>
  996. </option>
  997. <option name="--env" shortcut="" pattern="equals">
  998. <help><![CDATA[The environment the command should run under]]></help>
  999. </option>
  1000. </optionsBefore>
  1001. </command>
  1002. <command>
  1003. <name>make:controller</name>
  1004. <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 this help message</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>
  1005. <params>name</params>
  1006. <optionsBefore>
  1007. <option name="--api" shortcut="">
  1008. <help><![CDATA[Exclude the create and edit methods from the controller.]]></help>
  1009. </option>
  1010. <option name="--force" shortcut="">
  1011. <help><![CDATA[Create the class even if the controller already exists]]></help>
  1012. </option>
  1013. <option name="--invokable" shortcut="-i">
  1014. <help><![CDATA[Generate a single method, invokable controller class.]]></help>
  1015. </option>
  1016. <option name="--model" shortcut="-m" pattern="equals">
  1017. <help><![CDATA[Generate a resource controller for the given model.]]></help>
  1018. </option>
  1019. <option name="--parent" shortcut="-p" pattern="equals">
  1020. <help><![CDATA[Generate a nested resource controller class.]]></help>
  1021. </option>
  1022. <option name="--resource" shortcut="-r">
  1023. <help><![CDATA[Generate a resource controller class.]]></help>
  1024. </option>
  1025. <option name="--help" shortcut="-h">
  1026. <help><![CDATA[Display this help message]]></help>
  1027. </option>
  1028. <option name="--quiet" shortcut="-q">
  1029. <help><![CDATA[Do not output any message]]></help>
  1030. </option>
  1031. <option name="--verbose" shortcut="-v">
  1032. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1033. </option>
  1034. <option name="--version" shortcut="-V">
  1035. <help><![CDATA[Display this application version]]></help>
  1036. </option>
  1037. <option name="--ansi" shortcut="">
  1038. <help><![CDATA[Force ANSI output]]></help>
  1039. </option>
  1040. <option name="--no-ansi" shortcut="">
  1041. <help><![CDATA[Disable ANSI output]]></help>
  1042. </option>
  1043. <option name="--no-interaction" shortcut="-n">
  1044. <help><![CDATA[Do not ask any interactive question]]></help>
  1045. </option>
  1046. <option name="--env" shortcut="" pattern="equals">
  1047. <help><![CDATA[The environment the command should run under]]></help>
  1048. </option>
  1049. </optionsBefore>
  1050. </command>
  1051. <command>
  1052. <name>make:event</name>
  1053. <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 this help message</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>
  1054. <params>name</params>
  1055. <optionsBefore>
  1056. <option name="--help" shortcut="-h">
  1057. <help><![CDATA[Display this help message]]></help>
  1058. </option>
  1059. <option name="--quiet" shortcut="-q">
  1060. <help><![CDATA[Do not output any message]]></help>
  1061. </option>
  1062. <option name="--verbose" shortcut="-v">
  1063. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1064. </option>
  1065. <option name="--version" shortcut="-V">
  1066. <help><![CDATA[Display this application version]]></help>
  1067. </option>
  1068. <option name="--ansi" shortcut="">
  1069. <help><![CDATA[Force ANSI output]]></help>
  1070. </option>
  1071. <option name="--no-ansi" shortcut="">
  1072. <help><![CDATA[Disable ANSI output]]></help>
  1073. </option>
  1074. <option name="--no-interaction" shortcut="-n">
  1075. <help><![CDATA[Do not ask any interactive question]]></help>
  1076. </option>
  1077. <option name="--env" shortcut="" pattern="equals">
  1078. <help><![CDATA[The environment the command should run under]]></help>
  1079. </option>
  1080. </optionsBefore>
  1081. </command>
  1082. <command>
  1083. <name>make:exception</name>
  1084. <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 this help message</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>
  1085. <params>name</params>
  1086. <optionsBefore>
  1087. <option name="--render" shortcut="">
  1088. <help><![CDATA[Create the exception with an empty render method]]></help>
  1089. </option>
  1090. <option name="--report" shortcut="">
  1091. <help><![CDATA[Create the exception with an empty report method]]></help>
  1092. </option>
  1093. <option name="--help" shortcut="-h">
  1094. <help><![CDATA[Display this help message]]></help>
  1095. </option>
  1096. <option name="--quiet" shortcut="-q">
  1097. <help><![CDATA[Do not output any message]]></help>
  1098. </option>
  1099. <option name="--verbose" shortcut="-v">
  1100. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1101. </option>
  1102. <option name="--version" shortcut="-V">
  1103. <help><![CDATA[Display this application version]]></help>
  1104. </option>
  1105. <option name="--ansi" shortcut="">
  1106. <help><![CDATA[Force ANSI output]]></help>
  1107. </option>
  1108. <option name="--no-ansi" shortcut="">
  1109. <help><![CDATA[Disable ANSI output]]></help>
  1110. </option>
  1111. <option name="--no-interaction" shortcut="-n">
  1112. <help><![CDATA[Do not ask any interactive question]]></help>
  1113. </option>
  1114. <option name="--env" shortcut="" pattern="equals">
  1115. <help><![CDATA[The environment the command should run under]]></help>
  1116. </option>
  1117. </optionsBefore>
  1118. </command>
  1119. <command>
  1120. <name>make:factory</name>
  1121. <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 this help message</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>
  1122. <params>name</params>
  1123. <optionsBefore>
  1124. <option name="--model" shortcut="-m" pattern="equals">
  1125. <help><![CDATA[The name of the model]]></help>
  1126. </option>
  1127. <option name="--help" shortcut="-h">
  1128. <help><![CDATA[Display this help message]]></help>
  1129. </option>
  1130. <option name="--quiet" shortcut="-q">
  1131. <help><![CDATA[Do not output any message]]></help>
  1132. </option>
  1133. <option name="--verbose" shortcut="-v">
  1134. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1135. </option>
  1136. <option name="--version" shortcut="-V">
  1137. <help><![CDATA[Display this application version]]></help>
  1138. </option>
  1139. <option name="--ansi" shortcut="">
  1140. <help><![CDATA[Force ANSI output]]></help>
  1141. </option>
  1142. <option name="--no-ansi" shortcut="">
  1143. <help><![CDATA[Disable ANSI output]]></help>
  1144. </option>
  1145. <option name="--no-interaction" shortcut="-n">
  1146. <help><![CDATA[Do not ask any interactive question]]></help>
  1147. </option>
  1148. <option name="--env" shortcut="" pattern="equals">
  1149. <help><![CDATA[The environment the command should run under]]></help>
  1150. </option>
  1151. </optionsBefore>
  1152. </command>
  1153. <command>
  1154. <name>make:job</name>
  1155. <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 this help message</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>
  1156. <params>name</params>
  1157. <optionsBefore>
  1158. <option name="--sync" shortcut="">
  1159. <help><![CDATA[Indicates that job should be synchronous]]></help>
  1160. </option>
  1161. <option name="--help" shortcut="-h">
  1162. <help><![CDATA[Display this help message]]></help>
  1163. </option>
  1164. <option name="--quiet" shortcut="-q">
  1165. <help><![CDATA[Do not output any message]]></help>
  1166. </option>
  1167. <option name="--verbose" shortcut="-v">
  1168. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1169. </option>
  1170. <option name="--version" shortcut="-V">
  1171. <help><![CDATA[Display this application version]]></help>
  1172. </option>
  1173. <option name="--ansi" shortcut="">
  1174. <help><![CDATA[Force ANSI output]]></help>
  1175. </option>
  1176. <option name="--no-ansi" shortcut="">
  1177. <help><![CDATA[Disable ANSI output]]></help>
  1178. </option>
  1179. <option name="--no-interaction" shortcut="-n">
  1180. <help><![CDATA[Do not ask any interactive question]]></help>
  1181. </option>
  1182. <option name="--env" shortcut="" pattern="equals">
  1183. <help><![CDATA[The environment the command should run under]]></help>
  1184. </option>
  1185. </optionsBefore>
  1186. </command>
  1187. <command>
  1188. <name>make:listener</name>
  1189. <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 this help message</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>
  1190. <params>name</params>
  1191. <optionsBefore>
  1192. <option name="--event" shortcut="-e" pattern="equals">
  1193. <help><![CDATA[The event class being listened for]]></help>
  1194. </option>
  1195. <option name="--queued" shortcut="">
  1196. <help><![CDATA[Indicates the event listener should be queued]]></help>
  1197. </option>
  1198. <option name="--help" shortcut="-h">
  1199. <help><![CDATA[Display this help message]]></help>
  1200. </option>
  1201. <option name="--quiet" shortcut="-q">
  1202. <help><![CDATA[Do not output any message]]></help>
  1203. </option>
  1204. <option name="--verbose" shortcut="-v">
  1205. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1206. </option>
  1207. <option name="--version" shortcut="-V">
  1208. <help><![CDATA[Display this application version]]></help>
  1209. </option>
  1210. <option name="--ansi" shortcut="">
  1211. <help><![CDATA[Force ANSI output]]></help>
  1212. </option>
  1213. <option name="--no-ansi" shortcut="">
  1214. <help><![CDATA[Disable ANSI output]]></help>
  1215. </option>
  1216. <option name="--no-interaction" shortcut="-n">
  1217. <help><![CDATA[Do not ask any interactive question]]></help>
  1218. </option>
  1219. <option name="--env" shortcut="" pattern="equals">
  1220. <help><![CDATA[The environment the command should run under]]></help>
  1221. </option>
  1222. </optionsBefore>
  1223. </command>
  1224. <command>
  1225. <name>make:mail</name>
  1226. <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 this help message</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>
  1227. <params>name</params>
  1228. <optionsBefore>
  1229. <option name="--force" shortcut="-f">
  1230. <help><![CDATA[Create the class even if the mailable already exists]]></help>
  1231. </option>
  1232. <option name="--markdown" shortcut="-m" pattern="equals">
  1233. <help><![CDATA[Create a new Markdown template for the mailable]]></help>
  1234. </option>
  1235. <option name="--help" shortcut="-h">
  1236. <help><![CDATA[Display this help message]]></help>
  1237. </option>
  1238. <option name="--quiet" shortcut="-q">
  1239. <help><![CDATA[Do not output any message]]></help>
  1240. </option>
  1241. <option name="--verbose" shortcut="-v">
  1242. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1243. </option>
  1244. <option name="--version" shortcut="-V">
  1245. <help><![CDATA[Display this application version]]></help>
  1246. </option>
  1247. <option name="--ansi" shortcut="">
  1248. <help><![CDATA[Force ANSI output]]></help>
  1249. </option>
  1250. <option name="--no-ansi" shortcut="">
  1251. <help><![CDATA[Disable ANSI output]]></help>
  1252. </option>
  1253. <option name="--no-interaction" shortcut="-n">
  1254. <help><![CDATA[Do not ask any interactive question]]></help>
  1255. </option>
  1256. <option name="--env" shortcut="" pattern="equals">
  1257. <help><![CDATA[The environment the command should run under]]></help>
  1258. </option>
  1259. </optionsBefore>
  1260. </command>
  1261. <command>
  1262. <name>make:middleware</name>
  1263. <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 this help message</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>
  1264. <params>name</params>
  1265. <optionsBefore>
  1266. <option name="--help" shortcut="-h">
  1267. <help><![CDATA[Display this help message]]></help>
  1268. </option>
  1269. <option name="--quiet" shortcut="-q">
  1270. <help><![CDATA[Do not output any message]]></help>
  1271. </option>
  1272. <option name="--verbose" shortcut="-v">
  1273. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1274. </option>
  1275. <option name="--version" shortcut="-V">
  1276. <help><![CDATA[Display this application version]]></help>
  1277. </option>
  1278. <option name="--ansi" shortcut="">
  1279. <help><![CDATA[Force ANSI output]]></help>
  1280. </option>
  1281. <option name="--no-ansi" shortcut="">
  1282. <help><![CDATA[Disable ANSI output]]></help>
  1283. </option>
  1284. <option name="--no-interaction" shortcut="-n">
  1285. <help><![CDATA[Do not ask any interactive question]]></help>
  1286. </option>
  1287. <option name="--env" shortcut="" pattern="equals">
  1288. <help><![CDATA[The environment the command should run under]]></help>
  1289. </option>
  1290. </optionsBefore>
  1291. </command>
  1292. <command>
  1293. <name>make:migration</name>
  1294. <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 this help message</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>
  1295. <params>name</params>
  1296. <optionsBefore>
  1297. <option name="--create" shortcut="" pattern="equals">
  1298. <help><![CDATA[The table to be created]]></help>
  1299. </option>
  1300. <option name="--table" shortcut="" pattern="equals">
  1301. <help><![CDATA[The table to migrate]]></help>
  1302. </option>
  1303. <option name="--path" shortcut="" pattern="equals">
  1304. <help><![CDATA[The location where the migration file should be created]]></help>
  1305. </option>
  1306. <option name="--realpath" shortcut="">
  1307. <help><![CDATA[Indicate any provided migration file paths are pre-resolved absolute paths]]></help>
  1308. </option>
  1309. <option name="--fullpath" shortcut="">
  1310. <help><![CDATA[Output the full path of the migration]]></help>
  1311. </option>
  1312. <option name="--help" shortcut="-h">
  1313. <help><![CDATA[Display this help message]]></help>
  1314. </option>
  1315. <option name="--quiet" shortcut="-q">
  1316. <help><![CDATA[Do not output any message]]></help>
  1317. </option>
  1318. <option name="--verbose" shortcut="-v">
  1319. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1320. </option>
  1321. <option name="--version" shortcut="-V">
  1322. <help><![CDATA[Display this application version]]></help>
  1323. </option>
  1324. <option name="--ansi" shortcut="">
  1325. <help><![CDATA[Force ANSI output]]></help>
  1326. </option>
  1327. <option name="--no-ansi" shortcut="">
  1328. <help><![CDATA[Disable ANSI output]]></help>
  1329. </option>
  1330. <option name="--no-interaction" shortcut="-n">
  1331. <help><![CDATA[Do not ask any interactive question]]></help>
  1332. </option>
  1333. <option name="--env" shortcut="" pattern="equals">
  1334. <help><![CDATA[The environment the command should run under]]></help>
  1335. </option>
  1336. </optionsBefore>
  1337. </command>
  1338. <command>
  1339. <name>make:model</name>
  1340. <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 this help message</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>
  1341. <params>name</params>
  1342. <optionsBefore>
  1343. <option name="--all" shortcut="-a">
  1344. <help><![CDATA[Generate a migration, seeder, factory, and resource controller for the model]]></help>
  1345. </option>
  1346. <option name="--controller" shortcut="-c">
  1347. <help><![CDATA[Create a new controller for the model]]></help>
  1348. </option>
  1349. <option name="--factory" shortcut="-f">
  1350. <help><![CDATA[Create a new factory for the model]]></help>
  1351. </option>
  1352. <option name="--force" shortcut="">
  1353. <help><![CDATA[Create the class even if the model already exists]]></help>
  1354. </option>
  1355. <option name="--migration" shortcut="-m">
  1356. <help><![CDATA[Create a new migration file for the model]]></help>
  1357. </option>
  1358. <option name="--seed" shortcut="-s">
  1359. <help><![CDATA[Create a new seeder file for the model]]></help>
  1360. </option>
  1361. <option name="--pivot" shortcut="-p">
  1362. <help><![CDATA[Indicates if the generated model should be a custom intermediate table model]]></help>
  1363. </option>
  1364. <option name="--resource" shortcut="-r">
  1365. <help><![CDATA[Indicates if the generated controller should be a resource controller]]></help>
  1366. </option>
  1367. <option name="--api" shortcut="">
  1368. <help><![CDATA[Indicates if the generated controller should be an API controller]]></help>
  1369. </option>
  1370. <option name="--help" shortcut="-h">
  1371. <help><![CDATA[Display this help message]]></help>
  1372. </option>
  1373. <option name="--quiet" shortcut="-q">
  1374. <help><![CDATA[Do not output any message]]></help>
  1375. </option>
  1376. <option name="--verbose" shortcut="-v">
  1377. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1378. </option>
  1379. <option name="--version" shortcut="-V">
  1380. <help><![CDATA[Display this application version]]></help>
  1381. </option>
  1382. <option name="--ansi" shortcut="">
  1383. <help><![CDATA[Force ANSI output]]></help>
  1384. </option>
  1385. <option name="--no-ansi" shortcut="">
  1386. <help><![CDATA[Disable ANSI output]]></help>
  1387. </option>
  1388. <option name="--no-interaction" shortcut="-n">
  1389. <help><![CDATA[Do not ask any interactive question]]></help>
  1390. </option>
  1391. <option name="--env" shortcut="" pattern="equals">
  1392. <help><![CDATA[The environment the command should run under]]></help>
  1393. </option>
  1394. </optionsBefore>
  1395. </command>
  1396. <command>
  1397. <name>make:notification</name>
  1398. <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 this help message</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>
  1399. <params>name</params>
  1400. <optionsBefore>
  1401. <option name="--force" shortcut="-f">
  1402. <help><![CDATA[Create the class even if the notification already exists]]></help>
  1403. </option>
  1404. <option name="--markdown" shortcut="-m" pattern="equals">
  1405. <help><![CDATA[Create a new Markdown template for the notification]]></help>
  1406. </option>
  1407. <option name="--help" shortcut="-h">
  1408. <help><![CDATA[Display this help message]]></help>
  1409. </option>
  1410. <option name="--quiet" shortcut="-q">
  1411. <help><![CDATA[Do not output any message]]></help>
  1412. </option>
  1413. <option name="--verbose" shortcut="-v">
  1414. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1415. </option>
  1416. <option name="--version" shortcut="-V">
  1417. <help><![CDATA[Display this application version]]></help>
  1418. </option>
  1419. <option name="--ansi" shortcut="">
  1420. <help><![CDATA[Force ANSI output]]></help>
  1421. </option>
  1422. <option name="--no-ansi" shortcut="">
  1423. <help><![CDATA[Disable ANSI output]]></help>
  1424. </option>
  1425. <option name="--no-interaction" shortcut="-n">
  1426. <help><![CDATA[Do not ask any interactive question]]></help>
  1427. </option>
  1428. <option name="--env" shortcut="" pattern="equals">
  1429. <help><![CDATA[The environment the command should run under]]></help>
  1430. </option>
  1431. </optionsBefore>
  1432. </command>
  1433. <command>
  1434. <name>make:observer</name>
  1435. <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 this help message</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>
  1436. <params>name</params>
  1437. <optionsBefore>
  1438. <option name="--model" shortcut="-m" pattern="equals">
  1439. <help><![CDATA[The model that the observer applies to.]]></help>
  1440. </option>
  1441. <option name="--help" shortcut="-h">
  1442. <help><![CDATA[Display this help message]]></help>
  1443. </option>
  1444. <option name="--quiet" shortcut="-q">
  1445. <help><![CDATA[Do not output any message]]></help>
  1446. </option>
  1447. <option name="--verbose" shortcut="-v">
  1448. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1449. </option>
  1450. <option name="--version" shortcut="-V">
  1451. <help><![CDATA[Display this application version]]></help>
  1452. </option>
  1453. <option name="--ansi" shortcut="">
  1454. <help><![CDATA[Force ANSI output]]></help>
  1455. </option>
  1456. <option name="--no-ansi" shortcut="">
  1457. <help><![CDATA[Disable ANSI output]]></help>
  1458. </option>
  1459. <option name="--no-interaction" shortcut="-n">
  1460. <help><![CDATA[Do not ask any interactive question]]></help>
  1461. </option>
  1462. <option name="--env" shortcut="" pattern="equals">
  1463. <help><![CDATA[The environment the command should run under]]></help>
  1464. </option>
  1465. </optionsBefore>
  1466. </command>
  1467. <command>
  1468. <name>make:policy</name>
  1469. <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 this help message</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>
  1470. <params>name</params>
  1471. <optionsBefore>
  1472. <option name="--model" shortcut="-m" pattern="equals">
  1473. <help><![CDATA[The model that the policy applies to]]></help>
  1474. </option>
  1475. <option name="--guard" shortcut="-g" pattern="equals">
  1476. <help><![CDATA[The guard that the policy relies on]]></help>
  1477. </option>
  1478. <option name="--help" shortcut="-h">
  1479. <help><![CDATA[Display this help message]]></help>
  1480. </option>
  1481. <option name="--quiet" shortcut="-q">
  1482. <help><![CDATA[Do not output any message]]></help>
  1483. </option>
  1484. <option name="--verbose" shortcut="-v">
  1485. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1486. </option>
  1487. <option name="--version" shortcut="-V">
  1488. <help><![CDATA[Display this application version]]></help>
  1489. </option>
  1490. <option name="--ansi" shortcut="">
  1491. <help><![CDATA[Force ANSI output]]></help>
  1492. </option>
  1493. <option name="--no-ansi" shortcut="">
  1494. <help><![CDATA[Disable ANSI output]]></help>
  1495. </option>
  1496. <option name="--no-interaction" shortcut="-n">
  1497. <help><![CDATA[Do not ask any interactive question]]></help>
  1498. </option>
  1499. <option name="--env" shortcut="" pattern="equals">
  1500. <help><![CDATA[The environment the command should run under]]></help>
  1501. </option>
  1502. </optionsBefore>
  1503. </command>
  1504. <command>
  1505. <name>make:provider</name>
  1506. <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 this help message</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>
  1507. <params>name</params>
  1508. <optionsBefore>
  1509. <option name="--help" shortcut="-h">
  1510. <help><![CDATA[Display this help message]]></help>
  1511. </option>
  1512. <option name="--quiet" shortcut="-q">
  1513. <help><![CDATA[Do not output any message]]></help>
  1514. </option>
  1515. <option name="--verbose" shortcut="-v">
  1516. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1517. </option>
  1518. <option name="--version" shortcut="-V">
  1519. <help><![CDATA[Display this application version]]></help>
  1520. </option>
  1521. <option name="--ansi" shortcut="">
  1522. <help><![CDATA[Force ANSI output]]></help>
  1523. </option>
  1524. <option name="--no-ansi" shortcut="">
  1525. <help><![CDATA[Disable ANSI output]]></help>
  1526. </option>
  1527. <option name="--no-interaction" shortcut="-n">
  1528. <help><![CDATA[Do not ask any interactive question]]></help>
  1529. </option>
  1530. <option name="--env" shortcut="" pattern="equals">
  1531. <help><![CDATA[The environment the command should run under]]></help>
  1532. </option>
  1533. </optionsBefore>
  1534. </command>
  1535. <command>
  1536. <name>make:request</name>
  1537. <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 this help message</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>
  1538. <params>name</params>
  1539. <optionsBefore>
  1540. <option name="--help" shortcut="-h">
  1541. <help><![CDATA[Display this help message]]></help>
  1542. </option>
  1543. <option name="--quiet" shortcut="-q">
  1544. <help><![CDATA[Do not output any message]]></help>
  1545. </option>
  1546. <option name="--verbose" shortcut="-v">
  1547. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1548. </option>
  1549. <option name="--version" shortcut="-V">
  1550. <help><![CDATA[Display this application version]]></help>
  1551. </option>
  1552. <option name="--ansi" shortcut="">
  1553. <help><![CDATA[Force ANSI output]]></help>
  1554. </option>
  1555. <option name="--no-ansi" shortcut="">
  1556. <help><![CDATA[Disable ANSI output]]></help>
  1557. </option>
  1558. <option name="--no-interaction" shortcut="-n">
  1559. <help><![CDATA[Do not ask any interactive question]]></help>
  1560. </option>
  1561. <option name="--env" shortcut="" pattern="equals">
  1562. <help><![CDATA[The environment the command should run under]]></help>
  1563. </option>
  1564. </optionsBefore>
  1565. </command>
  1566. <command>
  1567. <name>make:resource</name>
  1568. <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 this help message</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>
  1569. <params>name</params>
  1570. <optionsBefore>
  1571. <option name="--collection" shortcut="-c">
  1572. <help><![CDATA[Create a resource collection]]></help>
  1573. </option>
  1574. <option name="--help" shortcut="-h">
  1575. <help><![CDATA[Display this help message]]></help>
  1576. </option>
  1577. <option name="--quiet" shortcut="-q">
  1578. <help><![CDATA[Do not output any message]]></help>
  1579. </option>
  1580. <option name="--verbose" shortcut="-v">
  1581. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1582. </option>
  1583. <option name="--version" shortcut="-V">
  1584. <help><![CDATA[Display this application version]]></help>
  1585. </option>
  1586. <option name="--ansi" shortcut="">
  1587. <help><![CDATA[Force ANSI output]]></help>
  1588. </option>
  1589. <option name="--no-ansi" shortcut="">
  1590. <help><![CDATA[Disable ANSI output]]></help>
  1591. </option>
  1592. <option name="--no-interaction" shortcut="-n">
  1593. <help><![CDATA[Do not ask any interactive question]]></help>
  1594. </option>
  1595. <option name="--env" shortcut="" pattern="equals">
  1596. <help><![CDATA[The environment the command should run under]]></help>
  1597. </option>
  1598. </optionsBefore>
  1599. </command>
  1600. <command>
  1601. <name>make:rule</name>
  1602. <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 this help message</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>
  1603. <params>name</params>
  1604. <optionsBefore>
  1605. <option name="--help" shortcut="-h">
  1606. <help><![CDATA[Display this help message]]></help>
  1607. </option>
  1608. <option name="--quiet" shortcut="-q">
  1609. <help><![CDATA[Do not output any message]]></help>
  1610. </option>
  1611. <option name="--verbose" shortcut="-v">
  1612. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1613. </option>
  1614. <option name="--version" shortcut="-V">
  1615. <help><![CDATA[Display this application version]]></help>
  1616. </option>
  1617. <option name="--ansi" shortcut="">
  1618. <help><![CDATA[Force ANSI output]]></help>
  1619. </option>
  1620. <option name="--no-ansi" shortcut="">
  1621. <help><![CDATA[Disable ANSI output]]></help>
  1622. </option>
  1623. <option name="--no-interaction" shortcut="-n">
  1624. <help><![CDATA[Do not ask any interactive question]]></help>
  1625. </option>
  1626. <option name="--env" shortcut="" pattern="equals">
  1627. <help><![CDATA[The environment the command should run under]]></help>
  1628. </option>
  1629. </optionsBefore>
  1630. </command>
  1631. <command>
  1632. <name>make:seeder</name>
  1633. <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 this help message</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>
  1634. <params>name</params>
  1635. <optionsBefore>
  1636. <option name="--help" shortcut="-h">
  1637. <help><![CDATA[Display this help message]]></help>
  1638. </option>
  1639. <option name="--quiet" shortcut="-q">
  1640. <help><![CDATA[Do not output any message]]></help>
  1641. </option>
  1642. <option name="--verbose" shortcut="-v">
  1643. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1644. </option>
  1645. <option name="--version" shortcut="-V">
  1646. <help><![CDATA[Display this application version]]></help>
  1647. </option>
  1648. <option name="--ansi" shortcut="">
  1649. <help><![CDATA[Force ANSI output]]></help>
  1650. </option>
  1651. <option name="--no-ansi" shortcut="">
  1652. <help><![CDATA[Disable ANSI output]]></help>
  1653. </option>
  1654. <option name="--no-interaction" shortcut="-n">
  1655. <help><![CDATA[Do not ask any interactive question]]></help>
  1656. </option>
  1657. <option name="--env" shortcut="" pattern="equals">
  1658. <help><![CDATA[The environment the command should run under]]></help>
  1659. </option>
  1660. </optionsBefore>
  1661. </command>
  1662. <command>
  1663. <name>make:test</name>
  1664. <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 this help message</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>
  1665. <params>name</params>
  1666. <optionsBefore>
  1667. <option name="--unit" shortcut="-u">
  1668. <help><![CDATA[Create a unit test.]]></help>
  1669. </option>
  1670. <option name="--help" shortcut="-h">
  1671. <help><![CDATA[Display this help message]]></help>
  1672. </option>
  1673. <option name="--quiet" shortcut="-q">
  1674. <help><![CDATA[Do not output any message]]></help>
  1675. </option>
  1676. <option name="--verbose" shortcut="-v">
  1677. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1678. </option>
  1679. <option name="--version" shortcut="-V">
  1680. <help><![CDATA[Display this application version]]></help>
  1681. </option>
  1682. <option name="--ansi" shortcut="">
  1683. <help><![CDATA[Force ANSI output]]></help>
  1684. </option>
  1685. <option name="--no-ansi" shortcut="">
  1686. <help><![CDATA[Disable ANSI output]]></help>
  1687. </option>
  1688. <option name="--no-interaction" shortcut="-n">
  1689. <help><![CDATA[Do not ask any interactive question]]></help>
  1690. </option>
  1691. <option name="--env" shortcut="" pattern="equals">
  1692. <help><![CDATA[The environment the command should run under]]></help>
  1693. </option>
  1694. </optionsBefore>
  1695. </command>
  1696. <command>
  1697. <name>migrate:fresh</name>
  1698. <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 this help message</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>
  1699. <optionsBefore>
  1700. <option name="--database" shortcut="" pattern="equals">
  1701. <help><![CDATA[The database connection to use]]></help>
  1702. </option>
  1703. <option name="--drop-views" shortcut="">
  1704. <help><![CDATA[Drop all tables and views]]></help>
  1705. </option>
  1706. <option name="--drop-types" shortcut="">
  1707. <help><![CDATA[Drop all tables and types (Postgres only)]]></help>
  1708. </option>
  1709. <option name="--force" shortcut="">
  1710. <help><![CDATA[Force the operation to run when in production]]></help>
  1711. </option>
  1712. <option name="--path" shortcut="" pattern="equals">
  1713. <help><![CDATA[The path(s) to the migrations files to be executed]]></help>
  1714. </option>
  1715. <option name="--realpath" shortcut="">
  1716. <help><![CDATA[Indicate any provided migration file paths are pre-resolved absolute paths]]></help>
  1717. </option>
  1718. <option name="--schema-path" shortcut="" pattern="equals">
  1719. <help><![CDATA[The path to a schema dump file]]></help>
  1720. </option>
  1721. <option name="--seed" shortcut="">
  1722. <help><![CDATA[Indicates if the seed task should be re-run]]></help>
  1723. </option>
  1724. <option name="--seeder" shortcut="" pattern="equals">
  1725. <help><![CDATA[The class name of the root seeder]]></help>
  1726. </option>
  1727. <option name="--step" shortcut="">
  1728. <help><![CDATA[Force the migrations to be run so they can be rolled back individually]]></help>
  1729. </option>
  1730. <option name="--help" shortcut="-h">
  1731. <help><![CDATA[Display this help message]]></help>
  1732. </option>
  1733. <option name="--quiet" shortcut="-q">
  1734. <help><![CDATA[Do not output any message]]></help>
  1735. </option>
  1736. <option name="--verbose" shortcut="-v">
  1737. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1738. </option>
  1739. <option name="--version" shortcut="-V">
  1740. <help><![CDATA[Display this application version]]></help>
  1741. </option>
  1742. <option name="--ansi" shortcut="">
  1743. <help><![CDATA[Force ANSI output]]></help>
  1744. </option>
  1745. <option name="--no-ansi" shortcut="">
  1746. <help><![CDATA[Disable ANSI output]]></help>
  1747. </option>
  1748. <option name="--no-interaction" shortcut="-n">
  1749. <help><![CDATA[Do not ask any interactive question]]></help>
  1750. </option>
  1751. <option name="--env" shortcut="" pattern="equals">
  1752. <help><![CDATA[The environment the command should run under]]></help>
  1753. </option>
  1754. </optionsBefore>
  1755. </command>
  1756. <command>
  1757. <name>migrate:install</name>
  1758. <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 this help message</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>
  1759. <optionsBefore>
  1760. <option name="--database" shortcut="" pattern="equals">
  1761. <help><![CDATA[The database connection to use]]></help>
  1762. </option>
  1763. <option name="--help" shortcut="-h">
  1764. <help><![CDATA[Display this help message]]></help>
  1765. </option>
  1766. <option name="--quiet" shortcut="-q">
  1767. <help><![CDATA[Do not output any message]]></help>
  1768. </option>
  1769. <option name="--verbose" shortcut="-v">
  1770. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1771. </option>
  1772. <option name="--version" shortcut="-V">
  1773. <help><![CDATA[Display this application version]]></help>
  1774. </option>
  1775. <option name="--ansi" shortcut="">
  1776. <help><![CDATA[Force ANSI output]]></help>
  1777. </option>
  1778. <option name="--no-ansi" shortcut="">
  1779. <help><![CDATA[Disable ANSI output]]></help>
  1780. </option>
  1781. <option name="--no-interaction" shortcut="-n">
  1782. <help><![CDATA[Do not ask any interactive question]]></help>
  1783. </option>
  1784. <option name="--env" shortcut="" pattern="equals">
  1785. <help><![CDATA[The environment the command should run under]]></help>
  1786. </option>
  1787. </optionsBefore>
  1788. </command>
  1789. <command>
  1790. <name>migrate:refresh</name>
  1791. <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 this help message</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>
  1792. <optionsBefore>
  1793. <option name="--database" shortcut="" pattern="equals">
  1794. <help><![CDATA[The database connection to use]]></help>
  1795. </option>
  1796. <option name="--force" shortcut="">
  1797. <help><![CDATA[Force the operation to run when in production]]></help>
  1798. </option>
  1799. <option name="--path" shortcut="" pattern="equals">
  1800. <help><![CDATA[The path(s) to the migrations files to be executed]]></help>
  1801. </option>
  1802. <option name="--realpath" shortcut="">
  1803. <help><![CDATA[Indicate any provided migration file paths are pre-resolved absolute paths]]></help>
  1804. </option>
  1805. <option name="--seed" shortcut="">
  1806. <help><![CDATA[Indicates if the seed task should be re-run]]></help>
  1807. </option>
  1808. <option name="--seeder" shortcut="" pattern="equals">
  1809. <help><![CDATA[The class name of the root seeder]]></help>
  1810. </option>
  1811. <option name="--step" shortcut="" pattern="equals">
  1812. <help><![CDATA[The number of migrations to be reverted & re-run]]></help>
  1813. </option>
  1814. <option name="--help" shortcut="-h">
  1815. <help><![CDATA[Display this help message]]></help>
  1816. </option>
  1817. <option name="--quiet" shortcut="-q">
  1818. <help><![CDATA[Do not output any message]]></help>
  1819. </option>
  1820. <option name="--verbose" shortcut="-v">
  1821. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1822. </option>
  1823. <option name="--version" shortcut="-V">
  1824. <help><![CDATA[Display this application version]]></help>
  1825. </option>
  1826. <option name="--ansi" shortcut="">
  1827. <help><![CDATA[Force ANSI output]]></help>
  1828. </option>
  1829. <option name="--no-ansi" shortcut="">
  1830. <help><![CDATA[Disable ANSI output]]></help>
  1831. </option>
  1832. <option name="--no-interaction" shortcut="-n">
  1833. <help><![CDATA[Do not ask any interactive question]]></help>
  1834. </option>
  1835. <option name="--env" shortcut="" pattern="equals">
  1836. <help><![CDATA[The environment the command should run under]]></help>
  1837. </option>
  1838. </optionsBefore>
  1839. </command>
  1840. <command>
  1841. <name>migrate:reset</name>
  1842. <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 this help message</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>
  1843. <optionsBefore>
  1844. <option name="--database" shortcut="" pattern="equals">
  1845. <help><![CDATA[The database connection to use]]></help>
  1846. </option>
  1847. <option name="--force" shortcut="">
  1848. <help><![CDATA[Force the operation to run when in production]]></help>
  1849. </option>
  1850. <option name="--path" shortcut="" pattern="equals">
  1851. <help><![CDATA[The path(s) to the migrations files to be executed]]></help>
  1852. </option>
  1853. <option name="--realpath" shortcut="">
  1854. <help><![CDATA[Indicate any provided migration file paths are pre-resolved absolute paths]]></help>
  1855. </option>
  1856. <option name="--pretend" shortcut="">
  1857. <help><![CDATA[Dump the SQL queries that would be run]]></help>
  1858. </option>
  1859. <option name="--help" shortcut="-h">
  1860. <help><![CDATA[Display this help message]]></help>
  1861. </option>
  1862. <option name="--quiet" shortcut="-q">
  1863. <help><![CDATA[Do not output any message]]></help>
  1864. </option>
  1865. <option name="--verbose" shortcut="-v">
  1866. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1867. </option>
  1868. <option name="--version" shortcut="-V">
  1869. <help><![CDATA[Display this application version]]></help>
  1870. </option>
  1871. <option name="--ansi" shortcut="">
  1872. <help><![CDATA[Force ANSI output]]></help>
  1873. </option>
  1874. <option name="--no-ansi" shortcut="">
  1875. <help><![CDATA[Disable ANSI output]]></help>
  1876. </option>
  1877. <option name="--no-interaction" shortcut="-n">
  1878. <help><![CDATA[Do not ask any interactive question]]></help>
  1879. </option>
  1880. <option name="--env" shortcut="" pattern="equals">
  1881. <help><![CDATA[The environment the command should run under]]></help>
  1882. </option>
  1883. </optionsBefore>
  1884. </command>
  1885. <command>
  1886. <name>migrate:rollback</name>
  1887. <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 this help message</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>
  1888. <optionsBefore>
  1889. <option name="--database" shortcut="" pattern="equals">
  1890. <help><![CDATA[The database connection to use]]></help>
  1891. </option>
  1892. <option name="--force" shortcut="">
  1893. <help><![CDATA[Force the operation to run when in production]]></help>
  1894. </option>
  1895. <option name="--path" shortcut="" pattern="equals">
  1896. <help><![CDATA[The path(s) to the migrations files to be executed]]></help>
  1897. </option>
  1898. <option name="--realpath" shortcut="">
  1899. <help><![CDATA[Indicate any provided migration file paths are pre-resolved absolute paths]]></help>
  1900. </option>
  1901. <option name="--pretend" shortcut="">
  1902. <help><![CDATA[Dump the SQL queries that would be run]]></help>
  1903. </option>
  1904. <option name="--step" shortcut="" pattern="equals">
  1905. <help><![CDATA[The number of migrations to be reverted]]></help>
  1906. </option>
  1907. <option name="--help" shortcut="-h">
  1908. <help><![CDATA[Display this help message]]></help>
  1909. </option>
  1910. <option name="--quiet" shortcut="-q">
  1911. <help><![CDATA[Do not output any message]]></help>
  1912. </option>
  1913. <option name="--verbose" shortcut="-v">
  1914. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1915. </option>
  1916. <option name="--version" shortcut="-V">
  1917. <help><![CDATA[Display this application version]]></help>
  1918. </option>
  1919. <option name="--ansi" shortcut="">
  1920. <help><![CDATA[Force ANSI output]]></help>
  1921. </option>
  1922. <option name="--no-ansi" shortcut="">
  1923. <help><![CDATA[Disable ANSI output]]></help>
  1924. </option>
  1925. <option name="--no-interaction" shortcut="-n">
  1926. <help><![CDATA[Do not ask any interactive question]]></help>
  1927. </option>
  1928. <option name="--env" shortcut="" pattern="equals">
  1929. <help><![CDATA[The environment the command should run under]]></help>
  1930. </option>
  1931. </optionsBefore>
  1932. </command>
  1933. <command>
  1934. <name>migrate:status</name>
  1935. <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 this help message</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>
  1936. <optionsBefore>
  1937. <option name="--database" shortcut="" pattern="equals">
  1938. <help><![CDATA[The database connection to use]]></help>
  1939. </option>
  1940. <option name="--path" shortcut="" pattern="equals">
  1941. <help><![CDATA[The path(s) to the migrations files to use]]></help>
  1942. </option>
  1943. <option name="--realpath" shortcut="">
  1944. <help><![CDATA[Indicate any provided migration file paths are pre-resolved absolute paths]]></help>
  1945. </option>
  1946. <option name="--help" shortcut="-h">
  1947. <help><![CDATA[Display this help message]]></help>
  1948. </option>
  1949. <option name="--quiet" shortcut="-q">
  1950. <help><![CDATA[Do not output any message]]></help>
  1951. </option>
  1952. <option name="--verbose" shortcut="-v">
  1953. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1954. </option>
  1955. <option name="--version" shortcut="-V">
  1956. <help><![CDATA[Display this application version]]></help>
  1957. </option>
  1958. <option name="--ansi" shortcut="">
  1959. <help><![CDATA[Force ANSI output]]></help>
  1960. </option>
  1961. <option name="--no-ansi" shortcut="">
  1962. <help><![CDATA[Disable ANSI output]]></help>
  1963. </option>
  1964. <option name="--no-interaction" shortcut="-n">
  1965. <help><![CDATA[Do not ask any interactive question]]></help>
  1966. </option>
  1967. <option name="--env" shortcut="" pattern="equals">
  1968. <help><![CDATA[The environment the command should run under]]></help>
  1969. </option>
  1970. </optionsBefore>
  1971. </command>
  1972. <command>
  1973. <name>notifications:table</name>
  1974. <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 this help message</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>
  1975. <optionsBefore>
  1976. <option name="--help" shortcut="-h">
  1977. <help><![CDATA[Display this help message]]></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>optimize:clear</name>
  2004. <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 this help message</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 this help message]]></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>package:discover</name>
  2034. <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 this help message</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 this help message]]></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>queue:batches-table</name>
  2064. <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 this help message</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 this help message]]></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:clear</name>
  2094. <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 this help message</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. <params>connection[=null]</params>
  2096. <optionsBefore>
  2097. <option name="--queue" shortcut="" pattern="equals">
  2098. <help><![CDATA[The name of the queue to clear]]></help>
  2099. </option>
  2100. <option name="--force" shortcut="">
  2101. <help><![CDATA[Force the operation to run when in production]]></help>
  2102. </option>
  2103. <option name="--help" shortcut="-h">
  2104. <help><![CDATA[Display this help message]]></help>
  2105. </option>
  2106. <option name="--quiet" shortcut="-q">
  2107. <help><![CDATA[Do not output any message]]></help>
  2108. </option>
  2109. <option name="--verbose" shortcut="-v">
  2110. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2111. </option>
  2112. <option name="--version" shortcut="-V">
  2113. <help><![CDATA[Display this application version]]></help>
  2114. </option>
  2115. <option name="--ansi" shortcut="">
  2116. <help><![CDATA[Force ANSI output]]></help>
  2117. </option>
  2118. <option name="--no-ansi" shortcut="">
  2119. <help><![CDATA[Disable ANSI output]]></help>
  2120. </option>
  2121. <option name="--no-interaction" shortcut="-n">
  2122. <help><![CDATA[Do not ask any interactive question]]></help>
  2123. </option>
  2124. <option name="--env" shortcut="" pattern="equals">
  2125. <help><![CDATA[The environment the command should run under]]></help>
  2126. </option>
  2127. </optionsBefore>
  2128. </command>
  2129. <command>
  2130. <name>queue:failed</name>
  2131. <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 this help message</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>
  2132. <optionsBefore>
  2133. <option name="--help" shortcut="-h">
  2134. <help><![CDATA[Display this help message]]></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-table</name>
  2161. <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 this help message</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 this help message]]></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:flush</name>
  2191. <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 this help message</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 this help message]]></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:forget</name>
  2221. <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 this help message</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. <params>id</params>
  2223. <optionsBefore>
  2224. <option name="--help" shortcut="-h">
  2225. <help><![CDATA[Display this help message]]></help>
  2226. </option>
  2227. <option name="--quiet" shortcut="-q">
  2228. <help><![CDATA[Do not output any message]]></help>
  2229. </option>
  2230. <option name="--verbose" shortcut="-v">
  2231. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2232. </option>
  2233. <option name="--version" shortcut="-V">
  2234. <help><![CDATA[Display this application version]]></help>
  2235. </option>
  2236. <option name="--ansi" shortcut="">
  2237. <help><![CDATA[Force ANSI output]]></help>
  2238. </option>
  2239. <option name="--no-ansi" shortcut="">
  2240. <help><![CDATA[Disable ANSI output]]></help>
  2241. </option>
  2242. <option name="--no-interaction" shortcut="-n">
  2243. <help><![CDATA[Do not ask any interactive question]]></help>
  2244. </option>
  2245. <option name="--env" shortcut="" pattern="equals">
  2246. <help><![CDATA[The environment the command should run under]]></help>
  2247. </option>
  2248. </optionsBefore>
  2249. </command>
  2250. <command>
  2251. <name>queue:listen</name>
  2252. <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 this help message</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>
  2253. <params>connection[=null]</params>
  2254. <optionsBefore>
  2255. <option name="--name" shortcut="" pattern="equals">
  2256. <help><![CDATA[The name of the worker]]></help>
  2257. </option>
  2258. <option name="--delay" shortcut="" pattern="equals">
  2259. <help><![CDATA[The number of seconds to delay failed jobs (Deprecated)]]></help>
  2260. </option>
  2261. <option name="--backoff" shortcut="" pattern="equals">
  2262. <help><![CDATA[The number of seconds to wait before retrying a job that encountered an uncaught exception]]></help>
  2263. </option>
  2264. <option name="--force" shortcut="">
  2265. <help><![CDATA[Force the worker to run even in maintenance mode]]></help>
  2266. </option>
  2267. <option name="--memory" shortcut="" pattern="equals">
  2268. <help><![CDATA[The memory limit in megabytes]]></help>
  2269. </option>
  2270. <option name="--queue" shortcut="" pattern="equals">
  2271. <help><![CDATA[The queue to listen on]]></help>
  2272. </option>
  2273. <option name="--sleep" shortcut="" pattern="equals">
  2274. <help><![CDATA[Number of seconds to sleep when no job is available]]></help>
  2275. </option>
  2276. <option name="--timeout" shortcut="" pattern="equals">
  2277. <help><![CDATA[The number of seconds a child process can run]]></help>
  2278. </option>
  2279. <option name="--tries" shortcut="" pattern="equals">
  2280. <help><![CDATA[Number of times to attempt a job before logging it failed]]></help>
  2281. </option>
  2282. <option name="--help" shortcut="-h">
  2283. <help><![CDATA[Display this help message]]></help>
  2284. </option>
  2285. <option name="--quiet" shortcut="-q">
  2286. <help><![CDATA[Do not output any message]]></help>
  2287. </option>
  2288. <option name="--verbose" shortcut="-v">
  2289. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2290. </option>
  2291. <option name="--version" shortcut="-V">
  2292. <help><![CDATA[Display this application version]]></help>
  2293. </option>
  2294. <option name="--ansi" shortcut="">
  2295. <help><![CDATA[Force ANSI output]]></help>
  2296. </option>
  2297. <option name="--no-ansi" shortcut="">
  2298. <help><![CDATA[Disable ANSI output]]></help>
  2299. </option>
  2300. <option name="--no-interaction" shortcut="-n">
  2301. <help><![CDATA[Do not ask any interactive question]]></help>
  2302. </option>
  2303. <option name="--env" shortcut="" pattern="equals">
  2304. <help><![CDATA[The environment the command should run under]]></help>
  2305. </option>
  2306. </optionsBefore>
  2307. </command>
  2308. <command>
  2309. <name>queue:restart</name>
  2310. <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 this help message</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>
  2311. <optionsBefore>
  2312. <option name="--help" shortcut="-h">
  2313. <help><![CDATA[Display this help message]]></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:retry</name>
  2340. <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 this help message</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. <params>id[=null]</params>
  2342. <optionsBefore>
  2343. <option name="--range" shortcut="" pattern="equals">
  2344. <help><![CDATA[Range of job IDs (numeric) to be retried]]></help>
  2345. </option>
  2346. <option name="--help" shortcut="-h">
  2347. <help><![CDATA[Display this help message]]></help>
  2348. </option>
  2349. <option name="--quiet" shortcut="-q">
  2350. <help><![CDATA[Do not output any message]]></help>
  2351. </option>
  2352. <option name="--verbose" shortcut="-v">
  2353. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2354. </option>
  2355. <option name="--version" shortcut="-V">
  2356. <help><![CDATA[Display this application version]]></help>
  2357. </option>
  2358. <option name="--ansi" shortcut="">
  2359. <help><![CDATA[Force ANSI output]]></help>
  2360. </option>
  2361. <option name="--no-ansi" shortcut="">
  2362. <help><![CDATA[Disable ANSI output]]></help>
  2363. </option>
  2364. <option name="--no-interaction" shortcut="-n">
  2365. <help><![CDATA[Do not ask any interactive question]]></help>
  2366. </option>
  2367. <option name="--env" shortcut="" pattern="equals">
  2368. <help><![CDATA[The environment the command should run under]]></help>
  2369. </option>
  2370. </optionsBefore>
  2371. </command>
  2372. <command>
  2373. <name>queue:retry-batch</name>
  2374. <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 this help message</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>
  2375. <params>id</params>
  2376. <optionsBefore>
  2377. <option name="--help" shortcut="-h">
  2378. <help><![CDATA[Display this help message]]></help>
  2379. </option>
  2380. <option name="--quiet" shortcut="-q">
  2381. <help><![CDATA[Do not output any message]]></help>
  2382. </option>
  2383. <option name="--verbose" shortcut="-v">
  2384. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2385. </option>
  2386. <option name="--version" shortcut="-V">
  2387. <help><![CDATA[Display this application version]]></help>
  2388. </option>
  2389. <option name="--ansi" shortcut="">
  2390. <help><![CDATA[Force ANSI output]]></help>
  2391. </option>
  2392. <option name="--no-ansi" shortcut="">
  2393. <help><![CDATA[Disable ANSI output]]></help>
  2394. </option>
  2395. <option name="--no-interaction" shortcut="-n">
  2396. <help><![CDATA[Do not ask any interactive question]]></help>
  2397. </option>
  2398. <option name="--env" shortcut="" pattern="equals">
  2399. <help><![CDATA[The environment the command should run under]]></help>
  2400. </option>
  2401. </optionsBefore>
  2402. </command>
  2403. <command>
  2404. <name>queue:table</name>
  2405. <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 this help message</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>
  2406. <optionsBefore>
  2407. <option name="--help" shortcut="-h">
  2408. <help><![CDATA[Display this help message]]></help>
  2409. </option>
  2410. <option name="--quiet" shortcut="-q">
  2411. <help><![CDATA[Do not output any message]]></help>
  2412. </option>
  2413. <option name="--verbose" shortcut="-v">
  2414. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2415. </option>
  2416. <option name="--version" shortcut="-V">
  2417. <help><![CDATA[Display this application version]]></help>
  2418. </option>
  2419. <option name="--ansi" shortcut="">
  2420. <help><![CDATA[Force ANSI output]]></help>
  2421. </option>
  2422. <option name="--no-ansi" shortcut="">
  2423. <help><![CDATA[Disable ANSI output]]></help>
  2424. </option>
  2425. <option name="--no-interaction" shortcut="-n">
  2426. <help><![CDATA[Do not ask any interactive question]]></help>
  2427. </option>
  2428. <option name="--env" shortcut="" pattern="equals">
  2429. <help><![CDATA[The environment the command should run under]]></help>
  2430. </option>
  2431. </optionsBefore>
  2432. </command>
  2433. <command>
  2434. <name>queue:work</name>
  2435. <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 this help message</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>
  2436. <params>connection[=null]</params>
  2437. <optionsBefore>
  2438. <option name="--name" shortcut="" pattern="equals">
  2439. <help><![CDATA[The name of the worker]]></help>
  2440. </option>
  2441. <option name="--queue" shortcut="" pattern="equals">
  2442. <help><![CDATA[The names of the queues to work]]></help>
  2443. </option>
  2444. <option name="--daemon" shortcut="">
  2445. <help><![CDATA[Run the worker in daemon mode (Deprecated)]]></help>
  2446. </option>
  2447. <option name="--once" shortcut="">
  2448. <help><![CDATA[Only process the next job on the queue]]></help>
  2449. </option>
  2450. <option name="--stop-when-empty" shortcut="">
  2451. <help><![CDATA[Stop when the queue is empty]]></help>
  2452. </option>
  2453. <option name="--delay" shortcut="" pattern="equals">
  2454. <help><![CDATA[The number of seconds to delay failed jobs (Deprecated)]]></help>
  2455. </option>
  2456. <option name="--backoff" shortcut="" pattern="equals">
  2457. <help><![CDATA[The number of seconds to wait before retrying a job that encountered an uncaught exception]]></help>
  2458. </option>
  2459. <option name="--max-jobs" shortcut="" pattern="equals">
  2460. <help><![CDATA[The number of jobs to process before stopping]]></help>
  2461. </option>
  2462. <option name="--max-time" shortcut="" pattern="equals">
  2463. <help><![CDATA[The maximum number of seconds the worker should run]]></help>
  2464. </option>
  2465. <option name="--force" shortcut="">
  2466. <help><![CDATA[Force the worker to run even in maintenance mode]]></help>
  2467. </option>
  2468. <option name="--memory" shortcut="" pattern="equals">
  2469. <help><![CDATA[The memory limit in megabytes]]></help>
  2470. </option>
  2471. <option name="--sleep" shortcut="" pattern="equals">
  2472. <help><![CDATA[Number of seconds to sleep when no job is available]]></help>
  2473. </option>
  2474. <option name="--timeout" shortcut="" pattern="equals">
  2475. <help><![CDATA[The number of seconds a child process can run]]></help>
  2476. </option>
  2477. <option name="--tries" shortcut="" pattern="equals">
  2478. <help><![CDATA[Number of times to attempt a job before logging it failed]]></help>
  2479. </option>
  2480. <option name="--help" shortcut="-h">
  2481. <help><![CDATA[Display this help message]]></help>
  2482. </option>
  2483. <option name="--quiet" shortcut="-q">
  2484. <help><![CDATA[Do not output any message]]></help>
  2485. </option>
  2486. <option name="--verbose" shortcut="-v">
  2487. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2488. </option>
  2489. <option name="--version" shortcut="-V">
  2490. <help><![CDATA[Display this application version]]></help>
  2491. </option>
  2492. <option name="--ansi" shortcut="">
  2493. <help><![CDATA[Force ANSI output]]></help>
  2494. </option>
  2495. <option name="--no-ansi" shortcut="">
  2496. <help><![CDATA[Disable ANSI output]]></help>
  2497. </option>
  2498. <option name="--no-interaction" shortcut="-n">
  2499. <help><![CDATA[Do not ask any interactive question]]></help>
  2500. </option>
  2501. <option name="--env" shortcut="" pattern="equals">
  2502. <help><![CDATA[The environment the command should run under]]></help>
  2503. </option>
  2504. </optionsBefore>
  2505. </command>
  2506. <command>
  2507. <name>route:cache</name>
  2508. <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 this help message</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>
  2509. <optionsBefore>
  2510. <option name="--help" shortcut="-h">
  2511. <help><![CDATA[Display this help message]]></help>
  2512. </option>
  2513. <option name="--quiet" shortcut="-q">
  2514. <help><![CDATA[Do not output any message]]></help>
  2515. </option>
  2516. <option name="--verbose" shortcut="-v">
  2517. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2518. </option>
  2519. <option name="--version" shortcut="-V">
  2520. <help><![CDATA[Display this application version]]></help>
  2521. </option>
  2522. <option name="--ansi" shortcut="">
  2523. <help><![CDATA[Force ANSI output]]></help>
  2524. </option>
  2525. <option name="--no-ansi" shortcut="">
  2526. <help><![CDATA[Disable ANSI output]]></help>
  2527. </option>
  2528. <option name="--no-interaction" shortcut="-n">
  2529. <help><![CDATA[Do not ask any interactive question]]></help>
  2530. </option>
  2531. <option name="--env" shortcut="" pattern="equals">
  2532. <help><![CDATA[The environment the command should run under]]></help>
  2533. </option>
  2534. </optionsBefore>
  2535. </command>
  2536. <command>
  2537. <name>route:clear</name>
  2538. <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 this help message</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>
  2539. <optionsBefore>
  2540. <option name="--help" shortcut="-h">
  2541. <help><![CDATA[Display this help message]]></help>
  2542. </option>
  2543. <option name="--quiet" shortcut="-q">
  2544. <help><![CDATA[Do not output any message]]></help>
  2545. </option>
  2546. <option name="--verbose" shortcut="-v">
  2547. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2548. </option>
  2549. <option name="--version" shortcut="-V">
  2550. <help><![CDATA[Display this application version]]></help>
  2551. </option>
  2552. <option name="--ansi" shortcut="">
  2553. <help><![CDATA[Force ANSI output]]></help>
  2554. </option>
  2555. <option name="--no-ansi" shortcut="">
  2556. <help><![CDATA[Disable ANSI output]]></help>
  2557. </option>
  2558. <option name="--no-interaction" shortcut="-n">
  2559. <help><![CDATA[Do not ask any interactive question]]></help>
  2560. </option>
  2561. <option name="--env" shortcut="" pattern="equals">
  2562. <help><![CDATA[The environment the command should run under]]></help>
  2563. </option>
  2564. </optionsBefore>
  2565. </command>
  2566. <command>
  2567. <name>route:list</name>
  2568. <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 this help message</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>
  2569. <optionsBefore>
  2570. <option name="--columns" shortcut="" pattern="equals">
  2571. <help><![CDATA[Columns to include in the route table]]></help>
  2572. </option>
  2573. <option name="--compact" shortcut="-c">
  2574. <help><![CDATA[Only show method, URI and action columns]]></help>
  2575. </option>
  2576. <option name="--json" shortcut="">
  2577. <help><![CDATA[Output the route list as JSON]]></help>
  2578. </option>
  2579. <option name="--method" shortcut="" pattern="equals">
  2580. <help><![CDATA[Filter the routes by method]]></help>
  2581. </option>
  2582. <option name="--name" shortcut="" pattern="equals">
  2583. <help><![CDATA[Filter the routes by name]]></help>
  2584. </option>
  2585. <option name="--path" shortcut="" pattern="equals">
  2586. <help><![CDATA[Filter the routes by path]]></help>
  2587. </option>
  2588. <option name="--reverse" shortcut="-r">
  2589. <help><![CDATA[Reverse the ordering of the routes]]></help>
  2590. </option>
  2591. <option name="--sort" shortcut="" pattern="equals">
  2592. <help><![CDATA[The column (domain, method, uri, name, action, middleware) to sort by]]></help>
  2593. </option>
  2594. <option name="--help" shortcut="-h">
  2595. <help><![CDATA[Display this help message]]></help>
  2596. </option>
  2597. <option name="--quiet" shortcut="-q">
  2598. <help><![CDATA[Do not output any message]]></help>
  2599. </option>
  2600. <option name="--verbose" shortcut="-v">
  2601. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2602. </option>
  2603. <option name="--version" shortcut="-V">
  2604. <help><![CDATA[Display this application version]]></help>
  2605. </option>
  2606. <option name="--ansi" shortcut="">
  2607. <help><![CDATA[Force ANSI output]]></help>
  2608. </option>
  2609. <option name="--no-ansi" shortcut="">
  2610. <help><![CDATA[Disable ANSI output]]></help>
  2611. </option>
  2612. <option name="--no-interaction" shortcut="-n">
  2613. <help><![CDATA[Do not ask any interactive question]]></help>
  2614. </option>
  2615. <option name="--env" shortcut="" pattern="equals">
  2616. <help><![CDATA[The environment the command should run under]]></help>
  2617. </option>
  2618. </optionsBefore>
  2619. </command>
  2620. <command>
  2621. <name>schedule:finish</name>
  2622. <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 this help message</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>
  2623. <params>id code[=null]</params>
  2624. <optionsBefore>
  2625. <option name="--help" shortcut="-h">
  2626. <help><![CDATA[Display this help message]]></help>
  2627. </option>
  2628. <option name="--quiet" shortcut="-q">
  2629. <help><![CDATA[Do not output any message]]></help>
  2630. </option>
  2631. <option name="--verbose" shortcut="-v">
  2632. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2633. </option>
  2634. <option name="--version" shortcut="-V">
  2635. <help><![CDATA[Display this application version]]></help>
  2636. </option>
  2637. <option name="--ansi" shortcut="">
  2638. <help><![CDATA[Force ANSI output]]></help>
  2639. </option>
  2640. <option name="--no-ansi" shortcut="">
  2641. <help><![CDATA[Disable ANSI output]]></help>
  2642. </option>
  2643. <option name="--no-interaction" shortcut="-n">
  2644. <help><![CDATA[Do not ask any interactive question]]></help>
  2645. </option>
  2646. <option name="--env" shortcut="" pattern="equals">
  2647. <help><![CDATA[The environment the command should run under]]></help>
  2648. </option>
  2649. </optionsBefore>
  2650. </command>
  2651. <command>
  2652. <name>schedule:run</name>
  2653. <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 this help message</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>
  2654. <optionsBefore>
  2655. <option name="--help" shortcut="-h">
  2656. <help><![CDATA[Display this help message]]></help>
  2657. </option>
  2658. <option name="--quiet" shortcut="-q">
  2659. <help><![CDATA[Do not output any message]]></help>
  2660. </option>
  2661. <option name="--verbose" shortcut="-v">
  2662. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2663. </option>
  2664. <option name="--version" shortcut="-V">
  2665. <help><![CDATA[Display this application version]]></help>
  2666. </option>
  2667. <option name="--ansi" shortcut="">
  2668. <help><![CDATA[Force ANSI output]]></help>
  2669. </option>
  2670. <option name="--no-ansi" shortcut="">
  2671. <help><![CDATA[Disable ANSI output]]></help>
  2672. </option>
  2673. <option name="--no-interaction" shortcut="-n">
  2674. <help><![CDATA[Do not ask any interactive question]]></help>
  2675. </option>
  2676. <option name="--env" shortcut="" pattern="equals">
  2677. <help><![CDATA[The environment the command should run under]]></help>
  2678. </option>
  2679. </optionsBefore>
  2680. </command>
  2681. <command>
  2682. <name>schedule:work</name>
  2683. <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 this help message</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>
  2684. <optionsBefore>
  2685. <option name="--help" shortcut="-h">
  2686. <help><![CDATA[Display this help message]]></help>
  2687. </option>
  2688. <option name="--quiet" shortcut="-q">
  2689. <help><![CDATA[Do not output any message]]></help>
  2690. </option>
  2691. <option name="--verbose" shortcut="-v">
  2692. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2693. </option>
  2694. <option name="--version" shortcut="-V">
  2695. <help><![CDATA[Display this application version]]></help>
  2696. </option>
  2697. <option name="--ansi" shortcut="">
  2698. <help><![CDATA[Force ANSI output]]></help>
  2699. </option>
  2700. <option name="--no-ansi" shortcut="">
  2701. <help><![CDATA[Disable ANSI output]]></help>
  2702. </option>
  2703. <option name="--no-interaction" shortcut="-n">
  2704. <help><![CDATA[Do not ask any interactive question]]></help>
  2705. </option>
  2706. <option name="--env" shortcut="" pattern="equals">
  2707. <help><![CDATA[The environment the command should run under]]></help>
  2708. </option>
  2709. </optionsBefore>
  2710. </command>
  2711. <command>
  2712. <name>schema:dump</name>
  2713. <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 this help message</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>
  2714. <optionsBefore>
  2715. <option name="--database" shortcut="" pattern="equals">
  2716. <help><![CDATA[The database connection to use]]></help>
  2717. </option>
  2718. <option name="--path" shortcut="" pattern="equals">
  2719. <help><![CDATA[The path where the schema dump file should be stored]]></help>
  2720. </option>
  2721. <option name="--prune" shortcut="">
  2722. <help><![CDATA[Delete all existing migration files]]></help>
  2723. </option>
  2724. <option name="--help" shortcut="-h">
  2725. <help><![CDATA[Display this help message]]></help>
  2726. </option>
  2727. <option name="--quiet" shortcut="-q">
  2728. <help><![CDATA[Do not output any message]]></help>
  2729. </option>
  2730. <option name="--verbose" shortcut="-v">
  2731. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2732. </option>
  2733. <option name="--version" shortcut="-V">
  2734. <help><![CDATA[Display this application version]]></help>
  2735. </option>
  2736. <option name="--ansi" shortcut="">
  2737. <help><![CDATA[Force ANSI output]]></help>
  2738. </option>
  2739. <option name="--no-ansi" shortcut="">
  2740. <help><![CDATA[Disable ANSI output]]></help>
  2741. </option>
  2742. <option name="--no-interaction" shortcut="-n">
  2743. <help><![CDATA[Do not ask any interactive question]]></help>
  2744. </option>
  2745. <option name="--env" shortcut="" pattern="equals">
  2746. <help><![CDATA[The environment the command should run under]]></help>
  2747. </option>
  2748. </optionsBefore>
  2749. </command>
  2750. <command>
  2751. <name>session:table</name>
  2752. <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 this help message</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>
  2753. <optionsBefore>
  2754. <option name="--help" shortcut="-h">
  2755. <help><![CDATA[Display this help message]]></help>
  2756. </option>
  2757. <option name="--quiet" shortcut="-q">
  2758. <help><![CDATA[Do not output any message]]></help>
  2759. </option>
  2760. <option name="--verbose" shortcut="-v">
  2761. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2762. </option>
  2763. <option name="--version" shortcut="-V">
  2764. <help><![CDATA[Display this application version]]></help>
  2765. </option>
  2766. <option name="--ansi" shortcut="">
  2767. <help><![CDATA[Force ANSI output]]></help>
  2768. </option>
  2769. <option name="--no-ansi" shortcut="">
  2770. <help><![CDATA[Disable ANSI output]]></help>
  2771. </option>
  2772. <option name="--no-interaction" shortcut="-n">
  2773. <help><![CDATA[Do not ask any interactive question]]></help>
  2774. </option>
  2775. <option name="--env" shortcut="" pattern="equals">
  2776. <help><![CDATA[The environment the command should run under]]></help>
  2777. </option>
  2778. </optionsBefore>
  2779. </command>
  2780. <command>
  2781. <name>storage:link</name>
  2782. <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 this help message</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>
  2783. <optionsBefore>
  2784. <option name="--relative" shortcut="">
  2785. <help><![CDATA[Create the symbolic link using relative paths]]></help>
  2786. </option>
  2787. <option name="--help" shortcut="-h">
  2788. <help><![CDATA[Display this help message]]></help>
  2789. </option>
  2790. <option name="--quiet" shortcut="-q">
  2791. <help><![CDATA[Do not output any message]]></help>
  2792. </option>
  2793. <option name="--verbose" shortcut="-v">
  2794. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2795. </option>
  2796. <option name="--version" shortcut="-V">
  2797. <help><![CDATA[Display this application version]]></help>
  2798. </option>
  2799. <option name="--ansi" shortcut="">
  2800. <help><![CDATA[Force ANSI output]]></help>
  2801. </option>
  2802. <option name="--no-ansi" shortcut="">
  2803. <help><![CDATA[Disable ANSI output]]></help>
  2804. </option>
  2805. <option name="--no-interaction" shortcut="-n">
  2806. <help><![CDATA[Do not ask any interactive question]]></help>
  2807. </option>
  2808. <option name="--env" shortcut="" pattern="equals">
  2809. <help><![CDATA[The environment the command should run under]]></help>
  2810. </option>
  2811. </optionsBefore>
  2812. </command>
  2813. <command>
  2814. <name>stub:publish</name>
  2815. <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 this help message</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>
  2816. <optionsBefore>
  2817. <option name="--force" shortcut="">
  2818. <help><![CDATA[Overwrite any existing files]]></help>
  2819. </option>
  2820. <option name="--help" shortcut="-h">
  2821. <help><![CDATA[Display this help message]]></help>
  2822. </option>
  2823. <option name="--quiet" shortcut="-q">
  2824. <help><![CDATA[Do not output any message]]></help>
  2825. </option>
  2826. <option name="--verbose" shortcut="-v">
  2827. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2828. </option>
  2829. <option name="--version" shortcut="-V">
  2830. <help><![CDATA[Display this application version]]></help>
  2831. </option>
  2832. <option name="--ansi" shortcut="">
  2833. <help><![CDATA[Force ANSI output]]></help>
  2834. </option>
  2835. <option name="--no-ansi" shortcut="">
  2836. <help><![CDATA[Disable ANSI output]]></help>
  2837. </option>
  2838. <option name="--no-interaction" shortcut="-n">
  2839. <help><![CDATA[Do not ask any interactive question]]></help>
  2840. </option>
  2841. <option name="--env" shortcut="" pattern="equals">
  2842. <help><![CDATA[The environment the command should run under]]></help>
  2843. </option>
  2844. </optionsBefore>
  2845. </command>
  2846. <command>
  2847. <name>vendor:publish</name>
  2848. <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 this help message</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>
  2849. <optionsBefore>
  2850. <option name="--force" shortcut="">
  2851. <help><![CDATA[Overwrite any existing files]]></help>
  2852. </option>
  2853. <option name="--all" shortcut="">
  2854. <help><![CDATA[Publish assets for all service providers without prompt]]></help>
  2855. </option>
  2856. <option name="--provider" shortcut="" pattern="equals">
  2857. <help><![CDATA[The service provider that has assets you want to publish]]></help>
  2858. </option>
  2859. <option name="--tag" shortcut="" pattern="equals">
  2860. <help><![CDATA[One or many tags that have assets you want to publish]]></help>
  2861. </option>
  2862. <option name="--help" shortcut="-h">
  2863. <help><![CDATA[Display this help message]]></help>
  2864. </option>
  2865. <option name="--quiet" shortcut="-q">
  2866. <help><![CDATA[Do not output any message]]></help>
  2867. </option>
  2868. <option name="--verbose" shortcut="-v">
  2869. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2870. </option>
  2871. <option name="--version" shortcut="-V">
  2872. <help><![CDATA[Display this application version]]></help>
  2873. </option>
  2874. <option name="--ansi" shortcut="">
  2875. <help><![CDATA[Force ANSI output]]></help>
  2876. </option>
  2877. <option name="--no-ansi" shortcut="">
  2878. <help><![CDATA[Disable ANSI output]]></help>
  2879. </option>
  2880. <option name="--no-interaction" shortcut="-n">
  2881. <help><![CDATA[Do not ask any interactive question]]></help>
  2882. </option>
  2883. <option name="--env" shortcut="" pattern="equals">
  2884. <help><![CDATA[The environment the command should run under]]></help>
  2885. </option>
  2886. </optionsBefore>
  2887. </command>
  2888. <command>
  2889. <name>view:cache</name>
  2890. <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 this help message</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>
  2891. <optionsBefore>
  2892. <option name="--help" shortcut="-h">
  2893. <help><![CDATA[Display this help message]]></help>
  2894. </option>
  2895. <option name="--quiet" shortcut="-q">
  2896. <help><![CDATA[Do not output any message]]></help>
  2897. </option>
  2898. <option name="--verbose" shortcut="-v">
  2899. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2900. </option>
  2901. <option name="--version" shortcut="-V">
  2902. <help><![CDATA[Display this application version]]></help>
  2903. </option>
  2904. <option name="--ansi" shortcut="">
  2905. <help><![CDATA[Force ANSI output]]></help>
  2906. </option>
  2907. <option name="--no-ansi" shortcut="">
  2908. <help><![CDATA[Disable ANSI output]]></help>
  2909. </option>
  2910. <option name="--no-interaction" shortcut="-n">
  2911. <help><![CDATA[Do not ask any interactive question]]></help>
  2912. </option>
  2913. <option name="--env" shortcut="" pattern="equals">
  2914. <help><![CDATA[The environment the command should run under]]></help>
  2915. </option>
  2916. </optionsBefore>
  2917. </command>
  2918. <command>
  2919. <name>view:clear</name>
  2920. <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 this help message</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>
  2921. <optionsBefore>
  2922. <option name="--help" shortcut="-h">
  2923. <help><![CDATA[Display this help message]]></help>
  2924. </option>
  2925. <option name="--quiet" shortcut="-q">
  2926. <help><![CDATA[Do not output any message]]></help>
  2927. </option>
  2928. <option name="--verbose" shortcut="-v">
  2929. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2930. </option>
  2931. <option name="--version" shortcut="-V">
  2932. <help><![CDATA[Display this application version]]></help>
  2933. </option>
  2934. <option name="--ansi" shortcut="">
  2935. <help><![CDATA[Force ANSI output]]></help>
  2936. </option>
  2937. <option name="--no-ansi" shortcut="">
  2938. <help><![CDATA[Disable ANSI output]]></help>
  2939. </option>
  2940. <option name="--no-interaction" shortcut="-n">
  2941. <help><![CDATA[Do not ask any interactive question]]></help>
  2942. </option>
  2943. <option name="--env" shortcut="" pattern="equals">
  2944. <help><![CDATA[The environment the command should run under]]></help>
  2945. </option>
  2946. </optionsBefore>
  2947. </command>
  2948. </framework>