Laravel_2023_7_14_4_15.xml 355 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923
  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_2023/7/14 下午4:15" invoke="/Users/swdz/Documents/swdz/new_api/artisan" alias="artisan" enabled="true" version="2">
  3. <extraData><![CDATA[version:3]]></extraData>
  4. <command>
  5. <name>_complete</name>
  6. <help><![CDATA[Internal command to provide shell completion suggestions<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--shell</td><td>(-s)</td><td>The shell type ("bash")</td></tr> <tr><td>--input</td><td>(-i)</td><td>An array of input tokens (e.g. COMP_WORDS or argv)</td></tr> <tr><td>--current</td><td>(-c)</td><td>The index of the "input" array that the cursor is in (e.g. COMP_CWORD)</td></tr> <tr><td>--symfony</td><td>(-S)</td><td>The version of the completion script</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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="--shell" shortcut="-s" pattern="equals">
  9. <help><![CDATA[The shell type ("bash")]]></help>
  10. </option>
  11. <option name="--input" shortcut="-i" pattern="equals">
  12. <help><![CDATA[An array of input tokens (e.g. COMP_WORDS or argv)]]></help>
  13. </option>
  14. <option name="--current" shortcut="-c" pattern="equals">
  15. <help><![CDATA[The index of the "input" array that the cursor is in (e.g. COMP_CWORD)]]></help>
  16. </option>
  17. <option name="--symfony" shortcut="-S" pattern="equals">
  18. <help><![CDATA[The version of the completion script]]></help>
  19. </option>
  20. <option name="--help" shortcut="-h">
  21. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  22. </option>
  23. <option name="--quiet" shortcut="-q">
  24. <help><![CDATA[Do not output any message]]></help>
  25. </option>
  26. <option name="--verbose" shortcut="-v">
  27. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  28. </option>
  29. <option name="--version" shortcut="-V">
  30. <help><![CDATA[Display this application version]]></help>
  31. </option>
  32. <option name="--ansi" shortcut="">
  33. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  34. </option>
  35. <option name="--no-ansi" shortcut="">
  36. <help><![CDATA[Negate the "--ansi" option]]></help>
  37. </option>
  38. <option name="--no-interaction" shortcut="-n">
  39. <help><![CDATA[Do not ask any interactive question]]></help>
  40. </option>
  41. <option name="--env" shortcut="" pattern="equals">
  42. <help><![CDATA[The environment the command should run under]]></help>
  43. </option>
  44. </optionsBefore>
  45. </command>
  46. <command>
  47. <name>admin</name>
  48. <help><![CDATA[List all admin commands<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  49. <optionsBefore>
  50. <option name="--help" shortcut="-h">
  51. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  52. </option>
  53. <option name="--quiet" shortcut="-q">
  54. <help><![CDATA[Do not output any message]]></help>
  55. </option>
  56. <option name="--verbose" shortcut="-v">
  57. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  58. </option>
  59. <option name="--version" shortcut="-V">
  60. <help><![CDATA[Display this application version]]></help>
  61. </option>
  62. <option name="--ansi" shortcut="">
  63. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  64. </option>
  65. <option name="--no-ansi" shortcut="">
  66. <help><![CDATA[Negate the "--ansi" option]]></help>
  67. </option>
  68. <option name="--no-interaction" shortcut="-n">
  69. <help><![CDATA[Do not ask any interactive question]]></help>
  70. </option>
  71. <option name="--env" shortcut="" pattern="equals">
  72. <help><![CDATA[The environment the command should run under]]></help>
  73. </option>
  74. </optionsBefore>
  75. </command>
  76. <command>
  77. <name>clear-compiled</name>
  78. <help><![CDATA[Remove the compiled class file<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  79. <optionsBefore>
  80. <option name="--help" shortcut="-h">
  81. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  82. </option>
  83. <option name="--quiet" shortcut="-q">
  84. <help><![CDATA[Do not output any message]]></help>
  85. </option>
  86. <option name="--verbose" shortcut="-v">
  87. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  88. </option>
  89. <option name="--version" shortcut="-V">
  90. <help><![CDATA[Display this application version]]></help>
  91. </option>
  92. <option name="--ansi" shortcut="">
  93. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  94. </option>
  95. <option name="--no-ansi" shortcut="">
  96. <help><![CDATA[Negate the "--ansi" option]]></help>
  97. </option>
  98. <option name="--no-interaction" shortcut="-n">
  99. <help><![CDATA[Do not ask any interactive question]]></help>
  100. </option>
  101. <option name="--env" shortcut="" pattern="equals">
  102. <help><![CDATA[The environment the command should run under]]></help>
  103. </option>
  104. </optionsBefore>
  105. </command>
  106. <command>
  107. <name>completion</name>
  108. <help><![CDATA[The <b>completion</> command dumps the shell completion script required<br> to use shell autocompletion (currently only bash completion is supported).<br> <br> <comment>Static installation<br> -------------------</><br> <br> Dump the script to a global completion file and restart your shell:<br> <br> <b>/Users/swdz/Documents/swdz/new_api/artisan completion bash | sudo tee /etc/bash_completion.d/artisan</><br> <br> Or dump the script to a local file and source it:<br> <br> <b>/Users/swdz/Documents/swdz/new_api/artisan completion bash > completion.sh</><br> <br> <comment># source the file whenever you use the project</><br> <b>source completion.sh</><br> <br> <comment># or add this line at the end of your "~/.bashrc" file:</><br> <b>source /path/to/completion.sh</><br> <br> <comment>Dynamic installation<br> --------------------</><br> <br> Add this to the end of your shell configuration file (e.g. <b>"~/.bashrc"</>):<br> <br> <b>eval "$(/Users/swdz/Documents/swdz/new_api/artisan completion bash)"</><br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--debug</td><td></td><td>Tail the completion debug log</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  109. <params>shell[=null]</params>
  110. <optionsBefore>
  111. <option name="--debug" shortcut="">
  112. <help><![CDATA[Tail the completion debug log]]></help>
  113. </option>
  114. <option name="--help" shortcut="-h">
  115. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  116. </option>
  117. <option name="--quiet" shortcut="-q">
  118. <help><![CDATA[Do not output any message]]></help>
  119. </option>
  120. <option name="--verbose" shortcut="-v">
  121. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  122. </option>
  123. <option name="--version" shortcut="-V">
  124. <help><![CDATA[Display this application version]]></help>
  125. </option>
  126. <option name="--ansi" shortcut="">
  127. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  128. </option>
  129. <option name="--no-ansi" shortcut="">
  130. <help><![CDATA[Negate the "--ansi" option]]></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>db</name>
  142. <help><![CDATA[Start a new database CLI session<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--read</td><td></td><td>Connect to the read connection</td></tr> <tr><td>--write</td><td></td><td>Connect to the write connection</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>connection[=null]</params>
  144. <optionsBefore>
  145. <option name="--read" shortcut="">
  146. <help><![CDATA[Connect to the read connection]]></help>
  147. </option>
  148. <option name="--write" shortcut="">
  149. <help><![CDATA[Connect to the write connection]]></help>
  150. </option>
  151. <option name="--help" shortcut="-h">
  152. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  153. </option>
  154. <option name="--quiet" shortcut="-q">
  155. <help><![CDATA[Do not output any message]]></help>
  156. </option>
  157. <option name="--verbose" shortcut="-v">
  158. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  159. </option>
  160. <option name="--version" shortcut="-V">
  161. <help><![CDATA[Display this application version]]></help>
  162. </option>
  163. <option name="--ansi" shortcut="">
  164. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  165. </option>
  166. <option name="--no-ansi" shortcut="">
  167. <help><![CDATA[Negate the "--ansi" option]]></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>down</name>
  179. <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>--refresh</td><td></td><td>The number of seconds after which the browser may refresh</td></tr> <tr><td>--secret</td><td></td><td>The secret phrase that may be used to bypass maintenance mode</td></tr> <tr><td>--status</td><td></td><td>The status code that should be used when returning the maintenance mode response</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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="--redirect" shortcut="" pattern="equals">
  182. <help><![CDATA[The path that users should be redirected to]]></help>
  183. </option>
  184. <option name="--render" shortcut="" pattern="equals">
  185. <help><![CDATA[The view that should be prerendered for display during maintenance mode]]></help>
  186. </option>
  187. <option name="--retry" shortcut="" pattern="equals">
  188. <help><![CDATA[The number of seconds after which the request may be retried]]></help>
  189. </option>
  190. <option name="--refresh" shortcut="" pattern="equals">
  191. <help><![CDATA[The number of seconds after which the browser may refresh]]></help>
  192. </option>
  193. <option name="--secret" shortcut="" pattern="equals">
  194. <help><![CDATA[The secret phrase that may be used to bypass maintenance mode]]></help>
  195. </option>
  196. <option name="--status" shortcut="" pattern="equals">
  197. <help><![CDATA[The status code that should be used when returning the maintenance mode response]]></help>
  198. </option>
  199. <option name="--help" shortcut="-h">
  200. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  201. </option>
  202. <option name="--quiet" shortcut="-q">
  203. <help><![CDATA[Do not output any message]]></help>
  204. </option>
  205. <option name="--verbose" shortcut="-v">
  206. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  207. </option>
  208. <option name="--version" shortcut="-V">
  209. <help><![CDATA[Display this application version]]></help>
  210. </option>
  211. <option name="--ansi" shortcut="">
  212. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  213. </option>
  214. <option name="--no-ansi" shortcut="">
  215. <help><![CDATA[Negate the "--ansi" option]]></help>
  216. </option>
  217. <option name="--no-interaction" shortcut="-n">
  218. <help><![CDATA[Do not ask any interactive question]]></help>
  219. </option>
  220. <option name="--env" shortcut="" pattern="equals">
  221. <help><![CDATA[The environment the command should run under]]></help>
  222. </option>
  223. </optionsBefore>
  224. </command>
  225. <command>
  226. <name>env</name>
  227. <help><![CDATA[Display the current framework environment<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  228. <optionsBefore>
  229. <option name="--help" shortcut="-h">
  230. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  231. </option>
  232. <option name="--quiet" shortcut="-q">
  233. <help><![CDATA[Do not output any message]]></help>
  234. </option>
  235. <option name="--verbose" shortcut="-v">
  236. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  237. </option>
  238. <option name="--version" shortcut="-V">
  239. <help><![CDATA[Display this application version]]></help>
  240. </option>
  241. <option name="--ansi" shortcut="">
  242. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  243. </option>
  244. <option name="--no-ansi" shortcut="">
  245. <help><![CDATA[Negate the "--ansi" option]]></help>
  246. </option>
  247. <option name="--no-interaction" shortcut="-n">
  248. <help><![CDATA[Do not ask any interactive question]]></help>
  249. </option>
  250. <option name="--env" shortcut="" pattern="equals">
  251. <help><![CDATA[The environment the command should run under]]></help>
  252. </option>
  253. </optionsBefore>
  254. </command>
  255. <command>
  256. <name>help</name>
  257. <help><![CDATA[The <b>help</b> command displays help for a given command:<br> <br> <b>/Users/swdz/Documents/swdz/new_api/artisan help list</b><br> <br> You can also output the help in other formats by using the <comment>--format</comment> option:<br> <br> <b>/Users/swdz/Documents/swdz/new_api/artisan help --format=xml list</b><br> <br> To display the list of available commands, please use the <b>list</b> command.<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--format</td><td></td><td>The output format (txt, xml, json, or md)</td></tr> <tr><td>--raw</td><td></td><td>To output raw command help</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  258. <params>command_name[=null]</params>
  259. <optionsBefore>
  260. <option name="--format" shortcut="" pattern="equals">
  261. <help><![CDATA[The output format (txt, xml, json, or md)]]></help>
  262. </option>
  263. <option name="--raw" shortcut="">
  264. <help><![CDATA[To output raw command help]]></help>
  265. </option>
  266. <option name="--help" shortcut="-h">
  267. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  268. </option>
  269. <option name="--quiet" shortcut="-q">
  270. <help><![CDATA[Do not output any message]]></help>
  271. </option>
  272. <option name="--verbose" shortcut="-v">
  273. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  274. </option>
  275. <option name="--version" shortcut="-V">
  276. <help><![CDATA[Display this application version]]></help>
  277. </option>
  278. <option name="--ansi" shortcut="">
  279. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  280. </option>
  281. <option name="--no-ansi" shortcut="">
  282. <help><![CDATA[Negate the "--ansi" option]]></help>
  283. </option>
  284. <option name="--no-interaction" shortcut="-n">
  285. <help><![CDATA[Do not ask any interactive question]]></help>
  286. </option>
  287. <option name="--env" shortcut="" pattern="equals">
  288. <help><![CDATA[The environment the command should run under]]></help>
  289. </option>
  290. </optionsBefore>
  291. </command>
  292. <command>
  293. <name>inspire</name>
  294. <help><![CDATA[Display an inspiring quote<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  295. <optionsBefore>
  296. <option name="--help" shortcut="-h">
  297. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  298. </option>
  299. <option name="--quiet" shortcut="-q">
  300. <help><![CDATA[Do not output any message]]></help>
  301. </option>
  302. <option name="--verbose" shortcut="-v">
  303. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  304. </option>
  305. <option name="--version" shortcut="-V">
  306. <help><![CDATA[Display this application version]]></help>
  307. </option>
  308. <option name="--ansi" shortcut="">
  309. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  310. </option>
  311. <option name="--no-ansi" shortcut="">
  312. <help><![CDATA[Negate the "--ansi" option]]></help>
  313. </option>
  314. <option name="--no-interaction" shortcut="-n">
  315. <help><![CDATA[Do not ask any interactive question]]></help>
  316. </option>
  317. <option name="--env" shortcut="" pattern="equals">
  318. <help><![CDATA[The environment the command should run under]]></help>
  319. </option>
  320. </optionsBefore>
  321. </command>
  322. <command>
  323. <name>list</name>
  324. <help><![CDATA[The <b>list</b> command lists all commands:<br> <br> <b>/Users/swdz/Documents/swdz/new_api/artisan list</b><br> <br> You can also display the commands for a specific namespace:<br> <br> <b>/Users/swdz/Documents/swdz/new_api/artisan list test</b><br> <br> You can also output the information in other formats by using the <comment>--format</comment> option:<br> <br> <b>/Users/swdz/Documents/swdz/new_api/artisan list --format=xml</b><br> <br> It's also possible to get raw list of commands (useful for embedding command runner):<br> <br> <b>/Users/swdz/Documents/swdz/new_api/artisan list --raw</b><br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--raw</td><td></td><td>To output raw command list</td></tr> <tr><td>--format</td><td></td><td>The output format (txt, xml, json, or md)</td></tr> <tr><td>--short</td><td></td><td>To skip describing commands' arguments</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  325. <params>namespace[=null]</params>
  326. <optionsBefore>
  327. <option name="--raw" shortcut="">
  328. <help><![CDATA[To output raw command list]]></help>
  329. </option>
  330. <option name="--format" shortcut="" pattern="equals">
  331. <help><![CDATA[The output format (txt, xml, json, or md)]]></help>
  332. </option>
  333. <option name="--short" shortcut="">
  334. <help><![CDATA[To skip describing commands' arguments]]></help>
  335. </option>
  336. <option name="--help" shortcut="-h">
  337. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  338. </option>
  339. <option name="--quiet" shortcut="-q">
  340. <help><![CDATA[Do not output any message]]></help>
  341. </option>
  342. <option name="--verbose" shortcut="-v">
  343. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  344. </option>
  345. <option name="--version" shortcut="-V">
  346. <help><![CDATA[Display this application version]]></help>
  347. </option>
  348. <option name="--ansi" shortcut="">
  349. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  350. </option>
  351. <option name="--no-ansi" shortcut="">
  352. <help><![CDATA[Negate the "--ansi" option]]></help>
  353. </option>
  354. <option name="--no-interaction" shortcut="-n">
  355. <help><![CDATA[Do not ask any interactive question]]></help>
  356. </option>
  357. <option name="--env" shortcut="" pattern="equals">
  358. <help><![CDATA[The environment the command should run under]]></help>
  359. </option>
  360. </optionsBefore>
  361. </command>
  362. <command>
  363. <name>migrate</name>
  364. <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>--seeder</td><td></td><td>The class name of the root seeder</td></tr> <tr><td>--step</td><td></td><td>Force the migrations to be run so they can be rolled back individually</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  365. <optionsBefore>
  366. <option name="--database" shortcut="" pattern="equals">
  367. <help><![CDATA[The database connection to use]]></help>
  368. </option>
  369. <option name="--force" shortcut="">
  370. <help><![CDATA[Force the operation to run when in production]]></help>
  371. </option>
  372. <option name="--path" shortcut="" pattern="equals">
  373. <help><![CDATA[The path(s) to the migrations files to be executed]]></help>
  374. </option>
  375. <option name="--realpath" shortcut="">
  376. <help><![CDATA[Indicate any provided migration file paths are pre-resolved absolute paths]]></help>
  377. </option>
  378. <option name="--schema-path" shortcut="" pattern="equals">
  379. <help><![CDATA[The path to a schema dump file]]></help>
  380. </option>
  381. <option name="--pretend" shortcut="">
  382. <help><![CDATA[Dump the SQL queries that would be run]]></help>
  383. </option>
  384. <option name="--seed" shortcut="">
  385. <help><![CDATA[Indicates if the seed task should be re-run]]></help>
  386. </option>
  387. <option name="--seeder" shortcut="" pattern="equals">
  388. <help><![CDATA[The class name of the root seeder]]></help>
  389. </option>
  390. <option name="--step" shortcut="">
  391. <help><![CDATA[Force the migrations to be run so they can be rolled back individually]]></help>
  392. </option>
  393. <option name="--help" shortcut="-h">
  394. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  395. </option>
  396. <option name="--quiet" shortcut="-q">
  397. <help><![CDATA[Do not output any message]]></help>
  398. </option>
  399. <option name="--verbose" shortcut="-v">
  400. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  401. </option>
  402. <option name="--version" shortcut="-V">
  403. <help><![CDATA[Display this application version]]></help>
  404. </option>
  405. <option name="--ansi" shortcut="">
  406. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  407. </option>
  408. <option name="--no-ansi" shortcut="">
  409. <help><![CDATA[Negate the "--ansi" option]]></help>
  410. </option>
  411. <option name="--no-interaction" shortcut="-n">
  412. <help><![CDATA[Do not ask any interactive question]]></help>
  413. </option>
  414. <option name="--env" shortcut="" pattern="equals">
  415. <help><![CDATA[The environment the command should run under]]></help>
  416. </option>
  417. </optionsBefore>
  418. </command>
  419. <command>
  420. <name>optimize</name>
  421. <help><![CDATA[Cache the framework bootstrap files<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  422. <optionsBefore>
  423. <option name="--help" shortcut="-h">
  424. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  425. </option>
  426. <option name="--quiet" shortcut="-q">
  427. <help><![CDATA[Do not output any message]]></help>
  428. </option>
  429. <option name="--verbose" shortcut="-v">
  430. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  431. </option>
  432. <option name="--version" shortcut="-V">
  433. <help><![CDATA[Display this application version]]></help>
  434. </option>
  435. <option name="--ansi" shortcut="">
  436. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  437. </option>
  438. <option name="--no-ansi" shortcut="">
  439. <help><![CDATA[Negate the "--ansi" option]]></help>
  440. </option>
  441. <option name="--no-interaction" shortcut="-n">
  442. <help><![CDATA[Do not ask any interactive question]]></help>
  443. </option>
  444. <option name="--env" shortcut="" pattern="equals">
  445. <help><![CDATA[The environment the command should run under]]></help>
  446. </option>
  447. </optionsBefore>
  448. </command>
  449. <command>
  450. <name>serve</name>
  451. <help><![CDATA[Serve the application on the PHP development server<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--host</td><td></td><td>The host address to serve the application on</td></tr> <tr><td>--port</td><td></td><td>The port to serve the application on</td></tr> <tr><td>--tries</td><td></td><td>The max number of ports to attempt to serve from</td></tr> <tr><td>--no-reload</td><td></td><td>Do not reload the development server on .env file changes</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  452. <optionsBefore>
  453. <option name="--host" shortcut="" pattern="equals">
  454. <help><![CDATA[The host address to serve the application on]]></help>
  455. </option>
  456. <option name="--port" shortcut="" pattern="equals">
  457. <help><![CDATA[The port to serve the application on]]></help>
  458. </option>
  459. <option name="--tries" shortcut="" pattern="equals">
  460. <help><![CDATA[The max number of ports to attempt to serve from]]></help>
  461. </option>
  462. <option name="--no-reload" shortcut="">
  463. <help><![CDATA[Do not reload the development server on .env file changes]]></help>
  464. </option>
  465. <option name="--help" shortcut="-h">
  466. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  467. </option>
  468. <option name="--quiet" shortcut="-q">
  469. <help><![CDATA[Do not output any message]]></help>
  470. </option>
  471. <option name="--verbose" shortcut="-v">
  472. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  473. </option>
  474. <option name="--version" shortcut="-V">
  475. <help><![CDATA[Display this application version]]></help>
  476. </option>
  477. <option name="--ansi" shortcut="">
  478. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  479. </option>
  480. <option name="--no-ansi" shortcut="">
  481. <help><![CDATA[Negate the "--ansi" option]]></help>
  482. </option>
  483. <option name="--no-interaction" shortcut="-n">
  484. <help><![CDATA[Do not ask any interactive question]]></help>
  485. </option>
  486. <option name="--env" shortcut="" pattern="equals">
  487. <help><![CDATA[The environment the command should run under]]></help>
  488. </option>
  489. </optionsBefore>
  490. </command>
  491. <command>
  492. <name>test</name>
  493. <help><![CDATA[Run the application tests<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--without-tty</td><td></td><td>Disable output to TTY</td></tr> <tr><td>--parallel</td><td>(-p)</td><td>Indicates if the tests should run in parallel</td></tr> <tr><td>--recreate-databases</td><td></td><td>Indicates if the test databases should be re-created</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  494. <optionsBefore>
  495. <option name="--without-tty" shortcut="">
  496. <help><![CDATA[Disable output to TTY]]></help>
  497. </option>
  498. <option name="--parallel" shortcut="-p">
  499. <help><![CDATA[Indicates if the tests should run in parallel]]></help>
  500. </option>
  501. <option name="--recreate-databases" shortcut="">
  502. <help><![CDATA[Indicates if the test databases should be re-created]]></help>
  503. </option>
  504. <option name="--help" shortcut="-h">
  505. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  506. </option>
  507. <option name="--quiet" shortcut="-q">
  508. <help><![CDATA[Do not output any message]]></help>
  509. </option>
  510. <option name="--verbose" shortcut="-v">
  511. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  512. </option>
  513. <option name="--version" shortcut="-V">
  514. <help><![CDATA[Display this application version]]></help>
  515. </option>
  516. <option name="--ansi" shortcut="">
  517. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  518. </option>
  519. <option name="--no-ansi" shortcut="">
  520. <help><![CDATA[Negate the "--ansi" option]]></help>
  521. </option>
  522. <option name="--no-interaction" shortcut="-n">
  523. <help><![CDATA[Do not ask any interactive question]]></help>
  524. </option>
  525. <option name="--env" shortcut="" pattern="equals">
  526. <help><![CDATA[The environment the command should run under]]></help>
  527. </option>
  528. </optionsBefore>
  529. </command>
  530. <command>
  531. <name>tinker</name>
  532. <help><![CDATA[Interact with your application<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--execute</td><td></td><td>Execute the given code using Tinker</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  533. <params>include[=null]</params>
  534. <optionsBefore>
  535. <option name="--execute" shortcut="" pattern="equals">
  536. <help><![CDATA[Execute the given code using Tinker]]></help>
  537. </option>
  538. <option name="--help" shortcut="-h">
  539. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  540. </option>
  541. <option name="--quiet" shortcut="-q">
  542. <help><![CDATA[Do not output any message]]></help>
  543. </option>
  544. <option name="--verbose" shortcut="-v">
  545. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  546. </option>
  547. <option name="--version" shortcut="-V">
  548. <help><![CDATA[Display this application version]]></help>
  549. </option>
  550. <option name="--ansi" shortcut="">
  551. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  552. </option>
  553. <option name="--no-ansi" shortcut="">
  554. <help><![CDATA[Negate the "--ansi" option]]></help>
  555. </option>
  556. <option name="--no-interaction" shortcut="-n">
  557. <help><![CDATA[Do not ask any interactive question]]></help>
  558. </option>
  559. <option name="--env" shortcut="" pattern="equals">
  560. <help><![CDATA[The environment the command should run under]]></help>
  561. </option>
  562. </optionsBefore>
  563. </command>
  564. <command>
  565. <name>up</name>
  566. <help><![CDATA[Bring the application out of maintenance mode<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  567. <optionsBefore>
  568. <option name="--help" shortcut="-h">
  569. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  570. </option>
  571. <option name="--quiet" shortcut="-q">
  572. <help><![CDATA[Do not output any message]]></help>
  573. </option>
  574. <option name="--verbose" shortcut="-v">
  575. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  576. </option>
  577. <option name="--version" shortcut="-V">
  578. <help><![CDATA[Display this application version]]></help>
  579. </option>
  580. <option name="--ansi" shortcut="">
  581. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  582. </option>
  583. <option name="--no-ansi" shortcut="">
  584. <help><![CDATA[Negate the "--ansi" option]]></help>
  585. </option>
  586. <option name="--no-interaction" shortcut="-n">
  587. <help><![CDATA[Do not ask any interactive question]]></help>
  588. </option>
  589. <option name="--env" shortcut="" pattern="equals">
  590. <help><![CDATA[The environment the command should run under]]></help>
  591. </option>
  592. </optionsBefore>
  593. </command>
  594. <command>
  595. <name>admin:action</name>
  596. <help><![CDATA[Make a admin action<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  597. <optionsBefore>
  598. <option name="--help" shortcut="-h">
  599. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  600. </option>
  601. <option name="--quiet" shortcut="-q">
  602. <help><![CDATA[Do not output any message]]></help>
  603. </option>
  604. <option name="--verbose" shortcut="-v">
  605. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  606. </option>
  607. <option name="--version" shortcut="-V">
  608. <help><![CDATA[Display this application version]]></help>
  609. </option>
  610. <option name="--ansi" shortcut="">
  611. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  612. </option>
  613. <option name="--no-ansi" shortcut="">
  614. <help><![CDATA[Negate the "--ansi" option]]></help>
  615. </option>
  616. <option name="--no-interaction" shortcut="-n">
  617. <help><![CDATA[Do not ask any interactive question]]></help>
  618. </option>
  619. <option name="--env" shortcut="" pattern="equals">
  620. <help><![CDATA[The environment the command should run under]]></help>
  621. </option>
  622. </optionsBefore>
  623. </command>
  624. <command>
  625. <name>admin:app</name>
  626. <help><![CDATA[Create new application<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  627. <params>name</params>
  628. <optionsBefore>
  629. <option name="--help" shortcut="-h">
  630. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  631. </option>
  632. <option name="--quiet" shortcut="-q">
  633. <help><![CDATA[Do not output any message]]></help>
  634. </option>
  635. <option name="--verbose" shortcut="-v">
  636. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  637. </option>
  638. <option name="--version" shortcut="-V">
  639. <help><![CDATA[Display this application version]]></help>
  640. </option>
  641. <option name="--ansi" shortcut="">
  642. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  643. </option>
  644. <option name="--no-ansi" shortcut="">
  645. <help><![CDATA[Negate the "--ansi" option]]></help>
  646. </option>
  647. <option name="--no-interaction" shortcut="-n">
  648. <help><![CDATA[Do not ask any interactive question]]></help>
  649. </option>
  650. <option name="--env" shortcut="" pattern="equals">
  651. <help><![CDATA[The environment the command should run under]]></help>
  652. </option>
  653. </optionsBefore>
  654. </command>
  655. <command>
  656. <name>admin:create-user</name>
  657. <help><![CDATA[Create a admin user<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  658. <optionsBefore>
  659. <option name="--help" shortcut="-h">
  660. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  661. </option>
  662. <option name="--quiet" shortcut="-q">
  663. <help><![CDATA[Do not output any message]]></help>
  664. </option>
  665. <option name="--verbose" shortcut="-v">
  666. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  667. </option>
  668. <option name="--version" shortcut="-V">
  669. <help><![CDATA[Display this application version]]></help>
  670. </option>
  671. <option name="--ansi" shortcut="">
  672. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  673. </option>
  674. <option name="--no-ansi" shortcut="">
  675. <help><![CDATA[Negate the "--ansi" option]]></help>
  676. </option>
  677. <option name="--no-interaction" shortcut="-n">
  678. <help><![CDATA[Do not ask any interactive question]]></help>
  679. </option>
  680. <option name="--env" shortcut="" pattern="equals">
  681. <help><![CDATA[The environment the command should run under]]></help>
  682. </option>
  683. </optionsBefore>
  684. </command>
  685. <command>
  686. <name>admin:export-seed</name>
  687. <help><![CDATA[Export seed a dcat-admin database tables menu, roles and permissions<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--users</td><td></td><td>add to seed users tables</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  688. <params>classname[=null]</params>
  689. <optionsBefore>
  690. <option name="--users" shortcut="">
  691. <help><![CDATA[add to seed users tables]]></help>
  692. </option>
  693. <option name="--help" shortcut="-h">
  694. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  695. </option>
  696. <option name="--quiet" shortcut="-q">
  697. <help><![CDATA[Do not output any message]]></help>
  698. </option>
  699. <option name="--verbose" shortcut="-v">
  700. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  701. </option>
  702. <option name="--version" shortcut="-V">
  703. <help><![CDATA[Display this application version]]></help>
  704. </option>
  705. <option name="--ansi" shortcut="">
  706. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  707. </option>
  708. <option name="--no-ansi" shortcut="">
  709. <help><![CDATA[Negate the "--ansi" option]]></help>
  710. </option>
  711. <option name="--no-interaction" shortcut="-n">
  712. <help><![CDATA[Do not ask any interactive question]]></help>
  713. </option>
  714. <option name="--env" shortcut="" pattern="equals">
  715. <help><![CDATA[The environment the command should run under]]></help>
  716. </option>
  717. </optionsBefore>
  718. </command>
  719. <command>
  720. <name>admin:ext-disable</name>
  721. <help><![CDATA[Disable an existing extension<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  722. <params>name</params>
  723. <optionsBefore>
  724. <option name="--help" shortcut="-h">
  725. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  726. </option>
  727. <option name="--quiet" shortcut="-q">
  728. <help><![CDATA[Do not output any message]]></help>
  729. </option>
  730. <option name="--verbose" shortcut="-v">
  731. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  732. </option>
  733. <option name="--version" shortcut="-V">
  734. <help><![CDATA[Display this application version]]></help>
  735. </option>
  736. <option name="--ansi" shortcut="">
  737. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  738. </option>
  739. <option name="--no-ansi" shortcut="">
  740. <help><![CDATA[Negate the "--ansi" option]]></help>
  741. </option>
  742. <option name="--no-interaction" shortcut="-n">
  743. <help><![CDATA[Do not ask any interactive question]]></help>
  744. </option>
  745. <option name="--env" shortcut="" pattern="equals">
  746. <help><![CDATA[The environment the command should run under]]></help>
  747. </option>
  748. </optionsBefore>
  749. </command>
  750. <command>
  751. <name>admin:ext-enable</name>
  752. <help><![CDATA[Enable an existing extension<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  753. <params>name</params>
  754. <optionsBefore>
  755. <option name="--help" shortcut="-h">
  756. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  757. </option>
  758. <option name="--quiet" shortcut="-q">
  759. <help><![CDATA[Do not output any message]]></help>
  760. </option>
  761. <option name="--verbose" shortcut="-v">
  762. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  763. </option>
  764. <option name="--version" shortcut="-V">
  765. <help><![CDATA[Display this application version]]></help>
  766. </option>
  767. <option name="--ansi" shortcut="">
  768. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  769. </option>
  770. <option name="--no-ansi" shortcut="">
  771. <help><![CDATA[Negate the "--ansi" option]]></help>
  772. </option>
  773. <option name="--no-interaction" shortcut="-n">
  774. <help><![CDATA[Do not ask any interactive question]]></help>
  775. </option>
  776. <option name="--env" shortcut="" pattern="equals">
  777. <help><![CDATA[The environment the command should run under]]></help>
  778. </option>
  779. </optionsBefore>
  780. </command>
  781. <command>
  782. <name>admin:ext-install</name>
  783. <help><![CDATA[Install an extension<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--path</td><td></td><td>The path of the extension.</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  784. <params>name</params>
  785. <optionsBefore>
  786. <option name="--path" shortcut="" pattern="equals">
  787. <help><![CDATA[The path of the extension.]]></help>
  788. </option>
  789. <option name="--help" shortcut="-h">
  790. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  791. </option>
  792. <option name="--quiet" shortcut="-q">
  793. <help><![CDATA[Do not output any message]]></help>
  794. </option>
  795. <option name="--verbose" shortcut="-v">
  796. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  797. </option>
  798. <option name="--version" shortcut="-V">
  799. <help><![CDATA[Display this application version]]></help>
  800. </option>
  801. <option name="--ansi" shortcut="">
  802. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  803. </option>
  804. <option name="--no-ansi" shortcut="">
  805. <help><![CDATA[Negate the "--ansi" option]]></help>
  806. </option>
  807. <option name="--no-interaction" shortcut="-n">
  808. <help><![CDATA[Do not ask any interactive question]]></help>
  809. </option>
  810. <option name="--env" shortcut="" pattern="equals">
  811. <help><![CDATA[The environment the command should run under]]></help>
  812. </option>
  813. </optionsBefore>
  814. </command>
  815. <command>
  816. <name>admin:ext-make</name>
  817. <help><![CDATA[Build a dcat-admin extension<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--namespace</td><td></td><td>The namespace of the extension.</td></tr> <tr><td>--theme</td><td></td><td></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  818. <params>name</params>
  819. <optionsBefore>
  820. <option name="--namespace" shortcut="" pattern="equals">
  821. <help><![CDATA[The namespace of the extension.]]></help>
  822. </option>
  823. <option name="--theme" shortcut="" />
  824. <option name="--help" shortcut="-h">
  825. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  826. </option>
  827. <option name="--quiet" shortcut="-q">
  828. <help><![CDATA[Do not output any message]]></help>
  829. </option>
  830. <option name="--verbose" shortcut="-v">
  831. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  832. </option>
  833. <option name="--version" shortcut="-V">
  834. <help><![CDATA[Display this application version]]></help>
  835. </option>
  836. <option name="--ansi" shortcut="">
  837. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  838. </option>
  839. <option name="--no-ansi" shortcut="">
  840. <help><![CDATA[Negate the "--ansi" option]]></help>
  841. </option>
  842. <option name="--no-interaction" shortcut="-n">
  843. <help><![CDATA[Do not ask any interactive question]]></help>
  844. </option>
  845. <option name="--env" shortcut="" pattern="equals">
  846. <help><![CDATA[The environment the command should run under]]></help>
  847. </option>
  848. </optionsBefore>
  849. </command>
  850. <command>
  851. <name>admin:ext-refresh</name>
  852. <help><![CDATA[Removes and re-adds an existing extension<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--path</td><td></td><td>The path of the extension.</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  853. <params>name</params>
  854. <optionsBefore>
  855. <option name="--path" shortcut="" pattern="equals">
  856. <help><![CDATA[The path of the extension.]]></help>
  857. </option>
  858. <option name="--help" shortcut="-h">
  859. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  860. </option>
  861. <option name="--quiet" shortcut="-q">
  862. <help><![CDATA[Do not output any message]]></help>
  863. </option>
  864. <option name="--verbose" shortcut="-v">
  865. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  866. </option>
  867. <option name="--version" shortcut="-V">
  868. <help><![CDATA[Display this application version]]></help>
  869. </option>
  870. <option name="--ansi" shortcut="">
  871. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  872. </option>
  873. <option name="--no-ansi" shortcut="">
  874. <help><![CDATA[Negate the "--ansi" option]]></help>
  875. </option>
  876. <option name="--no-interaction" shortcut="-n">
  877. <help><![CDATA[Do not ask any interactive question]]></help>
  878. </option>
  879. <option name="--env" shortcut="" pattern="equals">
  880. <help><![CDATA[The environment the command should run under]]></help>
  881. </option>
  882. </optionsBefore>
  883. </command>
  884. <command>
  885. <name>admin:ext-rollback</name>
  886. <help><![CDATA[Rollback an existing extension<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--force</td><td></td><td>Force rollback</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  887. <params>name ver</params>
  888. <optionsBefore>
  889. <option name="--force" shortcut="">
  890. <help><![CDATA[Force rollback]]></help>
  891. </option>
  892. <option name="--help" shortcut="-h">
  893. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  894. </option>
  895. <option name="--quiet" shortcut="-q">
  896. <help><![CDATA[Do not output any message]]></help>
  897. </option>
  898. <option name="--verbose" shortcut="-v">
  899. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  900. </option>
  901. <option name="--version" shortcut="-V">
  902. <help><![CDATA[Display this application version]]></help>
  903. </option>
  904. <option name="--ansi" shortcut="">
  905. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  906. </option>
  907. <option name="--no-ansi" shortcut="">
  908. <help><![CDATA[Negate the "--ansi" option]]></help>
  909. </option>
  910. <option name="--no-interaction" shortcut="-n">
  911. <help><![CDATA[Do not ask any interactive question]]></help>
  912. </option>
  913. <option name="--env" shortcut="" pattern="equals">
  914. <help><![CDATA[The environment the command should run under]]></help>
  915. </option>
  916. </optionsBefore>
  917. </command>
  918. <command>
  919. <name>admin:ext-uninstall</name>
  920. <help><![CDATA[Uninstall an existing extension<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  921. <params>name</params>
  922. <optionsBefore>
  923. <option name="--help" shortcut="-h">
  924. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  925. </option>
  926. <option name="--quiet" shortcut="-q">
  927. <help><![CDATA[Do not output any message]]></help>
  928. </option>
  929. <option name="--verbose" shortcut="-v">
  930. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  931. </option>
  932. <option name="--version" shortcut="-V">
  933. <help><![CDATA[Display this application version]]></help>
  934. </option>
  935. <option name="--ansi" shortcut="">
  936. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  937. </option>
  938. <option name="--no-ansi" shortcut="">
  939. <help><![CDATA[Negate the "--ansi" option]]></help>
  940. </option>
  941. <option name="--no-interaction" shortcut="-n">
  942. <help><![CDATA[Do not ask any interactive question]]></help>
  943. </option>
  944. <option name="--env" shortcut="" pattern="equals">
  945. <help><![CDATA[The environment the command should run under]]></help>
  946. </option>
  947. </optionsBefore>
  948. </command>
  949. <command>
  950. <name>admin:ext-update</name>
  951. <help><![CDATA[Update an existing extension<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--ver</td><td></td><td>If this parameter is specified, the process will stop on the specified version, if not, it will update to the latest version. Example: 1.3.9</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  952. <params>name</params>
  953. <optionsBefore>
  954. <option name="--ver" shortcut="" pattern="equals">
  955. <help><![CDATA[If this parameter is specified, the process will stop on the specified version, if not, it will update to the latest version. Example: 1.3.9]]></help>
  956. </option>
  957. <option name="--help" shortcut="-h">
  958. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  959. </option>
  960. <option name="--quiet" shortcut="-q">
  961. <help><![CDATA[Do not output any message]]></help>
  962. </option>
  963. <option name="--verbose" shortcut="-v">
  964. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  965. </option>
  966. <option name="--version" shortcut="-V">
  967. <help><![CDATA[Display this application version]]></help>
  968. </option>
  969. <option name="--ansi" shortcut="">
  970. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  971. </option>
  972. <option name="--no-ansi" shortcut="">
  973. <help><![CDATA[Negate the "--ansi" option]]></help>
  974. </option>
  975. <option name="--no-interaction" shortcut="-n">
  976. <help><![CDATA[Do not ask any interactive question]]></help>
  977. </option>
  978. <option name="--env" shortcut="" pattern="equals">
  979. <help><![CDATA[The environment the command should run under]]></help>
  980. </option>
  981. </optionsBefore>
  982. </command>
  983. <command>
  984. <name>admin:form</name>
  985. <help><![CDATA[Make admin form widget<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--namespace</td><td></td><td></td></tr> <tr><td>--base</td><td></td><td></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  986. <params>name</params>
  987. <optionsBefore>
  988. <option name="--namespace" shortcut="" pattern="equals" />
  989. <option name="--base" shortcut="" pattern="equals" />
  990. <option name="--help" shortcut="-h">
  991. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  992. </option>
  993. <option name="--quiet" shortcut="-q">
  994. <help><![CDATA[Do not output any message]]></help>
  995. </option>
  996. <option name="--verbose" shortcut="-v">
  997. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  998. </option>
  999. <option name="--version" shortcut="-V">
  1000. <help><![CDATA[Display this application version]]></help>
  1001. </option>
  1002. <option name="--ansi" shortcut="">
  1003. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1004. </option>
  1005. <option name="--no-ansi" shortcut="">
  1006. <help><![CDATA[Negate the "--ansi" option]]></help>
  1007. </option>
  1008. <option name="--no-interaction" shortcut="-n">
  1009. <help><![CDATA[Do not ask any interactive question]]></help>
  1010. </option>
  1011. <option name="--env" shortcut="" pattern="equals">
  1012. <help><![CDATA[The environment the command should run under]]></help>
  1013. </option>
  1014. </optionsBefore>
  1015. </command>
  1016. <command>
  1017. <name>admin:ide-helper</name>
  1018. <help><![CDATA[Create the ide-helper file<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--controller</td><td>(-c)</td><td>Controller class.</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1019. <optionsBefore>
  1020. <option name="--controller" shortcut="-c" pattern="equals">
  1021. <help><![CDATA[Controller class.]]></help>
  1022. </option>
  1023. <option name="--help" shortcut="-h">
  1024. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1025. </option>
  1026. <option name="--quiet" shortcut="-q">
  1027. <help><![CDATA[Do not output any message]]></help>
  1028. </option>
  1029. <option name="--verbose" shortcut="-v">
  1030. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1031. </option>
  1032. <option name="--version" shortcut="-V">
  1033. <help><![CDATA[Display this application version]]></help>
  1034. </option>
  1035. <option name="--ansi" shortcut="">
  1036. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1037. </option>
  1038. <option name="--no-ansi" shortcut="">
  1039. <help><![CDATA[Negate the "--ansi" option]]></help>
  1040. </option>
  1041. <option name="--no-interaction" shortcut="-n">
  1042. <help><![CDATA[Do not ask any interactive question]]></help>
  1043. </option>
  1044. <option name="--env" shortcut="" pattern="equals">
  1045. <help><![CDATA[The environment the command should run under]]></help>
  1046. </option>
  1047. </optionsBefore>
  1048. </command>
  1049. <command>
  1050. <name>admin:install</name>
  1051. <help><![CDATA[Install the admin package<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1052. <optionsBefore>
  1053. <option name="--help" shortcut="-h">
  1054. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1055. </option>
  1056. <option name="--quiet" shortcut="-q">
  1057. <help><![CDATA[Do not output any message]]></help>
  1058. </option>
  1059. <option name="--verbose" shortcut="-v">
  1060. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1061. </option>
  1062. <option name="--version" shortcut="-V">
  1063. <help><![CDATA[Display this application version]]></help>
  1064. </option>
  1065. <option name="--ansi" shortcut="">
  1066. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1067. </option>
  1068. <option name="--no-ansi" shortcut="">
  1069. <help><![CDATA[Negate the "--ansi" option]]></help>
  1070. </option>
  1071. <option name="--no-interaction" shortcut="-n">
  1072. <help><![CDATA[Do not ask any interactive question]]></help>
  1073. </option>
  1074. <option name="--env" shortcut="" pattern="equals">
  1075. <help><![CDATA[The environment the command should run under]]></help>
  1076. </option>
  1077. </optionsBefore>
  1078. </command>
  1079. <command>
  1080. <name>admin:menu-cache</name>
  1081. <help><![CDATA[Flush the menu cache<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1082. <optionsBefore>
  1083. <option name="--help" shortcut="-h">
  1084. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1085. </option>
  1086. <option name="--quiet" shortcut="-q">
  1087. <help><![CDATA[Do not output any message]]></help>
  1088. </option>
  1089. <option name="--verbose" shortcut="-v">
  1090. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1091. </option>
  1092. <option name="--version" shortcut="-V">
  1093. <help><![CDATA[Display this application version]]></help>
  1094. </option>
  1095. <option name="--ansi" shortcut="">
  1096. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1097. </option>
  1098. <option name="--no-ansi" shortcut="">
  1099. <help><![CDATA[Negate the "--ansi" option]]></help>
  1100. </option>
  1101. <option name="--no-interaction" shortcut="-n">
  1102. <help><![CDATA[Do not ask any interactive question]]></help>
  1103. </option>
  1104. <option name="--env" shortcut="" pattern="equals">
  1105. <help><![CDATA[The environment the command should run under]]></help>
  1106. </option>
  1107. </optionsBefore>
  1108. </command>
  1109. <command>
  1110. <name>admin:minify</name>
  1111. <help><![CDATA[Minify the CSS and JS<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--color</td><td></td><td>Theme color code</td></tr> <tr><td>--publish</td><td></td><td>Publish assets files</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1112. <params>name</params>
  1113. <optionsBefore>
  1114. <option name="--color" shortcut="" pattern="equals">
  1115. <help><![CDATA[Theme color code]]></help>
  1116. </option>
  1117. <option name="--publish" shortcut="">
  1118. <help><![CDATA[Publish assets files]]></help>
  1119. </option>
  1120. <option name="--help" shortcut="-h">
  1121. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1122. </option>
  1123. <option name="--quiet" shortcut="-q">
  1124. <help><![CDATA[Do not output any message]]></help>
  1125. </option>
  1126. <option name="--verbose" shortcut="-v">
  1127. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1128. </option>
  1129. <option name="--version" shortcut="-V">
  1130. <help><![CDATA[Display this application version]]></help>
  1131. </option>
  1132. <option name="--ansi" shortcut="">
  1133. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1134. </option>
  1135. <option name="--no-ansi" shortcut="">
  1136. <help><![CDATA[Negate the "--ansi" option]]></help>
  1137. </option>
  1138. <option name="--no-interaction" shortcut="-n">
  1139. <help><![CDATA[Do not ask any interactive question]]></help>
  1140. </option>
  1141. <option name="--env" shortcut="" pattern="equals">
  1142. <help><![CDATA[The environment the command should run under]]></help>
  1143. </option>
  1144. </optionsBefore>
  1145. </command>
  1146. <command>
  1147. <name>admin:publish</name>
  1148. <help><![CDATA[Re-publish dcat-admin's assets, configuration, language and migration files. If you want overwrite the existing files, you can add the `--force` option<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>--lang</td><td></td><td>Publish language files</td></tr> <tr><td>--assets</td><td></td><td>Publish assets files</td></tr> <tr><td>--migrations</td><td></td><td>Publish migrations files</td></tr> <tr><td>--config</td><td></td><td>Publish configuration files</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1149. <optionsBefore>
  1150. <option name="--force" shortcut="">
  1151. <help><![CDATA[Overwrite any existing files]]></help>
  1152. </option>
  1153. <option name="--lang" shortcut="">
  1154. <help><![CDATA[Publish language files]]></help>
  1155. </option>
  1156. <option name="--assets" shortcut="">
  1157. <help><![CDATA[Publish assets files]]></help>
  1158. </option>
  1159. <option name="--migrations" shortcut="">
  1160. <help><![CDATA[Publish migrations files]]></help>
  1161. </option>
  1162. <option name="--config" shortcut="">
  1163. <help><![CDATA[Publish configuration files]]></help>
  1164. </option>
  1165. <option name="--help" shortcut="-h">
  1166. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1167. </option>
  1168. <option name="--quiet" shortcut="-q">
  1169. <help><![CDATA[Do not output any message]]></help>
  1170. </option>
  1171. <option name="--verbose" shortcut="-v">
  1172. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1173. </option>
  1174. <option name="--version" shortcut="-V">
  1175. <help><![CDATA[Display this application version]]></help>
  1176. </option>
  1177. <option name="--ansi" shortcut="">
  1178. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1179. </option>
  1180. <option name="--no-ansi" shortcut="">
  1181. <help><![CDATA[Negate the "--ansi" option]]></help>
  1182. </option>
  1183. <option name="--no-interaction" shortcut="-n">
  1184. <help><![CDATA[Do not ask any interactive question]]></help>
  1185. </option>
  1186. <option name="--env" shortcut="" pattern="equals">
  1187. <help><![CDATA[The environment the command should run under]]></help>
  1188. </option>
  1189. </optionsBefore>
  1190. </command>
  1191. <command>
  1192. <name>admin:reset-password</name>
  1193. <help><![CDATA[Reset password for a specific admin user<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1194. <optionsBefore>
  1195. <option name="--help" shortcut="-h">
  1196. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1197. </option>
  1198. <option name="--quiet" shortcut="-q">
  1199. <help><![CDATA[Do not output any message]]></help>
  1200. </option>
  1201. <option name="--verbose" shortcut="-v">
  1202. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1203. </option>
  1204. <option name="--version" shortcut="-V">
  1205. <help><![CDATA[Display this application version]]></help>
  1206. </option>
  1207. <option name="--ansi" shortcut="">
  1208. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1209. </option>
  1210. <option name="--no-ansi" shortcut="">
  1211. <help><![CDATA[Negate the "--ansi" option]]></help>
  1212. </option>
  1213. <option name="--no-interaction" shortcut="-n">
  1214. <help><![CDATA[Do not ask any interactive question]]></help>
  1215. </option>
  1216. <option name="--env" shortcut="" pattern="equals">
  1217. <help><![CDATA[The environment the command should run under]]></help>
  1218. </option>
  1219. </optionsBefore>
  1220. </command>
  1221. <command>
  1222. <name>admin:uninstall</name>
  1223. <help><![CDATA[Uninstall the admin package<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1224. <optionsBefore>
  1225. <option name="--help" shortcut="-h">
  1226. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1227. </option>
  1228. <option name="--quiet" shortcut="-q">
  1229. <help><![CDATA[Do not output any message]]></help>
  1230. </option>
  1231. <option name="--verbose" shortcut="-v">
  1232. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1233. </option>
  1234. <option name="--version" shortcut="-V">
  1235. <help><![CDATA[Display this application version]]></help>
  1236. </option>
  1237. <option name="--ansi" shortcut="">
  1238. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1239. </option>
  1240. <option name="--no-ansi" shortcut="">
  1241. <help><![CDATA[Negate the "--ansi" option]]></help>
  1242. </option>
  1243. <option name="--no-interaction" shortcut="-n">
  1244. <help><![CDATA[Do not ask any interactive question]]></help>
  1245. </option>
  1246. <option name="--env" shortcut="" pattern="equals">
  1247. <help><![CDATA[The environment the command should run under]]></help>
  1248. </option>
  1249. </optionsBefore>
  1250. </command>
  1251. <command>
  1252. <name>admin:update</name>
  1253. <help><![CDATA[Update the admin package<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1254. <optionsBefore>
  1255. <option name="--help" shortcut="-h">
  1256. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1257. </option>
  1258. <option name="--quiet" shortcut="-q">
  1259. <help><![CDATA[Do not output any message]]></help>
  1260. </option>
  1261. <option name="--verbose" shortcut="-v">
  1262. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1263. </option>
  1264. <option name="--version" shortcut="-V">
  1265. <help><![CDATA[Display this application version]]></help>
  1266. </option>
  1267. <option name="--ansi" shortcut="">
  1268. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1269. </option>
  1270. <option name="--no-ansi" shortcut="">
  1271. <help><![CDATA[Negate the "--ansi" option]]></help>
  1272. </option>
  1273. <option name="--no-interaction" shortcut="-n">
  1274. <help><![CDATA[Do not ask any interactive question]]></help>
  1275. </option>
  1276. <option name="--env" shortcut="" pattern="equals">
  1277. <help><![CDATA[The environment the command should run under]]></help>
  1278. </option>
  1279. </optionsBefore>
  1280. </command>
  1281. <command>
  1282. <name>api:cache</name>
  1283. <help><![CDATA[Create a route cache file for faster route registration<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1284. <optionsBefore>
  1285. <option name="--help" shortcut="-h">
  1286. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1287. </option>
  1288. <option name="--quiet" shortcut="-q">
  1289. <help><![CDATA[Do not output any message]]></help>
  1290. </option>
  1291. <option name="--verbose" shortcut="-v">
  1292. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1293. </option>
  1294. <option name="--version" shortcut="-V">
  1295. <help><![CDATA[Display this application version]]></help>
  1296. </option>
  1297. <option name="--ansi" shortcut="">
  1298. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1299. </option>
  1300. <option name="--no-ansi" shortcut="">
  1301. <help><![CDATA[Negate the "--ansi" option]]></help>
  1302. </option>
  1303. <option name="--no-interaction" shortcut="-n">
  1304. <help><![CDATA[Do not ask any interactive question]]></help>
  1305. </option>
  1306. <option name="--env" shortcut="" pattern="equals">
  1307. <help><![CDATA[The environment the command should run under]]></help>
  1308. </option>
  1309. </optionsBefore>
  1310. </command>
  1311. <command>
  1312. <name>api:docs</name>
  1313. <help><![CDATA[Generate API documentation from annotated controllers<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--name</td><td></td><td>Name of the generated documentation</td></tr> <tr><td>--use-version</td><td></td><td>Version of the documentation to be generated</td></tr> <tr><td>--output-file</td><td></td><td>Output the generated documentation to a file</td></tr> <tr><td>--include-path</td><td></td><td>Path where included documentation files are located</td></tr> <tr><td>--use-controller</td><td></td><td>Specify a controller where to generate documentation for</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1314. <optionsBefore>
  1315. <option name="--name" shortcut="" pattern="equals">
  1316. <help><![CDATA[Name of the generated documentation]]></help>
  1317. </option>
  1318. <option name="--use-version" shortcut="" pattern="equals">
  1319. <help><![CDATA[Version of the documentation to be generated]]></help>
  1320. </option>
  1321. <option name="--output-file" shortcut="" pattern="equals">
  1322. <help><![CDATA[Output the generated documentation to a file]]></help>
  1323. </option>
  1324. <option name="--include-path" shortcut="" pattern="equals">
  1325. <help><![CDATA[Path where included documentation files are located]]></help>
  1326. </option>
  1327. <option name="--use-controller" shortcut="" pattern="equals">
  1328. <help><![CDATA[Specify a controller where to generate documentation for]]></help>
  1329. </option>
  1330. <option name="--help" shortcut="-h">
  1331. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1332. </option>
  1333. <option name="--quiet" shortcut="-q">
  1334. <help><![CDATA[Do not output any message]]></help>
  1335. </option>
  1336. <option name="--verbose" shortcut="-v">
  1337. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1338. </option>
  1339. <option name="--version" shortcut="-V">
  1340. <help><![CDATA[Display this application version]]></help>
  1341. </option>
  1342. <option name="--ansi" shortcut="">
  1343. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1344. </option>
  1345. <option name="--no-ansi" shortcut="">
  1346. <help><![CDATA[Negate the "--ansi" option]]></help>
  1347. </option>
  1348. <option name="--no-interaction" shortcut="-n">
  1349. <help><![CDATA[Do not ask any interactive question]]></help>
  1350. </option>
  1351. <option name="--env" shortcut="" pattern="equals">
  1352. <help><![CDATA[The environment the command should run under]]></help>
  1353. </option>
  1354. </optionsBefore>
  1355. </command>
  1356. <command>
  1357. <name>api:routes</name>
  1358. <help><![CDATA[List all registered API 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>Only show routes matching the given path pattern</td></tr> <tr><td>--except-path</td><td></td><td>Do not display the routes matching the given path pattern</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) to sort by</td></tr> <tr><td>--versions</td><td></td><td>Filter the routes by version</td></tr> <tr><td>--scopes</td><td>(-S)</td><td>Filter the routes by scopes</td></tr> <tr><td>--protected</td><td></td><td>Filter the protected routes</td></tr> <tr><td>--unprotected</td><td></td><td>Filter the unprotected routes</td></tr> <tr><td>--short</td><td></td><td>Get an abridged version of the routes</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1359. <optionsBefore>
  1360. <option name="--columns" shortcut="" pattern="equals">
  1361. <help><![CDATA[Columns to include in the route table]]></help>
  1362. </option>
  1363. <option name="--compact" shortcut="-c">
  1364. <help><![CDATA[Only show method, URI and action columns]]></help>
  1365. </option>
  1366. <option name="--json" shortcut="">
  1367. <help><![CDATA[Output the route list as JSON]]></help>
  1368. </option>
  1369. <option name="--method" shortcut="" pattern="equals">
  1370. <help><![CDATA[Filter the routes by method]]></help>
  1371. </option>
  1372. <option name="--name" shortcut="" pattern="equals">
  1373. <help><![CDATA[Filter the routes by name]]></help>
  1374. </option>
  1375. <option name="--path" shortcut="" pattern="equals">
  1376. <help><![CDATA[Only show routes matching the given path pattern]]></help>
  1377. </option>
  1378. <option name="--except-path" shortcut="" pattern="equals">
  1379. <help><![CDATA[Do not display the routes matching the given path pattern]]></help>
  1380. </option>
  1381. <option name="--reverse" shortcut="-r">
  1382. <help><![CDATA[Reverse the ordering of the routes]]></help>
  1383. </option>
  1384. <option name="--sort" shortcut="" pattern="equals">
  1385. <help><![CDATA[The column (domain, method, uri, name, action) to sort by]]></help>
  1386. </option>
  1387. <option name="--versions" shortcut="" pattern="equals">
  1388. <help><![CDATA[Filter the routes by version]]></help>
  1389. </option>
  1390. <option name="--scopes" shortcut="-S" pattern="equals">
  1391. <help><![CDATA[Filter the routes by scopes]]></help>
  1392. </option>
  1393. <option name="--protected" shortcut="">
  1394. <help><![CDATA[Filter the protected routes]]></help>
  1395. </option>
  1396. <option name="--unprotected" shortcut="">
  1397. <help><![CDATA[Filter the unprotected routes]]></help>
  1398. </option>
  1399. <option name="--short" shortcut="">
  1400. <help><![CDATA[Get an abridged version of the routes]]></help>
  1401. </option>
  1402. <option name="--help" shortcut="-h">
  1403. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1404. </option>
  1405. <option name="--quiet" shortcut="-q">
  1406. <help><![CDATA[Do not output any message]]></help>
  1407. </option>
  1408. <option name="--verbose" shortcut="-v">
  1409. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1410. </option>
  1411. <option name="--version" shortcut="-V">
  1412. <help><![CDATA[Display this application version]]></help>
  1413. </option>
  1414. <option name="--ansi" shortcut="">
  1415. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1416. </option>
  1417. <option name="--no-ansi" shortcut="">
  1418. <help><![CDATA[Negate the "--ansi" option]]></help>
  1419. </option>
  1420. <option name="--no-interaction" shortcut="-n">
  1421. <help><![CDATA[Do not ask any interactive question]]></help>
  1422. </option>
  1423. <option name="--env" shortcut="" pattern="equals">
  1424. <help><![CDATA[The environment the command should run under]]></help>
  1425. </option>
  1426. </optionsBefore>
  1427. </command>
  1428. <command>
  1429. <name>auth:clear-resets</name>
  1430. <help><![CDATA[Flush expired password reset tokens<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1431. <params>name[=null]</params>
  1432. <optionsBefore>
  1433. <option name="--help" shortcut="-h">
  1434. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1435. </option>
  1436. <option name="--quiet" shortcut="-q">
  1437. <help><![CDATA[Do not output any message]]></help>
  1438. </option>
  1439. <option name="--verbose" shortcut="-v">
  1440. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1441. </option>
  1442. <option name="--version" shortcut="-V">
  1443. <help><![CDATA[Display this application version]]></help>
  1444. </option>
  1445. <option name="--ansi" shortcut="">
  1446. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1447. </option>
  1448. <option name="--no-ansi" shortcut="">
  1449. <help><![CDATA[Negate the "--ansi" option]]></help>
  1450. </option>
  1451. <option name="--no-interaction" shortcut="-n">
  1452. <help><![CDATA[Do not ask any interactive question]]></help>
  1453. </option>
  1454. <option name="--env" shortcut="" pattern="equals">
  1455. <help><![CDATA[The environment the command should run under]]></help>
  1456. </option>
  1457. </optionsBefore>
  1458. </command>
  1459. <command>
  1460. <name>cache:clear</name>
  1461. <help><![CDATA[Flush the application cache<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--tags</td><td></td><td>The cache tags you would like to clear</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1462. <params>store[=null]</params>
  1463. <optionsBefore>
  1464. <option name="--tags" shortcut="" pattern="equals">
  1465. <help><![CDATA[The cache tags you would like to clear]]></help>
  1466. </option>
  1467. <option name="--help" shortcut="-h">
  1468. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1469. </option>
  1470. <option name="--quiet" shortcut="-q">
  1471. <help><![CDATA[Do not output any message]]></help>
  1472. </option>
  1473. <option name="--verbose" shortcut="-v">
  1474. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1475. </option>
  1476. <option name="--version" shortcut="-V">
  1477. <help><![CDATA[Display this application version]]></help>
  1478. </option>
  1479. <option name="--ansi" shortcut="">
  1480. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1481. </option>
  1482. <option name="--no-ansi" shortcut="">
  1483. <help><![CDATA[Negate the "--ansi" option]]></help>
  1484. </option>
  1485. <option name="--no-interaction" shortcut="-n">
  1486. <help><![CDATA[Do not ask any interactive question]]></help>
  1487. </option>
  1488. <option name="--env" shortcut="" pattern="equals">
  1489. <help><![CDATA[The environment the command should run under]]></help>
  1490. </option>
  1491. </optionsBefore>
  1492. </command>
  1493. <command>
  1494. <name>cache:forget</name>
  1495. <help><![CDATA[Remove an item from the cache<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1496. <params>key store[=null]</params>
  1497. <optionsBefore>
  1498. <option name="--help" shortcut="-h">
  1499. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1500. </option>
  1501. <option name="--quiet" shortcut="-q">
  1502. <help><![CDATA[Do not output any message]]></help>
  1503. </option>
  1504. <option name="--verbose" shortcut="-v">
  1505. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1506. </option>
  1507. <option name="--version" shortcut="-V">
  1508. <help><![CDATA[Display this application version]]></help>
  1509. </option>
  1510. <option name="--ansi" shortcut="">
  1511. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1512. </option>
  1513. <option name="--no-ansi" shortcut="">
  1514. <help><![CDATA[Negate the "--ansi" option]]></help>
  1515. </option>
  1516. <option name="--no-interaction" shortcut="-n">
  1517. <help><![CDATA[Do not ask any interactive question]]></help>
  1518. </option>
  1519. <option name="--env" shortcut="" pattern="equals">
  1520. <help><![CDATA[The environment the command should run under]]></help>
  1521. </option>
  1522. </optionsBefore>
  1523. </command>
  1524. <command>
  1525. <name>cache:table</name>
  1526. <help><![CDATA[Create a migration for the cache database table<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1527. <optionsBefore>
  1528. <option name="--help" shortcut="-h">
  1529. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1530. </option>
  1531. <option name="--quiet" shortcut="-q">
  1532. <help><![CDATA[Do not output any message]]></help>
  1533. </option>
  1534. <option name="--verbose" shortcut="-v">
  1535. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1536. </option>
  1537. <option name="--version" shortcut="-V">
  1538. <help><![CDATA[Display this application version]]></help>
  1539. </option>
  1540. <option name="--ansi" shortcut="">
  1541. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1542. </option>
  1543. <option name="--no-ansi" shortcut="">
  1544. <help><![CDATA[Negate the "--ansi" option]]></help>
  1545. </option>
  1546. <option name="--no-interaction" shortcut="-n">
  1547. <help><![CDATA[Do not ask any interactive question]]></help>
  1548. </option>
  1549. <option name="--env" shortcut="" pattern="equals">
  1550. <help><![CDATA[The environment the command should run under]]></help>
  1551. </option>
  1552. </optionsBefore>
  1553. </command>
  1554. <command>
  1555. <name>config:cache</name>
  1556. <help><![CDATA[Create a cache file for faster configuration loading<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1557. <optionsBefore>
  1558. <option name="--help" shortcut="-h">
  1559. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1560. </option>
  1561. <option name="--quiet" shortcut="-q">
  1562. <help><![CDATA[Do not output any message]]></help>
  1563. </option>
  1564. <option name="--verbose" shortcut="-v">
  1565. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1566. </option>
  1567. <option name="--version" shortcut="-V">
  1568. <help><![CDATA[Display this application version]]></help>
  1569. </option>
  1570. <option name="--ansi" shortcut="">
  1571. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1572. </option>
  1573. <option name="--no-ansi" shortcut="">
  1574. <help><![CDATA[Negate the "--ansi" option]]></help>
  1575. </option>
  1576. <option name="--no-interaction" shortcut="-n">
  1577. <help><![CDATA[Do not ask any interactive question]]></help>
  1578. </option>
  1579. <option name="--env" shortcut="" pattern="equals">
  1580. <help><![CDATA[The environment the command should run under]]></help>
  1581. </option>
  1582. </optionsBefore>
  1583. </command>
  1584. <command>
  1585. <name>config:clear</name>
  1586. <help><![CDATA[Remove the configuration cache file<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1587. <optionsBefore>
  1588. <option name="--help" shortcut="-h">
  1589. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1590. </option>
  1591. <option name="--quiet" shortcut="-q">
  1592. <help><![CDATA[Do not output any message]]></help>
  1593. </option>
  1594. <option name="--verbose" shortcut="-v">
  1595. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1596. </option>
  1597. <option name="--version" shortcut="-V">
  1598. <help><![CDATA[Display this application version]]></help>
  1599. </option>
  1600. <option name="--ansi" shortcut="">
  1601. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1602. </option>
  1603. <option name="--no-ansi" shortcut="">
  1604. <help><![CDATA[Negate the "--ansi" option]]></help>
  1605. </option>
  1606. <option name="--no-interaction" shortcut="-n">
  1607. <help><![CDATA[Do not ask any interactive question]]></help>
  1608. </option>
  1609. <option name="--env" shortcut="" pattern="equals">
  1610. <help><![CDATA[The environment the command should run under]]></help>
  1611. </option>
  1612. </optionsBefore>
  1613. </command>
  1614. <command>
  1615. <name>data:seeder</name>
  1616. <help><![CDATA[Command description<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1617. <optionsBefore>
  1618. <option name="--help" shortcut="-h">
  1619. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1620. </option>
  1621. <option name="--quiet" shortcut="-q">
  1622. <help><![CDATA[Do not output any message]]></help>
  1623. </option>
  1624. <option name="--verbose" shortcut="-v">
  1625. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1626. </option>
  1627. <option name="--version" shortcut="-V">
  1628. <help><![CDATA[Display this application version]]></help>
  1629. </option>
  1630. <option name="--ansi" shortcut="">
  1631. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1632. </option>
  1633. <option name="--no-ansi" shortcut="">
  1634. <help><![CDATA[Negate the "--ansi" option]]></help>
  1635. </option>
  1636. <option name="--no-interaction" shortcut="-n">
  1637. <help><![CDATA[Do not ask any interactive question]]></help>
  1638. </option>
  1639. <option name="--env" shortcut="" pattern="equals">
  1640. <help><![CDATA[The environment the command should run under]]></help>
  1641. </option>
  1642. </optionsBefore>
  1643. </command>
  1644. <command>
  1645. <name>db:seed</name>
  1646. <help><![CDATA[Seed the database with records<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--class</td><td></td><td>The class name of the root seeder</td></tr> <tr><td>--database</td><td></td><td>The database connection to seed</td></tr> <tr><td>--force</td><td></td><td>Force the operation to run when in production</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1647. <params>class[=null]</params>
  1648. <optionsBefore>
  1649. <option name="--class" shortcut="" pattern="equals">
  1650. <help><![CDATA[The class name of the root seeder]]></help>
  1651. </option>
  1652. <option name="--database" shortcut="" pattern="equals">
  1653. <help><![CDATA[The database connection to seed]]></help>
  1654. </option>
  1655. <option name="--force" shortcut="">
  1656. <help><![CDATA[Force the operation to run when in production]]></help>
  1657. </option>
  1658. <option name="--help" shortcut="-h">
  1659. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1660. </option>
  1661. <option name="--quiet" shortcut="-q">
  1662. <help><![CDATA[Do not output any message]]></help>
  1663. </option>
  1664. <option name="--verbose" shortcut="-v">
  1665. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1666. </option>
  1667. <option name="--version" shortcut="-V">
  1668. <help><![CDATA[Display this application version]]></help>
  1669. </option>
  1670. <option name="--ansi" shortcut="">
  1671. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1672. </option>
  1673. <option name="--no-ansi" shortcut="">
  1674. <help><![CDATA[Negate the "--ansi" option]]></help>
  1675. </option>
  1676. <option name="--no-interaction" shortcut="-n">
  1677. <help><![CDATA[Do not ask any interactive question]]></help>
  1678. </option>
  1679. <option name="--env" shortcut="" pattern="equals">
  1680. <help><![CDATA[The environment the command should run under]]></help>
  1681. </option>
  1682. </optionsBefore>
  1683. </command>
  1684. <command>
  1685. <name>db:wipe</name>
  1686. <help><![CDATA[Drop all tables, views, and types<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--database</td><td></td><td>The database connection to use</td></tr> <tr><td>--drop-views</td><td></td><td>Drop all tables and views</td></tr> <tr><td>--drop-types</td><td></td><td>Drop all tables and types (Postgres only)</td></tr> <tr><td>--force</td><td></td><td>Force the operation to run when in production</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1687. <optionsBefore>
  1688. <option name="--database" shortcut="" pattern="equals">
  1689. <help><![CDATA[The database connection to use]]></help>
  1690. </option>
  1691. <option name="--drop-views" shortcut="">
  1692. <help><![CDATA[Drop all tables and views]]></help>
  1693. </option>
  1694. <option name="--drop-types" shortcut="">
  1695. <help><![CDATA[Drop all tables and types (Postgres only)]]></help>
  1696. </option>
  1697. <option name="--force" shortcut="">
  1698. <help><![CDATA[Force the operation to run when in production]]></help>
  1699. </option>
  1700. <option name="--help" shortcut="-h">
  1701. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1702. </option>
  1703. <option name="--quiet" shortcut="-q">
  1704. <help><![CDATA[Do not output any message]]></help>
  1705. </option>
  1706. <option name="--verbose" shortcut="-v">
  1707. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1708. </option>
  1709. <option name="--version" shortcut="-V">
  1710. <help><![CDATA[Display this application version]]></help>
  1711. </option>
  1712. <option name="--ansi" shortcut="">
  1713. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1714. </option>
  1715. <option name="--no-ansi" shortcut="">
  1716. <help><![CDATA[Negate the "--ansi" option]]></help>
  1717. </option>
  1718. <option name="--no-interaction" shortcut="-n">
  1719. <help><![CDATA[Do not ask any interactive question]]></help>
  1720. </option>
  1721. <option name="--env" shortcut="" pattern="equals">
  1722. <help><![CDATA[The environment the command should run under]]></help>
  1723. </option>
  1724. </optionsBefore>
  1725. </command>
  1726. <command>
  1727. <name>event:cache</name>
  1728. <help><![CDATA[Discover and cache the application's events and listeners<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1729. <optionsBefore>
  1730. <option name="--help" shortcut="-h">
  1731. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></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 (or disable --no-ansi) ANSI output]]></help>
  1744. </option>
  1745. <option name="--no-ansi" shortcut="">
  1746. <help><![CDATA[Negate the "--ansi" option]]></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>event:clear</name>
  1758. <help><![CDATA[Clear all cached events and listeners<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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="--help" shortcut="-h">
  1761. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1762. </option>
  1763. <option name="--quiet" shortcut="-q">
  1764. <help><![CDATA[Do not output any message]]></help>
  1765. </option>
  1766. <option name="--verbose" shortcut="-v">
  1767. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1768. </option>
  1769. <option name="--version" shortcut="-V">
  1770. <help><![CDATA[Display this application version]]></help>
  1771. </option>
  1772. <option name="--ansi" shortcut="">
  1773. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1774. </option>
  1775. <option name="--no-ansi" shortcut="">
  1776. <help><![CDATA[Negate the "--ansi" option]]></help>
  1777. </option>
  1778. <option name="--no-interaction" shortcut="-n">
  1779. <help><![CDATA[Do not ask any interactive question]]></help>
  1780. </option>
  1781. <option name="--env" shortcut="" pattern="equals">
  1782. <help><![CDATA[The environment the command should run under]]></help>
  1783. </option>
  1784. </optionsBefore>
  1785. </command>
  1786. <command>
  1787. <name>event:generate</name>
  1788. <help><![CDATA[Generate the missing events and listeners based on registration<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  1789. <optionsBefore>
  1790. <option name="--help" shortcut="-h">
  1791. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1792. </option>
  1793. <option name="--quiet" shortcut="-q">
  1794. <help><![CDATA[Do not output any message]]></help>
  1795. </option>
  1796. <option name="--verbose" shortcut="-v">
  1797. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1798. </option>
  1799. <option name="--version" shortcut="-V">
  1800. <help><![CDATA[Display this application version]]></help>
  1801. </option>
  1802. <option name="--ansi" shortcut="">
  1803. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1804. </option>
  1805. <option name="--no-ansi" shortcut="">
  1806. <help><![CDATA[Negate the "--ansi" option]]></help>
  1807. </option>
  1808. <option name="--no-interaction" shortcut="-n">
  1809. <help><![CDATA[Do not ask any interactive question]]></help>
  1810. </option>
  1811. <option name="--env" shortcut="" pattern="equals">
  1812. <help><![CDATA[The environment the command should run under]]></help>
  1813. </option>
  1814. </optionsBefore>
  1815. </command>
  1816. <command>
  1817. <name>event:list</name>
  1818. <help><![CDATA[List the application's events and listeners<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--event</td><td></td><td>Filter the events by name</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1819. <optionsBefore>
  1820. <option name="--event" shortcut="" pattern="equals">
  1821. <help><![CDATA[Filter the events by name]]></help>
  1822. </option>
  1823. <option name="--help" shortcut="-h">
  1824. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1825. </option>
  1826. <option name="--quiet" shortcut="-q">
  1827. <help><![CDATA[Do not output any message]]></help>
  1828. </option>
  1829. <option name="--verbose" shortcut="-v">
  1830. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1831. </option>
  1832. <option name="--version" shortcut="-V">
  1833. <help><![CDATA[Display this application version]]></help>
  1834. </option>
  1835. <option name="--ansi" shortcut="">
  1836. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1837. </option>
  1838. <option name="--no-ansi" shortcut="">
  1839. <help><![CDATA[Negate the "--ansi" option]]></help>
  1840. </option>
  1841. <option name="--no-interaction" shortcut="-n">
  1842. <help><![CDATA[Do not ask any interactive question]]></help>
  1843. </option>
  1844. <option name="--env" shortcut="" pattern="equals">
  1845. <help><![CDATA[The environment the command should run under]]></help>
  1846. </option>
  1847. </optionsBefore>
  1848. </command>
  1849. <command>
  1850. <name>import:map</name>
  1851. <help><![CDATA[Command description<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1852. <optionsBefore>
  1853. <option name="--help" shortcut="-h">
  1854. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1855. </option>
  1856. <option name="--quiet" shortcut="-q">
  1857. <help><![CDATA[Do not output any message]]></help>
  1858. </option>
  1859. <option name="--verbose" shortcut="-v">
  1860. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1861. </option>
  1862. <option name="--version" shortcut="-V">
  1863. <help><![CDATA[Display this application version]]></help>
  1864. </option>
  1865. <option name="--ansi" shortcut="">
  1866. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1867. </option>
  1868. <option name="--no-ansi" shortcut="">
  1869. <help><![CDATA[Negate the "--ansi" option]]></help>
  1870. </option>
  1871. <option name="--no-interaction" shortcut="-n">
  1872. <help><![CDATA[Do not ask any interactive question]]></help>
  1873. </option>
  1874. <option name="--env" shortcut="" pattern="equals">
  1875. <help><![CDATA[The environment the command should run under]]></help>
  1876. </option>
  1877. </optionsBefore>
  1878. </command>
  1879. <command>
  1880. <name>jwt:generate-certs</name>
  1881. <help><![CDATA[Generates a new cert pair<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--force</td><td></td><td>Override certificates if existing</td></tr> <tr><td>--algo</td><td></td><td>Algorithm (rsa/ec)</td></tr> <tr><td>--bits</td><td></td><td>RSA-Key length (1024,2048,4096,8192</td></tr> <tr><td>--sha</td><td></td><td>SHA-variant (1,224,256,384,512)</td></tr> <tr><td>--dir</td><td></td><td>Directory where the certificates should be placed</td></tr> <tr><td>--curve</td><td></td><td>EC-Curvename (e.g. secp384r1, prime256v1 )</td></tr> <tr><td>--passphrase</td><td></td><td>Passphrase</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1882. <optionsBefore>
  1883. <option name="--force" shortcut="">
  1884. <help><![CDATA[Override certificates if existing]]></help>
  1885. </option>
  1886. <option name="--algo" shortcut="" pattern="equals">
  1887. <help><![CDATA[Algorithm (rsa/ec)]]></help>
  1888. </option>
  1889. <option name="--bits" shortcut="" pattern="equals">
  1890. <help><![CDATA[RSA-Key length (1024,2048,4096,8192]]></help>
  1891. </option>
  1892. <option name="--sha" shortcut="" pattern="equals">
  1893. <help><![CDATA[SHA-variant (1,224,256,384,512)]]></help>
  1894. </option>
  1895. <option name="--dir" shortcut="" pattern="equals">
  1896. <help><![CDATA[Directory where the certificates should be placed]]></help>
  1897. </option>
  1898. <option name="--curve" shortcut="" pattern="equals">
  1899. <help><![CDATA[EC-Curvename (e.g. secp384r1, prime256v1 )]]></help>
  1900. </option>
  1901. <option name="--passphrase" shortcut="" pattern="equals">
  1902. <help><![CDATA[Passphrase]]></help>
  1903. </option>
  1904. <option name="--help" shortcut="-h">
  1905. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1906. </option>
  1907. <option name="--quiet" shortcut="-q">
  1908. <help><![CDATA[Do not output any message]]></help>
  1909. </option>
  1910. <option name="--verbose" shortcut="-v">
  1911. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1912. </option>
  1913. <option name="--version" shortcut="-V">
  1914. <help><![CDATA[Display this application version]]></help>
  1915. </option>
  1916. <option name="--ansi" shortcut="">
  1917. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1918. </option>
  1919. <option name="--no-ansi" shortcut="">
  1920. <help><![CDATA[Negate the "--ansi" option]]></help>
  1921. </option>
  1922. <option name="--no-interaction" shortcut="-n">
  1923. <help><![CDATA[Do not ask any interactive question]]></help>
  1924. </option>
  1925. <option name="--env" shortcut="" pattern="equals">
  1926. <help><![CDATA[The environment the command should run under]]></help>
  1927. </option>
  1928. </optionsBefore>
  1929. </command>
  1930. <command>
  1931. <name>jwt:secret</name>
  1932. <help><![CDATA[Set the JWTAuth secret key used to sign the tokens<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--show</td><td>(-s)</td><td>Display the key instead of modifying files.</td></tr> <tr><td>--always-no</td><td></td><td>Skip generating key if it already exists.</td></tr> <tr><td>--force</td><td>(-f)</td><td>Skip confirmation when overwriting an existing key.</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1933. <optionsBefore>
  1934. <option name="--show" shortcut="-s">
  1935. <help><![CDATA[Display the key instead of modifying files.]]></help>
  1936. </option>
  1937. <option name="--always-no" shortcut="">
  1938. <help><![CDATA[Skip generating key if it already exists.]]></help>
  1939. </option>
  1940. <option name="--force" shortcut="-f">
  1941. <help><![CDATA[Skip confirmation when overwriting an existing key.]]></help>
  1942. </option>
  1943. <option name="--help" shortcut="-h">
  1944. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1945. </option>
  1946. <option name="--quiet" shortcut="-q">
  1947. <help><![CDATA[Do not output any message]]></help>
  1948. </option>
  1949. <option name="--verbose" shortcut="-v">
  1950. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1951. </option>
  1952. <option name="--version" shortcut="-V">
  1953. <help><![CDATA[Display this application version]]></help>
  1954. </option>
  1955. <option name="--ansi" shortcut="">
  1956. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1957. </option>
  1958. <option name="--no-ansi" shortcut="">
  1959. <help><![CDATA[Negate the "--ansi" option]]></help>
  1960. </option>
  1961. <option name="--no-interaction" shortcut="-n">
  1962. <help><![CDATA[Do not ask any interactive question]]></help>
  1963. </option>
  1964. <option name="--env" shortcut="" pattern="equals">
  1965. <help><![CDATA[The environment the command should run under]]></help>
  1966. </option>
  1967. </optionsBefore>
  1968. </command>
  1969. <command>
  1970. <name>key:generate</name>
  1971. <help><![CDATA[Set the application key<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--show</td><td></td><td>Display the key instead of modifying files</td></tr> <tr><td>--force</td><td></td><td>Force the operation to run when in production</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  1972. <optionsBefore>
  1973. <option name="--show" shortcut="">
  1974. <help><![CDATA[Display the key instead of modifying files]]></help>
  1975. </option>
  1976. <option name="--force" shortcut="">
  1977. <help><![CDATA[Force the operation to run when in production]]></help>
  1978. </option>
  1979. <option name="--help" shortcut="-h">
  1980. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  1981. </option>
  1982. <option name="--quiet" shortcut="-q">
  1983. <help><![CDATA[Do not output any message]]></help>
  1984. </option>
  1985. <option name="--verbose" shortcut="-v">
  1986. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  1987. </option>
  1988. <option name="--version" shortcut="-V">
  1989. <help><![CDATA[Display this application version]]></help>
  1990. </option>
  1991. <option name="--ansi" shortcut="">
  1992. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  1993. </option>
  1994. <option name="--no-ansi" shortcut="">
  1995. <help><![CDATA[Negate the "--ansi" option]]></help>
  1996. </option>
  1997. <option name="--no-interaction" shortcut="-n">
  1998. <help><![CDATA[Do not ask any interactive question]]></help>
  1999. </option>
  2000. <option name="--env" shortcut="" pattern="equals">
  2001. <help><![CDATA[The environment the command should run under]]></help>
  2002. </option>
  2003. </optionsBefore>
  2004. </command>
  2005. <command>
  2006. <name>lang:publish</name>
  2007. <help><![CDATA[publish language files to resources directory.<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--force</td><td></td><td>override existing files.</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2008. <params>locales[=null]</params>
  2009. <optionsBefore>
  2010. <option name="--force" shortcut="">
  2011. <help><![CDATA[override existing files.]]></help>
  2012. </option>
  2013. <option name="--help" shortcut="-h">
  2014. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2015. </option>
  2016. <option name="--quiet" shortcut="-q">
  2017. <help><![CDATA[Do not output any message]]></help>
  2018. </option>
  2019. <option name="--verbose" shortcut="-v">
  2020. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2021. </option>
  2022. <option name="--version" shortcut="-V">
  2023. <help><![CDATA[Display this application version]]></help>
  2024. </option>
  2025. <option name="--ansi" shortcut="">
  2026. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2027. </option>
  2028. <option name="--no-ansi" shortcut="">
  2029. <help><![CDATA[Negate the "--ansi" option]]></help>
  2030. </option>
  2031. <option name="--no-interaction" shortcut="-n">
  2032. <help><![CDATA[Do not ask any interactive question]]></help>
  2033. </option>
  2034. <option name="--env" shortcut="" pattern="equals">
  2035. <help><![CDATA[The environment the command should run under]]></help>
  2036. </option>
  2037. </optionsBefore>
  2038. </command>
  2039. <command>
  2040. <name>make:bindings</name>
  2041. <help><![CDATA[Add repository bindings to service provider.<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--force</td><td>(-f)</td><td>Force the creation if file already exists.</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2042. <params>name</params>
  2043. <optionsBefore>
  2044. <option name="--force" shortcut="-f">
  2045. <help><![CDATA[Force the creation if file already exists.]]></help>
  2046. </option>
  2047. <option name="--help" shortcut="-h">
  2048. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2049. </option>
  2050. <option name="--quiet" shortcut="-q">
  2051. <help><![CDATA[Do not output any message]]></help>
  2052. </option>
  2053. <option name="--verbose" shortcut="-v">
  2054. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2055. </option>
  2056. <option name="--version" shortcut="-V">
  2057. <help><![CDATA[Display this application version]]></help>
  2058. </option>
  2059. <option name="--ansi" shortcut="">
  2060. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2061. </option>
  2062. <option name="--no-ansi" shortcut="">
  2063. <help><![CDATA[Negate the "--ansi" option]]></help>
  2064. </option>
  2065. <option name="--no-interaction" shortcut="-n">
  2066. <help><![CDATA[Do not ask any interactive question]]></help>
  2067. </option>
  2068. <option name="--env" shortcut="" pattern="equals">
  2069. <help><![CDATA[The environment the command should run under]]></help>
  2070. </option>
  2071. </optionsBefore>
  2072. </command>
  2073. <command>
  2074. <name>make:cast</name>
  2075. <help><![CDATA[Create a new custom Eloquent cast class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2076. <params>name</params>
  2077. <optionsBefore>
  2078. <option name="--help" shortcut="-h">
  2079. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2080. </option>
  2081. <option name="--quiet" shortcut="-q">
  2082. <help><![CDATA[Do not output any message]]></help>
  2083. </option>
  2084. <option name="--verbose" shortcut="-v">
  2085. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2086. </option>
  2087. <option name="--version" shortcut="-V">
  2088. <help><![CDATA[Display this application version]]></help>
  2089. </option>
  2090. <option name="--ansi" shortcut="">
  2091. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2092. </option>
  2093. <option name="--no-ansi" shortcut="">
  2094. <help><![CDATA[Negate the "--ansi" option]]></help>
  2095. </option>
  2096. <option name="--no-interaction" shortcut="-n">
  2097. <help><![CDATA[Do not ask any interactive question]]></help>
  2098. </option>
  2099. <option name="--env" shortcut="" pattern="equals">
  2100. <help><![CDATA[The environment the command should run under]]></help>
  2101. </option>
  2102. </optionsBefore>
  2103. </command>
  2104. <command>
  2105. <name>make:channel</name>
  2106. <help><![CDATA[Create a new channel class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2107. <params>name</params>
  2108. <optionsBefore>
  2109. <option name="--help" shortcut="-h">
  2110. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2111. </option>
  2112. <option name="--quiet" shortcut="-q">
  2113. <help><![CDATA[Do not output any message]]></help>
  2114. </option>
  2115. <option name="--verbose" shortcut="-v">
  2116. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2117. </option>
  2118. <option name="--version" shortcut="-V">
  2119. <help><![CDATA[Display this application version]]></help>
  2120. </option>
  2121. <option name="--ansi" shortcut="">
  2122. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2123. </option>
  2124. <option name="--no-ansi" shortcut="">
  2125. <help><![CDATA[Negate the "--ansi" option]]></help>
  2126. </option>
  2127. <option name="--no-interaction" shortcut="-n">
  2128. <help><![CDATA[Do not ask any interactive question]]></help>
  2129. </option>
  2130. <option name="--env" shortcut="" pattern="equals">
  2131. <help><![CDATA[The environment the command should run under]]></help>
  2132. </option>
  2133. </optionsBefore>
  2134. </command>
  2135. <command>
  2136. <name>make:command</name>
  2137. <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>--test</td><td></td><td>Generate an accompanying PHPUnit test for the Console command</td></tr> <tr><td>--pest</td><td></td><td>Generate an accompanying Pest test for the Console command</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2138. <params>name</params>
  2139. <optionsBefore>
  2140. <option name="--command" shortcut="" pattern="equals">
  2141. <help><![CDATA[The terminal command that should be assigned]]></help>
  2142. </option>
  2143. <option name="--test" shortcut="">
  2144. <help><![CDATA[Generate an accompanying PHPUnit test for the Console command]]></help>
  2145. </option>
  2146. <option name="--pest" shortcut="">
  2147. <help><![CDATA[Generate an accompanying Pest test for the Console command]]></help>
  2148. </option>
  2149. <option name="--help" shortcut="-h">
  2150. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2151. </option>
  2152. <option name="--quiet" shortcut="-q">
  2153. <help><![CDATA[Do not output any message]]></help>
  2154. </option>
  2155. <option name="--verbose" shortcut="-v">
  2156. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2157. </option>
  2158. <option name="--version" shortcut="-V">
  2159. <help><![CDATA[Display this application version]]></help>
  2160. </option>
  2161. <option name="--ansi" shortcut="">
  2162. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2163. </option>
  2164. <option name="--no-ansi" shortcut="">
  2165. <help><![CDATA[Negate the "--ansi" option]]></help>
  2166. </option>
  2167. <option name="--no-interaction" shortcut="-n">
  2168. <help><![CDATA[Do not ask any interactive question]]></help>
  2169. </option>
  2170. <option name="--env" shortcut="" pattern="equals">
  2171. <help><![CDATA[The environment the command should run under]]></help>
  2172. </option>
  2173. </optionsBefore>
  2174. </command>
  2175. <command>
  2176. <name>make:component</name>
  2177. <help><![CDATA[Create a new view component class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--force</td><td></td><td>Create the class even if the component already exists</td></tr> <tr><td>--inline</td><td></td><td>Create a component that renders an inline view</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2178. <params>name</params>
  2179. <optionsBefore>
  2180. <option name="--force" shortcut="">
  2181. <help><![CDATA[Create the class even if the component already exists]]></help>
  2182. </option>
  2183. <option name="--inline" shortcut="">
  2184. <help><![CDATA[Create a component that renders an inline view]]></help>
  2185. </option>
  2186. <option name="--help" shortcut="-h">
  2187. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2188. </option>
  2189. <option name="--quiet" shortcut="-q">
  2190. <help><![CDATA[Do not output any message]]></help>
  2191. </option>
  2192. <option name="--verbose" shortcut="-v">
  2193. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2194. </option>
  2195. <option name="--version" shortcut="-V">
  2196. <help><![CDATA[Display this application version]]></help>
  2197. </option>
  2198. <option name="--ansi" shortcut="">
  2199. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2200. </option>
  2201. <option name="--no-ansi" shortcut="">
  2202. <help><![CDATA[Negate the "--ansi" option]]></help>
  2203. </option>
  2204. <option name="--no-interaction" shortcut="-n">
  2205. <help><![CDATA[Do not ask any interactive question]]></help>
  2206. </option>
  2207. <option name="--env" shortcut="" pattern="equals">
  2208. <help><![CDATA[The environment the command should run under]]></help>
  2209. </option>
  2210. </optionsBefore>
  2211. </command>
  2212. <command>
  2213. <name>make:controller</name>
  2214. <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>--type</td><td></td><td>Manually specify the controller stub file to use.</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>--requests</td><td>(-R)</td><td>Generate FormRequest classes for store and update.</td></tr> <tr><td>--test</td><td></td><td>Generate an accompanying PHPUnit test for the Controller</td></tr> <tr><td>--pest</td><td></td><td>Generate an accompanying Pest test for the Controller</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2215. <params>name</params>
  2216. <optionsBefore>
  2217. <option name="--api" shortcut="">
  2218. <help><![CDATA[Exclude the create and edit methods from the controller.]]></help>
  2219. </option>
  2220. <option name="--type" shortcut="" pattern="equals">
  2221. <help><![CDATA[Manually specify the controller stub file to use.]]></help>
  2222. </option>
  2223. <option name="--force" shortcut="">
  2224. <help><![CDATA[Create the class even if the controller already exists]]></help>
  2225. </option>
  2226. <option name="--invokable" shortcut="-i">
  2227. <help><![CDATA[Generate a single method, invokable controller class.]]></help>
  2228. </option>
  2229. <option name="--model" shortcut="-m" pattern="equals">
  2230. <help><![CDATA[Generate a resource controller for the given model.]]></help>
  2231. </option>
  2232. <option name="--parent" shortcut="-p" pattern="equals">
  2233. <help><![CDATA[Generate a nested resource controller class.]]></help>
  2234. </option>
  2235. <option name="--resource" shortcut="-r">
  2236. <help><![CDATA[Generate a resource controller class.]]></help>
  2237. </option>
  2238. <option name="--requests" shortcut="-R">
  2239. <help><![CDATA[Generate FormRequest classes for store and update.]]></help>
  2240. </option>
  2241. <option name="--test" shortcut="">
  2242. <help><![CDATA[Generate an accompanying PHPUnit test for the Controller]]></help>
  2243. </option>
  2244. <option name="--pest" shortcut="">
  2245. <help><![CDATA[Generate an accompanying Pest test for the Controller]]></help>
  2246. </option>
  2247. <option name="--help" shortcut="-h">
  2248. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2249. </option>
  2250. <option name="--quiet" shortcut="-q">
  2251. <help><![CDATA[Do not output any message]]></help>
  2252. </option>
  2253. <option name="--verbose" shortcut="-v">
  2254. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2255. </option>
  2256. <option name="--version" shortcut="-V">
  2257. <help><![CDATA[Display this application version]]></help>
  2258. </option>
  2259. <option name="--ansi" shortcut="">
  2260. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2261. </option>
  2262. <option name="--no-ansi" shortcut="">
  2263. <help><![CDATA[Negate the "--ansi" option]]></help>
  2264. </option>
  2265. <option name="--no-interaction" shortcut="-n">
  2266. <help><![CDATA[Do not ask any interactive question]]></help>
  2267. </option>
  2268. <option name="--env" shortcut="" pattern="equals">
  2269. <help><![CDATA[The environment the command should run under]]></help>
  2270. </option>
  2271. </optionsBefore>
  2272. </command>
  2273. <command>
  2274. <name>make:criteria</name>
  2275. <help><![CDATA[Create a new criteria.<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--force</td><td>(-f)</td><td>Force the creation if file already exists.</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2276. <params>name</params>
  2277. <optionsBefore>
  2278. <option name="--force" shortcut="-f">
  2279. <help><![CDATA[Force the creation if file already exists.]]></help>
  2280. </option>
  2281. <option name="--help" shortcut="-h">
  2282. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2283. </option>
  2284. <option name="--quiet" shortcut="-q">
  2285. <help><![CDATA[Do not output any message]]></help>
  2286. </option>
  2287. <option name="--verbose" shortcut="-v">
  2288. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2289. </option>
  2290. <option name="--version" shortcut="-V">
  2291. <help><![CDATA[Display this application version]]></help>
  2292. </option>
  2293. <option name="--ansi" shortcut="">
  2294. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2295. </option>
  2296. <option name="--no-ansi" shortcut="">
  2297. <help><![CDATA[Negate the "--ansi" option]]></help>
  2298. </option>
  2299. <option name="--no-interaction" shortcut="-n">
  2300. <help><![CDATA[Do not ask any interactive question]]></help>
  2301. </option>
  2302. <option name="--env" shortcut="" pattern="equals">
  2303. <help><![CDATA[The environment the command should run under]]></help>
  2304. </option>
  2305. </optionsBefore>
  2306. </command>
  2307. <command>
  2308. <name>make:entity</name>
  2309. <help><![CDATA[Create a new entity.<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--fillable</td><td></td><td>The fillable attributes.</td></tr> <tr><td>--rules</td><td></td><td>The rules of validation attributes.</td></tr> <tr><td>--validator</td><td></td><td>Adds validator reference to the repository.</td></tr> <tr><td>--force</td><td>(-f)</td><td>Force the creation if file already exists.</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2310. <params>name</params>
  2311. <optionsBefore>
  2312. <option name="--fillable" shortcut="" pattern="equals">
  2313. <help><![CDATA[The fillable attributes.]]></help>
  2314. </option>
  2315. <option name="--rules" shortcut="" pattern="equals">
  2316. <help><![CDATA[The rules of validation attributes.]]></help>
  2317. </option>
  2318. <option name="--validator" shortcut="" pattern="equals">
  2319. <help><![CDATA[Adds validator reference to the repository.]]></help>
  2320. </option>
  2321. <option name="--force" shortcut="-f">
  2322. <help><![CDATA[Force the creation if file already exists.]]></help>
  2323. </option>
  2324. <option name="--help" shortcut="-h">
  2325. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2326. </option>
  2327. <option name="--quiet" shortcut="-q">
  2328. <help><![CDATA[Do not output any message]]></help>
  2329. </option>
  2330. <option name="--verbose" shortcut="-v">
  2331. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2332. </option>
  2333. <option name="--version" shortcut="-V">
  2334. <help><![CDATA[Display this application version]]></help>
  2335. </option>
  2336. <option name="--ansi" shortcut="">
  2337. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2338. </option>
  2339. <option name="--no-ansi" shortcut="">
  2340. <help><![CDATA[Negate the "--ansi" option]]></help>
  2341. </option>
  2342. <option name="--no-interaction" shortcut="-n">
  2343. <help><![CDATA[Do not ask any interactive question]]></help>
  2344. </option>
  2345. <option name="--env" shortcut="" pattern="equals">
  2346. <help><![CDATA[The environment the command should run under]]></help>
  2347. </option>
  2348. </optionsBefore>
  2349. </command>
  2350. <command>
  2351. <name>make:event</name>
  2352. <help><![CDATA[Create a new event class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2353. <params>name</params>
  2354. <optionsBefore>
  2355. <option name="--help" shortcut="-h">
  2356. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2357. </option>
  2358. <option name="--quiet" shortcut="-q">
  2359. <help><![CDATA[Do not output any message]]></help>
  2360. </option>
  2361. <option name="--verbose" shortcut="-v">
  2362. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2363. </option>
  2364. <option name="--version" shortcut="-V">
  2365. <help><![CDATA[Display this application version]]></help>
  2366. </option>
  2367. <option name="--ansi" shortcut="">
  2368. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2369. </option>
  2370. <option name="--no-ansi" shortcut="">
  2371. <help><![CDATA[Negate the "--ansi" option]]></help>
  2372. </option>
  2373. <option name="--no-interaction" shortcut="-n">
  2374. <help><![CDATA[Do not ask any interactive question]]></help>
  2375. </option>
  2376. <option name="--env" shortcut="" pattern="equals">
  2377. <help><![CDATA[The environment the command should run under]]></help>
  2378. </option>
  2379. </optionsBefore>
  2380. </command>
  2381. <command>
  2382. <name>make:exception</name>
  2383. <help><![CDATA[Create a new custom exception class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--render</td><td></td><td>Create the exception with an empty render method</td></tr> <tr><td>--report</td><td></td><td>Create the exception with an empty report method</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2384. <params>name</params>
  2385. <optionsBefore>
  2386. <option name="--render" shortcut="">
  2387. <help><![CDATA[Create the exception with an empty render method]]></help>
  2388. </option>
  2389. <option name="--report" shortcut="">
  2390. <help><![CDATA[Create the exception with an empty report method]]></help>
  2391. </option>
  2392. <option name="--help" shortcut="-h">
  2393. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2394. </option>
  2395. <option name="--quiet" shortcut="-q">
  2396. <help><![CDATA[Do not output any message]]></help>
  2397. </option>
  2398. <option name="--verbose" shortcut="-v">
  2399. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2400. </option>
  2401. <option name="--version" shortcut="-V">
  2402. <help><![CDATA[Display this application version]]></help>
  2403. </option>
  2404. <option name="--ansi" shortcut="">
  2405. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2406. </option>
  2407. <option name="--no-ansi" shortcut="">
  2408. <help><![CDATA[Negate the "--ansi" option]]></help>
  2409. </option>
  2410. <option name="--no-interaction" shortcut="-n">
  2411. <help><![CDATA[Do not ask any interactive question]]></help>
  2412. </option>
  2413. <option name="--env" shortcut="" pattern="equals">
  2414. <help><![CDATA[The environment the command should run under]]></help>
  2415. </option>
  2416. </optionsBefore>
  2417. </command>
  2418. <command>
  2419. <name>make:factory</name>
  2420. <help><![CDATA[Create a new model factory<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--model</td><td>(-m)</td><td>The name of the model</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2421. <params>name</params>
  2422. <optionsBefore>
  2423. <option name="--model" shortcut="-m" pattern="equals">
  2424. <help><![CDATA[The name of the model]]></help>
  2425. </option>
  2426. <option name="--help" shortcut="-h">
  2427. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2428. </option>
  2429. <option name="--quiet" shortcut="-q">
  2430. <help><![CDATA[Do not output any message]]></help>
  2431. </option>
  2432. <option name="--verbose" shortcut="-v">
  2433. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2434. </option>
  2435. <option name="--version" shortcut="-V">
  2436. <help><![CDATA[Display this application version]]></help>
  2437. </option>
  2438. <option name="--ansi" shortcut="">
  2439. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2440. </option>
  2441. <option name="--no-ansi" shortcut="">
  2442. <help><![CDATA[Negate the "--ansi" option]]></help>
  2443. </option>
  2444. <option name="--no-interaction" shortcut="-n">
  2445. <help><![CDATA[Do not ask any interactive question]]></help>
  2446. </option>
  2447. <option name="--env" shortcut="" pattern="equals">
  2448. <help><![CDATA[The environment the command should run under]]></help>
  2449. </option>
  2450. </optionsBefore>
  2451. </command>
  2452. <command>
  2453. <name>make:job</name>
  2454. <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>--test</td><td></td><td>Generate an accompanying PHPUnit test for the Job</td></tr> <tr><td>--pest</td><td></td><td>Generate an accompanying Pest test for the Job</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2455. <params>name</params>
  2456. <optionsBefore>
  2457. <option name="--sync" shortcut="">
  2458. <help><![CDATA[Indicates that job should be synchronous]]></help>
  2459. </option>
  2460. <option name="--test" shortcut="">
  2461. <help><![CDATA[Generate an accompanying PHPUnit test for the Job]]></help>
  2462. </option>
  2463. <option name="--pest" shortcut="">
  2464. <help><![CDATA[Generate an accompanying Pest test for the Job]]></help>
  2465. </option>
  2466. <option name="--help" shortcut="-h">
  2467. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2468. </option>
  2469. <option name="--quiet" shortcut="-q">
  2470. <help><![CDATA[Do not output any message]]></help>
  2471. </option>
  2472. <option name="--verbose" shortcut="-v">
  2473. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2474. </option>
  2475. <option name="--version" shortcut="-V">
  2476. <help><![CDATA[Display this application version]]></help>
  2477. </option>
  2478. <option name="--ansi" shortcut="">
  2479. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2480. </option>
  2481. <option name="--no-ansi" shortcut="">
  2482. <help><![CDATA[Negate the "--ansi" option]]></help>
  2483. </option>
  2484. <option name="--no-interaction" shortcut="-n">
  2485. <help><![CDATA[Do not ask any interactive question]]></help>
  2486. </option>
  2487. <option name="--env" shortcut="" pattern="equals">
  2488. <help><![CDATA[The environment the command should run under]]></help>
  2489. </option>
  2490. </optionsBefore>
  2491. </command>
  2492. <command>
  2493. <name>make:listener</name>
  2494. <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>--test</td><td></td><td>Generate an accompanying PHPUnit test for the Listener</td></tr> <tr><td>--pest</td><td></td><td>Generate an accompanying Pest test for the Listener</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2495. <params>name</params>
  2496. <optionsBefore>
  2497. <option name="--event" shortcut="-e" pattern="equals">
  2498. <help><![CDATA[The event class being listened for]]></help>
  2499. </option>
  2500. <option name="--queued" shortcut="">
  2501. <help><![CDATA[Indicates the event listener should be queued]]></help>
  2502. </option>
  2503. <option name="--test" shortcut="">
  2504. <help><![CDATA[Generate an accompanying PHPUnit test for the Listener]]></help>
  2505. </option>
  2506. <option name="--pest" shortcut="">
  2507. <help><![CDATA[Generate an accompanying Pest test for the Listener]]></help>
  2508. </option>
  2509. <option name="--help" shortcut="-h">
  2510. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2511. </option>
  2512. <option name="--quiet" shortcut="-q">
  2513. <help><![CDATA[Do not output any message]]></help>
  2514. </option>
  2515. <option name="--verbose" shortcut="-v">
  2516. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2517. </option>
  2518. <option name="--version" shortcut="-V">
  2519. <help><![CDATA[Display this application version]]></help>
  2520. </option>
  2521. <option name="--ansi" shortcut="">
  2522. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2523. </option>
  2524. <option name="--no-ansi" shortcut="">
  2525. <help><![CDATA[Negate the "--ansi" option]]></help>
  2526. </option>
  2527. <option name="--no-interaction" shortcut="-n">
  2528. <help><![CDATA[Do not ask any interactive question]]></help>
  2529. </option>
  2530. <option name="--env" shortcut="" pattern="equals">
  2531. <help><![CDATA[The environment the command should run under]]></help>
  2532. </option>
  2533. </optionsBefore>
  2534. </command>
  2535. <command>
  2536. <name>make:mail</name>
  2537. <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>--test</td><td></td><td>Generate an accompanying PHPUnit test for the Mail</td></tr> <tr><td>--pest</td><td></td><td>Generate an accompanying Pest test for the Mail</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2538. <params>name</params>
  2539. <optionsBefore>
  2540. <option name="--force" shortcut="-f">
  2541. <help><![CDATA[Create the class even if the mailable already exists]]></help>
  2542. </option>
  2543. <option name="--markdown" shortcut="-m" pattern="equals">
  2544. <help><![CDATA[Create a new Markdown template for the mailable]]></help>
  2545. </option>
  2546. <option name="--test" shortcut="">
  2547. <help><![CDATA[Generate an accompanying PHPUnit test for the Mail]]></help>
  2548. </option>
  2549. <option name="--pest" shortcut="">
  2550. <help><![CDATA[Generate an accompanying Pest test for the Mail]]></help>
  2551. </option>
  2552. <option name="--help" shortcut="-h">
  2553. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2554. </option>
  2555. <option name="--quiet" shortcut="-q">
  2556. <help><![CDATA[Do not output any message]]></help>
  2557. </option>
  2558. <option name="--verbose" shortcut="-v">
  2559. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2560. </option>
  2561. <option name="--version" shortcut="-V">
  2562. <help><![CDATA[Display this application version]]></help>
  2563. </option>
  2564. <option name="--ansi" shortcut="">
  2565. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2566. </option>
  2567. <option name="--no-ansi" shortcut="">
  2568. <help><![CDATA[Negate the "--ansi" option]]></help>
  2569. </option>
  2570. <option name="--no-interaction" shortcut="-n">
  2571. <help><![CDATA[Do not ask any interactive question]]></help>
  2572. </option>
  2573. <option name="--env" shortcut="" pattern="equals">
  2574. <help><![CDATA[The environment the command should run under]]></help>
  2575. </option>
  2576. </optionsBefore>
  2577. </command>
  2578. <command>
  2579. <name>make:middleware</name>
  2580. <help><![CDATA[Create a new middleware class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--test</td><td></td><td>Generate an accompanying PHPUnit test for the Middleware</td></tr> <tr><td>--pest</td><td></td><td>Generate an accompanying Pest test for the Middleware</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2581. <params>name</params>
  2582. <optionsBefore>
  2583. <option name="--test" shortcut="">
  2584. <help><![CDATA[Generate an accompanying PHPUnit test for the Middleware]]></help>
  2585. </option>
  2586. <option name="--pest" shortcut="">
  2587. <help><![CDATA[Generate an accompanying Pest test for the Middleware]]></help>
  2588. </option>
  2589. <option name="--help" shortcut="-h">
  2590. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2591. </option>
  2592. <option name="--quiet" shortcut="-q">
  2593. <help><![CDATA[Do not output any message]]></help>
  2594. </option>
  2595. <option name="--verbose" shortcut="-v">
  2596. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2597. </option>
  2598. <option name="--version" shortcut="-V">
  2599. <help><![CDATA[Display this application version]]></help>
  2600. </option>
  2601. <option name="--ansi" shortcut="">
  2602. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2603. </option>
  2604. <option name="--no-ansi" shortcut="">
  2605. <help><![CDATA[Negate the "--ansi" option]]></help>
  2606. </option>
  2607. <option name="--no-interaction" shortcut="-n">
  2608. <help><![CDATA[Do not ask any interactive question]]></help>
  2609. </option>
  2610. <option name="--env" shortcut="" pattern="equals">
  2611. <help><![CDATA[The environment the command should run under]]></help>
  2612. </option>
  2613. </optionsBefore>
  2614. </command>
  2615. <command>
  2616. <name>make:migration</name>
  2617. <help><![CDATA[Create a new migration file<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--create</td><td></td><td>The table to be created</td></tr> <tr><td>--table</td><td></td><td>The table to migrate</td></tr> <tr><td>--path</td><td></td><td>The location where the migration file should be created</td></tr> <tr><td>--realpath</td><td></td><td>Indicate any provided migration file paths are pre-resolved absolute paths</td></tr> <tr><td>--fullpath</td><td></td><td>Output the full path of the migration</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2618. <params>name</params>
  2619. <optionsBefore>
  2620. <option name="--create" shortcut="" pattern="equals">
  2621. <help><![CDATA[The table to be created]]></help>
  2622. </option>
  2623. <option name="--table" shortcut="" pattern="equals">
  2624. <help><![CDATA[The table to migrate]]></help>
  2625. </option>
  2626. <option name="--path" shortcut="" pattern="equals">
  2627. <help><![CDATA[The location where the migration file should be created]]></help>
  2628. </option>
  2629. <option name="--realpath" shortcut="">
  2630. <help><![CDATA[Indicate any provided migration file paths are pre-resolved absolute paths]]></help>
  2631. </option>
  2632. <option name="--fullpath" shortcut="">
  2633. <help><![CDATA[Output the full path of the migration]]></help>
  2634. </option>
  2635. <option name="--help" shortcut="-h">
  2636. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2637. </option>
  2638. <option name="--quiet" shortcut="-q">
  2639. <help><![CDATA[Do not output any message]]></help>
  2640. </option>
  2641. <option name="--verbose" shortcut="-v">
  2642. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2643. </option>
  2644. <option name="--version" shortcut="-V">
  2645. <help><![CDATA[Display this application version]]></help>
  2646. </option>
  2647. <option name="--ansi" shortcut="">
  2648. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2649. </option>
  2650. <option name="--no-ansi" shortcut="">
  2651. <help><![CDATA[Negate the "--ansi" option]]></help>
  2652. </option>
  2653. <option name="--no-interaction" shortcut="-n">
  2654. <help><![CDATA[Do not ask any interactive question]]></help>
  2655. </option>
  2656. <option name="--env" shortcut="" pattern="equals">
  2657. <help><![CDATA[The environment the command should run under]]></help>
  2658. </option>
  2659. </optionsBefore>
  2660. </command>
  2661. <command>
  2662. <name>make:model</name>
  2663. <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, policy, 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>--policy</td><td></td><td>Create a new policy for the model</td></tr> <tr><td>--seed</td><td>(-s)</td><td>Create a new seeder 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>--requests</td><td>(-R)</td><td>Create new form request classes and use them in the resource controller</td></tr> <tr><td>--test</td><td></td><td>Generate an accompanying PHPUnit test for the Model</td></tr> <tr><td>--pest</td><td></td><td>Generate an accompanying Pest test for the Model</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2664. <params>name</params>
  2665. <optionsBefore>
  2666. <option name="--all" shortcut="-a">
  2667. <help><![CDATA[Generate a migration, seeder, factory, policy, and resource controller for the model]]></help>
  2668. </option>
  2669. <option name="--controller" shortcut="-c">
  2670. <help><![CDATA[Create a new controller for the model]]></help>
  2671. </option>
  2672. <option name="--factory" shortcut="-f">
  2673. <help><![CDATA[Create a new factory for the model]]></help>
  2674. </option>
  2675. <option name="--force" shortcut="">
  2676. <help><![CDATA[Create the class even if the model already exists]]></help>
  2677. </option>
  2678. <option name="--migration" shortcut="-m">
  2679. <help><![CDATA[Create a new migration file for the model]]></help>
  2680. </option>
  2681. <option name="--policy" shortcut="">
  2682. <help><![CDATA[Create a new policy for the model]]></help>
  2683. </option>
  2684. <option name="--seed" shortcut="-s">
  2685. <help><![CDATA[Create a new seeder for the model]]></help>
  2686. </option>
  2687. <option name="--pivot" shortcut="-p">
  2688. <help><![CDATA[Indicates if the generated model should be a custom intermediate table model]]></help>
  2689. </option>
  2690. <option name="--resource" shortcut="-r">
  2691. <help><![CDATA[Indicates if the generated controller should be a resource controller]]></help>
  2692. </option>
  2693. <option name="--api" shortcut="">
  2694. <help><![CDATA[Indicates if the generated controller should be an API controller]]></help>
  2695. </option>
  2696. <option name="--requests" shortcut="-R">
  2697. <help><![CDATA[Create new form request classes and use them in the resource controller]]></help>
  2698. </option>
  2699. <option name="--test" shortcut="">
  2700. <help><![CDATA[Generate an accompanying PHPUnit test for the Model]]></help>
  2701. </option>
  2702. <option name="--pest" shortcut="">
  2703. <help><![CDATA[Generate an accompanying Pest test for the Model]]></help>
  2704. </option>
  2705. <option name="--help" shortcut="-h">
  2706. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2707. </option>
  2708. <option name="--quiet" shortcut="-q">
  2709. <help><![CDATA[Do not output any message]]></help>
  2710. </option>
  2711. <option name="--verbose" shortcut="-v">
  2712. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2713. </option>
  2714. <option name="--version" shortcut="-V">
  2715. <help><![CDATA[Display this application version]]></help>
  2716. </option>
  2717. <option name="--ansi" shortcut="">
  2718. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2719. </option>
  2720. <option name="--no-ansi" shortcut="">
  2721. <help><![CDATA[Negate the "--ansi" option]]></help>
  2722. </option>
  2723. <option name="--no-interaction" shortcut="-n">
  2724. <help><![CDATA[Do not ask any interactive question]]></help>
  2725. </option>
  2726. <option name="--env" shortcut="" pattern="equals">
  2727. <help><![CDATA[The environment the command should run under]]></help>
  2728. </option>
  2729. </optionsBefore>
  2730. </command>
  2731. <command>
  2732. <name>make:notification</name>
  2733. <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>--test</td><td></td><td>Generate an accompanying PHPUnit test for the Notification</td></tr> <tr><td>--pest</td><td></td><td>Generate an accompanying Pest test for the Notification</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2734. <params>name</params>
  2735. <optionsBefore>
  2736. <option name="--force" shortcut="-f">
  2737. <help><![CDATA[Create the class even if the notification already exists]]></help>
  2738. </option>
  2739. <option name="--markdown" shortcut="-m" pattern="equals">
  2740. <help><![CDATA[Create a new Markdown template for the notification]]></help>
  2741. </option>
  2742. <option name="--test" shortcut="">
  2743. <help><![CDATA[Generate an accompanying PHPUnit test for the Notification]]></help>
  2744. </option>
  2745. <option name="--pest" shortcut="">
  2746. <help><![CDATA[Generate an accompanying Pest test for the Notification]]></help>
  2747. </option>
  2748. <option name="--help" shortcut="-h">
  2749. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2750. </option>
  2751. <option name="--quiet" shortcut="-q">
  2752. <help><![CDATA[Do not output any message]]></help>
  2753. </option>
  2754. <option name="--verbose" shortcut="-v">
  2755. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2756. </option>
  2757. <option name="--version" shortcut="-V">
  2758. <help><![CDATA[Display this application version]]></help>
  2759. </option>
  2760. <option name="--ansi" shortcut="">
  2761. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2762. </option>
  2763. <option name="--no-ansi" shortcut="">
  2764. <help><![CDATA[Negate the "--ansi" option]]></help>
  2765. </option>
  2766. <option name="--no-interaction" shortcut="-n">
  2767. <help><![CDATA[Do not ask any interactive question]]></help>
  2768. </option>
  2769. <option name="--env" shortcut="" pattern="equals">
  2770. <help><![CDATA[The environment the command should run under]]></help>
  2771. </option>
  2772. </optionsBefore>
  2773. </command>
  2774. <command>
  2775. <name>make:observer</name>
  2776. <help><![CDATA[Create a new observer class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--model</td><td>(-m)</td><td>The model that the observer applies to.</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</td></tr> <tr><td>--no-interaction</td><td>(-n)</td><td>Do not ask any interactive question</td></tr> <tr><td>--env</td><td></td><td>The environment the command should run under</td></tr> </table> <br/>]]></help>
  2777. <params>name</params>
  2778. <optionsBefore>
  2779. <option name="--model" shortcut="-m" pattern="equals">
  2780. <help><![CDATA[The model that the observer applies to.]]></help>
  2781. </option>
  2782. <option name="--help" shortcut="-h">
  2783. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2784. </option>
  2785. <option name="--quiet" shortcut="-q">
  2786. <help><![CDATA[Do not output any message]]></help>
  2787. </option>
  2788. <option name="--verbose" shortcut="-v">
  2789. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2790. </option>
  2791. <option name="--version" shortcut="-V">
  2792. <help><![CDATA[Display this application version]]></help>
  2793. </option>
  2794. <option name="--ansi" shortcut="">
  2795. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2796. </option>
  2797. <option name="--no-ansi" shortcut="">
  2798. <help><![CDATA[Negate the "--ansi" option]]></help>
  2799. </option>
  2800. <option name="--no-interaction" shortcut="-n">
  2801. <help><![CDATA[Do not ask any interactive question]]></help>
  2802. </option>
  2803. <option name="--env" shortcut="" pattern="equals">
  2804. <help><![CDATA[The environment the command should run under]]></help>
  2805. </option>
  2806. </optionsBefore>
  2807. </command>
  2808. <command>
  2809. <name>make:policy</name>
  2810. <help><![CDATA[Create a new policy class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--model</td><td>(-m)</td><td>The model that the policy applies to</td></tr> <tr><td>--guard</td><td>(-g)</td><td>The guard that the policy relies on</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2811. <params>name</params>
  2812. <optionsBefore>
  2813. <option name="--model" shortcut="-m" pattern="equals">
  2814. <help><![CDATA[The model that the policy applies to]]></help>
  2815. </option>
  2816. <option name="--guard" shortcut="-g" pattern="equals">
  2817. <help><![CDATA[The guard that the policy relies on]]></help>
  2818. </option>
  2819. <option name="--help" shortcut="-h">
  2820. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2821. </option>
  2822. <option name="--quiet" shortcut="-q">
  2823. <help><![CDATA[Do not output any message]]></help>
  2824. </option>
  2825. <option name="--verbose" shortcut="-v">
  2826. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2827. </option>
  2828. <option name="--version" shortcut="-V">
  2829. <help><![CDATA[Display this application version]]></help>
  2830. </option>
  2831. <option name="--ansi" shortcut="">
  2832. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2833. </option>
  2834. <option name="--no-ansi" shortcut="">
  2835. <help><![CDATA[Negate the "--ansi" option]]></help>
  2836. </option>
  2837. <option name="--no-interaction" shortcut="-n">
  2838. <help><![CDATA[Do not ask any interactive question]]></help>
  2839. </option>
  2840. <option name="--env" shortcut="" pattern="equals">
  2841. <help><![CDATA[The environment the command should run under]]></help>
  2842. </option>
  2843. </optionsBefore>
  2844. </command>
  2845. <command>
  2846. <name>make:presenter</name>
  2847. <help><![CDATA[Create a new presenter.<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--force</td><td>(-f)</td><td>Force the creation if file already exists.</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2848. <params>name</params>
  2849. <optionsBefore>
  2850. <option name="--force" shortcut="-f">
  2851. <help><![CDATA[Force the creation if file already exists.]]></help>
  2852. </option>
  2853. <option name="--help" shortcut="-h">
  2854. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2855. </option>
  2856. <option name="--quiet" shortcut="-q">
  2857. <help><![CDATA[Do not output any message]]></help>
  2858. </option>
  2859. <option name="--verbose" shortcut="-v">
  2860. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2861. </option>
  2862. <option name="--version" shortcut="-V">
  2863. <help><![CDATA[Display this application version]]></help>
  2864. </option>
  2865. <option name="--ansi" shortcut="">
  2866. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2867. </option>
  2868. <option name="--no-ansi" shortcut="">
  2869. <help><![CDATA[Negate the "--ansi" option]]></help>
  2870. </option>
  2871. <option name="--no-interaction" shortcut="-n">
  2872. <help><![CDATA[Do not ask any interactive question]]></help>
  2873. </option>
  2874. <option name="--env" shortcut="" pattern="equals">
  2875. <help><![CDATA[The environment the command should run under]]></help>
  2876. </option>
  2877. </optionsBefore>
  2878. </command>
  2879. <command>
  2880. <name>make:provider</name>
  2881. <help><![CDATA[Create a new service provider class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2882. <params>name</params>
  2883. <optionsBefore>
  2884. <option name="--help" shortcut="-h">
  2885. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2886. </option>
  2887. <option name="--quiet" shortcut="-q">
  2888. <help><![CDATA[Do not output any message]]></help>
  2889. </option>
  2890. <option name="--verbose" shortcut="-v">
  2891. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2892. </option>
  2893. <option name="--version" shortcut="-V">
  2894. <help><![CDATA[Display this application version]]></help>
  2895. </option>
  2896. <option name="--ansi" shortcut="">
  2897. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2898. </option>
  2899. <option name="--no-ansi" shortcut="">
  2900. <help><![CDATA[Negate the "--ansi" option]]></help>
  2901. </option>
  2902. <option name="--no-interaction" shortcut="-n">
  2903. <help><![CDATA[Do not ask any interactive question]]></help>
  2904. </option>
  2905. <option name="--env" shortcut="" pattern="equals">
  2906. <help><![CDATA[The environment the command should run under]]></help>
  2907. </option>
  2908. </optionsBefore>
  2909. </command>
  2910. <command>
  2911. <name>make:repository</name>
  2912. <help><![CDATA[Create a new repository.<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--fillable</td><td></td><td>The fillable attributes.</td></tr> <tr><td>--rules</td><td></td><td>The rules of validation attributes.</td></tr> <tr><td>--validator</td><td></td><td>Adds validator reference to the repository.</td></tr> <tr><td>--force</td><td>(-f)</td><td>Force the creation if file already exists.</td></tr> <tr><td>--skip-migration</td><td></td><td>Skip the creation of a migration file.</td></tr> <tr><td>--skip-model</td><td></td><td>Skip the creation of a model.</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2913. <params>name</params>
  2914. <optionsBefore>
  2915. <option name="--fillable" shortcut="" pattern="equals">
  2916. <help><![CDATA[The fillable attributes.]]></help>
  2917. </option>
  2918. <option name="--rules" shortcut="" pattern="equals">
  2919. <help><![CDATA[The rules of validation attributes.]]></help>
  2920. </option>
  2921. <option name="--validator" shortcut="" pattern="equals">
  2922. <help><![CDATA[Adds validator reference to the repository.]]></help>
  2923. </option>
  2924. <option name="--force" shortcut="-f">
  2925. <help><![CDATA[Force the creation if file already exists.]]></help>
  2926. </option>
  2927. <option name="--skip-migration" shortcut="">
  2928. <help><![CDATA[Skip the creation of a migration file.]]></help>
  2929. </option>
  2930. <option name="--skip-model" shortcut="">
  2931. <help><![CDATA[Skip the creation of a model.]]></help>
  2932. </option>
  2933. <option name="--help" shortcut="-h">
  2934. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2935. </option>
  2936. <option name="--quiet" shortcut="-q">
  2937. <help><![CDATA[Do not output any message]]></help>
  2938. </option>
  2939. <option name="--verbose" shortcut="-v">
  2940. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2941. </option>
  2942. <option name="--version" shortcut="-V">
  2943. <help><![CDATA[Display this application version]]></help>
  2944. </option>
  2945. <option name="--ansi" shortcut="">
  2946. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2947. </option>
  2948. <option name="--no-ansi" shortcut="">
  2949. <help><![CDATA[Negate the "--ansi" option]]></help>
  2950. </option>
  2951. <option name="--no-interaction" shortcut="-n">
  2952. <help><![CDATA[Do not ask any interactive question]]></help>
  2953. </option>
  2954. <option name="--env" shortcut="" pattern="equals">
  2955. <help><![CDATA[The environment the command should run under]]></help>
  2956. </option>
  2957. </optionsBefore>
  2958. </command>
  2959. <command>
  2960. <name>make:request</name>
  2961. <help><![CDATA[Create a new form request class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2962. <params>name</params>
  2963. <optionsBefore>
  2964. <option name="--help" shortcut="-h">
  2965. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  2966. </option>
  2967. <option name="--quiet" shortcut="-q">
  2968. <help><![CDATA[Do not output any message]]></help>
  2969. </option>
  2970. <option name="--verbose" shortcut="-v">
  2971. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  2972. </option>
  2973. <option name="--version" shortcut="-V">
  2974. <help><![CDATA[Display this application version]]></help>
  2975. </option>
  2976. <option name="--ansi" shortcut="">
  2977. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  2978. </option>
  2979. <option name="--no-ansi" shortcut="">
  2980. <help><![CDATA[Negate the "--ansi" option]]></help>
  2981. </option>
  2982. <option name="--no-interaction" shortcut="-n">
  2983. <help><![CDATA[Do not ask any interactive question]]></help>
  2984. </option>
  2985. <option name="--env" shortcut="" pattern="equals">
  2986. <help><![CDATA[The environment the command should run under]]></help>
  2987. </option>
  2988. </optionsBefore>
  2989. </command>
  2990. <command>
  2991. <name>make:resource</name>
  2992. <help><![CDATA[Create a new resource<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--collection</td><td>(-c)</td><td>Create a resource collection</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  2993. <params>name</params>
  2994. <optionsBefore>
  2995. <option name="--collection" shortcut="-c">
  2996. <help><![CDATA[Create a resource collection]]></help>
  2997. </option>
  2998. <option name="--help" shortcut="-h">
  2999. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3000. </option>
  3001. <option name="--quiet" shortcut="-q">
  3002. <help><![CDATA[Do not output any message]]></help>
  3003. </option>
  3004. <option name="--verbose" shortcut="-v">
  3005. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3006. </option>
  3007. <option name="--version" shortcut="-V">
  3008. <help><![CDATA[Display this application version]]></help>
  3009. </option>
  3010. <option name="--ansi" shortcut="">
  3011. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3012. </option>
  3013. <option name="--no-ansi" shortcut="">
  3014. <help><![CDATA[Negate the "--ansi" option]]></help>
  3015. </option>
  3016. <option name="--no-interaction" shortcut="-n">
  3017. <help><![CDATA[Do not ask any interactive question]]></help>
  3018. </option>
  3019. <option name="--env" shortcut="" pattern="equals">
  3020. <help><![CDATA[The environment the command should run under]]></help>
  3021. </option>
  3022. </optionsBefore>
  3023. </command>
  3024. <command>
  3025. <name>make:rest-controller</name>
  3026. <help><![CDATA[Create a new RESTful controller.<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--force</td><td>(-f)</td><td>Force the creation if file already exists.</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3027. <params>name</params>
  3028. <optionsBefore>
  3029. <option name="--force" shortcut="-f">
  3030. <help><![CDATA[Force the creation if file already exists.]]></help>
  3031. </option>
  3032. <option name="--help" shortcut="-h">
  3033. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3034. </option>
  3035. <option name="--quiet" shortcut="-q">
  3036. <help><![CDATA[Do not output any message]]></help>
  3037. </option>
  3038. <option name="--verbose" shortcut="-v">
  3039. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3040. </option>
  3041. <option name="--version" shortcut="-V">
  3042. <help><![CDATA[Display this application version]]></help>
  3043. </option>
  3044. <option name="--ansi" shortcut="">
  3045. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3046. </option>
  3047. <option name="--no-ansi" shortcut="">
  3048. <help><![CDATA[Negate the "--ansi" option]]></help>
  3049. </option>
  3050. <option name="--no-interaction" shortcut="-n">
  3051. <help><![CDATA[Do not ask any interactive question]]></help>
  3052. </option>
  3053. <option name="--env" shortcut="" pattern="equals">
  3054. <help><![CDATA[The environment the command should run under]]></help>
  3055. </option>
  3056. </optionsBefore>
  3057. </command>
  3058. <command>
  3059. <name>make:rule</name>
  3060. <help><![CDATA[Create a new validation rule<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--implicit</td><td>(-i)</td><td>Generate an implicit rule.</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3061. <params>name</params>
  3062. <optionsBefore>
  3063. <option name="--implicit" shortcut="-i">
  3064. <help><![CDATA[Generate an implicit rule.]]></help>
  3065. </option>
  3066. <option name="--help" shortcut="-h">
  3067. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3068. </option>
  3069. <option name="--quiet" shortcut="-q">
  3070. <help><![CDATA[Do not output any message]]></help>
  3071. </option>
  3072. <option name="--verbose" shortcut="-v">
  3073. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3074. </option>
  3075. <option name="--version" shortcut="-V">
  3076. <help><![CDATA[Display this application version]]></help>
  3077. </option>
  3078. <option name="--ansi" shortcut="">
  3079. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3080. </option>
  3081. <option name="--no-ansi" shortcut="">
  3082. <help><![CDATA[Negate the "--ansi" option]]></help>
  3083. </option>
  3084. <option name="--no-interaction" shortcut="-n">
  3085. <help><![CDATA[Do not ask any interactive question]]></help>
  3086. </option>
  3087. <option name="--env" shortcut="" pattern="equals">
  3088. <help><![CDATA[The environment the command should run under]]></help>
  3089. </option>
  3090. </optionsBefore>
  3091. </command>
  3092. <command>
  3093. <name>make:seeder</name>
  3094. <help><![CDATA[Create a new seeder class<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3095. <params>name</params>
  3096. <optionsBefore>
  3097. <option name="--help" shortcut="-h">
  3098. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3099. </option>
  3100. <option name="--quiet" shortcut="-q">
  3101. <help><![CDATA[Do not output any message]]></help>
  3102. </option>
  3103. <option name="--verbose" shortcut="-v">
  3104. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3105. </option>
  3106. <option name="--version" shortcut="-V">
  3107. <help><![CDATA[Display this application version]]></help>
  3108. </option>
  3109. <option name="--ansi" shortcut="">
  3110. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3111. </option>
  3112. <option name="--no-ansi" shortcut="">
  3113. <help><![CDATA[Negate the "--ansi" option]]></help>
  3114. </option>
  3115. <option name="--no-interaction" shortcut="-n">
  3116. <help><![CDATA[Do not ask any interactive question]]></help>
  3117. </option>
  3118. <option name="--env" shortcut="" pattern="equals">
  3119. <help><![CDATA[The environment the command should run under]]></help>
  3120. </option>
  3121. </optionsBefore>
  3122. </command>
  3123. <command>
  3124. <name>make:test</name>
  3125. <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>--pest</td><td>(-p)</td><td>Create a Pest test.</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3126. <params>name</params>
  3127. <optionsBefore>
  3128. <option name="--unit" shortcut="-u">
  3129. <help><![CDATA[Create a unit test.]]></help>
  3130. </option>
  3131. <option name="--pest" shortcut="-p">
  3132. <help><![CDATA[Create a Pest test.]]></help>
  3133. </option>
  3134. <option name="--help" shortcut="-h">
  3135. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3136. </option>
  3137. <option name="--quiet" shortcut="-q">
  3138. <help><![CDATA[Do not output any message]]></help>
  3139. </option>
  3140. <option name="--verbose" shortcut="-v">
  3141. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3142. </option>
  3143. <option name="--version" shortcut="-V">
  3144. <help><![CDATA[Display this application version]]></help>
  3145. </option>
  3146. <option name="--ansi" shortcut="">
  3147. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3148. </option>
  3149. <option name="--no-ansi" shortcut="">
  3150. <help><![CDATA[Negate the "--ansi" option]]></help>
  3151. </option>
  3152. <option name="--no-interaction" shortcut="-n">
  3153. <help><![CDATA[Do not ask any interactive question]]></help>
  3154. </option>
  3155. <option name="--env" shortcut="" pattern="equals">
  3156. <help><![CDATA[The environment the command should run under]]></help>
  3157. </option>
  3158. </optionsBefore>
  3159. </command>
  3160. <command>
  3161. <name>make:transformer</name>
  3162. <help><![CDATA[Create a new transformer.<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--force</td><td>(-f)</td><td>Force the creation if file already exists.</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3163. <params>name</params>
  3164. <optionsBefore>
  3165. <option name="--force" shortcut="-f">
  3166. <help><![CDATA[Force the creation if file already exists.]]></help>
  3167. </option>
  3168. <option name="--help" shortcut="-h">
  3169. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3170. </option>
  3171. <option name="--quiet" shortcut="-q">
  3172. <help><![CDATA[Do not output any message]]></help>
  3173. </option>
  3174. <option name="--verbose" shortcut="-v">
  3175. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3176. </option>
  3177. <option name="--version" shortcut="-V">
  3178. <help><![CDATA[Display this application version]]></help>
  3179. </option>
  3180. <option name="--ansi" shortcut="">
  3181. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3182. </option>
  3183. <option name="--no-ansi" shortcut="">
  3184. <help><![CDATA[Negate the "--ansi" option]]></help>
  3185. </option>
  3186. <option name="--no-interaction" shortcut="-n">
  3187. <help><![CDATA[Do not ask any interactive question]]></help>
  3188. </option>
  3189. <option name="--env" shortcut="" pattern="equals">
  3190. <help><![CDATA[The environment the command should run under]]></help>
  3191. </option>
  3192. </optionsBefore>
  3193. </command>
  3194. <command>
  3195. <name>make:validator</name>
  3196. <help><![CDATA[Create a new validator.<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--rules</td><td></td><td>The rules of validation attributes.</td></tr> <tr><td>--force</td><td>(-f)</td><td>Force the creation if file already exists.</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3197. <params>name</params>
  3198. <optionsBefore>
  3199. <option name="--rules" shortcut="" pattern="equals">
  3200. <help><![CDATA[The rules of validation attributes.]]></help>
  3201. </option>
  3202. <option name="--force" shortcut="-f">
  3203. <help><![CDATA[Force the creation if file already exists.]]></help>
  3204. </option>
  3205. <option name="--help" shortcut="-h">
  3206. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3207. </option>
  3208. <option name="--quiet" shortcut="-q">
  3209. <help><![CDATA[Do not output any message]]></help>
  3210. </option>
  3211. <option name="--verbose" shortcut="-v">
  3212. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3213. </option>
  3214. <option name="--version" shortcut="-V">
  3215. <help><![CDATA[Display this application version]]></help>
  3216. </option>
  3217. <option name="--ansi" shortcut="">
  3218. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3219. </option>
  3220. <option name="--no-ansi" shortcut="">
  3221. <help><![CDATA[Negate the "--ansi" option]]></help>
  3222. </option>
  3223. <option name="--no-interaction" shortcut="-n">
  3224. <help><![CDATA[Do not ask any interactive question]]></help>
  3225. </option>
  3226. <option name="--env" shortcut="" pattern="equals">
  3227. <help><![CDATA[The environment the command should run under]]></help>
  3228. </option>
  3229. </optionsBefore>
  3230. </command>
  3231. <command>
  3232. <name>migrate:fresh</name>
  3233. <help><![CDATA[Drop all tables and re-run all migrations<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--database</td><td></td><td>The database connection to use</td></tr> <tr><td>--drop-views</td><td></td><td>Drop all tables and views</td></tr> <tr><td>--drop-types</td><td></td><td>Drop all tables and types (Postgres only)</td></tr> <tr><td>--force</td><td></td><td>Force the operation to run when in production</td></tr> <tr><td>--path</td><td></td><td>The path(s) to the migrations files to be executed</td></tr> <tr><td>--realpath</td><td></td><td>Indicate any provided migration file paths are pre-resolved absolute paths</td></tr> <tr><td>--schema-path</td><td></td><td>The path to a schema dump file</td></tr> <tr><td>--seed</td><td></td><td>Indicates if the seed task should be re-run</td></tr> <tr><td>--seeder</td><td></td><td>The class name of the root seeder</td></tr> <tr><td>--step</td><td></td><td>Force the migrations to be run so they can be rolled back individually</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3234. <optionsBefore>
  3235. <option name="--database" shortcut="" pattern="equals">
  3236. <help><![CDATA[The database connection to use]]></help>
  3237. </option>
  3238. <option name="--drop-views" shortcut="">
  3239. <help><![CDATA[Drop all tables and views]]></help>
  3240. </option>
  3241. <option name="--drop-types" shortcut="">
  3242. <help><![CDATA[Drop all tables and types (Postgres only)]]></help>
  3243. </option>
  3244. <option name="--force" shortcut="">
  3245. <help><![CDATA[Force the operation to run when in production]]></help>
  3246. </option>
  3247. <option name="--path" shortcut="" pattern="equals">
  3248. <help><![CDATA[The path(s) to the migrations files to be executed]]></help>
  3249. </option>
  3250. <option name="--realpath" shortcut="">
  3251. <help><![CDATA[Indicate any provided migration file paths are pre-resolved absolute paths]]></help>
  3252. </option>
  3253. <option name="--schema-path" shortcut="" pattern="equals">
  3254. <help><![CDATA[The path to a schema dump file]]></help>
  3255. </option>
  3256. <option name="--seed" shortcut="">
  3257. <help><![CDATA[Indicates if the seed task should be re-run]]></help>
  3258. </option>
  3259. <option name="--seeder" shortcut="" pattern="equals">
  3260. <help><![CDATA[The class name of the root seeder]]></help>
  3261. </option>
  3262. <option name="--step" shortcut="">
  3263. <help><![CDATA[Force the migrations to be run so they can be rolled back individually]]></help>
  3264. </option>
  3265. <option name="--help" shortcut="-h">
  3266. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3267. </option>
  3268. <option name="--quiet" shortcut="-q">
  3269. <help><![CDATA[Do not output any message]]></help>
  3270. </option>
  3271. <option name="--verbose" shortcut="-v">
  3272. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3273. </option>
  3274. <option name="--version" shortcut="-V">
  3275. <help><![CDATA[Display this application version]]></help>
  3276. </option>
  3277. <option name="--ansi" shortcut="">
  3278. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3279. </option>
  3280. <option name="--no-ansi" shortcut="">
  3281. <help><![CDATA[Negate the "--ansi" option]]></help>
  3282. </option>
  3283. <option name="--no-interaction" shortcut="-n">
  3284. <help><![CDATA[Do not ask any interactive question]]></help>
  3285. </option>
  3286. <option name="--env" shortcut="" pattern="equals">
  3287. <help><![CDATA[The environment the command should run under]]></help>
  3288. </option>
  3289. </optionsBefore>
  3290. </command>
  3291. <command>
  3292. <name>migrate:install</name>
  3293. <help><![CDATA[Create the migration repository<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--database</td><td></td><td>The database connection to use</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3294. <optionsBefore>
  3295. <option name="--database" shortcut="" pattern="equals">
  3296. <help><![CDATA[The database connection to use]]></help>
  3297. </option>
  3298. <option name="--help" shortcut="-h">
  3299. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3300. </option>
  3301. <option name="--quiet" shortcut="-q">
  3302. <help><![CDATA[Do not output any message]]></help>
  3303. </option>
  3304. <option name="--verbose" shortcut="-v">
  3305. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3306. </option>
  3307. <option name="--version" shortcut="-V">
  3308. <help><![CDATA[Display this application version]]></help>
  3309. </option>
  3310. <option name="--ansi" shortcut="">
  3311. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3312. </option>
  3313. <option name="--no-ansi" shortcut="">
  3314. <help><![CDATA[Negate the "--ansi" option]]></help>
  3315. </option>
  3316. <option name="--no-interaction" shortcut="-n">
  3317. <help><![CDATA[Do not ask any interactive question]]></help>
  3318. </option>
  3319. <option name="--env" shortcut="" pattern="equals">
  3320. <help><![CDATA[The environment the command should run under]]></help>
  3321. </option>
  3322. </optionsBefore>
  3323. </command>
  3324. <command>
  3325. <name>migrate:refresh</name>
  3326. <help><![CDATA[Reset and re-run all migrations<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--database</td><td></td><td>The database connection to use</td></tr> <tr><td>--force</td><td></td><td>Force the operation to run when in production</td></tr> <tr><td>--path</td><td></td><td>The path(s) to the migrations files to be executed</td></tr> <tr><td>--realpath</td><td></td><td>Indicate any provided migration file paths are pre-resolved absolute paths</td></tr> <tr><td>--seed</td><td></td><td>Indicates if the seed task should be re-run</td></tr> <tr><td>--seeder</td><td></td><td>The class name of the root seeder</td></tr> <tr><td>--step</td><td></td><td>The number of migrations to be reverted & re-run</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3327. <optionsBefore>
  3328. <option name="--database" shortcut="" pattern="equals">
  3329. <help><![CDATA[The database connection to use]]></help>
  3330. </option>
  3331. <option name="--force" shortcut="">
  3332. <help><![CDATA[Force the operation to run when in production]]></help>
  3333. </option>
  3334. <option name="--path" shortcut="" pattern="equals">
  3335. <help><![CDATA[The path(s) to the migrations files to be executed]]></help>
  3336. </option>
  3337. <option name="--realpath" shortcut="">
  3338. <help><![CDATA[Indicate any provided migration file paths are pre-resolved absolute paths]]></help>
  3339. </option>
  3340. <option name="--seed" shortcut="">
  3341. <help><![CDATA[Indicates if the seed task should be re-run]]></help>
  3342. </option>
  3343. <option name="--seeder" shortcut="" pattern="equals">
  3344. <help><![CDATA[The class name of the root seeder]]></help>
  3345. </option>
  3346. <option name="--step" shortcut="" pattern="equals">
  3347. <help><![CDATA[The number of migrations to be reverted & re-run]]></help>
  3348. </option>
  3349. <option name="--help" shortcut="-h">
  3350. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3351. </option>
  3352. <option name="--quiet" shortcut="-q">
  3353. <help><![CDATA[Do not output any message]]></help>
  3354. </option>
  3355. <option name="--verbose" shortcut="-v">
  3356. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3357. </option>
  3358. <option name="--version" shortcut="-V">
  3359. <help><![CDATA[Display this application version]]></help>
  3360. </option>
  3361. <option name="--ansi" shortcut="">
  3362. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3363. </option>
  3364. <option name="--no-ansi" shortcut="">
  3365. <help><![CDATA[Negate the "--ansi" option]]></help>
  3366. </option>
  3367. <option name="--no-interaction" shortcut="-n">
  3368. <help><![CDATA[Do not ask any interactive question]]></help>
  3369. </option>
  3370. <option name="--env" shortcut="" pattern="equals">
  3371. <help><![CDATA[The environment the command should run under]]></help>
  3372. </option>
  3373. </optionsBefore>
  3374. </command>
  3375. <command>
  3376. <name>migrate:reset</name>
  3377. <help><![CDATA[Rollback all database migrations<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--database</td><td></td><td>The database connection to use</td></tr> <tr><td>--force</td><td></td><td>Force the operation to run when in production</td></tr> <tr><td>--path</td><td></td><td>The path(s) to the migrations files to be executed</td></tr> <tr><td>--realpath</td><td></td><td>Indicate any provided migration file paths are pre-resolved absolute paths</td></tr> <tr><td>--pretend</td><td></td><td>Dump the SQL queries that would be run</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3378. <optionsBefore>
  3379. <option name="--database" shortcut="" pattern="equals">
  3380. <help><![CDATA[The database connection to use]]></help>
  3381. </option>
  3382. <option name="--force" shortcut="">
  3383. <help><![CDATA[Force the operation to run when in production]]></help>
  3384. </option>
  3385. <option name="--path" shortcut="" pattern="equals">
  3386. <help><![CDATA[The path(s) to the migrations files to be executed]]></help>
  3387. </option>
  3388. <option name="--realpath" shortcut="">
  3389. <help><![CDATA[Indicate any provided migration file paths are pre-resolved absolute paths]]></help>
  3390. </option>
  3391. <option name="--pretend" shortcut="">
  3392. <help><![CDATA[Dump the SQL queries that would be run]]></help>
  3393. </option>
  3394. <option name="--help" shortcut="-h">
  3395. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3396. </option>
  3397. <option name="--quiet" shortcut="-q">
  3398. <help><![CDATA[Do not output any message]]></help>
  3399. </option>
  3400. <option name="--verbose" shortcut="-v">
  3401. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3402. </option>
  3403. <option name="--version" shortcut="-V">
  3404. <help><![CDATA[Display this application version]]></help>
  3405. </option>
  3406. <option name="--ansi" shortcut="">
  3407. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3408. </option>
  3409. <option name="--no-ansi" shortcut="">
  3410. <help><![CDATA[Negate the "--ansi" option]]></help>
  3411. </option>
  3412. <option name="--no-interaction" shortcut="-n">
  3413. <help><![CDATA[Do not ask any interactive question]]></help>
  3414. </option>
  3415. <option name="--env" shortcut="" pattern="equals">
  3416. <help><![CDATA[The environment the command should run under]]></help>
  3417. </option>
  3418. </optionsBefore>
  3419. </command>
  3420. <command>
  3421. <name>migrate:rollback</name>
  3422. <help><![CDATA[Rollback the last database migration<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--database</td><td></td><td>The database connection to use</td></tr> <tr><td>--force</td><td></td><td>Force the operation to run when in production</td></tr> <tr><td>--path</td><td></td><td>The path(s) to the migrations files to be executed</td></tr> <tr><td>--realpath</td><td></td><td>Indicate any provided migration file paths are pre-resolved absolute paths</td></tr> <tr><td>--pretend</td><td></td><td>Dump the SQL queries that would be run</td></tr> <tr><td>--step</td><td></td><td>The number of migrations to be reverted</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3423. <optionsBefore>
  3424. <option name="--database" shortcut="" pattern="equals">
  3425. <help><![CDATA[The database connection to use]]></help>
  3426. </option>
  3427. <option name="--force" shortcut="">
  3428. <help><![CDATA[Force the operation to run when in production]]></help>
  3429. </option>
  3430. <option name="--path" shortcut="" pattern="equals">
  3431. <help><![CDATA[The path(s) to the migrations files to be executed]]></help>
  3432. </option>
  3433. <option name="--realpath" shortcut="">
  3434. <help><![CDATA[Indicate any provided migration file paths are pre-resolved absolute paths]]></help>
  3435. </option>
  3436. <option name="--pretend" shortcut="">
  3437. <help><![CDATA[Dump the SQL queries that would be run]]></help>
  3438. </option>
  3439. <option name="--step" shortcut="" pattern="equals">
  3440. <help><![CDATA[The number of migrations to be reverted]]></help>
  3441. </option>
  3442. <option name="--help" shortcut="-h">
  3443. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3444. </option>
  3445. <option name="--quiet" shortcut="-q">
  3446. <help><![CDATA[Do not output any message]]></help>
  3447. </option>
  3448. <option name="--verbose" shortcut="-v">
  3449. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3450. </option>
  3451. <option name="--version" shortcut="-V">
  3452. <help><![CDATA[Display this application version]]></help>
  3453. </option>
  3454. <option name="--ansi" shortcut="">
  3455. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3456. </option>
  3457. <option name="--no-ansi" shortcut="">
  3458. <help><![CDATA[Negate the "--ansi" option]]></help>
  3459. </option>
  3460. <option name="--no-interaction" shortcut="-n">
  3461. <help><![CDATA[Do not ask any interactive question]]></help>
  3462. </option>
  3463. <option name="--env" shortcut="" pattern="equals">
  3464. <help><![CDATA[The environment the command should run under]]></help>
  3465. </option>
  3466. </optionsBefore>
  3467. </command>
  3468. <command>
  3469. <name>migrate:status</name>
  3470. <help><![CDATA[Show the status of each migration<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--database</td><td></td><td>The database connection to use</td></tr> <tr><td>--path</td><td></td><td>The path(s) to the migrations files to use</td></tr> <tr><td>--realpath</td><td></td><td>Indicate any provided migration file paths are pre-resolved absolute paths</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3471. <optionsBefore>
  3472. <option name="--database" shortcut="" pattern="equals">
  3473. <help><![CDATA[The database connection to use]]></help>
  3474. </option>
  3475. <option name="--path" shortcut="" pattern="equals">
  3476. <help><![CDATA[The path(s) to the migrations files to use]]></help>
  3477. </option>
  3478. <option name="--realpath" shortcut="">
  3479. <help><![CDATA[Indicate any provided migration file paths are pre-resolved absolute paths]]></help>
  3480. </option>
  3481. <option name="--help" shortcut="-h">
  3482. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3483. </option>
  3484. <option name="--quiet" shortcut="-q">
  3485. <help><![CDATA[Do not output any message]]></help>
  3486. </option>
  3487. <option name="--verbose" shortcut="-v">
  3488. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3489. </option>
  3490. <option name="--version" shortcut="-V">
  3491. <help><![CDATA[Display this application version]]></help>
  3492. </option>
  3493. <option name="--ansi" shortcut="">
  3494. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3495. </option>
  3496. <option name="--no-ansi" shortcut="">
  3497. <help><![CDATA[Negate the "--ansi" option]]></help>
  3498. </option>
  3499. <option name="--no-interaction" shortcut="-n">
  3500. <help><![CDATA[Do not ask any interactive question]]></help>
  3501. </option>
  3502. <option name="--env" shortcut="" pattern="equals">
  3503. <help><![CDATA[The environment the command should run under]]></help>
  3504. </option>
  3505. </optionsBefore>
  3506. </command>
  3507. <command>
  3508. <name>model:prune</name>
  3509. <help><![CDATA[Prune models that are no longer needed<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--model</td><td></td><td>Class names of the models to be pruned</td></tr> <tr><td>--except</td><td></td><td>Class names of the models to be excluded from pruning</td></tr> <tr><td>--chunk</td><td></td><td>The number of models to retrieve per chunk of models to be deleted</td></tr> <tr><td>--pretend</td><td></td><td>Display the number of prunable records found instead of deleting them</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3510. <optionsBefore>
  3511. <option name="--model" shortcut="" pattern="equals">
  3512. <help><![CDATA[Class names of the models to be pruned]]></help>
  3513. </option>
  3514. <option name="--except" shortcut="" pattern="equals">
  3515. <help><![CDATA[Class names of the models to be excluded from pruning]]></help>
  3516. </option>
  3517. <option name="--chunk" shortcut="" pattern="equals">
  3518. <help><![CDATA[The number of models to retrieve per chunk of models to be deleted]]></help>
  3519. </option>
  3520. <option name="--pretend" shortcut="">
  3521. <help><![CDATA[Display the number of prunable records found instead of deleting them]]></help>
  3522. </option>
  3523. <option name="--help" shortcut="-h">
  3524. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3525. </option>
  3526. <option name="--quiet" shortcut="-q">
  3527. <help><![CDATA[Do not output any message]]></help>
  3528. </option>
  3529. <option name="--verbose" shortcut="-v">
  3530. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3531. </option>
  3532. <option name="--version" shortcut="-V">
  3533. <help><![CDATA[Display this application version]]></help>
  3534. </option>
  3535. <option name="--ansi" shortcut="">
  3536. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3537. </option>
  3538. <option name="--no-ansi" shortcut="">
  3539. <help><![CDATA[Negate the "--ansi" option]]></help>
  3540. </option>
  3541. <option name="--no-interaction" shortcut="-n">
  3542. <help><![CDATA[Do not ask any interactive question]]></help>
  3543. </option>
  3544. <option name="--env" shortcut="" pattern="equals">
  3545. <help><![CDATA[The environment the command should run under]]></help>
  3546. </option>
  3547. </optionsBefore>
  3548. </command>
  3549. <command>
  3550. <name>notifications:table</name>
  3551. <help><![CDATA[Create a migration for the notifications table<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3552. <optionsBefore>
  3553. <option name="--help" shortcut="-h">
  3554. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3555. </option>
  3556. <option name="--quiet" shortcut="-q">
  3557. <help><![CDATA[Do not output any message]]></help>
  3558. </option>
  3559. <option name="--verbose" shortcut="-v">
  3560. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3561. </option>
  3562. <option name="--version" shortcut="-V">
  3563. <help><![CDATA[Display this application version]]></help>
  3564. </option>
  3565. <option name="--ansi" shortcut="">
  3566. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3567. </option>
  3568. <option name="--no-ansi" shortcut="">
  3569. <help><![CDATA[Negate the "--ansi" option]]></help>
  3570. </option>
  3571. <option name="--no-interaction" shortcut="-n">
  3572. <help><![CDATA[Do not ask any interactive question]]></help>
  3573. </option>
  3574. <option name="--env" shortcut="" pattern="equals">
  3575. <help><![CDATA[The environment the command should run under]]></help>
  3576. </option>
  3577. </optionsBefore>
  3578. </command>
  3579. <command>
  3580. <name>optimize:clear</name>
  3581. <help><![CDATA[Remove the cached bootstrap files<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3582. <optionsBefore>
  3583. <option name="--help" shortcut="-h">
  3584. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3585. </option>
  3586. <option name="--quiet" shortcut="-q">
  3587. <help><![CDATA[Do not output any message]]></help>
  3588. </option>
  3589. <option name="--verbose" shortcut="-v">
  3590. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3591. </option>
  3592. <option name="--version" shortcut="-V">
  3593. <help><![CDATA[Display this application version]]></help>
  3594. </option>
  3595. <option name="--ansi" shortcut="">
  3596. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3597. </option>
  3598. <option name="--no-ansi" shortcut="">
  3599. <help><![CDATA[Negate the "--ansi" option]]></help>
  3600. </option>
  3601. <option name="--no-interaction" shortcut="-n">
  3602. <help><![CDATA[Do not ask any interactive question]]></help>
  3603. </option>
  3604. <option name="--env" shortcut="" pattern="equals">
  3605. <help><![CDATA[The environment the command should run under]]></help>
  3606. </option>
  3607. </optionsBefore>
  3608. </command>
  3609. <command>
  3610. <name>package:discover</name>
  3611. <help><![CDATA[Rebuild the cached package manifest<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3612. <optionsBefore>
  3613. <option name="--help" shortcut="-h">
  3614. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3615. </option>
  3616. <option name="--quiet" shortcut="-q">
  3617. <help><![CDATA[Do not output any message]]></help>
  3618. </option>
  3619. <option name="--verbose" shortcut="-v">
  3620. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3621. </option>
  3622. <option name="--version" shortcut="-V">
  3623. <help><![CDATA[Display this application version]]></help>
  3624. </option>
  3625. <option name="--ansi" shortcut="">
  3626. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3627. </option>
  3628. <option name="--no-ansi" shortcut="">
  3629. <help><![CDATA[Negate the "--ansi" option]]></help>
  3630. </option>
  3631. <option name="--no-interaction" shortcut="-n">
  3632. <help><![CDATA[Do not ask any interactive question]]></help>
  3633. </option>
  3634. <option name="--env" shortcut="" pattern="equals">
  3635. <help><![CDATA[The environment the command should run under]]></help>
  3636. </option>
  3637. </optionsBefore>
  3638. </command>
  3639. <command>
  3640. <name>picker:anjuke</name>
  3641. <help><![CDATA[Command description<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3642. <optionsBefore>
  3643. <option name="--help" shortcut="-h">
  3644. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3645. </option>
  3646. <option name="--quiet" shortcut="-q">
  3647. <help><![CDATA[Do not output any message]]></help>
  3648. </option>
  3649. <option name="--verbose" shortcut="-v">
  3650. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3651. </option>
  3652. <option name="--version" shortcut="-V">
  3653. <help><![CDATA[Display this application version]]></help>
  3654. </option>
  3655. <option name="--ansi" shortcut="">
  3656. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3657. </option>
  3658. <option name="--no-ansi" shortcut="">
  3659. <help><![CDATA[Negate the "--ansi" option]]></help>
  3660. </option>
  3661. <option name="--no-interaction" shortcut="-n">
  3662. <help><![CDATA[Do not ask any interactive question]]></help>
  3663. </option>
  3664. <option name="--env" shortcut="" pattern="equals">
  3665. <help><![CDATA[The environment the command should run under]]></help>
  3666. </option>
  3667. </optionsBefore>
  3668. </command>
  3669. <command>
  3670. <name>picker:dfd</name>
  3671. <help><![CDATA[懂房帝<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3672. <optionsBefore>
  3673. <option name="--help" shortcut="-h">
  3674. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3675. </option>
  3676. <option name="--quiet" shortcut="-q">
  3677. <help><![CDATA[Do not output any message]]></help>
  3678. </option>
  3679. <option name="--verbose" shortcut="-v">
  3680. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3681. </option>
  3682. <option name="--version" shortcut="-V">
  3683. <help><![CDATA[Display this application version]]></help>
  3684. </option>
  3685. <option name="--ansi" shortcut="">
  3686. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3687. </option>
  3688. <option name="--no-ansi" shortcut="">
  3689. <help><![CDATA[Negate the "--ansi" option]]></help>
  3690. </option>
  3691. <option name="--no-interaction" shortcut="-n">
  3692. <help><![CDATA[Do not ask any interactive question]]></help>
  3693. </option>
  3694. <option name="--env" shortcut="" pattern="equals">
  3695. <help><![CDATA[The environment the command should run under]]></help>
  3696. </option>
  3697. </optionsBefore>
  3698. </command>
  3699. <command>
  3700. <name>queue:batches-table</name>
  3701. <help><![CDATA[Create a migration for the batches database table<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3702. <optionsBefore>
  3703. <option name="--help" shortcut="-h">
  3704. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3705. </option>
  3706. <option name="--quiet" shortcut="-q">
  3707. <help><![CDATA[Do not output any message]]></help>
  3708. </option>
  3709. <option name="--verbose" shortcut="-v">
  3710. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3711. </option>
  3712. <option name="--version" shortcut="-V">
  3713. <help><![CDATA[Display this application version]]></help>
  3714. </option>
  3715. <option name="--ansi" shortcut="">
  3716. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3717. </option>
  3718. <option name="--no-ansi" shortcut="">
  3719. <help><![CDATA[Negate the "--ansi" option]]></help>
  3720. </option>
  3721. <option name="--no-interaction" shortcut="-n">
  3722. <help><![CDATA[Do not ask any interactive question]]></help>
  3723. </option>
  3724. <option name="--env" shortcut="" pattern="equals">
  3725. <help><![CDATA[The environment the command should run under]]></help>
  3726. </option>
  3727. </optionsBefore>
  3728. </command>
  3729. <command>
  3730. <name>queue:clear</name>
  3731. <help><![CDATA[Delete all of the jobs from the specified queue<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--queue</td><td></td><td>The name of the queue to clear</td></tr> <tr><td>--force</td><td></td><td>Force the operation to run when in production</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3732. <params>connection[=null]</params>
  3733. <optionsBefore>
  3734. <option name="--queue" shortcut="" pattern="equals">
  3735. <help><![CDATA[The name of the queue to clear]]></help>
  3736. </option>
  3737. <option name="--force" shortcut="">
  3738. <help><![CDATA[Force the operation to run when in production]]></help>
  3739. </option>
  3740. <option name="--help" shortcut="-h">
  3741. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3742. </option>
  3743. <option name="--quiet" shortcut="-q">
  3744. <help><![CDATA[Do not output any message]]></help>
  3745. </option>
  3746. <option name="--verbose" shortcut="-v">
  3747. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3748. </option>
  3749. <option name="--version" shortcut="-V">
  3750. <help><![CDATA[Display this application version]]></help>
  3751. </option>
  3752. <option name="--ansi" shortcut="">
  3753. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3754. </option>
  3755. <option name="--no-ansi" shortcut="">
  3756. <help><![CDATA[Negate the "--ansi" option]]></help>
  3757. </option>
  3758. <option name="--no-interaction" shortcut="-n">
  3759. <help><![CDATA[Do not ask any interactive question]]></help>
  3760. </option>
  3761. <option name="--env" shortcut="" pattern="equals">
  3762. <help><![CDATA[The environment the command should run under]]></help>
  3763. </option>
  3764. </optionsBefore>
  3765. </command>
  3766. <command>
  3767. <name>queue:failed</name>
  3768. <help><![CDATA[List all of the failed queue jobs<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3769. <optionsBefore>
  3770. <option name="--help" shortcut="-h">
  3771. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3772. </option>
  3773. <option name="--quiet" shortcut="-q">
  3774. <help><![CDATA[Do not output any message]]></help>
  3775. </option>
  3776. <option name="--verbose" shortcut="-v">
  3777. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3778. </option>
  3779. <option name="--version" shortcut="-V">
  3780. <help><![CDATA[Display this application version]]></help>
  3781. </option>
  3782. <option name="--ansi" shortcut="">
  3783. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3784. </option>
  3785. <option name="--no-ansi" shortcut="">
  3786. <help><![CDATA[Negate the "--ansi" option]]></help>
  3787. </option>
  3788. <option name="--no-interaction" shortcut="-n">
  3789. <help><![CDATA[Do not ask any interactive question]]></help>
  3790. </option>
  3791. <option name="--env" shortcut="" pattern="equals">
  3792. <help><![CDATA[The environment the command should run under]]></help>
  3793. </option>
  3794. </optionsBefore>
  3795. </command>
  3796. <command>
  3797. <name>queue:failed-table</name>
  3798. <help><![CDATA[Create a migration for the failed queue jobs database table<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3799. <optionsBefore>
  3800. <option name="--help" shortcut="-h">
  3801. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3802. </option>
  3803. <option name="--quiet" shortcut="-q">
  3804. <help><![CDATA[Do not output any message]]></help>
  3805. </option>
  3806. <option name="--verbose" shortcut="-v">
  3807. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3808. </option>
  3809. <option name="--version" shortcut="-V">
  3810. <help><![CDATA[Display this application version]]></help>
  3811. </option>
  3812. <option name="--ansi" shortcut="">
  3813. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3814. </option>
  3815. <option name="--no-ansi" shortcut="">
  3816. <help><![CDATA[Negate the "--ansi" option]]></help>
  3817. </option>
  3818. <option name="--no-interaction" shortcut="-n">
  3819. <help><![CDATA[Do not ask any interactive question]]></help>
  3820. </option>
  3821. <option name="--env" shortcut="" pattern="equals">
  3822. <help><![CDATA[The environment the command should run under]]></help>
  3823. </option>
  3824. </optionsBefore>
  3825. </command>
  3826. <command>
  3827. <name>queue:flush</name>
  3828. <help><![CDATA[Flush all of the failed queue jobs<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3829. <optionsBefore>
  3830. <option name="--help" shortcut="-h">
  3831. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3832. </option>
  3833. <option name="--quiet" shortcut="-q">
  3834. <help><![CDATA[Do not output any message]]></help>
  3835. </option>
  3836. <option name="--verbose" shortcut="-v">
  3837. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3838. </option>
  3839. <option name="--version" shortcut="-V">
  3840. <help><![CDATA[Display this application version]]></help>
  3841. </option>
  3842. <option name="--ansi" shortcut="">
  3843. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3844. </option>
  3845. <option name="--no-ansi" shortcut="">
  3846. <help><![CDATA[Negate the "--ansi" option]]></help>
  3847. </option>
  3848. <option name="--no-interaction" shortcut="-n">
  3849. <help><![CDATA[Do not ask any interactive question]]></help>
  3850. </option>
  3851. <option name="--env" shortcut="" pattern="equals">
  3852. <help><![CDATA[The environment the command should run under]]></help>
  3853. </option>
  3854. </optionsBefore>
  3855. </command>
  3856. <command>
  3857. <name>queue:forget</name>
  3858. <help><![CDATA[Delete a failed queue job<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3859. <params>id</params>
  3860. <optionsBefore>
  3861. <option name="--help" shortcut="-h">
  3862. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3863. </option>
  3864. <option name="--quiet" shortcut="-q">
  3865. <help><![CDATA[Do not output any message]]></help>
  3866. </option>
  3867. <option name="--verbose" shortcut="-v">
  3868. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3869. </option>
  3870. <option name="--version" shortcut="-V">
  3871. <help><![CDATA[Display this application version]]></help>
  3872. </option>
  3873. <option name="--ansi" shortcut="">
  3874. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3875. </option>
  3876. <option name="--no-ansi" shortcut="">
  3877. <help><![CDATA[Negate the "--ansi" option]]></help>
  3878. </option>
  3879. <option name="--no-interaction" shortcut="-n">
  3880. <help><![CDATA[Do not ask any interactive question]]></help>
  3881. </option>
  3882. <option name="--env" shortcut="" pattern="equals">
  3883. <help><![CDATA[The environment the command should run under]]></help>
  3884. </option>
  3885. </optionsBefore>
  3886. </command>
  3887. <command>
  3888. <name>queue:listen</name>
  3889. <help><![CDATA[Listen to a given queue<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--name</td><td></td><td>The name of the worker</td></tr> <tr><td>--delay</td><td></td><td>The number of seconds to delay failed jobs (Deprecated)</td></tr> <tr><td>--backoff</td><td></td><td>The number of seconds to wait before retrying a job that encountered an uncaught exception</td></tr> <tr><td>--force</td><td></td><td>Force the worker to run even in maintenance mode</td></tr> <tr><td>--memory</td><td></td><td>The memory limit in megabytes</td></tr> <tr><td>--queue</td><td></td><td>The queue to listen on</td></tr> <tr><td>--sleep</td><td></td><td>Number of seconds to sleep when no job is available</td></tr> <tr><td>--timeout</td><td></td><td>The number of seconds a child process can run</td></tr> <tr><td>--tries</td><td></td><td>Number of times to attempt a job before logging it failed</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3890. <params>connection[=null]</params>
  3891. <optionsBefore>
  3892. <option name="--name" shortcut="" pattern="equals">
  3893. <help><![CDATA[The name of the worker]]></help>
  3894. </option>
  3895. <option name="--delay" shortcut="" pattern="equals">
  3896. <help><![CDATA[The number of seconds to delay failed jobs (Deprecated)]]></help>
  3897. </option>
  3898. <option name="--backoff" shortcut="" pattern="equals">
  3899. <help><![CDATA[The number of seconds to wait before retrying a job that encountered an uncaught exception]]></help>
  3900. </option>
  3901. <option name="--force" shortcut="">
  3902. <help><![CDATA[Force the worker to run even in maintenance mode]]></help>
  3903. </option>
  3904. <option name="--memory" shortcut="" pattern="equals">
  3905. <help><![CDATA[The memory limit in megabytes]]></help>
  3906. </option>
  3907. <option name="--queue" shortcut="" pattern="equals">
  3908. <help><![CDATA[The queue to listen on]]></help>
  3909. </option>
  3910. <option name="--sleep" shortcut="" pattern="equals">
  3911. <help><![CDATA[Number of seconds to sleep when no job is available]]></help>
  3912. </option>
  3913. <option name="--timeout" shortcut="" pattern="equals">
  3914. <help><![CDATA[The number of seconds a child process can run]]></help>
  3915. </option>
  3916. <option name="--tries" shortcut="" pattern="equals">
  3917. <help><![CDATA[Number of times to attempt a job before logging it failed]]></help>
  3918. </option>
  3919. <option name="--help" shortcut="-h">
  3920. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3921. </option>
  3922. <option name="--quiet" shortcut="-q">
  3923. <help><![CDATA[Do not output any message]]></help>
  3924. </option>
  3925. <option name="--verbose" shortcut="-v">
  3926. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3927. </option>
  3928. <option name="--version" shortcut="-V">
  3929. <help><![CDATA[Display this application version]]></help>
  3930. </option>
  3931. <option name="--ansi" shortcut="">
  3932. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3933. </option>
  3934. <option name="--no-ansi" shortcut="">
  3935. <help><![CDATA[Negate the "--ansi" option]]></help>
  3936. </option>
  3937. <option name="--no-interaction" shortcut="-n">
  3938. <help><![CDATA[Do not ask any interactive question]]></help>
  3939. </option>
  3940. <option name="--env" shortcut="" pattern="equals">
  3941. <help><![CDATA[The environment the command should run under]]></help>
  3942. </option>
  3943. </optionsBefore>
  3944. </command>
  3945. <command>
  3946. <name>queue:monitor</name>
  3947. <help><![CDATA[Monitor the size of the specified queues<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--max</td><td></td><td>The maximum number of jobs that can be on the queue before an event is dispatched</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3948. <params>queues</params>
  3949. <optionsBefore>
  3950. <option name="--max" shortcut="" pattern="equals">
  3951. <help><![CDATA[The maximum number of jobs that can be on the queue before an event is dispatched]]></help>
  3952. </option>
  3953. <option name="--help" shortcut="-h">
  3954. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3955. </option>
  3956. <option name="--quiet" shortcut="-q">
  3957. <help><![CDATA[Do not output any message]]></help>
  3958. </option>
  3959. <option name="--verbose" shortcut="-v">
  3960. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3961. </option>
  3962. <option name="--version" shortcut="-V">
  3963. <help><![CDATA[Display this application version]]></help>
  3964. </option>
  3965. <option name="--ansi" shortcut="">
  3966. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  3967. </option>
  3968. <option name="--no-ansi" shortcut="">
  3969. <help><![CDATA[Negate the "--ansi" option]]></help>
  3970. </option>
  3971. <option name="--no-interaction" shortcut="-n">
  3972. <help><![CDATA[Do not ask any interactive question]]></help>
  3973. </option>
  3974. <option name="--env" shortcut="" pattern="equals">
  3975. <help><![CDATA[The environment the command should run under]]></help>
  3976. </option>
  3977. </optionsBefore>
  3978. </command>
  3979. <command>
  3980. <name>queue:prune-batches</name>
  3981. <help><![CDATA[Prune stale entries from the batches database<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--hours</td><td></td><td>The number of hours to retain batch data</td></tr> <tr><td>--unfinished</td><td></td><td>The number of hours to retain unfinished batch data</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  3982. <optionsBefore>
  3983. <option name="--hours" shortcut="" pattern="equals">
  3984. <help><![CDATA[The number of hours to retain batch data]]></help>
  3985. </option>
  3986. <option name="--unfinished" shortcut="" pattern="equals">
  3987. <help><![CDATA[The number of hours to retain unfinished batch data]]></help>
  3988. </option>
  3989. <option name="--help" shortcut="-h">
  3990. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  3991. </option>
  3992. <option name="--quiet" shortcut="-q">
  3993. <help><![CDATA[Do not output any message]]></help>
  3994. </option>
  3995. <option name="--verbose" shortcut="-v">
  3996. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  3997. </option>
  3998. <option name="--version" shortcut="-V">
  3999. <help><![CDATA[Display this application version]]></help>
  4000. </option>
  4001. <option name="--ansi" shortcut="">
  4002. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4003. </option>
  4004. <option name="--no-ansi" shortcut="">
  4005. <help><![CDATA[Negate the "--ansi" option]]></help>
  4006. </option>
  4007. <option name="--no-interaction" shortcut="-n">
  4008. <help><![CDATA[Do not ask any interactive question]]></help>
  4009. </option>
  4010. <option name="--env" shortcut="" pattern="equals">
  4011. <help><![CDATA[The environment the command should run under]]></help>
  4012. </option>
  4013. </optionsBefore>
  4014. </command>
  4015. <command>
  4016. <name>queue:prune-failed</name>
  4017. <help><![CDATA[Prune stale entries from the failed jobs table<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--hours</td><td></td><td>The number of hours to retain failed jobs data</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4018. <optionsBefore>
  4019. <option name="--hours" shortcut="" pattern="equals">
  4020. <help><![CDATA[The number of hours to retain failed jobs data]]></help>
  4021. </option>
  4022. <option name="--help" shortcut="-h">
  4023. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4024. </option>
  4025. <option name="--quiet" shortcut="-q">
  4026. <help><![CDATA[Do not output any message]]></help>
  4027. </option>
  4028. <option name="--verbose" shortcut="-v">
  4029. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4030. </option>
  4031. <option name="--version" shortcut="-V">
  4032. <help><![CDATA[Display this application version]]></help>
  4033. </option>
  4034. <option name="--ansi" shortcut="">
  4035. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4036. </option>
  4037. <option name="--no-ansi" shortcut="">
  4038. <help><![CDATA[Negate the "--ansi" option]]></help>
  4039. </option>
  4040. <option name="--no-interaction" shortcut="-n">
  4041. <help><![CDATA[Do not ask any interactive question]]></help>
  4042. </option>
  4043. <option name="--env" shortcut="" pattern="equals">
  4044. <help><![CDATA[The environment the command should run under]]></help>
  4045. </option>
  4046. </optionsBefore>
  4047. </command>
  4048. <command>
  4049. <name>queue:restart</name>
  4050. <help><![CDATA[Restart queue worker daemons after their current job<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4051. <optionsBefore>
  4052. <option name="--help" shortcut="-h">
  4053. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4054. </option>
  4055. <option name="--quiet" shortcut="-q">
  4056. <help><![CDATA[Do not output any message]]></help>
  4057. </option>
  4058. <option name="--verbose" shortcut="-v">
  4059. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4060. </option>
  4061. <option name="--version" shortcut="-V">
  4062. <help><![CDATA[Display this application version]]></help>
  4063. </option>
  4064. <option name="--ansi" shortcut="">
  4065. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4066. </option>
  4067. <option name="--no-ansi" shortcut="">
  4068. <help><![CDATA[Negate the "--ansi" option]]></help>
  4069. </option>
  4070. <option name="--no-interaction" shortcut="-n">
  4071. <help><![CDATA[Do not ask any interactive question]]></help>
  4072. </option>
  4073. <option name="--env" shortcut="" pattern="equals">
  4074. <help><![CDATA[The environment the command should run under]]></help>
  4075. </option>
  4076. </optionsBefore>
  4077. </command>
  4078. <command>
  4079. <name>queue:retry</name>
  4080. <help><![CDATA[Retry a failed queue job<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--queue</td><td></td><td>Retry all of the failed jobs for the specified queue</td></tr> <tr><td>--range</td><td></td><td>Range of job IDs (numeric) to be retried</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4081. <params>id[=null]</params>
  4082. <optionsBefore>
  4083. <option name="--queue" shortcut="" pattern="equals">
  4084. <help><![CDATA[Retry all of the failed jobs for the specified queue]]></help>
  4085. </option>
  4086. <option name="--range" shortcut="" pattern="equals">
  4087. <help><![CDATA[Range of job IDs (numeric) to be retried]]></help>
  4088. </option>
  4089. <option name="--help" shortcut="-h">
  4090. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4091. </option>
  4092. <option name="--quiet" shortcut="-q">
  4093. <help><![CDATA[Do not output any message]]></help>
  4094. </option>
  4095. <option name="--verbose" shortcut="-v">
  4096. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4097. </option>
  4098. <option name="--version" shortcut="-V">
  4099. <help><![CDATA[Display this application version]]></help>
  4100. </option>
  4101. <option name="--ansi" shortcut="">
  4102. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4103. </option>
  4104. <option name="--no-ansi" shortcut="">
  4105. <help><![CDATA[Negate the "--ansi" option]]></help>
  4106. </option>
  4107. <option name="--no-interaction" shortcut="-n">
  4108. <help><![CDATA[Do not ask any interactive question]]></help>
  4109. </option>
  4110. <option name="--env" shortcut="" pattern="equals">
  4111. <help><![CDATA[The environment the command should run under]]></help>
  4112. </option>
  4113. </optionsBefore>
  4114. </command>
  4115. <command>
  4116. <name>queue:retry-batch</name>
  4117. <help><![CDATA[Retry the failed jobs for a batch<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4118. <params>id</params>
  4119. <optionsBefore>
  4120. <option name="--help" shortcut="-h">
  4121. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4122. </option>
  4123. <option name="--quiet" shortcut="-q">
  4124. <help><![CDATA[Do not output any message]]></help>
  4125. </option>
  4126. <option name="--verbose" shortcut="-v">
  4127. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4128. </option>
  4129. <option name="--version" shortcut="-V">
  4130. <help><![CDATA[Display this application version]]></help>
  4131. </option>
  4132. <option name="--ansi" shortcut="">
  4133. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4134. </option>
  4135. <option name="--no-ansi" shortcut="">
  4136. <help><![CDATA[Negate the "--ansi" option]]></help>
  4137. </option>
  4138. <option name="--no-interaction" shortcut="-n">
  4139. <help><![CDATA[Do not ask any interactive question]]></help>
  4140. </option>
  4141. <option name="--env" shortcut="" pattern="equals">
  4142. <help><![CDATA[The environment the command should run under]]></help>
  4143. </option>
  4144. </optionsBefore>
  4145. </command>
  4146. <command>
  4147. <name>queue:table</name>
  4148. <help><![CDATA[Create a migration for the queue jobs database table<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4149. <optionsBefore>
  4150. <option name="--help" shortcut="-h">
  4151. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4152. </option>
  4153. <option name="--quiet" shortcut="-q">
  4154. <help><![CDATA[Do not output any message]]></help>
  4155. </option>
  4156. <option name="--verbose" shortcut="-v">
  4157. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4158. </option>
  4159. <option name="--version" shortcut="-V">
  4160. <help><![CDATA[Display this application version]]></help>
  4161. </option>
  4162. <option name="--ansi" shortcut="">
  4163. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4164. </option>
  4165. <option name="--no-ansi" shortcut="">
  4166. <help><![CDATA[Negate the "--ansi" option]]></help>
  4167. </option>
  4168. <option name="--no-interaction" shortcut="-n">
  4169. <help><![CDATA[Do not ask any interactive question]]></help>
  4170. </option>
  4171. <option name="--env" shortcut="" pattern="equals">
  4172. <help><![CDATA[The environment the command should run under]]></help>
  4173. </option>
  4174. </optionsBefore>
  4175. </command>
  4176. <command>
  4177. <name>queue:work</name>
  4178. <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>--rest</td><td></td><td>Number of seconds to rest between jobs</td></tr> <tr><td>--timeout</td><td></td><td>The number of seconds a child process can run</td></tr> <tr><td>--tries</td><td></td><td>Number of times to attempt a job before logging it failed</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4179. <params>connection[=null]</params>
  4180. <optionsBefore>
  4181. <option name="--name" shortcut="" pattern="equals">
  4182. <help><![CDATA[The name of the worker]]></help>
  4183. </option>
  4184. <option name="--queue" shortcut="" pattern="equals">
  4185. <help><![CDATA[The names of the queues to work]]></help>
  4186. </option>
  4187. <option name="--daemon" shortcut="">
  4188. <help><![CDATA[Run the worker in daemon mode (Deprecated)]]></help>
  4189. </option>
  4190. <option name="--once" shortcut="">
  4191. <help><![CDATA[Only process the next job on the queue]]></help>
  4192. </option>
  4193. <option name="--stop-when-empty" shortcut="">
  4194. <help><![CDATA[Stop when the queue is empty]]></help>
  4195. </option>
  4196. <option name="--delay" shortcut="" pattern="equals">
  4197. <help><![CDATA[The number of seconds to delay failed jobs (Deprecated)]]></help>
  4198. </option>
  4199. <option name="--backoff" shortcut="" pattern="equals">
  4200. <help><![CDATA[The number of seconds to wait before retrying a job that encountered an uncaught exception]]></help>
  4201. </option>
  4202. <option name="--max-jobs" shortcut="" pattern="equals">
  4203. <help><![CDATA[The number of jobs to process before stopping]]></help>
  4204. </option>
  4205. <option name="--max-time" shortcut="" pattern="equals">
  4206. <help><![CDATA[The maximum number of seconds the worker should run]]></help>
  4207. </option>
  4208. <option name="--force" shortcut="">
  4209. <help><![CDATA[Force the worker to run even in maintenance mode]]></help>
  4210. </option>
  4211. <option name="--memory" shortcut="" pattern="equals">
  4212. <help><![CDATA[The memory limit in megabytes]]></help>
  4213. </option>
  4214. <option name="--sleep" shortcut="" pattern="equals">
  4215. <help><![CDATA[Number of seconds to sleep when no job is available]]></help>
  4216. </option>
  4217. <option name="--rest" shortcut="" pattern="equals">
  4218. <help><![CDATA[Number of seconds to rest between jobs]]></help>
  4219. </option>
  4220. <option name="--timeout" shortcut="" pattern="equals">
  4221. <help><![CDATA[The number of seconds a child process can run]]></help>
  4222. </option>
  4223. <option name="--tries" shortcut="" pattern="equals">
  4224. <help><![CDATA[Number of times to attempt a job before logging it failed]]></help>
  4225. </option>
  4226. <option name="--help" shortcut="-h">
  4227. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4228. </option>
  4229. <option name="--quiet" shortcut="-q">
  4230. <help><![CDATA[Do not output any message]]></help>
  4231. </option>
  4232. <option name="--verbose" shortcut="-v">
  4233. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4234. </option>
  4235. <option name="--version" shortcut="-V">
  4236. <help><![CDATA[Display this application version]]></help>
  4237. </option>
  4238. <option name="--ansi" shortcut="">
  4239. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4240. </option>
  4241. <option name="--no-ansi" shortcut="">
  4242. <help><![CDATA[Negate the "--ansi" option]]></help>
  4243. </option>
  4244. <option name="--no-interaction" shortcut="-n">
  4245. <help><![CDATA[Do not ask any interactive question]]></help>
  4246. </option>
  4247. <option name="--env" shortcut="" pattern="equals">
  4248. <help><![CDATA[The environment the command should run under]]></help>
  4249. </option>
  4250. </optionsBefore>
  4251. </command>
  4252. <command>
  4253. <name>route:cache</name>
  4254. <help><![CDATA[Create a route cache file for faster route registration<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4255. <optionsBefore>
  4256. <option name="--help" shortcut="-h">
  4257. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4258. </option>
  4259. <option name="--quiet" shortcut="-q">
  4260. <help><![CDATA[Do not output any message]]></help>
  4261. </option>
  4262. <option name="--verbose" shortcut="-v">
  4263. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4264. </option>
  4265. <option name="--version" shortcut="-V">
  4266. <help><![CDATA[Display this application version]]></help>
  4267. </option>
  4268. <option name="--ansi" shortcut="">
  4269. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4270. </option>
  4271. <option name="--no-ansi" shortcut="">
  4272. <help><![CDATA[Negate the "--ansi" option]]></help>
  4273. </option>
  4274. <option name="--no-interaction" shortcut="-n">
  4275. <help><![CDATA[Do not ask any interactive question]]></help>
  4276. </option>
  4277. <option name="--env" shortcut="" pattern="equals">
  4278. <help><![CDATA[The environment the command should run under]]></help>
  4279. </option>
  4280. </optionsBefore>
  4281. </command>
  4282. <command>
  4283. <name>route:clear</name>
  4284. <help><![CDATA[Remove the route cache file<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4285. <optionsBefore>
  4286. <option name="--help" shortcut="-h">
  4287. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4288. </option>
  4289. <option name="--quiet" shortcut="-q">
  4290. <help><![CDATA[Do not output any message]]></help>
  4291. </option>
  4292. <option name="--verbose" shortcut="-v">
  4293. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4294. </option>
  4295. <option name="--version" shortcut="-V">
  4296. <help><![CDATA[Display this application version]]></help>
  4297. </option>
  4298. <option name="--ansi" shortcut="">
  4299. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4300. </option>
  4301. <option name="--no-ansi" shortcut="">
  4302. <help><![CDATA[Negate the "--ansi" option]]></help>
  4303. </option>
  4304. <option name="--no-interaction" shortcut="-n">
  4305. <help><![CDATA[Do not ask any interactive question]]></help>
  4306. </option>
  4307. <option name="--env" shortcut="" pattern="equals">
  4308. <help><![CDATA[The environment the command should run under]]></help>
  4309. </option>
  4310. </optionsBefore>
  4311. </command>
  4312. <command>
  4313. <name>route:list</name>
  4314. <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>Only show routes matching the given path pattern</td></tr> <tr><td>--except-path</td><td></td><td>Do not display the routes matching the given path pattern</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 (precedence, domain, method, uri, name, action, middleware) to sort by</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4315. <optionsBefore>
  4316. <option name="--columns" shortcut="" pattern="equals">
  4317. <help><![CDATA[Columns to include in the route table]]></help>
  4318. </option>
  4319. <option name="--compact" shortcut="-c">
  4320. <help><![CDATA[Only show method, URI and action columns]]></help>
  4321. </option>
  4322. <option name="--json" shortcut="">
  4323. <help><![CDATA[Output the route list as JSON]]></help>
  4324. </option>
  4325. <option name="--method" shortcut="" pattern="equals">
  4326. <help><![CDATA[Filter the routes by method]]></help>
  4327. </option>
  4328. <option name="--name" shortcut="" pattern="equals">
  4329. <help><![CDATA[Filter the routes by name]]></help>
  4330. </option>
  4331. <option name="--path" shortcut="" pattern="equals">
  4332. <help><![CDATA[Only show routes matching the given path pattern]]></help>
  4333. </option>
  4334. <option name="--except-path" shortcut="" pattern="equals">
  4335. <help><![CDATA[Do not display the routes matching the given path pattern]]></help>
  4336. </option>
  4337. <option name="--reverse" shortcut="-r">
  4338. <help><![CDATA[Reverse the ordering of the routes]]></help>
  4339. </option>
  4340. <option name="--sort" shortcut="" pattern="equals">
  4341. <help><![CDATA[The column (precedence, domain, method, uri, name, action, middleware) to sort by]]></help>
  4342. </option>
  4343. <option name="--help" shortcut="-h">
  4344. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4345. </option>
  4346. <option name="--quiet" shortcut="-q">
  4347. <help><![CDATA[Do not output any message]]></help>
  4348. </option>
  4349. <option name="--verbose" shortcut="-v">
  4350. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4351. </option>
  4352. <option name="--version" shortcut="-V">
  4353. <help><![CDATA[Display this application version]]></help>
  4354. </option>
  4355. <option name="--ansi" shortcut="">
  4356. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4357. </option>
  4358. <option name="--no-ansi" shortcut="">
  4359. <help><![CDATA[Negate the "--ansi" option]]></help>
  4360. </option>
  4361. <option name="--no-interaction" shortcut="-n">
  4362. <help><![CDATA[Do not ask any interactive question]]></help>
  4363. </option>
  4364. <option name="--env" shortcut="" pattern="equals">
  4365. <help><![CDATA[The environment the command should run under]]></help>
  4366. </option>
  4367. </optionsBefore>
  4368. </command>
  4369. <command>
  4370. <name>sail:install</name>
  4371. <help><![CDATA[Install Laravel Sail's default Docker Compose file<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--with</td><td></td><td>The services that should be included in the installation</td></tr> <tr><td>--devcontainer</td><td></td><td>Create a .devcontainer configuration directory</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4372. <optionsBefore>
  4373. <option name="--with" shortcut="" pattern="equals">
  4374. <help><![CDATA[The services that should be included in the installation]]></help>
  4375. </option>
  4376. <option name="--devcontainer" shortcut="">
  4377. <help><![CDATA[Create a .devcontainer configuration directory]]></help>
  4378. </option>
  4379. <option name="--help" shortcut="-h">
  4380. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4381. </option>
  4382. <option name="--quiet" shortcut="-q">
  4383. <help><![CDATA[Do not output any message]]></help>
  4384. </option>
  4385. <option name="--verbose" shortcut="-v">
  4386. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4387. </option>
  4388. <option name="--version" shortcut="-V">
  4389. <help><![CDATA[Display this application version]]></help>
  4390. </option>
  4391. <option name="--ansi" shortcut="">
  4392. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4393. </option>
  4394. <option name="--no-ansi" shortcut="">
  4395. <help><![CDATA[Negate the "--ansi" option]]></help>
  4396. </option>
  4397. <option name="--no-interaction" shortcut="-n">
  4398. <help><![CDATA[Do not ask any interactive question]]></help>
  4399. </option>
  4400. <option name="--env" shortcut="" pattern="equals">
  4401. <help><![CDATA[The environment the command should run under]]></help>
  4402. </option>
  4403. </optionsBefore>
  4404. </command>
  4405. <command>
  4406. <name>sail:publish</name>
  4407. <help><![CDATA[Publish the Laravel Sail Docker files<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4408. <optionsBefore>
  4409. <option name="--help" shortcut="-h">
  4410. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4411. </option>
  4412. <option name="--quiet" shortcut="-q">
  4413. <help><![CDATA[Do not output any message]]></help>
  4414. </option>
  4415. <option name="--verbose" shortcut="-v">
  4416. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4417. </option>
  4418. <option name="--version" shortcut="-V">
  4419. <help><![CDATA[Display this application version]]></help>
  4420. </option>
  4421. <option name="--ansi" shortcut="">
  4422. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4423. </option>
  4424. <option name="--no-ansi" shortcut="">
  4425. <help><![CDATA[Negate the "--ansi" option]]></help>
  4426. </option>
  4427. <option name="--no-interaction" shortcut="-n">
  4428. <help><![CDATA[Do not ask any interactive question]]></help>
  4429. </option>
  4430. <option name="--env" shortcut="" pattern="equals">
  4431. <help><![CDATA[The environment the command should run under]]></help>
  4432. </option>
  4433. </optionsBefore>
  4434. </command>
  4435. <command>
  4436. <name>sanctum:prune-expired</name>
  4437. <help><![CDATA[Prune tokens expired for more than specified number of hours.<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--hours</td><td></td><td>The number of hours to retain expired Sanctum tokens</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4438. <optionsBefore>
  4439. <option name="--hours" shortcut="" pattern="equals">
  4440. <help><![CDATA[The number of hours to retain expired Sanctum tokens]]></help>
  4441. </option>
  4442. <option name="--help" shortcut="-h">
  4443. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4444. </option>
  4445. <option name="--quiet" shortcut="-q">
  4446. <help><![CDATA[Do not output any message]]></help>
  4447. </option>
  4448. <option name="--verbose" shortcut="-v">
  4449. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4450. </option>
  4451. <option name="--version" shortcut="-V">
  4452. <help><![CDATA[Display this application version]]></help>
  4453. </option>
  4454. <option name="--ansi" shortcut="">
  4455. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4456. </option>
  4457. <option name="--no-ansi" shortcut="">
  4458. <help><![CDATA[Negate the "--ansi" option]]></help>
  4459. </option>
  4460. <option name="--no-interaction" shortcut="-n">
  4461. <help><![CDATA[Do not ask any interactive question]]></help>
  4462. </option>
  4463. <option name="--env" shortcut="" pattern="equals">
  4464. <help><![CDATA[The environment the command should run under]]></help>
  4465. </option>
  4466. </optionsBefore>
  4467. </command>
  4468. <command>
  4469. <name>schedule:clear-cache</name>
  4470. <help><![CDATA[Delete the cached mutex files created by scheduler<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4471. <optionsBefore>
  4472. <option name="--help" shortcut="-h">
  4473. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4474. </option>
  4475. <option name="--quiet" shortcut="-q">
  4476. <help><![CDATA[Do not output any message]]></help>
  4477. </option>
  4478. <option name="--verbose" shortcut="-v">
  4479. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4480. </option>
  4481. <option name="--version" shortcut="-V">
  4482. <help><![CDATA[Display this application version]]></help>
  4483. </option>
  4484. <option name="--ansi" shortcut="">
  4485. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4486. </option>
  4487. <option name="--no-ansi" shortcut="">
  4488. <help><![CDATA[Negate the "--ansi" option]]></help>
  4489. </option>
  4490. <option name="--no-interaction" shortcut="-n">
  4491. <help><![CDATA[Do not ask any interactive question]]></help>
  4492. </option>
  4493. <option name="--env" shortcut="" pattern="equals">
  4494. <help><![CDATA[The environment the command should run under]]></help>
  4495. </option>
  4496. </optionsBefore>
  4497. </command>
  4498. <command>
  4499. <name>schedule:finish</name>
  4500. <help><![CDATA[Handle the completion of a scheduled command<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4501. <params>id code[=null]</params>
  4502. <optionsBefore>
  4503. <option name="--help" shortcut="-h">
  4504. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4505. </option>
  4506. <option name="--quiet" shortcut="-q">
  4507. <help><![CDATA[Do not output any message]]></help>
  4508. </option>
  4509. <option name="--verbose" shortcut="-v">
  4510. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4511. </option>
  4512. <option name="--version" shortcut="-V">
  4513. <help><![CDATA[Display this application version]]></help>
  4514. </option>
  4515. <option name="--ansi" shortcut="">
  4516. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4517. </option>
  4518. <option name="--no-ansi" shortcut="">
  4519. <help><![CDATA[Negate the "--ansi" option]]></help>
  4520. </option>
  4521. <option name="--no-interaction" shortcut="-n">
  4522. <help><![CDATA[Do not ask any interactive question]]></help>
  4523. </option>
  4524. <option name="--env" shortcut="" pattern="equals">
  4525. <help><![CDATA[The environment the command should run under]]></help>
  4526. </option>
  4527. </optionsBefore>
  4528. </command>
  4529. <command>
  4530. <name>schedule:list</name>
  4531. <help><![CDATA[List the scheduled commands<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--timezone</td><td></td><td>The timezone that times should be displayed in</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4532. <optionsBefore>
  4533. <option name="--timezone" shortcut="" pattern="equals">
  4534. <help><![CDATA[The timezone that times should be displayed in]]></help>
  4535. </option>
  4536. <option name="--help" shortcut="-h">
  4537. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4538. </option>
  4539. <option name="--quiet" shortcut="-q">
  4540. <help><![CDATA[Do not output any message]]></help>
  4541. </option>
  4542. <option name="--verbose" shortcut="-v">
  4543. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4544. </option>
  4545. <option name="--version" shortcut="-V">
  4546. <help><![CDATA[Display this application version]]></help>
  4547. </option>
  4548. <option name="--ansi" shortcut="">
  4549. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4550. </option>
  4551. <option name="--no-ansi" shortcut="">
  4552. <help><![CDATA[Negate the "--ansi" option]]></help>
  4553. </option>
  4554. <option name="--no-interaction" shortcut="-n">
  4555. <help><![CDATA[Do not ask any interactive question]]></help>
  4556. </option>
  4557. <option name="--env" shortcut="" pattern="equals">
  4558. <help><![CDATA[The environment the command should run under]]></help>
  4559. </option>
  4560. </optionsBefore>
  4561. </command>
  4562. <command>
  4563. <name>schedule:run</name>
  4564. <help><![CDATA[Run the scheduled commands<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4565. <optionsBefore>
  4566. <option name="--help" shortcut="-h">
  4567. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4568. </option>
  4569. <option name="--quiet" shortcut="-q">
  4570. <help><![CDATA[Do not output any message]]></help>
  4571. </option>
  4572. <option name="--verbose" shortcut="-v">
  4573. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4574. </option>
  4575. <option name="--version" shortcut="-V">
  4576. <help><![CDATA[Display this application version]]></help>
  4577. </option>
  4578. <option name="--ansi" shortcut="">
  4579. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4580. </option>
  4581. <option name="--no-ansi" shortcut="">
  4582. <help><![CDATA[Negate the "--ansi" option]]></help>
  4583. </option>
  4584. <option name="--no-interaction" shortcut="-n">
  4585. <help><![CDATA[Do not ask any interactive question]]></help>
  4586. </option>
  4587. <option name="--env" shortcut="" pattern="equals">
  4588. <help><![CDATA[The environment the command should run under]]></help>
  4589. </option>
  4590. </optionsBefore>
  4591. </command>
  4592. <command>
  4593. <name>schedule:test</name>
  4594. <help><![CDATA[Run a scheduled command<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4595. <optionsBefore>
  4596. <option name="--help" shortcut="-h">
  4597. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4598. </option>
  4599. <option name="--quiet" shortcut="-q">
  4600. <help><![CDATA[Do not output any message]]></help>
  4601. </option>
  4602. <option name="--verbose" shortcut="-v">
  4603. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4604. </option>
  4605. <option name="--version" shortcut="-V">
  4606. <help><![CDATA[Display this application version]]></help>
  4607. </option>
  4608. <option name="--ansi" shortcut="">
  4609. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4610. </option>
  4611. <option name="--no-ansi" shortcut="">
  4612. <help><![CDATA[Negate the "--ansi" option]]></help>
  4613. </option>
  4614. <option name="--no-interaction" shortcut="-n">
  4615. <help><![CDATA[Do not ask any interactive question]]></help>
  4616. </option>
  4617. <option name="--env" shortcut="" pattern="equals">
  4618. <help><![CDATA[The environment the command should run under]]></help>
  4619. </option>
  4620. </optionsBefore>
  4621. </command>
  4622. <command>
  4623. <name>schedule:work</name>
  4624. <help><![CDATA[Start the schedule worker<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4625. <optionsBefore>
  4626. <option name="--help" shortcut="-h">
  4627. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4628. </option>
  4629. <option name="--quiet" shortcut="-q">
  4630. <help><![CDATA[Do not output any message]]></help>
  4631. </option>
  4632. <option name="--verbose" shortcut="-v">
  4633. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4634. </option>
  4635. <option name="--version" shortcut="-V">
  4636. <help><![CDATA[Display this application version]]></help>
  4637. </option>
  4638. <option name="--ansi" shortcut="">
  4639. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4640. </option>
  4641. <option name="--no-ansi" shortcut="">
  4642. <help><![CDATA[Negate the "--ansi" option]]></help>
  4643. </option>
  4644. <option name="--no-interaction" shortcut="-n">
  4645. <help><![CDATA[Do not ask any interactive question]]></help>
  4646. </option>
  4647. <option name="--env" shortcut="" pattern="equals">
  4648. <help><![CDATA[The environment the command should run under]]></help>
  4649. </option>
  4650. </optionsBefore>
  4651. </command>
  4652. <command>
  4653. <name>schema:dump</name>
  4654. <help><![CDATA[Dump the given database schema<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--database</td><td></td><td>The database connection to use</td></tr> <tr><td>--path</td><td></td><td>The path where the schema dump file should be stored</td></tr> <tr><td>--prune</td><td></td><td>Delete all existing migration files</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4655. <optionsBefore>
  4656. <option name="--database" shortcut="" pattern="equals">
  4657. <help><![CDATA[The database connection to use]]></help>
  4658. </option>
  4659. <option name="--path" shortcut="" pattern="equals">
  4660. <help><![CDATA[The path where the schema dump file should be stored]]></help>
  4661. </option>
  4662. <option name="--prune" shortcut="">
  4663. <help><![CDATA[Delete all existing migration files]]></help>
  4664. </option>
  4665. <option name="--help" shortcut="-h">
  4666. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4667. </option>
  4668. <option name="--quiet" shortcut="-q">
  4669. <help><![CDATA[Do not output any message]]></help>
  4670. </option>
  4671. <option name="--verbose" shortcut="-v">
  4672. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4673. </option>
  4674. <option name="--version" shortcut="-V">
  4675. <help><![CDATA[Display this application version]]></help>
  4676. </option>
  4677. <option name="--ansi" shortcut="">
  4678. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4679. </option>
  4680. <option name="--no-ansi" shortcut="">
  4681. <help><![CDATA[Negate the "--ansi" option]]></help>
  4682. </option>
  4683. <option name="--no-interaction" shortcut="-n">
  4684. <help><![CDATA[Do not ask any interactive question]]></help>
  4685. </option>
  4686. <option name="--env" shortcut="" pattern="equals">
  4687. <help><![CDATA[The environment the command should run under]]></help>
  4688. </option>
  4689. </optionsBefore>
  4690. </command>
  4691. <command>
  4692. <name>session:table</name>
  4693. <help><![CDATA[Create a migration for the session database table<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4694. <optionsBefore>
  4695. <option name="--help" shortcut="-h">
  4696. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4697. </option>
  4698. <option name="--quiet" shortcut="-q">
  4699. <help><![CDATA[Do not output any message]]></help>
  4700. </option>
  4701. <option name="--verbose" shortcut="-v">
  4702. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4703. </option>
  4704. <option name="--version" shortcut="-V">
  4705. <help><![CDATA[Display this application version]]></help>
  4706. </option>
  4707. <option name="--ansi" shortcut="">
  4708. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4709. </option>
  4710. <option name="--no-ansi" shortcut="">
  4711. <help><![CDATA[Negate the "--ansi" option]]></help>
  4712. </option>
  4713. <option name="--no-interaction" shortcut="-n">
  4714. <help><![CDATA[Do not ask any interactive question]]></help>
  4715. </option>
  4716. <option name="--env" shortcut="" pattern="equals">
  4717. <help><![CDATA[The environment the command should run under]]></help>
  4718. </option>
  4719. </optionsBefore>
  4720. </command>
  4721. <command>
  4722. <name>storage:link</name>
  4723. <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>--force</td><td></td><td>Recreate existing symbolic links</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4724. <optionsBefore>
  4725. <option name="--relative" shortcut="">
  4726. <help><![CDATA[Create the symbolic link using relative paths]]></help>
  4727. </option>
  4728. <option name="--force" shortcut="">
  4729. <help><![CDATA[Recreate existing symbolic links]]></help>
  4730. </option>
  4731. <option name="--help" shortcut="-h">
  4732. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4733. </option>
  4734. <option name="--quiet" shortcut="-q">
  4735. <help><![CDATA[Do not output any message]]></help>
  4736. </option>
  4737. <option name="--verbose" shortcut="-v">
  4738. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4739. </option>
  4740. <option name="--version" shortcut="-V">
  4741. <help><![CDATA[Display this application version]]></help>
  4742. </option>
  4743. <option name="--ansi" shortcut="">
  4744. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4745. </option>
  4746. <option name="--no-ansi" shortcut="">
  4747. <help><![CDATA[Negate the "--ansi" option]]></help>
  4748. </option>
  4749. <option name="--no-interaction" shortcut="-n">
  4750. <help><![CDATA[Do not ask any interactive question]]></help>
  4751. </option>
  4752. <option name="--env" shortcut="" pattern="equals">
  4753. <help><![CDATA[The environment the command should run under]]></help>
  4754. </option>
  4755. </optionsBefore>
  4756. </command>
  4757. <command>
  4758. <name>stub:publish</name>
  4759. <help><![CDATA[Publish all stubs that are available for customization<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--force</td><td></td><td>Overwrite any existing files</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4760. <optionsBefore>
  4761. <option name="--force" shortcut="">
  4762. <help><![CDATA[Overwrite any existing files]]></help>
  4763. </option>
  4764. <option name="--help" shortcut="-h">
  4765. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4766. </option>
  4767. <option name="--quiet" shortcut="-q">
  4768. <help><![CDATA[Do not output any message]]></help>
  4769. </option>
  4770. <option name="--verbose" shortcut="-v">
  4771. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4772. </option>
  4773. <option name="--version" shortcut="-V">
  4774. <help><![CDATA[Display this application version]]></help>
  4775. </option>
  4776. <option name="--ansi" shortcut="">
  4777. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4778. </option>
  4779. <option name="--no-ansi" shortcut="">
  4780. <help><![CDATA[Negate the "--ansi" option]]></help>
  4781. </option>
  4782. <option name="--no-interaction" shortcut="-n">
  4783. <help><![CDATA[Do not ask any interactive question]]></help>
  4784. </option>
  4785. <option name="--env" shortcut="" pattern="equals">
  4786. <help><![CDATA[The environment the command should run under]]></help>
  4787. </option>
  4788. </optionsBefore>
  4789. </command>
  4790. <command>
  4791. <name>user:reset</name>
  4792. <help><![CDATA[测试用户数据重置<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4793. <optionsBefore>
  4794. <option name="--help" shortcut="-h">
  4795. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4796. </option>
  4797. <option name="--quiet" shortcut="-q">
  4798. <help><![CDATA[Do not output any message]]></help>
  4799. </option>
  4800. <option name="--verbose" shortcut="-v">
  4801. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4802. </option>
  4803. <option name="--version" shortcut="-V">
  4804. <help><![CDATA[Display this application version]]></help>
  4805. </option>
  4806. <option name="--ansi" shortcut="">
  4807. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4808. </option>
  4809. <option name="--no-ansi" shortcut="">
  4810. <help><![CDATA[Negate the "--ansi" option]]></help>
  4811. </option>
  4812. <option name="--no-interaction" shortcut="-n">
  4813. <help><![CDATA[Do not ask any interactive question]]></help>
  4814. </option>
  4815. <option name="--env" shortcut="" pattern="equals">
  4816. <help><![CDATA[The environment the command should run under]]></help>
  4817. </option>
  4818. </optionsBefore>
  4819. </command>
  4820. <command>
  4821. <name>vendor:publish</name>
  4822. <help><![CDATA[Publish any publishable assets from vendor packages<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--force</td><td></td><td>Overwrite any existing files</td></tr> <tr><td>--all</td><td></td><td>Publish assets for all service providers without prompt</td></tr> <tr><td>--provider</td><td></td><td>The service provider that has assets you want to publish</td></tr> <tr><td>--tag</td><td></td><td>One or many tags that have assets you want to publish</td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4823. <optionsBefore>
  4824. <option name="--force" shortcut="">
  4825. <help><![CDATA[Overwrite any existing files]]></help>
  4826. </option>
  4827. <option name="--all" shortcut="">
  4828. <help><![CDATA[Publish assets for all service providers without prompt]]></help>
  4829. </option>
  4830. <option name="--provider" shortcut="" pattern="equals">
  4831. <help><![CDATA[The service provider that has assets you want to publish]]></help>
  4832. </option>
  4833. <option name="--tag" shortcut="" pattern="equals">
  4834. <help><![CDATA[One or many tags that have assets you want to publish]]></help>
  4835. </option>
  4836. <option name="--help" shortcut="-h">
  4837. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4838. </option>
  4839. <option name="--quiet" shortcut="-q">
  4840. <help><![CDATA[Do not output any message]]></help>
  4841. </option>
  4842. <option name="--verbose" shortcut="-v">
  4843. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4844. </option>
  4845. <option name="--version" shortcut="-V">
  4846. <help><![CDATA[Display this application version]]></help>
  4847. </option>
  4848. <option name="--ansi" shortcut="">
  4849. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4850. </option>
  4851. <option name="--no-ansi" shortcut="">
  4852. <help><![CDATA[Negate the "--ansi" option]]></help>
  4853. </option>
  4854. <option name="--no-interaction" shortcut="-n">
  4855. <help><![CDATA[Do not ask any interactive question]]></help>
  4856. </option>
  4857. <option name="--env" shortcut="" pattern="equals">
  4858. <help><![CDATA[The environment the command should run under]]></help>
  4859. </option>
  4860. </optionsBefore>
  4861. </command>
  4862. <command>
  4863. <name>view:cache</name>
  4864. <help><![CDATA[Compile all of the application's Blade templates<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4865. <optionsBefore>
  4866. <option name="--help" shortcut="-h">
  4867. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4868. </option>
  4869. <option name="--quiet" shortcut="-q">
  4870. <help><![CDATA[Do not output any message]]></help>
  4871. </option>
  4872. <option name="--verbose" shortcut="-v">
  4873. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4874. </option>
  4875. <option name="--version" shortcut="-V">
  4876. <help><![CDATA[Display this application version]]></help>
  4877. </option>
  4878. <option name="--ansi" shortcut="">
  4879. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4880. </option>
  4881. <option name="--no-ansi" shortcut="">
  4882. <help><![CDATA[Negate the "--ansi" option]]></help>
  4883. </option>
  4884. <option name="--no-interaction" shortcut="-n">
  4885. <help><![CDATA[Do not ask any interactive question]]></help>
  4886. </option>
  4887. <option name="--env" shortcut="" pattern="equals">
  4888. <help><![CDATA[The environment the command should run under]]></help>
  4889. </option>
  4890. </optionsBefore>
  4891. </command>
  4892. <command>
  4893. <name>view:clear</name>
  4894. <help><![CDATA[Clear all compiled view files<br/><br/><table> <tr><td><strong>Options:</strong></td></tr> <tr><td>--help</td><td>(-h)</td><td>Display help for the given command. When no command is given display help for the <b>list</b> command</td></tr> <tr><td>--quiet</td><td>(-q)</td><td>Do not output any message</td></tr> <tr><td>--verbose</td><td>(-v)</td><td>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</td></tr> <tr><td>--version</td><td>(-V)</td><td>Display this application version</td></tr> <tr><td>--ansi</td><td></td><td>Force (or disable --no-ansi) ANSI output</td></tr> <tr><td>--no-ansi</td><td></td><td>Negate the "--ansi" option</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>
  4895. <optionsBefore>
  4896. <option name="--help" shortcut="-h">
  4897. <help><![CDATA[Display help for the given command. When no command is given display help for the <b>list</b> command]]></help>
  4898. </option>
  4899. <option name="--quiet" shortcut="-q">
  4900. <help><![CDATA[Do not output any message]]></help>
  4901. </option>
  4902. <option name="--verbose" shortcut="-v">
  4903. <help><![CDATA[Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug]]></help>
  4904. </option>
  4905. <option name="--version" shortcut="-V">
  4906. <help><![CDATA[Display this application version]]></help>
  4907. </option>
  4908. <option name="--ansi" shortcut="">
  4909. <help><![CDATA[Force (or disable --no-ansi) ANSI output]]></help>
  4910. </option>
  4911. <option name="--no-ansi" shortcut="">
  4912. <help><![CDATA[Negate the "--ansi" option]]></help>
  4913. </option>
  4914. <option name="--no-interaction" shortcut="-n">
  4915. <help><![CDATA[Do not ask any interactive question]]></help>
  4916. </option>
  4917. <option name="--env" shortcut="" pattern="equals">
  4918. <help><![CDATA[The environment the command should run under]]></help>
  4919. </option>
  4920. </optionsBefore>
  4921. </command>
  4922. </framework>