composer.lock 381 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584
  1. {
  2. "_readme": [
  3. "This file locks the dependencies of your project to a known state",
  4. "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
  5. "This file is @generated automatically"
  6. ],
  7. "content-hash": "2d7dc8ee130eeab15e234cee15f05ac6",
  8. "packages": [
  9. {
  10. "name": "aliyuncs/oss-sdk-php",
  11. "version": "v2.4.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  15. "reference": "0c9d902c33847c07efc66c4cdf823deaea8fc2b6"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/0c9d902c33847c07efc66c4cdf823deaea8fc2b6",
  20. "reference": "0c9d902c33847c07efc66c4cdf823deaea8fc2b6",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": ">=5.3"
  31. },
  32. "require-dev": {
  33. "phpunit/phpunit": "*",
  34. "satooshi/php-coveralls": "*"
  35. },
  36. "type": "library",
  37. "autoload": {
  38. "psr-4": {
  39. "OSS\\": "src/OSS"
  40. }
  41. },
  42. "notification-url": "https://packagist.org/downloads/",
  43. "license": [
  44. "MIT"
  45. ],
  46. "authors": [
  47. {
  48. "name": "Aliyuncs",
  49. "homepage": "http://www.aliyun.com"
  50. }
  51. ],
  52. "description": "Aliyun OSS SDK for PHP",
  53. "homepage": "http://www.aliyun.com/product/oss/",
  54. "support": {
  55. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  56. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.4.2"
  57. },
  58. "time": "2021-06-04T06:55:06+00:00"
  59. },
  60. {
  61. "name": "asm89/stack-cors",
  62. "version": "v2.0.3",
  63. "source": {
  64. "type": "git",
  65. "url": "https://github.com/asm89/stack-cors.git",
  66. "reference": "9cb795bf30988e8c96dd3c40623c48a877bc6714"
  67. },
  68. "dist": {
  69. "type": "zip",
  70. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/9cb795bf30988e8c96dd3c40623c48a877bc6714",
  71. "reference": "9cb795bf30988e8c96dd3c40623c48a877bc6714",
  72. "shasum": "",
  73. "mirrors": [
  74. {
  75. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  76. "preferred": true
  77. }
  78. ]
  79. },
  80. "require": {
  81. "php": "^7.0|^8.0",
  82. "symfony/http-foundation": "~2.7|~3.0|~4.0|~5.0",
  83. "symfony/http-kernel": "~2.7|~3.0|~4.0|~5.0"
  84. },
  85. "require-dev": {
  86. "phpunit/phpunit": "^6|^7|^8|^9",
  87. "squizlabs/php_codesniffer": "^3.5"
  88. },
  89. "type": "library",
  90. "extra": {
  91. "branch-alias": {
  92. "dev-master": "2.0-dev"
  93. }
  94. },
  95. "autoload": {
  96. "psr-4": {
  97. "Asm89\\Stack\\": "src/"
  98. }
  99. },
  100. "notification-url": "https://packagist.org/downloads/",
  101. "license": [
  102. "MIT"
  103. ],
  104. "authors": [
  105. {
  106. "name": "Alexander",
  107. "email": "iam.asm89@gmail.com"
  108. }
  109. ],
  110. "description": "Cross-origin resource sharing library and stack middleware",
  111. "homepage": "https://github.com/asm89/stack-cors",
  112. "keywords": [
  113. "cors",
  114. "stack"
  115. ],
  116. "support": {
  117. "issues": "https://github.com/asm89/stack-cors/issues",
  118. "source": "https://github.com/asm89/stack-cors/tree/v2.0.3"
  119. },
  120. "time": "2021-03-11T06:42:03+00:00"
  121. },
  122. {
  123. "name": "barryvdh/laravel-cors",
  124. "version": "v2.0.4",
  125. "source": {
  126. "type": "git",
  127. "url": "https://github.com/fruitcake/laravel-cors.git",
  128. "reference": "a8ccedc7ca95189ead0e407c43b530dc17791d6a"
  129. },
  130. "dist": {
  131. "type": "zip",
  132. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/a8ccedc7ca95189ead0e407c43b530dc17791d6a",
  133. "reference": "a8ccedc7ca95189ead0e407c43b530dc17791d6a",
  134. "shasum": "",
  135. "mirrors": [
  136. {
  137. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  138. "preferred": true
  139. }
  140. ]
  141. },
  142. "require": {
  143. "asm89/stack-cors": "^2.0.1",
  144. "illuminate/contracts": "^6|^7|^8|^9",
  145. "illuminate/support": "^6|^7|^8|^9",
  146. "php": ">=7.2",
  147. "symfony/http-foundation": "^4|^5",
  148. "symfony/http-kernel": "^4.3.4|^5"
  149. },
  150. "require-dev": {
  151. "laravel/framework": "^6|^7|^8",
  152. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  153. "phpunit/phpunit": "^6|^7|^8|^9",
  154. "squizlabs/php_codesniffer": "^3.5"
  155. },
  156. "type": "library",
  157. "extra": {
  158. "branch-alias": {
  159. "dev-master": "2.0-dev"
  160. },
  161. "laravel": {
  162. "providers": [
  163. "Fruitcake\\Cors\\CorsServiceProvider"
  164. ]
  165. }
  166. },
  167. "autoload": {
  168. "psr-4": {
  169. "Fruitcake\\Cors\\": "src/"
  170. }
  171. },
  172. "notification-url": "https://packagist.org/downloads/",
  173. "license": [
  174. "MIT"
  175. ],
  176. "authors": [
  177. {
  178. "name": "Fruitcake",
  179. "homepage": "https://fruitcake.nl"
  180. },
  181. {
  182. "name": "Barry vd. Heuvel",
  183. "email": "barryvdh@gmail.com"
  184. }
  185. ],
  186. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  187. "keywords": [
  188. "api",
  189. "cors",
  190. "crossdomain",
  191. "laravel"
  192. ],
  193. "support": {
  194. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  195. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.0.4"
  196. },
  197. "funding": [
  198. {
  199. "url": "https://github.com/barryvdh",
  200. "type": "github"
  201. }
  202. ],
  203. "time": "2021-04-26T11:24:25+00:00"
  204. },
  205. {
  206. "name": "bensampo/laravel-enum",
  207. "version": "v3.4.1",
  208. "source": {
  209. "type": "git",
  210. "url": "https://github.com/BenSampo/laravel-enum.git",
  211. "reference": "67e13f8a211d43035146150793a95c4140f7831d"
  212. },
  213. "dist": {
  214. "type": "zip",
  215. "url": "https://api.github.com/repos/BenSampo/laravel-enum/zipball/67e13f8a211d43035146150793a95c4140f7831d",
  216. "reference": "67e13f8a211d43035146150793a95c4140f7831d",
  217. "shasum": "",
  218. "mirrors": [
  219. {
  220. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  221. "preferred": true
  222. }
  223. ]
  224. },
  225. "require": {
  226. "hanneskod/classtools": "^1.2",
  227. "illuminate/contracts": "^8.0",
  228. "illuminate/support": "^8.0",
  229. "laminas/laminas-code": "^3.4",
  230. "nikic/php-parser": "^4.10",
  231. "php": "^7.3|^8.0"
  232. },
  233. "require-dev": {
  234. "doctrine/dbal": "^2.9|^3.0",
  235. "mockery/mockery": "^1.4",
  236. "orchestra/testbench": "^6.2",
  237. "phpstan/phpstan": "^0.12.59",
  238. "phpunit/phpunit": "^8.5",
  239. "squizlabs/php_codesniffer": "^3.0"
  240. },
  241. "type": "library",
  242. "extra": {
  243. "branch-alias": {
  244. "dev-master": "1.0-dev"
  245. },
  246. "laravel": {
  247. "providers": [
  248. "BenSampo\\Enum\\EnumServiceProvider"
  249. ]
  250. },
  251. "phpstan": {
  252. "includes": [
  253. "extension.neon"
  254. ]
  255. }
  256. },
  257. "autoload": {
  258. "psr-4": {
  259. "BenSampo\\Enum\\": "src"
  260. }
  261. },
  262. "notification-url": "https://packagist.org/downloads/",
  263. "license": [
  264. "MIT"
  265. ],
  266. "authors": [
  267. {
  268. "name": "Ben Sampson",
  269. "homepage": "https://sampo.co.uk",
  270. "role": "Developer"
  271. }
  272. ],
  273. "description": "Simple, extensible and powerful enumeration implementation for Laravel.",
  274. "homepage": "https://github.com/bensampo/laravel-enum",
  275. "keywords": [
  276. "bensampo",
  277. "enum",
  278. "laravel",
  279. "package",
  280. "validation"
  281. ],
  282. "support": {
  283. "issues": "https://github.com/BenSampo/laravel-enum/issues",
  284. "source": "https://github.com/BenSampo/laravel-enum/tree/v3.4.1"
  285. },
  286. "funding": [
  287. {
  288. "url": "https://github.com/bensampo",
  289. "type": "github"
  290. }
  291. ],
  292. "time": "2021-06-17T14:35:14+00:00"
  293. },
  294. {
  295. "name": "brick/math",
  296. "version": "0.9.2",
  297. "source": {
  298. "type": "git",
  299. "url": "https://github.com/brick/math.git",
  300. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0"
  301. },
  302. "dist": {
  303. "type": "zip",
  304. "url": "https://api.github.com/repos/brick/math/zipball/dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  305. "reference": "dff976c2f3487d42c1db75a3b180e2b9f0e72ce0",
  306. "shasum": "",
  307. "mirrors": [
  308. {
  309. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  310. "preferred": true
  311. }
  312. ]
  313. },
  314. "require": {
  315. "ext-json": "*",
  316. "php": "^7.1 || ^8.0"
  317. },
  318. "require-dev": {
  319. "php-coveralls/php-coveralls": "^2.2",
  320. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.0",
  321. "vimeo/psalm": "4.3.2"
  322. },
  323. "type": "library",
  324. "autoload": {
  325. "psr-4": {
  326. "Brick\\Math\\": "src/"
  327. }
  328. },
  329. "notification-url": "https://packagist.org/downloads/",
  330. "license": [
  331. "MIT"
  332. ],
  333. "description": "Arbitrary-precision arithmetic library",
  334. "keywords": [
  335. "Arbitrary-precision",
  336. "BigInteger",
  337. "BigRational",
  338. "arithmetic",
  339. "bigdecimal",
  340. "bignum",
  341. "brick",
  342. "math"
  343. ],
  344. "support": {
  345. "issues": "https://github.com/brick/math/issues",
  346. "source": "https://github.com/brick/math/tree/0.9.2"
  347. },
  348. "funding": [
  349. {
  350. "url": "https://tidelift.com/funding/github/packagist/brick/math",
  351. "type": "tidelift"
  352. }
  353. ],
  354. "time": "2021-01-20T22:51:39+00:00"
  355. },
  356. {
  357. "name": "composer/package-versions-deprecated",
  358. "version": "1.11.99.2",
  359. "source": {
  360. "type": "git",
  361. "url": "https://github.com/composer/package-versions-deprecated.git",
  362. "reference": "c6522afe5540d5fc46675043d3ed5a45a740b27c"
  363. },
  364. "dist": {
  365. "type": "zip",
  366. "url": "https://api.github.com/repos/composer/package-versions-deprecated/zipball/c6522afe5540d5fc46675043d3ed5a45a740b27c",
  367. "reference": "c6522afe5540d5fc46675043d3ed5a45a740b27c",
  368. "shasum": "",
  369. "mirrors": [
  370. {
  371. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  372. "preferred": true
  373. }
  374. ]
  375. },
  376. "require": {
  377. "composer-plugin-api": "^1.1.0 || ^2.0",
  378. "php": "^7 || ^8"
  379. },
  380. "replace": {
  381. "ocramius/package-versions": "1.11.99"
  382. },
  383. "require-dev": {
  384. "composer/composer": "^1.9.3 || ^2.0@dev",
  385. "ext-zip": "^1.13",
  386. "phpunit/phpunit": "^6.5 || ^7"
  387. },
  388. "type": "composer-plugin",
  389. "extra": {
  390. "class": "PackageVersions\\Installer",
  391. "branch-alias": {
  392. "dev-master": "1.x-dev"
  393. }
  394. },
  395. "autoload": {
  396. "psr-4": {
  397. "PackageVersions\\": "src/PackageVersions"
  398. }
  399. },
  400. "notification-url": "https://packagist.org/downloads/",
  401. "license": [
  402. "MIT"
  403. ],
  404. "authors": [
  405. {
  406. "name": "Marco Pivetta",
  407. "email": "ocramius@gmail.com"
  408. },
  409. {
  410. "name": "Jordi Boggiano",
  411. "email": "j.boggiano@seld.be"
  412. }
  413. ],
  414. "description": "Composer plugin that provides efficient querying for installed package versions (no runtime IO)",
  415. "support": {
  416. "issues": "https://github.com/composer/package-versions-deprecated/issues",
  417. "source": "https://github.com/composer/package-versions-deprecated/tree/1.11.99.2"
  418. },
  419. "funding": [
  420. {
  421. "url": "https://packagist.com",
  422. "type": "custom"
  423. },
  424. {
  425. "url": "https://github.com/composer",
  426. "type": "github"
  427. },
  428. {
  429. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  430. "type": "tidelift"
  431. }
  432. ],
  433. "time": "2021-05-24T07:46:03+00:00"
  434. },
  435. {
  436. "name": "dcat/laravel-admin",
  437. "version": "2.1.2-beta",
  438. "source": {
  439. "type": "git",
  440. "url": "https://github.com/jqhph/dcat-admin.git",
  441. "reference": "d7358a089fb9c26e14f1ca3f2f1c050c0ca1c44d"
  442. },
  443. "dist": {
  444. "type": "zip",
  445. "url": "https://api.github.com/repos/jqhph/dcat-admin/zipball/d7358a089fb9c26e14f1ca3f2f1c050c0ca1c44d",
  446. "reference": "d7358a089fb9c26e14f1ca3f2f1c050c0ca1c44d",
  447. "shasum": "",
  448. "mirrors": [
  449. {
  450. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  451. "preferred": true
  452. }
  453. ]
  454. },
  455. "require": {
  456. "doctrine/dbal": "^2.6|^3.0",
  457. "laravel/framework": "~5.5|~6.0|~7.0|~8.0",
  458. "php": ">=7.1.0",
  459. "spatie/eloquent-sortable": "3.*|4.*"
  460. },
  461. "require-dev": {
  462. "fzaninotto/faker": "^1.4",
  463. "laravel/dusk": "~5.9|~6",
  464. "mockery/mockery": "^1.0",
  465. "phpstan/phpstan": "^0.12.0",
  466. "phpunit/phpunit": "^7.5|~9"
  467. },
  468. "type": "library",
  469. "extra": {
  470. "laravel": {
  471. "providers": [
  472. "Dcat\\Admin\\AdminServiceProvider"
  473. ]
  474. }
  475. },
  476. "autoload": {
  477. "psr-4": {
  478. "Dcat\\Admin\\": "src/"
  479. },
  480. "files": [
  481. "src/Support/helpers.php"
  482. ]
  483. },
  484. "notification-url": "https://packagist.org/downloads/",
  485. "license": [
  486. "MIT"
  487. ],
  488. "authors": [
  489. {
  490. "name": "jqh",
  491. "email": "841324345@qq.com"
  492. }
  493. ],
  494. "description": "dcat admin",
  495. "homepage": "https://github.com/jqhph/dcat-admin",
  496. "keywords": [
  497. "admin",
  498. "dcat",
  499. "form",
  500. "grid",
  501. "laravel",
  502. "laravel admin"
  503. ],
  504. "support": {
  505. "issues": "https://github.com/jqhph/dcat-admin/issues",
  506. "source": "https://github.com/jqhph/dcat-admin/tree/2.1.2-beta"
  507. },
  508. "time": "2021-08-01T15:01:21+00:00"
  509. },
  510. {
  511. "name": "dingo/api",
  512. "version": "v3.0.7",
  513. "source": {
  514. "type": "git",
  515. "url": "https://github.com/dingo/api.git",
  516. "reference": "edd912c912d08de17a33aaf2c471d07575723513"
  517. },
  518. "dist": {
  519. "type": "zip",
  520. "url": "https://api.github.com/repos/dingo/api/zipball/edd912c912d08de17a33aaf2c471d07575723513",
  521. "reference": "edd912c912d08de17a33aaf2c471d07575723513",
  522. "shasum": "",
  523. "mirrors": [
  524. {
  525. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  526. "preferred": true
  527. }
  528. ]
  529. },
  530. "require": {
  531. "dingo/blueprint": "^0.4",
  532. "illuminate/routing": "^7.0|^8.0",
  533. "illuminate/support": "^7.0|^8.0",
  534. "league/fractal": "^0.19",
  535. "php": "^7.2.5|^8.0"
  536. },
  537. "require-dev": {
  538. "friendsofphp/php-cs-fixer": "~2",
  539. "illuminate/auth": "^7.0|^8.0",
  540. "illuminate/cache": "^7.0|^8.0",
  541. "illuminate/console": "^7.0|^8.0",
  542. "illuminate/database": "^7.0|^8.0",
  543. "illuminate/events": "^7.0|^8.0",
  544. "illuminate/filesystem": "^7.0|^8.0",
  545. "illuminate/log": "^7.0|^8.0",
  546. "illuminate/pagination": "^7.0|^8.0",
  547. "laravel/lumen-framework": "^7.0|^8.0",
  548. "mockery/mockery": "~1.0",
  549. "phpunit/phpunit": "^8.5|^9.0",
  550. "squizlabs/php_codesniffer": "~2.0",
  551. "tymon/jwt-auth": "1.0.*"
  552. },
  553. "suggest": {
  554. "tymon/jwt-auth": "Protect your API with JSON Web Tokens."
  555. },
  556. "type": "library",
  557. "extra": {
  558. "branch-alias": {
  559. "dev-master": "2.0-dev"
  560. },
  561. "laravel": {
  562. "providers": [
  563. "Dingo\\Api\\Provider\\LaravelServiceProvider"
  564. ],
  565. "aliases": {
  566. "API": "Dingo\\Api\\Facade\\API"
  567. }
  568. }
  569. },
  570. "autoload": {
  571. "psr-4": {
  572. "Dingo\\Api\\": "src/"
  573. },
  574. "files": [
  575. "src/helpers.php"
  576. ]
  577. },
  578. "notification-url": "https://packagist.org/downloads/",
  579. "license": [
  580. "BSD-3-Clause"
  581. ],
  582. "authors": [
  583. {
  584. "name": "Jason Lewis",
  585. "email": "jason.lewis1991@gmail.com"
  586. }
  587. ],
  588. "description": "A RESTful API package for the Laravel and Lumen frameworks.",
  589. "keywords": [
  590. "api",
  591. "dingo",
  592. "laravel",
  593. "restful"
  594. ],
  595. "support": {
  596. "issues": "https://github.com/dingo/api/issues",
  597. "source": "https://github.com/dingo/api/tree/v3.0.7"
  598. },
  599. "time": "2021-05-02T12:17:42+00:00"
  600. },
  601. {
  602. "name": "dingo/blueprint",
  603. "version": "v0.4.2",
  604. "source": {
  605. "type": "git",
  606. "url": "https://github.com/dingo/blueprint.git",
  607. "reference": "c330027bc85ef76639b27a900f511ce4270e28bf"
  608. },
  609. "dist": {
  610. "type": "zip",
  611. "url": "https://api.github.com/repos/dingo/blueprint/zipball/c330027bc85ef76639b27a900f511ce4270e28bf",
  612. "reference": "c330027bc85ef76639b27a900f511ce4270e28bf",
  613. "shasum": "",
  614. "mirrors": [
  615. {
  616. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  617. "preferred": true
  618. }
  619. ]
  620. },
  621. "require": {
  622. "doctrine/annotations": "~1.2",
  623. "illuminate/filesystem": "^7.0|^8.0",
  624. "illuminate/support": "^7.0|^8.0",
  625. "php": "^7.2.5",
  626. "phpdocumentor/reflection-docblock": "^3.1 || ^4.1 || ^5"
  627. },
  628. "require-dev": {
  629. "phpunit/phpunit": "^6.5|^8.3|^9.0",
  630. "squizlabs/php_codesniffer": "~2.0"
  631. },
  632. "type": "library",
  633. "extra": {
  634. "branch-alias": {
  635. "dev-master": "0.2-dev"
  636. }
  637. },
  638. "autoload": {
  639. "psr-4": {
  640. "Dingo\\Blueprint\\": "src"
  641. }
  642. },
  643. "notification-url": "https://packagist.org/downloads/",
  644. "license": [
  645. "BSD-3-Clause"
  646. ],
  647. "authors": [
  648. {
  649. "name": "Jason Lewis",
  650. "email": "jason.lewis1991@gmail.com"
  651. }
  652. ],
  653. "description": "API Blueprint documentation generator.",
  654. "keywords": [
  655. "api",
  656. "blueprint",
  657. "dingo",
  658. "docs",
  659. "laravel"
  660. ],
  661. "support": {
  662. "issues": "https://github.com/dingo/blueprint/issues",
  663. "source": "https://github.com/dingo/blueprint/tree/v0.4.2"
  664. },
  665. "time": "2020-09-13T12:32:17+00:00"
  666. },
  667. {
  668. "name": "doctrine/annotations",
  669. "version": "1.13.1",
  670. "source": {
  671. "type": "git",
  672. "url": "https://github.com/doctrine/annotations.git",
  673. "reference": "e6e7b7d5b45a2f2abc5460cc6396480b2b1d321f"
  674. },
  675. "dist": {
  676. "type": "zip",
  677. "url": "https://api.github.com/repos/doctrine/annotations/zipball/e6e7b7d5b45a2f2abc5460cc6396480b2b1d321f",
  678. "reference": "e6e7b7d5b45a2f2abc5460cc6396480b2b1d321f",
  679. "shasum": "",
  680. "mirrors": [
  681. {
  682. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  683. "preferred": true
  684. }
  685. ]
  686. },
  687. "require": {
  688. "doctrine/lexer": "1.*",
  689. "ext-tokenizer": "*",
  690. "php": "^7.1 || ^8.0",
  691. "psr/cache": "^1 || ^2 || ^3"
  692. },
  693. "require-dev": {
  694. "doctrine/cache": "^1.11 || ^2.0",
  695. "doctrine/coding-standard": "^6.0 || ^8.1",
  696. "phpstan/phpstan": "^0.12.20",
  697. "phpunit/phpunit": "^7.5 || ^8.0 || ^9.1.5",
  698. "symfony/cache": "^4.4 || ^5.2"
  699. },
  700. "type": "library",
  701. "autoload": {
  702. "psr-4": {
  703. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  704. }
  705. },
  706. "notification-url": "https://packagist.org/downloads/",
  707. "license": [
  708. "MIT"
  709. ],
  710. "authors": [
  711. {
  712. "name": "Guilherme Blanco",
  713. "email": "guilhermeblanco@gmail.com"
  714. },
  715. {
  716. "name": "Roman Borschel",
  717. "email": "roman@code-factory.org"
  718. },
  719. {
  720. "name": "Benjamin Eberlei",
  721. "email": "kontakt@beberlei.de"
  722. },
  723. {
  724. "name": "Jonathan Wage",
  725. "email": "jonwage@gmail.com"
  726. },
  727. {
  728. "name": "Johannes Schmitt",
  729. "email": "schmittjoh@gmail.com"
  730. }
  731. ],
  732. "description": "Docblock Annotations Parser",
  733. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  734. "keywords": [
  735. "annotations",
  736. "docblock",
  737. "parser"
  738. ],
  739. "support": {
  740. "issues": "https://github.com/doctrine/annotations/issues",
  741. "source": "https://github.com/doctrine/annotations/tree/1.13.1"
  742. },
  743. "time": "2021-05-16T18:07:53+00:00"
  744. },
  745. {
  746. "name": "doctrine/cache",
  747. "version": "2.1.1",
  748. "source": {
  749. "type": "git",
  750. "url": "https://github.com/doctrine/cache.git",
  751. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce"
  752. },
  753. "dist": {
  754. "type": "zip",
  755. "url": "https://api.github.com/repos/doctrine/cache/zipball/331b4d5dbaeab3827976273e9356b3b453c300ce",
  756. "reference": "331b4d5dbaeab3827976273e9356b3b453c300ce",
  757. "shasum": "",
  758. "mirrors": [
  759. {
  760. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  761. "preferred": true
  762. }
  763. ]
  764. },
  765. "require": {
  766. "php": "~7.1 || ^8.0"
  767. },
  768. "conflict": {
  769. "doctrine/common": ">2.2,<2.4"
  770. },
  771. "require-dev": {
  772. "alcaeus/mongo-php-adapter": "^1.1",
  773. "cache/integration-tests": "dev-master",
  774. "doctrine/coding-standard": "^8.0",
  775. "mongodb/mongodb": "^1.1",
  776. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  777. "predis/predis": "~1.0",
  778. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  779. "symfony/cache": "^4.4 || ^5.2 || ^6.0@dev",
  780. "symfony/var-exporter": "^4.4 || ^5.2 || ^6.0@dev"
  781. },
  782. "suggest": {
  783. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  784. },
  785. "type": "library",
  786. "autoload": {
  787. "psr-4": {
  788. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  789. }
  790. },
  791. "notification-url": "https://packagist.org/downloads/",
  792. "license": [
  793. "MIT"
  794. ],
  795. "authors": [
  796. {
  797. "name": "Guilherme Blanco",
  798. "email": "guilhermeblanco@gmail.com"
  799. },
  800. {
  801. "name": "Roman Borschel",
  802. "email": "roman@code-factory.org"
  803. },
  804. {
  805. "name": "Benjamin Eberlei",
  806. "email": "kontakt@beberlei.de"
  807. },
  808. {
  809. "name": "Jonathan Wage",
  810. "email": "jonwage@gmail.com"
  811. },
  812. {
  813. "name": "Johannes Schmitt",
  814. "email": "schmittjoh@gmail.com"
  815. }
  816. ],
  817. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  818. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  819. "keywords": [
  820. "abstraction",
  821. "apcu",
  822. "cache",
  823. "caching",
  824. "couchdb",
  825. "memcached",
  826. "php",
  827. "redis",
  828. "xcache"
  829. ],
  830. "support": {
  831. "issues": "https://github.com/doctrine/cache/issues",
  832. "source": "https://github.com/doctrine/cache/tree/2.1.1"
  833. },
  834. "funding": [
  835. {
  836. "url": "https://www.doctrine-project.org/sponsorship.html",
  837. "type": "custom"
  838. },
  839. {
  840. "url": "https://www.patreon.com/phpdoctrine",
  841. "type": "patreon"
  842. },
  843. {
  844. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  845. "type": "tidelift"
  846. }
  847. ],
  848. "time": "2021-07-17T14:49:29+00:00"
  849. },
  850. {
  851. "name": "doctrine/dbal",
  852. "version": "3.1.1",
  853. "source": {
  854. "type": "git",
  855. "url": "https://github.com/doctrine/dbal.git",
  856. "reference": "8e0fde2b90e3f61361013d1e928621beeea07bc0"
  857. },
  858. "dist": {
  859. "type": "zip",
  860. "url": "https://api.github.com/repos/doctrine/dbal/zipball/8e0fde2b90e3f61361013d1e928621beeea07bc0",
  861. "reference": "8e0fde2b90e3f61361013d1e928621beeea07bc0",
  862. "shasum": "",
  863. "mirrors": [
  864. {
  865. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  866. "preferred": true
  867. }
  868. ]
  869. },
  870. "require": {
  871. "composer/package-versions-deprecated": "^1.11.99",
  872. "doctrine/cache": "^1.0|^2.0",
  873. "doctrine/deprecations": "^0.5.3",
  874. "doctrine/event-manager": "^1.0",
  875. "php": "^7.3 || ^8.0"
  876. },
  877. "require-dev": {
  878. "doctrine/coding-standard": "9.0.0",
  879. "jetbrains/phpstorm-stubs": "2020.2",
  880. "phpstan/phpstan": "0.12.81",
  881. "phpstan/phpstan-strict-rules": "^0.12.2",
  882. "phpunit/phpunit": "9.5.5",
  883. "psalm/plugin-phpunit": "0.13.0",
  884. "squizlabs/php_codesniffer": "3.6.0",
  885. "symfony/cache": "^5.2|^6.0",
  886. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0|^6.0",
  887. "vimeo/psalm": "4.6.4"
  888. },
  889. "suggest": {
  890. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  891. },
  892. "bin": [
  893. "bin/doctrine-dbal"
  894. ],
  895. "type": "library",
  896. "autoload": {
  897. "psr-4": {
  898. "Doctrine\\DBAL\\": "src"
  899. }
  900. },
  901. "notification-url": "https://packagist.org/downloads/",
  902. "license": [
  903. "MIT"
  904. ],
  905. "authors": [
  906. {
  907. "name": "Guilherme Blanco",
  908. "email": "guilhermeblanco@gmail.com"
  909. },
  910. {
  911. "name": "Roman Borschel",
  912. "email": "roman@code-factory.org"
  913. },
  914. {
  915. "name": "Benjamin Eberlei",
  916. "email": "kontakt@beberlei.de"
  917. },
  918. {
  919. "name": "Jonathan Wage",
  920. "email": "jonwage@gmail.com"
  921. }
  922. ],
  923. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  924. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  925. "keywords": [
  926. "abstraction",
  927. "database",
  928. "db2",
  929. "dbal",
  930. "mariadb",
  931. "mssql",
  932. "mysql",
  933. "oci8",
  934. "oracle",
  935. "pdo",
  936. "pgsql",
  937. "postgresql",
  938. "queryobject",
  939. "sasql",
  940. "sql",
  941. "sqlite",
  942. "sqlserver",
  943. "sqlsrv"
  944. ],
  945. "support": {
  946. "issues": "https://github.com/doctrine/dbal/issues",
  947. "source": "https://github.com/doctrine/dbal/tree/3.1.1"
  948. },
  949. "funding": [
  950. {
  951. "url": "https://www.doctrine-project.org/sponsorship.html",
  952. "type": "custom"
  953. },
  954. {
  955. "url": "https://www.patreon.com/phpdoctrine",
  956. "type": "patreon"
  957. },
  958. {
  959. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  960. "type": "tidelift"
  961. }
  962. ],
  963. "time": "2021-06-19T17:59:55+00:00"
  964. },
  965. {
  966. "name": "doctrine/deprecations",
  967. "version": "v0.5.3",
  968. "source": {
  969. "type": "git",
  970. "url": "https://github.com/doctrine/deprecations.git",
  971. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  972. },
  973. "dist": {
  974. "type": "zip",
  975. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  976. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  977. "shasum": "",
  978. "mirrors": [
  979. {
  980. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  981. "preferred": true
  982. }
  983. ]
  984. },
  985. "require": {
  986. "php": "^7.1|^8.0"
  987. },
  988. "require-dev": {
  989. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  990. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  991. "psr/log": "^1.0"
  992. },
  993. "suggest": {
  994. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  995. },
  996. "type": "library",
  997. "autoload": {
  998. "psr-4": {
  999. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1000. }
  1001. },
  1002. "notification-url": "https://packagist.org/downloads/",
  1003. "license": [
  1004. "MIT"
  1005. ],
  1006. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  1007. "homepage": "https://www.doctrine-project.org/",
  1008. "support": {
  1009. "issues": "https://github.com/doctrine/deprecations/issues",
  1010. "source": "https://github.com/doctrine/deprecations/tree/v0.5.3"
  1011. },
  1012. "time": "2021-03-21T12:59:47+00:00"
  1013. },
  1014. {
  1015. "name": "doctrine/event-manager",
  1016. "version": "1.1.1",
  1017. "source": {
  1018. "type": "git",
  1019. "url": "https://github.com/doctrine/event-manager.git",
  1020. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1021. },
  1022. "dist": {
  1023. "type": "zip",
  1024. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1025. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1026. "shasum": "",
  1027. "mirrors": [
  1028. {
  1029. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1030. "preferred": true
  1031. }
  1032. ]
  1033. },
  1034. "require": {
  1035. "php": "^7.1 || ^8.0"
  1036. },
  1037. "conflict": {
  1038. "doctrine/common": "<2.9@dev"
  1039. },
  1040. "require-dev": {
  1041. "doctrine/coding-standard": "^6.0",
  1042. "phpunit/phpunit": "^7.0"
  1043. },
  1044. "type": "library",
  1045. "extra": {
  1046. "branch-alias": {
  1047. "dev-master": "1.0.x-dev"
  1048. }
  1049. },
  1050. "autoload": {
  1051. "psr-4": {
  1052. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1053. }
  1054. },
  1055. "notification-url": "https://packagist.org/downloads/",
  1056. "license": [
  1057. "MIT"
  1058. ],
  1059. "authors": [
  1060. {
  1061. "name": "Guilherme Blanco",
  1062. "email": "guilhermeblanco@gmail.com"
  1063. },
  1064. {
  1065. "name": "Roman Borschel",
  1066. "email": "roman@code-factory.org"
  1067. },
  1068. {
  1069. "name": "Benjamin Eberlei",
  1070. "email": "kontakt@beberlei.de"
  1071. },
  1072. {
  1073. "name": "Jonathan Wage",
  1074. "email": "jonwage@gmail.com"
  1075. },
  1076. {
  1077. "name": "Johannes Schmitt",
  1078. "email": "schmittjoh@gmail.com"
  1079. },
  1080. {
  1081. "name": "Marco Pivetta",
  1082. "email": "ocramius@gmail.com"
  1083. }
  1084. ],
  1085. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1086. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1087. "keywords": [
  1088. "event",
  1089. "event dispatcher",
  1090. "event manager",
  1091. "event system",
  1092. "events"
  1093. ],
  1094. "support": {
  1095. "issues": "https://github.com/doctrine/event-manager/issues",
  1096. "source": "https://github.com/doctrine/event-manager/tree/1.1.x"
  1097. },
  1098. "funding": [
  1099. {
  1100. "url": "https://www.doctrine-project.org/sponsorship.html",
  1101. "type": "custom"
  1102. },
  1103. {
  1104. "url": "https://www.patreon.com/phpdoctrine",
  1105. "type": "patreon"
  1106. },
  1107. {
  1108. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1109. "type": "tidelift"
  1110. }
  1111. ],
  1112. "time": "2020-05-29T18:28:51+00:00"
  1113. },
  1114. {
  1115. "name": "doctrine/inflector",
  1116. "version": "2.0.3",
  1117. "source": {
  1118. "type": "git",
  1119. "url": "https://github.com/doctrine/inflector.git",
  1120. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  1121. },
  1122. "dist": {
  1123. "type": "zip",
  1124. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  1125. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  1126. "shasum": "",
  1127. "mirrors": [
  1128. {
  1129. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1130. "preferred": true
  1131. }
  1132. ]
  1133. },
  1134. "require": {
  1135. "php": "^7.2 || ^8.0"
  1136. },
  1137. "require-dev": {
  1138. "doctrine/coding-standard": "^7.0",
  1139. "phpstan/phpstan": "^0.11",
  1140. "phpstan/phpstan-phpunit": "^0.11",
  1141. "phpstan/phpstan-strict-rules": "^0.11",
  1142. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1143. },
  1144. "type": "library",
  1145. "extra": {
  1146. "branch-alias": {
  1147. "dev-master": "2.0.x-dev"
  1148. }
  1149. },
  1150. "autoload": {
  1151. "psr-4": {
  1152. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1153. }
  1154. },
  1155. "notification-url": "https://packagist.org/downloads/",
  1156. "license": [
  1157. "MIT"
  1158. ],
  1159. "authors": [
  1160. {
  1161. "name": "Guilherme Blanco",
  1162. "email": "guilhermeblanco@gmail.com"
  1163. },
  1164. {
  1165. "name": "Roman Borschel",
  1166. "email": "roman@code-factory.org"
  1167. },
  1168. {
  1169. "name": "Benjamin Eberlei",
  1170. "email": "kontakt@beberlei.de"
  1171. },
  1172. {
  1173. "name": "Jonathan Wage",
  1174. "email": "jonwage@gmail.com"
  1175. },
  1176. {
  1177. "name": "Johannes Schmitt",
  1178. "email": "schmittjoh@gmail.com"
  1179. }
  1180. ],
  1181. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1182. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1183. "keywords": [
  1184. "inflection",
  1185. "inflector",
  1186. "lowercase",
  1187. "manipulation",
  1188. "php",
  1189. "plural",
  1190. "singular",
  1191. "strings",
  1192. "uppercase",
  1193. "words"
  1194. ],
  1195. "support": {
  1196. "issues": "https://github.com/doctrine/inflector/issues",
  1197. "source": "https://github.com/doctrine/inflector/tree/2.0.x"
  1198. },
  1199. "funding": [
  1200. {
  1201. "url": "https://www.doctrine-project.org/sponsorship.html",
  1202. "type": "custom"
  1203. },
  1204. {
  1205. "url": "https://www.patreon.com/phpdoctrine",
  1206. "type": "patreon"
  1207. },
  1208. {
  1209. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1210. "type": "tidelift"
  1211. }
  1212. ],
  1213. "time": "2020-05-29T15:13:26+00:00"
  1214. },
  1215. {
  1216. "name": "doctrine/lexer",
  1217. "version": "1.2.1",
  1218. "source": {
  1219. "type": "git",
  1220. "url": "https://github.com/doctrine/lexer.git",
  1221. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1222. },
  1223. "dist": {
  1224. "type": "zip",
  1225. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1226. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1227. "shasum": "",
  1228. "mirrors": [
  1229. {
  1230. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1231. "preferred": true
  1232. }
  1233. ]
  1234. },
  1235. "require": {
  1236. "php": "^7.2 || ^8.0"
  1237. },
  1238. "require-dev": {
  1239. "doctrine/coding-standard": "^6.0",
  1240. "phpstan/phpstan": "^0.11.8",
  1241. "phpunit/phpunit": "^8.2"
  1242. },
  1243. "type": "library",
  1244. "extra": {
  1245. "branch-alias": {
  1246. "dev-master": "1.2.x-dev"
  1247. }
  1248. },
  1249. "autoload": {
  1250. "psr-4": {
  1251. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1252. }
  1253. },
  1254. "notification-url": "https://packagist.org/downloads/",
  1255. "license": [
  1256. "MIT"
  1257. ],
  1258. "authors": [
  1259. {
  1260. "name": "Guilherme Blanco",
  1261. "email": "guilhermeblanco@gmail.com"
  1262. },
  1263. {
  1264. "name": "Roman Borschel",
  1265. "email": "roman@code-factory.org"
  1266. },
  1267. {
  1268. "name": "Johannes Schmitt",
  1269. "email": "schmittjoh@gmail.com"
  1270. }
  1271. ],
  1272. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1273. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1274. "keywords": [
  1275. "annotations",
  1276. "docblock",
  1277. "lexer",
  1278. "parser",
  1279. "php"
  1280. ],
  1281. "support": {
  1282. "issues": "https://github.com/doctrine/lexer/issues",
  1283. "source": "https://github.com/doctrine/lexer/tree/1.2.1"
  1284. },
  1285. "funding": [
  1286. {
  1287. "url": "https://www.doctrine-project.org/sponsorship.html",
  1288. "type": "custom"
  1289. },
  1290. {
  1291. "url": "https://www.patreon.com/phpdoctrine",
  1292. "type": "patreon"
  1293. },
  1294. {
  1295. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1296. "type": "tidelift"
  1297. }
  1298. ],
  1299. "time": "2020-05-25T17:44:05+00:00"
  1300. },
  1301. {
  1302. "name": "dragonmantank/cron-expression",
  1303. "version": "v3.1.0",
  1304. "source": {
  1305. "type": "git",
  1306. "url": "https://github.com/dragonmantank/cron-expression.git",
  1307. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c"
  1308. },
  1309. "dist": {
  1310. "type": "zip",
  1311. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  1312. "reference": "7a8c6e56ab3ffcc538d05e8155bb42269abf1a0c",
  1313. "shasum": "",
  1314. "mirrors": [
  1315. {
  1316. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1317. "preferred": true
  1318. }
  1319. ]
  1320. },
  1321. "require": {
  1322. "php": "^7.2|^8.0",
  1323. "webmozart/assert": "^1.7.0"
  1324. },
  1325. "replace": {
  1326. "mtdowling/cron-expression": "^1.0"
  1327. },
  1328. "require-dev": {
  1329. "phpstan/extension-installer": "^1.0",
  1330. "phpstan/phpstan": "^0.12",
  1331. "phpstan/phpstan-webmozart-assert": "^0.12.7",
  1332. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1333. },
  1334. "type": "library",
  1335. "autoload": {
  1336. "psr-4": {
  1337. "Cron\\": "src/Cron/"
  1338. }
  1339. },
  1340. "notification-url": "https://packagist.org/downloads/",
  1341. "license": [
  1342. "MIT"
  1343. ],
  1344. "authors": [
  1345. {
  1346. "name": "Chris Tankersley",
  1347. "email": "chris@ctankersley.com",
  1348. "homepage": "https://github.com/dragonmantank"
  1349. }
  1350. ],
  1351. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1352. "keywords": [
  1353. "cron",
  1354. "schedule"
  1355. ],
  1356. "support": {
  1357. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1358. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.1.0"
  1359. },
  1360. "funding": [
  1361. {
  1362. "url": "https://github.com/dragonmantank",
  1363. "type": "github"
  1364. }
  1365. ],
  1366. "time": "2020-11-24T19:55:57+00:00"
  1367. },
  1368. {
  1369. "name": "egulias/email-validator",
  1370. "version": "2.1.25",
  1371. "source": {
  1372. "type": "git",
  1373. "url": "https://github.com/egulias/EmailValidator.git",
  1374. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1375. },
  1376. "dist": {
  1377. "type": "zip",
  1378. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1379. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1380. "shasum": "",
  1381. "mirrors": [
  1382. {
  1383. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1384. "preferred": true
  1385. }
  1386. ]
  1387. },
  1388. "require": {
  1389. "doctrine/lexer": "^1.0.1",
  1390. "php": ">=5.5",
  1391. "symfony/polyfill-intl-idn": "^1.10"
  1392. },
  1393. "require-dev": {
  1394. "dominicsayers/isemail": "^3.0.7",
  1395. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1396. "satooshi/php-coveralls": "^1.0.1"
  1397. },
  1398. "suggest": {
  1399. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1400. },
  1401. "type": "library",
  1402. "extra": {
  1403. "branch-alias": {
  1404. "dev-master": "2.1.x-dev"
  1405. }
  1406. },
  1407. "autoload": {
  1408. "psr-4": {
  1409. "Egulias\\EmailValidator\\": "src"
  1410. }
  1411. },
  1412. "notification-url": "https://packagist.org/downloads/",
  1413. "license": [
  1414. "MIT"
  1415. ],
  1416. "authors": [
  1417. {
  1418. "name": "Eduardo Gulias Davis"
  1419. }
  1420. ],
  1421. "description": "A library for validating emails against several RFCs",
  1422. "homepage": "https://github.com/egulias/EmailValidator",
  1423. "keywords": [
  1424. "email",
  1425. "emailvalidation",
  1426. "emailvalidator",
  1427. "validation",
  1428. "validator"
  1429. ],
  1430. "support": {
  1431. "issues": "https://github.com/egulias/EmailValidator/issues",
  1432. "source": "https://github.com/egulias/EmailValidator/tree/2.1.25"
  1433. },
  1434. "funding": [
  1435. {
  1436. "url": "https://github.com/egulias",
  1437. "type": "github"
  1438. }
  1439. ],
  1440. "time": "2020-12-29T14:50:06+00:00"
  1441. },
  1442. {
  1443. "name": "fideloper/proxy",
  1444. "version": "4.4.1",
  1445. "source": {
  1446. "type": "git",
  1447. "url": "https://github.com/fideloper/TrustedProxy.git",
  1448. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0"
  1449. },
  1450. "dist": {
  1451. "type": "zip",
  1452. "url": "https://api.github.com/repos/fideloper/TrustedProxy/zipball/c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1453. "reference": "c073b2bd04d1c90e04dc1b787662b558dd65ade0",
  1454. "shasum": "",
  1455. "mirrors": [
  1456. {
  1457. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1458. "preferred": true
  1459. }
  1460. ]
  1461. },
  1462. "require": {
  1463. "illuminate/contracts": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1464. "php": ">=5.4.0"
  1465. },
  1466. "require-dev": {
  1467. "illuminate/http": "^5.0|^6.0|^7.0|^8.0|^9.0",
  1468. "mockery/mockery": "^1.0",
  1469. "phpunit/phpunit": "^6.0"
  1470. },
  1471. "type": "library",
  1472. "extra": {
  1473. "laravel": {
  1474. "providers": [
  1475. "Fideloper\\Proxy\\TrustedProxyServiceProvider"
  1476. ]
  1477. }
  1478. },
  1479. "autoload": {
  1480. "psr-4": {
  1481. "Fideloper\\Proxy\\": "src/"
  1482. }
  1483. },
  1484. "notification-url": "https://packagist.org/downloads/",
  1485. "license": [
  1486. "MIT"
  1487. ],
  1488. "authors": [
  1489. {
  1490. "name": "Chris Fidao",
  1491. "email": "fideloper@gmail.com"
  1492. }
  1493. ],
  1494. "description": "Set trusted proxies for Laravel",
  1495. "keywords": [
  1496. "load balancing",
  1497. "proxy",
  1498. "trusted proxy"
  1499. ],
  1500. "support": {
  1501. "issues": "https://github.com/fideloper/TrustedProxy/issues",
  1502. "source": "https://github.com/fideloper/TrustedProxy/tree/4.4.1"
  1503. },
  1504. "time": "2020-10-22T13:48:01+00:00"
  1505. },
  1506. {
  1507. "name": "fruitcake/laravel-cors",
  1508. "version": "v2.0.4",
  1509. "source": {
  1510. "type": "git",
  1511. "url": "https://github.com/fruitcake/laravel-cors.git",
  1512. "reference": "a8ccedc7ca95189ead0e407c43b530dc17791d6a"
  1513. },
  1514. "dist": {
  1515. "type": "zip",
  1516. "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/a8ccedc7ca95189ead0e407c43b530dc17791d6a",
  1517. "reference": "a8ccedc7ca95189ead0e407c43b530dc17791d6a",
  1518. "shasum": "",
  1519. "mirrors": [
  1520. {
  1521. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1522. "preferred": true
  1523. }
  1524. ]
  1525. },
  1526. "require": {
  1527. "asm89/stack-cors": "^2.0.1",
  1528. "illuminate/contracts": "^6|^7|^8|^9",
  1529. "illuminate/support": "^6|^7|^8|^9",
  1530. "php": ">=7.2",
  1531. "symfony/http-foundation": "^4|^5",
  1532. "symfony/http-kernel": "^4.3.4|^5"
  1533. },
  1534. "require-dev": {
  1535. "laravel/framework": "^6|^7|^8",
  1536. "orchestra/testbench-dusk": "^4|^5|^6|^7",
  1537. "phpunit/phpunit": "^6|^7|^8|^9",
  1538. "squizlabs/php_codesniffer": "^3.5"
  1539. },
  1540. "type": "library",
  1541. "extra": {
  1542. "branch-alias": {
  1543. "dev-master": "2.0-dev"
  1544. },
  1545. "laravel": {
  1546. "providers": [
  1547. "Fruitcake\\Cors\\CorsServiceProvider"
  1548. ]
  1549. }
  1550. },
  1551. "autoload": {
  1552. "psr-4": {
  1553. "Fruitcake\\Cors\\": "src/"
  1554. }
  1555. },
  1556. "notification-url": "https://packagist.org/downloads/",
  1557. "license": [
  1558. "MIT"
  1559. ],
  1560. "authors": [
  1561. {
  1562. "name": "Fruitcake",
  1563. "homepage": "https://fruitcake.nl"
  1564. },
  1565. {
  1566. "name": "Barry vd. Heuvel",
  1567. "email": "barryvdh@gmail.com"
  1568. }
  1569. ],
  1570. "description": "Adds CORS (Cross-Origin Resource Sharing) headers support in your Laravel application",
  1571. "keywords": [
  1572. "api",
  1573. "cors",
  1574. "crossdomain",
  1575. "laravel"
  1576. ],
  1577. "support": {
  1578. "issues": "https://github.com/fruitcake/laravel-cors/issues",
  1579. "source": "https://github.com/fruitcake/laravel-cors/tree/v2.0.4"
  1580. },
  1581. "funding": [
  1582. {
  1583. "url": "https://github.com/barryvdh",
  1584. "type": "github"
  1585. }
  1586. ],
  1587. "time": "2021-04-26T11:24:25+00:00"
  1588. },
  1589. {
  1590. "name": "graham-campbell/result-type",
  1591. "version": "v1.0.1",
  1592. "source": {
  1593. "type": "git",
  1594. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1595. "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb"
  1596. },
  1597. "dist": {
  1598. "type": "zip",
  1599. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/7e279d2cd5d7fbb156ce46daada972355cea27bb",
  1600. "reference": "7e279d2cd5d7fbb156ce46daada972355cea27bb",
  1601. "shasum": "",
  1602. "mirrors": [
  1603. {
  1604. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1605. "preferred": true
  1606. }
  1607. ]
  1608. },
  1609. "require": {
  1610. "php": "^7.0|^8.0",
  1611. "phpoption/phpoption": "^1.7.3"
  1612. },
  1613. "require-dev": {
  1614. "phpunit/phpunit": "^6.5|^7.5|^8.5|^9.0"
  1615. },
  1616. "type": "library",
  1617. "extra": {
  1618. "branch-alias": {
  1619. "dev-master": "1.0-dev"
  1620. }
  1621. },
  1622. "autoload": {
  1623. "psr-4": {
  1624. "GrahamCampbell\\ResultType\\": "src/"
  1625. }
  1626. },
  1627. "notification-url": "https://packagist.org/downloads/",
  1628. "license": [
  1629. "MIT"
  1630. ],
  1631. "authors": [
  1632. {
  1633. "name": "Graham Campbell",
  1634. "email": "graham@alt-three.com"
  1635. }
  1636. ],
  1637. "description": "An Implementation Of The Result Type",
  1638. "keywords": [
  1639. "Graham Campbell",
  1640. "GrahamCampbell",
  1641. "Result Type",
  1642. "Result-Type",
  1643. "result"
  1644. ],
  1645. "support": {
  1646. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1647. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.0.1"
  1648. },
  1649. "funding": [
  1650. {
  1651. "url": "https://github.com/GrahamCampbell",
  1652. "type": "github"
  1653. },
  1654. {
  1655. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1656. "type": "tidelift"
  1657. }
  1658. ],
  1659. "time": "2020-04-13T13:17:36+00:00"
  1660. },
  1661. {
  1662. "name": "guzzlehttp/guzzle",
  1663. "version": "7.3.0",
  1664. "source": {
  1665. "type": "git",
  1666. "url": "https://github.com/guzzle/guzzle.git",
  1667. "reference": "7008573787b430c1c1f650e3722d9bba59967628"
  1668. },
  1669. "dist": {
  1670. "type": "zip",
  1671. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7008573787b430c1c1f650e3722d9bba59967628",
  1672. "reference": "7008573787b430c1c1f650e3722d9bba59967628",
  1673. "shasum": "",
  1674. "mirrors": [
  1675. {
  1676. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1677. "preferred": true
  1678. }
  1679. ]
  1680. },
  1681. "require": {
  1682. "ext-json": "*",
  1683. "guzzlehttp/promises": "^1.4",
  1684. "guzzlehttp/psr7": "^1.7 || ^2.0",
  1685. "php": "^7.2.5 || ^8.0",
  1686. "psr/http-client": "^1.0"
  1687. },
  1688. "provide": {
  1689. "psr/http-client-implementation": "1.0"
  1690. },
  1691. "require-dev": {
  1692. "bamarni/composer-bin-plugin": "^1.4.1",
  1693. "ext-curl": "*",
  1694. "php-http/client-integration-tests": "^3.0",
  1695. "phpunit/phpunit": "^8.5.5 || ^9.3.5",
  1696. "psr/log": "^1.1"
  1697. },
  1698. "suggest": {
  1699. "ext-curl": "Required for CURL handler support",
  1700. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1701. "psr/log": "Required for using the Log middleware"
  1702. },
  1703. "type": "library",
  1704. "extra": {
  1705. "branch-alias": {
  1706. "dev-master": "7.3-dev"
  1707. }
  1708. },
  1709. "autoload": {
  1710. "psr-4": {
  1711. "GuzzleHttp\\": "src/"
  1712. },
  1713. "files": [
  1714. "src/functions_include.php"
  1715. ]
  1716. },
  1717. "notification-url": "https://packagist.org/downloads/",
  1718. "license": [
  1719. "MIT"
  1720. ],
  1721. "authors": [
  1722. {
  1723. "name": "Michael Dowling",
  1724. "email": "mtdowling@gmail.com",
  1725. "homepage": "https://github.com/mtdowling"
  1726. },
  1727. {
  1728. "name": "Márk Sági-Kazár",
  1729. "email": "mark.sagikazar@gmail.com",
  1730. "homepage": "https://sagikazarmark.hu"
  1731. }
  1732. ],
  1733. "description": "Guzzle is a PHP HTTP client library",
  1734. "homepage": "http://guzzlephp.org/",
  1735. "keywords": [
  1736. "client",
  1737. "curl",
  1738. "framework",
  1739. "http",
  1740. "http client",
  1741. "psr-18",
  1742. "psr-7",
  1743. "rest",
  1744. "web service"
  1745. ],
  1746. "support": {
  1747. "issues": "https://github.com/guzzle/guzzle/issues",
  1748. "source": "https://github.com/guzzle/guzzle/tree/7.3.0"
  1749. },
  1750. "funding": [
  1751. {
  1752. "url": "https://github.com/GrahamCampbell",
  1753. "type": "github"
  1754. },
  1755. {
  1756. "url": "https://github.com/Nyholm",
  1757. "type": "github"
  1758. },
  1759. {
  1760. "url": "https://github.com/alexeyshockov",
  1761. "type": "github"
  1762. },
  1763. {
  1764. "url": "https://github.com/gmponos",
  1765. "type": "github"
  1766. }
  1767. ],
  1768. "time": "2021-03-23T11:33:13+00:00"
  1769. },
  1770. {
  1771. "name": "guzzlehttp/promises",
  1772. "version": "1.4.1",
  1773. "source": {
  1774. "type": "git",
  1775. "url": "https://github.com/guzzle/promises.git",
  1776. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1777. },
  1778. "dist": {
  1779. "type": "zip",
  1780. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1781. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1782. "shasum": "",
  1783. "mirrors": [
  1784. {
  1785. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1786. "preferred": true
  1787. }
  1788. ]
  1789. },
  1790. "require": {
  1791. "php": ">=5.5"
  1792. },
  1793. "require-dev": {
  1794. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1795. },
  1796. "type": "library",
  1797. "extra": {
  1798. "branch-alias": {
  1799. "dev-master": "1.4-dev"
  1800. }
  1801. },
  1802. "autoload": {
  1803. "psr-4": {
  1804. "GuzzleHttp\\Promise\\": "src/"
  1805. },
  1806. "files": [
  1807. "src/functions_include.php"
  1808. ]
  1809. },
  1810. "notification-url": "https://packagist.org/downloads/",
  1811. "license": [
  1812. "MIT"
  1813. ],
  1814. "authors": [
  1815. {
  1816. "name": "Michael Dowling",
  1817. "email": "mtdowling@gmail.com",
  1818. "homepage": "https://github.com/mtdowling"
  1819. }
  1820. ],
  1821. "description": "Guzzle promises library",
  1822. "keywords": [
  1823. "promise"
  1824. ],
  1825. "support": {
  1826. "issues": "https://github.com/guzzle/promises/issues",
  1827. "source": "https://github.com/guzzle/promises/tree/1.4.1"
  1828. },
  1829. "time": "2021-03-07T09:25:29+00:00"
  1830. },
  1831. {
  1832. "name": "guzzlehttp/psr7",
  1833. "version": "1.8.2",
  1834. "source": {
  1835. "type": "git",
  1836. "url": "https://github.com/guzzle/psr7.git",
  1837. "reference": "dc960a912984efb74d0a90222870c72c87f10c91"
  1838. },
  1839. "dist": {
  1840. "type": "zip",
  1841. "url": "https://api.github.com/repos/guzzle/psr7/zipball/dc960a912984efb74d0a90222870c72c87f10c91",
  1842. "reference": "dc960a912984efb74d0a90222870c72c87f10c91",
  1843. "shasum": "",
  1844. "mirrors": [
  1845. {
  1846. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1847. "preferred": true
  1848. }
  1849. ]
  1850. },
  1851. "require": {
  1852. "php": ">=5.4.0",
  1853. "psr/http-message": "~1.0",
  1854. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1855. },
  1856. "provide": {
  1857. "psr/http-message-implementation": "1.0"
  1858. },
  1859. "require-dev": {
  1860. "ext-zlib": "*",
  1861. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1862. },
  1863. "suggest": {
  1864. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1865. },
  1866. "type": "library",
  1867. "extra": {
  1868. "branch-alias": {
  1869. "dev-master": "1.7-dev"
  1870. }
  1871. },
  1872. "autoload": {
  1873. "psr-4": {
  1874. "GuzzleHttp\\Psr7\\": "src/"
  1875. },
  1876. "files": [
  1877. "src/functions_include.php"
  1878. ]
  1879. },
  1880. "notification-url": "https://packagist.org/downloads/",
  1881. "license": [
  1882. "MIT"
  1883. ],
  1884. "authors": [
  1885. {
  1886. "name": "Michael Dowling",
  1887. "email": "mtdowling@gmail.com",
  1888. "homepage": "https://github.com/mtdowling"
  1889. },
  1890. {
  1891. "name": "Tobias Schultze",
  1892. "homepage": "https://github.com/Tobion"
  1893. }
  1894. ],
  1895. "description": "PSR-7 message implementation that also provides common utility methods",
  1896. "keywords": [
  1897. "http",
  1898. "message",
  1899. "psr-7",
  1900. "request",
  1901. "response",
  1902. "stream",
  1903. "uri",
  1904. "url"
  1905. ],
  1906. "support": {
  1907. "issues": "https://github.com/guzzle/psr7/issues",
  1908. "source": "https://github.com/guzzle/psr7/tree/1.8.2"
  1909. },
  1910. "time": "2021-04-26T09:17:50+00:00"
  1911. },
  1912. {
  1913. "name": "hanneskod/classtools",
  1914. "version": "1.2.1",
  1915. "source": {
  1916. "type": "git",
  1917. "url": "https://github.com/hanneskod/classtools.git",
  1918. "reference": "d365ddac0e602027c0471ea292f4ba2afcb49394"
  1919. },
  1920. "dist": {
  1921. "type": "zip",
  1922. "url": "https://api.github.com/repos/hanneskod/classtools/zipball/d365ddac0e602027c0471ea292f4ba2afcb49394",
  1923. "reference": "d365ddac0e602027c0471ea292f4ba2afcb49394",
  1924. "shasum": "",
  1925. "mirrors": [
  1926. {
  1927. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1928. "preferred": true
  1929. }
  1930. ]
  1931. },
  1932. "require": {
  1933. "nikic/php-parser": "^4",
  1934. "php": ">=7.1",
  1935. "symfony/finder": "^4|^5"
  1936. },
  1937. "type": "library",
  1938. "autoload": {
  1939. "psr-4": {
  1940. "hanneskod\\classtools\\": "src/"
  1941. }
  1942. },
  1943. "notification-url": "https://packagist.org/downloads/",
  1944. "license": [
  1945. "WTFPL"
  1946. ],
  1947. "authors": [
  1948. {
  1949. "name": "Hannes Forsgård",
  1950. "email": "hannes.forsgard@fripost.org"
  1951. }
  1952. ],
  1953. "description": "Find, extract and process classes from file system",
  1954. "homepage": "https://github.com/hanneskod/classtools",
  1955. "keywords": [
  1956. "class finder",
  1957. "code generator",
  1958. "metaprogramming",
  1959. "minimizer"
  1960. ],
  1961. "support": {
  1962. "issues": "https://github.com/hanneskod/classtools/issues",
  1963. "source": "https://github.com/hanneskod/classtools/tree/1.0"
  1964. },
  1965. "time": "2020-03-05T20:41:28+00:00"
  1966. },
  1967. {
  1968. "name": "iidestiny/flysystem-oss",
  1969. "version": "2.7",
  1970. "source": {
  1971. "type": "git",
  1972. "url": "https://github.com/iiDestiny/flysystem-oss.git",
  1973. "reference": "c943ce550e973129955275bb17e8182fe8a74020"
  1974. },
  1975. "dist": {
  1976. "type": "zip",
  1977. "url": "https://api.github.com/repos/iiDestiny/flysystem-oss/zipball/c943ce550e973129955275bb17e8182fe8a74020",
  1978. "reference": "c943ce550e973129955275bb17e8182fe8a74020",
  1979. "shasum": "",
  1980. "mirrors": [
  1981. {
  1982. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1983. "preferred": true
  1984. }
  1985. ]
  1986. },
  1987. "require": {
  1988. "aliyuncs/oss-sdk-php": "^2.4",
  1989. "ext-curl": "*",
  1990. "ext-json": "*",
  1991. "ext-openssl": "*",
  1992. "league/flysystem": "^1.0",
  1993. "nesbot/carbon": "^1.24.1 || ^2.0",
  1994. "php": "^7.0 || ^8.0"
  1995. },
  1996. "require-dev": {
  1997. "mockery/mockery": "^1.2",
  1998. "phpunit/phpunit": "^6.5",
  1999. "symfony/var-dumper": "^3.4"
  2000. },
  2001. "type": "library",
  2002. "autoload": {
  2003. "psr-4": {
  2004. "Iidestiny\\Flysystem\\Oss\\": "src"
  2005. }
  2006. },
  2007. "notification-url": "https://packagist.org/downloads/",
  2008. "license": [
  2009. "MIT"
  2010. ],
  2011. "authors": [
  2012. {
  2013. "name": "iidestiny",
  2014. "email": "iidestiny@vip.qq.com"
  2015. }
  2016. ],
  2017. "description": "Flysystem adapter for the Oss storage.",
  2018. "keywords": [
  2019. "alioss",
  2020. "laravel",
  2021. "oss",
  2022. "阿里oss"
  2023. ],
  2024. "support": {
  2025. "issues": "https://github.com/iiDestiny/flysystem-oss/issues",
  2026. "source": "https://github.com/iiDestiny/flysystem-oss/tree/2.7"
  2027. },
  2028. "time": "2021-06-14T10:18:58+00:00"
  2029. },
  2030. {
  2031. "name": "iidestiny/laravel-filesystem-oss",
  2032. "version": "2.1",
  2033. "source": {
  2034. "type": "git",
  2035. "url": "https://github.com/iiDestiny/laravel-filesystem-oss.git",
  2036. "reference": "ae3cd6fd3cd727eedda0e2bcd0403a6d79fe4223"
  2037. },
  2038. "dist": {
  2039. "type": "zip",
  2040. "url": "https://api.github.com/repos/iiDestiny/laravel-filesystem-oss/zipball/ae3cd6fd3cd727eedda0e2bcd0403a6d79fe4223",
  2041. "reference": "ae3cd6fd3cd727eedda0e2bcd0403a6d79fe4223",
  2042. "shasum": "",
  2043. "mirrors": [
  2044. {
  2045. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2046. "preferred": true
  2047. }
  2048. ]
  2049. },
  2050. "require": {
  2051. "iidestiny/flysystem-oss": "~2.0",
  2052. "php": "^7.0|^8.0"
  2053. },
  2054. "type": "library",
  2055. "extra": {
  2056. "laravel": {
  2057. "providers": [
  2058. "Iidestiny\\LaravelFilesystemOss\\OssStorageServiceProvider"
  2059. ]
  2060. }
  2061. },
  2062. "autoload": {
  2063. "psr-4": {
  2064. "Iidestiny\\LaravelFilesystemOss\\": "src"
  2065. }
  2066. },
  2067. "notification-url": "https://packagist.org/downloads/",
  2068. "license": [
  2069. "MIT"
  2070. ],
  2071. "authors": [
  2072. {
  2073. "name": "iidestiny",
  2074. "email": "iidestiny@vip.qq.com"
  2075. }
  2076. ],
  2077. "description": "Oss storage filesystem for Laravel.",
  2078. "support": {
  2079. "issues": "https://github.com/iiDestiny/laravel-filesystem-oss/issues",
  2080. "source": "https://github.com/iiDestiny/laravel-filesystem-oss/tree/2.1"
  2081. },
  2082. "time": "2020-11-30T06:17:22+00:00"
  2083. },
  2084. {
  2085. "name": "intervention/image",
  2086. "version": "2.6.1",
  2087. "source": {
  2088. "type": "git",
  2089. "url": "https://github.com/Intervention/image.git",
  2090. "reference": "0925f10b259679b5d8ca58f3a2add9255ffcda45"
  2091. },
  2092. "dist": {
  2093. "type": "zip",
  2094. "url": "https://api.github.com/repos/Intervention/image/zipball/0925f10b259679b5d8ca58f3a2add9255ffcda45",
  2095. "reference": "0925f10b259679b5d8ca58f3a2add9255ffcda45",
  2096. "shasum": "",
  2097. "mirrors": [
  2098. {
  2099. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2100. "preferred": true
  2101. }
  2102. ]
  2103. },
  2104. "require": {
  2105. "ext-fileinfo": "*",
  2106. "guzzlehttp/psr7": "~1.1 || ^2.0",
  2107. "php": ">=5.4.0"
  2108. },
  2109. "require-dev": {
  2110. "mockery/mockery": "~0.9.2",
  2111. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  2112. },
  2113. "suggest": {
  2114. "ext-gd": "to use GD library based image processing.",
  2115. "ext-imagick": "to use Imagick based image processing.",
  2116. "intervention/imagecache": "Caching extension for the Intervention Image library"
  2117. },
  2118. "type": "library",
  2119. "extra": {
  2120. "branch-alias": {
  2121. "dev-master": "2.4-dev"
  2122. },
  2123. "laravel": {
  2124. "providers": [
  2125. "Intervention\\Image\\ImageServiceProvider"
  2126. ],
  2127. "aliases": {
  2128. "Image": "Intervention\\Image\\Facades\\Image"
  2129. }
  2130. }
  2131. },
  2132. "autoload": {
  2133. "psr-4": {
  2134. "Intervention\\Image\\": "src/Intervention/Image"
  2135. }
  2136. },
  2137. "notification-url": "https://packagist.org/downloads/",
  2138. "license": [
  2139. "MIT"
  2140. ],
  2141. "authors": [
  2142. {
  2143. "name": "Oliver Vogel",
  2144. "email": "oliver@olivervogel.com",
  2145. "homepage": "http://olivervogel.com/"
  2146. }
  2147. ],
  2148. "description": "Image handling and manipulation library with support for Laravel integration",
  2149. "homepage": "http://image.intervention.io/",
  2150. "keywords": [
  2151. "gd",
  2152. "image",
  2153. "imagick",
  2154. "laravel",
  2155. "thumbnail",
  2156. "watermark"
  2157. ],
  2158. "support": {
  2159. "issues": "https://github.com/Intervention/image/issues",
  2160. "source": "https://github.com/Intervention/image/tree/2.6.1"
  2161. },
  2162. "funding": [
  2163. {
  2164. "url": "https://www.paypal.me/interventionphp",
  2165. "type": "custom"
  2166. },
  2167. {
  2168. "url": "https://github.com/Intervention",
  2169. "type": "github"
  2170. }
  2171. ],
  2172. "time": "2021-07-22T14:31:53+00:00"
  2173. },
  2174. {
  2175. "name": "jpush/jpush",
  2176. "version": "v3.6.6",
  2177. "source": {
  2178. "type": "git",
  2179. "url": "https://github.com/jpush/jpush-api-php-client.git",
  2180. "reference": "64ff7f5919c80801f43b8332250e392b116521c6"
  2181. },
  2182. "dist": {
  2183. "type": "zip",
  2184. "url": "https://api.github.com/repos/jpush/jpush-api-php-client/zipball/64ff7f5919c80801f43b8332250e392b116521c6",
  2185. "reference": "64ff7f5919c80801f43b8332250e392b116521c6",
  2186. "shasum": "",
  2187. "mirrors": [
  2188. {
  2189. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2190. "preferred": true
  2191. }
  2192. ]
  2193. },
  2194. "require": {
  2195. "ext-curl": "*",
  2196. "php": ">=5.3.3"
  2197. },
  2198. "require-dev": {
  2199. "phpunit/phpunit": "*"
  2200. },
  2201. "type": "library",
  2202. "autoload": {
  2203. "psr-4": {
  2204. "JPush\\": "src/JPush/"
  2205. }
  2206. },
  2207. "notification-url": "https://packagist.org/downloads/",
  2208. "license": [
  2209. "MIT"
  2210. ],
  2211. "authors": [
  2212. {
  2213. "name": "JPush",
  2214. "email": "support@jpush.cn",
  2215. "homepage": "https://www.jpush.cn/",
  2216. "role": "Developer"
  2217. }
  2218. ],
  2219. "description": "JPush API PHP Client",
  2220. "homepage": "https://github.com/jpush/jpush-api-php-client",
  2221. "support": {
  2222. "issues": "https://github.com/jpush/jpush-api-php-client/issues",
  2223. "source": "https://github.com/jpush/jpush-api-php-client/tree/v3.6.6"
  2224. },
  2225. "time": "2019-11-26T06:04:53+00:00"
  2226. },
  2227. {
  2228. "name": "laminas/laminas-code",
  2229. "version": "3.5.1",
  2230. "source": {
  2231. "type": "git",
  2232. "url": "https://github.com/laminas/laminas-code.git",
  2233. "reference": "b549b70c0bb6e935d497f84f750c82653326ac77"
  2234. },
  2235. "dist": {
  2236. "type": "zip",
  2237. "url": "https://api.github.com/repos/laminas/laminas-code/zipball/b549b70c0bb6e935d497f84f750c82653326ac77",
  2238. "reference": "b549b70c0bb6e935d497f84f750c82653326ac77",
  2239. "shasum": "",
  2240. "mirrors": [
  2241. {
  2242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2243. "preferred": true
  2244. }
  2245. ]
  2246. },
  2247. "require": {
  2248. "laminas/laminas-eventmanager": "^3.3",
  2249. "laminas/laminas-zendframework-bridge": "^1.1",
  2250. "php": "^7.3 || ~8.0.0"
  2251. },
  2252. "conflict": {
  2253. "phpspec/prophecy": "<1.9.0"
  2254. },
  2255. "replace": {
  2256. "zendframework/zend-code": "^3.4.1"
  2257. },
  2258. "require-dev": {
  2259. "doctrine/annotations": "^1.10.4",
  2260. "ext-phar": "*",
  2261. "laminas/laminas-coding-standard": "^1.0.0",
  2262. "laminas/laminas-stdlib": "^3.3.0",
  2263. "phpunit/phpunit": "^9.4.2"
  2264. },
  2265. "suggest": {
  2266. "doctrine/annotations": "Doctrine\\Common\\Annotations >=1.0 for annotation features",
  2267. "laminas/laminas-stdlib": "Laminas\\Stdlib component"
  2268. },
  2269. "type": "library",
  2270. "autoload": {
  2271. "psr-4": {
  2272. "Laminas\\Code\\": "src/"
  2273. }
  2274. },
  2275. "notification-url": "https://packagist.org/downloads/",
  2276. "license": [
  2277. "BSD-3-Clause"
  2278. ],
  2279. "description": "Extensions to the PHP Reflection API, static code scanning, and code generation",
  2280. "homepage": "https://laminas.dev",
  2281. "keywords": [
  2282. "code",
  2283. "laminas"
  2284. ],
  2285. "support": {
  2286. "chat": "https://laminas.dev/chat",
  2287. "docs": "https://docs.laminas.dev/laminas-code/",
  2288. "forum": "https://discourse.laminas.dev",
  2289. "issues": "https://github.com/laminas/laminas-code/issues",
  2290. "rss": "https://github.com/laminas/laminas-code/releases.atom",
  2291. "source": "https://github.com/laminas/laminas-code"
  2292. },
  2293. "funding": [
  2294. {
  2295. "url": "https://funding.communitybridge.org/projects/laminas-project",
  2296. "type": "community_bridge"
  2297. }
  2298. ],
  2299. "time": "2020-11-30T20:16:31+00:00"
  2300. },
  2301. {
  2302. "name": "laminas/laminas-eventmanager",
  2303. "version": "3.3.1",
  2304. "source": {
  2305. "type": "git",
  2306. "url": "https://github.com/laminas/laminas-eventmanager.git",
  2307. "reference": "966c859b67867b179fde1eff0cd38df51472ce4a"
  2308. },
  2309. "dist": {
  2310. "type": "zip",
  2311. "url": "https://api.github.com/repos/laminas/laminas-eventmanager/zipball/966c859b67867b179fde1eff0cd38df51472ce4a",
  2312. "reference": "966c859b67867b179fde1eff0cd38df51472ce4a",
  2313. "shasum": "",
  2314. "mirrors": [
  2315. {
  2316. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2317. "preferred": true
  2318. }
  2319. ]
  2320. },
  2321. "require": {
  2322. "laminas/laminas-zendframework-bridge": "^1.0",
  2323. "php": "^7.3 || ^8.0"
  2324. },
  2325. "replace": {
  2326. "zendframework/zend-eventmanager": "^3.2.1"
  2327. },
  2328. "require-dev": {
  2329. "container-interop/container-interop": "^1.1",
  2330. "laminas/laminas-coding-standard": "~1.0.0",
  2331. "laminas/laminas-stdlib": "^2.7.3 || ^3.0",
  2332. "phpbench/phpbench": "^0.17.1",
  2333. "phpunit/phpunit": "^8.5.8"
  2334. },
  2335. "suggest": {
  2336. "container-interop/container-interop": "^1.1, to use the lazy listeners feature",
  2337. "laminas/laminas-stdlib": "^2.7.3 || ^3.0, to use the FilterChain feature"
  2338. },
  2339. "type": "library",
  2340. "autoload": {
  2341. "psr-4": {
  2342. "Laminas\\EventManager\\": "src/"
  2343. }
  2344. },
  2345. "notification-url": "https://packagist.org/downloads/",
  2346. "license": [
  2347. "BSD-3-Clause"
  2348. ],
  2349. "description": "Trigger and listen to events within a PHP application",
  2350. "homepage": "https://laminas.dev",
  2351. "keywords": [
  2352. "event",
  2353. "eventmanager",
  2354. "events",
  2355. "laminas"
  2356. ],
  2357. "support": {
  2358. "chat": "https://laminas.dev/chat",
  2359. "docs": "https://docs.laminas.dev/laminas-eventmanager/",
  2360. "forum": "https://discourse.laminas.dev",
  2361. "issues": "https://github.com/laminas/laminas-eventmanager/issues",
  2362. "rss": "https://github.com/laminas/laminas-eventmanager/releases.atom",
  2363. "source": "https://github.com/laminas/laminas-eventmanager"
  2364. },
  2365. "funding": [
  2366. {
  2367. "url": "https://funding.communitybridge.org/projects/laminas-project",
  2368. "type": "community_bridge"
  2369. }
  2370. ],
  2371. "time": "2021-03-08T15:24:29+00:00"
  2372. },
  2373. {
  2374. "name": "laminas/laminas-zendframework-bridge",
  2375. "version": "1.3.0",
  2376. "source": {
  2377. "type": "git",
  2378. "url": "https://github.com/laminas/laminas-zendframework-bridge.git",
  2379. "reference": "13af2502d9bb6f7d33be2de4b51fb68c6cdb476e"
  2380. },
  2381. "dist": {
  2382. "type": "zip",
  2383. "url": "https://api.github.com/repos/laminas/laminas-zendframework-bridge/zipball/13af2502d9bb6f7d33be2de4b51fb68c6cdb476e",
  2384. "reference": "13af2502d9bb6f7d33be2de4b51fb68c6cdb476e",
  2385. "shasum": "",
  2386. "mirrors": [
  2387. {
  2388. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2389. "preferred": true
  2390. }
  2391. ]
  2392. },
  2393. "require": {
  2394. "php": "^7.3 || ^8.0"
  2395. },
  2396. "require-dev": {
  2397. "phpunit/phpunit": "^5.7 || ^6.5 || ^7.5 || ^8.1 || ^9.3",
  2398. "psalm/plugin-phpunit": "^0.15.1",
  2399. "squizlabs/php_codesniffer": "^3.5",
  2400. "vimeo/psalm": "^4.6"
  2401. },
  2402. "type": "library",
  2403. "extra": {
  2404. "laminas": {
  2405. "module": "Laminas\\ZendFrameworkBridge"
  2406. }
  2407. },
  2408. "autoload": {
  2409. "files": [
  2410. "src/autoload.php"
  2411. ],
  2412. "psr-4": {
  2413. "Laminas\\ZendFrameworkBridge\\": "src//"
  2414. }
  2415. },
  2416. "notification-url": "https://packagist.org/downloads/",
  2417. "license": [
  2418. "BSD-3-Clause"
  2419. ],
  2420. "description": "Alias legacy ZF class names to Laminas Project equivalents.",
  2421. "keywords": [
  2422. "ZendFramework",
  2423. "autoloading",
  2424. "laminas",
  2425. "zf"
  2426. ],
  2427. "support": {
  2428. "forum": "https://discourse.laminas.dev/",
  2429. "issues": "https://github.com/laminas/laminas-zendframework-bridge/issues",
  2430. "rss": "https://github.com/laminas/laminas-zendframework-bridge/releases.atom",
  2431. "source": "https://github.com/laminas/laminas-zendframework-bridge"
  2432. },
  2433. "funding": [
  2434. {
  2435. "url": "https://funding.communitybridge.org/projects/laminas-project",
  2436. "type": "community_bridge"
  2437. }
  2438. ],
  2439. "time": "2021-06-24T12:49:22+00:00"
  2440. },
  2441. {
  2442. "name": "laravel/framework",
  2443. "version": "v8.52.0",
  2444. "source": {
  2445. "type": "git",
  2446. "url": "https://github.com/laravel/framework.git",
  2447. "reference": "8fe9877d52e25f8aed36c51734e5a8510be967e6"
  2448. },
  2449. "dist": {
  2450. "type": "zip",
  2451. "url": "https://api.github.com/repos/laravel/framework/zipball/8fe9877d52e25f8aed36c51734e5a8510be967e6",
  2452. "reference": "8fe9877d52e25f8aed36c51734e5a8510be967e6",
  2453. "shasum": "",
  2454. "mirrors": [
  2455. {
  2456. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2457. "preferred": true
  2458. }
  2459. ]
  2460. },
  2461. "require": {
  2462. "doctrine/inflector": "^1.4|^2.0",
  2463. "dragonmantank/cron-expression": "^3.0.2",
  2464. "egulias/email-validator": "^2.1.10",
  2465. "ext-json": "*",
  2466. "ext-mbstring": "*",
  2467. "ext-openssl": "*",
  2468. "league/commonmark": "^1.3|^2.0",
  2469. "league/flysystem": "^1.1",
  2470. "monolog/monolog": "^2.0",
  2471. "nesbot/carbon": "^2.31",
  2472. "opis/closure": "^3.6",
  2473. "php": "^7.3|^8.0",
  2474. "psr/container": "^1.0",
  2475. "psr/simple-cache": "^1.0",
  2476. "ramsey/uuid": "^4.0",
  2477. "swiftmailer/swiftmailer": "^6.0",
  2478. "symfony/console": "^5.1.4",
  2479. "symfony/error-handler": "^5.1.4",
  2480. "symfony/finder": "^5.1.4",
  2481. "symfony/http-foundation": "^5.1.4",
  2482. "symfony/http-kernel": "^5.1.4",
  2483. "symfony/mime": "^5.1.4",
  2484. "symfony/process": "^5.1.4",
  2485. "symfony/routing": "^5.1.4",
  2486. "symfony/var-dumper": "^5.1.4",
  2487. "tijsverkoyen/css-to-inline-styles": "^2.2.2",
  2488. "vlucas/phpdotenv": "^5.2",
  2489. "voku/portable-ascii": "^1.4.8"
  2490. },
  2491. "conflict": {
  2492. "tightenco/collect": "<5.5.33"
  2493. },
  2494. "provide": {
  2495. "psr/container-implementation": "1.0"
  2496. },
  2497. "replace": {
  2498. "illuminate/auth": "self.version",
  2499. "illuminate/broadcasting": "self.version",
  2500. "illuminate/bus": "self.version",
  2501. "illuminate/cache": "self.version",
  2502. "illuminate/collections": "self.version",
  2503. "illuminate/config": "self.version",
  2504. "illuminate/console": "self.version",
  2505. "illuminate/container": "self.version",
  2506. "illuminate/contracts": "self.version",
  2507. "illuminate/cookie": "self.version",
  2508. "illuminate/database": "self.version",
  2509. "illuminate/encryption": "self.version",
  2510. "illuminate/events": "self.version",
  2511. "illuminate/filesystem": "self.version",
  2512. "illuminate/hashing": "self.version",
  2513. "illuminate/http": "self.version",
  2514. "illuminate/log": "self.version",
  2515. "illuminate/macroable": "self.version",
  2516. "illuminate/mail": "self.version",
  2517. "illuminate/notifications": "self.version",
  2518. "illuminate/pagination": "self.version",
  2519. "illuminate/pipeline": "self.version",
  2520. "illuminate/queue": "self.version",
  2521. "illuminate/redis": "self.version",
  2522. "illuminate/routing": "self.version",
  2523. "illuminate/session": "self.version",
  2524. "illuminate/support": "self.version",
  2525. "illuminate/testing": "self.version",
  2526. "illuminate/translation": "self.version",
  2527. "illuminate/validation": "self.version",
  2528. "illuminate/view": "self.version"
  2529. },
  2530. "require-dev": {
  2531. "aws/aws-sdk-php": "^3.155",
  2532. "doctrine/dbal": "^2.6|^3.0",
  2533. "filp/whoops": "^2.8",
  2534. "guzzlehttp/guzzle": "^6.5.5|^7.0.1",
  2535. "league/flysystem-cached-adapter": "^1.0",
  2536. "mockery/mockery": "^1.4.2",
  2537. "orchestra/testbench-core": "^6.23",
  2538. "pda/pheanstalk": "^4.0",
  2539. "phpunit/phpunit": "^8.5.8|^9.3.3",
  2540. "predis/predis": "^1.1.2",
  2541. "symfony/cache": "^5.1.4"
  2542. },
  2543. "suggest": {
  2544. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage and SES mail driver (^3.155).",
  2545. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2546. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6|^3.0).",
  2547. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2548. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2549. "ext-memcached": "Required to use the memcache cache driver.",
  2550. "ext-pcntl": "Required to use all features of the queue worker.",
  2551. "ext-posix": "Required to use all features of the queue worker.",
  2552. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2553. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2554. "filp/whoops": "Required for friendly error pages in development (^2.8).",
  2555. "guzzlehttp/guzzle": "Required to use the HTTP Client, Mailgun mail driver and the ping methods on schedules (^6.5.5|^7.0.1).",
  2556. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2557. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2558. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2559. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2560. "mockery/mockery": "Required to use mocking (^1.4.2).",
  2561. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2562. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2563. "phpunit/phpunit": "Required to use assertions and run tests (^8.5.8|^9.3.3).",
  2564. "predis/predis": "Required to use the predis connector (^1.1.2).",
  2565. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2566. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0).",
  2567. "symfony/cache": "Required to PSR-6 cache bridge (^5.1.4).",
  2568. "symfony/filesystem": "Required to enable support for relative symbolic links (^5.1.4).",
  2569. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).",
  2570. "wildbit/swiftmailer-postmark": "Required to use Postmark mail driver (^3.0)."
  2571. },
  2572. "type": "library",
  2573. "extra": {
  2574. "branch-alias": {
  2575. "dev-master": "8.x-dev"
  2576. }
  2577. },
  2578. "autoload": {
  2579. "files": [
  2580. "src/Illuminate/Collections/helpers.php",
  2581. "src/Illuminate/Events/functions.php",
  2582. "src/Illuminate/Foundation/helpers.php",
  2583. "src/Illuminate/Support/helpers.php"
  2584. ],
  2585. "psr-4": {
  2586. "Illuminate\\": "src/Illuminate/",
  2587. "Illuminate\\Support\\": [
  2588. "src/Illuminate/Macroable/",
  2589. "src/Illuminate/Collections/"
  2590. ]
  2591. }
  2592. },
  2593. "notification-url": "https://packagist.org/downloads/",
  2594. "license": [
  2595. "MIT"
  2596. ],
  2597. "authors": [
  2598. {
  2599. "name": "Taylor Otwell",
  2600. "email": "taylor@laravel.com"
  2601. }
  2602. ],
  2603. "description": "The Laravel Framework.",
  2604. "homepage": "https://laravel.com",
  2605. "keywords": [
  2606. "framework",
  2607. "laravel"
  2608. ],
  2609. "support": {
  2610. "issues": "https://github.com/laravel/framework/issues",
  2611. "source": "https://github.com/laravel/framework"
  2612. },
  2613. "time": "2021-07-27T13:03:29+00:00"
  2614. },
  2615. {
  2616. "name": "laravel/tinker",
  2617. "version": "v2.6.1",
  2618. "source": {
  2619. "type": "git",
  2620. "url": "https://github.com/laravel/tinker.git",
  2621. "reference": "04ad32c1a3328081097a181875733fa51f402083"
  2622. },
  2623. "dist": {
  2624. "type": "zip",
  2625. "url": "https://api.github.com/repos/laravel/tinker/zipball/04ad32c1a3328081097a181875733fa51f402083",
  2626. "reference": "04ad32c1a3328081097a181875733fa51f402083",
  2627. "shasum": "",
  2628. "mirrors": [
  2629. {
  2630. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2631. "preferred": true
  2632. }
  2633. ]
  2634. },
  2635. "require": {
  2636. "illuminate/console": "^6.0|^7.0|^8.0",
  2637. "illuminate/contracts": "^6.0|^7.0|^8.0",
  2638. "illuminate/support": "^6.0|^7.0|^8.0",
  2639. "php": "^7.2.5|^8.0",
  2640. "psy/psysh": "^0.10.4",
  2641. "symfony/var-dumper": "^4.3.4|^5.0"
  2642. },
  2643. "require-dev": {
  2644. "mockery/mockery": "~1.3.3|^1.4.2",
  2645. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2646. },
  2647. "suggest": {
  2648. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0)."
  2649. },
  2650. "type": "library",
  2651. "extra": {
  2652. "branch-alias": {
  2653. "dev-master": "2.x-dev"
  2654. },
  2655. "laravel": {
  2656. "providers": [
  2657. "Laravel\\Tinker\\TinkerServiceProvider"
  2658. ]
  2659. }
  2660. },
  2661. "autoload": {
  2662. "psr-4": {
  2663. "Laravel\\Tinker\\": "src/"
  2664. }
  2665. },
  2666. "notification-url": "https://packagist.org/downloads/",
  2667. "license": [
  2668. "MIT"
  2669. ],
  2670. "authors": [
  2671. {
  2672. "name": "Taylor Otwell",
  2673. "email": "taylor@laravel.com"
  2674. }
  2675. ],
  2676. "description": "Powerful REPL for the Laravel framework.",
  2677. "keywords": [
  2678. "REPL",
  2679. "Tinker",
  2680. "laravel",
  2681. "psysh"
  2682. ],
  2683. "support": {
  2684. "issues": "https://github.com/laravel/tinker/issues",
  2685. "source": "https://github.com/laravel/tinker/tree/v2.6.1"
  2686. },
  2687. "time": "2021-03-02T16:53:12+00:00"
  2688. },
  2689. {
  2690. "name": "lcobucci/jwt",
  2691. "version": "3.3.3",
  2692. "source": {
  2693. "type": "git",
  2694. "url": "https://github.com/lcobucci/jwt.git",
  2695. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  2696. },
  2697. "dist": {
  2698. "type": "zip",
  2699. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  2700. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  2701. "shasum": "",
  2702. "mirrors": [
  2703. {
  2704. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2705. "preferred": true
  2706. }
  2707. ]
  2708. },
  2709. "require": {
  2710. "ext-mbstring": "*",
  2711. "ext-openssl": "*",
  2712. "php": "^5.6 || ^7.0"
  2713. },
  2714. "require-dev": {
  2715. "mikey179/vfsstream": "~1.5",
  2716. "phpmd/phpmd": "~2.2",
  2717. "phpunit/php-invoker": "~1.1",
  2718. "phpunit/phpunit": "^5.7 || ^7.3",
  2719. "squizlabs/php_codesniffer": "~2.3"
  2720. },
  2721. "type": "library",
  2722. "extra": {
  2723. "branch-alias": {
  2724. "dev-master": "3.1-dev"
  2725. }
  2726. },
  2727. "autoload": {
  2728. "psr-4": {
  2729. "Lcobucci\\JWT\\": "src"
  2730. }
  2731. },
  2732. "notification-url": "https://packagist.org/downloads/",
  2733. "license": [
  2734. "BSD-3-Clause"
  2735. ],
  2736. "authors": [
  2737. {
  2738. "name": "Luís Otávio Cobucci Oblonczyk",
  2739. "email": "lcobucci@gmail.com",
  2740. "role": "Developer"
  2741. }
  2742. ],
  2743. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2744. "keywords": [
  2745. "JWS",
  2746. "jwt"
  2747. ],
  2748. "support": {
  2749. "issues": "https://github.com/lcobucci/jwt/issues",
  2750. "source": "https://github.com/lcobucci/jwt/tree/3.3.3"
  2751. },
  2752. "funding": [
  2753. {
  2754. "url": "https://github.com/lcobucci",
  2755. "type": "github"
  2756. },
  2757. {
  2758. "url": "https://www.patreon.com/lcobucci",
  2759. "type": "patreon"
  2760. }
  2761. ],
  2762. "time": "2020-08-20T13:22:28+00:00"
  2763. },
  2764. {
  2765. "name": "league/commonmark",
  2766. "version": "1.6.6",
  2767. "source": {
  2768. "type": "git",
  2769. "url": "https://github.com/thephpleague/commonmark.git",
  2770. "reference": "c4228d11e30d7493c6836d20872f9582d8ba6dcf"
  2771. },
  2772. "dist": {
  2773. "type": "zip",
  2774. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/c4228d11e30d7493c6836d20872f9582d8ba6dcf",
  2775. "reference": "c4228d11e30d7493c6836d20872f9582d8ba6dcf",
  2776. "shasum": "",
  2777. "mirrors": [
  2778. {
  2779. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2780. "preferred": true
  2781. }
  2782. ]
  2783. },
  2784. "require": {
  2785. "ext-mbstring": "*",
  2786. "php": "^7.1 || ^8.0"
  2787. },
  2788. "conflict": {
  2789. "scrutinizer/ocular": "1.7.*"
  2790. },
  2791. "require-dev": {
  2792. "cebe/markdown": "~1.0",
  2793. "commonmark/commonmark.js": "0.29.2",
  2794. "erusev/parsedown": "~1.0",
  2795. "ext-json": "*",
  2796. "github/gfm": "0.29.0",
  2797. "michelf/php-markdown": "~1.4",
  2798. "mikehaertl/php-shellcommand": "^1.4",
  2799. "phpstan/phpstan": "^0.12.90",
  2800. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.2",
  2801. "scrutinizer/ocular": "^1.5",
  2802. "symfony/finder": "^4.2"
  2803. },
  2804. "bin": [
  2805. "bin/commonmark"
  2806. ],
  2807. "type": "library",
  2808. "autoload": {
  2809. "psr-4": {
  2810. "League\\CommonMark\\": "src"
  2811. }
  2812. },
  2813. "notification-url": "https://packagist.org/downloads/",
  2814. "license": [
  2815. "BSD-3-Clause"
  2816. ],
  2817. "authors": [
  2818. {
  2819. "name": "Colin O'Dell",
  2820. "email": "colinodell@gmail.com",
  2821. "homepage": "https://www.colinodell.com",
  2822. "role": "Lead Developer"
  2823. }
  2824. ],
  2825. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and Github-Flavored Markdown (GFM)",
  2826. "homepage": "https://commonmark.thephpleague.com",
  2827. "keywords": [
  2828. "commonmark",
  2829. "flavored",
  2830. "gfm",
  2831. "github",
  2832. "github-flavored",
  2833. "markdown",
  2834. "md",
  2835. "parser"
  2836. ],
  2837. "support": {
  2838. "docs": "https://commonmark.thephpleague.com/",
  2839. "issues": "https://github.com/thephpleague/commonmark/issues",
  2840. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2841. "source": "https://github.com/thephpleague/commonmark"
  2842. },
  2843. "funding": [
  2844. {
  2845. "url": "https://enjoy.gitstore.app/repositories/thephpleague/commonmark",
  2846. "type": "custom"
  2847. },
  2848. {
  2849. "url": "https://www.colinodell.com/sponsor",
  2850. "type": "custom"
  2851. },
  2852. {
  2853. "url": "https://www.paypal.me/colinpodell/10.00",
  2854. "type": "custom"
  2855. },
  2856. {
  2857. "url": "https://github.com/colinodell",
  2858. "type": "github"
  2859. },
  2860. {
  2861. "url": "https://www.patreon.com/colinodell",
  2862. "type": "patreon"
  2863. },
  2864. {
  2865. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2866. "type": "tidelift"
  2867. }
  2868. ],
  2869. "time": "2021-07-17T17:13:23+00:00"
  2870. },
  2871. {
  2872. "name": "league/flysystem",
  2873. "version": "1.1.4",
  2874. "source": {
  2875. "type": "git",
  2876. "url": "https://github.com/thephpleague/flysystem.git",
  2877. "reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32"
  2878. },
  2879. "dist": {
  2880. "type": "zip",
  2881. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f3ad69181b8afed2c9edf7be5a2918144ff4ea32",
  2882. "reference": "f3ad69181b8afed2c9edf7be5a2918144ff4ea32",
  2883. "shasum": "",
  2884. "mirrors": [
  2885. {
  2886. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2887. "preferred": true
  2888. }
  2889. ]
  2890. },
  2891. "require": {
  2892. "ext-fileinfo": "*",
  2893. "league/mime-type-detection": "^1.3",
  2894. "php": "^7.2.5 || ^8.0"
  2895. },
  2896. "conflict": {
  2897. "league/flysystem-sftp": "<1.0.6"
  2898. },
  2899. "require-dev": {
  2900. "phpspec/prophecy": "^1.11.1",
  2901. "phpunit/phpunit": "^8.5.8"
  2902. },
  2903. "suggest": {
  2904. "ext-ftp": "Allows you to use FTP server storage",
  2905. "ext-openssl": "Allows you to use FTPS server storage",
  2906. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  2907. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  2908. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  2909. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  2910. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  2911. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  2912. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  2913. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  2914. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  2915. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  2916. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  2917. },
  2918. "type": "library",
  2919. "extra": {
  2920. "branch-alias": {
  2921. "dev-master": "1.1-dev"
  2922. }
  2923. },
  2924. "autoload": {
  2925. "psr-4": {
  2926. "League\\Flysystem\\": "src/"
  2927. }
  2928. },
  2929. "notification-url": "https://packagist.org/downloads/",
  2930. "license": [
  2931. "MIT"
  2932. ],
  2933. "authors": [
  2934. {
  2935. "name": "Frank de Jonge",
  2936. "email": "info@frenky.net"
  2937. }
  2938. ],
  2939. "description": "Filesystem abstraction: Many filesystems, one API.",
  2940. "keywords": [
  2941. "Cloud Files",
  2942. "WebDAV",
  2943. "abstraction",
  2944. "aws",
  2945. "cloud",
  2946. "copy.com",
  2947. "dropbox",
  2948. "file systems",
  2949. "files",
  2950. "filesystem",
  2951. "filesystems",
  2952. "ftp",
  2953. "rackspace",
  2954. "remote",
  2955. "s3",
  2956. "sftp",
  2957. "storage"
  2958. ],
  2959. "support": {
  2960. "issues": "https://github.com/thephpleague/flysystem/issues",
  2961. "source": "https://github.com/thephpleague/flysystem/tree/1.1.4"
  2962. },
  2963. "funding": [
  2964. {
  2965. "url": "https://offset.earth/frankdejonge",
  2966. "type": "other"
  2967. }
  2968. ],
  2969. "time": "2021-06-23T21:56:05+00:00"
  2970. },
  2971. {
  2972. "name": "league/fractal",
  2973. "version": "0.19.2",
  2974. "source": {
  2975. "type": "git",
  2976. "url": "https://github.com/thephpleague/fractal.git",
  2977. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c"
  2978. },
  2979. "dist": {
  2980. "type": "zip",
  2981. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  2982. "reference": "06dc15f6ba38f2dde2f919d3095d13b571190a7c",
  2983. "shasum": "",
  2984. "mirrors": [
  2985. {
  2986. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2987. "preferred": true
  2988. }
  2989. ]
  2990. },
  2991. "require": {
  2992. "php": ">=5.4"
  2993. },
  2994. "require-dev": {
  2995. "doctrine/orm": "^2.5",
  2996. "illuminate/contracts": "~5.0",
  2997. "mockery/mockery": "~0.9",
  2998. "pagerfanta/pagerfanta": "~1.0.0",
  2999. "phpunit/phpunit": "^4.8.35 || ^7.5",
  3000. "squizlabs/php_codesniffer": "~1.5|~2.0|~3.4",
  3001. "zendframework/zend-paginator": "~2.3"
  3002. },
  3003. "suggest": {
  3004. "illuminate/pagination": "The Illuminate Pagination component.",
  3005. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  3006. "zendframework/zend-paginator": "Zend Framework Paginator"
  3007. },
  3008. "type": "library",
  3009. "extra": {
  3010. "branch-alias": {
  3011. "dev-master": "0.13-dev"
  3012. }
  3013. },
  3014. "autoload": {
  3015. "psr-4": {
  3016. "League\\Fractal\\": "src"
  3017. }
  3018. },
  3019. "notification-url": "https://packagist.org/downloads/",
  3020. "license": [
  3021. "MIT"
  3022. ],
  3023. "authors": [
  3024. {
  3025. "name": "Phil Sturgeon",
  3026. "email": "me@philsturgeon.uk",
  3027. "homepage": "http://philsturgeon.uk/",
  3028. "role": "Developer"
  3029. }
  3030. ],
  3031. "description": "Handle the output of complex data structures ready for API output.",
  3032. "homepage": "http://fractal.thephpleague.com/",
  3033. "keywords": [
  3034. "api",
  3035. "json",
  3036. "league",
  3037. "rest"
  3038. ],
  3039. "support": {
  3040. "issues": "https://github.com/thephpleague/fractal/issues",
  3041. "source": "https://github.com/thephpleague/fractal/tree/0.19.2"
  3042. },
  3043. "time": "2020-01-24T23:17:29+00:00"
  3044. },
  3045. {
  3046. "name": "league/mime-type-detection",
  3047. "version": "1.7.0",
  3048. "source": {
  3049. "type": "git",
  3050. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3051. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  3052. },
  3053. "dist": {
  3054. "type": "zip",
  3055. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  3056. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  3057. "shasum": "",
  3058. "mirrors": [
  3059. {
  3060. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3061. "preferred": true
  3062. }
  3063. ]
  3064. },
  3065. "require": {
  3066. "ext-fileinfo": "*",
  3067. "php": "^7.2 || ^8.0"
  3068. },
  3069. "require-dev": {
  3070. "friendsofphp/php-cs-fixer": "^2.18",
  3071. "phpstan/phpstan": "^0.12.68",
  3072. "phpunit/phpunit": "^8.5.8 || ^9.3"
  3073. },
  3074. "type": "library",
  3075. "autoload": {
  3076. "psr-4": {
  3077. "League\\MimeTypeDetection\\": "src"
  3078. }
  3079. },
  3080. "notification-url": "https://packagist.org/downloads/",
  3081. "license": [
  3082. "MIT"
  3083. ],
  3084. "authors": [
  3085. {
  3086. "name": "Frank de Jonge",
  3087. "email": "info@frankdejonge.nl"
  3088. }
  3089. ],
  3090. "description": "Mime-type detection for Flysystem",
  3091. "support": {
  3092. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3093. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0"
  3094. },
  3095. "funding": [
  3096. {
  3097. "url": "https://github.com/frankdejonge",
  3098. "type": "github"
  3099. },
  3100. {
  3101. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3102. "type": "tidelift"
  3103. }
  3104. ],
  3105. "time": "2021-01-18T20:58:21+00:00"
  3106. },
  3107. {
  3108. "name": "liyu/dingo-serializer-switch",
  3109. "version": "0.3.2",
  3110. "source": {
  3111. "type": "git",
  3112. "url": "https://github.com/liyu001989/dingo-serializer-switch.git",
  3113. "reference": "a150dc0deaaec41f694538e9b7a3ba538ea565ed"
  3114. },
  3115. "dist": {
  3116. "type": "zip",
  3117. "url": "https://api.github.com/repos/liyu001989/dingo-serializer-switch/zipball/a150dc0deaaec41f694538e9b7a3ba538ea565ed",
  3118. "reference": "a150dc0deaaec41f694538e9b7a3ba538ea565ed",
  3119. "shasum": "",
  3120. "mirrors": [
  3121. {
  3122. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3123. "preferred": true
  3124. }
  3125. ]
  3126. },
  3127. "require": {
  3128. "dingo/api": "^2.0|^3.0",
  3129. "php": ">=7.0"
  3130. },
  3131. "type": "library",
  3132. "extra": {
  3133. "laravel": {
  3134. "providers": [
  3135. "Liyu\\Dingo\\ServiceProvider"
  3136. ]
  3137. }
  3138. },
  3139. "autoload": {
  3140. "psr-4": {
  3141. "Liyu\\Dingo\\": "src"
  3142. }
  3143. },
  3144. "notification-url": "https://packagist.org/downloads/",
  3145. "license": [
  3146. "MIT"
  3147. ],
  3148. "authors": [
  3149. {
  3150. "name": "Yu Li",
  3151. "email": "liyu001989@gmail.com"
  3152. }
  3153. ],
  3154. "description": "A middleware to switch dingo serializer",
  3155. "support": {
  3156. "issues": "https://github.com/liyu001989/dingo-serializer-switch/issues",
  3157. "source": "https://github.com/liyu001989/dingo-serializer-switch/tree/master"
  3158. },
  3159. "time": "2020-06-24T04:09:03+00:00"
  3160. },
  3161. {
  3162. "name": "mews/captcha",
  3163. "version": "3.2.6",
  3164. "source": {
  3165. "type": "git",
  3166. "url": "https://github.com/mewebstudio/captcha.git",
  3167. "reference": "42c1b320e4cad1f6ec9a395da36d7eda5b67d122"
  3168. },
  3169. "dist": {
  3170. "type": "zip",
  3171. "url": "https://api.github.com/repos/mewebstudio/captcha/zipball/42c1b320e4cad1f6ec9a395da36d7eda5b67d122",
  3172. "reference": "42c1b320e4cad1f6ec9a395da36d7eda5b67d122",
  3173. "shasum": "",
  3174. "mirrors": [
  3175. {
  3176. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3177. "preferred": true
  3178. }
  3179. ]
  3180. },
  3181. "require": {
  3182. "ext-gd": "*",
  3183. "illuminate/config": "~5|^6|^7|^8",
  3184. "illuminate/filesystem": "~5|^6|^7|^8",
  3185. "illuminate/hashing": "~5|^6|^7|^8",
  3186. "illuminate/session": "~5|^6|^7|^8",
  3187. "illuminate/support": "~5|^6|^7|^8",
  3188. "intervention/image": "~2.5",
  3189. "php": "^7.2|^8.0"
  3190. },
  3191. "require-dev": {
  3192. "mockery/mockery": "^1.0",
  3193. "phpunit/phpunit": "^8.5"
  3194. },
  3195. "type": "package",
  3196. "extra": {
  3197. "laravel": {
  3198. "providers": [
  3199. "Mews\\Captcha\\CaptchaServiceProvider"
  3200. ],
  3201. "aliases": {
  3202. "Captcha": "Mews\\Captcha\\Facades\\Captcha"
  3203. }
  3204. }
  3205. },
  3206. "autoload": {
  3207. "psr-4": {
  3208. "Mews\\Captcha\\": "src/"
  3209. },
  3210. "files": [
  3211. "src/helpers.php"
  3212. ]
  3213. },
  3214. "notification-url": "https://packagist.org/downloads/",
  3215. "license": [
  3216. "MIT"
  3217. ],
  3218. "authors": [
  3219. {
  3220. "name": "Muharrem ERİN",
  3221. "email": "me@mewebstudio.com",
  3222. "homepage": "https://github.com/mewebstudio",
  3223. "role": "Developer"
  3224. }
  3225. ],
  3226. "description": "Laravel 5 & 6 Captcha Package",
  3227. "homepage": "https://github.com/mewebstudio/captcha",
  3228. "keywords": [
  3229. "captcha",
  3230. "laravel5 Security",
  3231. "laravel6 Captcha",
  3232. "laravel6 Security"
  3233. ],
  3234. "support": {
  3235. "issues": "https://github.com/mewebstudio/captcha/issues",
  3236. "source": "https://github.com/mewebstudio/captcha/tree/3.2.6"
  3237. },
  3238. "time": "2021-04-22T18:42:48+00:00"
  3239. },
  3240. {
  3241. "name": "monolog/monolog",
  3242. "version": "2.3.2",
  3243. "source": {
  3244. "type": "git",
  3245. "url": "https://github.com/Seldaek/monolog.git",
  3246. "reference": "71312564759a7db5b789296369c1a264efc43aad"
  3247. },
  3248. "dist": {
  3249. "type": "zip",
  3250. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/71312564759a7db5b789296369c1a264efc43aad",
  3251. "reference": "71312564759a7db5b789296369c1a264efc43aad",
  3252. "shasum": "",
  3253. "mirrors": [
  3254. {
  3255. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3256. "preferred": true
  3257. }
  3258. ]
  3259. },
  3260. "require": {
  3261. "php": ">=7.2",
  3262. "psr/log": "^1.0.1"
  3263. },
  3264. "provide": {
  3265. "psr/log-implementation": "1.0.0"
  3266. },
  3267. "require-dev": {
  3268. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3269. "doctrine/couchdb": "~1.0@dev",
  3270. "elasticsearch/elasticsearch": "^7",
  3271. "graylog2/gelf-php": "^1.4.2",
  3272. "mongodb/mongodb": "^1.8",
  3273. "php-amqplib/php-amqplib": "~2.4",
  3274. "php-console/php-console": "^3.1.3",
  3275. "phpspec/prophecy": "^1.6.1",
  3276. "phpstan/phpstan": "^0.12.91",
  3277. "phpunit/phpunit": "^8.5",
  3278. "predis/predis": "^1.1",
  3279. "rollbar/rollbar": "^1.3",
  3280. "ruflin/elastica": ">=0.90 <7.0.1",
  3281. "swiftmailer/swiftmailer": "^5.3|^6.0"
  3282. },
  3283. "suggest": {
  3284. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3285. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3286. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3287. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3288. "ext-mbstring": "Allow to work properly with unicode symbols",
  3289. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3290. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3291. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3292. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3293. "php-console/php-console": "Allow sending log messages to Google Chrome",
  3294. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3295. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3296. },
  3297. "type": "library",
  3298. "extra": {
  3299. "branch-alias": {
  3300. "dev-main": "2.x-dev"
  3301. }
  3302. },
  3303. "autoload": {
  3304. "psr-4": {
  3305. "Monolog\\": "src/Monolog"
  3306. }
  3307. },
  3308. "notification-url": "https://packagist.org/downloads/",
  3309. "license": [
  3310. "MIT"
  3311. ],
  3312. "authors": [
  3313. {
  3314. "name": "Jordi Boggiano",
  3315. "email": "j.boggiano@seld.be",
  3316. "homepage": "https://seld.be"
  3317. }
  3318. ],
  3319. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3320. "homepage": "https://github.com/Seldaek/monolog",
  3321. "keywords": [
  3322. "log",
  3323. "logging",
  3324. "psr-3"
  3325. ],
  3326. "support": {
  3327. "issues": "https://github.com/Seldaek/monolog/issues",
  3328. "source": "https://github.com/Seldaek/monolog/tree/2.3.2"
  3329. },
  3330. "funding": [
  3331. {
  3332. "url": "https://github.com/Seldaek",
  3333. "type": "github"
  3334. },
  3335. {
  3336. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3337. "type": "tidelift"
  3338. }
  3339. ],
  3340. "time": "2021-07-23T07:42:52+00:00"
  3341. },
  3342. {
  3343. "name": "namshi/jose",
  3344. "version": "7.2.3",
  3345. "source": {
  3346. "type": "git",
  3347. "url": "https://github.com/namshi/jose.git",
  3348. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  3349. },
  3350. "dist": {
  3351. "type": "zip",
  3352. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  3353. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  3354. "shasum": "",
  3355. "mirrors": [
  3356. {
  3357. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3358. "preferred": true
  3359. }
  3360. ]
  3361. },
  3362. "require": {
  3363. "ext-date": "*",
  3364. "ext-hash": "*",
  3365. "ext-json": "*",
  3366. "ext-pcre": "*",
  3367. "ext-spl": "*",
  3368. "php": ">=5.5",
  3369. "symfony/polyfill-php56": "^1.0"
  3370. },
  3371. "require-dev": {
  3372. "phpseclib/phpseclib": "^2.0",
  3373. "phpunit/phpunit": "^4.5|^5.0",
  3374. "satooshi/php-coveralls": "^1.0"
  3375. },
  3376. "suggest": {
  3377. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  3378. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  3379. },
  3380. "type": "library",
  3381. "autoload": {
  3382. "psr-4": {
  3383. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  3384. }
  3385. },
  3386. "notification-url": "https://packagist.org/downloads/",
  3387. "license": [
  3388. "MIT"
  3389. ],
  3390. "authors": [
  3391. {
  3392. "name": "Alessandro Nadalin",
  3393. "email": "alessandro.nadalin@gmail.com"
  3394. },
  3395. {
  3396. "name": "Alessandro Cinelli (cirpo)",
  3397. "email": "alessandro.cinelli@gmail.com"
  3398. }
  3399. ],
  3400. "description": "JSON Object Signing and Encryption library for PHP.",
  3401. "keywords": [
  3402. "JSON Web Signature",
  3403. "JSON Web Token",
  3404. "JWS",
  3405. "json",
  3406. "jwt",
  3407. "token"
  3408. ],
  3409. "support": {
  3410. "issues": "https://github.com/namshi/jose/issues",
  3411. "source": "https://github.com/namshi/jose/tree/master"
  3412. },
  3413. "time": "2016-12-05T07:27:31+00:00"
  3414. },
  3415. {
  3416. "name": "nesbot/carbon",
  3417. "version": "2.51.1",
  3418. "source": {
  3419. "type": "git",
  3420. "url": "https://github.com/briannesbitt/Carbon.git",
  3421. "reference": "8619c299d1e0d4b344e1f98ca07a1ce2cfbf1922"
  3422. },
  3423. "dist": {
  3424. "type": "zip",
  3425. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/8619c299d1e0d4b344e1f98ca07a1ce2cfbf1922",
  3426. "reference": "8619c299d1e0d4b344e1f98ca07a1ce2cfbf1922",
  3427. "shasum": "",
  3428. "mirrors": [
  3429. {
  3430. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3431. "preferred": true
  3432. }
  3433. ]
  3434. },
  3435. "require": {
  3436. "ext-json": "*",
  3437. "php": "^7.1.8 || ^8.0",
  3438. "symfony/polyfill-mbstring": "^1.0",
  3439. "symfony/polyfill-php80": "^1.16",
  3440. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  3441. },
  3442. "require-dev": {
  3443. "doctrine/orm": "^2.7",
  3444. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  3445. "kylekatarnls/multi-tester": "^2.0",
  3446. "phpmd/phpmd": "^2.9",
  3447. "phpstan/extension-installer": "^1.0",
  3448. "phpstan/phpstan": "^0.12.54",
  3449. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  3450. "squizlabs/php_codesniffer": "^3.4"
  3451. },
  3452. "bin": [
  3453. "bin/carbon"
  3454. ],
  3455. "type": "library",
  3456. "extra": {
  3457. "branch-alias": {
  3458. "dev-3.x": "3.x-dev",
  3459. "dev-master": "2.x-dev"
  3460. },
  3461. "laravel": {
  3462. "providers": [
  3463. "Carbon\\Laravel\\ServiceProvider"
  3464. ]
  3465. },
  3466. "phpstan": {
  3467. "includes": [
  3468. "extension.neon"
  3469. ]
  3470. }
  3471. },
  3472. "autoload": {
  3473. "psr-4": {
  3474. "Carbon\\": "src/Carbon/"
  3475. }
  3476. },
  3477. "notification-url": "https://packagist.org/downloads/",
  3478. "license": [
  3479. "MIT"
  3480. ],
  3481. "authors": [
  3482. {
  3483. "name": "Brian Nesbitt",
  3484. "email": "brian@nesbot.com",
  3485. "homepage": "https://markido.com"
  3486. },
  3487. {
  3488. "name": "kylekatarnls",
  3489. "homepage": "https://github.com/kylekatarnls"
  3490. }
  3491. ],
  3492. "description": "An API extension for DateTime that supports 281 different languages.",
  3493. "homepage": "https://carbon.nesbot.com",
  3494. "keywords": [
  3495. "date",
  3496. "datetime",
  3497. "time"
  3498. ],
  3499. "support": {
  3500. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3501. "source": "https://github.com/briannesbitt/Carbon"
  3502. },
  3503. "funding": [
  3504. {
  3505. "url": "https://opencollective.com/Carbon",
  3506. "type": "open_collective"
  3507. },
  3508. {
  3509. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  3510. "type": "tidelift"
  3511. }
  3512. ],
  3513. "time": "2021-07-28T13:16:28+00:00"
  3514. },
  3515. {
  3516. "name": "nikic/php-parser",
  3517. "version": "v4.12.0",
  3518. "source": {
  3519. "type": "git",
  3520. "url": "https://github.com/nikic/PHP-Parser.git",
  3521. "reference": "6608f01670c3cc5079e18c1dab1104e002579143"
  3522. },
  3523. "dist": {
  3524. "type": "zip",
  3525. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6608f01670c3cc5079e18c1dab1104e002579143",
  3526. "reference": "6608f01670c3cc5079e18c1dab1104e002579143",
  3527. "shasum": "",
  3528. "mirrors": [
  3529. {
  3530. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3531. "preferred": true
  3532. }
  3533. ]
  3534. },
  3535. "require": {
  3536. "ext-tokenizer": "*",
  3537. "php": ">=7.0"
  3538. },
  3539. "require-dev": {
  3540. "ircmaxell/php-yacc": "^0.0.7",
  3541. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3542. },
  3543. "bin": [
  3544. "bin/php-parse"
  3545. ],
  3546. "type": "library",
  3547. "extra": {
  3548. "branch-alias": {
  3549. "dev-master": "4.9-dev"
  3550. }
  3551. },
  3552. "autoload": {
  3553. "psr-4": {
  3554. "PhpParser\\": "lib/PhpParser"
  3555. }
  3556. },
  3557. "notification-url": "https://packagist.org/downloads/",
  3558. "license": [
  3559. "BSD-3-Clause"
  3560. ],
  3561. "authors": [
  3562. {
  3563. "name": "Nikita Popov"
  3564. }
  3565. ],
  3566. "description": "A PHP parser written in PHP",
  3567. "keywords": [
  3568. "parser",
  3569. "php"
  3570. ],
  3571. "support": {
  3572. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3573. "source": "https://github.com/nikic/PHP-Parser/tree/v4.12.0"
  3574. },
  3575. "time": "2021-07-21T10:44:31+00:00"
  3576. },
  3577. {
  3578. "name": "opis/closure",
  3579. "version": "3.6.2",
  3580. "source": {
  3581. "type": "git",
  3582. "url": "https://github.com/opis/closure.git",
  3583. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  3584. },
  3585. "dist": {
  3586. "type": "zip",
  3587. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3588. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  3589. "shasum": "",
  3590. "mirrors": [
  3591. {
  3592. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3593. "preferred": true
  3594. }
  3595. ]
  3596. },
  3597. "require": {
  3598. "php": "^5.4 || ^7.0 || ^8.0"
  3599. },
  3600. "require-dev": {
  3601. "jeremeamia/superclosure": "^2.0",
  3602. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  3603. },
  3604. "type": "library",
  3605. "extra": {
  3606. "branch-alias": {
  3607. "dev-master": "3.6.x-dev"
  3608. }
  3609. },
  3610. "autoload": {
  3611. "psr-4": {
  3612. "Opis\\Closure\\": "src/"
  3613. },
  3614. "files": [
  3615. "functions.php"
  3616. ]
  3617. },
  3618. "notification-url": "https://packagist.org/downloads/",
  3619. "license": [
  3620. "MIT"
  3621. ],
  3622. "authors": [
  3623. {
  3624. "name": "Marius Sarca",
  3625. "email": "marius.sarca@gmail.com"
  3626. },
  3627. {
  3628. "name": "Sorin Sarca",
  3629. "email": "sarca_sorin@hotmail.com"
  3630. }
  3631. ],
  3632. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  3633. "homepage": "https://opis.io/closure",
  3634. "keywords": [
  3635. "anonymous functions",
  3636. "closure",
  3637. "function",
  3638. "serializable",
  3639. "serialization",
  3640. "serialize"
  3641. ],
  3642. "support": {
  3643. "issues": "https://github.com/opis/closure/issues",
  3644. "source": "https://github.com/opis/closure/tree/3.6.2"
  3645. },
  3646. "time": "2021-04-09T13:42:10+00:00"
  3647. },
  3648. {
  3649. "name": "overtrue/easy-sms",
  3650. "version": "1.3.2",
  3651. "source": {
  3652. "type": "git",
  3653. "url": "https://github.com/overtrue/easy-sms.git",
  3654. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee"
  3655. },
  3656. "dist": {
  3657. "type": "zip",
  3658. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/daa0b4308ec0e3c112888c288d14d473be6aabee",
  3659. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee",
  3660. "shasum": "",
  3661. "mirrors": [
  3662. {
  3663. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3664. "preferred": true
  3665. }
  3666. ]
  3667. },
  3668. "require": {
  3669. "ext-json": "*",
  3670. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  3671. "php": ">=5.6"
  3672. },
  3673. "require-dev": {
  3674. "mockery/mockery": "1.3.1",
  3675. "phpunit/phpunit": "^5.7 || ^7.5"
  3676. },
  3677. "type": "library",
  3678. "autoload": {
  3679. "psr-4": {
  3680. "Overtrue\\EasySms\\": "src"
  3681. }
  3682. },
  3683. "notification-url": "https://packagist.org/downloads/",
  3684. "license": [
  3685. "MIT"
  3686. ],
  3687. "authors": [
  3688. {
  3689. "name": "overtrue",
  3690. "email": "i@overtrue.me"
  3691. }
  3692. ],
  3693. "description": "The easiest way to send short message.",
  3694. "support": {
  3695. "issues": "https://github.com/overtrue/easy-sms/issues",
  3696. "source": "https://github.com/overtrue/easy-sms/tree/1.3.2"
  3697. },
  3698. "time": "2021-01-22T06:52:59+00:00"
  3699. },
  3700. {
  3701. "name": "phpdocumentor/reflection-common",
  3702. "version": "2.2.0",
  3703. "source": {
  3704. "type": "git",
  3705. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  3706. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  3707. },
  3708. "dist": {
  3709. "type": "zip",
  3710. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3711. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  3712. "shasum": "",
  3713. "mirrors": [
  3714. {
  3715. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3716. "preferred": true
  3717. }
  3718. ]
  3719. },
  3720. "require": {
  3721. "php": "^7.2 || ^8.0"
  3722. },
  3723. "type": "library",
  3724. "extra": {
  3725. "branch-alias": {
  3726. "dev-2.x": "2.x-dev"
  3727. }
  3728. },
  3729. "autoload": {
  3730. "psr-4": {
  3731. "phpDocumentor\\Reflection\\": "src/"
  3732. }
  3733. },
  3734. "notification-url": "https://packagist.org/downloads/",
  3735. "license": [
  3736. "MIT"
  3737. ],
  3738. "authors": [
  3739. {
  3740. "name": "Jaap van Otterdijk",
  3741. "email": "opensource@ijaap.nl"
  3742. }
  3743. ],
  3744. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  3745. "homepage": "http://www.phpdoc.org",
  3746. "keywords": [
  3747. "FQSEN",
  3748. "phpDocumentor",
  3749. "phpdoc",
  3750. "reflection",
  3751. "static analysis"
  3752. ],
  3753. "support": {
  3754. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  3755. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  3756. },
  3757. "time": "2020-06-27T09:03:43+00:00"
  3758. },
  3759. {
  3760. "name": "phpdocumentor/reflection-docblock",
  3761. "version": "5.2.2",
  3762. "source": {
  3763. "type": "git",
  3764. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  3765. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556"
  3766. },
  3767. "dist": {
  3768. "type": "zip",
  3769. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556",
  3770. "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556",
  3771. "shasum": "",
  3772. "mirrors": [
  3773. {
  3774. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3775. "preferred": true
  3776. }
  3777. ]
  3778. },
  3779. "require": {
  3780. "ext-filter": "*",
  3781. "php": "^7.2 || ^8.0",
  3782. "phpdocumentor/reflection-common": "^2.2",
  3783. "phpdocumentor/type-resolver": "^1.3",
  3784. "webmozart/assert": "^1.9.1"
  3785. },
  3786. "require-dev": {
  3787. "mockery/mockery": "~1.3.2"
  3788. },
  3789. "type": "library",
  3790. "extra": {
  3791. "branch-alias": {
  3792. "dev-master": "5.x-dev"
  3793. }
  3794. },
  3795. "autoload": {
  3796. "psr-4": {
  3797. "phpDocumentor\\Reflection\\": "src"
  3798. }
  3799. },
  3800. "notification-url": "https://packagist.org/downloads/",
  3801. "license": [
  3802. "MIT"
  3803. ],
  3804. "authors": [
  3805. {
  3806. "name": "Mike van Riel",
  3807. "email": "me@mikevanriel.com"
  3808. },
  3809. {
  3810. "name": "Jaap van Otterdijk",
  3811. "email": "account@ijaap.nl"
  3812. }
  3813. ],
  3814. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  3815. "support": {
  3816. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  3817. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master"
  3818. },
  3819. "time": "2020-09-03T19:13:55+00:00"
  3820. },
  3821. {
  3822. "name": "phpdocumentor/type-resolver",
  3823. "version": "1.4.0",
  3824. "source": {
  3825. "type": "git",
  3826. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  3827. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0"
  3828. },
  3829. "dist": {
  3830. "type": "zip",
  3831. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  3832. "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0",
  3833. "shasum": "",
  3834. "mirrors": [
  3835. {
  3836. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3837. "preferred": true
  3838. }
  3839. ]
  3840. },
  3841. "require": {
  3842. "php": "^7.2 || ^8.0",
  3843. "phpdocumentor/reflection-common": "^2.0"
  3844. },
  3845. "require-dev": {
  3846. "ext-tokenizer": "*"
  3847. },
  3848. "type": "library",
  3849. "extra": {
  3850. "branch-alias": {
  3851. "dev-1.x": "1.x-dev"
  3852. }
  3853. },
  3854. "autoload": {
  3855. "psr-4": {
  3856. "phpDocumentor\\Reflection\\": "src"
  3857. }
  3858. },
  3859. "notification-url": "https://packagist.org/downloads/",
  3860. "license": [
  3861. "MIT"
  3862. ],
  3863. "authors": [
  3864. {
  3865. "name": "Mike van Riel",
  3866. "email": "me@mikevanriel.com"
  3867. }
  3868. ],
  3869. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  3870. "support": {
  3871. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  3872. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0"
  3873. },
  3874. "time": "2020-09-17T18:55:26+00:00"
  3875. },
  3876. {
  3877. "name": "phpoption/phpoption",
  3878. "version": "1.7.5",
  3879. "source": {
  3880. "type": "git",
  3881. "url": "https://github.com/schmittjoh/php-option.git",
  3882. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  3883. },
  3884. "dist": {
  3885. "type": "zip",
  3886. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3887. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  3888. "shasum": "",
  3889. "mirrors": [
  3890. {
  3891. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3892. "preferred": true
  3893. }
  3894. ]
  3895. },
  3896. "require": {
  3897. "php": "^5.5.9 || ^7.0 || ^8.0"
  3898. },
  3899. "require-dev": {
  3900. "bamarni/composer-bin-plugin": "^1.4.1",
  3901. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  3902. },
  3903. "type": "library",
  3904. "extra": {
  3905. "branch-alias": {
  3906. "dev-master": "1.7-dev"
  3907. }
  3908. },
  3909. "autoload": {
  3910. "psr-4": {
  3911. "PhpOption\\": "src/PhpOption/"
  3912. }
  3913. },
  3914. "notification-url": "https://packagist.org/downloads/",
  3915. "license": [
  3916. "Apache-2.0"
  3917. ],
  3918. "authors": [
  3919. {
  3920. "name": "Johannes M. Schmitt",
  3921. "email": "schmittjoh@gmail.com"
  3922. },
  3923. {
  3924. "name": "Graham Campbell",
  3925. "email": "graham@alt-three.com"
  3926. }
  3927. ],
  3928. "description": "Option Type for PHP",
  3929. "keywords": [
  3930. "language",
  3931. "option",
  3932. "php",
  3933. "type"
  3934. ],
  3935. "support": {
  3936. "issues": "https://github.com/schmittjoh/php-option/issues",
  3937. "source": "https://github.com/schmittjoh/php-option/tree/1.7.5"
  3938. },
  3939. "funding": [
  3940. {
  3941. "url": "https://github.com/GrahamCampbell",
  3942. "type": "github"
  3943. },
  3944. {
  3945. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3946. "type": "tidelift"
  3947. }
  3948. ],
  3949. "time": "2020-07-20T17:29:33+00:00"
  3950. },
  3951. {
  3952. "name": "predis/predis",
  3953. "version": "v1.1.7",
  3954. "source": {
  3955. "type": "git",
  3956. "url": "https://github.com/predis/predis.git",
  3957. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8"
  3958. },
  3959. "dist": {
  3960. "type": "zip",
  3961. "url": "https://api.github.com/repos/predis/predis/zipball/b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3962. "reference": "b240daa106d4e02f0c5b7079b41e31ddf66fddf8",
  3963. "shasum": "",
  3964. "mirrors": [
  3965. {
  3966. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3967. "preferred": true
  3968. }
  3969. ]
  3970. },
  3971. "require": {
  3972. "php": ">=5.3.9"
  3973. },
  3974. "require-dev": {
  3975. "phpunit/phpunit": "~4.8"
  3976. },
  3977. "suggest": {
  3978. "ext-curl": "Allows access to Webdis when paired with phpiredis",
  3979. "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol"
  3980. },
  3981. "type": "library",
  3982. "autoload": {
  3983. "psr-4": {
  3984. "Predis\\": "src/"
  3985. }
  3986. },
  3987. "notification-url": "https://packagist.org/downloads/",
  3988. "license": [
  3989. "MIT"
  3990. ],
  3991. "authors": [
  3992. {
  3993. "name": "Daniele Alessandri",
  3994. "email": "suppakilla@gmail.com",
  3995. "homepage": "http://clorophilla.net",
  3996. "role": "Creator & Maintainer"
  3997. },
  3998. {
  3999. "name": "Till Krüss",
  4000. "homepage": "https://till.im",
  4001. "role": "Maintainer"
  4002. }
  4003. ],
  4004. "description": "Flexible and feature-complete Redis client for PHP and HHVM",
  4005. "homepage": "http://github.com/predis/predis",
  4006. "keywords": [
  4007. "nosql",
  4008. "predis",
  4009. "redis"
  4010. ],
  4011. "support": {
  4012. "issues": "https://github.com/predis/predis/issues",
  4013. "source": "https://github.com/predis/predis/tree/v1.1.7"
  4014. },
  4015. "funding": [
  4016. {
  4017. "url": "https://github.com/sponsors/tillkruss",
  4018. "type": "github"
  4019. }
  4020. ],
  4021. "time": "2021-04-04T19:34:46+00:00"
  4022. },
  4023. {
  4024. "name": "psr/cache",
  4025. "version": "1.0.1",
  4026. "source": {
  4027. "type": "git",
  4028. "url": "https://github.com/php-fig/cache.git",
  4029. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  4030. },
  4031. "dist": {
  4032. "type": "zip",
  4033. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  4034. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  4035. "shasum": "",
  4036. "mirrors": [
  4037. {
  4038. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4039. "preferred": true
  4040. }
  4041. ]
  4042. },
  4043. "require": {
  4044. "php": ">=5.3.0"
  4045. },
  4046. "type": "library",
  4047. "extra": {
  4048. "branch-alias": {
  4049. "dev-master": "1.0.x-dev"
  4050. }
  4051. },
  4052. "autoload": {
  4053. "psr-4": {
  4054. "Psr\\Cache\\": "src/"
  4055. }
  4056. },
  4057. "notification-url": "https://packagist.org/downloads/",
  4058. "license": [
  4059. "MIT"
  4060. ],
  4061. "authors": [
  4062. {
  4063. "name": "PHP-FIG",
  4064. "homepage": "http://www.php-fig.org/"
  4065. }
  4066. ],
  4067. "description": "Common interface for caching libraries",
  4068. "keywords": [
  4069. "cache",
  4070. "psr",
  4071. "psr-6"
  4072. ],
  4073. "support": {
  4074. "source": "https://github.com/php-fig/cache/tree/master"
  4075. },
  4076. "time": "2016-08-06T20:24:11+00:00"
  4077. },
  4078. {
  4079. "name": "psr/container",
  4080. "version": "1.1.1",
  4081. "source": {
  4082. "type": "git",
  4083. "url": "https://github.com/php-fig/container.git",
  4084. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  4085. },
  4086. "dist": {
  4087. "type": "zip",
  4088. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  4089. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  4090. "shasum": "",
  4091. "mirrors": [
  4092. {
  4093. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4094. "preferred": true
  4095. }
  4096. ]
  4097. },
  4098. "require": {
  4099. "php": ">=7.2.0"
  4100. },
  4101. "type": "library",
  4102. "autoload": {
  4103. "psr-4": {
  4104. "Psr\\Container\\": "src/"
  4105. }
  4106. },
  4107. "notification-url": "https://packagist.org/downloads/",
  4108. "license": [
  4109. "MIT"
  4110. ],
  4111. "authors": [
  4112. {
  4113. "name": "PHP-FIG",
  4114. "homepage": "https://www.php-fig.org/"
  4115. }
  4116. ],
  4117. "description": "Common Container Interface (PHP FIG PSR-11)",
  4118. "homepage": "https://github.com/php-fig/container",
  4119. "keywords": [
  4120. "PSR-11",
  4121. "container",
  4122. "container-interface",
  4123. "container-interop",
  4124. "psr"
  4125. ],
  4126. "support": {
  4127. "issues": "https://github.com/php-fig/container/issues",
  4128. "source": "https://github.com/php-fig/container/tree/1.1.1"
  4129. },
  4130. "time": "2021-03-05T17:36:06+00:00"
  4131. },
  4132. {
  4133. "name": "psr/event-dispatcher",
  4134. "version": "1.0.0",
  4135. "source": {
  4136. "type": "git",
  4137. "url": "https://github.com/php-fig/event-dispatcher.git",
  4138. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4139. },
  4140. "dist": {
  4141. "type": "zip",
  4142. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4143. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4144. "shasum": "",
  4145. "mirrors": [
  4146. {
  4147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4148. "preferred": true
  4149. }
  4150. ]
  4151. },
  4152. "require": {
  4153. "php": ">=7.2.0"
  4154. },
  4155. "type": "library",
  4156. "extra": {
  4157. "branch-alias": {
  4158. "dev-master": "1.0.x-dev"
  4159. }
  4160. },
  4161. "autoload": {
  4162. "psr-4": {
  4163. "Psr\\EventDispatcher\\": "src/"
  4164. }
  4165. },
  4166. "notification-url": "https://packagist.org/downloads/",
  4167. "license": [
  4168. "MIT"
  4169. ],
  4170. "authors": [
  4171. {
  4172. "name": "PHP-FIG",
  4173. "homepage": "http://www.php-fig.org/"
  4174. }
  4175. ],
  4176. "description": "Standard interfaces for event handling.",
  4177. "keywords": [
  4178. "events",
  4179. "psr",
  4180. "psr-14"
  4181. ],
  4182. "support": {
  4183. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4184. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4185. },
  4186. "time": "2019-01-08T18:20:26+00:00"
  4187. },
  4188. {
  4189. "name": "psr/http-client",
  4190. "version": "1.0.1",
  4191. "source": {
  4192. "type": "git",
  4193. "url": "https://github.com/php-fig/http-client.git",
  4194. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621"
  4195. },
  4196. "dist": {
  4197. "type": "zip",
  4198. "url": "https://api.github.com/repos/php-fig/http-client/zipball/2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4199. "reference": "2dfb5f6c5eff0e91e20e913f8c5452ed95b86621",
  4200. "shasum": "",
  4201. "mirrors": [
  4202. {
  4203. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4204. "preferred": true
  4205. }
  4206. ]
  4207. },
  4208. "require": {
  4209. "php": "^7.0 || ^8.0",
  4210. "psr/http-message": "^1.0"
  4211. },
  4212. "type": "library",
  4213. "extra": {
  4214. "branch-alias": {
  4215. "dev-master": "1.0.x-dev"
  4216. }
  4217. },
  4218. "autoload": {
  4219. "psr-4": {
  4220. "Psr\\Http\\Client\\": "src/"
  4221. }
  4222. },
  4223. "notification-url": "https://packagist.org/downloads/",
  4224. "license": [
  4225. "MIT"
  4226. ],
  4227. "authors": [
  4228. {
  4229. "name": "PHP-FIG",
  4230. "homepage": "http://www.php-fig.org/"
  4231. }
  4232. ],
  4233. "description": "Common interface for HTTP clients",
  4234. "homepage": "https://github.com/php-fig/http-client",
  4235. "keywords": [
  4236. "http",
  4237. "http-client",
  4238. "psr",
  4239. "psr-18"
  4240. ],
  4241. "support": {
  4242. "source": "https://github.com/php-fig/http-client/tree/master"
  4243. },
  4244. "time": "2020-06-29T06:28:15+00:00"
  4245. },
  4246. {
  4247. "name": "psr/http-message",
  4248. "version": "1.0.1",
  4249. "source": {
  4250. "type": "git",
  4251. "url": "https://github.com/php-fig/http-message.git",
  4252. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4253. },
  4254. "dist": {
  4255. "type": "zip",
  4256. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4257. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4258. "shasum": "",
  4259. "mirrors": [
  4260. {
  4261. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4262. "preferred": true
  4263. }
  4264. ]
  4265. },
  4266. "require": {
  4267. "php": ">=5.3.0"
  4268. },
  4269. "type": "library",
  4270. "extra": {
  4271. "branch-alias": {
  4272. "dev-master": "1.0.x-dev"
  4273. }
  4274. },
  4275. "autoload": {
  4276. "psr-4": {
  4277. "Psr\\Http\\Message\\": "src/"
  4278. }
  4279. },
  4280. "notification-url": "https://packagist.org/downloads/",
  4281. "license": [
  4282. "MIT"
  4283. ],
  4284. "authors": [
  4285. {
  4286. "name": "PHP-FIG",
  4287. "homepage": "http://www.php-fig.org/"
  4288. }
  4289. ],
  4290. "description": "Common interface for HTTP messages",
  4291. "homepage": "https://github.com/php-fig/http-message",
  4292. "keywords": [
  4293. "http",
  4294. "http-message",
  4295. "psr",
  4296. "psr-7",
  4297. "request",
  4298. "response"
  4299. ],
  4300. "support": {
  4301. "source": "https://github.com/php-fig/http-message/tree/master"
  4302. },
  4303. "time": "2016-08-06T14:39:51+00:00"
  4304. },
  4305. {
  4306. "name": "psr/log",
  4307. "version": "1.1.4",
  4308. "source": {
  4309. "type": "git",
  4310. "url": "https://github.com/php-fig/log.git",
  4311. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  4312. },
  4313. "dist": {
  4314. "type": "zip",
  4315. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  4316. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  4317. "shasum": "",
  4318. "mirrors": [
  4319. {
  4320. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4321. "preferred": true
  4322. }
  4323. ]
  4324. },
  4325. "require": {
  4326. "php": ">=5.3.0"
  4327. },
  4328. "type": "library",
  4329. "extra": {
  4330. "branch-alias": {
  4331. "dev-master": "1.1.x-dev"
  4332. }
  4333. },
  4334. "autoload": {
  4335. "psr-4": {
  4336. "Psr\\Log\\": "Psr/Log/"
  4337. }
  4338. },
  4339. "notification-url": "https://packagist.org/downloads/",
  4340. "license": [
  4341. "MIT"
  4342. ],
  4343. "authors": [
  4344. {
  4345. "name": "PHP-FIG",
  4346. "homepage": "https://www.php-fig.org/"
  4347. }
  4348. ],
  4349. "description": "Common interface for logging libraries",
  4350. "homepage": "https://github.com/php-fig/log",
  4351. "keywords": [
  4352. "log",
  4353. "psr",
  4354. "psr-3"
  4355. ],
  4356. "support": {
  4357. "source": "https://github.com/php-fig/log/tree/1.1.4"
  4358. },
  4359. "time": "2021-05-03T11:20:27+00:00"
  4360. },
  4361. {
  4362. "name": "psr/simple-cache",
  4363. "version": "1.0.1",
  4364. "source": {
  4365. "type": "git",
  4366. "url": "https://github.com/php-fig/simple-cache.git",
  4367. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  4368. },
  4369. "dist": {
  4370. "type": "zip",
  4371. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4372. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  4373. "shasum": "",
  4374. "mirrors": [
  4375. {
  4376. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4377. "preferred": true
  4378. }
  4379. ]
  4380. },
  4381. "require": {
  4382. "php": ">=5.3.0"
  4383. },
  4384. "type": "library",
  4385. "extra": {
  4386. "branch-alias": {
  4387. "dev-master": "1.0.x-dev"
  4388. }
  4389. },
  4390. "autoload": {
  4391. "psr-4": {
  4392. "Psr\\SimpleCache\\": "src/"
  4393. }
  4394. },
  4395. "notification-url": "https://packagist.org/downloads/",
  4396. "license": [
  4397. "MIT"
  4398. ],
  4399. "authors": [
  4400. {
  4401. "name": "PHP-FIG",
  4402. "homepage": "http://www.php-fig.org/"
  4403. }
  4404. ],
  4405. "description": "Common interfaces for simple caching",
  4406. "keywords": [
  4407. "cache",
  4408. "caching",
  4409. "psr",
  4410. "psr-16",
  4411. "simple-cache"
  4412. ],
  4413. "support": {
  4414. "source": "https://github.com/php-fig/simple-cache/tree/master"
  4415. },
  4416. "time": "2017-10-23T01:57:42+00:00"
  4417. },
  4418. {
  4419. "name": "psy/psysh",
  4420. "version": "v0.10.8",
  4421. "source": {
  4422. "type": "git",
  4423. "url": "https://github.com/bobthecow/psysh.git",
  4424. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3"
  4425. },
  4426. "dist": {
  4427. "type": "zip",
  4428. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4429. "reference": "e4573f47750dd6c92dca5aee543fa77513cbd8d3",
  4430. "shasum": "",
  4431. "mirrors": [
  4432. {
  4433. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4434. "preferred": true
  4435. }
  4436. ]
  4437. },
  4438. "require": {
  4439. "ext-json": "*",
  4440. "ext-tokenizer": "*",
  4441. "nikic/php-parser": "~4.0|~3.0|~2.0|~1.3",
  4442. "php": "^8.0 || ^7.0 || ^5.5.9",
  4443. "symfony/console": "~5.0|~4.0|~3.0|^2.4.2|~2.3.10",
  4444. "symfony/var-dumper": "~5.0|~4.0|~3.0|~2.7"
  4445. },
  4446. "require-dev": {
  4447. "bamarni/composer-bin-plugin": "^1.2",
  4448. "hoa/console": "3.17.*"
  4449. },
  4450. "suggest": {
  4451. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4452. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4453. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  4454. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history.",
  4455. "hoa/console": "A pure PHP readline implementation. You'll want this if your PHP install doesn't already support readline or libedit."
  4456. },
  4457. "bin": [
  4458. "bin/psysh"
  4459. ],
  4460. "type": "library",
  4461. "extra": {
  4462. "branch-alias": {
  4463. "dev-main": "0.10.x-dev"
  4464. }
  4465. },
  4466. "autoload": {
  4467. "files": [
  4468. "src/functions.php"
  4469. ],
  4470. "psr-4": {
  4471. "Psy\\": "src/"
  4472. }
  4473. },
  4474. "notification-url": "https://packagist.org/downloads/",
  4475. "license": [
  4476. "MIT"
  4477. ],
  4478. "authors": [
  4479. {
  4480. "name": "Justin Hileman",
  4481. "email": "justin@justinhileman.info",
  4482. "homepage": "http://justinhileman.com"
  4483. }
  4484. ],
  4485. "description": "An interactive shell for modern PHP.",
  4486. "homepage": "http://psysh.org",
  4487. "keywords": [
  4488. "REPL",
  4489. "console",
  4490. "interactive",
  4491. "shell"
  4492. ],
  4493. "support": {
  4494. "issues": "https://github.com/bobthecow/psysh/issues",
  4495. "source": "https://github.com/bobthecow/psysh/tree/v0.10.8"
  4496. },
  4497. "time": "2021-04-10T16:23:39+00:00"
  4498. },
  4499. {
  4500. "name": "ralouphie/getallheaders",
  4501. "version": "3.0.3",
  4502. "source": {
  4503. "type": "git",
  4504. "url": "https://github.com/ralouphie/getallheaders.git",
  4505. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4506. },
  4507. "dist": {
  4508. "type": "zip",
  4509. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4510. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4511. "shasum": "",
  4512. "mirrors": [
  4513. {
  4514. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4515. "preferred": true
  4516. }
  4517. ]
  4518. },
  4519. "require": {
  4520. "php": ">=5.6"
  4521. },
  4522. "require-dev": {
  4523. "php-coveralls/php-coveralls": "^2.1",
  4524. "phpunit/phpunit": "^5 || ^6.5"
  4525. },
  4526. "type": "library",
  4527. "autoload": {
  4528. "files": [
  4529. "src/getallheaders.php"
  4530. ]
  4531. },
  4532. "notification-url": "https://packagist.org/downloads/",
  4533. "license": [
  4534. "MIT"
  4535. ],
  4536. "authors": [
  4537. {
  4538. "name": "Ralph Khattar",
  4539. "email": "ralph.khattar@gmail.com"
  4540. }
  4541. ],
  4542. "description": "A polyfill for getallheaders.",
  4543. "support": {
  4544. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4545. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4546. },
  4547. "time": "2019-03-08T08:55:37+00:00"
  4548. },
  4549. {
  4550. "name": "ramsey/collection",
  4551. "version": "1.1.4",
  4552. "source": {
  4553. "type": "git",
  4554. "url": "https://github.com/ramsey/collection.git",
  4555. "reference": "ab2237657ad99667a5143e32ba2683c8029563d4"
  4556. },
  4557. "dist": {
  4558. "type": "zip",
  4559. "url": "https://api.github.com/repos/ramsey/collection/zipball/ab2237657ad99667a5143e32ba2683c8029563d4",
  4560. "reference": "ab2237657ad99667a5143e32ba2683c8029563d4",
  4561. "shasum": "",
  4562. "mirrors": [
  4563. {
  4564. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4565. "preferred": true
  4566. }
  4567. ]
  4568. },
  4569. "require": {
  4570. "php": "^7.2 || ^8"
  4571. },
  4572. "require-dev": {
  4573. "captainhook/captainhook": "^5.3",
  4574. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4575. "ergebnis/composer-normalize": "^2.6",
  4576. "fakerphp/faker": "^1.5",
  4577. "hamcrest/hamcrest-php": "^2",
  4578. "jangregor/phpstan-prophecy": "^0.8",
  4579. "mockery/mockery": "^1.3",
  4580. "phpstan/extension-installer": "^1",
  4581. "phpstan/phpstan": "^0.12.32",
  4582. "phpstan/phpstan-mockery": "^0.12.5",
  4583. "phpstan/phpstan-phpunit": "^0.12.11",
  4584. "phpunit/phpunit": "^8.5 || ^9",
  4585. "psy/psysh": "^0.10.4",
  4586. "slevomat/coding-standard": "^6.3",
  4587. "squizlabs/php_codesniffer": "^3.5",
  4588. "vimeo/psalm": "^4.4"
  4589. },
  4590. "type": "library",
  4591. "autoload": {
  4592. "psr-4": {
  4593. "Ramsey\\Collection\\": "src/"
  4594. }
  4595. },
  4596. "notification-url": "https://packagist.org/downloads/",
  4597. "license": [
  4598. "MIT"
  4599. ],
  4600. "authors": [
  4601. {
  4602. "name": "Ben Ramsey",
  4603. "email": "ben@benramsey.com",
  4604. "homepage": "https://benramsey.com"
  4605. }
  4606. ],
  4607. "description": "A PHP 7.2+ library for representing and manipulating collections.",
  4608. "keywords": [
  4609. "array",
  4610. "collection",
  4611. "hash",
  4612. "map",
  4613. "queue",
  4614. "set"
  4615. ],
  4616. "support": {
  4617. "issues": "https://github.com/ramsey/collection/issues",
  4618. "source": "https://github.com/ramsey/collection/tree/1.1.4"
  4619. },
  4620. "funding": [
  4621. {
  4622. "url": "https://github.com/ramsey",
  4623. "type": "github"
  4624. },
  4625. {
  4626. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4627. "type": "tidelift"
  4628. }
  4629. ],
  4630. "time": "2021-07-30T00:58:27+00:00"
  4631. },
  4632. {
  4633. "name": "ramsey/uuid",
  4634. "version": "4.1.1",
  4635. "source": {
  4636. "type": "git",
  4637. "url": "https://github.com/ramsey/uuid.git",
  4638. "reference": "cd4032040a750077205918c86049aa0f43d22947"
  4639. },
  4640. "dist": {
  4641. "type": "zip",
  4642. "url": "https://api.github.com/repos/ramsey/uuid/zipball/cd4032040a750077205918c86049aa0f43d22947",
  4643. "reference": "cd4032040a750077205918c86049aa0f43d22947",
  4644. "shasum": "",
  4645. "mirrors": [
  4646. {
  4647. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4648. "preferred": true
  4649. }
  4650. ]
  4651. },
  4652. "require": {
  4653. "brick/math": "^0.8 || ^0.9",
  4654. "ext-json": "*",
  4655. "php": "^7.2 || ^8",
  4656. "ramsey/collection": "^1.0",
  4657. "symfony/polyfill-ctype": "^1.8"
  4658. },
  4659. "replace": {
  4660. "rhumsaa/uuid": "self.version"
  4661. },
  4662. "require-dev": {
  4663. "codeception/aspect-mock": "^3",
  4664. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7.0",
  4665. "doctrine/annotations": "^1.8",
  4666. "goaop/framework": "^2",
  4667. "mockery/mockery": "^1.3",
  4668. "moontoast/math": "^1.1",
  4669. "paragonie/random-lib": "^2",
  4670. "php-mock/php-mock-mockery": "^1.3",
  4671. "php-mock/php-mock-phpunit": "^2.5",
  4672. "php-parallel-lint/php-parallel-lint": "^1.1",
  4673. "phpbench/phpbench": "^0.17.1",
  4674. "phpstan/extension-installer": "^1.0",
  4675. "phpstan/phpstan": "^0.12",
  4676. "phpstan/phpstan-mockery": "^0.12",
  4677. "phpstan/phpstan-phpunit": "^0.12",
  4678. "phpunit/phpunit": "^8.5",
  4679. "psy/psysh": "^0.10.0",
  4680. "slevomat/coding-standard": "^6.0",
  4681. "squizlabs/php_codesniffer": "^3.5",
  4682. "vimeo/psalm": "3.9.4"
  4683. },
  4684. "suggest": {
  4685. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4686. "ext-ctype": "Enables faster processing of character classification using ctype functions.",
  4687. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4688. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4689. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4690. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4691. },
  4692. "type": "library",
  4693. "extra": {
  4694. "branch-alias": {
  4695. "dev-master": "4.x-dev"
  4696. }
  4697. },
  4698. "autoload": {
  4699. "psr-4": {
  4700. "Ramsey\\Uuid\\": "src/"
  4701. },
  4702. "files": [
  4703. "src/functions.php"
  4704. ]
  4705. },
  4706. "notification-url": "https://packagist.org/downloads/",
  4707. "license": [
  4708. "MIT"
  4709. ],
  4710. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4711. "homepage": "https://github.com/ramsey/uuid",
  4712. "keywords": [
  4713. "guid",
  4714. "identifier",
  4715. "uuid"
  4716. ],
  4717. "support": {
  4718. "issues": "https://github.com/ramsey/uuid/issues",
  4719. "rss": "https://github.com/ramsey/uuid/releases.atom",
  4720. "source": "https://github.com/ramsey/uuid"
  4721. },
  4722. "funding": [
  4723. {
  4724. "url": "https://github.com/ramsey",
  4725. "type": "github"
  4726. }
  4727. ],
  4728. "time": "2020-08-18T17:17:46+00:00"
  4729. },
  4730. {
  4731. "name": "spatie/eloquent-sortable",
  4732. "version": "3.11.0",
  4733. "source": {
  4734. "type": "git",
  4735. "url": "https://github.com/spatie/eloquent-sortable.git",
  4736. "reference": "b06fa886559f8d40e31c8a69fd32bd45401dc5da"
  4737. },
  4738. "dist": {
  4739. "type": "zip",
  4740. "url": "https://api.github.com/repos/spatie/eloquent-sortable/zipball/b06fa886559f8d40e31c8a69fd32bd45401dc5da",
  4741. "reference": "b06fa886559f8d40e31c8a69fd32bd45401dc5da",
  4742. "shasum": "",
  4743. "mirrors": [
  4744. {
  4745. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4746. "preferred": true
  4747. }
  4748. ]
  4749. },
  4750. "require": {
  4751. "illuminate/database": "^6.0|^7.0|^8.0",
  4752. "illuminate/support": "^6.0|^7.0|^8.0",
  4753. "php": "^7.3|^8.0"
  4754. },
  4755. "require-dev": {
  4756. "orchestra/testbench": "^4.0|^5.0|^6.0",
  4757. "phpunit/phpunit": "^8.0|^9.0"
  4758. },
  4759. "type": "library",
  4760. "extra": {
  4761. "laravel": {
  4762. "providers": [
  4763. "Spatie\\EloquentSortable\\EloquentSortableServiceProvider"
  4764. ]
  4765. }
  4766. },
  4767. "autoload": {
  4768. "psr-4": {
  4769. "Spatie\\EloquentSortable\\": "src/"
  4770. }
  4771. },
  4772. "notification-url": "https://packagist.org/downloads/",
  4773. "license": [
  4774. "MIT"
  4775. ],
  4776. "authors": [
  4777. {
  4778. "name": "Freek Van der Herten",
  4779. "email": "freek@spatie.be"
  4780. }
  4781. ],
  4782. "description": "Sortable behaviour for eloquent models",
  4783. "homepage": "https://github.com/spatie/eloquent-sortable",
  4784. "keywords": [
  4785. "behaviour",
  4786. "eloquent",
  4787. "laravel",
  4788. "model",
  4789. "sort",
  4790. "sortable"
  4791. ],
  4792. "support": {
  4793. "issues": "https://github.com/spatie/eloquent-sortable/issues",
  4794. "source": "https://github.com/spatie/eloquent-sortable/tree/3.11.0"
  4795. },
  4796. "funding": [
  4797. {
  4798. "url": "https://github.com/spatie",
  4799. "type": "github"
  4800. }
  4801. ],
  4802. "time": "2021-01-18T00:32:12+00:00"
  4803. },
  4804. {
  4805. "name": "spatie/laravel-activitylog",
  4806. "version": "3.17.0",
  4807. "source": {
  4808. "type": "git",
  4809. "url": "https://github.com/spatie/laravel-activitylog.git",
  4810. "reference": "bdc44862aaca39ecbd824133b80dbd7c8017ed7f"
  4811. },
  4812. "dist": {
  4813. "type": "zip",
  4814. "url": "https://api.github.com/repos/spatie/laravel-activitylog/zipball/bdc44862aaca39ecbd824133b80dbd7c8017ed7f",
  4815. "reference": "bdc44862aaca39ecbd824133b80dbd7c8017ed7f",
  4816. "shasum": "",
  4817. "mirrors": [
  4818. {
  4819. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4820. "preferred": true
  4821. }
  4822. ]
  4823. },
  4824. "require": {
  4825. "illuminate/config": "^6.0 || ^7.0 || ^8.0",
  4826. "illuminate/database": "^6.0 || ^7.0 || ^8.0",
  4827. "illuminate/support": "^6.0 || ^7.0 || ^8.0",
  4828. "php": "^7.3 || ^8.0"
  4829. },
  4830. "require-dev": {
  4831. "ext-json": "*",
  4832. "orchestra/testbench": "^4.0 || ^5.0 || ^6.0",
  4833. "phpunit/phpunit": "^9.3"
  4834. },
  4835. "type": "library",
  4836. "extra": {
  4837. "laravel": {
  4838. "providers": [
  4839. "Spatie\\Activitylog\\ActivitylogServiceProvider"
  4840. ]
  4841. }
  4842. },
  4843. "autoload": {
  4844. "psr-4": {
  4845. "Spatie\\Activitylog\\": "src"
  4846. },
  4847. "files": [
  4848. "src/helpers.php"
  4849. ]
  4850. },
  4851. "notification-url": "https://packagist.org/downloads/",
  4852. "license": [
  4853. "MIT"
  4854. ],
  4855. "authors": [
  4856. {
  4857. "name": "Freek Van der Herten",
  4858. "email": "freek@spatie.be",
  4859. "homepage": "https://spatie.be",
  4860. "role": "Developer"
  4861. },
  4862. {
  4863. "name": "Sebastian De Deyne",
  4864. "email": "sebastian@spatie.be",
  4865. "homepage": "https://spatie.be",
  4866. "role": "Developer"
  4867. },
  4868. {
  4869. "name": "Tom Witkowski",
  4870. "email": "dev.gummibeer@gmail.com",
  4871. "homepage": "https://gummibeer.de",
  4872. "role": "Developer"
  4873. }
  4874. ],
  4875. "description": "A very simple activity logger to monitor the users of your website or application",
  4876. "homepage": "https://github.com/spatie/activitylog",
  4877. "keywords": [
  4878. "activity",
  4879. "laravel",
  4880. "log",
  4881. "spatie",
  4882. "user"
  4883. ],
  4884. "support": {
  4885. "issues": "https://github.com/spatie/laravel-activitylog/issues",
  4886. "source": "https://github.com/spatie/laravel-activitylog/tree/3.17.0"
  4887. },
  4888. "funding": [
  4889. {
  4890. "url": "https://spatie.be/open-source/support-us",
  4891. "type": "custom"
  4892. },
  4893. {
  4894. "url": "https://github.com/spatie",
  4895. "type": "github"
  4896. }
  4897. ],
  4898. "time": "2021-03-02T16:49:06+00:00"
  4899. },
  4900. {
  4901. "name": "swiftmailer/swiftmailer",
  4902. "version": "v6.2.7",
  4903. "source": {
  4904. "type": "git",
  4905. "url": "https://github.com/swiftmailer/swiftmailer.git",
  4906. "reference": "15f7faf8508e04471f666633addacf54c0ab5933"
  4907. },
  4908. "dist": {
  4909. "type": "zip",
  4910. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/15f7faf8508e04471f666633addacf54c0ab5933",
  4911. "reference": "15f7faf8508e04471f666633addacf54c0ab5933",
  4912. "shasum": "",
  4913. "mirrors": [
  4914. {
  4915. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4916. "preferred": true
  4917. }
  4918. ]
  4919. },
  4920. "require": {
  4921. "egulias/email-validator": "^2.0|^3.1",
  4922. "php": ">=7.0.0",
  4923. "symfony/polyfill-iconv": "^1.0",
  4924. "symfony/polyfill-intl-idn": "^1.10",
  4925. "symfony/polyfill-mbstring": "^1.0"
  4926. },
  4927. "require-dev": {
  4928. "mockery/mockery": "^1.0",
  4929. "symfony/phpunit-bridge": "^4.4|^5.0"
  4930. },
  4931. "suggest": {
  4932. "ext-intl": "Needed to support internationalized email addresses"
  4933. },
  4934. "type": "library",
  4935. "extra": {
  4936. "branch-alias": {
  4937. "dev-master": "6.2-dev"
  4938. }
  4939. },
  4940. "autoload": {
  4941. "files": [
  4942. "lib/swift_required.php"
  4943. ]
  4944. },
  4945. "notification-url": "https://packagist.org/downloads/",
  4946. "license": [
  4947. "MIT"
  4948. ],
  4949. "authors": [
  4950. {
  4951. "name": "Chris Corbyn"
  4952. },
  4953. {
  4954. "name": "Fabien Potencier",
  4955. "email": "fabien@symfony.com"
  4956. }
  4957. ],
  4958. "description": "Swiftmailer, free feature-rich PHP mailer",
  4959. "homepage": "https://swiftmailer.symfony.com",
  4960. "keywords": [
  4961. "email",
  4962. "mail",
  4963. "mailer"
  4964. ],
  4965. "support": {
  4966. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  4967. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.7"
  4968. },
  4969. "funding": [
  4970. {
  4971. "url": "https://github.com/fabpot",
  4972. "type": "github"
  4973. },
  4974. {
  4975. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  4976. "type": "tidelift"
  4977. }
  4978. ],
  4979. "time": "2021-03-09T12:30:35+00:00"
  4980. },
  4981. {
  4982. "name": "symfony/console",
  4983. "version": "v5.3.6",
  4984. "source": {
  4985. "type": "git",
  4986. "url": "https://github.com/symfony/console.git",
  4987. "reference": "51b71afd6d2dc8f5063199357b9880cea8d8bfe2"
  4988. },
  4989. "dist": {
  4990. "type": "zip",
  4991. "url": "https://api.github.com/repos/symfony/console/zipball/51b71afd6d2dc8f5063199357b9880cea8d8bfe2",
  4992. "reference": "51b71afd6d2dc8f5063199357b9880cea8d8bfe2",
  4993. "shasum": "",
  4994. "mirrors": [
  4995. {
  4996. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4997. "preferred": true
  4998. }
  4999. ]
  5000. },
  5001. "require": {
  5002. "php": ">=7.2.5",
  5003. "symfony/deprecation-contracts": "^2.1",
  5004. "symfony/polyfill-mbstring": "~1.0",
  5005. "symfony/polyfill-php73": "^1.8",
  5006. "symfony/polyfill-php80": "^1.16",
  5007. "symfony/service-contracts": "^1.1|^2",
  5008. "symfony/string": "^5.1"
  5009. },
  5010. "conflict": {
  5011. "psr/log": ">=3",
  5012. "symfony/dependency-injection": "<4.4",
  5013. "symfony/dotenv": "<5.1",
  5014. "symfony/event-dispatcher": "<4.4",
  5015. "symfony/lock": "<4.4",
  5016. "symfony/process": "<4.4"
  5017. },
  5018. "provide": {
  5019. "psr/log-implementation": "1.0|2.0"
  5020. },
  5021. "require-dev": {
  5022. "psr/log": "^1|^2",
  5023. "symfony/config": "^4.4|^5.0",
  5024. "symfony/dependency-injection": "^4.4|^5.0",
  5025. "symfony/event-dispatcher": "^4.4|^5.0",
  5026. "symfony/lock": "^4.4|^5.0",
  5027. "symfony/process": "^4.4|^5.0",
  5028. "symfony/var-dumper": "^4.4|^5.0"
  5029. },
  5030. "suggest": {
  5031. "psr/log": "For using the console logger",
  5032. "symfony/event-dispatcher": "",
  5033. "symfony/lock": "",
  5034. "symfony/process": ""
  5035. },
  5036. "type": "library",
  5037. "autoload": {
  5038. "psr-4": {
  5039. "Symfony\\Component\\Console\\": ""
  5040. },
  5041. "exclude-from-classmap": [
  5042. "/Tests/"
  5043. ]
  5044. },
  5045. "notification-url": "https://packagist.org/downloads/",
  5046. "license": [
  5047. "MIT"
  5048. ],
  5049. "authors": [
  5050. {
  5051. "name": "Fabien Potencier",
  5052. "email": "fabien@symfony.com"
  5053. },
  5054. {
  5055. "name": "Symfony Community",
  5056. "homepage": "https://symfony.com/contributors"
  5057. }
  5058. ],
  5059. "description": "Eases the creation of beautiful and testable command line interfaces",
  5060. "homepage": "https://symfony.com",
  5061. "keywords": [
  5062. "cli",
  5063. "command line",
  5064. "console",
  5065. "terminal"
  5066. ],
  5067. "support": {
  5068. "source": "https://github.com/symfony/console/tree/v5.3.6"
  5069. },
  5070. "funding": [
  5071. {
  5072. "url": "https://symfony.com/sponsor",
  5073. "type": "custom"
  5074. },
  5075. {
  5076. "url": "https://github.com/fabpot",
  5077. "type": "github"
  5078. },
  5079. {
  5080. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5081. "type": "tidelift"
  5082. }
  5083. ],
  5084. "time": "2021-07-27T19:10:22+00:00"
  5085. },
  5086. {
  5087. "name": "symfony/css-selector",
  5088. "version": "v5.3.4",
  5089. "source": {
  5090. "type": "git",
  5091. "url": "https://github.com/symfony/css-selector.git",
  5092. "reference": "7fb120adc7f600a59027775b224c13a33530dd90"
  5093. },
  5094. "dist": {
  5095. "type": "zip",
  5096. "url": "https://api.github.com/repos/symfony/css-selector/zipball/7fb120adc7f600a59027775b224c13a33530dd90",
  5097. "reference": "7fb120adc7f600a59027775b224c13a33530dd90",
  5098. "shasum": "",
  5099. "mirrors": [
  5100. {
  5101. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5102. "preferred": true
  5103. }
  5104. ]
  5105. },
  5106. "require": {
  5107. "php": ">=7.2.5",
  5108. "symfony/polyfill-php80": "^1.16"
  5109. },
  5110. "type": "library",
  5111. "autoload": {
  5112. "psr-4": {
  5113. "Symfony\\Component\\CssSelector\\": ""
  5114. },
  5115. "exclude-from-classmap": [
  5116. "/Tests/"
  5117. ]
  5118. },
  5119. "notification-url": "https://packagist.org/downloads/",
  5120. "license": [
  5121. "MIT"
  5122. ],
  5123. "authors": [
  5124. {
  5125. "name": "Fabien Potencier",
  5126. "email": "fabien@symfony.com"
  5127. },
  5128. {
  5129. "name": "Jean-François Simon",
  5130. "email": "jeanfrancois.simon@sensiolabs.com"
  5131. },
  5132. {
  5133. "name": "Symfony Community",
  5134. "homepage": "https://symfony.com/contributors"
  5135. }
  5136. ],
  5137. "description": "Converts CSS selectors to XPath expressions",
  5138. "homepage": "https://symfony.com",
  5139. "support": {
  5140. "source": "https://github.com/symfony/css-selector/tree/v5.3.4"
  5141. },
  5142. "funding": [
  5143. {
  5144. "url": "https://symfony.com/sponsor",
  5145. "type": "custom"
  5146. },
  5147. {
  5148. "url": "https://github.com/fabpot",
  5149. "type": "github"
  5150. },
  5151. {
  5152. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5153. "type": "tidelift"
  5154. }
  5155. ],
  5156. "time": "2021-07-21T12:38:00+00:00"
  5157. },
  5158. {
  5159. "name": "symfony/deprecation-contracts",
  5160. "version": "v2.4.0",
  5161. "source": {
  5162. "type": "git",
  5163. "url": "https://github.com/symfony/deprecation-contracts.git",
  5164. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627"
  5165. },
  5166. "dist": {
  5167. "type": "zip",
  5168. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5169. "reference": "5f38c8804a9e97d23e0c8d63341088cd8a22d627",
  5170. "shasum": "",
  5171. "mirrors": [
  5172. {
  5173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5174. "preferred": true
  5175. }
  5176. ]
  5177. },
  5178. "require": {
  5179. "php": ">=7.1"
  5180. },
  5181. "type": "library",
  5182. "extra": {
  5183. "branch-alias": {
  5184. "dev-main": "2.4-dev"
  5185. },
  5186. "thanks": {
  5187. "name": "symfony/contracts",
  5188. "url": "https://github.com/symfony/contracts"
  5189. }
  5190. },
  5191. "autoload": {
  5192. "files": [
  5193. "function.php"
  5194. ]
  5195. },
  5196. "notification-url": "https://packagist.org/downloads/",
  5197. "license": [
  5198. "MIT"
  5199. ],
  5200. "authors": [
  5201. {
  5202. "name": "Nicolas Grekas",
  5203. "email": "p@tchwork.com"
  5204. },
  5205. {
  5206. "name": "Symfony Community",
  5207. "homepage": "https://symfony.com/contributors"
  5208. }
  5209. ],
  5210. "description": "A generic function and convention to trigger deprecation notices",
  5211. "homepage": "https://symfony.com",
  5212. "support": {
  5213. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.4.0"
  5214. },
  5215. "funding": [
  5216. {
  5217. "url": "https://symfony.com/sponsor",
  5218. "type": "custom"
  5219. },
  5220. {
  5221. "url": "https://github.com/fabpot",
  5222. "type": "github"
  5223. },
  5224. {
  5225. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5226. "type": "tidelift"
  5227. }
  5228. ],
  5229. "time": "2021-03-23T23:28:01+00:00"
  5230. },
  5231. {
  5232. "name": "symfony/error-handler",
  5233. "version": "v5.3.4",
  5234. "source": {
  5235. "type": "git",
  5236. "url": "https://github.com/symfony/error-handler.git",
  5237. "reference": "281f6c4660bcf5844bb0346fe3a4664722fe4c73"
  5238. },
  5239. "dist": {
  5240. "type": "zip",
  5241. "url": "https://api.github.com/repos/symfony/error-handler/zipball/281f6c4660bcf5844bb0346fe3a4664722fe4c73",
  5242. "reference": "281f6c4660bcf5844bb0346fe3a4664722fe4c73",
  5243. "shasum": "",
  5244. "mirrors": [
  5245. {
  5246. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5247. "preferred": true
  5248. }
  5249. ]
  5250. },
  5251. "require": {
  5252. "php": ">=7.2.5",
  5253. "psr/log": "^1|^2|^3",
  5254. "symfony/var-dumper": "^4.4|^5.0"
  5255. },
  5256. "require-dev": {
  5257. "symfony/deprecation-contracts": "^2.1",
  5258. "symfony/http-kernel": "^4.4|^5.0",
  5259. "symfony/serializer": "^4.4|^5.0"
  5260. },
  5261. "type": "library",
  5262. "autoload": {
  5263. "psr-4": {
  5264. "Symfony\\Component\\ErrorHandler\\": ""
  5265. },
  5266. "exclude-from-classmap": [
  5267. "/Tests/"
  5268. ]
  5269. },
  5270. "notification-url": "https://packagist.org/downloads/",
  5271. "license": [
  5272. "MIT"
  5273. ],
  5274. "authors": [
  5275. {
  5276. "name": "Fabien Potencier",
  5277. "email": "fabien@symfony.com"
  5278. },
  5279. {
  5280. "name": "Symfony Community",
  5281. "homepage": "https://symfony.com/contributors"
  5282. }
  5283. ],
  5284. "description": "Provides tools to manage errors and ease debugging PHP code",
  5285. "homepage": "https://symfony.com",
  5286. "support": {
  5287. "source": "https://github.com/symfony/error-handler/tree/v5.3.4"
  5288. },
  5289. "funding": [
  5290. {
  5291. "url": "https://symfony.com/sponsor",
  5292. "type": "custom"
  5293. },
  5294. {
  5295. "url": "https://github.com/fabpot",
  5296. "type": "github"
  5297. },
  5298. {
  5299. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5300. "type": "tidelift"
  5301. }
  5302. ],
  5303. "time": "2021-07-23T15:55:36+00:00"
  5304. },
  5305. {
  5306. "name": "symfony/event-dispatcher",
  5307. "version": "v5.3.4",
  5308. "source": {
  5309. "type": "git",
  5310. "url": "https://github.com/symfony/event-dispatcher.git",
  5311. "reference": "f2fd2208157553874560f3645d4594303058c4bd"
  5312. },
  5313. "dist": {
  5314. "type": "zip",
  5315. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/f2fd2208157553874560f3645d4594303058c4bd",
  5316. "reference": "f2fd2208157553874560f3645d4594303058c4bd",
  5317. "shasum": "",
  5318. "mirrors": [
  5319. {
  5320. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5321. "preferred": true
  5322. }
  5323. ]
  5324. },
  5325. "require": {
  5326. "php": ">=7.2.5",
  5327. "symfony/deprecation-contracts": "^2.1",
  5328. "symfony/event-dispatcher-contracts": "^2",
  5329. "symfony/polyfill-php80": "^1.16"
  5330. },
  5331. "conflict": {
  5332. "symfony/dependency-injection": "<4.4"
  5333. },
  5334. "provide": {
  5335. "psr/event-dispatcher-implementation": "1.0",
  5336. "symfony/event-dispatcher-implementation": "2.0"
  5337. },
  5338. "require-dev": {
  5339. "psr/log": "^1|^2|^3",
  5340. "symfony/config": "^4.4|^5.0",
  5341. "symfony/dependency-injection": "^4.4|^5.0",
  5342. "symfony/error-handler": "^4.4|^5.0",
  5343. "symfony/expression-language": "^4.4|^5.0",
  5344. "symfony/http-foundation": "^4.4|^5.0",
  5345. "symfony/service-contracts": "^1.1|^2",
  5346. "symfony/stopwatch": "^4.4|^5.0"
  5347. },
  5348. "suggest": {
  5349. "symfony/dependency-injection": "",
  5350. "symfony/http-kernel": ""
  5351. },
  5352. "type": "library",
  5353. "autoload": {
  5354. "psr-4": {
  5355. "Symfony\\Component\\EventDispatcher\\": ""
  5356. },
  5357. "exclude-from-classmap": [
  5358. "/Tests/"
  5359. ]
  5360. },
  5361. "notification-url": "https://packagist.org/downloads/",
  5362. "license": [
  5363. "MIT"
  5364. ],
  5365. "authors": [
  5366. {
  5367. "name": "Fabien Potencier",
  5368. "email": "fabien@symfony.com"
  5369. },
  5370. {
  5371. "name": "Symfony Community",
  5372. "homepage": "https://symfony.com/contributors"
  5373. }
  5374. ],
  5375. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5376. "homepage": "https://symfony.com",
  5377. "support": {
  5378. "source": "https://github.com/symfony/event-dispatcher/tree/v5.3.4"
  5379. },
  5380. "funding": [
  5381. {
  5382. "url": "https://symfony.com/sponsor",
  5383. "type": "custom"
  5384. },
  5385. {
  5386. "url": "https://github.com/fabpot",
  5387. "type": "github"
  5388. },
  5389. {
  5390. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5391. "type": "tidelift"
  5392. }
  5393. ],
  5394. "time": "2021-07-23T15:55:36+00:00"
  5395. },
  5396. {
  5397. "name": "symfony/event-dispatcher-contracts",
  5398. "version": "v2.4.0",
  5399. "source": {
  5400. "type": "git",
  5401. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5402. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11"
  5403. },
  5404. "dist": {
  5405. "type": "zip",
  5406. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5407. "reference": "69fee1ad2332a7cbab3aca13591953da9cdb7a11",
  5408. "shasum": "",
  5409. "mirrors": [
  5410. {
  5411. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5412. "preferred": true
  5413. }
  5414. ]
  5415. },
  5416. "require": {
  5417. "php": ">=7.2.5",
  5418. "psr/event-dispatcher": "^1"
  5419. },
  5420. "suggest": {
  5421. "symfony/event-dispatcher-implementation": ""
  5422. },
  5423. "type": "library",
  5424. "extra": {
  5425. "branch-alias": {
  5426. "dev-main": "2.4-dev"
  5427. },
  5428. "thanks": {
  5429. "name": "symfony/contracts",
  5430. "url": "https://github.com/symfony/contracts"
  5431. }
  5432. },
  5433. "autoload": {
  5434. "psr-4": {
  5435. "Symfony\\Contracts\\EventDispatcher\\": ""
  5436. }
  5437. },
  5438. "notification-url": "https://packagist.org/downloads/",
  5439. "license": [
  5440. "MIT"
  5441. ],
  5442. "authors": [
  5443. {
  5444. "name": "Nicolas Grekas",
  5445. "email": "p@tchwork.com"
  5446. },
  5447. {
  5448. "name": "Symfony Community",
  5449. "homepage": "https://symfony.com/contributors"
  5450. }
  5451. ],
  5452. "description": "Generic abstractions related to dispatching event",
  5453. "homepage": "https://symfony.com",
  5454. "keywords": [
  5455. "abstractions",
  5456. "contracts",
  5457. "decoupling",
  5458. "interfaces",
  5459. "interoperability",
  5460. "standards"
  5461. ],
  5462. "support": {
  5463. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.4.0"
  5464. },
  5465. "funding": [
  5466. {
  5467. "url": "https://symfony.com/sponsor",
  5468. "type": "custom"
  5469. },
  5470. {
  5471. "url": "https://github.com/fabpot",
  5472. "type": "github"
  5473. },
  5474. {
  5475. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5476. "type": "tidelift"
  5477. }
  5478. ],
  5479. "time": "2021-03-23T23:28:01+00:00"
  5480. },
  5481. {
  5482. "name": "symfony/finder",
  5483. "version": "v5.3.4",
  5484. "source": {
  5485. "type": "git",
  5486. "url": "https://github.com/symfony/finder.git",
  5487. "reference": "17f50e06018baec41551a71a15731287dbaab186"
  5488. },
  5489. "dist": {
  5490. "type": "zip",
  5491. "url": "https://api.github.com/repos/symfony/finder/zipball/17f50e06018baec41551a71a15731287dbaab186",
  5492. "reference": "17f50e06018baec41551a71a15731287dbaab186",
  5493. "shasum": "",
  5494. "mirrors": [
  5495. {
  5496. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5497. "preferred": true
  5498. }
  5499. ]
  5500. },
  5501. "require": {
  5502. "php": ">=7.2.5",
  5503. "symfony/polyfill-php80": "^1.16"
  5504. },
  5505. "type": "library",
  5506. "autoload": {
  5507. "psr-4": {
  5508. "Symfony\\Component\\Finder\\": ""
  5509. },
  5510. "exclude-from-classmap": [
  5511. "/Tests/"
  5512. ]
  5513. },
  5514. "notification-url": "https://packagist.org/downloads/",
  5515. "license": [
  5516. "MIT"
  5517. ],
  5518. "authors": [
  5519. {
  5520. "name": "Fabien Potencier",
  5521. "email": "fabien@symfony.com"
  5522. },
  5523. {
  5524. "name": "Symfony Community",
  5525. "homepage": "https://symfony.com/contributors"
  5526. }
  5527. ],
  5528. "description": "Finds files and directories via an intuitive fluent interface",
  5529. "homepage": "https://symfony.com",
  5530. "support": {
  5531. "source": "https://github.com/symfony/finder/tree/v5.3.4"
  5532. },
  5533. "funding": [
  5534. {
  5535. "url": "https://symfony.com/sponsor",
  5536. "type": "custom"
  5537. },
  5538. {
  5539. "url": "https://github.com/fabpot",
  5540. "type": "github"
  5541. },
  5542. {
  5543. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5544. "type": "tidelift"
  5545. }
  5546. ],
  5547. "time": "2021-07-23T15:54:19+00:00"
  5548. },
  5549. {
  5550. "name": "symfony/http-client-contracts",
  5551. "version": "v2.4.0",
  5552. "source": {
  5553. "type": "git",
  5554. "url": "https://github.com/symfony/http-client-contracts.git",
  5555. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4"
  5556. },
  5557. "dist": {
  5558. "type": "zip",
  5559. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5560. "reference": "7e82f6084d7cae521a75ef2cb5c9457bbda785f4",
  5561. "shasum": "",
  5562. "mirrors": [
  5563. {
  5564. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5565. "preferred": true
  5566. }
  5567. ]
  5568. },
  5569. "require": {
  5570. "php": ">=7.2.5"
  5571. },
  5572. "suggest": {
  5573. "symfony/http-client-implementation": ""
  5574. },
  5575. "type": "library",
  5576. "extra": {
  5577. "branch-alias": {
  5578. "dev-main": "2.4-dev"
  5579. },
  5580. "thanks": {
  5581. "name": "symfony/contracts",
  5582. "url": "https://github.com/symfony/contracts"
  5583. }
  5584. },
  5585. "autoload": {
  5586. "psr-4": {
  5587. "Symfony\\Contracts\\HttpClient\\": ""
  5588. }
  5589. },
  5590. "notification-url": "https://packagist.org/downloads/",
  5591. "license": [
  5592. "MIT"
  5593. ],
  5594. "authors": [
  5595. {
  5596. "name": "Nicolas Grekas",
  5597. "email": "p@tchwork.com"
  5598. },
  5599. {
  5600. "name": "Symfony Community",
  5601. "homepage": "https://symfony.com/contributors"
  5602. }
  5603. ],
  5604. "description": "Generic abstractions related to HTTP clients",
  5605. "homepage": "https://symfony.com",
  5606. "keywords": [
  5607. "abstractions",
  5608. "contracts",
  5609. "decoupling",
  5610. "interfaces",
  5611. "interoperability",
  5612. "standards"
  5613. ],
  5614. "support": {
  5615. "source": "https://github.com/symfony/http-client-contracts/tree/v2.4.0"
  5616. },
  5617. "funding": [
  5618. {
  5619. "url": "https://symfony.com/sponsor",
  5620. "type": "custom"
  5621. },
  5622. {
  5623. "url": "https://github.com/fabpot",
  5624. "type": "github"
  5625. },
  5626. {
  5627. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5628. "type": "tidelift"
  5629. }
  5630. ],
  5631. "time": "2021-04-11T23:07:08+00:00"
  5632. },
  5633. {
  5634. "name": "symfony/http-foundation",
  5635. "version": "v5.3.6",
  5636. "source": {
  5637. "type": "git",
  5638. "url": "https://github.com/symfony/http-foundation.git",
  5639. "reference": "a8388f7b7054a7401997008ce9cd8c6b0ab7ac75"
  5640. },
  5641. "dist": {
  5642. "type": "zip",
  5643. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a8388f7b7054a7401997008ce9cd8c6b0ab7ac75",
  5644. "reference": "a8388f7b7054a7401997008ce9cd8c6b0ab7ac75",
  5645. "shasum": "",
  5646. "mirrors": [
  5647. {
  5648. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5649. "preferred": true
  5650. }
  5651. ]
  5652. },
  5653. "require": {
  5654. "php": ">=7.2.5",
  5655. "symfony/deprecation-contracts": "^2.1",
  5656. "symfony/polyfill-mbstring": "~1.1",
  5657. "symfony/polyfill-php80": "^1.16"
  5658. },
  5659. "require-dev": {
  5660. "predis/predis": "~1.0",
  5661. "symfony/cache": "^4.4|^5.0",
  5662. "symfony/expression-language": "^4.4|^5.0",
  5663. "symfony/mime": "^4.4|^5.0"
  5664. },
  5665. "suggest": {
  5666. "symfony/mime": "To use the file extension guesser"
  5667. },
  5668. "type": "library",
  5669. "autoload": {
  5670. "psr-4": {
  5671. "Symfony\\Component\\HttpFoundation\\": ""
  5672. },
  5673. "exclude-from-classmap": [
  5674. "/Tests/"
  5675. ]
  5676. },
  5677. "notification-url": "https://packagist.org/downloads/",
  5678. "license": [
  5679. "MIT"
  5680. ],
  5681. "authors": [
  5682. {
  5683. "name": "Fabien Potencier",
  5684. "email": "fabien@symfony.com"
  5685. },
  5686. {
  5687. "name": "Symfony Community",
  5688. "homepage": "https://symfony.com/contributors"
  5689. }
  5690. ],
  5691. "description": "Defines an object-oriented layer for the HTTP specification",
  5692. "homepage": "https://symfony.com",
  5693. "support": {
  5694. "source": "https://github.com/symfony/http-foundation/tree/v5.3.6"
  5695. },
  5696. "funding": [
  5697. {
  5698. "url": "https://symfony.com/sponsor",
  5699. "type": "custom"
  5700. },
  5701. {
  5702. "url": "https://github.com/fabpot",
  5703. "type": "github"
  5704. },
  5705. {
  5706. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5707. "type": "tidelift"
  5708. }
  5709. ],
  5710. "time": "2021-07-27T17:08:17+00:00"
  5711. },
  5712. {
  5713. "name": "symfony/http-kernel",
  5714. "version": "v5.3.6",
  5715. "source": {
  5716. "type": "git",
  5717. "url": "https://github.com/symfony/http-kernel.git",
  5718. "reference": "60030f209018356b3b553b9dbd84ad2071c1b7e0"
  5719. },
  5720. "dist": {
  5721. "type": "zip",
  5722. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/60030f209018356b3b553b9dbd84ad2071c1b7e0",
  5723. "reference": "60030f209018356b3b553b9dbd84ad2071c1b7e0",
  5724. "shasum": "",
  5725. "mirrors": [
  5726. {
  5727. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5728. "preferred": true
  5729. }
  5730. ]
  5731. },
  5732. "require": {
  5733. "php": ">=7.2.5",
  5734. "psr/log": "^1|^2",
  5735. "symfony/deprecation-contracts": "^2.1",
  5736. "symfony/error-handler": "^4.4|^5.0",
  5737. "symfony/event-dispatcher": "^5.0",
  5738. "symfony/http-client-contracts": "^1.1|^2",
  5739. "symfony/http-foundation": "^5.3",
  5740. "symfony/polyfill-ctype": "^1.8",
  5741. "symfony/polyfill-php73": "^1.9",
  5742. "symfony/polyfill-php80": "^1.16"
  5743. },
  5744. "conflict": {
  5745. "symfony/browser-kit": "<4.4",
  5746. "symfony/cache": "<5.0",
  5747. "symfony/config": "<5.0",
  5748. "symfony/console": "<4.4",
  5749. "symfony/dependency-injection": "<5.3",
  5750. "symfony/doctrine-bridge": "<5.0",
  5751. "symfony/form": "<5.0",
  5752. "symfony/http-client": "<5.0",
  5753. "symfony/mailer": "<5.0",
  5754. "symfony/messenger": "<5.0",
  5755. "symfony/translation": "<5.0",
  5756. "symfony/twig-bridge": "<5.0",
  5757. "symfony/validator": "<5.0",
  5758. "twig/twig": "<2.13"
  5759. },
  5760. "provide": {
  5761. "psr/log-implementation": "1.0|2.0"
  5762. },
  5763. "require-dev": {
  5764. "psr/cache": "^1.0|^2.0|^3.0",
  5765. "symfony/browser-kit": "^4.4|^5.0",
  5766. "symfony/config": "^5.0",
  5767. "symfony/console": "^4.4|^5.0",
  5768. "symfony/css-selector": "^4.4|^5.0",
  5769. "symfony/dependency-injection": "^5.3",
  5770. "symfony/dom-crawler": "^4.4|^5.0",
  5771. "symfony/expression-language": "^4.4|^5.0",
  5772. "symfony/finder": "^4.4|^5.0",
  5773. "symfony/process": "^4.4|^5.0",
  5774. "symfony/routing": "^4.4|^5.0",
  5775. "symfony/stopwatch": "^4.4|^5.0",
  5776. "symfony/translation": "^4.4|^5.0",
  5777. "symfony/translation-contracts": "^1.1|^2",
  5778. "twig/twig": "^2.13|^3.0.4"
  5779. },
  5780. "suggest": {
  5781. "symfony/browser-kit": "",
  5782. "symfony/config": "",
  5783. "symfony/console": "",
  5784. "symfony/dependency-injection": ""
  5785. },
  5786. "type": "library",
  5787. "autoload": {
  5788. "psr-4": {
  5789. "Symfony\\Component\\HttpKernel\\": ""
  5790. },
  5791. "exclude-from-classmap": [
  5792. "/Tests/"
  5793. ]
  5794. },
  5795. "notification-url": "https://packagist.org/downloads/",
  5796. "license": [
  5797. "MIT"
  5798. ],
  5799. "authors": [
  5800. {
  5801. "name": "Fabien Potencier",
  5802. "email": "fabien@symfony.com"
  5803. },
  5804. {
  5805. "name": "Symfony Community",
  5806. "homepage": "https://symfony.com/contributors"
  5807. }
  5808. ],
  5809. "description": "Provides a structured process for converting a Request into a Response",
  5810. "homepage": "https://symfony.com",
  5811. "support": {
  5812. "source": "https://github.com/symfony/http-kernel/tree/v5.3.6"
  5813. },
  5814. "funding": [
  5815. {
  5816. "url": "https://symfony.com/sponsor",
  5817. "type": "custom"
  5818. },
  5819. {
  5820. "url": "https://github.com/fabpot",
  5821. "type": "github"
  5822. },
  5823. {
  5824. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5825. "type": "tidelift"
  5826. }
  5827. ],
  5828. "time": "2021-07-29T07:06:27+00:00"
  5829. },
  5830. {
  5831. "name": "symfony/mime",
  5832. "version": "v5.3.4",
  5833. "source": {
  5834. "type": "git",
  5835. "url": "https://github.com/symfony/mime.git",
  5836. "reference": "633e4e8afe9e529e5599d71238849a4218dd497b"
  5837. },
  5838. "dist": {
  5839. "type": "zip",
  5840. "url": "https://api.github.com/repos/symfony/mime/zipball/633e4e8afe9e529e5599d71238849a4218dd497b",
  5841. "reference": "633e4e8afe9e529e5599d71238849a4218dd497b",
  5842. "shasum": "",
  5843. "mirrors": [
  5844. {
  5845. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5846. "preferred": true
  5847. }
  5848. ]
  5849. },
  5850. "require": {
  5851. "php": ">=7.2.5",
  5852. "symfony/deprecation-contracts": "^2.1",
  5853. "symfony/polyfill-intl-idn": "^1.10",
  5854. "symfony/polyfill-mbstring": "^1.0",
  5855. "symfony/polyfill-php80": "^1.16"
  5856. },
  5857. "conflict": {
  5858. "egulias/email-validator": "~3.0.0",
  5859. "phpdocumentor/reflection-docblock": "<3.2.2",
  5860. "phpdocumentor/type-resolver": "<1.4.0",
  5861. "symfony/mailer": "<4.4"
  5862. },
  5863. "require-dev": {
  5864. "egulias/email-validator": "^2.1.10|^3.1",
  5865. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5866. "symfony/dependency-injection": "^4.4|^5.0",
  5867. "symfony/property-access": "^4.4|^5.1",
  5868. "symfony/property-info": "^4.4|^5.1",
  5869. "symfony/serializer": "^5.2"
  5870. },
  5871. "type": "library",
  5872. "autoload": {
  5873. "psr-4": {
  5874. "Symfony\\Component\\Mime\\": ""
  5875. },
  5876. "exclude-from-classmap": [
  5877. "/Tests/"
  5878. ]
  5879. },
  5880. "notification-url": "https://packagist.org/downloads/",
  5881. "license": [
  5882. "MIT"
  5883. ],
  5884. "authors": [
  5885. {
  5886. "name": "Fabien Potencier",
  5887. "email": "fabien@symfony.com"
  5888. },
  5889. {
  5890. "name": "Symfony Community",
  5891. "homepage": "https://symfony.com/contributors"
  5892. }
  5893. ],
  5894. "description": "Allows manipulating MIME messages",
  5895. "homepage": "https://symfony.com",
  5896. "keywords": [
  5897. "mime",
  5898. "mime-type"
  5899. ],
  5900. "support": {
  5901. "source": "https://github.com/symfony/mime/tree/v5.3.4"
  5902. },
  5903. "funding": [
  5904. {
  5905. "url": "https://symfony.com/sponsor",
  5906. "type": "custom"
  5907. },
  5908. {
  5909. "url": "https://github.com/fabpot",
  5910. "type": "github"
  5911. },
  5912. {
  5913. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5914. "type": "tidelift"
  5915. }
  5916. ],
  5917. "time": "2021-07-21T12:40:44+00:00"
  5918. },
  5919. {
  5920. "name": "symfony/polyfill-ctype",
  5921. "version": "v1.23.0",
  5922. "source": {
  5923. "type": "git",
  5924. "url": "https://github.com/symfony/polyfill-ctype.git",
  5925. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce"
  5926. },
  5927. "dist": {
  5928. "type": "zip",
  5929. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5930. "reference": "46cd95797e9df938fdd2b03693b5fca5e64b01ce",
  5931. "shasum": "",
  5932. "mirrors": [
  5933. {
  5934. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5935. "preferred": true
  5936. }
  5937. ]
  5938. },
  5939. "require": {
  5940. "php": ">=7.1"
  5941. },
  5942. "suggest": {
  5943. "ext-ctype": "For best performance"
  5944. },
  5945. "type": "library",
  5946. "extra": {
  5947. "branch-alias": {
  5948. "dev-main": "1.23-dev"
  5949. },
  5950. "thanks": {
  5951. "name": "symfony/polyfill",
  5952. "url": "https://github.com/symfony/polyfill"
  5953. }
  5954. },
  5955. "autoload": {
  5956. "psr-4": {
  5957. "Symfony\\Polyfill\\Ctype\\": ""
  5958. },
  5959. "files": [
  5960. "bootstrap.php"
  5961. ]
  5962. },
  5963. "notification-url": "https://packagist.org/downloads/",
  5964. "license": [
  5965. "MIT"
  5966. ],
  5967. "authors": [
  5968. {
  5969. "name": "Gert de Pagter",
  5970. "email": "BackEndTea@gmail.com"
  5971. },
  5972. {
  5973. "name": "Symfony Community",
  5974. "homepage": "https://symfony.com/contributors"
  5975. }
  5976. ],
  5977. "description": "Symfony polyfill for ctype functions",
  5978. "homepage": "https://symfony.com",
  5979. "keywords": [
  5980. "compatibility",
  5981. "ctype",
  5982. "polyfill",
  5983. "portable"
  5984. ],
  5985. "support": {
  5986. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.23.0"
  5987. },
  5988. "funding": [
  5989. {
  5990. "url": "https://symfony.com/sponsor",
  5991. "type": "custom"
  5992. },
  5993. {
  5994. "url": "https://github.com/fabpot",
  5995. "type": "github"
  5996. },
  5997. {
  5998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5999. "type": "tidelift"
  6000. }
  6001. ],
  6002. "time": "2021-02-19T12:13:01+00:00"
  6003. },
  6004. {
  6005. "name": "symfony/polyfill-iconv",
  6006. "version": "v1.23.0",
  6007. "source": {
  6008. "type": "git",
  6009. "url": "https://github.com/symfony/polyfill-iconv.git",
  6010. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933"
  6011. },
  6012. "dist": {
  6013. "type": "zip",
  6014. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  6015. "reference": "63b5bb7db83e5673936d6e3b8b3e022ff6474933",
  6016. "shasum": "",
  6017. "mirrors": [
  6018. {
  6019. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6020. "preferred": true
  6021. }
  6022. ]
  6023. },
  6024. "require": {
  6025. "php": ">=7.1"
  6026. },
  6027. "suggest": {
  6028. "ext-iconv": "For best performance"
  6029. },
  6030. "type": "library",
  6031. "extra": {
  6032. "branch-alias": {
  6033. "dev-main": "1.23-dev"
  6034. },
  6035. "thanks": {
  6036. "name": "symfony/polyfill",
  6037. "url": "https://github.com/symfony/polyfill"
  6038. }
  6039. },
  6040. "autoload": {
  6041. "psr-4": {
  6042. "Symfony\\Polyfill\\Iconv\\": ""
  6043. },
  6044. "files": [
  6045. "bootstrap.php"
  6046. ]
  6047. },
  6048. "notification-url": "https://packagist.org/downloads/",
  6049. "license": [
  6050. "MIT"
  6051. ],
  6052. "authors": [
  6053. {
  6054. "name": "Nicolas Grekas",
  6055. "email": "p@tchwork.com"
  6056. },
  6057. {
  6058. "name": "Symfony Community",
  6059. "homepage": "https://symfony.com/contributors"
  6060. }
  6061. ],
  6062. "description": "Symfony polyfill for the Iconv extension",
  6063. "homepage": "https://symfony.com",
  6064. "keywords": [
  6065. "compatibility",
  6066. "iconv",
  6067. "polyfill",
  6068. "portable",
  6069. "shim"
  6070. ],
  6071. "support": {
  6072. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.23.0"
  6073. },
  6074. "funding": [
  6075. {
  6076. "url": "https://symfony.com/sponsor",
  6077. "type": "custom"
  6078. },
  6079. {
  6080. "url": "https://github.com/fabpot",
  6081. "type": "github"
  6082. },
  6083. {
  6084. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6085. "type": "tidelift"
  6086. }
  6087. ],
  6088. "time": "2021-05-27T09:27:20+00:00"
  6089. },
  6090. {
  6091. "name": "symfony/polyfill-intl-grapheme",
  6092. "version": "v1.23.1",
  6093. "source": {
  6094. "type": "git",
  6095. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6096. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535"
  6097. },
  6098. "dist": {
  6099. "type": "zip",
  6100. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/16880ba9c5ebe3642d1995ab866db29270b36535",
  6101. "reference": "16880ba9c5ebe3642d1995ab866db29270b36535",
  6102. "shasum": "",
  6103. "mirrors": [
  6104. {
  6105. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6106. "preferred": true
  6107. }
  6108. ]
  6109. },
  6110. "require": {
  6111. "php": ">=7.1"
  6112. },
  6113. "suggest": {
  6114. "ext-intl": "For best performance"
  6115. },
  6116. "type": "library",
  6117. "extra": {
  6118. "branch-alias": {
  6119. "dev-main": "1.23-dev"
  6120. },
  6121. "thanks": {
  6122. "name": "symfony/polyfill",
  6123. "url": "https://github.com/symfony/polyfill"
  6124. }
  6125. },
  6126. "autoload": {
  6127. "psr-4": {
  6128. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6129. },
  6130. "files": [
  6131. "bootstrap.php"
  6132. ]
  6133. },
  6134. "notification-url": "https://packagist.org/downloads/",
  6135. "license": [
  6136. "MIT"
  6137. ],
  6138. "authors": [
  6139. {
  6140. "name": "Nicolas Grekas",
  6141. "email": "p@tchwork.com"
  6142. },
  6143. {
  6144. "name": "Symfony Community",
  6145. "homepage": "https://symfony.com/contributors"
  6146. }
  6147. ],
  6148. "description": "Symfony polyfill for intl's grapheme_* functions",
  6149. "homepage": "https://symfony.com",
  6150. "keywords": [
  6151. "compatibility",
  6152. "grapheme",
  6153. "intl",
  6154. "polyfill",
  6155. "portable",
  6156. "shim"
  6157. ],
  6158. "support": {
  6159. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.23.1"
  6160. },
  6161. "funding": [
  6162. {
  6163. "url": "https://symfony.com/sponsor",
  6164. "type": "custom"
  6165. },
  6166. {
  6167. "url": "https://github.com/fabpot",
  6168. "type": "github"
  6169. },
  6170. {
  6171. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6172. "type": "tidelift"
  6173. }
  6174. ],
  6175. "time": "2021-05-27T12:26:48+00:00"
  6176. },
  6177. {
  6178. "name": "symfony/polyfill-intl-idn",
  6179. "version": "v1.23.0",
  6180. "source": {
  6181. "type": "git",
  6182. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6183. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65"
  6184. },
  6185. "dist": {
  6186. "type": "zip",
  6187. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/65bd267525e82759e7d8c4e8ceea44f398838e65",
  6188. "reference": "65bd267525e82759e7d8c4e8ceea44f398838e65",
  6189. "shasum": "",
  6190. "mirrors": [
  6191. {
  6192. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6193. "preferred": true
  6194. }
  6195. ]
  6196. },
  6197. "require": {
  6198. "php": ">=7.1",
  6199. "symfony/polyfill-intl-normalizer": "^1.10",
  6200. "symfony/polyfill-php72": "^1.10"
  6201. },
  6202. "suggest": {
  6203. "ext-intl": "For best performance"
  6204. },
  6205. "type": "library",
  6206. "extra": {
  6207. "branch-alias": {
  6208. "dev-main": "1.23-dev"
  6209. },
  6210. "thanks": {
  6211. "name": "symfony/polyfill",
  6212. "url": "https://github.com/symfony/polyfill"
  6213. }
  6214. },
  6215. "autoload": {
  6216. "psr-4": {
  6217. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6218. },
  6219. "files": [
  6220. "bootstrap.php"
  6221. ]
  6222. },
  6223. "notification-url": "https://packagist.org/downloads/",
  6224. "license": [
  6225. "MIT"
  6226. ],
  6227. "authors": [
  6228. {
  6229. "name": "Laurent Bassin",
  6230. "email": "laurent@bassin.info"
  6231. },
  6232. {
  6233. "name": "Trevor Rowbotham",
  6234. "email": "trevor.rowbotham@pm.me"
  6235. },
  6236. {
  6237. "name": "Symfony Community",
  6238. "homepage": "https://symfony.com/contributors"
  6239. }
  6240. ],
  6241. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6242. "homepage": "https://symfony.com",
  6243. "keywords": [
  6244. "compatibility",
  6245. "idn",
  6246. "intl",
  6247. "polyfill",
  6248. "portable",
  6249. "shim"
  6250. ],
  6251. "support": {
  6252. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.23.0"
  6253. },
  6254. "funding": [
  6255. {
  6256. "url": "https://symfony.com/sponsor",
  6257. "type": "custom"
  6258. },
  6259. {
  6260. "url": "https://github.com/fabpot",
  6261. "type": "github"
  6262. },
  6263. {
  6264. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6265. "type": "tidelift"
  6266. }
  6267. ],
  6268. "time": "2021-05-27T09:27:20+00:00"
  6269. },
  6270. {
  6271. "name": "symfony/polyfill-intl-normalizer",
  6272. "version": "v1.23.0",
  6273. "source": {
  6274. "type": "git",
  6275. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6276. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8"
  6277. },
  6278. "dist": {
  6279. "type": "zip",
  6280. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6281. "reference": "8590a5f561694770bdcd3f9b5c69dde6945028e8",
  6282. "shasum": "",
  6283. "mirrors": [
  6284. {
  6285. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6286. "preferred": true
  6287. }
  6288. ]
  6289. },
  6290. "require": {
  6291. "php": ">=7.1"
  6292. },
  6293. "suggest": {
  6294. "ext-intl": "For best performance"
  6295. },
  6296. "type": "library",
  6297. "extra": {
  6298. "branch-alias": {
  6299. "dev-main": "1.23-dev"
  6300. },
  6301. "thanks": {
  6302. "name": "symfony/polyfill",
  6303. "url": "https://github.com/symfony/polyfill"
  6304. }
  6305. },
  6306. "autoload": {
  6307. "psr-4": {
  6308. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6309. },
  6310. "files": [
  6311. "bootstrap.php"
  6312. ],
  6313. "classmap": [
  6314. "Resources/stubs"
  6315. ]
  6316. },
  6317. "notification-url": "https://packagist.org/downloads/",
  6318. "license": [
  6319. "MIT"
  6320. ],
  6321. "authors": [
  6322. {
  6323. "name": "Nicolas Grekas",
  6324. "email": "p@tchwork.com"
  6325. },
  6326. {
  6327. "name": "Symfony Community",
  6328. "homepage": "https://symfony.com/contributors"
  6329. }
  6330. ],
  6331. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6332. "homepage": "https://symfony.com",
  6333. "keywords": [
  6334. "compatibility",
  6335. "intl",
  6336. "normalizer",
  6337. "polyfill",
  6338. "portable",
  6339. "shim"
  6340. ],
  6341. "support": {
  6342. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.23.0"
  6343. },
  6344. "funding": [
  6345. {
  6346. "url": "https://symfony.com/sponsor",
  6347. "type": "custom"
  6348. },
  6349. {
  6350. "url": "https://github.com/fabpot",
  6351. "type": "github"
  6352. },
  6353. {
  6354. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6355. "type": "tidelift"
  6356. }
  6357. ],
  6358. "time": "2021-02-19T12:13:01+00:00"
  6359. },
  6360. {
  6361. "name": "symfony/polyfill-mbstring",
  6362. "version": "v1.23.1",
  6363. "source": {
  6364. "type": "git",
  6365. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6366. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6"
  6367. },
  6368. "dist": {
  6369. "type": "zip",
  6370. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9174a3d80210dca8daa7f31fec659150bbeabfc6",
  6371. "reference": "9174a3d80210dca8daa7f31fec659150bbeabfc6",
  6372. "shasum": "",
  6373. "mirrors": [
  6374. {
  6375. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6376. "preferred": true
  6377. }
  6378. ]
  6379. },
  6380. "require": {
  6381. "php": ">=7.1"
  6382. },
  6383. "suggest": {
  6384. "ext-mbstring": "For best performance"
  6385. },
  6386. "type": "library",
  6387. "extra": {
  6388. "branch-alias": {
  6389. "dev-main": "1.23-dev"
  6390. },
  6391. "thanks": {
  6392. "name": "symfony/polyfill",
  6393. "url": "https://github.com/symfony/polyfill"
  6394. }
  6395. },
  6396. "autoload": {
  6397. "psr-4": {
  6398. "Symfony\\Polyfill\\Mbstring\\": ""
  6399. },
  6400. "files": [
  6401. "bootstrap.php"
  6402. ]
  6403. },
  6404. "notification-url": "https://packagist.org/downloads/",
  6405. "license": [
  6406. "MIT"
  6407. ],
  6408. "authors": [
  6409. {
  6410. "name": "Nicolas Grekas",
  6411. "email": "p@tchwork.com"
  6412. },
  6413. {
  6414. "name": "Symfony Community",
  6415. "homepage": "https://symfony.com/contributors"
  6416. }
  6417. ],
  6418. "description": "Symfony polyfill for the Mbstring extension",
  6419. "homepage": "https://symfony.com",
  6420. "keywords": [
  6421. "compatibility",
  6422. "mbstring",
  6423. "polyfill",
  6424. "portable",
  6425. "shim"
  6426. ],
  6427. "support": {
  6428. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.23.1"
  6429. },
  6430. "funding": [
  6431. {
  6432. "url": "https://symfony.com/sponsor",
  6433. "type": "custom"
  6434. },
  6435. {
  6436. "url": "https://github.com/fabpot",
  6437. "type": "github"
  6438. },
  6439. {
  6440. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6441. "type": "tidelift"
  6442. }
  6443. ],
  6444. "time": "2021-05-27T12:26:48+00:00"
  6445. },
  6446. {
  6447. "name": "symfony/polyfill-php56",
  6448. "version": "v1.20.0",
  6449. "source": {
  6450. "type": "git",
  6451. "url": "https://github.com/symfony/polyfill-php56.git",
  6452. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  6453. },
  6454. "dist": {
  6455. "type": "zip",
  6456. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6457. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6458. "shasum": "",
  6459. "mirrors": [
  6460. {
  6461. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6462. "preferred": true
  6463. }
  6464. ]
  6465. },
  6466. "require": {
  6467. "php": ">=7.1"
  6468. },
  6469. "type": "metapackage",
  6470. "extra": {
  6471. "branch-alias": {
  6472. "dev-main": "1.20-dev"
  6473. },
  6474. "thanks": {
  6475. "name": "symfony/polyfill",
  6476. "url": "https://github.com/symfony/polyfill"
  6477. }
  6478. },
  6479. "notification-url": "https://packagist.org/downloads/",
  6480. "license": [
  6481. "MIT"
  6482. ],
  6483. "authors": [
  6484. {
  6485. "name": "Nicolas Grekas",
  6486. "email": "p@tchwork.com"
  6487. },
  6488. {
  6489. "name": "Symfony Community",
  6490. "homepage": "https://symfony.com/contributors"
  6491. }
  6492. ],
  6493. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  6494. "homepage": "https://symfony.com",
  6495. "keywords": [
  6496. "compatibility",
  6497. "polyfill",
  6498. "portable",
  6499. "shim"
  6500. ],
  6501. "support": {
  6502. "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0"
  6503. },
  6504. "funding": [
  6505. {
  6506. "url": "https://symfony.com/sponsor",
  6507. "type": "custom"
  6508. },
  6509. {
  6510. "url": "https://github.com/fabpot",
  6511. "type": "github"
  6512. },
  6513. {
  6514. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6515. "type": "tidelift"
  6516. }
  6517. ],
  6518. "time": "2020-10-23T14:02:19+00:00"
  6519. },
  6520. {
  6521. "name": "symfony/polyfill-php72",
  6522. "version": "v1.23.0",
  6523. "source": {
  6524. "type": "git",
  6525. "url": "https://github.com/symfony/polyfill-php72.git",
  6526. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976"
  6527. },
  6528. "dist": {
  6529. "type": "zip",
  6530. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/9a142215a36a3888e30d0a9eeea9766764e96976",
  6531. "reference": "9a142215a36a3888e30d0a9eeea9766764e96976",
  6532. "shasum": "",
  6533. "mirrors": [
  6534. {
  6535. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6536. "preferred": true
  6537. }
  6538. ]
  6539. },
  6540. "require": {
  6541. "php": ">=7.1"
  6542. },
  6543. "type": "library",
  6544. "extra": {
  6545. "branch-alias": {
  6546. "dev-main": "1.23-dev"
  6547. },
  6548. "thanks": {
  6549. "name": "symfony/polyfill",
  6550. "url": "https://github.com/symfony/polyfill"
  6551. }
  6552. },
  6553. "autoload": {
  6554. "psr-4": {
  6555. "Symfony\\Polyfill\\Php72\\": ""
  6556. },
  6557. "files": [
  6558. "bootstrap.php"
  6559. ]
  6560. },
  6561. "notification-url": "https://packagist.org/downloads/",
  6562. "license": [
  6563. "MIT"
  6564. ],
  6565. "authors": [
  6566. {
  6567. "name": "Nicolas Grekas",
  6568. "email": "p@tchwork.com"
  6569. },
  6570. {
  6571. "name": "Symfony Community",
  6572. "homepage": "https://symfony.com/contributors"
  6573. }
  6574. ],
  6575. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  6576. "homepage": "https://symfony.com",
  6577. "keywords": [
  6578. "compatibility",
  6579. "polyfill",
  6580. "portable",
  6581. "shim"
  6582. ],
  6583. "support": {
  6584. "source": "https://github.com/symfony/polyfill-php72/tree/v1.23.0"
  6585. },
  6586. "funding": [
  6587. {
  6588. "url": "https://symfony.com/sponsor",
  6589. "type": "custom"
  6590. },
  6591. {
  6592. "url": "https://github.com/fabpot",
  6593. "type": "github"
  6594. },
  6595. {
  6596. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6597. "type": "tidelift"
  6598. }
  6599. ],
  6600. "time": "2021-05-27T09:17:38+00:00"
  6601. },
  6602. {
  6603. "name": "symfony/polyfill-php73",
  6604. "version": "v1.23.0",
  6605. "source": {
  6606. "type": "git",
  6607. "url": "https://github.com/symfony/polyfill-php73.git",
  6608. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010"
  6609. },
  6610. "dist": {
  6611. "type": "zip",
  6612. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6613. "reference": "fba8933c384d6476ab14fb7b8526e5287ca7e010",
  6614. "shasum": "",
  6615. "mirrors": [
  6616. {
  6617. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6618. "preferred": true
  6619. }
  6620. ]
  6621. },
  6622. "require": {
  6623. "php": ">=7.1"
  6624. },
  6625. "type": "library",
  6626. "extra": {
  6627. "branch-alias": {
  6628. "dev-main": "1.23-dev"
  6629. },
  6630. "thanks": {
  6631. "name": "symfony/polyfill",
  6632. "url": "https://github.com/symfony/polyfill"
  6633. }
  6634. },
  6635. "autoload": {
  6636. "psr-4": {
  6637. "Symfony\\Polyfill\\Php73\\": ""
  6638. },
  6639. "files": [
  6640. "bootstrap.php"
  6641. ],
  6642. "classmap": [
  6643. "Resources/stubs"
  6644. ]
  6645. },
  6646. "notification-url": "https://packagist.org/downloads/",
  6647. "license": [
  6648. "MIT"
  6649. ],
  6650. "authors": [
  6651. {
  6652. "name": "Nicolas Grekas",
  6653. "email": "p@tchwork.com"
  6654. },
  6655. {
  6656. "name": "Symfony Community",
  6657. "homepage": "https://symfony.com/contributors"
  6658. }
  6659. ],
  6660. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6661. "homepage": "https://symfony.com",
  6662. "keywords": [
  6663. "compatibility",
  6664. "polyfill",
  6665. "portable",
  6666. "shim"
  6667. ],
  6668. "support": {
  6669. "source": "https://github.com/symfony/polyfill-php73/tree/v1.23.0"
  6670. },
  6671. "funding": [
  6672. {
  6673. "url": "https://symfony.com/sponsor",
  6674. "type": "custom"
  6675. },
  6676. {
  6677. "url": "https://github.com/fabpot",
  6678. "type": "github"
  6679. },
  6680. {
  6681. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6682. "type": "tidelift"
  6683. }
  6684. ],
  6685. "time": "2021-02-19T12:13:01+00:00"
  6686. },
  6687. {
  6688. "name": "symfony/polyfill-php80",
  6689. "version": "v1.23.1",
  6690. "source": {
  6691. "type": "git",
  6692. "url": "https://github.com/symfony/polyfill-php80.git",
  6693. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be"
  6694. },
  6695. "dist": {
  6696. "type": "zip",
  6697. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/1100343ed1a92e3a38f9ae122fc0eb21602547be",
  6698. "reference": "1100343ed1a92e3a38f9ae122fc0eb21602547be",
  6699. "shasum": "",
  6700. "mirrors": [
  6701. {
  6702. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6703. "preferred": true
  6704. }
  6705. ]
  6706. },
  6707. "require": {
  6708. "php": ">=7.1"
  6709. },
  6710. "type": "library",
  6711. "extra": {
  6712. "branch-alias": {
  6713. "dev-main": "1.23-dev"
  6714. },
  6715. "thanks": {
  6716. "name": "symfony/polyfill",
  6717. "url": "https://github.com/symfony/polyfill"
  6718. }
  6719. },
  6720. "autoload": {
  6721. "psr-4": {
  6722. "Symfony\\Polyfill\\Php80\\": ""
  6723. },
  6724. "files": [
  6725. "bootstrap.php"
  6726. ],
  6727. "classmap": [
  6728. "Resources/stubs"
  6729. ]
  6730. },
  6731. "notification-url": "https://packagist.org/downloads/",
  6732. "license": [
  6733. "MIT"
  6734. ],
  6735. "authors": [
  6736. {
  6737. "name": "Ion Bazan",
  6738. "email": "ion.bazan@gmail.com"
  6739. },
  6740. {
  6741. "name": "Nicolas Grekas",
  6742. "email": "p@tchwork.com"
  6743. },
  6744. {
  6745. "name": "Symfony Community",
  6746. "homepage": "https://symfony.com/contributors"
  6747. }
  6748. ],
  6749. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6750. "homepage": "https://symfony.com",
  6751. "keywords": [
  6752. "compatibility",
  6753. "polyfill",
  6754. "portable",
  6755. "shim"
  6756. ],
  6757. "support": {
  6758. "source": "https://github.com/symfony/polyfill-php80/tree/v1.23.1"
  6759. },
  6760. "funding": [
  6761. {
  6762. "url": "https://symfony.com/sponsor",
  6763. "type": "custom"
  6764. },
  6765. {
  6766. "url": "https://github.com/fabpot",
  6767. "type": "github"
  6768. },
  6769. {
  6770. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6771. "type": "tidelift"
  6772. }
  6773. ],
  6774. "time": "2021-07-28T13:41:28+00:00"
  6775. },
  6776. {
  6777. "name": "symfony/process",
  6778. "version": "v5.3.4",
  6779. "source": {
  6780. "type": "git",
  6781. "url": "https://github.com/symfony/process.git",
  6782. "reference": "d16634ee55b895bd85ec714dadc58e4428ecf030"
  6783. },
  6784. "dist": {
  6785. "type": "zip",
  6786. "url": "https://api.github.com/repos/symfony/process/zipball/d16634ee55b895bd85ec714dadc58e4428ecf030",
  6787. "reference": "d16634ee55b895bd85ec714dadc58e4428ecf030",
  6788. "shasum": "",
  6789. "mirrors": [
  6790. {
  6791. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6792. "preferred": true
  6793. }
  6794. ]
  6795. },
  6796. "require": {
  6797. "php": ">=7.2.5",
  6798. "symfony/polyfill-php80": "^1.16"
  6799. },
  6800. "type": "library",
  6801. "autoload": {
  6802. "psr-4": {
  6803. "Symfony\\Component\\Process\\": ""
  6804. },
  6805. "exclude-from-classmap": [
  6806. "/Tests/"
  6807. ]
  6808. },
  6809. "notification-url": "https://packagist.org/downloads/",
  6810. "license": [
  6811. "MIT"
  6812. ],
  6813. "authors": [
  6814. {
  6815. "name": "Fabien Potencier",
  6816. "email": "fabien@symfony.com"
  6817. },
  6818. {
  6819. "name": "Symfony Community",
  6820. "homepage": "https://symfony.com/contributors"
  6821. }
  6822. ],
  6823. "description": "Executes commands in sub-processes",
  6824. "homepage": "https://symfony.com",
  6825. "support": {
  6826. "source": "https://github.com/symfony/process/tree/v5.3.4"
  6827. },
  6828. "funding": [
  6829. {
  6830. "url": "https://symfony.com/sponsor",
  6831. "type": "custom"
  6832. },
  6833. {
  6834. "url": "https://github.com/fabpot",
  6835. "type": "github"
  6836. },
  6837. {
  6838. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6839. "type": "tidelift"
  6840. }
  6841. ],
  6842. "time": "2021-07-23T15:54:19+00:00"
  6843. },
  6844. {
  6845. "name": "symfony/routing",
  6846. "version": "v5.3.4",
  6847. "source": {
  6848. "type": "git",
  6849. "url": "https://github.com/symfony/routing.git",
  6850. "reference": "0a35d2f57d73c46ab6d042ced783b81d09a624c4"
  6851. },
  6852. "dist": {
  6853. "type": "zip",
  6854. "url": "https://api.github.com/repos/symfony/routing/zipball/0a35d2f57d73c46ab6d042ced783b81d09a624c4",
  6855. "reference": "0a35d2f57d73c46ab6d042ced783b81d09a624c4",
  6856. "shasum": "",
  6857. "mirrors": [
  6858. {
  6859. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6860. "preferred": true
  6861. }
  6862. ]
  6863. },
  6864. "require": {
  6865. "php": ">=7.2.5",
  6866. "symfony/deprecation-contracts": "^2.1",
  6867. "symfony/polyfill-php80": "^1.16"
  6868. },
  6869. "conflict": {
  6870. "doctrine/annotations": "<1.12",
  6871. "symfony/config": "<5.3",
  6872. "symfony/dependency-injection": "<4.4",
  6873. "symfony/yaml": "<4.4"
  6874. },
  6875. "require-dev": {
  6876. "doctrine/annotations": "^1.12",
  6877. "psr/log": "^1|^2|^3",
  6878. "symfony/config": "^5.3",
  6879. "symfony/dependency-injection": "^4.4|^5.0",
  6880. "symfony/expression-language": "^4.4|^5.0",
  6881. "symfony/http-foundation": "^4.4|^5.0",
  6882. "symfony/yaml": "^4.4|^5.0"
  6883. },
  6884. "suggest": {
  6885. "symfony/config": "For using the all-in-one router or any loader",
  6886. "symfony/expression-language": "For using expression matching",
  6887. "symfony/http-foundation": "For using a Symfony Request object",
  6888. "symfony/yaml": "For using the YAML loader"
  6889. },
  6890. "type": "library",
  6891. "autoload": {
  6892. "psr-4": {
  6893. "Symfony\\Component\\Routing\\": ""
  6894. },
  6895. "exclude-from-classmap": [
  6896. "/Tests/"
  6897. ]
  6898. },
  6899. "notification-url": "https://packagist.org/downloads/",
  6900. "license": [
  6901. "MIT"
  6902. ],
  6903. "authors": [
  6904. {
  6905. "name": "Fabien Potencier",
  6906. "email": "fabien@symfony.com"
  6907. },
  6908. {
  6909. "name": "Symfony Community",
  6910. "homepage": "https://symfony.com/contributors"
  6911. }
  6912. ],
  6913. "description": "Maps an HTTP request to a set of configuration variables",
  6914. "homepage": "https://symfony.com",
  6915. "keywords": [
  6916. "router",
  6917. "routing",
  6918. "uri",
  6919. "url"
  6920. ],
  6921. "support": {
  6922. "source": "https://github.com/symfony/routing/tree/v5.3.4"
  6923. },
  6924. "funding": [
  6925. {
  6926. "url": "https://symfony.com/sponsor",
  6927. "type": "custom"
  6928. },
  6929. {
  6930. "url": "https://github.com/fabpot",
  6931. "type": "github"
  6932. },
  6933. {
  6934. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6935. "type": "tidelift"
  6936. }
  6937. ],
  6938. "time": "2021-07-23T15:55:36+00:00"
  6939. },
  6940. {
  6941. "name": "symfony/service-contracts",
  6942. "version": "v2.4.0",
  6943. "source": {
  6944. "type": "git",
  6945. "url": "https://github.com/symfony/service-contracts.git",
  6946. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb"
  6947. },
  6948. "dist": {
  6949. "type": "zip",
  6950. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  6951. "reference": "f040a30e04b57fbcc9c6cbcf4dbaa96bd318b9bb",
  6952. "shasum": "",
  6953. "mirrors": [
  6954. {
  6955. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6956. "preferred": true
  6957. }
  6958. ]
  6959. },
  6960. "require": {
  6961. "php": ">=7.2.5",
  6962. "psr/container": "^1.1"
  6963. },
  6964. "suggest": {
  6965. "symfony/service-implementation": ""
  6966. },
  6967. "type": "library",
  6968. "extra": {
  6969. "branch-alias": {
  6970. "dev-main": "2.4-dev"
  6971. },
  6972. "thanks": {
  6973. "name": "symfony/contracts",
  6974. "url": "https://github.com/symfony/contracts"
  6975. }
  6976. },
  6977. "autoload": {
  6978. "psr-4": {
  6979. "Symfony\\Contracts\\Service\\": ""
  6980. }
  6981. },
  6982. "notification-url": "https://packagist.org/downloads/",
  6983. "license": [
  6984. "MIT"
  6985. ],
  6986. "authors": [
  6987. {
  6988. "name": "Nicolas Grekas",
  6989. "email": "p@tchwork.com"
  6990. },
  6991. {
  6992. "name": "Symfony Community",
  6993. "homepage": "https://symfony.com/contributors"
  6994. }
  6995. ],
  6996. "description": "Generic abstractions related to writing services",
  6997. "homepage": "https://symfony.com",
  6998. "keywords": [
  6999. "abstractions",
  7000. "contracts",
  7001. "decoupling",
  7002. "interfaces",
  7003. "interoperability",
  7004. "standards"
  7005. ],
  7006. "support": {
  7007. "source": "https://github.com/symfony/service-contracts/tree/v2.4.0"
  7008. },
  7009. "funding": [
  7010. {
  7011. "url": "https://symfony.com/sponsor",
  7012. "type": "custom"
  7013. },
  7014. {
  7015. "url": "https://github.com/fabpot",
  7016. "type": "github"
  7017. },
  7018. {
  7019. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7020. "type": "tidelift"
  7021. }
  7022. ],
  7023. "time": "2021-04-01T10:43:52+00:00"
  7024. },
  7025. {
  7026. "name": "symfony/string",
  7027. "version": "v5.3.3",
  7028. "source": {
  7029. "type": "git",
  7030. "url": "https://github.com/symfony/string.git",
  7031. "reference": "bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1"
  7032. },
  7033. "dist": {
  7034. "type": "zip",
  7035. "url": "https://api.github.com/repos/symfony/string/zipball/bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1",
  7036. "reference": "bd53358e3eccec6a670b5f33ab680d8dbe1d4ae1",
  7037. "shasum": "",
  7038. "mirrors": [
  7039. {
  7040. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7041. "preferred": true
  7042. }
  7043. ]
  7044. },
  7045. "require": {
  7046. "php": ">=7.2.5",
  7047. "symfony/polyfill-ctype": "~1.8",
  7048. "symfony/polyfill-intl-grapheme": "~1.0",
  7049. "symfony/polyfill-intl-normalizer": "~1.0",
  7050. "symfony/polyfill-mbstring": "~1.0",
  7051. "symfony/polyfill-php80": "~1.15"
  7052. },
  7053. "require-dev": {
  7054. "symfony/error-handler": "^4.4|^5.0",
  7055. "symfony/http-client": "^4.4|^5.0",
  7056. "symfony/translation-contracts": "^1.1|^2",
  7057. "symfony/var-exporter": "^4.4|^5.0"
  7058. },
  7059. "type": "library",
  7060. "autoload": {
  7061. "psr-4": {
  7062. "Symfony\\Component\\String\\": ""
  7063. },
  7064. "files": [
  7065. "Resources/functions.php"
  7066. ],
  7067. "exclude-from-classmap": [
  7068. "/Tests/"
  7069. ]
  7070. },
  7071. "notification-url": "https://packagist.org/downloads/",
  7072. "license": [
  7073. "MIT"
  7074. ],
  7075. "authors": [
  7076. {
  7077. "name": "Nicolas Grekas",
  7078. "email": "p@tchwork.com"
  7079. },
  7080. {
  7081. "name": "Symfony Community",
  7082. "homepage": "https://symfony.com/contributors"
  7083. }
  7084. ],
  7085. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7086. "homepage": "https://symfony.com",
  7087. "keywords": [
  7088. "grapheme",
  7089. "i18n",
  7090. "string",
  7091. "unicode",
  7092. "utf-8",
  7093. "utf8"
  7094. ],
  7095. "support": {
  7096. "source": "https://github.com/symfony/string/tree/v5.3.3"
  7097. },
  7098. "funding": [
  7099. {
  7100. "url": "https://symfony.com/sponsor",
  7101. "type": "custom"
  7102. },
  7103. {
  7104. "url": "https://github.com/fabpot",
  7105. "type": "github"
  7106. },
  7107. {
  7108. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7109. "type": "tidelift"
  7110. }
  7111. ],
  7112. "time": "2021-06-27T11:44:38+00:00"
  7113. },
  7114. {
  7115. "name": "symfony/translation",
  7116. "version": "v5.3.4",
  7117. "source": {
  7118. "type": "git",
  7119. "url": "https://github.com/symfony/translation.git",
  7120. "reference": "d89ad7292932c2699cbe4af98d72c5c6bbc504c1"
  7121. },
  7122. "dist": {
  7123. "type": "zip",
  7124. "url": "https://api.github.com/repos/symfony/translation/zipball/d89ad7292932c2699cbe4af98d72c5c6bbc504c1",
  7125. "reference": "d89ad7292932c2699cbe4af98d72c5c6bbc504c1",
  7126. "shasum": "",
  7127. "mirrors": [
  7128. {
  7129. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7130. "preferred": true
  7131. }
  7132. ]
  7133. },
  7134. "require": {
  7135. "php": ">=7.2.5",
  7136. "symfony/deprecation-contracts": "^2.1",
  7137. "symfony/polyfill-mbstring": "~1.0",
  7138. "symfony/polyfill-php80": "^1.16",
  7139. "symfony/translation-contracts": "^2.3"
  7140. },
  7141. "conflict": {
  7142. "symfony/config": "<4.4",
  7143. "symfony/dependency-injection": "<5.0",
  7144. "symfony/http-kernel": "<5.0",
  7145. "symfony/twig-bundle": "<5.0",
  7146. "symfony/yaml": "<4.4"
  7147. },
  7148. "provide": {
  7149. "symfony/translation-implementation": "2.3"
  7150. },
  7151. "require-dev": {
  7152. "psr/log": "^1|^2|^3",
  7153. "symfony/config": "^4.4|^5.0",
  7154. "symfony/console": "^4.4|^5.0",
  7155. "symfony/dependency-injection": "^5.0",
  7156. "symfony/finder": "^4.4|^5.0",
  7157. "symfony/http-kernel": "^5.0",
  7158. "symfony/intl": "^4.4|^5.0",
  7159. "symfony/polyfill-intl-icu": "^1.21",
  7160. "symfony/service-contracts": "^1.1.2|^2",
  7161. "symfony/yaml": "^4.4|^5.0"
  7162. },
  7163. "suggest": {
  7164. "psr/log-implementation": "To use logging capability in translator",
  7165. "symfony/config": "",
  7166. "symfony/yaml": ""
  7167. },
  7168. "type": "library",
  7169. "autoload": {
  7170. "files": [
  7171. "Resources/functions.php"
  7172. ],
  7173. "psr-4": {
  7174. "Symfony\\Component\\Translation\\": ""
  7175. },
  7176. "exclude-from-classmap": [
  7177. "/Tests/"
  7178. ]
  7179. },
  7180. "notification-url": "https://packagist.org/downloads/",
  7181. "license": [
  7182. "MIT"
  7183. ],
  7184. "authors": [
  7185. {
  7186. "name": "Fabien Potencier",
  7187. "email": "fabien@symfony.com"
  7188. },
  7189. {
  7190. "name": "Symfony Community",
  7191. "homepage": "https://symfony.com/contributors"
  7192. }
  7193. ],
  7194. "description": "Provides tools to internationalize your application",
  7195. "homepage": "https://symfony.com",
  7196. "support": {
  7197. "source": "https://github.com/symfony/translation/tree/v5.3.4"
  7198. },
  7199. "funding": [
  7200. {
  7201. "url": "https://symfony.com/sponsor",
  7202. "type": "custom"
  7203. },
  7204. {
  7205. "url": "https://github.com/fabpot",
  7206. "type": "github"
  7207. },
  7208. {
  7209. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7210. "type": "tidelift"
  7211. }
  7212. ],
  7213. "time": "2021-07-25T09:39:16+00:00"
  7214. },
  7215. {
  7216. "name": "symfony/translation-contracts",
  7217. "version": "v2.4.0",
  7218. "source": {
  7219. "type": "git",
  7220. "url": "https://github.com/symfony/translation-contracts.git",
  7221. "reference": "95c812666f3e91db75385749fe219c5e494c7f95"
  7222. },
  7223. "dist": {
  7224. "type": "zip",
  7225. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/95c812666f3e91db75385749fe219c5e494c7f95",
  7226. "reference": "95c812666f3e91db75385749fe219c5e494c7f95",
  7227. "shasum": "",
  7228. "mirrors": [
  7229. {
  7230. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7231. "preferred": true
  7232. }
  7233. ]
  7234. },
  7235. "require": {
  7236. "php": ">=7.2.5"
  7237. },
  7238. "suggest": {
  7239. "symfony/translation-implementation": ""
  7240. },
  7241. "type": "library",
  7242. "extra": {
  7243. "branch-alias": {
  7244. "dev-main": "2.4-dev"
  7245. },
  7246. "thanks": {
  7247. "name": "symfony/contracts",
  7248. "url": "https://github.com/symfony/contracts"
  7249. }
  7250. },
  7251. "autoload": {
  7252. "psr-4": {
  7253. "Symfony\\Contracts\\Translation\\": ""
  7254. }
  7255. },
  7256. "notification-url": "https://packagist.org/downloads/",
  7257. "license": [
  7258. "MIT"
  7259. ],
  7260. "authors": [
  7261. {
  7262. "name": "Nicolas Grekas",
  7263. "email": "p@tchwork.com"
  7264. },
  7265. {
  7266. "name": "Symfony Community",
  7267. "homepage": "https://symfony.com/contributors"
  7268. }
  7269. ],
  7270. "description": "Generic abstractions related to translation",
  7271. "homepage": "https://symfony.com",
  7272. "keywords": [
  7273. "abstractions",
  7274. "contracts",
  7275. "decoupling",
  7276. "interfaces",
  7277. "interoperability",
  7278. "standards"
  7279. ],
  7280. "support": {
  7281. "source": "https://github.com/symfony/translation-contracts/tree/v2.4.0"
  7282. },
  7283. "funding": [
  7284. {
  7285. "url": "https://symfony.com/sponsor",
  7286. "type": "custom"
  7287. },
  7288. {
  7289. "url": "https://github.com/fabpot",
  7290. "type": "github"
  7291. },
  7292. {
  7293. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7294. "type": "tidelift"
  7295. }
  7296. ],
  7297. "time": "2021-03-23T23:28:01+00:00"
  7298. },
  7299. {
  7300. "name": "symfony/var-dumper",
  7301. "version": "v5.3.6",
  7302. "source": {
  7303. "type": "git",
  7304. "url": "https://github.com/symfony/var-dumper.git",
  7305. "reference": "3dd8ddd1e260e58ecc61bb78da3b6584b3bfcba0"
  7306. },
  7307. "dist": {
  7308. "type": "zip",
  7309. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/3dd8ddd1e260e58ecc61bb78da3b6584b3bfcba0",
  7310. "reference": "3dd8ddd1e260e58ecc61bb78da3b6584b3bfcba0",
  7311. "shasum": "",
  7312. "mirrors": [
  7313. {
  7314. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7315. "preferred": true
  7316. }
  7317. ]
  7318. },
  7319. "require": {
  7320. "php": ">=7.2.5",
  7321. "symfony/polyfill-mbstring": "~1.0",
  7322. "symfony/polyfill-php80": "^1.16"
  7323. },
  7324. "conflict": {
  7325. "phpunit/phpunit": "<5.4.3",
  7326. "symfony/console": "<4.4"
  7327. },
  7328. "require-dev": {
  7329. "ext-iconv": "*",
  7330. "symfony/console": "^4.4|^5.0",
  7331. "symfony/process": "^4.4|^5.0",
  7332. "twig/twig": "^2.13|^3.0.4"
  7333. },
  7334. "suggest": {
  7335. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7336. "ext-intl": "To show region name in time zone dump",
  7337. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7338. },
  7339. "bin": [
  7340. "Resources/bin/var-dump-server"
  7341. ],
  7342. "type": "library",
  7343. "autoload": {
  7344. "files": [
  7345. "Resources/functions/dump.php"
  7346. ],
  7347. "psr-4": {
  7348. "Symfony\\Component\\VarDumper\\": ""
  7349. },
  7350. "exclude-from-classmap": [
  7351. "/Tests/"
  7352. ]
  7353. },
  7354. "notification-url": "https://packagist.org/downloads/",
  7355. "license": [
  7356. "MIT"
  7357. ],
  7358. "authors": [
  7359. {
  7360. "name": "Nicolas Grekas",
  7361. "email": "p@tchwork.com"
  7362. },
  7363. {
  7364. "name": "Symfony Community",
  7365. "homepage": "https://symfony.com/contributors"
  7366. }
  7367. ],
  7368. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7369. "homepage": "https://symfony.com",
  7370. "keywords": [
  7371. "debug",
  7372. "dump"
  7373. ],
  7374. "support": {
  7375. "source": "https://github.com/symfony/var-dumper/tree/v5.3.6"
  7376. },
  7377. "funding": [
  7378. {
  7379. "url": "https://symfony.com/sponsor",
  7380. "type": "custom"
  7381. },
  7382. {
  7383. "url": "https://github.com/fabpot",
  7384. "type": "github"
  7385. },
  7386. {
  7387. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7388. "type": "tidelift"
  7389. }
  7390. ],
  7391. "time": "2021-07-27T01:56:02+00:00"
  7392. },
  7393. {
  7394. "name": "tencent/tls-sig-api-v2",
  7395. "version": "v1.0",
  7396. "source": {
  7397. "type": "git",
  7398. "url": "https://github.com/tencentyun/tls-sig-api-v2-php.git",
  7399. "reference": "af947437779ac6f18233e24c3e12ad5dae866a9f"
  7400. },
  7401. "dist": {
  7402. "type": "zip",
  7403. "url": "https://api.github.com/repos/tencentyun/tls-sig-api-v2-php/zipball/af947437779ac6f18233e24c3e12ad5dae866a9f",
  7404. "reference": "af947437779ac6f18233e24c3e12ad5dae866a9f",
  7405. "shasum": "",
  7406. "mirrors": [
  7407. {
  7408. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7409. "preferred": true
  7410. }
  7411. ]
  7412. },
  7413. "require": {
  7414. "php": ">=5.3.0"
  7415. },
  7416. "type": "library",
  7417. "autoload": {
  7418. "psr-4": {
  7419. "Tencent\\": "src/"
  7420. }
  7421. },
  7422. "notification-url": "https://packagist.org/downloads/",
  7423. "license": [
  7424. "MIT"
  7425. ],
  7426. "authors": [
  7427. {
  7428. "name": "weijunyi",
  7429. "email": "weijunyi@tencent.com",
  7430. "role": "Developer"
  7431. }
  7432. ],
  7433. "description": "tls-sig-api-v2 适用于腾讯云通信生成用户账号签名。",
  7434. "homepage": "https://github.com/tencentyun/tls-sig-api-v2-php",
  7435. "keywords": [
  7436. "im",
  7437. "tencent"
  7438. ],
  7439. "support": {
  7440. "issues": "https://github.com/tencentyun/tls-sig-api-v2-php/issues",
  7441. "source": "https://github.com/tencentyun/tls-sig-api-v2-php/tree/v1.0"
  7442. },
  7443. "time": "2019-06-20T08:42:03+00:00"
  7444. },
  7445. {
  7446. "name": "tencentcloud/tencentcloud-sdk-php",
  7447. "version": "3.0.447",
  7448. "source": {
  7449. "type": "git",
  7450. "url": "https://github.com/TencentCloud/tencentcloud-sdk-php.git",
  7451. "reference": "e8e39b4cf6550c4c9097120ef35ad567b017fe8f"
  7452. },
  7453. "dist": {
  7454. "type": "zip",
  7455. "url": "https://api.github.com/repos/TencentCloud/tencentcloud-sdk-php/zipball/e8e39b4cf6550c4c9097120ef35ad567b017fe8f",
  7456. "reference": "e8e39b4cf6550c4c9097120ef35ad567b017fe8f",
  7457. "shasum": "",
  7458. "mirrors": [
  7459. {
  7460. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7461. "preferred": true
  7462. }
  7463. ]
  7464. },
  7465. "require": {
  7466. "guzzlehttp/guzzle": "^6.3 || ^7.0.1",
  7467. "guzzlehttp/psr7": "^1.4",
  7468. "php": ">=5.6.0"
  7469. },
  7470. "type": "library",
  7471. "autoload": {
  7472. "classmap": [
  7473. "src/QcloudApi/QcloudApi.php"
  7474. ],
  7475. "psr-4": {
  7476. "TencentCloud\\": "./src/TencentCloud"
  7477. }
  7478. },
  7479. "notification-url": "https://packagist.org/downloads/",
  7480. "license": [
  7481. "Apache-2.0"
  7482. ],
  7483. "authors": [
  7484. {
  7485. "name": "coolli",
  7486. "email": "tencentcloudapi@tencent.com",
  7487. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  7488. "role": "Developer"
  7489. }
  7490. ],
  7491. "description": "TencentCloudApi php sdk",
  7492. "homepage": "https://github.com/TencentCloud/tencentcloud-sdk-php",
  7493. "support": {
  7494. "issues": "https://github.com/TencentCloud/tencentcloud-sdk-php/issues",
  7495. "source": "https://github.com/TencentCloud/tencentcloud-sdk-php/tree/3.0.447"
  7496. },
  7497. "time": "2021-08-02T00:36:37+00:00"
  7498. },
  7499. {
  7500. "name": "tijsverkoyen/css-to-inline-styles",
  7501. "version": "2.2.3",
  7502. "source": {
  7503. "type": "git",
  7504. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7505. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5"
  7506. },
  7507. "dist": {
  7508. "type": "zip",
  7509. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7510. "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5",
  7511. "shasum": "",
  7512. "mirrors": [
  7513. {
  7514. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7515. "preferred": true
  7516. }
  7517. ]
  7518. },
  7519. "require": {
  7520. "ext-dom": "*",
  7521. "ext-libxml": "*",
  7522. "php": "^5.5 || ^7.0 || ^8.0",
  7523. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0"
  7524. },
  7525. "require-dev": {
  7526. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5"
  7527. },
  7528. "type": "library",
  7529. "extra": {
  7530. "branch-alias": {
  7531. "dev-master": "2.2.x-dev"
  7532. }
  7533. },
  7534. "autoload": {
  7535. "psr-4": {
  7536. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7537. }
  7538. },
  7539. "notification-url": "https://packagist.org/downloads/",
  7540. "license": [
  7541. "BSD-3-Clause"
  7542. ],
  7543. "authors": [
  7544. {
  7545. "name": "Tijs Verkoyen",
  7546. "email": "css_to_inline_styles@verkoyen.eu",
  7547. "role": "Developer"
  7548. }
  7549. ],
  7550. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  7551. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7552. "support": {
  7553. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7554. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3"
  7555. },
  7556. "time": "2020-07-13T06:12:54+00:00"
  7557. },
  7558. {
  7559. "name": "tymon/jwt-auth",
  7560. "version": "1.0.2",
  7561. "source": {
  7562. "type": "git",
  7563. "url": "https://github.com/tymondesigns/jwt-auth.git",
  7564. "reference": "e588cb719539366c0e2f6017f975379cb73e9680"
  7565. },
  7566. "dist": {
  7567. "type": "zip",
  7568. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/e588cb719539366c0e2f6017f975379cb73e9680",
  7569. "reference": "e588cb719539366c0e2f6017f975379cb73e9680",
  7570. "shasum": "",
  7571. "mirrors": [
  7572. {
  7573. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7574. "preferred": true
  7575. }
  7576. ]
  7577. },
  7578. "require": {
  7579. "illuminate/auth": "^5.2|^6|^7|^8",
  7580. "illuminate/contracts": "^5.2|^6|^7|^8",
  7581. "illuminate/http": "^5.2|^6|^7|^8",
  7582. "illuminate/support": "^5.2|^6|^7|^8",
  7583. "lcobucci/jwt": "<3.4",
  7584. "namshi/jose": "^7.0",
  7585. "nesbot/carbon": "^1.0|^2.0",
  7586. "php": "^5.5.9|^7.0"
  7587. },
  7588. "require-dev": {
  7589. "illuminate/console": "^5.2|^6|^7|^8",
  7590. "illuminate/database": "^5.2|^6|^7|^8",
  7591. "illuminate/routing": "^5.2|^6|^7|^8",
  7592. "mockery/mockery": ">=0.9.9",
  7593. "phpunit/phpunit": "~4.8|~6.0"
  7594. },
  7595. "type": "library",
  7596. "extra": {
  7597. "branch-alias": {
  7598. "dev-develop": "1.0-dev"
  7599. },
  7600. "laravel": {
  7601. "aliases": {
  7602. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  7603. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  7604. },
  7605. "providers": [
  7606. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  7607. ]
  7608. }
  7609. },
  7610. "autoload": {
  7611. "psr-4": {
  7612. "Tymon\\JWTAuth\\": "src/"
  7613. }
  7614. },
  7615. "notification-url": "https://packagist.org/downloads/",
  7616. "license": [
  7617. "MIT"
  7618. ],
  7619. "authors": [
  7620. {
  7621. "name": "Sean Tymon",
  7622. "email": "tymon148@gmail.com",
  7623. "homepage": "https://tymon.xyz",
  7624. "role": "Developer"
  7625. }
  7626. ],
  7627. "description": "JSON Web Token Authentication for Laravel and Lumen",
  7628. "homepage": "https://github.com/tymondesigns/jwt-auth",
  7629. "keywords": [
  7630. "Authentication",
  7631. "JSON Web Token",
  7632. "auth",
  7633. "jwt",
  7634. "laravel"
  7635. ],
  7636. "support": {
  7637. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  7638. "source": "https://github.com/tymondesigns/jwt-auth"
  7639. },
  7640. "funding": [
  7641. {
  7642. "url": "https://www.patreon.com/seantymon",
  7643. "type": "patreon"
  7644. }
  7645. ],
  7646. "time": "2020-11-27T12:32:42+00:00"
  7647. },
  7648. {
  7649. "name": "vlucas/phpdotenv",
  7650. "version": "v5.3.0",
  7651. "source": {
  7652. "type": "git",
  7653. "url": "https://github.com/vlucas/phpdotenv.git",
  7654. "reference": "b3eac5c7ac896e52deab4a99068e3f4ab12d9e56"
  7655. },
  7656. "dist": {
  7657. "type": "zip",
  7658. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/b3eac5c7ac896e52deab4a99068e3f4ab12d9e56",
  7659. "reference": "b3eac5c7ac896e52deab4a99068e3f4ab12d9e56",
  7660. "shasum": "",
  7661. "mirrors": [
  7662. {
  7663. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7664. "preferred": true
  7665. }
  7666. ]
  7667. },
  7668. "require": {
  7669. "ext-pcre": "*",
  7670. "graham-campbell/result-type": "^1.0.1",
  7671. "php": "^7.1.3 || ^8.0",
  7672. "phpoption/phpoption": "^1.7.4",
  7673. "symfony/polyfill-ctype": "^1.17",
  7674. "symfony/polyfill-mbstring": "^1.17",
  7675. "symfony/polyfill-php80": "^1.17"
  7676. },
  7677. "require-dev": {
  7678. "bamarni/composer-bin-plugin": "^1.4.1",
  7679. "ext-filter": "*",
  7680. "phpunit/phpunit": "^7.5.20 || ^8.5.14 || ^9.5.1"
  7681. },
  7682. "suggest": {
  7683. "ext-filter": "Required to use the boolean validator."
  7684. },
  7685. "type": "library",
  7686. "extra": {
  7687. "branch-alias": {
  7688. "dev-master": "5.3-dev"
  7689. }
  7690. },
  7691. "autoload": {
  7692. "psr-4": {
  7693. "Dotenv\\": "src/"
  7694. }
  7695. },
  7696. "notification-url": "https://packagist.org/downloads/",
  7697. "license": [
  7698. "BSD-3-Clause"
  7699. ],
  7700. "authors": [
  7701. {
  7702. "name": "Graham Campbell",
  7703. "email": "graham@alt-three.com",
  7704. "homepage": "https://gjcampbell.co.uk/"
  7705. },
  7706. {
  7707. "name": "Vance Lucas",
  7708. "email": "vance@vancelucas.com",
  7709. "homepage": "https://vancelucas.com/"
  7710. }
  7711. ],
  7712. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7713. "keywords": [
  7714. "dotenv",
  7715. "env",
  7716. "environment"
  7717. ],
  7718. "support": {
  7719. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7720. "source": "https://github.com/vlucas/phpdotenv/tree/v5.3.0"
  7721. },
  7722. "funding": [
  7723. {
  7724. "url": "https://github.com/GrahamCampbell",
  7725. "type": "github"
  7726. },
  7727. {
  7728. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7729. "type": "tidelift"
  7730. }
  7731. ],
  7732. "time": "2021-01-20T15:23:13+00:00"
  7733. },
  7734. {
  7735. "name": "voku/portable-ascii",
  7736. "version": "1.5.6",
  7737. "source": {
  7738. "type": "git",
  7739. "url": "https://github.com/voku/portable-ascii.git",
  7740. "reference": "80953678b19901e5165c56752d087fc11526017c"
  7741. },
  7742. "dist": {
  7743. "type": "zip",
  7744. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/80953678b19901e5165c56752d087fc11526017c",
  7745. "reference": "80953678b19901e5165c56752d087fc11526017c",
  7746. "shasum": "",
  7747. "mirrors": [
  7748. {
  7749. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7750. "preferred": true
  7751. }
  7752. ]
  7753. },
  7754. "require": {
  7755. "php": ">=7.0.0"
  7756. },
  7757. "require-dev": {
  7758. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7759. },
  7760. "suggest": {
  7761. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7762. },
  7763. "type": "library",
  7764. "autoload": {
  7765. "psr-4": {
  7766. "voku\\": "src/voku/"
  7767. }
  7768. },
  7769. "notification-url": "https://packagist.org/downloads/",
  7770. "license": [
  7771. "MIT"
  7772. ],
  7773. "authors": [
  7774. {
  7775. "name": "Lars Moelleken",
  7776. "homepage": "http://www.moelleken.org/"
  7777. }
  7778. ],
  7779. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7780. "homepage": "https://github.com/voku/portable-ascii",
  7781. "keywords": [
  7782. "ascii",
  7783. "clean",
  7784. "php"
  7785. ],
  7786. "support": {
  7787. "issues": "https://github.com/voku/portable-ascii/issues",
  7788. "source": "https://github.com/voku/portable-ascii/tree/1.5.6"
  7789. },
  7790. "funding": [
  7791. {
  7792. "url": "https://www.paypal.me/moelleken",
  7793. "type": "custom"
  7794. },
  7795. {
  7796. "url": "https://github.com/voku",
  7797. "type": "github"
  7798. },
  7799. {
  7800. "url": "https://opencollective.com/portable-ascii",
  7801. "type": "open_collective"
  7802. },
  7803. {
  7804. "url": "https://www.patreon.com/voku",
  7805. "type": "patreon"
  7806. },
  7807. {
  7808. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7809. "type": "tidelift"
  7810. }
  7811. ],
  7812. "time": "2020-11-12T00:07:28+00:00"
  7813. },
  7814. {
  7815. "name": "webmozart/assert",
  7816. "version": "1.10.0",
  7817. "source": {
  7818. "type": "git",
  7819. "url": "https://github.com/webmozarts/assert.git",
  7820. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25"
  7821. },
  7822. "dist": {
  7823. "type": "zip",
  7824. "url": "https://api.github.com/repos/webmozarts/assert/zipball/6964c76c7804814a842473e0c8fd15bab0f18e25",
  7825. "reference": "6964c76c7804814a842473e0c8fd15bab0f18e25",
  7826. "shasum": "",
  7827. "mirrors": [
  7828. {
  7829. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7830. "preferred": true
  7831. }
  7832. ]
  7833. },
  7834. "require": {
  7835. "php": "^7.2 || ^8.0",
  7836. "symfony/polyfill-ctype": "^1.8"
  7837. },
  7838. "conflict": {
  7839. "phpstan/phpstan": "<0.12.20",
  7840. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7841. },
  7842. "require-dev": {
  7843. "phpunit/phpunit": "^8.5.13"
  7844. },
  7845. "type": "library",
  7846. "extra": {
  7847. "branch-alias": {
  7848. "dev-master": "1.10-dev"
  7849. }
  7850. },
  7851. "autoload": {
  7852. "psr-4": {
  7853. "Webmozart\\Assert\\": "src/"
  7854. }
  7855. },
  7856. "notification-url": "https://packagist.org/downloads/",
  7857. "license": [
  7858. "MIT"
  7859. ],
  7860. "authors": [
  7861. {
  7862. "name": "Bernhard Schussek",
  7863. "email": "bschussek@gmail.com"
  7864. }
  7865. ],
  7866. "description": "Assertions to validate method input/output with nice error messages.",
  7867. "keywords": [
  7868. "assert",
  7869. "check",
  7870. "validate"
  7871. ],
  7872. "support": {
  7873. "issues": "https://github.com/webmozarts/assert/issues",
  7874. "source": "https://github.com/webmozarts/assert/tree/1.10.0"
  7875. },
  7876. "time": "2021-03-09T10:59:23+00:00"
  7877. },
  7878. {
  7879. "name": "yansongda/pay",
  7880. "version": "v2.10.2",
  7881. "source": {
  7882. "type": "git",
  7883. "url": "https://github.com/yansongda/pay.git",
  7884. "reference": "8c258853b142c6d7589629b047ca5cb21232b509"
  7885. },
  7886. "dist": {
  7887. "type": "zip",
  7888. "url": "https://api.github.com/repos/yansongda/pay/zipball/8c258853b142c6d7589629b047ca5cb21232b509",
  7889. "reference": "8c258853b142c6d7589629b047ca5cb21232b509",
  7890. "shasum": "",
  7891. "mirrors": [
  7892. {
  7893. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7894. "preferred": true
  7895. }
  7896. ]
  7897. },
  7898. "require": {
  7899. "ext-bcmath": "*",
  7900. "ext-json": "*",
  7901. "ext-libxml": "*",
  7902. "ext-openssl": "*",
  7903. "ext-simplexml": "*",
  7904. "php": ">=7.1.3",
  7905. "symfony/event-dispatcher": "^4.0 || ^5.0",
  7906. "symfony/http-foundation": "^4.0 || ^5.0.7",
  7907. "yansongda/supports": "^2.0"
  7908. },
  7909. "require-dev": {
  7910. "friendsofphp/php-cs-fixer": "^2.15",
  7911. "mockery/mockery": "^1.2",
  7912. "phpunit/phpunit": "^7.5"
  7913. },
  7914. "type": "library",
  7915. "autoload": {
  7916. "psr-4": {
  7917. "Yansongda\\Pay\\": "src"
  7918. }
  7919. },
  7920. "notification-url": "https://packagist.org/downloads/",
  7921. "license": [
  7922. "MIT"
  7923. ],
  7924. "authors": [
  7925. {
  7926. "name": "yansongda",
  7927. "email": "me@yansongda.cn"
  7928. }
  7929. ],
  7930. "description": "专注 Alipay 和 WeChat 的支付扩展包",
  7931. "keywords": [
  7932. "alipay",
  7933. "pay",
  7934. "wechat"
  7935. ],
  7936. "support": {
  7937. "issues": "https://github.com/yansongda/pay/issues",
  7938. "source": "https://github.com/yansongda/pay"
  7939. },
  7940. "time": "2021-01-18T01:48:43+00:00"
  7941. },
  7942. {
  7943. "name": "yansongda/supports",
  7944. "version": "v2.2.0",
  7945. "source": {
  7946. "type": "git",
  7947. "url": "https://github.com/yansongda/supports.git",
  7948. "reference": "de9a8d38b0461ddf9c12f27390dad9a40c9b4e3b"
  7949. },
  7950. "dist": {
  7951. "type": "zip",
  7952. "url": "https://api.github.com/repos/yansongda/supports/zipball/de9a8d38b0461ddf9c12f27390dad9a40c9b4e3b",
  7953. "reference": "de9a8d38b0461ddf9c12f27390dad9a40c9b4e3b",
  7954. "shasum": "",
  7955. "mirrors": [
  7956. {
  7957. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7958. "preferred": true
  7959. }
  7960. ]
  7961. },
  7962. "require": {
  7963. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  7964. "monolog/monolog": "^1.23 || ^2.0",
  7965. "php": ">=7.1.3"
  7966. },
  7967. "require-dev": {
  7968. "friendsofphp/php-cs-fixer": "^2.15",
  7969. "phpunit/phpunit": "^7.5",
  7970. "predis/predis": "^1.1"
  7971. },
  7972. "suggest": {
  7973. "predis/predis": "Allows to use throttle feature"
  7974. },
  7975. "type": "library",
  7976. "autoload": {
  7977. "psr-4": {
  7978. "Yansongda\\Supports\\": "src/"
  7979. }
  7980. },
  7981. "notification-url": "https://packagist.org/downloads/",
  7982. "license": [
  7983. "MIT"
  7984. ],
  7985. "authors": [
  7986. {
  7987. "name": "yansongda",
  7988. "email": "me@yansongda.cn"
  7989. }
  7990. ],
  7991. "description": "common components",
  7992. "keywords": [
  7993. "Guzzle",
  7994. "array",
  7995. "collection",
  7996. "config",
  7997. "http",
  7998. "support",
  7999. "throttle"
  8000. ],
  8001. "support": {
  8002. "issues": "https://github.com/yansongda/supports/issues",
  8003. "source": "https://github.com/yansongda/supports"
  8004. },
  8005. "time": "2020-10-14T08:17:18+00:00"
  8006. }
  8007. ],
  8008. "packages-dev": [
  8009. {
  8010. "name": "doctrine/instantiator",
  8011. "version": "1.4.0",
  8012. "source": {
  8013. "type": "git",
  8014. "url": "https://github.com/doctrine/instantiator.git",
  8015. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8016. },
  8017. "dist": {
  8018. "type": "zip",
  8019. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8020. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8021. "shasum": "",
  8022. "mirrors": [
  8023. {
  8024. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8025. "preferred": true
  8026. }
  8027. ]
  8028. },
  8029. "require": {
  8030. "php": "^7.1 || ^8.0"
  8031. },
  8032. "require-dev": {
  8033. "doctrine/coding-standard": "^8.0",
  8034. "ext-pdo": "*",
  8035. "ext-phar": "*",
  8036. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8037. "phpstan/phpstan": "^0.12",
  8038. "phpstan/phpstan-phpunit": "^0.12",
  8039. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8040. },
  8041. "type": "library",
  8042. "autoload": {
  8043. "psr-4": {
  8044. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8045. }
  8046. },
  8047. "notification-url": "https://packagist.org/downloads/",
  8048. "license": [
  8049. "MIT"
  8050. ],
  8051. "authors": [
  8052. {
  8053. "name": "Marco Pivetta",
  8054. "email": "ocramius@gmail.com",
  8055. "homepage": "https://ocramius.github.io/"
  8056. }
  8057. ],
  8058. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8059. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8060. "keywords": [
  8061. "constructor",
  8062. "instantiate"
  8063. ],
  8064. "support": {
  8065. "issues": "https://github.com/doctrine/instantiator/issues",
  8066. "source": "https://github.com/doctrine/instantiator/tree/1.4.0"
  8067. },
  8068. "funding": [
  8069. {
  8070. "url": "https://www.doctrine-project.org/sponsorship.html",
  8071. "type": "custom"
  8072. },
  8073. {
  8074. "url": "https://www.patreon.com/phpdoctrine",
  8075. "type": "patreon"
  8076. },
  8077. {
  8078. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  8079. "type": "tidelift"
  8080. }
  8081. ],
  8082. "time": "2020-11-10T18:47:58+00:00"
  8083. },
  8084. {
  8085. "name": "facade/flare-client-php",
  8086. "version": "1.8.1",
  8087. "source": {
  8088. "type": "git",
  8089. "url": "https://github.com/facade/flare-client-php.git",
  8090. "reference": "47b639dc02bcfdfc4ebb83de703856fa01e35f5f"
  8091. },
  8092. "dist": {
  8093. "type": "zip",
  8094. "url": "https://api.github.com/repos/facade/flare-client-php/zipball/47b639dc02bcfdfc4ebb83de703856fa01e35f5f",
  8095. "reference": "47b639dc02bcfdfc4ebb83de703856fa01e35f5f",
  8096. "shasum": "",
  8097. "mirrors": [
  8098. {
  8099. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8100. "preferred": true
  8101. }
  8102. ]
  8103. },
  8104. "require": {
  8105. "facade/ignition-contracts": "~1.0",
  8106. "illuminate/pipeline": "^5.5|^6.0|^7.0|^8.0",
  8107. "php": "^7.1|^8.0",
  8108. "symfony/http-foundation": "^3.3|^4.1|^5.0",
  8109. "symfony/mime": "^3.4|^4.0|^5.1",
  8110. "symfony/var-dumper": "^3.4|^4.0|^5.0"
  8111. },
  8112. "require-dev": {
  8113. "friendsofphp/php-cs-fixer": "^2.14",
  8114. "phpunit/phpunit": "^7.5.16",
  8115. "spatie/phpunit-snapshot-assertions": "^2.0"
  8116. },
  8117. "type": "library",
  8118. "extra": {
  8119. "branch-alias": {
  8120. "dev-master": "1.0-dev"
  8121. }
  8122. },
  8123. "autoload": {
  8124. "psr-4": {
  8125. "Facade\\FlareClient\\": "src"
  8126. },
  8127. "files": [
  8128. "src/helpers.php"
  8129. ]
  8130. },
  8131. "notification-url": "https://packagist.org/downloads/",
  8132. "license": [
  8133. "MIT"
  8134. ],
  8135. "description": "Send PHP errors to Flare",
  8136. "homepage": "https://github.com/facade/flare-client-php",
  8137. "keywords": [
  8138. "exception",
  8139. "facade",
  8140. "flare",
  8141. "reporting"
  8142. ],
  8143. "support": {
  8144. "issues": "https://github.com/facade/flare-client-php/issues",
  8145. "source": "https://github.com/facade/flare-client-php/tree/1.8.1"
  8146. },
  8147. "funding": [
  8148. {
  8149. "url": "https://github.com/spatie",
  8150. "type": "github"
  8151. }
  8152. ],
  8153. "time": "2021-05-31T19:23:29+00:00"
  8154. },
  8155. {
  8156. "name": "facade/ignition",
  8157. "version": "2.11.2",
  8158. "source": {
  8159. "type": "git",
  8160. "url": "https://github.com/facade/ignition.git",
  8161. "reference": "7c4e7a7da184cd00c7ce6eacc590200bb9672de7"
  8162. },
  8163. "dist": {
  8164. "type": "zip",
  8165. "url": "https://api.github.com/repos/facade/ignition/zipball/7c4e7a7da184cd00c7ce6eacc590200bb9672de7",
  8166. "reference": "7c4e7a7da184cd00c7ce6eacc590200bb9672de7",
  8167. "shasum": "",
  8168. "mirrors": [
  8169. {
  8170. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8171. "preferred": true
  8172. }
  8173. ]
  8174. },
  8175. "require": {
  8176. "ext-json": "*",
  8177. "ext-mbstring": "*",
  8178. "facade/flare-client-php": "^1.6",
  8179. "facade/ignition-contracts": "^1.0.2",
  8180. "illuminate/support": "^7.0|^8.0",
  8181. "monolog/monolog": "^2.0",
  8182. "php": "^7.2.5|^8.0",
  8183. "symfony/console": "^5.0",
  8184. "symfony/var-dumper": "^5.0"
  8185. },
  8186. "require-dev": {
  8187. "friendsofphp/php-cs-fixer": "^2.14",
  8188. "mockery/mockery": "^1.3",
  8189. "orchestra/testbench": "^5.0|^6.0",
  8190. "psalm/plugin-laravel": "^1.2"
  8191. },
  8192. "suggest": {
  8193. "laravel/telescope": "^3.1"
  8194. },
  8195. "type": "library",
  8196. "extra": {
  8197. "branch-alias": {
  8198. "dev-master": "2.x-dev"
  8199. },
  8200. "laravel": {
  8201. "providers": [
  8202. "Facade\\Ignition\\IgnitionServiceProvider"
  8203. ],
  8204. "aliases": {
  8205. "Flare": "Facade\\Ignition\\Facades\\Flare"
  8206. }
  8207. }
  8208. },
  8209. "autoload": {
  8210. "psr-4": {
  8211. "Facade\\Ignition\\": "src"
  8212. },
  8213. "files": [
  8214. "src/helpers.php"
  8215. ]
  8216. },
  8217. "notification-url": "https://packagist.org/downloads/",
  8218. "license": [
  8219. "MIT"
  8220. ],
  8221. "description": "A beautiful error page for Laravel applications.",
  8222. "homepage": "https://github.com/facade/ignition",
  8223. "keywords": [
  8224. "error",
  8225. "flare",
  8226. "laravel",
  8227. "page"
  8228. ],
  8229. "support": {
  8230. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  8231. "forum": "https://twitter.com/flareappio",
  8232. "issues": "https://github.com/facade/ignition/issues",
  8233. "source": "https://github.com/facade/ignition"
  8234. },
  8235. "time": "2021-07-20T14:01:22+00:00"
  8236. },
  8237. {
  8238. "name": "facade/ignition-contracts",
  8239. "version": "1.0.2",
  8240. "source": {
  8241. "type": "git",
  8242. "url": "https://github.com/facade/ignition-contracts.git",
  8243. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  8244. },
  8245. "dist": {
  8246. "type": "zip",
  8247. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8248. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  8249. "shasum": "",
  8250. "mirrors": [
  8251. {
  8252. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8253. "preferred": true
  8254. }
  8255. ]
  8256. },
  8257. "require": {
  8258. "php": "^7.3|^8.0"
  8259. },
  8260. "require-dev": {
  8261. "friendsofphp/php-cs-fixer": "^v2.15.8",
  8262. "phpunit/phpunit": "^9.3.11",
  8263. "vimeo/psalm": "^3.17.1"
  8264. },
  8265. "type": "library",
  8266. "autoload": {
  8267. "psr-4": {
  8268. "Facade\\IgnitionContracts\\": "src"
  8269. }
  8270. },
  8271. "notification-url": "https://packagist.org/downloads/",
  8272. "license": [
  8273. "MIT"
  8274. ],
  8275. "authors": [
  8276. {
  8277. "name": "Freek Van der Herten",
  8278. "email": "freek@spatie.be",
  8279. "homepage": "https://flareapp.io",
  8280. "role": "Developer"
  8281. }
  8282. ],
  8283. "description": "Solution contracts for Ignition",
  8284. "homepage": "https://github.com/facade/ignition-contracts",
  8285. "keywords": [
  8286. "contracts",
  8287. "flare",
  8288. "ignition"
  8289. ],
  8290. "support": {
  8291. "issues": "https://github.com/facade/ignition-contracts/issues",
  8292. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  8293. },
  8294. "time": "2020-10-16T08:27:54+00:00"
  8295. },
  8296. {
  8297. "name": "fakerphp/faker",
  8298. "version": "v1.15.0",
  8299. "source": {
  8300. "type": "git",
  8301. "url": "https://github.com/FakerPHP/Faker.git",
  8302. "reference": "89c6201c74db25fa759ff16e78a4d8f32547770e"
  8303. },
  8304. "dist": {
  8305. "type": "zip",
  8306. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/89c6201c74db25fa759ff16e78a4d8f32547770e",
  8307. "reference": "89c6201c74db25fa759ff16e78a4d8f32547770e",
  8308. "shasum": "",
  8309. "mirrors": [
  8310. {
  8311. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8312. "preferred": true
  8313. }
  8314. ]
  8315. },
  8316. "require": {
  8317. "php": "^7.1 || ^8.0",
  8318. "psr/container": "^1.0",
  8319. "symfony/deprecation-contracts": "^2.2"
  8320. },
  8321. "conflict": {
  8322. "fzaninotto/faker": "*"
  8323. },
  8324. "require-dev": {
  8325. "bamarni/composer-bin-plugin": "^1.4.1",
  8326. "ext-intl": "*",
  8327. "symfony/phpunit-bridge": "^4.4 || ^5.2"
  8328. },
  8329. "suggest": {
  8330. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  8331. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  8332. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  8333. "ext-mbstring": "Required for multibyte Unicode string functionality."
  8334. },
  8335. "type": "library",
  8336. "extra": {
  8337. "branch-alias": {
  8338. "dev-main": "v1.15-dev"
  8339. }
  8340. },
  8341. "autoload": {
  8342. "psr-4": {
  8343. "Faker\\": "src/Faker/"
  8344. }
  8345. },
  8346. "notification-url": "https://packagist.org/downloads/",
  8347. "license": [
  8348. "MIT"
  8349. ],
  8350. "authors": [
  8351. {
  8352. "name": "François Zaninotto"
  8353. }
  8354. ],
  8355. "description": "Faker is a PHP library that generates fake data for you.",
  8356. "keywords": [
  8357. "data",
  8358. "faker",
  8359. "fixtures"
  8360. ],
  8361. "support": {
  8362. "issues": "https://github.com/FakerPHP/Faker/issues",
  8363. "source": "https://github.com/FakerPHP/Faker/tree/v1.15.0"
  8364. },
  8365. "time": "2021-07-06T20:39:40+00:00"
  8366. },
  8367. {
  8368. "name": "filp/whoops",
  8369. "version": "2.14.0",
  8370. "source": {
  8371. "type": "git",
  8372. "url": "https://github.com/filp/whoops.git",
  8373. "reference": "fdf92f03e150ed84d5967a833ae93abffac0315b"
  8374. },
  8375. "dist": {
  8376. "type": "zip",
  8377. "url": "https://api.github.com/repos/filp/whoops/zipball/fdf92f03e150ed84d5967a833ae93abffac0315b",
  8378. "reference": "fdf92f03e150ed84d5967a833ae93abffac0315b",
  8379. "shasum": "",
  8380. "mirrors": [
  8381. {
  8382. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8383. "preferred": true
  8384. }
  8385. ]
  8386. },
  8387. "require": {
  8388. "php": "^5.5.9 || ^7.0 || ^8.0",
  8389. "psr/log": "^1.0.1"
  8390. },
  8391. "require-dev": {
  8392. "mockery/mockery": "^0.9 || ^1.0",
  8393. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  8394. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  8395. },
  8396. "suggest": {
  8397. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  8398. "whoops/soap": "Formats errors as SOAP responses"
  8399. },
  8400. "type": "library",
  8401. "extra": {
  8402. "branch-alias": {
  8403. "dev-master": "2.7-dev"
  8404. }
  8405. },
  8406. "autoload": {
  8407. "psr-4": {
  8408. "Whoops\\": "src/Whoops/"
  8409. }
  8410. },
  8411. "notification-url": "https://packagist.org/downloads/",
  8412. "license": [
  8413. "MIT"
  8414. ],
  8415. "authors": [
  8416. {
  8417. "name": "Filipe Dobreira",
  8418. "homepage": "https://github.com/filp",
  8419. "role": "Developer"
  8420. }
  8421. ],
  8422. "description": "php error handling for cool kids",
  8423. "homepage": "https://filp.github.io/whoops/",
  8424. "keywords": [
  8425. "error",
  8426. "exception",
  8427. "handling",
  8428. "library",
  8429. "throwable",
  8430. "whoops"
  8431. ],
  8432. "support": {
  8433. "issues": "https://github.com/filp/whoops/issues",
  8434. "source": "https://github.com/filp/whoops/tree/2.14.0"
  8435. },
  8436. "funding": [
  8437. {
  8438. "url": "https://github.com/denis-sokolov",
  8439. "type": "github"
  8440. }
  8441. ],
  8442. "time": "2021-07-13T12:00:00+00:00"
  8443. },
  8444. {
  8445. "name": "hamcrest/hamcrest-php",
  8446. "version": "v2.0.1",
  8447. "source": {
  8448. "type": "git",
  8449. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8450. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8451. },
  8452. "dist": {
  8453. "type": "zip",
  8454. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8455. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8456. "shasum": "",
  8457. "mirrors": [
  8458. {
  8459. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8460. "preferred": true
  8461. }
  8462. ]
  8463. },
  8464. "require": {
  8465. "php": "^5.3|^7.0|^8.0"
  8466. },
  8467. "replace": {
  8468. "cordoval/hamcrest-php": "*",
  8469. "davedevelopment/hamcrest-php": "*",
  8470. "kodova/hamcrest-php": "*"
  8471. },
  8472. "require-dev": {
  8473. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8474. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8475. },
  8476. "type": "library",
  8477. "extra": {
  8478. "branch-alias": {
  8479. "dev-master": "2.1-dev"
  8480. }
  8481. },
  8482. "autoload": {
  8483. "classmap": [
  8484. "hamcrest"
  8485. ]
  8486. },
  8487. "notification-url": "https://packagist.org/downloads/",
  8488. "license": [
  8489. "BSD-3-Clause"
  8490. ],
  8491. "description": "This is the PHP port of Hamcrest Matchers",
  8492. "keywords": [
  8493. "test"
  8494. ],
  8495. "support": {
  8496. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  8497. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  8498. },
  8499. "time": "2020-07-09T08:09:16+00:00"
  8500. },
  8501. {
  8502. "name": "laravel/sail",
  8503. "version": "v1.8.6",
  8504. "source": {
  8505. "type": "git",
  8506. "url": "https://github.com/laravel/sail.git",
  8507. "reference": "51ecfe0f048f8f8e6c5617e02a1f67ca22817c98"
  8508. },
  8509. "dist": {
  8510. "type": "zip",
  8511. "url": "https://api.github.com/repos/laravel/sail/zipball/51ecfe0f048f8f8e6c5617e02a1f67ca22817c98",
  8512. "reference": "51ecfe0f048f8f8e6c5617e02a1f67ca22817c98",
  8513. "shasum": "",
  8514. "mirrors": [
  8515. {
  8516. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8517. "preferred": true
  8518. }
  8519. ]
  8520. },
  8521. "require": {
  8522. "illuminate/console": "^8.0|^9.0",
  8523. "illuminate/contracts": "^8.0|^9.0",
  8524. "illuminate/support": "^8.0|^9.0",
  8525. "php": "^7.3|^8.0"
  8526. },
  8527. "bin": [
  8528. "bin/sail"
  8529. ],
  8530. "type": "library",
  8531. "extra": {
  8532. "branch-alias": {
  8533. "dev-master": "1.x-dev"
  8534. },
  8535. "laravel": {
  8536. "providers": [
  8537. "Laravel\\Sail\\SailServiceProvider"
  8538. ]
  8539. }
  8540. },
  8541. "autoload": {
  8542. "psr-4": {
  8543. "Laravel\\Sail\\": "src/"
  8544. }
  8545. },
  8546. "notification-url": "https://packagist.org/downloads/",
  8547. "license": [
  8548. "MIT"
  8549. ],
  8550. "authors": [
  8551. {
  8552. "name": "Taylor Otwell",
  8553. "email": "taylor@laravel.com"
  8554. }
  8555. ],
  8556. "description": "Docker files for running a basic Laravel application.",
  8557. "keywords": [
  8558. "docker",
  8559. "laravel"
  8560. ],
  8561. "support": {
  8562. "issues": "https://github.com/laravel/sail/issues",
  8563. "source": "https://github.com/laravel/sail"
  8564. },
  8565. "time": "2021-07-15T07:35:41+00:00"
  8566. },
  8567. {
  8568. "name": "mockery/mockery",
  8569. "version": "1.4.3",
  8570. "source": {
  8571. "type": "git",
  8572. "url": "https://github.com/mockery/mockery.git",
  8573. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea"
  8574. },
  8575. "dist": {
  8576. "type": "zip",
  8577. "url": "https://api.github.com/repos/mockery/mockery/zipball/d1339f64479af1bee0e82a0413813fe5345a54ea",
  8578. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea",
  8579. "shasum": "",
  8580. "mirrors": [
  8581. {
  8582. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8583. "preferred": true
  8584. }
  8585. ]
  8586. },
  8587. "require": {
  8588. "hamcrest/hamcrest-php": "^2.0.1",
  8589. "lib-pcre": ">=7.0",
  8590. "php": "^7.3 || ^8.0"
  8591. },
  8592. "conflict": {
  8593. "phpunit/phpunit": "<8.0"
  8594. },
  8595. "require-dev": {
  8596. "phpunit/phpunit": "^8.5 || ^9.3"
  8597. },
  8598. "type": "library",
  8599. "extra": {
  8600. "branch-alias": {
  8601. "dev-master": "1.4.x-dev"
  8602. }
  8603. },
  8604. "autoload": {
  8605. "psr-0": {
  8606. "Mockery": "library/"
  8607. }
  8608. },
  8609. "notification-url": "https://packagist.org/downloads/",
  8610. "license": [
  8611. "BSD-3-Clause"
  8612. ],
  8613. "authors": [
  8614. {
  8615. "name": "Pádraic Brady",
  8616. "email": "padraic.brady@gmail.com",
  8617. "homepage": "http://blog.astrumfutura.com"
  8618. },
  8619. {
  8620. "name": "Dave Marshall",
  8621. "email": "dave.marshall@atstsolutions.co.uk",
  8622. "homepage": "http://davedevelopment.co.uk"
  8623. }
  8624. ],
  8625. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8626. "homepage": "https://github.com/mockery/mockery",
  8627. "keywords": [
  8628. "BDD",
  8629. "TDD",
  8630. "library",
  8631. "mock",
  8632. "mock objects",
  8633. "mockery",
  8634. "stub",
  8635. "test",
  8636. "test double",
  8637. "testing"
  8638. ],
  8639. "support": {
  8640. "issues": "https://github.com/mockery/mockery/issues",
  8641. "source": "https://github.com/mockery/mockery/tree/1.4.3"
  8642. },
  8643. "time": "2021-02-24T09:51:49+00:00"
  8644. },
  8645. {
  8646. "name": "myclabs/deep-copy",
  8647. "version": "1.10.2",
  8648. "source": {
  8649. "type": "git",
  8650. "url": "https://github.com/myclabs/DeepCopy.git",
  8651. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8652. },
  8653. "dist": {
  8654. "type": "zip",
  8655. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8656. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8657. "shasum": "",
  8658. "mirrors": [
  8659. {
  8660. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8661. "preferred": true
  8662. }
  8663. ]
  8664. },
  8665. "require": {
  8666. "php": "^7.1 || ^8.0"
  8667. },
  8668. "replace": {
  8669. "myclabs/deep-copy": "self.version"
  8670. },
  8671. "require-dev": {
  8672. "doctrine/collections": "^1.0",
  8673. "doctrine/common": "^2.6",
  8674. "phpunit/phpunit": "^7.1"
  8675. },
  8676. "type": "library",
  8677. "autoload": {
  8678. "psr-4": {
  8679. "DeepCopy\\": "src/DeepCopy/"
  8680. },
  8681. "files": [
  8682. "src/DeepCopy/deep_copy.php"
  8683. ]
  8684. },
  8685. "notification-url": "https://packagist.org/downloads/",
  8686. "license": [
  8687. "MIT"
  8688. ],
  8689. "description": "Create deep copies (clones) of your objects",
  8690. "keywords": [
  8691. "clone",
  8692. "copy",
  8693. "duplicate",
  8694. "object",
  8695. "object graph"
  8696. ],
  8697. "support": {
  8698. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8699. "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2"
  8700. },
  8701. "funding": [
  8702. {
  8703. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8704. "type": "tidelift"
  8705. }
  8706. ],
  8707. "time": "2020-11-13T09:40:50+00:00"
  8708. },
  8709. {
  8710. "name": "nunomaduro/collision",
  8711. "version": "v5.6.0",
  8712. "source": {
  8713. "type": "git",
  8714. "url": "https://github.com/nunomaduro/collision.git",
  8715. "reference": "0122ac6b03c75279ef78d1c0ad49725dfc52a8d2"
  8716. },
  8717. "dist": {
  8718. "type": "zip",
  8719. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/0122ac6b03c75279ef78d1c0ad49725dfc52a8d2",
  8720. "reference": "0122ac6b03c75279ef78d1c0ad49725dfc52a8d2",
  8721. "shasum": "",
  8722. "mirrors": [
  8723. {
  8724. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8725. "preferred": true
  8726. }
  8727. ]
  8728. },
  8729. "require": {
  8730. "facade/ignition-contracts": "^1.0",
  8731. "filp/whoops": "^2.7.2",
  8732. "php": "^7.3 || ^8.0",
  8733. "symfony/console": "^5.0"
  8734. },
  8735. "require-dev": {
  8736. "brianium/paratest": "^6.1",
  8737. "fideloper/proxy": "^4.4.1",
  8738. "friendsofphp/php-cs-fixer": "^2.17.3",
  8739. "fruitcake/laravel-cors": "^2.0.3",
  8740. "laravel/framework": "^8.0 || ^9.0",
  8741. "nunomaduro/larastan": "^0.6.2",
  8742. "nunomaduro/mock-final-classes": "^1.0",
  8743. "orchestra/testbench": "^6.0 || ^7.0",
  8744. "phpstan/phpstan": "^0.12.64",
  8745. "phpunit/phpunit": "^9.5.0"
  8746. },
  8747. "type": "library",
  8748. "extra": {
  8749. "laravel": {
  8750. "providers": [
  8751. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8752. ]
  8753. }
  8754. },
  8755. "autoload": {
  8756. "psr-4": {
  8757. "NunoMaduro\\Collision\\": "src/"
  8758. }
  8759. },
  8760. "notification-url": "https://packagist.org/downloads/",
  8761. "license": [
  8762. "MIT"
  8763. ],
  8764. "authors": [
  8765. {
  8766. "name": "Nuno Maduro",
  8767. "email": "enunomaduro@gmail.com"
  8768. }
  8769. ],
  8770. "description": "Cli error handling for console/command-line PHP applications.",
  8771. "keywords": [
  8772. "artisan",
  8773. "cli",
  8774. "command-line",
  8775. "console",
  8776. "error",
  8777. "handling",
  8778. "laravel",
  8779. "laravel-zero",
  8780. "php",
  8781. "symfony"
  8782. ],
  8783. "support": {
  8784. "issues": "https://github.com/nunomaduro/collision/issues",
  8785. "source": "https://github.com/nunomaduro/collision"
  8786. },
  8787. "funding": [
  8788. {
  8789. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  8790. "type": "custom"
  8791. },
  8792. {
  8793. "url": "https://github.com/nunomaduro",
  8794. "type": "github"
  8795. },
  8796. {
  8797. "url": "https://www.patreon.com/nunomaduro",
  8798. "type": "patreon"
  8799. }
  8800. ],
  8801. "time": "2021-07-26T20:39:06+00:00"
  8802. },
  8803. {
  8804. "name": "phar-io/manifest",
  8805. "version": "2.0.3",
  8806. "source": {
  8807. "type": "git",
  8808. "url": "https://github.com/phar-io/manifest.git",
  8809. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8810. },
  8811. "dist": {
  8812. "type": "zip",
  8813. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8814. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8815. "shasum": "",
  8816. "mirrors": [
  8817. {
  8818. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8819. "preferred": true
  8820. }
  8821. ]
  8822. },
  8823. "require": {
  8824. "ext-dom": "*",
  8825. "ext-phar": "*",
  8826. "ext-xmlwriter": "*",
  8827. "phar-io/version": "^3.0.1",
  8828. "php": "^7.2 || ^8.0"
  8829. },
  8830. "type": "library",
  8831. "extra": {
  8832. "branch-alias": {
  8833. "dev-master": "2.0.x-dev"
  8834. }
  8835. },
  8836. "autoload": {
  8837. "classmap": [
  8838. "src/"
  8839. ]
  8840. },
  8841. "notification-url": "https://packagist.org/downloads/",
  8842. "license": [
  8843. "BSD-3-Clause"
  8844. ],
  8845. "authors": [
  8846. {
  8847. "name": "Arne Blankerts",
  8848. "email": "arne@blankerts.de",
  8849. "role": "Developer"
  8850. },
  8851. {
  8852. "name": "Sebastian Heuer",
  8853. "email": "sebastian@phpeople.de",
  8854. "role": "Developer"
  8855. },
  8856. {
  8857. "name": "Sebastian Bergmann",
  8858. "email": "sebastian@phpunit.de",
  8859. "role": "Developer"
  8860. }
  8861. ],
  8862. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8863. "support": {
  8864. "issues": "https://github.com/phar-io/manifest/issues",
  8865. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8866. },
  8867. "time": "2021-07-20T11:28:43+00:00"
  8868. },
  8869. {
  8870. "name": "phar-io/version",
  8871. "version": "3.1.0",
  8872. "source": {
  8873. "type": "git",
  8874. "url": "https://github.com/phar-io/version.git",
  8875. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  8876. },
  8877. "dist": {
  8878. "type": "zip",
  8879. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  8880. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  8881. "shasum": "",
  8882. "mirrors": [
  8883. {
  8884. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8885. "preferred": true
  8886. }
  8887. ]
  8888. },
  8889. "require": {
  8890. "php": "^7.2 || ^8.0"
  8891. },
  8892. "type": "library",
  8893. "autoload": {
  8894. "classmap": [
  8895. "src/"
  8896. ]
  8897. },
  8898. "notification-url": "https://packagist.org/downloads/",
  8899. "license": [
  8900. "BSD-3-Clause"
  8901. ],
  8902. "authors": [
  8903. {
  8904. "name": "Arne Blankerts",
  8905. "email": "arne@blankerts.de",
  8906. "role": "Developer"
  8907. },
  8908. {
  8909. "name": "Sebastian Heuer",
  8910. "email": "sebastian@phpeople.de",
  8911. "role": "Developer"
  8912. },
  8913. {
  8914. "name": "Sebastian Bergmann",
  8915. "email": "sebastian@phpunit.de",
  8916. "role": "Developer"
  8917. }
  8918. ],
  8919. "description": "Library for handling version information and constraints",
  8920. "support": {
  8921. "issues": "https://github.com/phar-io/version/issues",
  8922. "source": "https://github.com/phar-io/version/tree/3.1.0"
  8923. },
  8924. "time": "2021-02-23T14:00:09+00:00"
  8925. },
  8926. {
  8927. "name": "phpspec/prophecy",
  8928. "version": "1.13.0",
  8929. "source": {
  8930. "type": "git",
  8931. "url": "https://github.com/phpspec/prophecy.git",
  8932. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea"
  8933. },
  8934. "dist": {
  8935. "type": "zip",
  8936. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/be1996ed8adc35c3fd795488a653f4b518be70ea",
  8937. "reference": "be1996ed8adc35c3fd795488a653f4b518be70ea",
  8938. "shasum": "",
  8939. "mirrors": [
  8940. {
  8941. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8942. "preferred": true
  8943. }
  8944. ]
  8945. },
  8946. "require": {
  8947. "doctrine/instantiator": "^1.2",
  8948. "php": "^7.2 || ~8.0, <8.1",
  8949. "phpdocumentor/reflection-docblock": "^5.2",
  8950. "sebastian/comparator": "^3.0 || ^4.0",
  8951. "sebastian/recursion-context": "^3.0 || ^4.0"
  8952. },
  8953. "require-dev": {
  8954. "phpspec/phpspec": "^6.0",
  8955. "phpunit/phpunit": "^8.0 || ^9.0"
  8956. },
  8957. "type": "library",
  8958. "extra": {
  8959. "branch-alias": {
  8960. "dev-master": "1.11.x-dev"
  8961. }
  8962. },
  8963. "autoload": {
  8964. "psr-4": {
  8965. "Prophecy\\": "src/Prophecy"
  8966. }
  8967. },
  8968. "notification-url": "https://packagist.org/downloads/",
  8969. "license": [
  8970. "MIT"
  8971. ],
  8972. "authors": [
  8973. {
  8974. "name": "Konstantin Kudryashov",
  8975. "email": "ever.zet@gmail.com",
  8976. "homepage": "http://everzet.com"
  8977. },
  8978. {
  8979. "name": "Marcello Duarte",
  8980. "email": "marcello.duarte@gmail.com"
  8981. }
  8982. ],
  8983. "description": "Highly opinionated mocking framework for PHP 5.3+",
  8984. "homepage": "https://github.com/phpspec/prophecy",
  8985. "keywords": [
  8986. "Double",
  8987. "Dummy",
  8988. "fake",
  8989. "mock",
  8990. "spy",
  8991. "stub"
  8992. ],
  8993. "support": {
  8994. "issues": "https://github.com/phpspec/prophecy/issues",
  8995. "source": "https://github.com/phpspec/prophecy/tree/1.13.0"
  8996. },
  8997. "time": "2021-03-17T13:42:18+00:00"
  8998. },
  8999. {
  9000. "name": "phpunit/php-code-coverage",
  9001. "version": "9.2.6",
  9002. "source": {
  9003. "type": "git",
  9004. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  9005. "reference": "f6293e1b30a2354e8428e004689671b83871edde"
  9006. },
  9007. "dist": {
  9008. "type": "zip",
  9009. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f6293e1b30a2354e8428e004689671b83871edde",
  9010. "reference": "f6293e1b30a2354e8428e004689671b83871edde",
  9011. "shasum": "",
  9012. "mirrors": [
  9013. {
  9014. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9015. "preferred": true
  9016. }
  9017. ]
  9018. },
  9019. "require": {
  9020. "ext-dom": "*",
  9021. "ext-libxml": "*",
  9022. "ext-xmlwriter": "*",
  9023. "nikic/php-parser": "^4.10.2",
  9024. "php": ">=7.3",
  9025. "phpunit/php-file-iterator": "^3.0.3",
  9026. "phpunit/php-text-template": "^2.0.2",
  9027. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  9028. "sebastian/complexity": "^2.0",
  9029. "sebastian/environment": "^5.1.2",
  9030. "sebastian/lines-of-code": "^1.0.3",
  9031. "sebastian/version": "^3.0.1",
  9032. "theseer/tokenizer": "^1.2.0"
  9033. },
  9034. "require-dev": {
  9035. "phpunit/phpunit": "^9.3"
  9036. },
  9037. "suggest": {
  9038. "ext-pcov": "*",
  9039. "ext-xdebug": "*"
  9040. },
  9041. "type": "library",
  9042. "extra": {
  9043. "branch-alias": {
  9044. "dev-master": "9.2-dev"
  9045. }
  9046. },
  9047. "autoload": {
  9048. "classmap": [
  9049. "src/"
  9050. ]
  9051. },
  9052. "notification-url": "https://packagist.org/downloads/",
  9053. "license": [
  9054. "BSD-3-Clause"
  9055. ],
  9056. "authors": [
  9057. {
  9058. "name": "Sebastian Bergmann",
  9059. "email": "sebastian@phpunit.de",
  9060. "role": "lead"
  9061. }
  9062. ],
  9063. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  9064. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  9065. "keywords": [
  9066. "coverage",
  9067. "testing",
  9068. "xunit"
  9069. ],
  9070. "support": {
  9071. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  9072. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.6"
  9073. },
  9074. "funding": [
  9075. {
  9076. "url": "https://github.com/sebastianbergmann",
  9077. "type": "github"
  9078. }
  9079. ],
  9080. "time": "2021-03-28T07:26:59+00:00"
  9081. },
  9082. {
  9083. "name": "phpunit/php-file-iterator",
  9084. "version": "3.0.5",
  9085. "source": {
  9086. "type": "git",
  9087. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  9088. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8"
  9089. },
  9090. "dist": {
  9091. "type": "zip",
  9092. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/aa4be8575f26070b100fccb67faabb28f21f66f8",
  9093. "reference": "aa4be8575f26070b100fccb67faabb28f21f66f8",
  9094. "shasum": "",
  9095. "mirrors": [
  9096. {
  9097. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9098. "preferred": true
  9099. }
  9100. ]
  9101. },
  9102. "require": {
  9103. "php": ">=7.3"
  9104. },
  9105. "require-dev": {
  9106. "phpunit/phpunit": "^9.3"
  9107. },
  9108. "type": "library",
  9109. "extra": {
  9110. "branch-alias": {
  9111. "dev-master": "3.0-dev"
  9112. }
  9113. },
  9114. "autoload": {
  9115. "classmap": [
  9116. "src/"
  9117. ]
  9118. },
  9119. "notification-url": "https://packagist.org/downloads/",
  9120. "license": [
  9121. "BSD-3-Clause"
  9122. ],
  9123. "authors": [
  9124. {
  9125. "name": "Sebastian Bergmann",
  9126. "email": "sebastian@phpunit.de",
  9127. "role": "lead"
  9128. }
  9129. ],
  9130. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  9131. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  9132. "keywords": [
  9133. "filesystem",
  9134. "iterator"
  9135. ],
  9136. "support": {
  9137. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  9138. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.5"
  9139. },
  9140. "funding": [
  9141. {
  9142. "url": "https://github.com/sebastianbergmann",
  9143. "type": "github"
  9144. }
  9145. ],
  9146. "time": "2020-09-28T05:57:25+00:00"
  9147. },
  9148. {
  9149. "name": "phpunit/php-invoker",
  9150. "version": "3.1.1",
  9151. "source": {
  9152. "type": "git",
  9153. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  9154. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  9155. },
  9156. "dist": {
  9157. "type": "zip",
  9158. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9159. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  9160. "shasum": "",
  9161. "mirrors": [
  9162. {
  9163. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9164. "preferred": true
  9165. }
  9166. ]
  9167. },
  9168. "require": {
  9169. "php": ">=7.3"
  9170. },
  9171. "require-dev": {
  9172. "ext-pcntl": "*",
  9173. "phpunit/phpunit": "^9.3"
  9174. },
  9175. "suggest": {
  9176. "ext-pcntl": "*"
  9177. },
  9178. "type": "library",
  9179. "extra": {
  9180. "branch-alias": {
  9181. "dev-master": "3.1-dev"
  9182. }
  9183. },
  9184. "autoload": {
  9185. "classmap": [
  9186. "src/"
  9187. ]
  9188. },
  9189. "notification-url": "https://packagist.org/downloads/",
  9190. "license": [
  9191. "BSD-3-Clause"
  9192. ],
  9193. "authors": [
  9194. {
  9195. "name": "Sebastian Bergmann",
  9196. "email": "sebastian@phpunit.de",
  9197. "role": "lead"
  9198. }
  9199. ],
  9200. "description": "Invoke callables with a timeout",
  9201. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  9202. "keywords": [
  9203. "process"
  9204. ],
  9205. "support": {
  9206. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  9207. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  9208. },
  9209. "funding": [
  9210. {
  9211. "url": "https://github.com/sebastianbergmann",
  9212. "type": "github"
  9213. }
  9214. ],
  9215. "time": "2020-09-28T05:58:55+00:00"
  9216. },
  9217. {
  9218. "name": "phpunit/php-text-template",
  9219. "version": "2.0.4",
  9220. "source": {
  9221. "type": "git",
  9222. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  9223. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  9224. },
  9225. "dist": {
  9226. "type": "zip",
  9227. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9228. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  9229. "shasum": "",
  9230. "mirrors": [
  9231. {
  9232. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9233. "preferred": true
  9234. }
  9235. ]
  9236. },
  9237. "require": {
  9238. "php": ">=7.3"
  9239. },
  9240. "require-dev": {
  9241. "phpunit/phpunit": "^9.3"
  9242. },
  9243. "type": "library",
  9244. "extra": {
  9245. "branch-alias": {
  9246. "dev-master": "2.0-dev"
  9247. }
  9248. },
  9249. "autoload": {
  9250. "classmap": [
  9251. "src/"
  9252. ]
  9253. },
  9254. "notification-url": "https://packagist.org/downloads/",
  9255. "license": [
  9256. "BSD-3-Clause"
  9257. ],
  9258. "authors": [
  9259. {
  9260. "name": "Sebastian Bergmann",
  9261. "email": "sebastian@phpunit.de",
  9262. "role": "lead"
  9263. }
  9264. ],
  9265. "description": "Simple template engine.",
  9266. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  9267. "keywords": [
  9268. "template"
  9269. ],
  9270. "support": {
  9271. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  9272. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  9273. },
  9274. "funding": [
  9275. {
  9276. "url": "https://github.com/sebastianbergmann",
  9277. "type": "github"
  9278. }
  9279. ],
  9280. "time": "2020-10-26T05:33:50+00:00"
  9281. },
  9282. {
  9283. "name": "phpunit/php-timer",
  9284. "version": "5.0.3",
  9285. "source": {
  9286. "type": "git",
  9287. "url": "https://github.com/sebastianbergmann/php-timer.git",
  9288. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  9289. },
  9290. "dist": {
  9291. "type": "zip",
  9292. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9293. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  9294. "shasum": "",
  9295. "mirrors": [
  9296. {
  9297. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9298. "preferred": true
  9299. }
  9300. ]
  9301. },
  9302. "require": {
  9303. "php": ">=7.3"
  9304. },
  9305. "require-dev": {
  9306. "phpunit/phpunit": "^9.3"
  9307. },
  9308. "type": "library",
  9309. "extra": {
  9310. "branch-alias": {
  9311. "dev-master": "5.0-dev"
  9312. }
  9313. },
  9314. "autoload": {
  9315. "classmap": [
  9316. "src/"
  9317. ]
  9318. },
  9319. "notification-url": "https://packagist.org/downloads/",
  9320. "license": [
  9321. "BSD-3-Clause"
  9322. ],
  9323. "authors": [
  9324. {
  9325. "name": "Sebastian Bergmann",
  9326. "email": "sebastian@phpunit.de",
  9327. "role": "lead"
  9328. }
  9329. ],
  9330. "description": "Utility class for timing",
  9331. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9332. "keywords": [
  9333. "timer"
  9334. ],
  9335. "support": {
  9336. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9337. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  9338. },
  9339. "funding": [
  9340. {
  9341. "url": "https://github.com/sebastianbergmann",
  9342. "type": "github"
  9343. }
  9344. ],
  9345. "time": "2020-10-26T13:16:10+00:00"
  9346. },
  9347. {
  9348. "name": "phpunit/phpunit",
  9349. "version": "9.5.8",
  9350. "source": {
  9351. "type": "git",
  9352. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9353. "reference": "191768ccd5c85513b4068bdbe99bb6390c7d54fb"
  9354. },
  9355. "dist": {
  9356. "type": "zip",
  9357. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/191768ccd5c85513b4068bdbe99bb6390c7d54fb",
  9358. "reference": "191768ccd5c85513b4068bdbe99bb6390c7d54fb",
  9359. "shasum": "",
  9360. "mirrors": [
  9361. {
  9362. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9363. "preferred": true
  9364. }
  9365. ]
  9366. },
  9367. "require": {
  9368. "doctrine/instantiator": "^1.3.1",
  9369. "ext-dom": "*",
  9370. "ext-json": "*",
  9371. "ext-libxml": "*",
  9372. "ext-mbstring": "*",
  9373. "ext-xml": "*",
  9374. "ext-xmlwriter": "*",
  9375. "myclabs/deep-copy": "^1.10.1",
  9376. "phar-io/manifest": "^2.0.3",
  9377. "phar-io/version": "^3.0.2",
  9378. "php": ">=7.3",
  9379. "phpspec/prophecy": "^1.12.1",
  9380. "phpunit/php-code-coverage": "^9.2.3",
  9381. "phpunit/php-file-iterator": "^3.0.5",
  9382. "phpunit/php-invoker": "^3.1.1",
  9383. "phpunit/php-text-template": "^2.0.3",
  9384. "phpunit/php-timer": "^5.0.2",
  9385. "sebastian/cli-parser": "^1.0.1",
  9386. "sebastian/code-unit": "^1.0.6",
  9387. "sebastian/comparator": "^4.0.5",
  9388. "sebastian/diff": "^4.0.3",
  9389. "sebastian/environment": "^5.1.3",
  9390. "sebastian/exporter": "^4.0.3",
  9391. "sebastian/global-state": "^5.0.1",
  9392. "sebastian/object-enumerator": "^4.0.3",
  9393. "sebastian/resource-operations": "^3.0.3",
  9394. "sebastian/type": "^2.3.4",
  9395. "sebastian/version": "^3.0.2"
  9396. },
  9397. "require-dev": {
  9398. "ext-pdo": "*",
  9399. "phpspec/prophecy-phpunit": "^2.0.1"
  9400. },
  9401. "suggest": {
  9402. "ext-soap": "*",
  9403. "ext-xdebug": "*"
  9404. },
  9405. "bin": [
  9406. "phpunit"
  9407. ],
  9408. "type": "library",
  9409. "extra": {
  9410. "branch-alias": {
  9411. "dev-master": "9.5-dev"
  9412. }
  9413. },
  9414. "autoload": {
  9415. "classmap": [
  9416. "src/"
  9417. ],
  9418. "files": [
  9419. "src/Framework/Assert/Functions.php"
  9420. ]
  9421. },
  9422. "notification-url": "https://packagist.org/downloads/",
  9423. "license": [
  9424. "BSD-3-Clause"
  9425. ],
  9426. "authors": [
  9427. {
  9428. "name": "Sebastian Bergmann",
  9429. "email": "sebastian@phpunit.de",
  9430. "role": "lead"
  9431. }
  9432. ],
  9433. "description": "The PHP Unit Testing framework.",
  9434. "homepage": "https://phpunit.de/",
  9435. "keywords": [
  9436. "phpunit",
  9437. "testing",
  9438. "xunit"
  9439. ],
  9440. "support": {
  9441. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9442. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.5.8"
  9443. },
  9444. "funding": [
  9445. {
  9446. "url": "https://phpunit.de/donate.html",
  9447. "type": "custom"
  9448. },
  9449. {
  9450. "url": "https://github.com/sebastianbergmann",
  9451. "type": "github"
  9452. }
  9453. ],
  9454. "time": "2021-07-31T15:17:34+00:00"
  9455. },
  9456. {
  9457. "name": "sebastian/cli-parser",
  9458. "version": "1.0.1",
  9459. "source": {
  9460. "type": "git",
  9461. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9462. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  9463. },
  9464. "dist": {
  9465. "type": "zip",
  9466. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9467. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  9468. "shasum": "",
  9469. "mirrors": [
  9470. {
  9471. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9472. "preferred": true
  9473. }
  9474. ]
  9475. },
  9476. "require": {
  9477. "php": ">=7.3"
  9478. },
  9479. "require-dev": {
  9480. "phpunit/phpunit": "^9.3"
  9481. },
  9482. "type": "library",
  9483. "extra": {
  9484. "branch-alias": {
  9485. "dev-master": "1.0-dev"
  9486. }
  9487. },
  9488. "autoload": {
  9489. "classmap": [
  9490. "src/"
  9491. ]
  9492. },
  9493. "notification-url": "https://packagist.org/downloads/",
  9494. "license": [
  9495. "BSD-3-Clause"
  9496. ],
  9497. "authors": [
  9498. {
  9499. "name": "Sebastian Bergmann",
  9500. "email": "sebastian@phpunit.de",
  9501. "role": "lead"
  9502. }
  9503. ],
  9504. "description": "Library for parsing CLI options",
  9505. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9506. "support": {
  9507. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9508. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  9509. },
  9510. "funding": [
  9511. {
  9512. "url": "https://github.com/sebastianbergmann",
  9513. "type": "github"
  9514. }
  9515. ],
  9516. "time": "2020-09-28T06:08:49+00:00"
  9517. },
  9518. {
  9519. "name": "sebastian/code-unit",
  9520. "version": "1.0.8",
  9521. "source": {
  9522. "type": "git",
  9523. "url": "https://github.com/sebastianbergmann/code-unit.git",
  9524. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  9525. },
  9526. "dist": {
  9527. "type": "zip",
  9528. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9529. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  9530. "shasum": "",
  9531. "mirrors": [
  9532. {
  9533. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9534. "preferred": true
  9535. }
  9536. ]
  9537. },
  9538. "require": {
  9539. "php": ">=7.3"
  9540. },
  9541. "require-dev": {
  9542. "phpunit/phpunit": "^9.3"
  9543. },
  9544. "type": "library",
  9545. "extra": {
  9546. "branch-alias": {
  9547. "dev-master": "1.0-dev"
  9548. }
  9549. },
  9550. "autoload": {
  9551. "classmap": [
  9552. "src/"
  9553. ]
  9554. },
  9555. "notification-url": "https://packagist.org/downloads/",
  9556. "license": [
  9557. "BSD-3-Clause"
  9558. ],
  9559. "authors": [
  9560. {
  9561. "name": "Sebastian Bergmann",
  9562. "email": "sebastian@phpunit.de",
  9563. "role": "lead"
  9564. }
  9565. ],
  9566. "description": "Collection of value objects that represent the PHP code units",
  9567. "homepage": "https://github.com/sebastianbergmann/code-unit",
  9568. "support": {
  9569. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  9570. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  9571. },
  9572. "funding": [
  9573. {
  9574. "url": "https://github.com/sebastianbergmann",
  9575. "type": "github"
  9576. }
  9577. ],
  9578. "time": "2020-10-26T13:08:54+00:00"
  9579. },
  9580. {
  9581. "name": "sebastian/code-unit-reverse-lookup",
  9582. "version": "2.0.3",
  9583. "source": {
  9584. "type": "git",
  9585. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9586. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  9587. },
  9588. "dist": {
  9589. "type": "zip",
  9590. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9591. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  9592. "shasum": "",
  9593. "mirrors": [
  9594. {
  9595. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9596. "preferred": true
  9597. }
  9598. ]
  9599. },
  9600. "require": {
  9601. "php": ">=7.3"
  9602. },
  9603. "require-dev": {
  9604. "phpunit/phpunit": "^9.3"
  9605. },
  9606. "type": "library",
  9607. "extra": {
  9608. "branch-alias": {
  9609. "dev-master": "2.0-dev"
  9610. }
  9611. },
  9612. "autoload": {
  9613. "classmap": [
  9614. "src/"
  9615. ]
  9616. },
  9617. "notification-url": "https://packagist.org/downloads/",
  9618. "license": [
  9619. "BSD-3-Clause"
  9620. ],
  9621. "authors": [
  9622. {
  9623. "name": "Sebastian Bergmann",
  9624. "email": "sebastian@phpunit.de"
  9625. }
  9626. ],
  9627. "description": "Looks up which function or method a line of code belongs to",
  9628. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9629. "support": {
  9630. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9631. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  9632. },
  9633. "funding": [
  9634. {
  9635. "url": "https://github.com/sebastianbergmann",
  9636. "type": "github"
  9637. }
  9638. ],
  9639. "time": "2020-09-28T05:30:19+00:00"
  9640. },
  9641. {
  9642. "name": "sebastian/comparator",
  9643. "version": "4.0.6",
  9644. "source": {
  9645. "type": "git",
  9646. "url": "https://github.com/sebastianbergmann/comparator.git",
  9647. "reference": "55f4261989e546dc112258c7a75935a81a7ce382"
  9648. },
  9649. "dist": {
  9650. "type": "zip",
  9651. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55f4261989e546dc112258c7a75935a81a7ce382",
  9652. "reference": "55f4261989e546dc112258c7a75935a81a7ce382",
  9653. "shasum": "",
  9654. "mirrors": [
  9655. {
  9656. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9657. "preferred": true
  9658. }
  9659. ]
  9660. },
  9661. "require": {
  9662. "php": ">=7.3",
  9663. "sebastian/diff": "^4.0",
  9664. "sebastian/exporter": "^4.0"
  9665. },
  9666. "require-dev": {
  9667. "phpunit/phpunit": "^9.3"
  9668. },
  9669. "type": "library",
  9670. "extra": {
  9671. "branch-alias": {
  9672. "dev-master": "4.0-dev"
  9673. }
  9674. },
  9675. "autoload": {
  9676. "classmap": [
  9677. "src/"
  9678. ]
  9679. },
  9680. "notification-url": "https://packagist.org/downloads/",
  9681. "license": [
  9682. "BSD-3-Clause"
  9683. ],
  9684. "authors": [
  9685. {
  9686. "name": "Sebastian Bergmann",
  9687. "email": "sebastian@phpunit.de"
  9688. },
  9689. {
  9690. "name": "Jeff Welch",
  9691. "email": "whatthejeff@gmail.com"
  9692. },
  9693. {
  9694. "name": "Volker Dusch",
  9695. "email": "github@wallbash.com"
  9696. },
  9697. {
  9698. "name": "Bernhard Schussek",
  9699. "email": "bschussek@2bepublished.at"
  9700. }
  9701. ],
  9702. "description": "Provides the functionality to compare PHP values for equality",
  9703. "homepage": "https://github.com/sebastianbergmann/comparator",
  9704. "keywords": [
  9705. "comparator",
  9706. "compare",
  9707. "equality"
  9708. ],
  9709. "support": {
  9710. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9711. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.6"
  9712. },
  9713. "funding": [
  9714. {
  9715. "url": "https://github.com/sebastianbergmann",
  9716. "type": "github"
  9717. }
  9718. ],
  9719. "time": "2020-10-26T15:49:45+00:00"
  9720. },
  9721. {
  9722. "name": "sebastian/complexity",
  9723. "version": "2.0.2",
  9724. "source": {
  9725. "type": "git",
  9726. "url": "https://github.com/sebastianbergmann/complexity.git",
  9727. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  9728. },
  9729. "dist": {
  9730. "type": "zip",
  9731. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  9732. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  9733. "shasum": "",
  9734. "mirrors": [
  9735. {
  9736. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9737. "preferred": true
  9738. }
  9739. ]
  9740. },
  9741. "require": {
  9742. "nikic/php-parser": "^4.7",
  9743. "php": ">=7.3"
  9744. },
  9745. "require-dev": {
  9746. "phpunit/phpunit": "^9.3"
  9747. },
  9748. "type": "library",
  9749. "extra": {
  9750. "branch-alias": {
  9751. "dev-master": "2.0-dev"
  9752. }
  9753. },
  9754. "autoload": {
  9755. "classmap": [
  9756. "src/"
  9757. ]
  9758. },
  9759. "notification-url": "https://packagist.org/downloads/",
  9760. "license": [
  9761. "BSD-3-Clause"
  9762. ],
  9763. "authors": [
  9764. {
  9765. "name": "Sebastian Bergmann",
  9766. "email": "sebastian@phpunit.de",
  9767. "role": "lead"
  9768. }
  9769. ],
  9770. "description": "Library for calculating the complexity of PHP code units",
  9771. "homepage": "https://github.com/sebastianbergmann/complexity",
  9772. "support": {
  9773. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9774. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  9775. },
  9776. "funding": [
  9777. {
  9778. "url": "https://github.com/sebastianbergmann",
  9779. "type": "github"
  9780. }
  9781. ],
  9782. "time": "2020-10-26T15:52:27+00:00"
  9783. },
  9784. {
  9785. "name": "sebastian/diff",
  9786. "version": "4.0.4",
  9787. "source": {
  9788. "type": "git",
  9789. "url": "https://github.com/sebastianbergmann/diff.git",
  9790. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d"
  9791. },
  9792. "dist": {
  9793. "type": "zip",
  9794. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9795. "reference": "3461e3fccc7cfdfc2720be910d3bd73c69be590d",
  9796. "shasum": "",
  9797. "mirrors": [
  9798. {
  9799. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9800. "preferred": true
  9801. }
  9802. ]
  9803. },
  9804. "require": {
  9805. "php": ">=7.3"
  9806. },
  9807. "require-dev": {
  9808. "phpunit/phpunit": "^9.3",
  9809. "symfony/process": "^4.2 || ^5"
  9810. },
  9811. "type": "library",
  9812. "extra": {
  9813. "branch-alias": {
  9814. "dev-master": "4.0-dev"
  9815. }
  9816. },
  9817. "autoload": {
  9818. "classmap": [
  9819. "src/"
  9820. ]
  9821. },
  9822. "notification-url": "https://packagist.org/downloads/",
  9823. "license": [
  9824. "BSD-3-Clause"
  9825. ],
  9826. "authors": [
  9827. {
  9828. "name": "Sebastian Bergmann",
  9829. "email": "sebastian@phpunit.de"
  9830. },
  9831. {
  9832. "name": "Kore Nordmann",
  9833. "email": "mail@kore-nordmann.de"
  9834. }
  9835. ],
  9836. "description": "Diff implementation",
  9837. "homepage": "https://github.com/sebastianbergmann/diff",
  9838. "keywords": [
  9839. "diff",
  9840. "udiff",
  9841. "unidiff",
  9842. "unified diff"
  9843. ],
  9844. "support": {
  9845. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9846. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.4"
  9847. },
  9848. "funding": [
  9849. {
  9850. "url": "https://github.com/sebastianbergmann",
  9851. "type": "github"
  9852. }
  9853. ],
  9854. "time": "2020-10-26T13:10:38+00:00"
  9855. },
  9856. {
  9857. "name": "sebastian/environment",
  9858. "version": "5.1.3",
  9859. "source": {
  9860. "type": "git",
  9861. "url": "https://github.com/sebastianbergmann/environment.git",
  9862. "reference": "388b6ced16caa751030f6a69e588299fa09200ac"
  9863. },
  9864. "dist": {
  9865. "type": "zip",
  9866. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/388b6ced16caa751030f6a69e588299fa09200ac",
  9867. "reference": "388b6ced16caa751030f6a69e588299fa09200ac",
  9868. "shasum": "",
  9869. "mirrors": [
  9870. {
  9871. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9872. "preferred": true
  9873. }
  9874. ]
  9875. },
  9876. "require": {
  9877. "php": ">=7.3"
  9878. },
  9879. "require-dev": {
  9880. "phpunit/phpunit": "^9.3"
  9881. },
  9882. "suggest": {
  9883. "ext-posix": "*"
  9884. },
  9885. "type": "library",
  9886. "extra": {
  9887. "branch-alias": {
  9888. "dev-master": "5.1-dev"
  9889. }
  9890. },
  9891. "autoload": {
  9892. "classmap": [
  9893. "src/"
  9894. ]
  9895. },
  9896. "notification-url": "https://packagist.org/downloads/",
  9897. "license": [
  9898. "BSD-3-Clause"
  9899. ],
  9900. "authors": [
  9901. {
  9902. "name": "Sebastian Bergmann",
  9903. "email": "sebastian@phpunit.de"
  9904. }
  9905. ],
  9906. "description": "Provides functionality to handle HHVM/PHP environments",
  9907. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9908. "keywords": [
  9909. "Xdebug",
  9910. "environment",
  9911. "hhvm"
  9912. ],
  9913. "support": {
  9914. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9915. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.3"
  9916. },
  9917. "funding": [
  9918. {
  9919. "url": "https://github.com/sebastianbergmann",
  9920. "type": "github"
  9921. }
  9922. ],
  9923. "time": "2020-09-28T05:52:38+00:00"
  9924. },
  9925. {
  9926. "name": "sebastian/exporter",
  9927. "version": "4.0.3",
  9928. "source": {
  9929. "type": "git",
  9930. "url": "https://github.com/sebastianbergmann/exporter.git",
  9931. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65"
  9932. },
  9933. "dist": {
  9934. "type": "zip",
  9935. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  9936. "reference": "d89cc98761b8cb5a1a235a6b703ae50d34080e65",
  9937. "shasum": "",
  9938. "mirrors": [
  9939. {
  9940. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9941. "preferred": true
  9942. }
  9943. ]
  9944. },
  9945. "require": {
  9946. "php": ">=7.3",
  9947. "sebastian/recursion-context": "^4.0"
  9948. },
  9949. "require-dev": {
  9950. "ext-mbstring": "*",
  9951. "phpunit/phpunit": "^9.3"
  9952. },
  9953. "type": "library",
  9954. "extra": {
  9955. "branch-alias": {
  9956. "dev-master": "4.0-dev"
  9957. }
  9958. },
  9959. "autoload": {
  9960. "classmap": [
  9961. "src/"
  9962. ]
  9963. },
  9964. "notification-url": "https://packagist.org/downloads/",
  9965. "license": [
  9966. "BSD-3-Clause"
  9967. ],
  9968. "authors": [
  9969. {
  9970. "name": "Sebastian Bergmann",
  9971. "email": "sebastian@phpunit.de"
  9972. },
  9973. {
  9974. "name": "Jeff Welch",
  9975. "email": "whatthejeff@gmail.com"
  9976. },
  9977. {
  9978. "name": "Volker Dusch",
  9979. "email": "github@wallbash.com"
  9980. },
  9981. {
  9982. "name": "Adam Harvey",
  9983. "email": "aharvey@php.net"
  9984. },
  9985. {
  9986. "name": "Bernhard Schussek",
  9987. "email": "bschussek@gmail.com"
  9988. }
  9989. ],
  9990. "description": "Provides the functionality to export PHP variables for visualization",
  9991. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9992. "keywords": [
  9993. "export",
  9994. "exporter"
  9995. ],
  9996. "support": {
  9997. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9998. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.3"
  9999. },
  10000. "funding": [
  10001. {
  10002. "url": "https://github.com/sebastianbergmann",
  10003. "type": "github"
  10004. }
  10005. ],
  10006. "time": "2020-09-28T05:24:23+00:00"
  10007. },
  10008. {
  10009. "name": "sebastian/global-state",
  10010. "version": "5.0.3",
  10011. "source": {
  10012. "type": "git",
  10013. "url": "https://github.com/sebastianbergmann/global-state.git",
  10014. "reference": "23bd5951f7ff26f12d4e3242864df3e08dec4e49"
  10015. },
  10016. "dist": {
  10017. "type": "zip",
  10018. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/23bd5951f7ff26f12d4e3242864df3e08dec4e49",
  10019. "reference": "23bd5951f7ff26f12d4e3242864df3e08dec4e49",
  10020. "shasum": "",
  10021. "mirrors": [
  10022. {
  10023. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10024. "preferred": true
  10025. }
  10026. ]
  10027. },
  10028. "require": {
  10029. "php": ">=7.3",
  10030. "sebastian/object-reflector": "^2.0",
  10031. "sebastian/recursion-context": "^4.0"
  10032. },
  10033. "require-dev": {
  10034. "ext-dom": "*",
  10035. "phpunit/phpunit": "^9.3"
  10036. },
  10037. "suggest": {
  10038. "ext-uopz": "*"
  10039. },
  10040. "type": "library",
  10041. "extra": {
  10042. "branch-alias": {
  10043. "dev-master": "5.0-dev"
  10044. }
  10045. },
  10046. "autoload": {
  10047. "classmap": [
  10048. "src/"
  10049. ]
  10050. },
  10051. "notification-url": "https://packagist.org/downloads/",
  10052. "license": [
  10053. "BSD-3-Clause"
  10054. ],
  10055. "authors": [
  10056. {
  10057. "name": "Sebastian Bergmann",
  10058. "email": "sebastian@phpunit.de"
  10059. }
  10060. ],
  10061. "description": "Snapshotting of global state",
  10062. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  10063. "keywords": [
  10064. "global state"
  10065. ],
  10066. "support": {
  10067. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  10068. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.3"
  10069. },
  10070. "funding": [
  10071. {
  10072. "url": "https://github.com/sebastianbergmann",
  10073. "type": "github"
  10074. }
  10075. ],
  10076. "time": "2021-06-11T13:31:12+00:00"
  10077. },
  10078. {
  10079. "name": "sebastian/lines-of-code",
  10080. "version": "1.0.3",
  10081. "source": {
  10082. "type": "git",
  10083. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  10084. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  10085. },
  10086. "dist": {
  10087. "type": "zip",
  10088. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10089. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  10090. "shasum": "",
  10091. "mirrors": [
  10092. {
  10093. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10094. "preferred": true
  10095. }
  10096. ]
  10097. },
  10098. "require": {
  10099. "nikic/php-parser": "^4.6",
  10100. "php": ">=7.3"
  10101. },
  10102. "require-dev": {
  10103. "phpunit/phpunit": "^9.3"
  10104. },
  10105. "type": "library",
  10106. "extra": {
  10107. "branch-alias": {
  10108. "dev-master": "1.0-dev"
  10109. }
  10110. },
  10111. "autoload": {
  10112. "classmap": [
  10113. "src/"
  10114. ]
  10115. },
  10116. "notification-url": "https://packagist.org/downloads/",
  10117. "license": [
  10118. "BSD-3-Clause"
  10119. ],
  10120. "authors": [
  10121. {
  10122. "name": "Sebastian Bergmann",
  10123. "email": "sebastian@phpunit.de",
  10124. "role": "lead"
  10125. }
  10126. ],
  10127. "description": "Library for counting the lines of code in PHP source code",
  10128. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  10129. "support": {
  10130. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  10131. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  10132. },
  10133. "funding": [
  10134. {
  10135. "url": "https://github.com/sebastianbergmann",
  10136. "type": "github"
  10137. }
  10138. ],
  10139. "time": "2020-11-28T06:42:11+00:00"
  10140. },
  10141. {
  10142. "name": "sebastian/object-enumerator",
  10143. "version": "4.0.4",
  10144. "source": {
  10145. "type": "git",
  10146. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  10147. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  10148. },
  10149. "dist": {
  10150. "type": "zip",
  10151. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  10152. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  10153. "shasum": "",
  10154. "mirrors": [
  10155. {
  10156. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10157. "preferred": true
  10158. }
  10159. ]
  10160. },
  10161. "require": {
  10162. "php": ">=7.3",
  10163. "sebastian/object-reflector": "^2.0",
  10164. "sebastian/recursion-context": "^4.0"
  10165. },
  10166. "require-dev": {
  10167. "phpunit/phpunit": "^9.3"
  10168. },
  10169. "type": "library",
  10170. "extra": {
  10171. "branch-alias": {
  10172. "dev-master": "4.0-dev"
  10173. }
  10174. },
  10175. "autoload": {
  10176. "classmap": [
  10177. "src/"
  10178. ]
  10179. },
  10180. "notification-url": "https://packagist.org/downloads/",
  10181. "license": [
  10182. "BSD-3-Clause"
  10183. ],
  10184. "authors": [
  10185. {
  10186. "name": "Sebastian Bergmann",
  10187. "email": "sebastian@phpunit.de"
  10188. }
  10189. ],
  10190. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  10191. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  10192. "support": {
  10193. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  10194. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  10195. },
  10196. "funding": [
  10197. {
  10198. "url": "https://github.com/sebastianbergmann",
  10199. "type": "github"
  10200. }
  10201. ],
  10202. "time": "2020-10-26T13:12:34+00:00"
  10203. },
  10204. {
  10205. "name": "sebastian/object-reflector",
  10206. "version": "2.0.4",
  10207. "source": {
  10208. "type": "git",
  10209. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  10210. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  10211. },
  10212. "dist": {
  10213. "type": "zip",
  10214. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10215. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  10216. "shasum": "",
  10217. "mirrors": [
  10218. {
  10219. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10220. "preferred": true
  10221. }
  10222. ]
  10223. },
  10224. "require": {
  10225. "php": ">=7.3"
  10226. },
  10227. "require-dev": {
  10228. "phpunit/phpunit": "^9.3"
  10229. },
  10230. "type": "library",
  10231. "extra": {
  10232. "branch-alias": {
  10233. "dev-master": "2.0-dev"
  10234. }
  10235. },
  10236. "autoload": {
  10237. "classmap": [
  10238. "src/"
  10239. ]
  10240. },
  10241. "notification-url": "https://packagist.org/downloads/",
  10242. "license": [
  10243. "BSD-3-Clause"
  10244. ],
  10245. "authors": [
  10246. {
  10247. "name": "Sebastian Bergmann",
  10248. "email": "sebastian@phpunit.de"
  10249. }
  10250. ],
  10251. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  10252. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  10253. "support": {
  10254. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  10255. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  10256. },
  10257. "funding": [
  10258. {
  10259. "url": "https://github.com/sebastianbergmann",
  10260. "type": "github"
  10261. }
  10262. ],
  10263. "time": "2020-10-26T13:14:26+00:00"
  10264. },
  10265. {
  10266. "name": "sebastian/recursion-context",
  10267. "version": "4.0.4",
  10268. "source": {
  10269. "type": "git",
  10270. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  10271. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172"
  10272. },
  10273. "dist": {
  10274. "type": "zip",
  10275. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/cd9d8cf3c5804de4341c283ed787f099f5506172",
  10276. "reference": "cd9d8cf3c5804de4341c283ed787f099f5506172",
  10277. "shasum": "",
  10278. "mirrors": [
  10279. {
  10280. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10281. "preferred": true
  10282. }
  10283. ]
  10284. },
  10285. "require": {
  10286. "php": ">=7.3"
  10287. },
  10288. "require-dev": {
  10289. "phpunit/phpunit": "^9.3"
  10290. },
  10291. "type": "library",
  10292. "extra": {
  10293. "branch-alias": {
  10294. "dev-master": "4.0-dev"
  10295. }
  10296. },
  10297. "autoload": {
  10298. "classmap": [
  10299. "src/"
  10300. ]
  10301. },
  10302. "notification-url": "https://packagist.org/downloads/",
  10303. "license": [
  10304. "BSD-3-Clause"
  10305. ],
  10306. "authors": [
  10307. {
  10308. "name": "Sebastian Bergmann",
  10309. "email": "sebastian@phpunit.de"
  10310. },
  10311. {
  10312. "name": "Jeff Welch",
  10313. "email": "whatthejeff@gmail.com"
  10314. },
  10315. {
  10316. "name": "Adam Harvey",
  10317. "email": "aharvey@php.net"
  10318. }
  10319. ],
  10320. "description": "Provides functionality to recursively process PHP variables",
  10321. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  10322. "support": {
  10323. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  10324. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.4"
  10325. },
  10326. "funding": [
  10327. {
  10328. "url": "https://github.com/sebastianbergmann",
  10329. "type": "github"
  10330. }
  10331. ],
  10332. "time": "2020-10-26T13:17:30+00:00"
  10333. },
  10334. {
  10335. "name": "sebastian/resource-operations",
  10336. "version": "3.0.3",
  10337. "source": {
  10338. "type": "git",
  10339. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  10340. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  10341. },
  10342. "dist": {
  10343. "type": "zip",
  10344. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10345. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  10346. "shasum": "",
  10347. "mirrors": [
  10348. {
  10349. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10350. "preferred": true
  10351. }
  10352. ]
  10353. },
  10354. "require": {
  10355. "php": ">=7.3"
  10356. },
  10357. "require-dev": {
  10358. "phpunit/phpunit": "^9.0"
  10359. },
  10360. "type": "library",
  10361. "extra": {
  10362. "branch-alias": {
  10363. "dev-master": "3.0-dev"
  10364. }
  10365. },
  10366. "autoload": {
  10367. "classmap": [
  10368. "src/"
  10369. ]
  10370. },
  10371. "notification-url": "https://packagist.org/downloads/",
  10372. "license": [
  10373. "BSD-3-Clause"
  10374. ],
  10375. "authors": [
  10376. {
  10377. "name": "Sebastian Bergmann",
  10378. "email": "sebastian@phpunit.de"
  10379. }
  10380. ],
  10381. "description": "Provides a list of PHP built-in functions that operate on resources",
  10382. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  10383. "support": {
  10384. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  10385. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  10386. },
  10387. "funding": [
  10388. {
  10389. "url": "https://github.com/sebastianbergmann",
  10390. "type": "github"
  10391. }
  10392. ],
  10393. "abandoned": true,
  10394. "time": "2020-09-28T06:45:17+00:00"
  10395. },
  10396. {
  10397. "name": "sebastian/type",
  10398. "version": "2.3.4",
  10399. "source": {
  10400. "type": "git",
  10401. "url": "https://github.com/sebastianbergmann/type.git",
  10402. "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914"
  10403. },
  10404. "dist": {
  10405. "type": "zip",
  10406. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/b8cd8a1c753c90bc1a0f5372170e3e489136f914",
  10407. "reference": "b8cd8a1c753c90bc1a0f5372170e3e489136f914",
  10408. "shasum": "",
  10409. "mirrors": [
  10410. {
  10411. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10412. "preferred": true
  10413. }
  10414. ]
  10415. },
  10416. "require": {
  10417. "php": ">=7.3"
  10418. },
  10419. "require-dev": {
  10420. "phpunit/phpunit": "^9.3"
  10421. },
  10422. "type": "library",
  10423. "extra": {
  10424. "branch-alias": {
  10425. "dev-master": "2.3-dev"
  10426. }
  10427. },
  10428. "autoload": {
  10429. "classmap": [
  10430. "src/"
  10431. ]
  10432. },
  10433. "notification-url": "https://packagist.org/downloads/",
  10434. "license": [
  10435. "BSD-3-Clause"
  10436. ],
  10437. "authors": [
  10438. {
  10439. "name": "Sebastian Bergmann",
  10440. "email": "sebastian@phpunit.de",
  10441. "role": "lead"
  10442. }
  10443. ],
  10444. "description": "Collection of value objects that represent the types of the PHP type system",
  10445. "homepage": "https://github.com/sebastianbergmann/type",
  10446. "support": {
  10447. "issues": "https://github.com/sebastianbergmann/type/issues",
  10448. "source": "https://github.com/sebastianbergmann/type/tree/2.3.4"
  10449. },
  10450. "funding": [
  10451. {
  10452. "url": "https://github.com/sebastianbergmann",
  10453. "type": "github"
  10454. }
  10455. ],
  10456. "time": "2021-06-15T12:49:02+00:00"
  10457. },
  10458. {
  10459. "name": "sebastian/version",
  10460. "version": "3.0.2",
  10461. "source": {
  10462. "type": "git",
  10463. "url": "https://github.com/sebastianbergmann/version.git",
  10464. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  10465. },
  10466. "dist": {
  10467. "type": "zip",
  10468. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  10469. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  10470. "shasum": "",
  10471. "mirrors": [
  10472. {
  10473. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10474. "preferred": true
  10475. }
  10476. ]
  10477. },
  10478. "require": {
  10479. "php": ">=7.3"
  10480. },
  10481. "type": "library",
  10482. "extra": {
  10483. "branch-alias": {
  10484. "dev-master": "3.0-dev"
  10485. }
  10486. },
  10487. "autoload": {
  10488. "classmap": [
  10489. "src/"
  10490. ]
  10491. },
  10492. "notification-url": "https://packagist.org/downloads/",
  10493. "license": [
  10494. "BSD-3-Clause"
  10495. ],
  10496. "authors": [
  10497. {
  10498. "name": "Sebastian Bergmann",
  10499. "email": "sebastian@phpunit.de",
  10500. "role": "lead"
  10501. }
  10502. ],
  10503. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  10504. "homepage": "https://github.com/sebastianbergmann/version",
  10505. "support": {
  10506. "issues": "https://github.com/sebastianbergmann/version/issues",
  10507. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  10508. },
  10509. "funding": [
  10510. {
  10511. "url": "https://github.com/sebastianbergmann",
  10512. "type": "github"
  10513. }
  10514. ],
  10515. "time": "2020-09-28T06:39:44+00:00"
  10516. },
  10517. {
  10518. "name": "theseer/tokenizer",
  10519. "version": "1.2.1",
  10520. "source": {
  10521. "type": "git",
  10522. "url": "https://github.com/theseer/tokenizer.git",
  10523. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  10524. },
  10525. "dist": {
  10526. "type": "zip",
  10527. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  10528. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  10529. "shasum": "",
  10530. "mirrors": [
  10531. {
  10532. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  10533. "preferred": true
  10534. }
  10535. ]
  10536. },
  10537. "require": {
  10538. "ext-dom": "*",
  10539. "ext-tokenizer": "*",
  10540. "ext-xmlwriter": "*",
  10541. "php": "^7.2 || ^8.0"
  10542. },
  10543. "type": "library",
  10544. "autoload": {
  10545. "classmap": [
  10546. "src/"
  10547. ]
  10548. },
  10549. "notification-url": "https://packagist.org/downloads/",
  10550. "license": [
  10551. "BSD-3-Clause"
  10552. ],
  10553. "authors": [
  10554. {
  10555. "name": "Arne Blankerts",
  10556. "email": "arne@blankerts.de",
  10557. "role": "Developer"
  10558. }
  10559. ],
  10560. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10561. "support": {
  10562. "issues": "https://github.com/theseer/tokenizer/issues",
  10563. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  10564. },
  10565. "funding": [
  10566. {
  10567. "url": "https://github.com/theseer",
  10568. "type": "github"
  10569. }
  10570. ],
  10571. "time": "2021-07-28T10:34:58+00:00"
  10572. }
  10573. ],
  10574. "aliases": [],
  10575. "minimum-stability": "dev",
  10576. "stability-flags": [],
  10577. "prefer-stable": true,
  10578. "prefer-lowest": false,
  10579. "platform": {
  10580. "php": "^7.3|^8.0"
  10581. },
  10582. "platform-dev": [],
  10583. "plugin-api-version": "2.0.0"
  10584. }