composer.lock 252 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292
  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": "24c364909d2e0699464b848056f1a583",
  8. "packages": [
  9. {
  10. "name": "brick/math",
  11. "version": "0.11.0",
  12. "dist": {
  13. "type": "zip",
  14. "url": "https://mirrors.tencent.com/repository/composer/brick/math/0.11.0/brick-math-0.11.0.zip",
  15. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  16. "shasum": ""
  17. },
  18. "require": {
  19. "php": "^8.0"
  20. },
  21. "require-dev": {
  22. "php-coveralls/php-coveralls": "^2.2",
  23. "phpunit/phpunit": "^9.0",
  24. "vimeo/psalm": "5.0.0"
  25. },
  26. "type": "library",
  27. "autoload": {
  28. "psr-4": {
  29. "Brick\\Math\\": "src/"
  30. }
  31. },
  32. "license": [
  33. "MIT"
  34. ],
  35. "description": "Arbitrary-precision arithmetic library",
  36. "keywords": [
  37. "Arbitrary-precision",
  38. "BigInteger",
  39. "BigRational",
  40. "arithmetic",
  41. "bigdecimal",
  42. "bignum",
  43. "brick",
  44. "math"
  45. ],
  46. "time": "2023-01-15T23:15:59+00:00"
  47. },
  48. {
  49. "name": "carbonphp/carbon-doctrine-types",
  50. "version": "2.1.0",
  51. "dist": {
  52. "type": "zip",
  53. "url": "https://mirrors.tencent.com/repository/composer/carbonphp/carbon-doctrine-types/2.1.0/carbonphp-carbon-doctrine-types-2.1.0.zip",
  54. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  55. "shasum": ""
  56. },
  57. "require": {
  58. "php": "^7.4 || ^8.0"
  59. },
  60. "conflict": {
  61. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  62. },
  63. "require-dev": {
  64. "doctrine/dbal": "^3.7.0",
  65. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  66. "phpunit/phpunit": "^10.3"
  67. },
  68. "type": "library",
  69. "autoload": {
  70. "psr-4": {
  71. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  72. }
  73. },
  74. "license": [
  75. "MIT"
  76. ],
  77. "authors": [
  78. {
  79. "name": "KyleKatarn",
  80. "email": "kylekatarnls@gmail.com"
  81. }
  82. ],
  83. "description": "Types to use Carbon in Doctrine",
  84. "keywords": [
  85. "carbon",
  86. "date",
  87. "datetime",
  88. "doctrine",
  89. "time"
  90. ],
  91. "time": "2023-12-11T17:09:12+00:00"
  92. },
  93. {
  94. "name": "dflydev/dot-access-data",
  95. "version": "v3.0.2",
  96. "dist": {
  97. "type": "zip",
  98. "url": "https://mirrors.tencent.com/repository/composer/dflydev/dot-access-data/v3.0.2/dflydev-dot-access-data-v3.0.2.zip",
  99. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  100. "shasum": ""
  101. },
  102. "require": {
  103. "php": "^7.1 || ^8.0"
  104. },
  105. "require-dev": {
  106. "phpstan/phpstan": "^0.12.42",
  107. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  108. "scrutinizer/ocular": "1.6.0",
  109. "squizlabs/php_codesniffer": "^3.5",
  110. "vimeo/psalm": "^4.0.0"
  111. },
  112. "type": "library",
  113. "extra": {
  114. "branch-alias": {
  115. "dev-main": "3.x-dev"
  116. }
  117. },
  118. "autoload": {
  119. "psr-4": {
  120. "Dflydev\\DotAccessData\\": "src/"
  121. }
  122. },
  123. "license": [
  124. "MIT"
  125. ],
  126. "authors": [
  127. {
  128. "name": "Dragonfly Development Inc.",
  129. "email": "info@dflydev.com",
  130. "homepage": "http://dflydev.com"
  131. },
  132. {
  133. "name": "Beau Simensen",
  134. "email": "beau@dflydev.com",
  135. "homepage": "http://beausimensen.com"
  136. },
  137. {
  138. "name": "Carlos Frutos",
  139. "email": "carlos@kiwing.it",
  140. "homepage": "https://github.com/cfrutos"
  141. },
  142. {
  143. "name": "Colin O'Dell",
  144. "email": "colinodell@gmail.com",
  145. "homepage": "https://www.colinodell.com"
  146. }
  147. ],
  148. "description": "Given a deep data structure, access data by dot notation.",
  149. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  150. "keywords": [
  151. "access",
  152. "data",
  153. "dot",
  154. "notation"
  155. ],
  156. "time": "2022-10-27T11:44:00+00:00"
  157. },
  158. {
  159. "name": "doctrine/inflector",
  160. "version": "2.0.8",
  161. "dist": {
  162. "type": "zip",
  163. "url": "https://mirrors.tencent.com/repository/composer/doctrine/inflector/2.0.8/doctrine-inflector-2.0.8.zip",
  164. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  165. "shasum": ""
  166. },
  167. "require": {
  168. "php": "^7.2 || ^8.0"
  169. },
  170. "require-dev": {
  171. "doctrine/coding-standard": "^11.0",
  172. "phpstan/phpstan": "^1.8",
  173. "phpstan/phpstan-phpunit": "^1.1",
  174. "phpstan/phpstan-strict-rules": "^1.3",
  175. "phpunit/phpunit": "^8.5 || ^9.5",
  176. "vimeo/psalm": "^4.25 || ^5.4"
  177. },
  178. "type": "library",
  179. "autoload": {
  180. "psr-4": {
  181. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  182. }
  183. },
  184. "license": [
  185. "MIT"
  186. ],
  187. "authors": [
  188. {
  189. "name": "Guilherme Blanco",
  190. "email": "guilhermeblanco@gmail.com"
  191. },
  192. {
  193. "name": "Roman Borschel",
  194. "email": "roman@code-factory.org"
  195. },
  196. {
  197. "name": "Benjamin Eberlei",
  198. "email": "kontakt@beberlei.de"
  199. },
  200. {
  201. "name": "Jonathan Wage",
  202. "email": "jonwage@gmail.com"
  203. },
  204. {
  205. "name": "Johannes Schmitt",
  206. "email": "schmittjoh@gmail.com"
  207. }
  208. ],
  209. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  210. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  211. "keywords": [
  212. "inflection",
  213. "inflector",
  214. "lowercase",
  215. "manipulation",
  216. "php",
  217. "plural",
  218. "singular",
  219. "strings",
  220. "uppercase",
  221. "words"
  222. ],
  223. "time": "2023-06-16T13:40:37+00:00"
  224. },
  225. {
  226. "name": "doctrine/lexer",
  227. "version": "3.0.0",
  228. "dist": {
  229. "type": "zip",
  230. "url": "https://mirrors.tencent.com/repository/composer/doctrine/lexer/3.0.0/doctrine-lexer-3.0.0.zip",
  231. "reference": "84a527db05647743d50373e0ec53a152f2cde568",
  232. "shasum": ""
  233. },
  234. "require": {
  235. "php": "^8.1"
  236. },
  237. "require-dev": {
  238. "doctrine/coding-standard": "^10",
  239. "phpstan/phpstan": "^1.9",
  240. "phpunit/phpunit": "^9.5",
  241. "psalm/plugin-phpunit": "^0.18.3",
  242. "vimeo/psalm": "^5.0"
  243. },
  244. "type": "library",
  245. "autoload": {
  246. "psr-4": {
  247. "Doctrine\\Common\\Lexer\\": "src"
  248. }
  249. },
  250. "license": [
  251. "MIT"
  252. ],
  253. "authors": [
  254. {
  255. "name": "Guilherme Blanco",
  256. "email": "guilhermeblanco@gmail.com"
  257. },
  258. {
  259. "name": "Roman Borschel",
  260. "email": "roman@code-factory.org"
  261. },
  262. {
  263. "name": "Johannes Schmitt",
  264. "email": "schmittjoh@gmail.com"
  265. }
  266. ],
  267. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  268. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  269. "keywords": [
  270. "annotations",
  271. "docblock",
  272. "lexer",
  273. "parser",
  274. "php"
  275. ],
  276. "time": "2022-12-15T16:57:16+00:00"
  277. },
  278. {
  279. "name": "dragonmantank/cron-expression",
  280. "version": "v3.3.3",
  281. "dist": {
  282. "type": "zip",
  283. "url": "https://mirrors.tencent.com/repository/composer/dragonmantank/cron-expression/v3.3.3/dragonmantank-cron-expression-v3.3.3.zip",
  284. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  285. "shasum": ""
  286. },
  287. "require": {
  288. "php": "^7.2|^8.0",
  289. "webmozart/assert": "^1.0"
  290. },
  291. "replace": {
  292. "mtdowling/cron-expression": "^1.0"
  293. },
  294. "require-dev": {
  295. "phpstan/extension-installer": "^1.0",
  296. "phpstan/phpstan": "^1.0",
  297. "phpstan/phpstan-webmozart-assert": "^1.0",
  298. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  299. },
  300. "type": "library",
  301. "autoload": {
  302. "psr-4": {
  303. "Cron\\": "src/Cron/"
  304. }
  305. },
  306. "license": [
  307. "MIT"
  308. ],
  309. "authors": [
  310. {
  311. "name": "Chris Tankersley",
  312. "email": "chris@ctankersley.com",
  313. "homepage": "https://github.com/dragonmantank"
  314. }
  315. ],
  316. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  317. "keywords": [
  318. "cron",
  319. "schedule"
  320. ],
  321. "time": "2023-08-10T19:36:49+00:00"
  322. },
  323. {
  324. "name": "egulias/email-validator",
  325. "version": "4.0.2",
  326. "dist": {
  327. "type": "zip",
  328. "url": "https://mirrors.cloud.tencent.com/repository/composer/egulias/email-validator/4.0.2/egulias-email-validator-4.0.2.zip",
  329. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  330. "shasum": ""
  331. },
  332. "require": {
  333. "doctrine/lexer": "^2.0 || ^3.0",
  334. "php": ">=8.1",
  335. "symfony/polyfill-intl-idn": "^1.26"
  336. },
  337. "require-dev": {
  338. "phpunit/phpunit": "^10.2",
  339. "vimeo/psalm": "^5.12"
  340. },
  341. "suggest": {
  342. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  343. },
  344. "type": "library",
  345. "extra": {
  346. "branch-alias": {
  347. "dev-master": "4.0.x-dev"
  348. }
  349. },
  350. "autoload": {
  351. "psr-4": {
  352. "Egulias\\EmailValidator\\": "src"
  353. }
  354. },
  355. "license": [
  356. "MIT"
  357. ],
  358. "authors": [
  359. {
  360. "name": "Eduardo Gulias Davis"
  361. }
  362. ],
  363. "description": "A library for validating emails against several RFCs",
  364. "homepage": "https://github.com/egulias/EmailValidator",
  365. "keywords": [
  366. "email",
  367. "emailvalidation",
  368. "emailvalidator",
  369. "validation",
  370. "validator"
  371. ],
  372. "time": "2023-10-06T06:47:41+00:00"
  373. },
  374. {
  375. "name": "fruitcake/php-cors",
  376. "version": "v1.3.0",
  377. "dist": {
  378. "type": "zip",
  379. "url": "https://mirrors.tencent.com/repository/composer/fruitcake/php-cors/v1.3.0/fruitcake-php-cors-v1.3.0.zip",
  380. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  381. "shasum": ""
  382. },
  383. "require": {
  384. "php": "^7.4|^8.0",
  385. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  386. },
  387. "require-dev": {
  388. "phpstan/phpstan": "^1.4",
  389. "phpunit/phpunit": "^9",
  390. "squizlabs/php_codesniffer": "^3.5"
  391. },
  392. "type": "library",
  393. "extra": {
  394. "branch-alias": {
  395. "dev-master": "1.2-dev"
  396. }
  397. },
  398. "autoload": {
  399. "psr-4": {
  400. "Fruitcake\\Cors\\": "src/"
  401. }
  402. },
  403. "license": [
  404. "MIT"
  405. ],
  406. "authors": [
  407. {
  408. "name": "Fruitcake",
  409. "homepage": "https://fruitcake.nl"
  410. },
  411. {
  412. "name": "Barryvdh",
  413. "email": "barryvdh@gmail.com"
  414. }
  415. ],
  416. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  417. "homepage": "https://github.com/fruitcake/php-cors",
  418. "keywords": [
  419. "cors",
  420. "laravel",
  421. "symfony"
  422. ],
  423. "time": "2023-10-12T05:21:21+00:00"
  424. },
  425. {
  426. "name": "graham-campbell/result-type",
  427. "version": "v1.1.2",
  428. "dist": {
  429. "type": "zip",
  430. "url": "https://mirrors.cloud.tencent.com/repository/composer/graham-campbell/result-type/v1.1.2/graham-campbell-result-type-v1.1.2.zip",
  431. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  432. "shasum": ""
  433. },
  434. "require": {
  435. "php": "^7.2.5 || ^8.0",
  436. "phpoption/phpoption": "^1.9.2"
  437. },
  438. "require-dev": {
  439. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  440. },
  441. "type": "library",
  442. "autoload": {
  443. "psr-4": {
  444. "GrahamCampbell\\ResultType\\": "src/"
  445. }
  446. },
  447. "license": [
  448. "MIT"
  449. ],
  450. "authors": [
  451. {
  452. "name": "Graham Campbell",
  453. "email": "hello@gjcampbell.co.uk",
  454. "homepage": "https://github.com/GrahamCampbell"
  455. }
  456. ],
  457. "description": "An Implementation Of The Result Type",
  458. "keywords": [
  459. "Graham Campbell",
  460. "GrahamCampbell",
  461. "Result Type",
  462. "Result-Type",
  463. "result"
  464. ],
  465. "time": "2023-11-12T22:16:48+00:00"
  466. },
  467. {
  468. "name": "guzzlehttp/guzzle",
  469. "version": "7.8.1",
  470. "dist": {
  471. "type": "zip",
  472. "url": "https://mirrors.cloud.tencent.com/repository/composer/guzzlehttp/guzzle/7.8.1/guzzlehttp-guzzle-7.8.1.zip",
  473. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  474. "shasum": ""
  475. },
  476. "require": {
  477. "ext-json": "*",
  478. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  479. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  480. "php": "^7.2.5 || ^8.0",
  481. "psr/http-client": "^1.0",
  482. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  483. },
  484. "provide": {
  485. "psr/http-client-implementation": "1.0"
  486. },
  487. "require-dev": {
  488. "bamarni/composer-bin-plugin": "^1.8.2",
  489. "ext-curl": "*",
  490. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  491. "php-http/message-factory": "^1.1",
  492. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  493. "psr/log": "^1.1 || ^2.0 || ^3.0"
  494. },
  495. "suggest": {
  496. "ext-curl": "Required for CURL handler support",
  497. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  498. "psr/log": "Required for using the Log middleware"
  499. },
  500. "type": "library",
  501. "extra": {
  502. "bamarni-bin": {
  503. "bin-links": true,
  504. "forward-command": false
  505. }
  506. },
  507. "autoload": {
  508. "files": [
  509. "src/functions_include.php"
  510. ],
  511. "psr-4": {
  512. "GuzzleHttp\\": "src/"
  513. }
  514. },
  515. "license": [
  516. "MIT"
  517. ],
  518. "authors": [
  519. {
  520. "name": "Graham Campbell",
  521. "email": "hello@gjcampbell.co.uk",
  522. "homepage": "https://github.com/GrahamCampbell"
  523. },
  524. {
  525. "name": "Michael Dowling",
  526. "email": "mtdowling@gmail.com",
  527. "homepage": "https://github.com/mtdowling"
  528. },
  529. {
  530. "name": "Jeremy Lindblom",
  531. "email": "jeremeamia@gmail.com",
  532. "homepage": "https://github.com/jeremeamia"
  533. },
  534. {
  535. "name": "George Mponos",
  536. "email": "gmponos@gmail.com",
  537. "homepage": "https://github.com/gmponos"
  538. },
  539. {
  540. "name": "Tobias Nyholm",
  541. "email": "tobias.nyholm@gmail.com",
  542. "homepage": "https://github.com/Nyholm"
  543. },
  544. {
  545. "name": "Márk Sági-Kazár",
  546. "email": "mark.sagikazar@gmail.com",
  547. "homepage": "https://github.com/sagikazarmark"
  548. },
  549. {
  550. "name": "Tobias Schultze",
  551. "email": "webmaster@tubo-world.de",
  552. "homepage": "https://github.com/Tobion"
  553. }
  554. ],
  555. "description": "Guzzle is a PHP HTTP client library",
  556. "keywords": [
  557. "client",
  558. "curl",
  559. "framework",
  560. "http",
  561. "http client",
  562. "psr-18",
  563. "psr-7",
  564. "rest",
  565. "web service"
  566. ],
  567. "time": "2023-12-03T20:35:24+00:00"
  568. },
  569. {
  570. "name": "guzzlehttp/promises",
  571. "version": "2.0.2",
  572. "dist": {
  573. "type": "zip",
  574. "url": "https://mirrors.cloud.tencent.com/repository/composer/guzzlehttp/promises/2.0.2/guzzlehttp-promises-2.0.2.zip",
  575. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  576. "shasum": ""
  577. },
  578. "require": {
  579. "php": "^7.2.5 || ^8.0"
  580. },
  581. "require-dev": {
  582. "bamarni/composer-bin-plugin": "^1.8.2",
  583. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  584. },
  585. "type": "library",
  586. "extra": {
  587. "bamarni-bin": {
  588. "bin-links": true,
  589. "forward-command": false
  590. }
  591. },
  592. "autoload": {
  593. "psr-4": {
  594. "GuzzleHttp\\Promise\\": "src/"
  595. }
  596. },
  597. "license": [
  598. "MIT"
  599. ],
  600. "authors": [
  601. {
  602. "name": "Graham Campbell",
  603. "email": "hello@gjcampbell.co.uk",
  604. "homepage": "https://github.com/GrahamCampbell"
  605. },
  606. {
  607. "name": "Michael Dowling",
  608. "email": "mtdowling@gmail.com",
  609. "homepage": "https://github.com/mtdowling"
  610. },
  611. {
  612. "name": "Tobias Nyholm",
  613. "email": "tobias.nyholm@gmail.com",
  614. "homepage": "https://github.com/Nyholm"
  615. },
  616. {
  617. "name": "Tobias Schultze",
  618. "email": "webmaster@tubo-world.de",
  619. "homepage": "https://github.com/Tobion"
  620. }
  621. ],
  622. "description": "Guzzle promises library",
  623. "keywords": [
  624. "promise"
  625. ],
  626. "time": "2023-12-03T20:19:20+00:00"
  627. },
  628. {
  629. "name": "guzzlehttp/psr7",
  630. "version": "2.6.2",
  631. "dist": {
  632. "type": "zip",
  633. "url": "https://mirrors.cloud.tencent.com/repository/composer/guzzlehttp/psr7/2.6.2/guzzlehttp-psr7-2.6.2.zip",
  634. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  635. "shasum": ""
  636. },
  637. "require": {
  638. "php": "^7.2.5 || ^8.0",
  639. "psr/http-factory": "^1.0",
  640. "psr/http-message": "^1.1 || ^2.0",
  641. "ralouphie/getallheaders": "^3.0"
  642. },
  643. "provide": {
  644. "psr/http-factory-implementation": "1.0",
  645. "psr/http-message-implementation": "1.0"
  646. },
  647. "require-dev": {
  648. "bamarni/composer-bin-plugin": "^1.8.2",
  649. "http-interop/http-factory-tests": "^0.9",
  650. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  651. },
  652. "suggest": {
  653. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  654. },
  655. "type": "library",
  656. "extra": {
  657. "bamarni-bin": {
  658. "bin-links": true,
  659. "forward-command": false
  660. }
  661. },
  662. "autoload": {
  663. "psr-4": {
  664. "GuzzleHttp\\Psr7\\": "src/"
  665. }
  666. },
  667. "license": [
  668. "MIT"
  669. ],
  670. "authors": [
  671. {
  672. "name": "Graham Campbell",
  673. "email": "hello@gjcampbell.co.uk",
  674. "homepage": "https://github.com/GrahamCampbell"
  675. },
  676. {
  677. "name": "Michael Dowling",
  678. "email": "mtdowling@gmail.com",
  679. "homepage": "https://github.com/mtdowling"
  680. },
  681. {
  682. "name": "George Mponos",
  683. "email": "gmponos@gmail.com",
  684. "homepage": "https://github.com/gmponos"
  685. },
  686. {
  687. "name": "Tobias Nyholm",
  688. "email": "tobias.nyholm@gmail.com",
  689. "homepage": "https://github.com/Nyholm"
  690. },
  691. {
  692. "name": "Márk Sági-Kazár",
  693. "email": "mark.sagikazar@gmail.com",
  694. "homepage": "https://github.com/sagikazarmark"
  695. },
  696. {
  697. "name": "Tobias Schultze",
  698. "email": "webmaster@tubo-world.de",
  699. "homepage": "https://github.com/Tobion"
  700. },
  701. {
  702. "name": "Márk Sági-Kazár",
  703. "email": "mark.sagikazar@gmail.com",
  704. "homepage": "https://sagikazarmark.hu"
  705. }
  706. ],
  707. "description": "PSR-7 message implementation that also provides common utility methods",
  708. "keywords": [
  709. "http",
  710. "message",
  711. "psr-7",
  712. "request",
  713. "response",
  714. "stream",
  715. "uri",
  716. "url"
  717. ],
  718. "time": "2023-12-03T20:05:35+00:00"
  719. },
  720. {
  721. "name": "guzzlehttp/uri-template",
  722. "version": "v1.0.3",
  723. "dist": {
  724. "type": "zip",
  725. "url": "https://mirrors.cloud.tencent.com/repository/composer/guzzlehttp/uri-template/v1.0.3/guzzlehttp-uri-template-v1.0.3.zip",
  726. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  727. "shasum": ""
  728. },
  729. "require": {
  730. "php": "^7.2.5 || ^8.0",
  731. "symfony/polyfill-php80": "^1.24"
  732. },
  733. "require-dev": {
  734. "bamarni/composer-bin-plugin": "^1.8.2",
  735. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  736. "uri-template/tests": "1.0.0"
  737. },
  738. "type": "library",
  739. "extra": {
  740. "bamarni-bin": {
  741. "bin-links": true,
  742. "forward-command": false
  743. }
  744. },
  745. "autoload": {
  746. "psr-4": {
  747. "GuzzleHttp\\UriTemplate\\": "src"
  748. }
  749. },
  750. "license": [
  751. "MIT"
  752. ],
  753. "authors": [
  754. {
  755. "name": "Graham Campbell",
  756. "email": "hello@gjcampbell.co.uk",
  757. "homepage": "https://github.com/GrahamCampbell"
  758. },
  759. {
  760. "name": "Michael Dowling",
  761. "email": "mtdowling@gmail.com",
  762. "homepage": "https://github.com/mtdowling"
  763. },
  764. {
  765. "name": "George Mponos",
  766. "email": "gmponos@gmail.com",
  767. "homepage": "https://github.com/gmponos"
  768. },
  769. {
  770. "name": "Tobias Nyholm",
  771. "email": "tobias.nyholm@gmail.com",
  772. "homepage": "https://github.com/Nyholm"
  773. }
  774. ],
  775. "description": "A polyfill class for uri_template of PHP",
  776. "keywords": [
  777. "guzzlehttp",
  778. "uri-template"
  779. ],
  780. "time": "2023-12-03T19:50:20+00:00"
  781. },
  782. {
  783. "name": "laravel/framework",
  784. "version": "v10.39.0",
  785. "dist": {
  786. "type": "zip",
  787. "url": "https://mirrors.tencent.com/repository/composer/laravel/framework/v10.39.0/laravel-framework-v10.39.0.zip",
  788. "reference": "114926b07bfb5fbf2545c03aa2ce5c8c37be650c",
  789. "shasum": ""
  790. },
  791. "require": {
  792. "brick/math": "^0.9.3|^0.10.2|^0.11",
  793. "composer-runtime-api": "^2.2",
  794. "doctrine/inflector": "^2.0.5",
  795. "dragonmantank/cron-expression": "^3.3.2",
  796. "egulias/email-validator": "^3.2.1|^4.0",
  797. "ext-ctype": "*",
  798. "ext-filter": "*",
  799. "ext-hash": "*",
  800. "ext-mbstring": "*",
  801. "ext-openssl": "*",
  802. "ext-session": "*",
  803. "ext-tokenizer": "*",
  804. "fruitcake/php-cors": "^1.2",
  805. "guzzlehttp/uri-template": "^1.0",
  806. "laravel/prompts": "^0.1.9",
  807. "laravel/serializable-closure": "^1.3",
  808. "league/commonmark": "^2.2.1",
  809. "league/flysystem": "^3.8.0",
  810. "monolog/monolog": "^3.0",
  811. "nesbot/carbon": "^2.67",
  812. "nunomaduro/termwind": "^1.13",
  813. "php": "^8.1",
  814. "psr/container": "^1.1.1|^2.0.1",
  815. "psr/log": "^1.0|^2.0|^3.0",
  816. "psr/simple-cache": "^1.0|^2.0|^3.0",
  817. "ramsey/uuid": "^4.7",
  818. "symfony/console": "^6.2",
  819. "symfony/error-handler": "^6.2",
  820. "symfony/finder": "^6.2",
  821. "symfony/http-foundation": "^6.4",
  822. "symfony/http-kernel": "^6.2",
  823. "symfony/mailer": "^6.2",
  824. "symfony/mime": "^6.2",
  825. "symfony/process": "^6.2",
  826. "symfony/routing": "^6.2",
  827. "symfony/uid": "^6.2",
  828. "symfony/var-dumper": "^6.2",
  829. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  830. "vlucas/phpdotenv": "^5.4.1",
  831. "voku/portable-ascii": "^2.0"
  832. },
  833. "conflict": {
  834. "carbonphp/carbon-doctrine-types": ">=3.0",
  835. "doctrine/dbal": ">=4.0",
  836. "tightenco/collect": "<5.5.33"
  837. },
  838. "provide": {
  839. "psr/container-implementation": "1.1|2.0",
  840. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  841. },
  842. "replace": {
  843. "illuminate/auth": "self.version",
  844. "illuminate/broadcasting": "self.version",
  845. "illuminate/bus": "self.version",
  846. "illuminate/cache": "self.version",
  847. "illuminate/collections": "self.version",
  848. "illuminate/conditionable": "self.version",
  849. "illuminate/config": "self.version",
  850. "illuminate/console": "self.version",
  851. "illuminate/container": "self.version",
  852. "illuminate/contracts": "self.version",
  853. "illuminate/cookie": "self.version",
  854. "illuminate/database": "self.version",
  855. "illuminate/encryption": "self.version",
  856. "illuminate/events": "self.version",
  857. "illuminate/filesystem": "self.version",
  858. "illuminate/hashing": "self.version",
  859. "illuminate/http": "self.version",
  860. "illuminate/log": "self.version",
  861. "illuminate/macroable": "self.version",
  862. "illuminate/mail": "self.version",
  863. "illuminate/notifications": "self.version",
  864. "illuminate/pagination": "self.version",
  865. "illuminate/pipeline": "self.version",
  866. "illuminate/process": "self.version",
  867. "illuminate/queue": "self.version",
  868. "illuminate/redis": "self.version",
  869. "illuminate/routing": "self.version",
  870. "illuminate/session": "self.version",
  871. "illuminate/support": "self.version",
  872. "illuminate/testing": "self.version",
  873. "illuminate/translation": "self.version",
  874. "illuminate/validation": "self.version",
  875. "illuminate/view": "self.version"
  876. },
  877. "require-dev": {
  878. "ably/ably-php": "^1.0",
  879. "aws/aws-sdk-php": "^3.235.5",
  880. "doctrine/dbal": "^3.5.1",
  881. "ext-gmp": "*",
  882. "fakerphp/faker": "^1.21",
  883. "guzzlehttp/guzzle": "^7.5",
  884. "league/flysystem-aws-s3-v3": "^3.0",
  885. "league/flysystem-ftp": "^3.0",
  886. "league/flysystem-path-prefixing": "^3.3",
  887. "league/flysystem-read-only": "^3.3",
  888. "league/flysystem-sftp-v3": "^3.0",
  889. "mockery/mockery": "^1.5.1",
  890. "nyholm/psr7": "^1.2",
  891. "orchestra/testbench-core": "^8.18",
  892. "pda/pheanstalk": "^4.0",
  893. "phpstan/phpstan": "^1.4.7",
  894. "phpunit/phpunit": "^10.0.7",
  895. "predis/predis": "^2.0.2",
  896. "symfony/cache": "^6.2",
  897. "symfony/http-client": "^6.2.4",
  898. "symfony/psr-http-message-bridge": "^2.0"
  899. },
  900. "suggest": {
  901. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  902. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  903. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  904. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^3.5.1).",
  905. "ext-apcu": "Required to use the APC cache driver.",
  906. "ext-fileinfo": "Required to use the Filesystem class.",
  907. "ext-ftp": "Required to use the Flysystem FTP driver.",
  908. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  909. "ext-memcached": "Required to use the memcache cache driver.",
  910. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  911. "ext-pdo": "Required to use all database features.",
  912. "ext-posix": "Required to use all features of the queue worker.",
  913. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  914. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  915. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  916. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
  917. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  918. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  919. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  920. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  921. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  922. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  923. "mockery/mockery": "Required to use mocking (^1.5.1).",
  924. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  925. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  926. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8|^10.0.7).",
  927. "predis/predis": "Required to use the predis connector (^2.0.2).",
  928. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  929. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  930. "symfony/cache": "Required to PSR-6 cache bridge (^6.2).",
  931. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.2).",
  932. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.2).",
  933. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.2).",
  934. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.2).",
  935. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  936. },
  937. "type": "library",
  938. "extra": {
  939. "branch-alias": {
  940. "dev-master": "10.x-dev"
  941. }
  942. },
  943. "autoload": {
  944. "files": [
  945. "src/Illuminate/Collections/helpers.php",
  946. "src/Illuminate/Events/functions.php",
  947. "src/Illuminate/Filesystem/functions.php",
  948. "src/Illuminate/Foundation/helpers.php",
  949. "src/Illuminate/Support/helpers.php"
  950. ],
  951. "psr-4": {
  952. "Illuminate\\": "src/Illuminate/",
  953. "Illuminate\\Support\\": [
  954. "src/Illuminate/Macroable/",
  955. "src/Illuminate/Collections/",
  956. "src/Illuminate/Conditionable/"
  957. ]
  958. }
  959. },
  960. "license": [
  961. "MIT"
  962. ],
  963. "authors": [
  964. {
  965. "name": "Taylor Otwell",
  966. "email": "taylor@laravel.com"
  967. }
  968. ],
  969. "description": "The Laravel Framework.",
  970. "homepage": "https://laravel.com",
  971. "keywords": [
  972. "framework",
  973. "laravel"
  974. ],
  975. "time": "2023-12-27T14:26:28+00:00"
  976. },
  977. {
  978. "name": "laravel/prompts",
  979. "version": "v0.1.14",
  980. "dist": {
  981. "type": "zip",
  982. "url": "https://mirrors.tencent.com/repository/composer/laravel/prompts/v0.1.14/laravel-prompts-v0.1.14.zip",
  983. "reference": "2219fa9c4b944add1e825c3bdb8ecae8bc503bc6",
  984. "shasum": ""
  985. },
  986. "require": {
  987. "ext-mbstring": "*",
  988. "illuminate/collections": "^10.0|^11.0",
  989. "php": "^8.1",
  990. "symfony/console": "^6.2|^7.0"
  991. },
  992. "conflict": {
  993. "illuminate/console": ">=10.17.0 <10.25.0",
  994. "laravel/framework": ">=10.17.0 <10.25.0"
  995. },
  996. "require-dev": {
  997. "mockery/mockery": "^1.5",
  998. "pestphp/pest": "^2.3",
  999. "phpstan/phpstan": "^1.11",
  1000. "phpstan/phpstan-mockery": "^1.1"
  1001. },
  1002. "suggest": {
  1003. "ext-pcntl": "Required for the spinner to be animated."
  1004. },
  1005. "type": "library",
  1006. "extra": {
  1007. "branch-alias": {
  1008. "dev-main": "0.1.x-dev"
  1009. }
  1010. },
  1011. "autoload": {
  1012. "files": [
  1013. "src/helpers.php"
  1014. ],
  1015. "psr-4": {
  1016. "Laravel\\Prompts\\": "src/"
  1017. }
  1018. },
  1019. "license": [
  1020. "MIT"
  1021. ],
  1022. "time": "2023-12-27T04:18:09+00:00"
  1023. },
  1024. {
  1025. "name": "laravel/sanctum",
  1026. "version": "v3.3.3",
  1027. "dist": {
  1028. "type": "zip",
  1029. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel/sanctum/v3.3.3/laravel-sanctum-v3.3.3.zip",
  1030. "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5",
  1031. "shasum": ""
  1032. },
  1033. "require": {
  1034. "ext-json": "*",
  1035. "illuminate/console": "^9.21|^10.0",
  1036. "illuminate/contracts": "^9.21|^10.0",
  1037. "illuminate/database": "^9.21|^10.0",
  1038. "illuminate/support": "^9.21|^10.0",
  1039. "php": "^8.0.2"
  1040. },
  1041. "require-dev": {
  1042. "mockery/mockery": "^1.0",
  1043. "orchestra/testbench": "^7.28.2|^8.8.3",
  1044. "phpstan/phpstan": "^1.10",
  1045. "phpunit/phpunit": "^9.6"
  1046. },
  1047. "type": "library",
  1048. "extra": {
  1049. "branch-alias": {
  1050. "dev-master": "3.x-dev"
  1051. },
  1052. "laravel": {
  1053. "providers": [
  1054. "Laravel\\Sanctum\\SanctumServiceProvider"
  1055. ]
  1056. }
  1057. },
  1058. "autoload": {
  1059. "psr-4": {
  1060. "Laravel\\Sanctum\\": "src/"
  1061. }
  1062. },
  1063. "license": [
  1064. "MIT"
  1065. ],
  1066. "authors": [
  1067. {
  1068. "name": "Taylor Otwell",
  1069. "email": "taylor@laravel.com"
  1070. }
  1071. ],
  1072. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  1073. "keywords": [
  1074. "auth",
  1075. "laravel",
  1076. "sanctum"
  1077. ],
  1078. "time": "2023-12-19T18:44:48+00:00"
  1079. },
  1080. {
  1081. "name": "laravel/serializable-closure",
  1082. "version": "v1.3.3",
  1083. "dist": {
  1084. "type": "zip",
  1085. "url": "https://mirrors.tencent.com/repository/composer/laravel/serializable-closure/v1.3.3/laravel-serializable-closure-v1.3.3.zip",
  1086. "reference": "3dbf8a8e914634c48d389c1234552666b3d43754",
  1087. "shasum": ""
  1088. },
  1089. "require": {
  1090. "php": "^7.3|^8.0"
  1091. },
  1092. "require-dev": {
  1093. "nesbot/carbon": "^2.61",
  1094. "pestphp/pest": "^1.21.3",
  1095. "phpstan/phpstan": "^1.8.2",
  1096. "symfony/var-dumper": "^5.4.11"
  1097. },
  1098. "type": "library",
  1099. "extra": {
  1100. "branch-alias": {
  1101. "dev-master": "1.x-dev"
  1102. }
  1103. },
  1104. "autoload": {
  1105. "psr-4": {
  1106. "Laravel\\SerializableClosure\\": "src/"
  1107. }
  1108. },
  1109. "license": [
  1110. "MIT"
  1111. ],
  1112. "authors": [
  1113. {
  1114. "name": "Taylor Otwell",
  1115. "email": "taylor@laravel.com"
  1116. },
  1117. {
  1118. "name": "Nuno Maduro",
  1119. "email": "nuno@laravel.com"
  1120. }
  1121. ],
  1122. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  1123. "keywords": [
  1124. "closure",
  1125. "laravel",
  1126. "serializable"
  1127. ],
  1128. "time": "2023-11-08T14:08:06+00:00"
  1129. },
  1130. {
  1131. "name": "laravel/tinker",
  1132. "version": "v2.8.2",
  1133. "dist": {
  1134. "type": "zip",
  1135. "url": "https://mirrors.tencent.com/repository/composer/laravel/tinker/v2.8.2/laravel-tinker-v2.8.2.zip",
  1136. "reference": "b936d415b252b499e8c3b1f795cd4fc20f57e1f3",
  1137. "shasum": ""
  1138. },
  1139. "require": {
  1140. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1141. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1142. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0",
  1143. "php": "^7.2.5|^8.0",
  1144. "psy/psysh": "^0.10.4|^0.11.1",
  1145. "symfony/var-dumper": "^4.3.4|^5.0|^6.0"
  1146. },
  1147. "require-dev": {
  1148. "mockery/mockery": "~1.3.3|^1.4.2",
  1149. "phpstan/phpstan": "^1.10",
  1150. "phpunit/phpunit": "^8.5.8|^9.3.3"
  1151. },
  1152. "suggest": {
  1153. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)."
  1154. },
  1155. "type": "library",
  1156. "extra": {
  1157. "branch-alias": {
  1158. "dev-master": "2.x-dev"
  1159. },
  1160. "laravel": {
  1161. "providers": [
  1162. "Laravel\\Tinker\\TinkerServiceProvider"
  1163. ]
  1164. }
  1165. },
  1166. "autoload": {
  1167. "psr-4": {
  1168. "Laravel\\Tinker\\": "src/"
  1169. }
  1170. },
  1171. "license": [
  1172. "MIT"
  1173. ],
  1174. "authors": [
  1175. {
  1176. "name": "Taylor Otwell",
  1177. "email": "taylor@laravel.com"
  1178. }
  1179. ],
  1180. "description": "Powerful REPL for the Laravel framework.",
  1181. "keywords": [
  1182. "REPL",
  1183. "Tinker",
  1184. "laravel",
  1185. "psysh"
  1186. ],
  1187. "time": "2023-08-15T14:27:00+00:00"
  1188. },
  1189. {
  1190. "name": "league/commonmark",
  1191. "version": "2.4.1",
  1192. "dist": {
  1193. "type": "zip",
  1194. "url": "https://mirrors.tencent.com/repository/composer/league/commonmark/2.4.1/league-commonmark-2.4.1.zip",
  1195. "reference": "3669d6d5f7a47a93c08ddff335e6d945481a1dd5",
  1196. "shasum": ""
  1197. },
  1198. "require": {
  1199. "ext-mbstring": "*",
  1200. "league/config": "^1.1.1",
  1201. "php": "^7.4 || ^8.0",
  1202. "psr/event-dispatcher": "^1.0",
  1203. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  1204. "symfony/polyfill-php80": "^1.16"
  1205. },
  1206. "require-dev": {
  1207. "cebe/markdown": "^1.0",
  1208. "commonmark/cmark": "0.30.0",
  1209. "commonmark/commonmark.js": "0.30.0",
  1210. "composer/package-versions-deprecated": "^1.8",
  1211. "embed/embed": "^4.4",
  1212. "erusev/parsedown": "^1.0",
  1213. "ext-json": "*",
  1214. "github/gfm": "0.29.0",
  1215. "michelf/php-markdown": "^1.4 || ^2.0",
  1216. "nyholm/psr7": "^1.5",
  1217. "phpstan/phpstan": "^1.8.2",
  1218. "phpunit/phpunit": "^9.5.21",
  1219. "scrutinizer/ocular": "^1.8.1",
  1220. "symfony/finder": "^5.3 | ^6.0",
  1221. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0",
  1222. "unleashedtech/php-coding-standard": "^3.1.1",
  1223. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  1224. },
  1225. "suggest": {
  1226. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  1227. },
  1228. "type": "library",
  1229. "extra": {
  1230. "branch-alias": {
  1231. "dev-main": "2.5-dev"
  1232. }
  1233. },
  1234. "autoload": {
  1235. "psr-4": {
  1236. "League\\CommonMark\\": "src"
  1237. }
  1238. },
  1239. "license": [
  1240. "BSD-3-Clause"
  1241. ],
  1242. "authors": [
  1243. {
  1244. "name": "Colin O'Dell",
  1245. "email": "colinodell@gmail.com",
  1246. "homepage": "https://www.colinodell.com",
  1247. "role": "Lead Developer"
  1248. }
  1249. ],
  1250. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  1251. "homepage": "https://commonmark.thephpleague.com",
  1252. "keywords": [
  1253. "commonmark",
  1254. "flavored",
  1255. "gfm",
  1256. "github",
  1257. "github-flavored",
  1258. "markdown",
  1259. "md",
  1260. "parser"
  1261. ],
  1262. "time": "2023-08-30T16:55:00+00:00"
  1263. },
  1264. {
  1265. "name": "league/config",
  1266. "version": "v1.2.0",
  1267. "dist": {
  1268. "type": "zip",
  1269. "url": "https://mirrors.tencent.com/repository/composer/league/config/v1.2.0/league-config-v1.2.0.zip",
  1270. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  1271. "shasum": ""
  1272. },
  1273. "require": {
  1274. "dflydev/dot-access-data": "^3.0.1",
  1275. "nette/schema": "^1.2",
  1276. "php": "^7.4 || ^8.0"
  1277. },
  1278. "require-dev": {
  1279. "phpstan/phpstan": "^1.8.2",
  1280. "phpunit/phpunit": "^9.5.5",
  1281. "scrutinizer/ocular": "^1.8.1",
  1282. "unleashedtech/php-coding-standard": "^3.1",
  1283. "vimeo/psalm": "^4.7.3"
  1284. },
  1285. "type": "library",
  1286. "extra": {
  1287. "branch-alias": {
  1288. "dev-main": "1.2-dev"
  1289. }
  1290. },
  1291. "autoload": {
  1292. "psr-4": {
  1293. "League\\Config\\": "src"
  1294. }
  1295. },
  1296. "license": [
  1297. "BSD-3-Clause"
  1298. ],
  1299. "authors": [
  1300. {
  1301. "name": "Colin O'Dell",
  1302. "email": "colinodell@gmail.com",
  1303. "homepage": "https://www.colinodell.com",
  1304. "role": "Lead Developer"
  1305. }
  1306. ],
  1307. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  1308. "homepage": "https://config.thephpleague.com",
  1309. "keywords": [
  1310. "array",
  1311. "config",
  1312. "configuration",
  1313. "dot",
  1314. "dot-access",
  1315. "nested",
  1316. "schema"
  1317. ],
  1318. "time": "2022-12-11T20:36:23+00:00"
  1319. },
  1320. {
  1321. "name": "league/flysystem",
  1322. "version": "3.23.0",
  1323. "dist": {
  1324. "type": "zip",
  1325. "url": "https://mirrors.cloud.tencent.com/repository/composer/league/flysystem/3.23.0/league-flysystem-3.23.0.zip",
  1326. "reference": "d4ad81e2b67396e33dc9d7e54ec74ccf73151dcc",
  1327. "shasum": ""
  1328. },
  1329. "require": {
  1330. "league/flysystem-local": "^3.0.0",
  1331. "league/mime-type-detection": "^1.0.0",
  1332. "php": "^8.0.2"
  1333. },
  1334. "conflict": {
  1335. "async-aws/core": "<1.19.0",
  1336. "async-aws/s3": "<1.14.0",
  1337. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  1338. "guzzlehttp/guzzle": "<7.0",
  1339. "guzzlehttp/ringphp": "<1.1.1",
  1340. "phpseclib/phpseclib": "3.0.15",
  1341. "symfony/http-client": "<5.2"
  1342. },
  1343. "require-dev": {
  1344. "async-aws/s3": "^1.5 || ^2.0",
  1345. "async-aws/simple-s3": "^1.1 || ^2.0",
  1346. "aws/aws-sdk-php": "^3.220.0",
  1347. "composer/semver": "^3.0",
  1348. "ext-fileinfo": "*",
  1349. "ext-ftp": "*",
  1350. "ext-zip": "*",
  1351. "friendsofphp/php-cs-fixer": "^3.5",
  1352. "google/cloud-storage": "^1.23",
  1353. "microsoft/azure-storage-blob": "^1.1",
  1354. "phpseclib/phpseclib": "^3.0.34",
  1355. "phpstan/phpstan": "^1.10",
  1356. "phpunit/phpunit": "^9.5.11|^10.0",
  1357. "sabre/dav": "^4.3.1"
  1358. },
  1359. "type": "library",
  1360. "autoload": {
  1361. "psr-4": {
  1362. "League\\Flysystem\\": "src"
  1363. }
  1364. },
  1365. "license": [
  1366. "MIT"
  1367. ],
  1368. "authors": [
  1369. {
  1370. "name": "Frank de Jonge",
  1371. "email": "info@frankdejonge.nl"
  1372. }
  1373. ],
  1374. "description": "File storage abstraction for PHP",
  1375. "keywords": [
  1376. "WebDAV",
  1377. "aws",
  1378. "cloud",
  1379. "file",
  1380. "files",
  1381. "filesystem",
  1382. "filesystems",
  1383. "ftp",
  1384. "s3",
  1385. "sftp",
  1386. "storage"
  1387. ],
  1388. "time": "2023-12-04T10:16:17+00:00"
  1389. },
  1390. {
  1391. "name": "league/flysystem-local",
  1392. "version": "3.23.0",
  1393. "dist": {
  1394. "type": "zip",
  1395. "url": "https://mirrors.tencent.com/repository/composer/league/flysystem-local/3.23.0/league-flysystem-local-3.23.0.zip",
  1396. "reference": "5cf046ba5f059460e86a997c504dd781a39a109b",
  1397. "shasum": ""
  1398. },
  1399. "require": {
  1400. "ext-fileinfo": "*",
  1401. "league/flysystem": "^3.0.0",
  1402. "league/mime-type-detection": "^1.0.0",
  1403. "php": "^8.0.2"
  1404. },
  1405. "type": "library",
  1406. "autoload": {
  1407. "psr-4": {
  1408. "League\\Flysystem\\Local\\": ""
  1409. }
  1410. },
  1411. "license": [
  1412. "MIT"
  1413. ],
  1414. "authors": [
  1415. {
  1416. "name": "Frank de Jonge",
  1417. "email": "info@frankdejonge.nl"
  1418. }
  1419. ],
  1420. "description": "Local filesystem adapter for Flysystem.",
  1421. "keywords": [
  1422. "Flysystem",
  1423. "file",
  1424. "files",
  1425. "filesystem",
  1426. "local"
  1427. ],
  1428. "time": "2023-12-04T10:14:46+00:00"
  1429. },
  1430. {
  1431. "name": "league/mime-type-detection",
  1432. "version": "1.14.0",
  1433. "dist": {
  1434. "type": "zip",
  1435. "url": "https://mirrors.cloud.tencent.com/repository/composer/league/mime-type-detection/1.14.0/league-mime-type-detection-1.14.0.zip",
  1436. "reference": "b6a5854368533df0295c5761a0253656a2e52d9e",
  1437. "shasum": ""
  1438. },
  1439. "require": {
  1440. "ext-fileinfo": "*",
  1441. "php": "^7.4 || ^8.0"
  1442. },
  1443. "require-dev": {
  1444. "friendsofphp/php-cs-fixer": "^3.2",
  1445. "phpstan/phpstan": "^0.12.68",
  1446. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  1447. },
  1448. "type": "library",
  1449. "autoload": {
  1450. "psr-4": {
  1451. "League\\MimeTypeDetection\\": "src"
  1452. }
  1453. },
  1454. "license": [
  1455. "MIT"
  1456. ],
  1457. "authors": [
  1458. {
  1459. "name": "Frank de Jonge",
  1460. "email": "info@frankdejonge.nl"
  1461. }
  1462. ],
  1463. "description": "Mime-type detection for Flysystem",
  1464. "time": "2023-10-17T14:13:20+00:00"
  1465. },
  1466. {
  1467. "name": "monolog/monolog",
  1468. "version": "3.5.0",
  1469. "dist": {
  1470. "type": "zip",
  1471. "url": "https://mirrors.cloud.tencent.com/repository/composer/monolog/monolog/3.5.0/monolog-monolog-3.5.0.zip",
  1472. "reference": "c915e2634718dbc8a4a15c61b0e62e7a44e14448",
  1473. "shasum": ""
  1474. },
  1475. "require": {
  1476. "php": ">=8.1",
  1477. "psr/log": "^2.0 || ^3.0"
  1478. },
  1479. "provide": {
  1480. "psr/log-implementation": "3.0.0"
  1481. },
  1482. "require-dev": {
  1483. "aws/aws-sdk-php": "^3.0",
  1484. "doctrine/couchdb": "~1.0@dev",
  1485. "elasticsearch/elasticsearch": "^7 || ^8",
  1486. "ext-json": "*",
  1487. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  1488. "guzzlehttp/guzzle": "^7.4.5",
  1489. "guzzlehttp/psr7": "^2.2",
  1490. "mongodb/mongodb": "^1.8",
  1491. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1492. "phpstan/phpstan": "^1.9",
  1493. "phpstan/phpstan-deprecation-rules": "^1.0",
  1494. "phpstan/phpstan-strict-rules": "^1.4",
  1495. "phpunit/phpunit": "^10.1",
  1496. "predis/predis": "^1.1 || ^2",
  1497. "ruflin/elastica": "^7",
  1498. "symfony/mailer": "^5.4 || ^6",
  1499. "symfony/mime": "^5.4 || ^6"
  1500. },
  1501. "suggest": {
  1502. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1503. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1504. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1505. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1506. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1507. "ext-mbstring": "Allow to work properly with unicode symbols",
  1508. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1509. "ext-openssl": "Required to send log messages using SSL",
  1510. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1511. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1512. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1513. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1514. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1515. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1516. },
  1517. "type": "library",
  1518. "extra": {
  1519. "branch-alias": {
  1520. "dev-main": "3.x-dev"
  1521. }
  1522. },
  1523. "autoload": {
  1524. "psr-4": {
  1525. "Monolog\\": "src/Monolog"
  1526. }
  1527. },
  1528. "license": [
  1529. "MIT"
  1530. ],
  1531. "authors": [
  1532. {
  1533. "name": "Jordi Boggiano",
  1534. "email": "j.boggiano@seld.be",
  1535. "homepage": "https://seld.be"
  1536. }
  1537. ],
  1538. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1539. "homepage": "https://github.com/Seldaek/monolog",
  1540. "keywords": [
  1541. "log",
  1542. "logging",
  1543. "psr-3"
  1544. ],
  1545. "time": "2023-10-27T15:32:31+00:00"
  1546. },
  1547. {
  1548. "name": "nesbot/carbon",
  1549. "version": "2.72.1",
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://mirrors.tencent.com/repository/composer/nesbot/carbon/2.72.1/nesbot-carbon-2.72.1.zip",
  1553. "reference": "2b3b3db0a2d0556a177392ff1a3bf5608fa09f78",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "carbonphp/carbon-doctrine-types": "*",
  1558. "ext-json": "*",
  1559. "php": "^7.1.8 || ^8.0",
  1560. "psr/clock": "^1.0",
  1561. "symfony/polyfill-mbstring": "^1.0",
  1562. "symfony/polyfill-php80": "^1.16",
  1563. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  1564. },
  1565. "provide": {
  1566. "psr/clock-implementation": "1.0"
  1567. },
  1568. "require-dev": {
  1569. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  1570. "doctrine/orm": "^2.7 || ^3.0",
  1571. "friendsofphp/php-cs-fixer": "^3.0",
  1572. "kylekatarnls/multi-tester": "^2.0",
  1573. "ondrejmirtes/better-reflection": "*",
  1574. "phpmd/phpmd": "^2.9",
  1575. "phpstan/extension-installer": "^1.0",
  1576. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  1577. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  1578. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  1579. "squizlabs/php_codesniffer": "^3.4"
  1580. },
  1581. "bin": [
  1582. "bin/carbon"
  1583. ],
  1584. "type": "library",
  1585. "extra": {
  1586. "branch-alias": {
  1587. "dev-3.x": "3.x-dev",
  1588. "dev-master": "2.x-dev"
  1589. },
  1590. "laravel": {
  1591. "providers": [
  1592. "Carbon\\Laravel\\ServiceProvider"
  1593. ]
  1594. },
  1595. "phpstan": {
  1596. "includes": [
  1597. "extension.neon"
  1598. ]
  1599. }
  1600. },
  1601. "autoload": {
  1602. "psr-4": {
  1603. "Carbon\\": "src/Carbon/"
  1604. }
  1605. },
  1606. "license": [
  1607. "MIT"
  1608. ],
  1609. "authors": [
  1610. {
  1611. "name": "Brian Nesbitt",
  1612. "email": "brian@nesbot.com",
  1613. "homepage": "https://markido.com"
  1614. },
  1615. {
  1616. "name": "kylekatarnls",
  1617. "homepage": "https://github.com/kylekatarnls"
  1618. }
  1619. ],
  1620. "description": "An API extension for DateTime that supports 281 different languages.",
  1621. "homepage": "https://carbon.nesbot.com",
  1622. "keywords": [
  1623. "date",
  1624. "datetime",
  1625. "time"
  1626. ],
  1627. "time": "2023-12-08T23:47:49+00:00"
  1628. },
  1629. {
  1630. "name": "nette/schema",
  1631. "version": "v1.2.5",
  1632. "dist": {
  1633. "type": "zip",
  1634. "url": "https://mirrors.tencent.com/repository/composer/nette/schema/v1.2.5/nette-schema-v1.2.5.zip",
  1635. "reference": "0462f0166e823aad657c9224d0f849ecac1ba10a",
  1636. "shasum": ""
  1637. },
  1638. "require": {
  1639. "nette/utils": "^2.5.7 || ^3.1.5 || ^4.0",
  1640. "php": "7.1 - 8.3"
  1641. },
  1642. "require-dev": {
  1643. "nette/tester": "^2.3 || ^2.4",
  1644. "phpstan/phpstan-nette": "^1.0",
  1645. "tracy/tracy": "^2.7"
  1646. },
  1647. "type": "library",
  1648. "extra": {
  1649. "branch-alias": {
  1650. "dev-master": "1.2-dev"
  1651. }
  1652. },
  1653. "autoload": {
  1654. "classmap": [
  1655. "src/"
  1656. ]
  1657. },
  1658. "license": [
  1659. "BSD-3-Clause",
  1660. "GPL-2.0-only",
  1661. "GPL-3.0-only"
  1662. ],
  1663. "authors": [
  1664. {
  1665. "name": "David Grudl",
  1666. "homepage": "https://davidgrudl.com"
  1667. },
  1668. {
  1669. "name": "Nette Community",
  1670. "homepage": "https://nette.org/contributors"
  1671. }
  1672. ],
  1673. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  1674. "homepage": "https://nette.org",
  1675. "keywords": [
  1676. "config",
  1677. "nette"
  1678. ],
  1679. "time": "2023-10-05T20:37:59+00:00"
  1680. },
  1681. {
  1682. "name": "nette/utils",
  1683. "version": "v4.0.3",
  1684. "dist": {
  1685. "type": "zip",
  1686. "url": "https://mirrors.cloud.tencent.com/repository/composer/nette/utils/v4.0.3/nette-utils-v4.0.3.zip",
  1687. "reference": "a9d127dd6a203ce6d255b2e2db49759f7506e015",
  1688. "shasum": ""
  1689. },
  1690. "require": {
  1691. "php": ">=8.0 <8.4"
  1692. },
  1693. "conflict": {
  1694. "nette/finder": "<3",
  1695. "nette/schema": "<1.2.2"
  1696. },
  1697. "require-dev": {
  1698. "jetbrains/phpstorm-attributes": "dev-master",
  1699. "nette/tester": "^2.5",
  1700. "phpstan/phpstan": "^1.0",
  1701. "tracy/tracy": "^2.9"
  1702. },
  1703. "suggest": {
  1704. "ext-gd": "to use Image",
  1705. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  1706. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  1707. "ext-json": "to use Nette\\Utils\\Json",
  1708. "ext-mbstring": "to use Strings::lower() etc...",
  1709. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  1710. },
  1711. "type": "library",
  1712. "extra": {
  1713. "branch-alias": {
  1714. "dev-master": "4.0-dev"
  1715. }
  1716. },
  1717. "autoload": {
  1718. "classmap": [
  1719. "src/"
  1720. ]
  1721. },
  1722. "license": [
  1723. "BSD-3-Clause",
  1724. "GPL-2.0-only",
  1725. "GPL-3.0-only"
  1726. ],
  1727. "authors": [
  1728. {
  1729. "name": "David Grudl",
  1730. "homepage": "https://davidgrudl.com"
  1731. },
  1732. {
  1733. "name": "Nette Community",
  1734. "homepage": "https://nette.org/contributors"
  1735. }
  1736. ],
  1737. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  1738. "homepage": "https://nette.org",
  1739. "keywords": [
  1740. "array",
  1741. "core",
  1742. "datetime",
  1743. "images",
  1744. "json",
  1745. "nette",
  1746. "paginator",
  1747. "password",
  1748. "slugify",
  1749. "string",
  1750. "unicode",
  1751. "utf-8",
  1752. "utility",
  1753. "validation"
  1754. ],
  1755. "time": "2023-10-29T21:02:13+00:00"
  1756. },
  1757. {
  1758. "name": "nikic/php-parser",
  1759. "version": "v4.18.0",
  1760. "dist": {
  1761. "type": "zip",
  1762. "url": "https://mirrors.cloud.tencent.com/repository/composer/nikic/php-parser/v4.18.0/nikic-php-parser-v4.18.0.zip",
  1763. "reference": "1bcbb2179f97633e98bbbc87044ee2611c7d7999",
  1764. "shasum": ""
  1765. },
  1766. "require": {
  1767. "ext-tokenizer": "*",
  1768. "php": ">=7.0"
  1769. },
  1770. "require-dev": {
  1771. "ircmaxell/php-yacc": "^0.0.7",
  1772. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  1773. },
  1774. "bin": [
  1775. "bin/php-parse"
  1776. ],
  1777. "type": "library",
  1778. "extra": {
  1779. "branch-alias": {
  1780. "dev-master": "4.9-dev"
  1781. }
  1782. },
  1783. "autoload": {
  1784. "psr-4": {
  1785. "PhpParser\\": "lib/PhpParser"
  1786. }
  1787. },
  1788. "license": [
  1789. "BSD-3-Clause"
  1790. ],
  1791. "authors": [
  1792. {
  1793. "name": "Nikita Popov"
  1794. }
  1795. ],
  1796. "description": "A PHP parser written in PHP",
  1797. "keywords": [
  1798. "parser",
  1799. "php"
  1800. ],
  1801. "time": "2023-12-10T21:03:43+00:00"
  1802. },
  1803. {
  1804. "name": "nunomaduro/termwind",
  1805. "version": "v1.15.1",
  1806. "dist": {
  1807. "type": "zip",
  1808. "url": "https://mirrors.tencent.com/repository/composer/nunomaduro/termwind/v1.15.1/nunomaduro-termwind-v1.15.1.zip",
  1809. "reference": "8ab0b32c8caa4a2e09700ea32925441385e4a5dc",
  1810. "shasum": ""
  1811. },
  1812. "require": {
  1813. "ext-mbstring": "*",
  1814. "php": "^8.0",
  1815. "symfony/console": "^5.3.0|^6.0.0"
  1816. },
  1817. "require-dev": {
  1818. "ergebnis/phpstan-rules": "^1.0.",
  1819. "illuminate/console": "^8.0|^9.0",
  1820. "illuminate/support": "^8.0|^9.0",
  1821. "laravel/pint": "^1.0.0",
  1822. "pestphp/pest": "^1.21.0",
  1823. "pestphp/pest-plugin-mock": "^1.0",
  1824. "phpstan/phpstan": "^1.4.6",
  1825. "phpstan/phpstan-strict-rules": "^1.1.0",
  1826. "symfony/var-dumper": "^5.2.7|^6.0.0",
  1827. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  1828. },
  1829. "type": "library",
  1830. "extra": {
  1831. "laravel": {
  1832. "providers": [
  1833. "Termwind\\Laravel\\TermwindServiceProvider"
  1834. ]
  1835. }
  1836. },
  1837. "autoload": {
  1838. "files": [
  1839. "src/Functions.php"
  1840. ],
  1841. "psr-4": {
  1842. "Termwind\\": "src/"
  1843. }
  1844. },
  1845. "license": [
  1846. "MIT"
  1847. ],
  1848. "authors": [
  1849. {
  1850. "name": "Nuno Maduro",
  1851. "email": "enunomaduro@gmail.com"
  1852. }
  1853. ],
  1854. "description": "Its like Tailwind CSS, but for the console.",
  1855. "keywords": [
  1856. "cli",
  1857. "console",
  1858. "css",
  1859. "package",
  1860. "php",
  1861. "style"
  1862. ],
  1863. "time": "2023-02-08T01:06:31+00:00"
  1864. },
  1865. {
  1866. "name": "overtrue/laravel-query-logger",
  1867. "version": "3.1.0",
  1868. "dist": {
  1869. "type": "zip",
  1870. "url": "https://mirrors.cloud.tencent.com/repository/composer/overtrue/laravel-query-logger/3.1.0/overtrue-laravel-query-logger-3.1.0.zip",
  1871. "reference": "f9cf0b687be3fd0e976b1a86becc7cb10820c655",
  1872. "shasum": ""
  1873. },
  1874. "require": {
  1875. "laravel/framework": "^9.0|^10.0"
  1876. },
  1877. "require-dev": {
  1878. "brainmaestro/composer-git-hooks": "dev-master",
  1879. "laravel/pint": "^1.5"
  1880. },
  1881. "type": "library",
  1882. "extra": {
  1883. "laravel": {
  1884. "providers": [
  1885. "Overtrue\\LaravelQueryLogger\\ServiceProvider"
  1886. ]
  1887. },
  1888. "hooks": {
  1889. "pre-commit": [
  1890. "composer check-style"
  1891. ],
  1892. "pre-push": [
  1893. "composer check-style"
  1894. ]
  1895. }
  1896. },
  1897. "autoload": {
  1898. "psr-4": {
  1899. "Overtrue\\LaravelQueryLogger\\": "src"
  1900. }
  1901. },
  1902. "license": [
  1903. "MIT"
  1904. ],
  1905. "authors": [
  1906. {
  1907. "name": "overtrue",
  1908. "email": "anzhengchao@gmail.com"
  1909. }
  1910. ],
  1911. "description": "A dev tool to log all queries for laravel application.",
  1912. "time": "2023-02-15T08:34:54+00:00"
  1913. },
  1914. {
  1915. "name": "phpoption/phpoption",
  1916. "version": "1.9.2",
  1917. "dist": {
  1918. "type": "zip",
  1919. "url": "https://mirrors.tencent.com/repository/composer/phpoption/phpoption/1.9.2/phpoption-phpoption-1.9.2.zip",
  1920. "reference": "80735db690fe4fc5c76dfa7f9b770634285fa820",
  1921. "shasum": ""
  1922. },
  1923. "require": {
  1924. "php": "^7.2.5 || ^8.0"
  1925. },
  1926. "require-dev": {
  1927. "bamarni/composer-bin-plugin": "^1.8.2",
  1928. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  1929. },
  1930. "type": "library",
  1931. "extra": {
  1932. "bamarni-bin": {
  1933. "bin-links": true,
  1934. "forward-command": true
  1935. },
  1936. "branch-alias": {
  1937. "dev-master": "1.9-dev"
  1938. }
  1939. },
  1940. "autoload": {
  1941. "psr-4": {
  1942. "PhpOption\\": "src/PhpOption/"
  1943. }
  1944. },
  1945. "license": [
  1946. "Apache-2.0"
  1947. ],
  1948. "authors": [
  1949. {
  1950. "name": "Johannes M. Schmitt",
  1951. "email": "schmittjoh@gmail.com",
  1952. "homepage": "https://github.com/schmittjoh"
  1953. },
  1954. {
  1955. "name": "Graham Campbell",
  1956. "email": "hello@gjcampbell.co.uk",
  1957. "homepage": "https://github.com/GrahamCampbell"
  1958. }
  1959. ],
  1960. "description": "Option Type for PHP",
  1961. "keywords": [
  1962. "language",
  1963. "option",
  1964. "php",
  1965. "type"
  1966. ],
  1967. "time": "2023-11-12T21:59:55+00:00"
  1968. },
  1969. {
  1970. "name": "psr/clock",
  1971. "version": "1.0.0",
  1972. "dist": {
  1973. "type": "zip",
  1974. "url": "https://mirrors.tencent.com/repository/composer/psr/clock/1.0.0/psr-clock-1.0.0.zip",
  1975. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1976. "shasum": ""
  1977. },
  1978. "require": {
  1979. "php": "^7.0 || ^8.0"
  1980. },
  1981. "type": "library",
  1982. "autoload": {
  1983. "psr-4": {
  1984. "Psr\\Clock\\": "src/"
  1985. }
  1986. },
  1987. "license": [
  1988. "MIT"
  1989. ],
  1990. "authors": [
  1991. {
  1992. "name": "PHP-FIG",
  1993. "homepage": "https://www.php-fig.org/"
  1994. }
  1995. ],
  1996. "description": "Common interface for reading the clock.",
  1997. "homepage": "https://github.com/php-fig/clock",
  1998. "keywords": [
  1999. "clock",
  2000. "now",
  2001. "psr",
  2002. "psr-20",
  2003. "time"
  2004. ],
  2005. "time": "2022-11-25T14:36:26+00:00"
  2006. },
  2007. {
  2008. "name": "psr/container",
  2009. "version": "2.0.2",
  2010. "dist": {
  2011. "type": "zip",
  2012. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/container/2.0.2/psr-container-2.0.2.zip",
  2013. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2014. "shasum": ""
  2015. },
  2016. "require": {
  2017. "php": ">=7.4.0"
  2018. },
  2019. "type": "library",
  2020. "extra": {
  2021. "branch-alias": {
  2022. "dev-master": "2.0.x-dev"
  2023. }
  2024. },
  2025. "autoload": {
  2026. "psr-4": {
  2027. "Psr\\Container\\": "src/"
  2028. }
  2029. },
  2030. "license": [
  2031. "MIT"
  2032. ],
  2033. "authors": [
  2034. {
  2035. "name": "PHP-FIG",
  2036. "homepage": "https://www.php-fig.org/"
  2037. }
  2038. ],
  2039. "description": "Common Container Interface (PHP FIG PSR-11)",
  2040. "homepage": "https://github.com/php-fig/container",
  2041. "keywords": [
  2042. "PSR-11",
  2043. "container",
  2044. "container-interface",
  2045. "container-interop",
  2046. "psr"
  2047. ],
  2048. "time": "2021-11-05T16:47:00+00:00"
  2049. },
  2050. {
  2051. "name": "psr/event-dispatcher",
  2052. "version": "1.0.0",
  2053. "dist": {
  2054. "type": "zip",
  2055. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/event-dispatcher/1.0.0/psr-event-dispatcher-1.0.0.zip",
  2056. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2057. "shasum": ""
  2058. },
  2059. "require": {
  2060. "php": ">=7.2.0"
  2061. },
  2062. "type": "library",
  2063. "extra": {
  2064. "branch-alias": {
  2065. "dev-master": "1.0.x-dev"
  2066. }
  2067. },
  2068. "autoload": {
  2069. "psr-4": {
  2070. "Psr\\EventDispatcher\\": "src/"
  2071. }
  2072. },
  2073. "license": [
  2074. "MIT"
  2075. ],
  2076. "authors": [
  2077. {
  2078. "name": "PHP-FIG",
  2079. "homepage": "http://www.php-fig.org/"
  2080. }
  2081. ],
  2082. "description": "Standard interfaces for event handling.",
  2083. "keywords": [
  2084. "events",
  2085. "psr",
  2086. "psr-14"
  2087. ],
  2088. "time": "2019-01-08T18:20:26+00:00"
  2089. },
  2090. {
  2091. "name": "psr/http-client",
  2092. "version": "1.0.3",
  2093. "dist": {
  2094. "type": "zip",
  2095. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/http-client/1.0.3/psr-http-client-1.0.3.zip",
  2096. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2097. "shasum": ""
  2098. },
  2099. "require": {
  2100. "php": "^7.0 || ^8.0",
  2101. "psr/http-message": "^1.0 || ^2.0"
  2102. },
  2103. "type": "library",
  2104. "extra": {
  2105. "branch-alias": {
  2106. "dev-master": "1.0.x-dev"
  2107. }
  2108. },
  2109. "autoload": {
  2110. "psr-4": {
  2111. "Psr\\Http\\Client\\": "src/"
  2112. }
  2113. },
  2114. "license": [
  2115. "MIT"
  2116. ],
  2117. "authors": [
  2118. {
  2119. "name": "PHP-FIG",
  2120. "homepage": "https://www.php-fig.org/"
  2121. }
  2122. ],
  2123. "description": "Common interface for HTTP clients",
  2124. "homepage": "https://github.com/php-fig/http-client",
  2125. "keywords": [
  2126. "http",
  2127. "http-client",
  2128. "psr",
  2129. "psr-18"
  2130. ],
  2131. "time": "2023-09-23T14:17:50+00:00"
  2132. },
  2133. {
  2134. "name": "psr/http-factory",
  2135. "version": "1.0.2",
  2136. "dist": {
  2137. "type": "zip",
  2138. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/http-factory/1.0.2/psr-http-factory-1.0.2.zip",
  2139. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  2140. "shasum": ""
  2141. },
  2142. "require": {
  2143. "php": ">=7.0.0",
  2144. "psr/http-message": "^1.0 || ^2.0"
  2145. },
  2146. "type": "library",
  2147. "extra": {
  2148. "branch-alias": {
  2149. "dev-master": "1.0.x-dev"
  2150. }
  2151. },
  2152. "autoload": {
  2153. "psr-4": {
  2154. "Psr\\Http\\Message\\": "src/"
  2155. }
  2156. },
  2157. "license": [
  2158. "MIT"
  2159. ],
  2160. "authors": [
  2161. {
  2162. "name": "PHP-FIG",
  2163. "homepage": "https://www.php-fig.org/"
  2164. }
  2165. ],
  2166. "description": "Common interfaces for PSR-7 HTTP message factories",
  2167. "keywords": [
  2168. "factory",
  2169. "http",
  2170. "message",
  2171. "psr",
  2172. "psr-17",
  2173. "psr-7",
  2174. "request",
  2175. "response"
  2176. ],
  2177. "time": "2023-04-10T20:10:41+00:00"
  2178. },
  2179. {
  2180. "name": "psr/http-message",
  2181. "version": "2.0",
  2182. "dist": {
  2183. "type": "zip",
  2184. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/http-message/2.0/psr-http-message-2.0.zip",
  2185. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  2186. "shasum": ""
  2187. },
  2188. "require": {
  2189. "php": "^7.2 || ^8.0"
  2190. },
  2191. "type": "library",
  2192. "extra": {
  2193. "branch-alias": {
  2194. "dev-master": "2.0.x-dev"
  2195. }
  2196. },
  2197. "autoload": {
  2198. "psr-4": {
  2199. "Psr\\Http\\Message\\": "src/"
  2200. }
  2201. },
  2202. "license": [
  2203. "MIT"
  2204. ],
  2205. "authors": [
  2206. {
  2207. "name": "PHP-FIG",
  2208. "homepage": "https://www.php-fig.org/"
  2209. }
  2210. ],
  2211. "description": "Common interface for HTTP messages",
  2212. "homepage": "https://github.com/php-fig/http-message",
  2213. "keywords": [
  2214. "http",
  2215. "http-message",
  2216. "psr",
  2217. "psr-7",
  2218. "request",
  2219. "response"
  2220. ],
  2221. "time": "2023-04-04T09:54:51+00:00"
  2222. },
  2223. {
  2224. "name": "psr/log",
  2225. "version": "3.0.0",
  2226. "dist": {
  2227. "type": "zip",
  2228. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/log/3.0.0/psr-log-3.0.0.zip",
  2229. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  2230. "shasum": ""
  2231. },
  2232. "require": {
  2233. "php": ">=8.0.0"
  2234. },
  2235. "type": "library",
  2236. "extra": {
  2237. "branch-alias": {
  2238. "dev-master": "3.x-dev"
  2239. }
  2240. },
  2241. "autoload": {
  2242. "psr-4": {
  2243. "Psr\\Log\\": "src"
  2244. }
  2245. },
  2246. "license": [
  2247. "MIT"
  2248. ],
  2249. "authors": [
  2250. {
  2251. "name": "PHP-FIG",
  2252. "homepage": "https://www.php-fig.org/"
  2253. }
  2254. ],
  2255. "description": "Common interface for logging libraries",
  2256. "homepage": "https://github.com/php-fig/log",
  2257. "keywords": [
  2258. "log",
  2259. "psr",
  2260. "psr-3"
  2261. ],
  2262. "time": "2021-07-14T16:46:02+00:00"
  2263. },
  2264. {
  2265. "name": "psr/simple-cache",
  2266. "version": "3.0.0",
  2267. "dist": {
  2268. "type": "zip",
  2269. "url": "https://mirrors.cloud.tencent.com/repository/composer/psr/simple-cache/3.0.0/psr-simple-cache-3.0.0.zip",
  2270. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  2271. "shasum": ""
  2272. },
  2273. "require": {
  2274. "php": ">=8.0.0"
  2275. },
  2276. "type": "library",
  2277. "extra": {
  2278. "branch-alias": {
  2279. "dev-master": "3.0.x-dev"
  2280. }
  2281. },
  2282. "autoload": {
  2283. "psr-4": {
  2284. "Psr\\SimpleCache\\": "src/"
  2285. }
  2286. },
  2287. "license": [
  2288. "MIT"
  2289. ],
  2290. "authors": [
  2291. {
  2292. "name": "PHP-FIG",
  2293. "homepage": "https://www.php-fig.org/"
  2294. }
  2295. ],
  2296. "description": "Common interfaces for simple caching",
  2297. "keywords": [
  2298. "cache",
  2299. "caching",
  2300. "psr",
  2301. "psr-16",
  2302. "simple-cache"
  2303. ],
  2304. "time": "2021-10-29T13:26:27+00:00"
  2305. },
  2306. {
  2307. "name": "psy/psysh",
  2308. "version": "v0.11.22",
  2309. "dist": {
  2310. "type": "zip",
  2311. "url": "https://mirrors.tencent.com/repository/composer/psy/psysh/v0.11.22/psy-psysh-v0.11.22.zip",
  2312. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
  2313. "shasum": ""
  2314. },
  2315. "require": {
  2316. "ext-json": "*",
  2317. "ext-tokenizer": "*",
  2318. "nikic/php-parser": "^4.0 || ^3.1",
  2319. "php": "^8.0 || ^7.0.8",
  2320. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  2321. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  2322. },
  2323. "conflict": {
  2324. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  2325. },
  2326. "require-dev": {
  2327. "bamarni/composer-bin-plugin": "^1.2"
  2328. },
  2329. "suggest": {
  2330. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  2331. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  2332. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  2333. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  2334. },
  2335. "bin": [
  2336. "bin/psysh"
  2337. ],
  2338. "type": "library",
  2339. "extra": {
  2340. "branch-alias": {
  2341. "dev-0.11": "0.11.x-dev"
  2342. },
  2343. "bamarni-bin": {
  2344. "bin-links": false,
  2345. "forward-command": false
  2346. }
  2347. },
  2348. "autoload": {
  2349. "files": [
  2350. "src/functions.php"
  2351. ],
  2352. "psr-4": {
  2353. "Psy\\": "src/"
  2354. }
  2355. },
  2356. "license": [
  2357. "MIT"
  2358. ],
  2359. "authors": [
  2360. {
  2361. "name": "Justin Hileman",
  2362. "email": "justin@justinhileman.info",
  2363. "homepage": "http://justinhileman.com"
  2364. }
  2365. ],
  2366. "description": "An interactive shell for modern PHP.",
  2367. "homepage": "http://psysh.org",
  2368. "keywords": [
  2369. "REPL",
  2370. "console",
  2371. "interactive",
  2372. "shell"
  2373. ],
  2374. "time": "2023-10-14T21:56:36+00:00"
  2375. },
  2376. {
  2377. "name": "ralouphie/getallheaders",
  2378. "version": "3.0.3",
  2379. "dist": {
  2380. "type": "zip",
  2381. "url": "https://mirrors.cloud.tencent.com/repository/composer/ralouphie/getallheaders/3.0.3/ralouphie-getallheaders-3.0.3.zip",
  2382. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2383. "shasum": ""
  2384. },
  2385. "require": {
  2386. "php": ">=5.6"
  2387. },
  2388. "require-dev": {
  2389. "php-coveralls/php-coveralls": "^2.1",
  2390. "phpunit/phpunit": "^5 || ^6.5"
  2391. },
  2392. "type": "library",
  2393. "autoload": {
  2394. "files": [
  2395. "src/getallheaders.php"
  2396. ]
  2397. },
  2398. "license": [
  2399. "MIT"
  2400. ],
  2401. "authors": [
  2402. {
  2403. "name": "Ralph Khattar",
  2404. "email": "ralph.khattar@gmail.com"
  2405. }
  2406. ],
  2407. "description": "A polyfill for getallheaders.",
  2408. "time": "2019-03-08T08:55:37+00:00"
  2409. },
  2410. {
  2411. "name": "ramsey/collection",
  2412. "version": "2.0.0",
  2413. "dist": {
  2414. "type": "zip",
  2415. "url": "https://mirrors.tencent.com/repository/composer/ramsey/collection/2.0.0/ramsey-collection-2.0.0.zip",
  2416. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  2417. "shasum": ""
  2418. },
  2419. "require": {
  2420. "php": "^8.1"
  2421. },
  2422. "require-dev": {
  2423. "captainhook/plugin-composer": "^5.3",
  2424. "ergebnis/composer-normalize": "^2.28.3",
  2425. "fakerphp/faker": "^1.21",
  2426. "hamcrest/hamcrest-php": "^2.0",
  2427. "jangregor/phpstan-prophecy": "^1.0",
  2428. "mockery/mockery": "^1.5",
  2429. "php-parallel-lint/php-console-highlighter": "^1.0",
  2430. "php-parallel-lint/php-parallel-lint": "^1.3",
  2431. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  2432. "phpspec/prophecy-phpunit": "^2.0",
  2433. "phpstan/extension-installer": "^1.2",
  2434. "phpstan/phpstan": "^1.9",
  2435. "phpstan/phpstan-mockery": "^1.1",
  2436. "phpstan/phpstan-phpunit": "^1.3",
  2437. "phpunit/phpunit": "^9.5",
  2438. "psalm/plugin-mockery": "^1.1",
  2439. "psalm/plugin-phpunit": "^0.18.4",
  2440. "ramsey/coding-standard": "^2.0.3",
  2441. "ramsey/conventional-commits": "^1.3",
  2442. "vimeo/psalm": "^5.4"
  2443. },
  2444. "type": "library",
  2445. "extra": {
  2446. "captainhook": {
  2447. "force-install": true
  2448. },
  2449. "ramsey/conventional-commits": {
  2450. "configFile": "conventional-commits.json"
  2451. }
  2452. },
  2453. "autoload": {
  2454. "psr-4": {
  2455. "Ramsey\\Collection\\": "src/"
  2456. }
  2457. },
  2458. "license": [
  2459. "MIT"
  2460. ],
  2461. "authors": [
  2462. {
  2463. "name": "Ben Ramsey",
  2464. "email": "ben@benramsey.com",
  2465. "homepage": "https://benramsey.com"
  2466. }
  2467. ],
  2468. "description": "A PHP library for representing and manipulating collections.",
  2469. "keywords": [
  2470. "array",
  2471. "collection",
  2472. "hash",
  2473. "map",
  2474. "queue",
  2475. "set"
  2476. ],
  2477. "time": "2022-12-31T21:50:55+00:00"
  2478. },
  2479. {
  2480. "name": "ramsey/uuid",
  2481. "version": "4.7.5",
  2482. "dist": {
  2483. "type": "zip",
  2484. "url": "https://mirrors.cloud.tencent.com/repository/composer/ramsey/uuid/4.7.5/ramsey-uuid-4.7.5.zip",
  2485. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  2486. "shasum": ""
  2487. },
  2488. "require": {
  2489. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  2490. "ext-json": "*",
  2491. "php": "^8.0",
  2492. "ramsey/collection": "^1.2 || ^2.0"
  2493. },
  2494. "replace": {
  2495. "rhumsaa/uuid": "self.version"
  2496. },
  2497. "require-dev": {
  2498. "captainhook/captainhook": "^5.10",
  2499. "captainhook/plugin-composer": "^5.3",
  2500. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  2501. "doctrine/annotations": "^1.8",
  2502. "ergebnis/composer-normalize": "^2.15",
  2503. "mockery/mockery": "^1.3",
  2504. "paragonie/random-lib": "^2",
  2505. "php-mock/php-mock": "^2.2",
  2506. "php-mock/php-mock-mockery": "^1.3",
  2507. "php-parallel-lint/php-parallel-lint": "^1.1",
  2508. "phpbench/phpbench": "^1.0",
  2509. "phpstan/extension-installer": "^1.1",
  2510. "phpstan/phpstan": "^1.8",
  2511. "phpstan/phpstan-mockery": "^1.1",
  2512. "phpstan/phpstan-phpunit": "^1.1",
  2513. "phpunit/phpunit": "^8.5 || ^9",
  2514. "ramsey/composer-repl": "^1.4",
  2515. "slevomat/coding-standard": "^8.4",
  2516. "squizlabs/php_codesniffer": "^3.5",
  2517. "vimeo/psalm": "^4.9"
  2518. },
  2519. "suggest": {
  2520. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  2521. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  2522. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  2523. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2524. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2525. },
  2526. "type": "library",
  2527. "extra": {
  2528. "captainhook": {
  2529. "force-install": true
  2530. }
  2531. },
  2532. "autoload": {
  2533. "files": [
  2534. "src/functions.php"
  2535. ],
  2536. "psr-4": {
  2537. "Ramsey\\Uuid\\": "src/"
  2538. }
  2539. },
  2540. "license": [
  2541. "MIT"
  2542. ],
  2543. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  2544. "keywords": [
  2545. "guid",
  2546. "identifier",
  2547. "uuid"
  2548. ],
  2549. "time": "2023-11-08T05:53:05+00:00"
  2550. },
  2551. {
  2552. "name": "symfony/console",
  2553. "version": "v6.4.2",
  2554. "dist": {
  2555. "type": "zip",
  2556. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/console/v6.4.2/symfony-console-v6.4.2.zip",
  2557. "reference": "0254811a143e6bc6c8deea08b589a7e68a37f625",
  2558. "shasum": ""
  2559. },
  2560. "require": {
  2561. "php": ">=8.1",
  2562. "symfony/deprecation-contracts": "^2.5|^3",
  2563. "symfony/polyfill-mbstring": "~1.0",
  2564. "symfony/service-contracts": "^2.5|^3",
  2565. "symfony/string": "^5.4|^6.0|^7.0"
  2566. },
  2567. "conflict": {
  2568. "symfony/dependency-injection": "<5.4",
  2569. "symfony/dotenv": "<5.4",
  2570. "symfony/event-dispatcher": "<5.4",
  2571. "symfony/lock": "<5.4",
  2572. "symfony/process": "<5.4"
  2573. },
  2574. "provide": {
  2575. "psr/log-implementation": "1.0|2.0|3.0"
  2576. },
  2577. "require-dev": {
  2578. "psr/log": "^1|^2|^3",
  2579. "symfony/config": "^5.4|^6.0|^7.0",
  2580. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  2581. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  2582. "symfony/http-foundation": "^6.4|^7.0",
  2583. "symfony/http-kernel": "^6.4|^7.0",
  2584. "symfony/lock": "^5.4|^6.0|^7.0",
  2585. "symfony/messenger": "^5.4|^6.0|^7.0",
  2586. "symfony/process": "^5.4|^6.0|^7.0",
  2587. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  2588. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  2589. },
  2590. "type": "library",
  2591. "autoload": {
  2592. "psr-4": {
  2593. "Symfony\\Component\\Console\\": ""
  2594. },
  2595. "exclude-from-classmap": [
  2596. "/Tests/"
  2597. ]
  2598. },
  2599. "license": [
  2600. "MIT"
  2601. ],
  2602. "authors": [
  2603. {
  2604. "name": "Fabien Potencier",
  2605. "email": "fabien@symfony.com"
  2606. },
  2607. {
  2608. "name": "Symfony Community",
  2609. "homepage": "https://symfony.com/contributors"
  2610. }
  2611. ],
  2612. "description": "Eases the creation of beautiful and testable command line interfaces",
  2613. "homepage": "https://symfony.com",
  2614. "keywords": [
  2615. "cli",
  2616. "command-line",
  2617. "console",
  2618. "terminal"
  2619. ],
  2620. "time": "2023-12-10T16:15:48+00:00"
  2621. },
  2622. {
  2623. "name": "symfony/css-selector",
  2624. "version": "v7.0.0",
  2625. "dist": {
  2626. "type": "zip",
  2627. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/css-selector/v7.0.0/symfony-css-selector-v7.0.0.zip",
  2628. "reference": "bb51d46e53ef8d50d523f0c5faedba056a27943e",
  2629. "shasum": ""
  2630. },
  2631. "require": {
  2632. "php": ">=8.2"
  2633. },
  2634. "type": "library",
  2635. "autoload": {
  2636. "psr-4": {
  2637. "Symfony\\Component\\CssSelector\\": ""
  2638. },
  2639. "exclude-from-classmap": [
  2640. "/Tests/"
  2641. ]
  2642. },
  2643. "license": [
  2644. "MIT"
  2645. ],
  2646. "authors": [
  2647. {
  2648. "name": "Fabien Potencier",
  2649. "email": "fabien@symfony.com"
  2650. },
  2651. {
  2652. "name": "Jean-François Simon",
  2653. "email": "jeanfrancois.simon@sensiolabs.com"
  2654. },
  2655. {
  2656. "name": "Symfony Community",
  2657. "homepage": "https://symfony.com/contributors"
  2658. }
  2659. ],
  2660. "description": "Converts CSS selectors to XPath expressions",
  2661. "homepage": "https://symfony.com",
  2662. "time": "2023-10-31T17:59:56+00:00"
  2663. },
  2664. {
  2665. "name": "symfony/deprecation-contracts",
  2666. "version": "v3.4.0",
  2667. "dist": {
  2668. "type": "zip",
  2669. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/deprecation-contracts/v3.4.0/symfony-deprecation-contracts-v3.4.0.zip",
  2670. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  2671. "shasum": ""
  2672. },
  2673. "require": {
  2674. "php": ">=8.1"
  2675. },
  2676. "type": "library",
  2677. "extra": {
  2678. "branch-alias": {
  2679. "dev-main": "3.4-dev"
  2680. },
  2681. "thanks": {
  2682. "name": "symfony/contracts",
  2683. "url": "https://github.com/symfony/contracts"
  2684. }
  2685. },
  2686. "autoload": {
  2687. "files": [
  2688. "function.php"
  2689. ]
  2690. },
  2691. "license": [
  2692. "MIT"
  2693. ],
  2694. "authors": [
  2695. {
  2696. "name": "Nicolas Grekas",
  2697. "email": "p@tchwork.com"
  2698. },
  2699. {
  2700. "name": "Symfony Community",
  2701. "homepage": "https://symfony.com/contributors"
  2702. }
  2703. ],
  2704. "description": "A generic function and convention to trigger deprecation notices",
  2705. "homepage": "https://symfony.com",
  2706. "time": "2023-05-23T14:45:45+00:00"
  2707. },
  2708. {
  2709. "name": "symfony/error-handler",
  2710. "version": "v6.4.0",
  2711. "dist": {
  2712. "type": "zip",
  2713. "url": "https://mirrors.tencent.com/repository/composer/symfony/error-handler/v6.4.0/symfony-error-handler-v6.4.0.zip",
  2714. "reference": "c873490a1c97b3a0a4838afc36ff36c112d02788",
  2715. "shasum": ""
  2716. },
  2717. "require": {
  2718. "php": ">=8.1",
  2719. "psr/log": "^1|^2|^3",
  2720. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  2721. },
  2722. "conflict": {
  2723. "symfony/deprecation-contracts": "<2.5",
  2724. "symfony/http-kernel": "<6.4"
  2725. },
  2726. "require-dev": {
  2727. "symfony/deprecation-contracts": "^2.5|^3",
  2728. "symfony/http-kernel": "^6.4|^7.0",
  2729. "symfony/serializer": "^5.4|^6.0|^7.0"
  2730. },
  2731. "bin": [
  2732. "Resources/bin/patch-type-declarations"
  2733. ],
  2734. "type": "library",
  2735. "autoload": {
  2736. "psr-4": {
  2737. "Symfony\\Component\\ErrorHandler\\": ""
  2738. },
  2739. "exclude-from-classmap": [
  2740. "/Tests/"
  2741. ]
  2742. },
  2743. "license": [
  2744. "MIT"
  2745. ],
  2746. "authors": [
  2747. {
  2748. "name": "Fabien Potencier",
  2749. "email": "fabien@symfony.com"
  2750. },
  2751. {
  2752. "name": "Symfony Community",
  2753. "homepage": "https://symfony.com/contributors"
  2754. }
  2755. ],
  2756. "description": "Provides tools to manage errors and ease debugging PHP code",
  2757. "homepage": "https://symfony.com",
  2758. "time": "2023-10-18T09:43:34+00:00"
  2759. },
  2760. {
  2761. "name": "symfony/event-dispatcher",
  2762. "version": "v7.0.2",
  2763. "dist": {
  2764. "type": "zip",
  2765. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/event-dispatcher/v7.0.2/symfony-event-dispatcher-v7.0.2.zip",
  2766. "reference": "098b62ae81fdd6cbf941f355059f617db28f4f9a",
  2767. "shasum": ""
  2768. },
  2769. "require": {
  2770. "php": ">=8.2",
  2771. "symfony/event-dispatcher-contracts": "^2.5|^3"
  2772. },
  2773. "conflict": {
  2774. "symfony/dependency-injection": "<6.4",
  2775. "symfony/service-contracts": "<2.5"
  2776. },
  2777. "provide": {
  2778. "psr/event-dispatcher-implementation": "1.0",
  2779. "symfony/event-dispatcher-implementation": "2.0|3.0"
  2780. },
  2781. "require-dev": {
  2782. "psr/log": "^1|^2|^3",
  2783. "symfony/config": "^6.4|^7.0",
  2784. "symfony/dependency-injection": "^6.4|^7.0",
  2785. "symfony/error-handler": "^6.4|^7.0",
  2786. "symfony/expression-language": "^6.4|^7.0",
  2787. "symfony/http-foundation": "^6.4|^7.0",
  2788. "symfony/service-contracts": "^2.5|^3",
  2789. "symfony/stopwatch": "^6.4|^7.0"
  2790. },
  2791. "type": "library",
  2792. "autoload": {
  2793. "psr-4": {
  2794. "Symfony\\Component\\EventDispatcher\\": ""
  2795. },
  2796. "exclude-from-classmap": [
  2797. "/Tests/"
  2798. ]
  2799. },
  2800. "license": [
  2801. "MIT"
  2802. ],
  2803. "authors": [
  2804. {
  2805. "name": "Fabien Potencier",
  2806. "email": "fabien@symfony.com"
  2807. },
  2808. {
  2809. "name": "Symfony Community",
  2810. "homepage": "https://symfony.com/contributors"
  2811. }
  2812. ],
  2813. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  2814. "homepage": "https://symfony.com",
  2815. "time": "2023-12-27T22:24:19+00:00"
  2816. },
  2817. {
  2818. "name": "symfony/event-dispatcher-contracts",
  2819. "version": "v3.4.0",
  2820. "dist": {
  2821. "type": "zip",
  2822. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/event-dispatcher-contracts/v3.4.0/symfony-event-dispatcher-contracts-v3.4.0.zip",
  2823. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  2824. "shasum": ""
  2825. },
  2826. "require": {
  2827. "php": ">=8.1",
  2828. "psr/event-dispatcher": "^1"
  2829. },
  2830. "type": "library",
  2831. "extra": {
  2832. "branch-alias": {
  2833. "dev-main": "3.4-dev"
  2834. },
  2835. "thanks": {
  2836. "name": "symfony/contracts",
  2837. "url": "https://github.com/symfony/contracts"
  2838. }
  2839. },
  2840. "autoload": {
  2841. "psr-4": {
  2842. "Symfony\\Contracts\\EventDispatcher\\": ""
  2843. }
  2844. },
  2845. "license": [
  2846. "MIT"
  2847. ],
  2848. "authors": [
  2849. {
  2850. "name": "Nicolas Grekas",
  2851. "email": "p@tchwork.com"
  2852. },
  2853. {
  2854. "name": "Symfony Community",
  2855. "homepage": "https://symfony.com/contributors"
  2856. }
  2857. ],
  2858. "description": "Generic abstractions related to dispatching event",
  2859. "homepage": "https://symfony.com",
  2860. "keywords": [
  2861. "abstractions",
  2862. "contracts",
  2863. "decoupling",
  2864. "interfaces",
  2865. "interoperability",
  2866. "standards"
  2867. ],
  2868. "time": "2023-05-23T14:45:45+00:00"
  2869. },
  2870. {
  2871. "name": "symfony/finder",
  2872. "version": "v6.4.0",
  2873. "dist": {
  2874. "type": "zip",
  2875. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/finder/v6.4.0/symfony-finder-v6.4.0.zip",
  2876. "reference": "11d736e97f116ac375a81f96e662911a34cd50ce",
  2877. "shasum": ""
  2878. },
  2879. "require": {
  2880. "php": ">=8.1"
  2881. },
  2882. "require-dev": {
  2883. "symfony/filesystem": "^6.0|^7.0"
  2884. },
  2885. "type": "library",
  2886. "autoload": {
  2887. "psr-4": {
  2888. "Symfony\\Component\\Finder\\": ""
  2889. },
  2890. "exclude-from-classmap": [
  2891. "/Tests/"
  2892. ]
  2893. },
  2894. "license": [
  2895. "MIT"
  2896. ],
  2897. "authors": [
  2898. {
  2899. "name": "Fabien Potencier",
  2900. "email": "fabien@symfony.com"
  2901. },
  2902. {
  2903. "name": "Symfony Community",
  2904. "homepage": "https://symfony.com/contributors"
  2905. }
  2906. ],
  2907. "description": "Finds files and directories via an intuitive fluent interface",
  2908. "homepage": "https://symfony.com",
  2909. "time": "2023-10-31T17:30:12+00:00"
  2910. },
  2911. {
  2912. "name": "symfony/http-foundation",
  2913. "version": "v6.4.2",
  2914. "dist": {
  2915. "type": "zip",
  2916. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/http-foundation/v6.4.2/symfony-http-foundation-v6.4.2.zip",
  2917. "reference": "172d807f9ef3fc3fbed8377cc57c20d389269271",
  2918. "shasum": ""
  2919. },
  2920. "require": {
  2921. "php": ">=8.1",
  2922. "symfony/deprecation-contracts": "^2.5|^3",
  2923. "symfony/polyfill-mbstring": "~1.1",
  2924. "symfony/polyfill-php83": "^1.27"
  2925. },
  2926. "conflict": {
  2927. "symfony/cache": "<6.3"
  2928. },
  2929. "require-dev": {
  2930. "doctrine/dbal": "^2.13.1|^3|^4",
  2931. "predis/predis": "^1.1|^2.0",
  2932. "symfony/cache": "^6.3|^7.0",
  2933. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  2934. "symfony/expression-language": "^5.4|^6.0|^7.0",
  2935. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  2936. "symfony/mime": "^5.4|^6.0|^7.0",
  2937. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  2938. },
  2939. "type": "library",
  2940. "autoload": {
  2941. "psr-4": {
  2942. "Symfony\\Component\\HttpFoundation\\": ""
  2943. },
  2944. "exclude-from-classmap": [
  2945. "/Tests/"
  2946. ]
  2947. },
  2948. "license": [
  2949. "MIT"
  2950. ],
  2951. "authors": [
  2952. {
  2953. "name": "Fabien Potencier",
  2954. "email": "fabien@symfony.com"
  2955. },
  2956. {
  2957. "name": "Symfony Community",
  2958. "homepage": "https://symfony.com/contributors"
  2959. }
  2960. ],
  2961. "description": "Defines an object-oriented layer for the HTTP specification",
  2962. "homepage": "https://symfony.com",
  2963. "time": "2023-12-27T22:16:42+00:00"
  2964. },
  2965. {
  2966. "name": "symfony/http-kernel",
  2967. "version": "v6.4.2",
  2968. "dist": {
  2969. "type": "zip",
  2970. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/http-kernel/v6.4.2/symfony-http-kernel-v6.4.2.zip",
  2971. "reference": "13e8387320b5942d0dc408440c888e2d526efef4",
  2972. "shasum": ""
  2973. },
  2974. "require": {
  2975. "php": ">=8.1",
  2976. "psr/log": "^1|^2|^3",
  2977. "symfony/deprecation-contracts": "^2.5|^3",
  2978. "symfony/error-handler": "^6.4|^7.0",
  2979. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  2980. "symfony/http-foundation": "^6.4|^7.0",
  2981. "symfony/polyfill-ctype": "^1.8"
  2982. },
  2983. "conflict": {
  2984. "symfony/browser-kit": "<5.4",
  2985. "symfony/cache": "<5.4",
  2986. "symfony/config": "<6.1",
  2987. "symfony/console": "<5.4",
  2988. "symfony/dependency-injection": "<6.4",
  2989. "symfony/doctrine-bridge": "<5.4",
  2990. "symfony/form": "<5.4",
  2991. "symfony/http-client": "<5.4",
  2992. "symfony/http-client-contracts": "<2.5",
  2993. "symfony/mailer": "<5.4",
  2994. "symfony/messenger": "<5.4",
  2995. "symfony/translation": "<5.4",
  2996. "symfony/translation-contracts": "<2.5",
  2997. "symfony/twig-bridge": "<5.4",
  2998. "symfony/validator": "<6.4",
  2999. "symfony/var-dumper": "<6.3",
  3000. "twig/twig": "<2.13"
  3001. },
  3002. "provide": {
  3003. "psr/log-implementation": "1.0|2.0|3.0"
  3004. },
  3005. "require-dev": {
  3006. "psr/cache": "^1.0|^2.0|^3.0",
  3007. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  3008. "symfony/clock": "^6.2|^7.0",
  3009. "symfony/config": "^6.1|^7.0",
  3010. "symfony/console": "^5.4|^6.0|^7.0",
  3011. "symfony/css-selector": "^5.4|^6.0|^7.0",
  3012. "symfony/dependency-injection": "^6.4|^7.0",
  3013. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  3014. "symfony/expression-language": "^5.4|^6.0|^7.0",
  3015. "symfony/finder": "^5.4|^6.0|^7.0",
  3016. "symfony/http-client-contracts": "^2.5|^3",
  3017. "symfony/process": "^5.4|^6.0|^7.0",
  3018. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  3019. "symfony/routing": "^5.4|^6.0|^7.0",
  3020. "symfony/serializer": "^6.3|^7.0",
  3021. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  3022. "symfony/translation": "^5.4|^6.0|^7.0",
  3023. "symfony/translation-contracts": "^2.5|^3",
  3024. "symfony/uid": "^5.4|^6.0|^7.0",
  3025. "symfony/validator": "^6.4|^7.0",
  3026. "symfony/var-exporter": "^6.2|^7.0",
  3027. "twig/twig": "^2.13|^3.0.4"
  3028. },
  3029. "type": "library",
  3030. "autoload": {
  3031. "psr-4": {
  3032. "Symfony\\Component\\HttpKernel\\": ""
  3033. },
  3034. "exclude-from-classmap": [
  3035. "/Tests/"
  3036. ]
  3037. },
  3038. "license": [
  3039. "MIT"
  3040. ],
  3041. "authors": [
  3042. {
  3043. "name": "Fabien Potencier",
  3044. "email": "fabien@symfony.com"
  3045. },
  3046. {
  3047. "name": "Symfony Community",
  3048. "homepage": "https://symfony.com/contributors"
  3049. }
  3050. ],
  3051. "description": "Provides a structured process for converting a Request into a Response",
  3052. "homepage": "https://symfony.com",
  3053. "time": "2023-12-30T15:31:44+00:00"
  3054. },
  3055. {
  3056. "name": "symfony/mailer",
  3057. "version": "v6.4.2",
  3058. "dist": {
  3059. "type": "zip",
  3060. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/mailer/v6.4.2/symfony-mailer-v6.4.2.zip",
  3061. "reference": "6da89e5c9202f129717a770a03183fb140720168",
  3062. "shasum": ""
  3063. },
  3064. "require": {
  3065. "egulias/email-validator": "^2.1.10|^3|^4",
  3066. "php": ">=8.1",
  3067. "psr/event-dispatcher": "^1",
  3068. "psr/log": "^1|^2|^3",
  3069. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  3070. "symfony/mime": "^6.2|^7.0",
  3071. "symfony/service-contracts": "^2.5|^3"
  3072. },
  3073. "conflict": {
  3074. "symfony/http-client-contracts": "<2.5",
  3075. "symfony/http-kernel": "<5.4",
  3076. "symfony/messenger": "<6.2",
  3077. "symfony/mime": "<6.2",
  3078. "symfony/twig-bridge": "<6.2.1"
  3079. },
  3080. "require-dev": {
  3081. "symfony/console": "^5.4|^6.0|^7.0",
  3082. "symfony/http-client": "^5.4|^6.0|^7.0",
  3083. "symfony/messenger": "^6.2|^7.0",
  3084. "symfony/twig-bridge": "^6.2|^7.0"
  3085. },
  3086. "type": "library",
  3087. "autoload": {
  3088. "psr-4": {
  3089. "Symfony\\Component\\Mailer\\": ""
  3090. },
  3091. "exclude-from-classmap": [
  3092. "/Tests/"
  3093. ]
  3094. },
  3095. "license": [
  3096. "MIT"
  3097. ],
  3098. "authors": [
  3099. {
  3100. "name": "Fabien Potencier",
  3101. "email": "fabien@symfony.com"
  3102. },
  3103. {
  3104. "name": "Symfony Community",
  3105. "homepage": "https://symfony.com/contributors"
  3106. }
  3107. ],
  3108. "description": "Helps sending emails",
  3109. "homepage": "https://symfony.com",
  3110. "time": "2023-12-19T09:12:31+00:00"
  3111. },
  3112. {
  3113. "name": "symfony/mime",
  3114. "version": "v6.4.0",
  3115. "dist": {
  3116. "type": "zip",
  3117. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/mime/v6.4.0/symfony-mime-v6.4.0.zip",
  3118. "reference": "ca4f58b2ef4baa8f6cecbeca2573f88cd577d205",
  3119. "shasum": ""
  3120. },
  3121. "require": {
  3122. "php": ">=8.1",
  3123. "symfony/deprecation-contracts": "^2.5|^3",
  3124. "symfony/polyfill-intl-idn": "^1.10",
  3125. "symfony/polyfill-mbstring": "^1.0"
  3126. },
  3127. "conflict": {
  3128. "egulias/email-validator": "~3.0.0",
  3129. "phpdocumentor/reflection-docblock": "<3.2.2",
  3130. "phpdocumentor/type-resolver": "<1.4.0",
  3131. "symfony/mailer": "<5.4",
  3132. "symfony/serializer": "<6.3.2"
  3133. },
  3134. "require-dev": {
  3135. "egulias/email-validator": "^2.1.10|^3.1|^4",
  3136. "league/html-to-markdown": "^5.0",
  3137. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3138. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3139. "symfony/property-access": "^5.4|^6.0|^7.0",
  3140. "symfony/property-info": "^5.4|^6.0|^7.0",
  3141. "symfony/serializer": "^6.3.2|^7.0"
  3142. },
  3143. "type": "library",
  3144. "autoload": {
  3145. "psr-4": {
  3146. "Symfony\\Component\\Mime\\": ""
  3147. },
  3148. "exclude-from-classmap": [
  3149. "/Tests/"
  3150. ]
  3151. },
  3152. "license": [
  3153. "MIT"
  3154. ],
  3155. "authors": [
  3156. {
  3157. "name": "Fabien Potencier",
  3158. "email": "fabien@symfony.com"
  3159. },
  3160. {
  3161. "name": "Symfony Community",
  3162. "homepage": "https://symfony.com/contributors"
  3163. }
  3164. ],
  3165. "description": "Allows manipulating MIME messages",
  3166. "homepage": "https://symfony.com",
  3167. "keywords": [
  3168. "mime",
  3169. "mime-type"
  3170. ],
  3171. "time": "2023-10-17T11:49:05+00:00"
  3172. },
  3173. {
  3174. "name": "symfony/polyfill-ctype",
  3175. "version": "v1.28.0",
  3176. "dist": {
  3177. "type": "zip",
  3178. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-ctype/v1.28.0/symfony-polyfill-ctype-v1.28.0.zip",
  3179. "reference": "ea208ce43cbb04af6867b4fdddb1bdbf84cc28cb",
  3180. "shasum": ""
  3181. },
  3182. "require": {
  3183. "php": ">=7.1"
  3184. },
  3185. "provide": {
  3186. "ext-ctype": "*"
  3187. },
  3188. "suggest": {
  3189. "ext-ctype": "For best performance"
  3190. },
  3191. "type": "library",
  3192. "extra": {
  3193. "branch-alias": {
  3194. "dev-main": "1.28-dev"
  3195. },
  3196. "thanks": {
  3197. "name": "symfony/polyfill",
  3198. "url": "https://github.com/symfony/polyfill"
  3199. }
  3200. },
  3201. "autoload": {
  3202. "files": [
  3203. "bootstrap.php"
  3204. ],
  3205. "psr-4": {
  3206. "Symfony\\Polyfill\\Ctype\\": ""
  3207. }
  3208. },
  3209. "license": [
  3210. "MIT"
  3211. ],
  3212. "authors": [
  3213. {
  3214. "name": "Gert de Pagter",
  3215. "email": "BackEndTea@gmail.com"
  3216. },
  3217. {
  3218. "name": "Symfony Community",
  3219. "homepage": "https://symfony.com/contributors"
  3220. }
  3221. ],
  3222. "description": "Symfony polyfill for ctype functions",
  3223. "homepage": "https://symfony.com",
  3224. "keywords": [
  3225. "compatibility",
  3226. "ctype",
  3227. "polyfill",
  3228. "portable"
  3229. ],
  3230. "time": "2023-01-26T09:26:14+00:00"
  3231. },
  3232. {
  3233. "name": "symfony/polyfill-intl-grapheme",
  3234. "version": "v1.28.0",
  3235. "dist": {
  3236. "type": "zip",
  3237. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-intl-grapheme/v1.28.0/symfony-polyfill-intl-grapheme-v1.28.0.zip",
  3238. "reference": "875e90aeea2777b6f135677f618529449334a612",
  3239. "shasum": ""
  3240. },
  3241. "require": {
  3242. "php": ">=7.1"
  3243. },
  3244. "suggest": {
  3245. "ext-intl": "For best performance"
  3246. },
  3247. "type": "library",
  3248. "extra": {
  3249. "branch-alias": {
  3250. "dev-main": "1.28-dev"
  3251. },
  3252. "thanks": {
  3253. "name": "symfony/polyfill",
  3254. "url": "https://github.com/symfony/polyfill"
  3255. }
  3256. },
  3257. "autoload": {
  3258. "files": [
  3259. "bootstrap.php"
  3260. ],
  3261. "psr-4": {
  3262. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  3263. }
  3264. },
  3265. "license": [
  3266. "MIT"
  3267. ],
  3268. "authors": [
  3269. {
  3270. "name": "Nicolas Grekas",
  3271. "email": "p@tchwork.com"
  3272. },
  3273. {
  3274. "name": "Symfony Community",
  3275. "homepage": "https://symfony.com/contributors"
  3276. }
  3277. ],
  3278. "description": "Symfony polyfill for intl's grapheme_* functions",
  3279. "homepage": "https://symfony.com",
  3280. "keywords": [
  3281. "compatibility",
  3282. "grapheme",
  3283. "intl",
  3284. "polyfill",
  3285. "portable",
  3286. "shim"
  3287. ],
  3288. "time": "2023-01-26T09:26:14+00:00"
  3289. },
  3290. {
  3291. "name": "symfony/polyfill-intl-idn",
  3292. "version": "v1.28.0",
  3293. "dist": {
  3294. "type": "zip",
  3295. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-intl-idn/v1.28.0/symfony-polyfill-intl-idn-v1.28.0.zip",
  3296. "reference": "ecaafce9f77234a6a449d29e49267ba10499116d",
  3297. "shasum": ""
  3298. },
  3299. "require": {
  3300. "php": ">=7.1",
  3301. "symfony/polyfill-intl-normalizer": "^1.10",
  3302. "symfony/polyfill-php72": "^1.10"
  3303. },
  3304. "suggest": {
  3305. "ext-intl": "For best performance"
  3306. },
  3307. "type": "library",
  3308. "extra": {
  3309. "branch-alias": {
  3310. "dev-main": "1.28-dev"
  3311. },
  3312. "thanks": {
  3313. "name": "symfony/polyfill",
  3314. "url": "https://github.com/symfony/polyfill"
  3315. }
  3316. },
  3317. "autoload": {
  3318. "files": [
  3319. "bootstrap.php"
  3320. ],
  3321. "psr-4": {
  3322. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  3323. }
  3324. },
  3325. "license": [
  3326. "MIT"
  3327. ],
  3328. "authors": [
  3329. {
  3330. "name": "Laurent Bassin",
  3331. "email": "laurent@bassin.info"
  3332. },
  3333. {
  3334. "name": "Trevor Rowbotham",
  3335. "email": "trevor.rowbotham@pm.me"
  3336. },
  3337. {
  3338. "name": "Symfony Community",
  3339. "homepage": "https://symfony.com/contributors"
  3340. }
  3341. ],
  3342. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  3343. "homepage": "https://symfony.com",
  3344. "keywords": [
  3345. "compatibility",
  3346. "idn",
  3347. "intl",
  3348. "polyfill",
  3349. "portable",
  3350. "shim"
  3351. ],
  3352. "time": "2023-01-26T09:30:37+00:00"
  3353. },
  3354. {
  3355. "name": "symfony/polyfill-intl-normalizer",
  3356. "version": "v1.28.0",
  3357. "dist": {
  3358. "type": "zip",
  3359. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-intl-normalizer/v1.28.0/symfony-polyfill-intl-normalizer-v1.28.0.zip",
  3360. "reference": "8c4ad05dd0120b6a53c1ca374dca2ad0a1c4ed92",
  3361. "shasum": ""
  3362. },
  3363. "require": {
  3364. "php": ">=7.1"
  3365. },
  3366. "suggest": {
  3367. "ext-intl": "For best performance"
  3368. },
  3369. "type": "library",
  3370. "extra": {
  3371. "branch-alias": {
  3372. "dev-main": "1.28-dev"
  3373. },
  3374. "thanks": {
  3375. "name": "symfony/polyfill",
  3376. "url": "https://github.com/symfony/polyfill"
  3377. }
  3378. },
  3379. "autoload": {
  3380. "files": [
  3381. "bootstrap.php"
  3382. ],
  3383. "psr-4": {
  3384. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3385. },
  3386. "classmap": [
  3387. "Resources/stubs"
  3388. ]
  3389. },
  3390. "license": [
  3391. "MIT"
  3392. ],
  3393. "authors": [
  3394. {
  3395. "name": "Nicolas Grekas",
  3396. "email": "p@tchwork.com"
  3397. },
  3398. {
  3399. "name": "Symfony Community",
  3400. "homepage": "https://symfony.com/contributors"
  3401. }
  3402. ],
  3403. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3404. "homepage": "https://symfony.com",
  3405. "keywords": [
  3406. "compatibility",
  3407. "intl",
  3408. "normalizer",
  3409. "polyfill",
  3410. "portable",
  3411. "shim"
  3412. ],
  3413. "time": "2023-01-26T09:26:14+00:00"
  3414. },
  3415. {
  3416. "name": "symfony/polyfill-mbstring",
  3417. "version": "v1.28.0",
  3418. "dist": {
  3419. "type": "zip",
  3420. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-mbstring/v1.28.0/symfony-polyfill-mbstring-v1.28.0.zip",
  3421. "reference": "42292d99c55abe617799667f454222c54c60e229",
  3422. "shasum": ""
  3423. },
  3424. "require": {
  3425. "php": ">=7.1"
  3426. },
  3427. "provide": {
  3428. "ext-mbstring": "*"
  3429. },
  3430. "suggest": {
  3431. "ext-mbstring": "For best performance"
  3432. },
  3433. "type": "library",
  3434. "extra": {
  3435. "branch-alias": {
  3436. "dev-main": "1.28-dev"
  3437. },
  3438. "thanks": {
  3439. "name": "symfony/polyfill",
  3440. "url": "https://github.com/symfony/polyfill"
  3441. }
  3442. },
  3443. "autoload": {
  3444. "files": [
  3445. "bootstrap.php"
  3446. ],
  3447. "psr-4": {
  3448. "Symfony\\Polyfill\\Mbstring\\": ""
  3449. }
  3450. },
  3451. "license": [
  3452. "MIT"
  3453. ],
  3454. "authors": [
  3455. {
  3456. "name": "Nicolas Grekas",
  3457. "email": "p@tchwork.com"
  3458. },
  3459. {
  3460. "name": "Symfony Community",
  3461. "homepage": "https://symfony.com/contributors"
  3462. }
  3463. ],
  3464. "description": "Symfony polyfill for the Mbstring extension",
  3465. "homepage": "https://symfony.com",
  3466. "keywords": [
  3467. "compatibility",
  3468. "mbstring",
  3469. "polyfill",
  3470. "portable",
  3471. "shim"
  3472. ],
  3473. "time": "2023-07-28T09:04:16+00:00"
  3474. },
  3475. {
  3476. "name": "symfony/polyfill-php72",
  3477. "version": "v1.28.0",
  3478. "dist": {
  3479. "type": "zip",
  3480. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-php72/v1.28.0/symfony-polyfill-php72-v1.28.0.zip",
  3481. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  3482. "shasum": ""
  3483. },
  3484. "require": {
  3485. "php": ">=7.1"
  3486. },
  3487. "type": "library",
  3488. "extra": {
  3489. "branch-alias": {
  3490. "dev-main": "1.28-dev"
  3491. },
  3492. "thanks": {
  3493. "name": "symfony/polyfill",
  3494. "url": "https://github.com/symfony/polyfill"
  3495. }
  3496. },
  3497. "autoload": {
  3498. "files": [
  3499. "bootstrap.php"
  3500. ],
  3501. "psr-4": {
  3502. "Symfony\\Polyfill\\Php72\\": ""
  3503. }
  3504. },
  3505. "license": [
  3506. "MIT"
  3507. ],
  3508. "authors": [
  3509. {
  3510. "name": "Nicolas Grekas",
  3511. "email": "p@tchwork.com"
  3512. },
  3513. {
  3514. "name": "Symfony Community",
  3515. "homepage": "https://symfony.com/contributors"
  3516. }
  3517. ],
  3518. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  3519. "homepage": "https://symfony.com",
  3520. "keywords": [
  3521. "compatibility",
  3522. "polyfill",
  3523. "portable",
  3524. "shim"
  3525. ],
  3526. "time": "2023-01-26T09:26:14+00:00"
  3527. },
  3528. {
  3529. "name": "symfony/polyfill-php80",
  3530. "version": "v1.28.0",
  3531. "dist": {
  3532. "type": "zip",
  3533. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-php80/v1.28.0/symfony-polyfill-php80-v1.28.0.zip",
  3534. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  3535. "shasum": ""
  3536. },
  3537. "require": {
  3538. "php": ">=7.1"
  3539. },
  3540. "type": "library",
  3541. "extra": {
  3542. "branch-alias": {
  3543. "dev-main": "1.28-dev"
  3544. },
  3545. "thanks": {
  3546. "name": "symfony/polyfill",
  3547. "url": "https://github.com/symfony/polyfill"
  3548. }
  3549. },
  3550. "autoload": {
  3551. "files": [
  3552. "bootstrap.php"
  3553. ],
  3554. "psr-4": {
  3555. "Symfony\\Polyfill\\Php80\\": ""
  3556. },
  3557. "classmap": [
  3558. "Resources/stubs"
  3559. ]
  3560. },
  3561. "license": [
  3562. "MIT"
  3563. ],
  3564. "authors": [
  3565. {
  3566. "name": "Ion Bazan",
  3567. "email": "ion.bazan@gmail.com"
  3568. },
  3569. {
  3570. "name": "Nicolas Grekas",
  3571. "email": "p@tchwork.com"
  3572. },
  3573. {
  3574. "name": "Symfony Community",
  3575. "homepage": "https://symfony.com/contributors"
  3576. }
  3577. ],
  3578. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3579. "homepage": "https://symfony.com",
  3580. "keywords": [
  3581. "compatibility",
  3582. "polyfill",
  3583. "portable",
  3584. "shim"
  3585. ],
  3586. "time": "2023-01-26T09:26:14+00:00"
  3587. },
  3588. {
  3589. "name": "symfony/polyfill-php83",
  3590. "version": "v1.28.0",
  3591. "dist": {
  3592. "type": "zip",
  3593. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-php83/v1.28.0/symfony-polyfill-php83-v1.28.0.zip",
  3594. "reference": "b0f46ebbeeeda3e9d2faebdfbf4b4eae9b59fa11",
  3595. "shasum": ""
  3596. },
  3597. "require": {
  3598. "php": ">=7.1",
  3599. "symfony/polyfill-php80": "^1.14"
  3600. },
  3601. "type": "library",
  3602. "extra": {
  3603. "branch-alias": {
  3604. "dev-main": "1.28-dev"
  3605. },
  3606. "thanks": {
  3607. "name": "symfony/polyfill",
  3608. "url": "https://github.com/symfony/polyfill"
  3609. }
  3610. },
  3611. "autoload": {
  3612. "files": [
  3613. "bootstrap.php"
  3614. ],
  3615. "psr-4": {
  3616. "Symfony\\Polyfill\\Php83\\": ""
  3617. },
  3618. "classmap": [
  3619. "Resources/stubs"
  3620. ]
  3621. },
  3622. "license": [
  3623. "MIT"
  3624. ],
  3625. "authors": [
  3626. {
  3627. "name": "Nicolas Grekas",
  3628. "email": "p@tchwork.com"
  3629. },
  3630. {
  3631. "name": "Symfony Community",
  3632. "homepage": "https://symfony.com/contributors"
  3633. }
  3634. ],
  3635. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  3636. "homepage": "https://symfony.com",
  3637. "keywords": [
  3638. "compatibility",
  3639. "polyfill",
  3640. "portable",
  3641. "shim"
  3642. ],
  3643. "time": "2023-08-16T06:22:46+00:00"
  3644. },
  3645. {
  3646. "name": "symfony/polyfill-uuid",
  3647. "version": "v1.28.0",
  3648. "dist": {
  3649. "type": "zip",
  3650. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-uuid/v1.28.0/symfony-polyfill-uuid-v1.28.0.zip",
  3651. "reference": "9c44518a5aff8da565c8a55dbe85d2769e6f630e",
  3652. "shasum": ""
  3653. },
  3654. "require": {
  3655. "php": ">=7.1"
  3656. },
  3657. "provide": {
  3658. "ext-uuid": "*"
  3659. },
  3660. "suggest": {
  3661. "ext-uuid": "For best performance"
  3662. },
  3663. "type": "library",
  3664. "extra": {
  3665. "branch-alias": {
  3666. "dev-main": "1.28-dev"
  3667. },
  3668. "thanks": {
  3669. "name": "symfony/polyfill",
  3670. "url": "https://github.com/symfony/polyfill"
  3671. }
  3672. },
  3673. "autoload": {
  3674. "files": [
  3675. "bootstrap.php"
  3676. ],
  3677. "psr-4": {
  3678. "Symfony\\Polyfill\\Uuid\\": ""
  3679. }
  3680. },
  3681. "license": [
  3682. "MIT"
  3683. ],
  3684. "authors": [
  3685. {
  3686. "name": "Grégoire Pineau",
  3687. "email": "lyrixx@lyrixx.info"
  3688. },
  3689. {
  3690. "name": "Symfony Community",
  3691. "homepage": "https://symfony.com/contributors"
  3692. }
  3693. ],
  3694. "description": "Symfony polyfill for uuid functions",
  3695. "homepage": "https://symfony.com",
  3696. "keywords": [
  3697. "compatibility",
  3698. "polyfill",
  3699. "portable",
  3700. "uuid"
  3701. ],
  3702. "time": "2023-01-26T09:26:14+00:00"
  3703. },
  3704. {
  3705. "name": "symfony/process",
  3706. "version": "v6.4.2",
  3707. "dist": {
  3708. "type": "zip",
  3709. "url": "https://mirrors.tencent.com/repository/composer/symfony/process/v6.4.2/symfony-process-v6.4.2.zip",
  3710. "reference": "c4b1ef0bc80533d87a2e969806172f1c2a980241",
  3711. "shasum": ""
  3712. },
  3713. "require": {
  3714. "php": ">=8.1"
  3715. },
  3716. "type": "library",
  3717. "autoload": {
  3718. "psr-4": {
  3719. "Symfony\\Component\\Process\\": ""
  3720. },
  3721. "exclude-from-classmap": [
  3722. "/Tests/"
  3723. ]
  3724. },
  3725. "license": [
  3726. "MIT"
  3727. ],
  3728. "authors": [
  3729. {
  3730. "name": "Fabien Potencier",
  3731. "email": "fabien@symfony.com"
  3732. },
  3733. {
  3734. "name": "Symfony Community",
  3735. "homepage": "https://symfony.com/contributors"
  3736. }
  3737. ],
  3738. "description": "Executes commands in sub-processes",
  3739. "homepage": "https://symfony.com",
  3740. "time": "2023-12-22T16:42:54+00:00"
  3741. },
  3742. {
  3743. "name": "symfony/routing",
  3744. "version": "v6.4.2",
  3745. "dist": {
  3746. "type": "zip",
  3747. "url": "https://mirrors.tencent.com/repository/composer/symfony/routing/v6.4.2/symfony-routing-v6.4.2.zip",
  3748. "reference": "98eab13a07fddc85766f1756129c69f207ffbc21",
  3749. "shasum": ""
  3750. },
  3751. "require": {
  3752. "php": ">=8.1",
  3753. "symfony/deprecation-contracts": "^2.5|^3"
  3754. },
  3755. "conflict": {
  3756. "doctrine/annotations": "<1.12",
  3757. "symfony/config": "<6.2",
  3758. "symfony/dependency-injection": "<5.4",
  3759. "symfony/yaml": "<5.4"
  3760. },
  3761. "require-dev": {
  3762. "doctrine/annotations": "^1.12|^2",
  3763. "psr/log": "^1|^2|^3",
  3764. "symfony/config": "^6.2|^7.0",
  3765. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3766. "symfony/expression-language": "^5.4|^6.0|^7.0",
  3767. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  3768. "symfony/yaml": "^5.4|^6.0|^7.0"
  3769. },
  3770. "type": "library",
  3771. "autoload": {
  3772. "psr-4": {
  3773. "Symfony\\Component\\Routing\\": ""
  3774. },
  3775. "exclude-from-classmap": [
  3776. "/Tests/"
  3777. ]
  3778. },
  3779. "license": [
  3780. "MIT"
  3781. ],
  3782. "authors": [
  3783. {
  3784. "name": "Fabien Potencier",
  3785. "email": "fabien@symfony.com"
  3786. },
  3787. {
  3788. "name": "Symfony Community",
  3789. "homepage": "https://symfony.com/contributors"
  3790. }
  3791. ],
  3792. "description": "Maps an HTTP request to a set of configuration variables",
  3793. "homepage": "https://symfony.com",
  3794. "keywords": [
  3795. "router",
  3796. "routing",
  3797. "uri",
  3798. "url"
  3799. ],
  3800. "time": "2023-12-29T15:34:34+00:00"
  3801. },
  3802. {
  3803. "name": "symfony/service-contracts",
  3804. "version": "v3.4.1",
  3805. "dist": {
  3806. "type": "zip",
  3807. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/service-contracts/v3.4.1/symfony-service-contracts-v3.4.1.zip",
  3808. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0",
  3809. "shasum": ""
  3810. },
  3811. "require": {
  3812. "php": ">=8.1",
  3813. "psr/container": "^1.1|^2.0"
  3814. },
  3815. "conflict": {
  3816. "ext-psr": "<1.1|>=2"
  3817. },
  3818. "type": "library",
  3819. "extra": {
  3820. "branch-alias": {
  3821. "dev-main": "3.4-dev"
  3822. },
  3823. "thanks": {
  3824. "name": "symfony/contracts",
  3825. "url": "https://github.com/symfony/contracts"
  3826. }
  3827. },
  3828. "autoload": {
  3829. "psr-4": {
  3830. "Symfony\\Contracts\\Service\\": ""
  3831. },
  3832. "exclude-from-classmap": [
  3833. "/Test/"
  3834. ]
  3835. },
  3836. "license": [
  3837. "MIT"
  3838. ],
  3839. "authors": [
  3840. {
  3841. "name": "Nicolas Grekas",
  3842. "email": "p@tchwork.com"
  3843. },
  3844. {
  3845. "name": "Symfony Community",
  3846. "homepage": "https://symfony.com/contributors"
  3847. }
  3848. ],
  3849. "description": "Generic abstractions related to writing services",
  3850. "homepage": "https://symfony.com",
  3851. "keywords": [
  3852. "abstractions",
  3853. "contracts",
  3854. "decoupling",
  3855. "interfaces",
  3856. "interoperability",
  3857. "standards"
  3858. ],
  3859. "time": "2023-12-26T14:02:43+00:00"
  3860. },
  3861. {
  3862. "name": "symfony/string",
  3863. "version": "v7.0.2",
  3864. "dist": {
  3865. "type": "zip",
  3866. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/string/v7.0.2/symfony-string-v7.0.2.zip",
  3867. "reference": "cc78f14f91f5e53b42044d0620961c48028ff9f5",
  3868. "shasum": ""
  3869. },
  3870. "require": {
  3871. "php": ">=8.2",
  3872. "symfony/polyfill-ctype": "~1.8",
  3873. "symfony/polyfill-intl-grapheme": "~1.0",
  3874. "symfony/polyfill-intl-normalizer": "~1.0",
  3875. "symfony/polyfill-mbstring": "~1.0"
  3876. },
  3877. "conflict": {
  3878. "symfony/translation-contracts": "<2.5"
  3879. },
  3880. "require-dev": {
  3881. "symfony/error-handler": "^6.4|^7.0",
  3882. "symfony/http-client": "^6.4|^7.0",
  3883. "symfony/intl": "^6.4|^7.0",
  3884. "symfony/translation-contracts": "^2.5|^3.0",
  3885. "symfony/var-exporter": "^6.4|^7.0"
  3886. },
  3887. "type": "library",
  3888. "autoload": {
  3889. "files": [
  3890. "Resources/functions.php"
  3891. ],
  3892. "psr-4": {
  3893. "Symfony\\Component\\String\\": ""
  3894. },
  3895. "exclude-from-classmap": [
  3896. "/Tests/"
  3897. ]
  3898. },
  3899. "license": [
  3900. "MIT"
  3901. ],
  3902. "authors": [
  3903. {
  3904. "name": "Nicolas Grekas",
  3905. "email": "p@tchwork.com"
  3906. },
  3907. {
  3908. "name": "Symfony Community",
  3909. "homepage": "https://symfony.com/contributors"
  3910. }
  3911. ],
  3912. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  3913. "homepage": "https://symfony.com",
  3914. "keywords": [
  3915. "grapheme",
  3916. "i18n",
  3917. "string",
  3918. "unicode",
  3919. "utf-8",
  3920. "utf8"
  3921. ],
  3922. "time": "2023-12-10T16:54:46+00:00"
  3923. },
  3924. {
  3925. "name": "symfony/translation",
  3926. "version": "v6.4.2",
  3927. "dist": {
  3928. "type": "zip",
  3929. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/translation/v6.4.2/symfony-translation-v6.4.2.zip",
  3930. "reference": "a2ab2ec1a462e53016de8e8d5e8912bfd62ea681",
  3931. "shasum": ""
  3932. },
  3933. "require": {
  3934. "php": ">=8.1",
  3935. "symfony/deprecation-contracts": "^2.5|^3",
  3936. "symfony/polyfill-mbstring": "~1.0",
  3937. "symfony/translation-contracts": "^2.5|^3.0"
  3938. },
  3939. "conflict": {
  3940. "symfony/config": "<5.4",
  3941. "symfony/console": "<5.4",
  3942. "symfony/dependency-injection": "<5.4",
  3943. "symfony/http-client-contracts": "<2.5",
  3944. "symfony/http-kernel": "<5.4",
  3945. "symfony/service-contracts": "<2.5",
  3946. "symfony/twig-bundle": "<5.4",
  3947. "symfony/yaml": "<5.4"
  3948. },
  3949. "provide": {
  3950. "symfony/translation-implementation": "2.3|3.0"
  3951. },
  3952. "require-dev": {
  3953. "nikic/php-parser": "^4.13",
  3954. "psr/log": "^1|^2|^3",
  3955. "symfony/config": "^5.4|^6.0|^7.0",
  3956. "symfony/console": "^5.4|^6.0|^7.0",
  3957. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3958. "symfony/finder": "^5.4|^6.0|^7.0",
  3959. "symfony/http-client-contracts": "^2.5|^3.0",
  3960. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  3961. "symfony/intl": "^5.4|^6.0|^7.0",
  3962. "symfony/polyfill-intl-icu": "^1.21",
  3963. "symfony/routing": "^5.4|^6.0|^7.0",
  3964. "symfony/service-contracts": "^2.5|^3",
  3965. "symfony/yaml": "^5.4|^6.0|^7.0"
  3966. },
  3967. "type": "library",
  3968. "autoload": {
  3969. "files": [
  3970. "Resources/functions.php"
  3971. ],
  3972. "psr-4": {
  3973. "Symfony\\Component\\Translation\\": ""
  3974. },
  3975. "exclude-from-classmap": [
  3976. "/Tests/"
  3977. ]
  3978. },
  3979. "license": [
  3980. "MIT"
  3981. ],
  3982. "authors": [
  3983. {
  3984. "name": "Fabien Potencier",
  3985. "email": "fabien@symfony.com"
  3986. },
  3987. {
  3988. "name": "Symfony Community",
  3989. "homepage": "https://symfony.com/contributors"
  3990. }
  3991. ],
  3992. "description": "Provides tools to internationalize your application",
  3993. "homepage": "https://symfony.com",
  3994. "time": "2023-12-18T09:25:29+00:00"
  3995. },
  3996. {
  3997. "name": "symfony/translation-contracts",
  3998. "version": "v3.4.1",
  3999. "dist": {
  4000. "type": "zip",
  4001. "url": "https://mirrors.tencent.com/repository/composer/symfony/translation-contracts/v3.4.1/symfony-translation-contracts-v3.4.1.zip",
  4002. "reference": "06450585bf65e978026bda220cdebca3f867fde7",
  4003. "shasum": ""
  4004. },
  4005. "require": {
  4006. "php": ">=8.1"
  4007. },
  4008. "type": "library",
  4009. "extra": {
  4010. "branch-alias": {
  4011. "dev-main": "3.4-dev"
  4012. },
  4013. "thanks": {
  4014. "name": "symfony/contracts",
  4015. "url": "https://github.com/symfony/contracts"
  4016. }
  4017. },
  4018. "autoload": {
  4019. "psr-4": {
  4020. "Symfony\\Contracts\\Translation\\": ""
  4021. },
  4022. "exclude-from-classmap": [
  4023. "/Test/"
  4024. ]
  4025. },
  4026. "license": [
  4027. "MIT"
  4028. ],
  4029. "authors": [
  4030. {
  4031. "name": "Nicolas Grekas",
  4032. "email": "p@tchwork.com"
  4033. },
  4034. {
  4035. "name": "Symfony Community",
  4036. "homepage": "https://symfony.com/contributors"
  4037. }
  4038. ],
  4039. "description": "Generic abstractions related to translation",
  4040. "homepage": "https://symfony.com",
  4041. "keywords": [
  4042. "abstractions",
  4043. "contracts",
  4044. "decoupling",
  4045. "interfaces",
  4046. "interoperability",
  4047. "standards"
  4048. ],
  4049. "time": "2023-12-26T14:02:43+00:00"
  4050. },
  4051. {
  4052. "name": "symfony/uid",
  4053. "version": "v6.4.0",
  4054. "dist": {
  4055. "type": "zip",
  4056. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/uid/v6.4.0/symfony-uid-v6.4.0.zip",
  4057. "reference": "8092dd1b1a41372110d06374f99ee62f7f0b9a92",
  4058. "shasum": ""
  4059. },
  4060. "require": {
  4061. "php": ">=8.1",
  4062. "symfony/polyfill-uuid": "^1.15"
  4063. },
  4064. "require-dev": {
  4065. "symfony/console": "^5.4|^6.0|^7.0"
  4066. },
  4067. "type": "library",
  4068. "autoload": {
  4069. "psr-4": {
  4070. "Symfony\\Component\\Uid\\": ""
  4071. },
  4072. "exclude-from-classmap": [
  4073. "/Tests/"
  4074. ]
  4075. },
  4076. "license": [
  4077. "MIT"
  4078. ],
  4079. "authors": [
  4080. {
  4081. "name": "Grégoire Pineau",
  4082. "email": "lyrixx@lyrixx.info"
  4083. },
  4084. {
  4085. "name": "Nicolas Grekas",
  4086. "email": "p@tchwork.com"
  4087. },
  4088. {
  4089. "name": "Symfony Community",
  4090. "homepage": "https://symfony.com/contributors"
  4091. }
  4092. ],
  4093. "description": "Provides an object-oriented API to generate and represent UIDs",
  4094. "homepage": "https://symfony.com",
  4095. "keywords": [
  4096. "UID",
  4097. "ulid",
  4098. "uuid"
  4099. ],
  4100. "time": "2023-10-31T08:18:17+00:00"
  4101. },
  4102. {
  4103. "name": "symfony/var-dumper",
  4104. "version": "v6.4.2",
  4105. "dist": {
  4106. "type": "zip",
  4107. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/var-dumper/v6.4.2/symfony-var-dumper-v6.4.2.zip",
  4108. "reference": "68d6573ec98715ddcae5a0a85bee3c1c27a4c33f",
  4109. "shasum": ""
  4110. },
  4111. "require": {
  4112. "php": ">=8.1",
  4113. "symfony/deprecation-contracts": "^2.5|^3",
  4114. "symfony/polyfill-mbstring": "~1.0"
  4115. },
  4116. "conflict": {
  4117. "symfony/console": "<5.4"
  4118. },
  4119. "require-dev": {
  4120. "ext-iconv": "*",
  4121. "symfony/console": "^5.4|^6.0|^7.0",
  4122. "symfony/error-handler": "^6.3|^7.0",
  4123. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  4124. "symfony/process": "^5.4|^6.0|^7.0",
  4125. "symfony/uid": "^5.4|^6.0|^7.0",
  4126. "twig/twig": "^2.13|^3.0.4"
  4127. },
  4128. "bin": [
  4129. "Resources/bin/var-dump-server"
  4130. ],
  4131. "type": "library",
  4132. "autoload": {
  4133. "files": [
  4134. "Resources/functions/dump.php"
  4135. ],
  4136. "psr-4": {
  4137. "Symfony\\Component\\VarDumper\\": ""
  4138. },
  4139. "exclude-from-classmap": [
  4140. "/Tests/"
  4141. ]
  4142. },
  4143. "license": [
  4144. "MIT"
  4145. ],
  4146. "authors": [
  4147. {
  4148. "name": "Nicolas Grekas",
  4149. "email": "p@tchwork.com"
  4150. },
  4151. {
  4152. "name": "Symfony Community",
  4153. "homepage": "https://symfony.com/contributors"
  4154. }
  4155. ],
  4156. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  4157. "homepage": "https://symfony.com",
  4158. "keywords": [
  4159. "debug",
  4160. "dump"
  4161. ],
  4162. "time": "2023-12-28T19:16:56+00:00"
  4163. },
  4164. {
  4165. "name": "tijsverkoyen/css-to-inline-styles",
  4166. "version": "v2.2.7",
  4167. "dist": {
  4168. "type": "zip",
  4169. "url": "https://mirrors.tencent.com/repository/composer/tijsverkoyen/css-to-inline-styles/v2.2.7/tijsverkoyen-css-to-inline-styles-v2.2.7.zip",
  4170. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  4171. "shasum": ""
  4172. },
  4173. "require": {
  4174. "ext-dom": "*",
  4175. "ext-libxml": "*",
  4176. "php": "^5.5 || ^7.0 || ^8.0",
  4177. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  4178. },
  4179. "require-dev": {
  4180. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  4181. },
  4182. "type": "library",
  4183. "extra": {
  4184. "branch-alias": {
  4185. "dev-master": "2.2.x-dev"
  4186. }
  4187. },
  4188. "autoload": {
  4189. "psr-4": {
  4190. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  4191. }
  4192. },
  4193. "license": [
  4194. "BSD-3-Clause"
  4195. ],
  4196. "authors": [
  4197. {
  4198. "name": "Tijs Verkoyen",
  4199. "email": "css_to_inline_styles@verkoyen.eu",
  4200. "role": "Developer"
  4201. }
  4202. ],
  4203. "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.",
  4204. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  4205. "time": "2023-12-08T13:03:43+00:00"
  4206. },
  4207. {
  4208. "name": "tucker-eric/eloquentfilter",
  4209. "version": "3.2.0",
  4210. "dist": {
  4211. "type": "zip",
  4212. "url": "https://mirrors.cloud.tencent.com/repository/composer/tucker-eric/eloquentfilter/3.2.0/tucker-eric-eloquentfilter-3.2.0.zip",
  4213. "reference": "faaad783b7f23af7ba7e23baaa56d71af51504a9",
  4214. "shasum": ""
  4215. },
  4216. "require": {
  4217. "illuminate/config": "~6.0|~7.0|~8.0|~9.0|~10.0",
  4218. "illuminate/console": "~6.0|~7.0|~8.0|~9.0|~10.0",
  4219. "illuminate/database": "~6.0|~7.0|~8.0|~9.0|~10.0",
  4220. "illuminate/filesystem": "~6.0|~7.0|~8.0|~9.0|~10.0",
  4221. "illuminate/pagination": "~6.0|~7.0|~8.0|~9.0|~10.0",
  4222. "illuminate/support": "~6.0|~7.0|~8.0|~9.0|~10.0",
  4223. "php": ">=7.2"
  4224. },
  4225. "require-dev": {
  4226. "mockery/mockery": "^1.3",
  4227. "phpunit/phpunit": "^8"
  4228. },
  4229. "type": "library",
  4230. "extra": {
  4231. "laravel": {
  4232. "providers": [
  4233. "EloquentFilter\\ServiceProvider"
  4234. ]
  4235. }
  4236. },
  4237. "autoload": {
  4238. "psr-4": {
  4239. "EloquentFilter\\": "src/"
  4240. }
  4241. },
  4242. "license": [
  4243. "MIT"
  4244. ],
  4245. "authors": [
  4246. {
  4247. "name": "Eric Tucker",
  4248. "email": "tucker.ericm@gmail.com"
  4249. }
  4250. ],
  4251. "description": "An Eloquent way to filter Eloquent Models",
  4252. "keywords": [
  4253. "eloquent",
  4254. "filter",
  4255. "laravel",
  4256. "model",
  4257. "query",
  4258. "search"
  4259. ],
  4260. "time": "2023-02-07T18:34:53+00:00"
  4261. },
  4262. {
  4263. "name": "vlucas/phpdotenv",
  4264. "version": "v5.6.0",
  4265. "dist": {
  4266. "type": "zip",
  4267. "url": "https://mirrors.tencent.com/repository/composer/vlucas/phpdotenv/v5.6.0/vlucas-phpdotenv-v5.6.0.zip",
  4268. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  4269. "shasum": ""
  4270. },
  4271. "require": {
  4272. "ext-pcre": "*",
  4273. "graham-campbell/result-type": "^1.1.2",
  4274. "php": "^7.2.5 || ^8.0",
  4275. "phpoption/phpoption": "^1.9.2",
  4276. "symfony/polyfill-ctype": "^1.24",
  4277. "symfony/polyfill-mbstring": "^1.24",
  4278. "symfony/polyfill-php80": "^1.24"
  4279. },
  4280. "require-dev": {
  4281. "bamarni/composer-bin-plugin": "^1.8.2",
  4282. "ext-filter": "*",
  4283. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  4284. },
  4285. "suggest": {
  4286. "ext-filter": "Required to use the boolean validator."
  4287. },
  4288. "type": "library",
  4289. "extra": {
  4290. "bamarni-bin": {
  4291. "bin-links": true,
  4292. "forward-command": true
  4293. },
  4294. "branch-alias": {
  4295. "dev-master": "5.6-dev"
  4296. }
  4297. },
  4298. "autoload": {
  4299. "psr-4": {
  4300. "Dotenv\\": "src/"
  4301. }
  4302. },
  4303. "license": [
  4304. "BSD-3-Clause"
  4305. ],
  4306. "authors": [
  4307. {
  4308. "name": "Graham Campbell",
  4309. "email": "hello@gjcampbell.co.uk",
  4310. "homepage": "https://github.com/GrahamCampbell"
  4311. },
  4312. {
  4313. "name": "Vance Lucas",
  4314. "email": "vance@vancelucas.com",
  4315. "homepage": "https://github.com/vlucas"
  4316. }
  4317. ],
  4318. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  4319. "keywords": [
  4320. "dotenv",
  4321. "env",
  4322. "environment"
  4323. ],
  4324. "time": "2023-11-12T22:43:29+00:00"
  4325. },
  4326. {
  4327. "name": "voku/portable-ascii",
  4328. "version": "2.0.1",
  4329. "dist": {
  4330. "type": "zip",
  4331. "url": "https://mirrors.tencent.com/repository/composer/voku/portable-ascii/2.0.1/voku-portable-ascii-2.0.1.zip",
  4332. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  4333. "shasum": ""
  4334. },
  4335. "require": {
  4336. "php": ">=7.0.0"
  4337. },
  4338. "require-dev": {
  4339. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  4340. },
  4341. "suggest": {
  4342. "ext-intl": "Use Intl for transliterator_transliterate() support"
  4343. },
  4344. "type": "library",
  4345. "autoload": {
  4346. "psr-4": {
  4347. "voku\\": "src/voku/"
  4348. }
  4349. },
  4350. "license": [
  4351. "MIT"
  4352. ],
  4353. "authors": [
  4354. {
  4355. "name": "Lars Moelleken",
  4356. "homepage": "http://www.moelleken.org/"
  4357. }
  4358. ],
  4359. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  4360. "homepage": "https://github.com/voku/portable-ascii",
  4361. "keywords": [
  4362. "ascii",
  4363. "clean",
  4364. "php"
  4365. ],
  4366. "time": "2022-03-08T17:03:00+00:00"
  4367. },
  4368. {
  4369. "name": "webmozart/assert",
  4370. "version": "1.11.0",
  4371. "dist": {
  4372. "type": "zip",
  4373. "url": "https://mirrors.cloud.tencent.com/repository/composer/webmozart/assert/1.11.0/webmozart-assert-1.11.0.zip",
  4374. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  4375. "shasum": ""
  4376. },
  4377. "require": {
  4378. "ext-ctype": "*",
  4379. "php": "^7.2 || ^8.0"
  4380. },
  4381. "conflict": {
  4382. "phpstan/phpstan": "<0.12.20",
  4383. "vimeo/psalm": "<4.6.1 || 4.6.2"
  4384. },
  4385. "require-dev": {
  4386. "phpunit/phpunit": "^8.5.13"
  4387. },
  4388. "type": "library",
  4389. "extra": {
  4390. "branch-alias": {
  4391. "dev-master": "1.10-dev"
  4392. }
  4393. },
  4394. "autoload": {
  4395. "psr-4": {
  4396. "Webmozart\\Assert\\": "src/"
  4397. }
  4398. },
  4399. "license": [
  4400. "MIT"
  4401. ],
  4402. "authors": [
  4403. {
  4404. "name": "Bernhard Schussek",
  4405. "email": "bschussek@gmail.com"
  4406. }
  4407. ],
  4408. "description": "Assertions to validate method input/output with nice error messages.",
  4409. "keywords": [
  4410. "assert",
  4411. "check",
  4412. "validate"
  4413. ],
  4414. "time": "2022-06-03T18:03:27+00:00"
  4415. }
  4416. ],
  4417. "packages-dev": [
  4418. {
  4419. "name": "archtechx/enums",
  4420. "version": "v0.3.2",
  4421. "dist": {
  4422. "type": "zip",
  4423. "url": "https://mirrors.cloud.tencent.com/repository/composer/archtechx/enums/v0.3.2/archtechx-enums-v0.3.2.zip",
  4424. "reference": "475f45e682b0771253707f9403b704759a08da5f",
  4425. "shasum": ""
  4426. },
  4427. "require": {
  4428. "php": "^8.1"
  4429. },
  4430. "require-dev": {
  4431. "nunomaduro/larastan": "^1.0|^2.4",
  4432. "orchestra/testbench": "^6.9|^7.0|^8.0",
  4433. "pestphp/pest": "^1.2|^2.0",
  4434. "pestphp/pest-plugin-laravel": "^1.0|^2.0"
  4435. },
  4436. "type": "library",
  4437. "autoload": {
  4438. "psr-4": {
  4439. "ArchTech\\Enums\\": "src/"
  4440. }
  4441. },
  4442. "license": [
  4443. "MIT"
  4444. ],
  4445. "authors": [
  4446. {
  4447. "name": "Samuel Štancl",
  4448. "email": "samuel@archte.ch"
  4449. }
  4450. ],
  4451. "description": "Helpers for making PHP enums more lovable.",
  4452. "time": "2023-02-15T13:05:41+00:00"
  4453. },
  4454. {
  4455. "name": "composer/semver",
  4456. "version": "3.4.0",
  4457. "dist": {
  4458. "type": "zip",
  4459. "url": "https://mirrors.cloud.tencent.com/repository/composer/composer/semver/3.4.0/composer-semver-3.4.0.zip",
  4460. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  4461. "shasum": ""
  4462. },
  4463. "require": {
  4464. "php": "^5.3.2 || ^7.0 || ^8.0"
  4465. },
  4466. "require-dev": {
  4467. "phpstan/phpstan": "^1.4",
  4468. "symfony/phpunit-bridge": "^4.2 || ^5"
  4469. },
  4470. "type": "library",
  4471. "extra": {
  4472. "branch-alias": {
  4473. "dev-main": "3.x-dev"
  4474. }
  4475. },
  4476. "autoload": {
  4477. "psr-4": {
  4478. "Composer\\Semver\\": "src"
  4479. }
  4480. },
  4481. "license": [
  4482. "MIT"
  4483. ],
  4484. "authors": [
  4485. {
  4486. "name": "Nils Adermann",
  4487. "email": "naderman@naderman.de",
  4488. "homepage": "http://www.naderman.de"
  4489. },
  4490. {
  4491. "name": "Jordi Boggiano",
  4492. "email": "j.boggiano@seld.be",
  4493. "homepage": "http://seld.be"
  4494. },
  4495. {
  4496. "name": "Rob Bast",
  4497. "email": "rob.bast@gmail.com",
  4498. "homepage": "http://robbast.nl"
  4499. }
  4500. ],
  4501. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  4502. "keywords": [
  4503. "semantic",
  4504. "semver",
  4505. "validation",
  4506. "versioning"
  4507. ],
  4508. "time": "2023-08-31T09:50:34+00:00"
  4509. },
  4510. {
  4511. "name": "dragon-code/contracts",
  4512. "version": "2.22.0",
  4513. "dist": {
  4514. "type": "zip",
  4515. "url": "https://mirrors.cloud.tencent.com/repository/composer/dragon-code/contracts/2.22.0/dragon-code-contracts-2.22.0.zip",
  4516. "reference": "5c4a9653dd5985151adcb56790bd56645edddae3",
  4517. "shasum": ""
  4518. },
  4519. "require": {
  4520. "php": "^7.2.5 || ^8.0",
  4521. "psr/http-message": "^1.0.1 || ^2.0",
  4522. "symfony/http-kernel": "^4.0 || ^5.0 || ^6.0 || ^7.0",
  4523. "symfony/polyfill-php80": "^1.23"
  4524. },
  4525. "conflict": {
  4526. "andrey-helldar/contracts": "*"
  4527. },
  4528. "require-dev": {
  4529. "illuminate/database": "^10.0",
  4530. "phpdocumentor/reflection-docblock": "^5.0"
  4531. },
  4532. "type": "library",
  4533. "autoload": {
  4534. "psr-4": {
  4535. "DragonCode\\Contracts\\": "src"
  4536. }
  4537. },
  4538. "license": [
  4539. "MIT"
  4540. ],
  4541. "authors": [
  4542. {
  4543. "name": "Andrey Helldar",
  4544. "email": "helldar@dragon-code.pro",
  4545. "homepage": "https://github.com/andrey-helldar"
  4546. }
  4547. ],
  4548. "description": "A set of contracts for any project",
  4549. "keywords": [
  4550. "contracts",
  4551. "interfaces"
  4552. ],
  4553. "time": "2023-12-09T12:44:43+00:00"
  4554. },
  4555. {
  4556. "name": "dragon-code/pretty-array",
  4557. "version": "v4.1.0",
  4558. "dist": {
  4559. "type": "zip",
  4560. "url": "https://mirrors.cloud.tencent.com/repository/composer/dragon-code/pretty-array/v4.1.0/dragon-code-pretty-array-v4.1.0.zip",
  4561. "reference": "6c84e2454491b414efbd37985c322712cdf9012f",
  4562. "shasum": ""
  4563. },
  4564. "require": {
  4565. "dragon-code/contracts": "^2.20",
  4566. "dragon-code/support": "^6.11.2",
  4567. "ext-dom": "*",
  4568. "ext-mbstring": "*",
  4569. "php": "^8.0"
  4570. },
  4571. "require-dev": {
  4572. "phpunit/phpunit": "^9.6 || ^10.2"
  4573. },
  4574. "suggest": {
  4575. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  4576. },
  4577. "type": "library",
  4578. "autoload": {
  4579. "psr-4": {
  4580. "DragonCode\\PrettyArray\\": "src"
  4581. }
  4582. },
  4583. "license": [
  4584. "MIT"
  4585. ],
  4586. "authors": [
  4587. {
  4588. "name": "Andrey Helldar",
  4589. "email": "helldar@dragon-code.pro",
  4590. "homepage": "https://github.com/andrey-helldar"
  4591. }
  4592. ],
  4593. "description": "Simple conversion of an array to a pretty view",
  4594. "keywords": [
  4595. "andrey helldar",
  4596. "array",
  4597. "dragon",
  4598. "dragon code",
  4599. "pretty",
  4600. "pretty array"
  4601. ],
  4602. "time": "2023-06-02T11:37:44+00:00"
  4603. },
  4604. {
  4605. "name": "dragon-code/support",
  4606. "version": "6.12.0",
  4607. "dist": {
  4608. "type": "zip",
  4609. "url": "https://mirrors.cloud.tencent.com/repository/composer/dragon-code/support/6.12.0/dragon-code-support-6.12.0.zip",
  4610. "reference": "caee4d59725b1331c9970f57b4f047eab40d8fa0",
  4611. "shasum": ""
  4612. },
  4613. "require": {
  4614. "dragon-code/contracts": "^2.22.0",
  4615. "ext-bcmath": "*",
  4616. "ext-ctype": "*",
  4617. "ext-dom": "*",
  4618. "ext-json": "*",
  4619. "ext-mbstring": "*",
  4620. "php": "^8.0",
  4621. "psr/http-message": "^1.0.1 || ^2.0",
  4622. "symfony/polyfill-php81": "^1.25",
  4623. "voku/portable-ascii": "^1.4.8 || ^2.0.1"
  4624. },
  4625. "conflict": {
  4626. "andrey-helldar/support": "*"
  4627. },
  4628. "require-dev": {
  4629. "illuminate/contracts": "^9.0 || ^10.0",
  4630. "phpunit/phpunit": "^9.6",
  4631. "symfony/var-dumper": "^6.0 || ^7.0"
  4632. },
  4633. "suggest": {
  4634. "dragon-code/laravel-support": "Various helper files for the Laravel and Lumen frameworks",
  4635. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  4636. },
  4637. "type": "library",
  4638. "extra": {
  4639. "dragon-code": {
  4640. "docs-generator": {
  4641. "preview": {
  4642. "brand": "php",
  4643. "vendor": "The Dragon Code"
  4644. }
  4645. }
  4646. }
  4647. },
  4648. "autoload": {
  4649. "psr-4": {
  4650. "DragonCode\\Support\\": "src"
  4651. }
  4652. },
  4653. "license": [
  4654. "MIT"
  4655. ],
  4656. "authors": [
  4657. {
  4658. "name": "Andrey Helldar",
  4659. "email": "helldar@dragon-code.pro",
  4660. "homepage": "https://github.com/andrey-helldar"
  4661. }
  4662. ],
  4663. "description": "Support package is a collection of helpers and tools for any project.",
  4664. "keywords": [
  4665. "dragon",
  4666. "dragon-code",
  4667. "framework",
  4668. "helper",
  4669. "helpers",
  4670. "laravel",
  4671. "php",
  4672. "support",
  4673. "symfony",
  4674. "yii",
  4675. "yii2"
  4676. ],
  4677. "time": "2023-12-09T12:52:29+00:00"
  4678. },
  4679. {
  4680. "name": "fakerphp/faker",
  4681. "version": "v1.23.1",
  4682. "dist": {
  4683. "type": "zip",
  4684. "url": "https://mirrors.tencent.com/repository/composer/fakerphp/faker/v1.23.1/fakerphp-faker-v1.23.1.zip",
  4685. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  4686. "shasum": ""
  4687. },
  4688. "require": {
  4689. "php": "^7.4 || ^8.0",
  4690. "psr/container": "^1.0 || ^2.0",
  4691. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  4692. },
  4693. "conflict": {
  4694. "fzaninotto/faker": "*"
  4695. },
  4696. "require-dev": {
  4697. "bamarni/composer-bin-plugin": "^1.4.1",
  4698. "doctrine/persistence": "^1.3 || ^2.0",
  4699. "ext-intl": "*",
  4700. "phpunit/phpunit": "^9.5.26",
  4701. "symfony/phpunit-bridge": "^5.4.16"
  4702. },
  4703. "suggest": {
  4704. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  4705. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  4706. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  4707. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  4708. "ext-mbstring": "Required for multibyte Unicode string functionality."
  4709. },
  4710. "type": "library",
  4711. "autoload": {
  4712. "psr-4": {
  4713. "Faker\\": "src/Faker/"
  4714. }
  4715. },
  4716. "license": [
  4717. "MIT"
  4718. ],
  4719. "authors": [
  4720. {
  4721. "name": "François Zaninotto"
  4722. }
  4723. ],
  4724. "description": "Faker is a PHP library that generates fake data for you.",
  4725. "keywords": [
  4726. "data",
  4727. "faker",
  4728. "fixtures"
  4729. ],
  4730. "time": "2024-01-02T13:46:09+00:00"
  4731. },
  4732. {
  4733. "name": "filp/whoops",
  4734. "version": "2.15.4",
  4735. "dist": {
  4736. "type": "zip",
  4737. "url": "https://mirrors.tencent.com/repository/composer/filp/whoops/2.15.4/filp-whoops-2.15.4.zip",
  4738. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  4739. "shasum": ""
  4740. },
  4741. "require": {
  4742. "php": "^5.5.9 || ^7.0 || ^8.0",
  4743. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  4744. },
  4745. "require-dev": {
  4746. "mockery/mockery": "^0.9 || ^1.0",
  4747. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  4748. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  4749. },
  4750. "suggest": {
  4751. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  4752. "whoops/soap": "Formats errors as SOAP responses"
  4753. },
  4754. "type": "library",
  4755. "extra": {
  4756. "branch-alias": {
  4757. "dev-master": "2.7-dev"
  4758. }
  4759. },
  4760. "autoload": {
  4761. "psr-4": {
  4762. "Whoops\\": "src/Whoops/"
  4763. }
  4764. },
  4765. "license": [
  4766. "MIT"
  4767. ],
  4768. "authors": [
  4769. {
  4770. "name": "Filipe Dobreira",
  4771. "homepage": "https://github.com/filp",
  4772. "role": "Developer"
  4773. }
  4774. ],
  4775. "description": "php error handling for cool kids",
  4776. "homepage": "https://filp.github.io/whoops/",
  4777. "keywords": [
  4778. "error",
  4779. "exception",
  4780. "handling",
  4781. "library",
  4782. "throwable",
  4783. "whoops"
  4784. ],
  4785. "time": "2023-11-03T12:00:00+00:00"
  4786. },
  4787. {
  4788. "name": "hamcrest/hamcrest-php",
  4789. "version": "v2.0.1",
  4790. "dist": {
  4791. "type": "zip",
  4792. "url": "https://mirrors.tencent.com/repository/composer/hamcrest/hamcrest-php/v2.0.1/hamcrest-hamcrest-php-v2.0.1.zip",
  4793. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  4794. "shasum": ""
  4795. },
  4796. "require": {
  4797. "php": "^5.3|^7.0|^8.0"
  4798. },
  4799. "replace": {
  4800. "cordoval/hamcrest-php": "*",
  4801. "davedevelopment/hamcrest-php": "*",
  4802. "kodova/hamcrest-php": "*"
  4803. },
  4804. "require-dev": {
  4805. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  4806. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  4807. },
  4808. "type": "library",
  4809. "extra": {
  4810. "branch-alias": {
  4811. "dev-master": "2.1-dev"
  4812. }
  4813. },
  4814. "autoload": {
  4815. "classmap": [
  4816. "hamcrest"
  4817. ]
  4818. },
  4819. "license": [
  4820. "BSD-3-Clause"
  4821. ],
  4822. "description": "This is the PHP port of Hamcrest Matchers",
  4823. "keywords": [
  4824. "test"
  4825. ],
  4826. "time": "2020-07-09T08:09:16+00:00"
  4827. },
  4828. {
  4829. "name": "laravel-lang/actions",
  4830. "version": "1.4.1",
  4831. "dist": {
  4832. "type": "zip",
  4833. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/actions/1.4.1/laravel-lang-actions-1.4.1.zip",
  4834. "reference": "8bf23383a69c13404f9753de4884028e5c4077ce",
  4835. "shasum": ""
  4836. },
  4837. "require": {
  4838. "ext-json": "*",
  4839. "laravel-lang/publisher": "^14.0 || ^15.0 || ^16.0",
  4840. "php": "^8.1"
  4841. },
  4842. "require-dev": {
  4843. "laravel-lang/status-generator": "^2.3.1",
  4844. "phpunit/phpunit": "^10.0",
  4845. "symfony/var-dumper": "^6.3 || ^7.0"
  4846. },
  4847. "type": "library",
  4848. "extra": {
  4849. "laravel": {
  4850. "providers": [
  4851. "LaravelLang\\Actions\\ServiceProvider"
  4852. ]
  4853. }
  4854. },
  4855. "autoload": {
  4856. "psr-4": {
  4857. "LaravelLang\\Actions\\": "src/"
  4858. }
  4859. },
  4860. "license": [
  4861. "MIT"
  4862. ],
  4863. "authors": [
  4864. {
  4865. "name": "Andrey Helldar",
  4866. "email": "helldar@dragon-code.pro",
  4867. "homepage": "https://dragon-code.pro"
  4868. },
  4869. {
  4870. "name": "Laravel Lang Team",
  4871. "homepage": "https://laravel-lang.com"
  4872. }
  4873. ],
  4874. "description": "Translation of buttons and other action elements",
  4875. "keywords": [
  4876. "actions",
  4877. "buttons",
  4878. "lang",
  4879. "languages",
  4880. "laravel",
  4881. "translations"
  4882. ],
  4883. "time": "2024-01-02T09:51:24+00:00"
  4884. },
  4885. {
  4886. "name": "laravel-lang/attributes",
  4887. "version": "2.9.2",
  4888. "dist": {
  4889. "type": "zip",
  4890. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/attributes/2.9.2/laravel-lang-attributes-2.9.2.zip",
  4891. "reference": "871cc7aec0aba1e676235605c322903bedc85167",
  4892. "shasum": ""
  4893. },
  4894. "require": {
  4895. "ext-json": "*",
  4896. "laravel-lang/publisher": "^14.0 || ^15.0 || ^16.0",
  4897. "php": "^8.1"
  4898. },
  4899. "require-dev": {
  4900. "laravel-lang/status-generator": "^1.19 || ^2.0",
  4901. "phpunit/phpunit": "^10.0",
  4902. "symfony/var-dumper": "^6.0 || ^7.0"
  4903. },
  4904. "type": "library",
  4905. "extra": {
  4906. "laravel": {
  4907. "providers": [
  4908. "LaravelLang\\Attributes\\ServiceProvider"
  4909. ]
  4910. }
  4911. },
  4912. "autoload": {
  4913. "psr-4": {
  4914. "LaravelLang\\Attributes\\": "src/"
  4915. }
  4916. },
  4917. "license": [
  4918. "MIT"
  4919. ],
  4920. "authors": [
  4921. {
  4922. "name": "Andrey Helldar",
  4923. "email": "helldar@dragon-code.pro"
  4924. },
  4925. {
  4926. "name": "Laravel-Lang Team",
  4927. "homepage": "https://github.com/Laravel-Lang"
  4928. }
  4929. ],
  4930. "description": "List of 126 languages for form field names",
  4931. "keywords": [
  4932. "attributes",
  4933. "fields",
  4934. "form",
  4935. "lang",
  4936. "languages",
  4937. "laravel",
  4938. "messages",
  4939. "translations",
  4940. "validation"
  4941. ],
  4942. "time": "2024-01-13T14:39:47+00:00"
  4943. },
  4944. {
  4945. "name": "laravel-lang/common",
  4946. "version": "6.1.0",
  4947. "dist": {
  4948. "type": "zip",
  4949. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/common/6.1.0/laravel-lang-common-6.1.0.zip",
  4950. "reference": "969cf0c8870b4763554ed2b69aab9b1f391f85a4",
  4951. "shasum": ""
  4952. },
  4953. "require": {
  4954. "laravel-lang/actions": "^1.1",
  4955. "laravel-lang/attributes": "^2.7",
  4956. "laravel-lang/http-statuses": "^3.7",
  4957. "laravel-lang/json-fallback": "^2.0",
  4958. "laravel-lang/lang": "^13.12 || ^14.0",
  4959. "laravel-lang/locales": "^2.3",
  4960. "laravel-lang/publisher": "^16.0",
  4961. "php": "^8.1"
  4962. },
  4963. "require-dev": {
  4964. "dragon-code/support": "^6.12",
  4965. "orchestra/testbench": "^8.17",
  4966. "phpunit/phpunit": "^10.5.3",
  4967. "symfony/var-dumper": "^6.4 || ^7.0"
  4968. },
  4969. "type": "library",
  4970. "license": [
  4971. "MIT"
  4972. ],
  4973. "authors": [
  4974. {
  4975. "name": "Laravel-Lang Team",
  4976. "homepage": "https://github.com/Laravel-Lang"
  4977. },
  4978. {
  4979. "name": "Andrey Helldar",
  4980. "email": "helldar@dragon-code.pro",
  4981. "homepage": "https://dragon-code.pro"
  4982. }
  4983. ],
  4984. "description": "Easily connect the necessary language packs to the application",
  4985. "keywords": [
  4986. "Laravel-lang",
  4987. "actions",
  4988. "attribute",
  4989. "attributes",
  4990. "breeze",
  4991. "buttons",
  4992. "cashier",
  4993. "fortify",
  4994. "framework",
  4995. "http",
  4996. "http-status",
  4997. "http-status-code",
  4998. "i18n",
  4999. "jetstream",
  5000. "lang",
  5001. "language",
  5002. "languages",
  5003. "laravel",
  5004. "locale",
  5005. "locales",
  5006. "localization",
  5007. "localizations",
  5008. "nova",
  5009. "publisher",
  5010. "spark",
  5011. "translation",
  5012. "translations",
  5013. "ui"
  5014. ],
  5015. "time": "2023-12-21T13:39:07+00:00"
  5016. },
  5017. {
  5018. "name": "laravel-lang/http-statuses",
  5019. "version": "3.8.0",
  5020. "dist": {
  5021. "type": "zip",
  5022. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/http-statuses/3.8.0/laravel-lang-http-statuses-3.8.0.zip",
  5023. "reference": "beb0ee5943bf7a0b811d55851729876d883288a8",
  5024. "shasum": ""
  5025. },
  5026. "require": {
  5027. "ext-json": "*",
  5028. "laravel-lang/publisher": "^14.1 || ^15.0 || ^16.0",
  5029. "php": "^8.1"
  5030. },
  5031. "require-dev": {
  5032. "laravel-lang/status-generator": "^1.19 || ^2.0",
  5033. "phpunit/phpunit": "^10.0",
  5034. "symfony/var-dumper": "^6.0 || ^7.0"
  5035. },
  5036. "type": "library",
  5037. "extra": {
  5038. "laravel": {
  5039. "providers": [
  5040. "LaravelLang\\HttpStatuses\\ServiceProvider"
  5041. ]
  5042. }
  5043. },
  5044. "autoload": {
  5045. "psr-4": {
  5046. "LaravelLang\\HttpStatuses\\": "src"
  5047. }
  5048. },
  5049. "license": [
  5050. "MIT"
  5051. ],
  5052. "authors": [
  5053. {
  5054. "name": "Andrey Helldar",
  5055. "email": "helldar@dragon-code.pro"
  5056. },
  5057. {
  5058. "name": "Laravel-Lang Team",
  5059. "homepage": "https://github.com/Laravel-Lang"
  5060. }
  5061. ],
  5062. "description": "List of 126 languages for HTTP statuses",
  5063. "keywords": [
  5064. "http",
  5065. "lang",
  5066. "languages",
  5067. "laravel",
  5068. "messages",
  5069. "status",
  5070. "translations"
  5071. ],
  5072. "time": "2023-12-30T09:28:20+00:00"
  5073. },
  5074. {
  5075. "name": "laravel-lang/json-fallback",
  5076. "version": "2.0.0",
  5077. "dist": {
  5078. "type": "zip",
  5079. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/json-fallback/2.0.0/laravel-lang-json-fallback-2.0.0.zip",
  5080. "reference": "9e8d4495b2bc3a7831439cab49da82dfc837e851",
  5081. "shasum": ""
  5082. },
  5083. "require": {
  5084. "illuminate/support": "^10.0",
  5085. "illuminate/translation": "^10.0",
  5086. "php": "^8.1"
  5087. },
  5088. "require-dev": {
  5089. "orchestra/testbench": "^8.0",
  5090. "phpunit/phpunit": "^10.0"
  5091. },
  5092. "type": "library",
  5093. "autoload": {
  5094. "psr-4": {
  5095. "LaravelLang\\JsonFallback\\": "src"
  5096. }
  5097. },
  5098. "license": [
  5099. "MIT"
  5100. ],
  5101. "authors": [
  5102. {
  5103. "name": "Andrey Helldar",
  5104. "email": "helldar@dragon-code.pro",
  5105. "homepage": "https://github.com/andrey-helldar"
  5106. },
  5107. {
  5108. "name": "Felipe Dsdev",
  5109. "homepage": "https://github.com/felipe-dsdev"
  5110. }
  5111. ],
  5112. "description": "Adds support for fallback JSON string translation",
  5113. "time": "2023-12-16T18:52:42+00:00"
  5114. },
  5115. {
  5116. "name": "laravel-lang/lang",
  5117. "version": "14.2.2",
  5118. "dist": {
  5119. "type": "zip",
  5120. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/lang/14.2.2/laravel-lang-lang-14.2.2.zip",
  5121. "reference": "86a7eca3e9d68bef9ce474e0a892afdc1e718c64",
  5122. "shasum": ""
  5123. },
  5124. "require": {
  5125. "ext-json": "*",
  5126. "laravel-lang/publisher": "^14.0 || ^15.0 || ^16.0",
  5127. "php": "^8.1"
  5128. },
  5129. "require-dev": {
  5130. "laravel-lang/status-generator": "^1.19 || ^2.0",
  5131. "phpunit/phpunit": "^10.0",
  5132. "symfony/var-dumper": "^6.0 || ^7.0"
  5133. },
  5134. "type": "library",
  5135. "extra": {
  5136. "laravel": {
  5137. "providers": [
  5138. "LaravelLang\\Lang\\ServiceProvider"
  5139. ]
  5140. }
  5141. },
  5142. "autoload": {
  5143. "psr-4": {
  5144. "LaravelLang\\Lang\\": "src/"
  5145. }
  5146. },
  5147. "license": [
  5148. "MIT"
  5149. ],
  5150. "authors": [
  5151. {
  5152. "name": "Laravel-Lang Team",
  5153. "homepage": "https://github.com/Laravel-Lang"
  5154. }
  5155. ],
  5156. "description": "List of 126 languages for Laravel Framework, Laravel Jetstream, Laravel Fortify, Laravel Breeze, Laravel Cashier, Laravel Nova, Laravel Spark and Laravel UI",
  5157. "keywords": [
  5158. "lang",
  5159. "languages",
  5160. "laravel",
  5161. "lpm"
  5162. ],
  5163. "time": "2024-01-13T02:09:36+00:00"
  5164. },
  5165. {
  5166. "name": "laravel-lang/locale-list",
  5167. "version": "1.2.0",
  5168. "dist": {
  5169. "type": "zip",
  5170. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/locale-list/1.2.0/laravel-lang-locale-list-1.2.0.zip",
  5171. "reference": "87fb1a871058c47e63e0399395ea010ded6e8bb2",
  5172. "shasum": ""
  5173. },
  5174. "require": {
  5175. "archtechx/enums": "^0.3.2",
  5176. "php": "^8.1"
  5177. },
  5178. "type": "library",
  5179. "autoload": {
  5180. "psr-4": {
  5181. "LaravelLang\\LocaleList\\": "src/"
  5182. }
  5183. },
  5184. "license": [
  5185. "MIT"
  5186. ],
  5187. "authors": [
  5188. {
  5189. "name": "Andrey Helldar",
  5190. "email": "helldar@dragon-code.pro",
  5191. "homepage": "https://dragon-code.pro"
  5192. },
  5193. {
  5194. "name": "Laravel-Lang Team",
  5195. "homepage": "https://laravel-lang.com"
  5196. }
  5197. ],
  5198. "description": "List of localizations available in Laravel Lang projects",
  5199. "keywords": [
  5200. "Laravel-lang",
  5201. "lang",
  5202. "languages",
  5203. "laravel",
  5204. "locale",
  5205. "locales",
  5206. "localization",
  5207. "translation",
  5208. "translations"
  5209. ],
  5210. "time": "2023-12-29T22:55:57+00:00"
  5211. },
  5212. {
  5213. "name": "laravel-lang/locales",
  5214. "version": "2.4.0",
  5215. "dist": {
  5216. "type": "zip",
  5217. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/locales/2.4.0/laravel-lang-locales-2.4.0.zip",
  5218. "reference": "811c4752b33133450e5eafce2d7a92dc505f79a9",
  5219. "shasum": ""
  5220. },
  5221. "require": {
  5222. "archtechx/enums": "^0.3.2",
  5223. "dragon-code/support": "^6.11.3",
  5224. "ext-json": "*",
  5225. "illuminate/collections": "^10.0",
  5226. "laravel-lang/locale-list": "^1.2",
  5227. "laravel-lang/native-country-names": "^1.3",
  5228. "laravel-lang/native-currency-names": "^1.3",
  5229. "laravel-lang/native-locale-names": "^2.2",
  5230. "php": "^8.1"
  5231. },
  5232. "require-dev": {
  5233. "orchestra/testbench": "^8.0",
  5234. "pestphp/pest": "^2.24.1",
  5235. "symfony/var-dumper": "^6.0 || ^7.0"
  5236. },
  5237. "type": "library",
  5238. "extra": {
  5239. "laravel": {
  5240. "providers": [
  5241. "LaravelLang\\Locales\\ServiceProvider"
  5242. ]
  5243. }
  5244. },
  5245. "autoload": {
  5246. "psr-4": {
  5247. "LaravelLang\\Locales\\": "src/"
  5248. }
  5249. },
  5250. "license": [
  5251. "MIT"
  5252. ],
  5253. "authors": [
  5254. {
  5255. "name": "Andrey Helldar",
  5256. "email": "helldar@dragon-code.pro"
  5257. },
  5258. {
  5259. "name": "Laravel-Lang Team",
  5260. "homepage": "https://laravel-lang.com"
  5261. }
  5262. ],
  5263. "description": "Basic functionality for working with localizations",
  5264. "keywords": [
  5265. "laravel",
  5266. "locale",
  5267. "locales",
  5268. "localization",
  5269. "translation",
  5270. "translations"
  5271. ],
  5272. "time": "2023-12-29T23:16:40+00:00"
  5273. },
  5274. {
  5275. "name": "laravel-lang/native-country-names",
  5276. "version": "1.3.0",
  5277. "dist": {
  5278. "type": "zip",
  5279. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/native-country-names/1.3.0/laravel-lang-native-country-names-1.3.0.zip",
  5280. "reference": "cea0d0fbb8aeb9c8b426c05796034295c3d1cabb",
  5281. "shasum": ""
  5282. },
  5283. "require": {
  5284. "dragon-code/support": "^6.11",
  5285. "ext-json": "*",
  5286. "illuminate/collections": "^10.0",
  5287. "php": "^8.1"
  5288. },
  5289. "require-dev": {
  5290. "illuminate/support": "^10.0",
  5291. "laravel-lang/locale-list": "^1.2",
  5292. "pestphp/pest": "^2.24.3",
  5293. "punic/punic": "^3.8",
  5294. "symfony/console": "^6.3 || ^7.0",
  5295. "symfony/process": "^6.3 || ^7.0",
  5296. "symfony/var-dumper": "^6.3 || ^7.0",
  5297. "vlucas/phpdotenv": "^5.6"
  5298. },
  5299. "type": "library",
  5300. "autoload": {
  5301. "psr-4": {
  5302. "LaravelLang\\NativeCountryNames\\": "src/"
  5303. }
  5304. },
  5305. "license": [
  5306. "MIT"
  5307. ],
  5308. "authors": [
  5309. {
  5310. "name": "Andrey Helldar",
  5311. "email": "helldar@dragon-code.pro"
  5312. },
  5313. {
  5314. "name": "Laravel-Lang Team",
  5315. "homepage": "https://laravel-lang.com"
  5316. }
  5317. ],
  5318. "description": "The project contains native translations of country names",
  5319. "keywords": [
  5320. "Laravel-lang",
  5321. "countries",
  5322. "country",
  5323. "lang",
  5324. "languages",
  5325. "laravel",
  5326. "locale",
  5327. "locales",
  5328. "localization",
  5329. "territories",
  5330. "territory",
  5331. "translation",
  5332. "translations"
  5333. ],
  5334. "time": "2023-12-29T23:38:20+00:00"
  5335. },
  5336. {
  5337. "name": "laravel-lang/native-currency-names",
  5338. "version": "1.3.0",
  5339. "dist": {
  5340. "type": "zip",
  5341. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/native-currency-names/1.3.0/laravel-lang-native-currency-names-1.3.0.zip",
  5342. "reference": "21662cd9f31edf1817439344d5c4519b627679b5",
  5343. "shasum": ""
  5344. },
  5345. "require": {
  5346. "dragon-code/support": "^6.11",
  5347. "ext-json": "*",
  5348. "illuminate/collections": "^10.0",
  5349. "php": "^8.1"
  5350. },
  5351. "require-dev": {
  5352. "illuminate/support": "^10.0",
  5353. "laravel-lang/locale-list": "^1.2",
  5354. "pestphp/pest": "^2.24.3",
  5355. "punic/punic": "^3.8",
  5356. "symfony/console": "^6.3 || ^7.0",
  5357. "symfony/process": "^6.3 || ^7.0",
  5358. "symfony/var-dumper": "^6.3 || ^7.0",
  5359. "vlucas/phpdotenv": "^5.6"
  5360. },
  5361. "type": "library",
  5362. "autoload": {
  5363. "psr-4": {
  5364. "LaravelLang\\NativeCurrencyNames\\": "src/"
  5365. }
  5366. },
  5367. "license": [
  5368. "MIT"
  5369. ],
  5370. "authors": [
  5371. {
  5372. "name": "Andrey Helldar",
  5373. "email": "helldar@dragon-code.pro"
  5374. },
  5375. {
  5376. "name": "Laravel-Lang Team",
  5377. "homepage": "https://laravel-lang.com"
  5378. }
  5379. ],
  5380. "description": "The project contains native translations of currency names",
  5381. "keywords": [
  5382. "Laravel-lang",
  5383. "currency",
  5384. "lang",
  5385. "languages",
  5386. "laravel",
  5387. "locale",
  5388. "locales",
  5389. "localization",
  5390. "translation",
  5391. "translations"
  5392. ],
  5393. "time": "2023-12-29T23:30:58+00:00"
  5394. },
  5395. {
  5396. "name": "laravel-lang/native-locale-names",
  5397. "version": "2.2.0",
  5398. "dist": {
  5399. "type": "zip",
  5400. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/native-locale-names/2.2.0/laravel-lang-native-locale-names-2.2.0.zip",
  5401. "reference": "801136e89f76c8b09296288b99fd75740e02ec6a",
  5402. "shasum": ""
  5403. },
  5404. "require": {
  5405. "dragon-code/support": "^6.11",
  5406. "ext-json": "*",
  5407. "php": "^8.1"
  5408. },
  5409. "require-dev": {
  5410. "illuminate/support": "^10.31",
  5411. "laravel-lang/locale-list": "^1.2",
  5412. "pestphp/pest": "^2.24.3",
  5413. "punic/punic": "^3.8",
  5414. "symfony/console": "^6.3 || ^7.0",
  5415. "symfony/process": "^6.3 || ^7.0",
  5416. "symfony/var-dumper": "^6.3 || ^7.0"
  5417. },
  5418. "type": "library",
  5419. "autoload": {
  5420. "psr-4": {
  5421. "LaravelLang\\NativeLocaleNames\\": "src/"
  5422. }
  5423. },
  5424. "license": [
  5425. "MIT"
  5426. ],
  5427. "authors": [
  5428. {
  5429. "name": "Andrey Helldar",
  5430. "email": "helldar@dragon-code.pro"
  5431. },
  5432. {
  5433. "name": "Laravel-Lang Team",
  5434. "homepage": "https://laravel-lang.com"
  5435. }
  5436. ],
  5437. "description": "The project contains native translations of locale names",
  5438. "keywords": [
  5439. "Laravel-lang",
  5440. "lang",
  5441. "languages",
  5442. "laravel",
  5443. "locale",
  5444. "locales",
  5445. "localization",
  5446. "translation",
  5447. "translations"
  5448. ],
  5449. "time": "2023-12-29T23:18:45+00:00"
  5450. },
  5451. {
  5452. "name": "laravel-lang/publisher",
  5453. "version": "16.2.0",
  5454. "dist": {
  5455. "type": "zip",
  5456. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel-lang/publisher/16.2.0/laravel-lang-publisher-16.2.0.zip",
  5457. "reference": "463bff0a69837274fbdbf1a1d6d508cbf74ffe7d",
  5458. "shasum": ""
  5459. },
  5460. "require": {
  5461. "composer/semver": "^3.4",
  5462. "dragon-code/pretty-array": "^4.1",
  5463. "dragon-code/support": "^6.11.3",
  5464. "ext-json": "*",
  5465. "illuminate/collections": "^10.0",
  5466. "illuminate/console": "^10.0",
  5467. "illuminate/support": "^10.0",
  5468. "laravel-lang/locales": "^2.3",
  5469. "league/commonmark": "^2.4.1",
  5470. "league/config": "^1.2",
  5471. "php": "^8.1"
  5472. },
  5473. "conflict": {
  5474. "laravel-lang/attributes": "<2.0",
  5475. "laravel-lang/http-statuses": "<3.0",
  5476. "laravel-lang/lang": "<11.0"
  5477. },
  5478. "require-dev": {
  5479. "laravel-lang/json-fallback": "^2.0",
  5480. "orchestra/testbench": "^8.14",
  5481. "phpunit/phpunit": "^10.4.2",
  5482. "symfony/var-dumper": "^6.3.6 || ^7.0"
  5483. },
  5484. "type": "library",
  5485. "extra": {
  5486. "laravel": {
  5487. "providers": [
  5488. "LaravelLang\\Publisher\\ServiceProvider"
  5489. ]
  5490. }
  5491. },
  5492. "autoload": {
  5493. "psr-4": {
  5494. "LaravelLang\\Publisher\\": "src/"
  5495. }
  5496. },
  5497. "license": [
  5498. "MIT"
  5499. ],
  5500. "authors": [
  5501. {
  5502. "name": "Andrey Helldar",
  5503. "email": "helldar@dragon-code.pro"
  5504. },
  5505. {
  5506. "name": "Laravel-Lang Team",
  5507. "homepage": "https://laravel-lang.com"
  5508. }
  5509. ],
  5510. "description": "Publisher lang files for the Laravel and Lumen Frameworks, Jetstream, Fortify, Cashier, Spark and Nova from Laravel-Lang/lang",
  5511. "keywords": [
  5512. "Laravel-lang",
  5513. "breeze",
  5514. "cashier",
  5515. "fortify",
  5516. "framework",
  5517. "i18n",
  5518. "jetstream",
  5519. "lang",
  5520. "languages",
  5521. "laravel",
  5522. "locale",
  5523. "locales",
  5524. "localization",
  5525. "localizations",
  5526. "lpm",
  5527. "lumen",
  5528. "nova",
  5529. "publisher",
  5530. "spark",
  5531. "trans",
  5532. "translation",
  5533. "translations",
  5534. "validations"
  5535. ],
  5536. "time": "2023-12-16T18:59:23+00:00"
  5537. },
  5538. {
  5539. "name": "laravel/pint",
  5540. "version": "v1.13.7",
  5541. "dist": {
  5542. "type": "zip",
  5543. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel/pint/v1.13.7/laravel-pint-v1.13.7.zip",
  5544. "reference": "4157768980dbd977f1c4b4cc94997416d8b30ece",
  5545. "shasum": ""
  5546. },
  5547. "require": {
  5548. "ext-json": "*",
  5549. "ext-mbstring": "*",
  5550. "ext-tokenizer": "*",
  5551. "ext-xml": "*",
  5552. "php": "^8.1.0"
  5553. },
  5554. "require-dev": {
  5555. "friendsofphp/php-cs-fixer": "^3.38.0",
  5556. "illuminate/view": "^10.30.1",
  5557. "laravel-zero/framework": "^10.3.0",
  5558. "mockery/mockery": "^1.6.6",
  5559. "nunomaduro/larastan": "^2.6.4",
  5560. "nunomaduro/termwind": "^1.15.1",
  5561. "pestphp/pest": "^2.24.2"
  5562. },
  5563. "bin": [
  5564. "builds/pint"
  5565. ],
  5566. "type": "project",
  5567. "autoload": {
  5568. "psr-4": {
  5569. "App\\": "app/",
  5570. "Database\\Seeders\\": "database/seeders/",
  5571. "Database\\Factories\\": "database/factories/"
  5572. }
  5573. },
  5574. "license": [
  5575. "MIT"
  5576. ],
  5577. "authors": [
  5578. {
  5579. "name": "Nuno Maduro",
  5580. "email": "enunomaduro@gmail.com"
  5581. }
  5582. ],
  5583. "description": "An opinionated code formatter for PHP.",
  5584. "homepage": "https://laravel.com",
  5585. "keywords": [
  5586. "format",
  5587. "formatter",
  5588. "lint",
  5589. "linter",
  5590. "php"
  5591. ],
  5592. "time": "2023-12-05T19:43:12+00:00"
  5593. },
  5594. {
  5595. "name": "laravel/sail",
  5596. "version": "v1.26.3",
  5597. "dist": {
  5598. "type": "zip",
  5599. "url": "https://mirrors.cloud.tencent.com/repository/composer/laravel/sail/v1.26.3/laravel-sail-v1.26.3.zip",
  5600. "reference": "fa1ad5fbb03686dfc752bfd1861d86091cc1c32d",
  5601. "shasum": ""
  5602. },
  5603. "require": {
  5604. "illuminate/console": "^9.0|^10.0|^11.0",
  5605. "illuminate/contracts": "^9.0|^10.0|^11.0",
  5606. "illuminate/support": "^9.0|^10.0|^11.0",
  5607. "php": "^8.0",
  5608. "symfony/yaml": "^6.0|^7.0"
  5609. },
  5610. "require-dev": {
  5611. "orchestra/testbench": "^7.0|^8.0|^9.0",
  5612. "phpstan/phpstan": "^1.10"
  5613. },
  5614. "bin": [
  5615. "bin/sail"
  5616. ],
  5617. "type": "library",
  5618. "extra": {
  5619. "branch-alias": {
  5620. "dev-master": "1.x-dev"
  5621. },
  5622. "laravel": {
  5623. "providers": [
  5624. "Laravel\\Sail\\SailServiceProvider"
  5625. ]
  5626. }
  5627. },
  5628. "autoload": {
  5629. "psr-4": {
  5630. "Laravel\\Sail\\": "src/"
  5631. }
  5632. },
  5633. "license": [
  5634. "MIT"
  5635. ],
  5636. "authors": [
  5637. {
  5638. "name": "Taylor Otwell",
  5639. "email": "taylor@laravel.com"
  5640. }
  5641. ],
  5642. "description": "Docker files for running a basic Laravel application.",
  5643. "keywords": [
  5644. "docker",
  5645. "laravel"
  5646. ],
  5647. "time": "2023-12-02T18:26:39+00:00"
  5648. },
  5649. {
  5650. "name": "mockery/mockery",
  5651. "version": "1.6.7",
  5652. "dist": {
  5653. "type": "zip",
  5654. "url": "https://mirrors.tencent.com/repository/composer/mockery/mockery/1.6.7/mockery-mockery-1.6.7.zip",
  5655. "reference": "0cc058854b3195ba21dc6b1f7b1f60f4ef3a9c06",
  5656. "shasum": ""
  5657. },
  5658. "require": {
  5659. "hamcrest/hamcrest-php": "^2.0.1",
  5660. "lib-pcre": ">=7.0",
  5661. "php": ">=7.3"
  5662. },
  5663. "conflict": {
  5664. "phpunit/phpunit": "<8.0"
  5665. },
  5666. "require-dev": {
  5667. "phpunit/phpunit": "^8.5 || ^9.6.10",
  5668. "symplify/easy-coding-standard": "^12.0.8"
  5669. },
  5670. "type": "library",
  5671. "autoload": {
  5672. "files": [
  5673. "library/helpers.php",
  5674. "library/Mockery.php"
  5675. ],
  5676. "psr-4": {
  5677. "Mockery\\": "library/Mockery"
  5678. }
  5679. },
  5680. "license": [
  5681. "BSD-3-Clause"
  5682. ],
  5683. "authors": [
  5684. {
  5685. "name": "Pádraic Brady",
  5686. "email": "padraic.brady@gmail.com",
  5687. "homepage": "https://github.com/padraic",
  5688. "role": "Author"
  5689. },
  5690. {
  5691. "name": "Dave Marshall",
  5692. "email": "dave.marshall@atstsolutions.co.uk",
  5693. "homepage": "https://davedevelopment.co.uk",
  5694. "role": "Developer"
  5695. },
  5696. {
  5697. "name": "Nathanael Esayeas",
  5698. "email": "nathanael.esayeas@protonmail.com",
  5699. "homepage": "https://github.com/ghostwriter",
  5700. "role": "Lead Developer"
  5701. }
  5702. ],
  5703. "description": "Mockery is a simple yet flexible PHP mock object framework",
  5704. "homepage": "https://github.com/mockery/mockery",
  5705. "keywords": [
  5706. "BDD",
  5707. "TDD",
  5708. "library",
  5709. "mock",
  5710. "mock objects",
  5711. "mockery",
  5712. "stub",
  5713. "test",
  5714. "test double",
  5715. "testing"
  5716. ],
  5717. "time": "2023-12-10T02:24:34+00:00"
  5718. },
  5719. {
  5720. "name": "myclabs/deep-copy",
  5721. "version": "1.11.1",
  5722. "dist": {
  5723. "type": "zip",
  5724. "url": "https://mirrors.tencent.com/repository/composer/myclabs/deep-copy/1.11.1/myclabs-deep-copy-1.11.1.zip",
  5725. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  5726. "shasum": ""
  5727. },
  5728. "require": {
  5729. "php": "^7.1 || ^8.0"
  5730. },
  5731. "conflict": {
  5732. "doctrine/collections": "<1.6.8",
  5733. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  5734. },
  5735. "require-dev": {
  5736. "doctrine/collections": "^1.6.8",
  5737. "doctrine/common": "^2.13.3 || ^3.2.2",
  5738. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  5739. },
  5740. "type": "library",
  5741. "autoload": {
  5742. "files": [
  5743. "src/DeepCopy/deep_copy.php"
  5744. ],
  5745. "psr-4": {
  5746. "DeepCopy\\": "src/DeepCopy/"
  5747. }
  5748. },
  5749. "license": [
  5750. "MIT"
  5751. ],
  5752. "description": "Create deep copies (clones) of your objects",
  5753. "keywords": [
  5754. "clone",
  5755. "copy",
  5756. "duplicate",
  5757. "object",
  5758. "object graph"
  5759. ],
  5760. "time": "2023-03-08T13:26:56+00:00"
  5761. },
  5762. {
  5763. "name": "nunomaduro/collision",
  5764. "version": "v7.10.0",
  5765. "dist": {
  5766. "type": "zip",
  5767. "url": "https://mirrors.tencent.com/repository/composer/nunomaduro/collision/v7.10.0/nunomaduro-collision-v7.10.0.zip",
  5768. "reference": "49ec67fa7b002712da8526678abd651c09f375b2",
  5769. "shasum": ""
  5770. },
  5771. "require": {
  5772. "filp/whoops": "^2.15.3",
  5773. "nunomaduro/termwind": "^1.15.1",
  5774. "php": "^8.1.0",
  5775. "symfony/console": "^6.3.4"
  5776. },
  5777. "conflict": {
  5778. "laravel/framework": ">=11.0.0"
  5779. },
  5780. "require-dev": {
  5781. "brianium/paratest": "^7.3.0",
  5782. "laravel/framework": "^10.28.0",
  5783. "laravel/pint": "^1.13.3",
  5784. "laravel/sail": "^1.25.0",
  5785. "laravel/sanctum": "^3.3.1",
  5786. "laravel/tinker": "^2.8.2",
  5787. "nunomaduro/larastan": "^2.6.4",
  5788. "orchestra/testbench-core": "^8.13.0",
  5789. "pestphp/pest": "^2.23.2",
  5790. "phpunit/phpunit": "^10.4.1",
  5791. "sebastian/environment": "^6.0.1",
  5792. "spatie/laravel-ignition": "^2.3.1"
  5793. },
  5794. "type": "library",
  5795. "extra": {
  5796. "laravel": {
  5797. "providers": [
  5798. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  5799. ]
  5800. }
  5801. },
  5802. "autoload": {
  5803. "files": [
  5804. "./src/Adapters/Phpunit/Autoload.php"
  5805. ],
  5806. "psr-4": {
  5807. "NunoMaduro\\Collision\\": "src/"
  5808. }
  5809. },
  5810. "license": [
  5811. "MIT"
  5812. ],
  5813. "authors": [
  5814. {
  5815. "name": "Nuno Maduro",
  5816. "email": "enunomaduro@gmail.com"
  5817. }
  5818. ],
  5819. "description": "Cli error handling for console/command-line PHP applications.",
  5820. "keywords": [
  5821. "artisan",
  5822. "cli",
  5823. "command-line",
  5824. "console",
  5825. "error",
  5826. "handling",
  5827. "laravel",
  5828. "laravel-zero",
  5829. "php",
  5830. "symfony"
  5831. ],
  5832. "time": "2023-10-11T15:45:01+00:00"
  5833. },
  5834. {
  5835. "name": "phar-io/manifest",
  5836. "version": "2.0.3",
  5837. "dist": {
  5838. "type": "zip",
  5839. "url": "https://mirrors.tencent.com/repository/composer/phar-io/manifest/2.0.3/phar-io-manifest-2.0.3.zip",
  5840. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  5841. "shasum": ""
  5842. },
  5843. "require": {
  5844. "ext-dom": "*",
  5845. "ext-phar": "*",
  5846. "ext-xmlwriter": "*",
  5847. "phar-io/version": "^3.0.1",
  5848. "php": "^7.2 || ^8.0"
  5849. },
  5850. "type": "library",
  5851. "extra": {
  5852. "branch-alias": {
  5853. "dev-master": "2.0.x-dev"
  5854. }
  5855. },
  5856. "autoload": {
  5857. "classmap": [
  5858. "src/"
  5859. ]
  5860. },
  5861. "license": [
  5862. "BSD-3-Clause"
  5863. ],
  5864. "authors": [
  5865. {
  5866. "name": "Arne Blankerts",
  5867. "email": "arne@blankerts.de",
  5868. "role": "Developer"
  5869. },
  5870. {
  5871. "name": "Sebastian Heuer",
  5872. "email": "sebastian@phpeople.de",
  5873. "role": "Developer"
  5874. },
  5875. {
  5876. "name": "Sebastian Bergmann",
  5877. "email": "sebastian@phpunit.de",
  5878. "role": "Developer"
  5879. }
  5880. ],
  5881. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5882. "time": "2021-07-20T11:28:43+00:00"
  5883. },
  5884. {
  5885. "name": "phar-io/version",
  5886. "version": "3.2.1",
  5887. "dist": {
  5888. "type": "zip",
  5889. "url": "https://mirrors.tencent.com/repository/composer/phar-io/version/3.2.1/phar-io-version-3.2.1.zip",
  5890. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  5891. "shasum": ""
  5892. },
  5893. "require": {
  5894. "php": "^7.2 || ^8.0"
  5895. },
  5896. "type": "library",
  5897. "autoload": {
  5898. "classmap": [
  5899. "src/"
  5900. ]
  5901. },
  5902. "license": [
  5903. "BSD-3-Clause"
  5904. ],
  5905. "authors": [
  5906. {
  5907. "name": "Arne Blankerts",
  5908. "email": "arne@blankerts.de",
  5909. "role": "Developer"
  5910. },
  5911. {
  5912. "name": "Sebastian Heuer",
  5913. "email": "sebastian@phpeople.de",
  5914. "role": "Developer"
  5915. },
  5916. {
  5917. "name": "Sebastian Bergmann",
  5918. "email": "sebastian@phpunit.de",
  5919. "role": "Developer"
  5920. }
  5921. ],
  5922. "description": "Library for handling version information and constraints",
  5923. "time": "2022-02-21T01:04:05+00:00"
  5924. },
  5925. {
  5926. "name": "phpunit/php-code-coverage",
  5927. "version": "10.1.11",
  5928. "dist": {
  5929. "type": "zip",
  5930. "url": "https://mirrors.cloud.tencent.com/repository/composer/phpunit/php-code-coverage/10.1.11/phpunit-php-code-coverage-10.1.11.zip",
  5931. "reference": "78c3b7625965c2513ee96569a4dbb62601784145",
  5932. "shasum": ""
  5933. },
  5934. "require": {
  5935. "ext-dom": "*",
  5936. "ext-libxml": "*",
  5937. "ext-xmlwriter": "*",
  5938. "nikic/php-parser": "^4.18 || ^5.0",
  5939. "php": ">=8.1",
  5940. "phpunit/php-file-iterator": "^4.0",
  5941. "phpunit/php-text-template": "^3.0",
  5942. "sebastian/code-unit-reverse-lookup": "^3.0",
  5943. "sebastian/complexity": "^3.0",
  5944. "sebastian/environment": "^6.0",
  5945. "sebastian/lines-of-code": "^2.0",
  5946. "sebastian/version": "^4.0",
  5947. "theseer/tokenizer": "^1.2.0"
  5948. },
  5949. "require-dev": {
  5950. "phpunit/phpunit": "^10.1"
  5951. },
  5952. "suggest": {
  5953. "ext-pcov": "PHP extension that provides line coverage",
  5954. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  5955. },
  5956. "type": "library",
  5957. "extra": {
  5958. "branch-alias": {
  5959. "dev-main": "10.1-dev"
  5960. }
  5961. },
  5962. "autoload": {
  5963. "classmap": [
  5964. "src/"
  5965. ]
  5966. },
  5967. "license": [
  5968. "BSD-3-Clause"
  5969. ],
  5970. "authors": [
  5971. {
  5972. "name": "Sebastian Bergmann",
  5973. "email": "sebastian@phpunit.de",
  5974. "role": "lead"
  5975. }
  5976. ],
  5977. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  5978. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  5979. "keywords": [
  5980. "coverage",
  5981. "testing",
  5982. "xunit"
  5983. ],
  5984. "time": "2023-12-21T15:38:30+00:00"
  5985. },
  5986. {
  5987. "name": "phpunit/php-file-iterator",
  5988. "version": "4.1.0",
  5989. "dist": {
  5990. "type": "zip",
  5991. "url": "https://mirrors.tencent.com/repository/composer/phpunit/php-file-iterator/4.1.0/phpunit-php-file-iterator-4.1.0.zip",
  5992. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  5993. "shasum": ""
  5994. },
  5995. "require": {
  5996. "php": ">=8.1"
  5997. },
  5998. "require-dev": {
  5999. "phpunit/phpunit": "^10.0"
  6000. },
  6001. "type": "library",
  6002. "extra": {
  6003. "branch-alias": {
  6004. "dev-main": "4.0-dev"
  6005. }
  6006. },
  6007. "autoload": {
  6008. "classmap": [
  6009. "src/"
  6010. ]
  6011. },
  6012. "license": [
  6013. "BSD-3-Clause"
  6014. ],
  6015. "authors": [
  6016. {
  6017. "name": "Sebastian Bergmann",
  6018. "email": "sebastian@phpunit.de",
  6019. "role": "lead"
  6020. }
  6021. ],
  6022. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6023. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6024. "keywords": [
  6025. "filesystem",
  6026. "iterator"
  6027. ],
  6028. "time": "2023-08-31T06:24:48+00:00"
  6029. },
  6030. {
  6031. "name": "phpunit/php-invoker",
  6032. "version": "4.0.0",
  6033. "dist": {
  6034. "type": "zip",
  6035. "url": "https://mirrors.tencent.com/repository/composer/phpunit/php-invoker/4.0.0/phpunit-php-invoker-4.0.0.zip",
  6036. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  6037. "shasum": ""
  6038. },
  6039. "require": {
  6040. "php": ">=8.1"
  6041. },
  6042. "require-dev": {
  6043. "ext-pcntl": "*",
  6044. "phpunit/phpunit": "^10.0"
  6045. },
  6046. "suggest": {
  6047. "ext-pcntl": "*"
  6048. },
  6049. "type": "library",
  6050. "extra": {
  6051. "branch-alias": {
  6052. "dev-main": "4.0-dev"
  6053. }
  6054. },
  6055. "autoload": {
  6056. "classmap": [
  6057. "src/"
  6058. ]
  6059. },
  6060. "license": [
  6061. "BSD-3-Clause"
  6062. ],
  6063. "authors": [
  6064. {
  6065. "name": "Sebastian Bergmann",
  6066. "email": "sebastian@phpunit.de",
  6067. "role": "lead"
  6068. }
  6069. ],
  6070. "description": "Invoke callables with a timeout",
  6071. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  6072. "keywords": [
  6073. "process"
  6074. ],
  6075. "time": "2023-02-03T06:56:09+00:00"
  6076. },
  6077. {
  6078. "name": "phpunit/php-text-template",
  6079. "version": "3.0.1",
  6080. "dist": {
  6081. "type": "zip",
  6082. "url": "https://mirrors.cloud.tencent.com/repository/composer/phpunit/php-text-template/3.0.1/phpunit-php-text-template-3.0.1.zip",
  6083. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  6084. "shasum": ""
  6085. },
  6086. "require": {
  6087. "php": ">=8.1"
  6088. },
  6089. "require-dev": {
  6090. "phpunit/phpunit": "^10.0"
  6091. },
  6092. "type": "library",
  6093. "extra": {
  6094. "branch-alias": {
  6095. "dev-main": "3.0-dev"
  6096. }
  6097. },
  6098. "autoload": {
  6099. "classmap": [
  6100. "src/"
  6101. ]
  6102. },
  6103. "license": [
  6104. "BSD-3-Clause"
  6105. ],
  6106. "authors": [
  6107. {
  6108. "name": "Sebastian Bergmann",
  6109. "email": "sebastian@phpunit.de",
  6110. "role": "lead"
  6111. }
  6112. ],
  6113. "description": "Simple template engine.",
  6114. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6115. "keywords": [
  6116. "template"
  6117. ],
  6118. "time": "2023-08-31T14:07:24+00:00"
  6119. },
  6120. {
  6121. "name": "phpunit/php-timer",
  6122. "version": "6.0.0",
  6123. "dist": {
  6124. "type": "zip",
  6125. "url": "https://mirrors.cloud.tencent.com/repository/composer/phpunit/php-timer/6.0.0/phpunit-php-timer-6.0.0.zip",
  6126. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  6127. "shasum": ""
  6128. },
  6129. "require": {
  6130. "php": ">=8.1"
  6131. },
  6132. "require-dev": {
  6133. "phpunit/phpunit": "^10.0"
  6134. },
  6135. "type": "library",
  6136. "extra": {
  6137. "branch-alias": {
  6138. "dev-main": "6.0-dev"
  6139. }
  6140. },
  6141. "autoload": {
  6142. "classmap": [
  6143. "src/"
  6144. ]
  6145. },
  6146. "license": [
  6147. "BSD-3-Clause"
  6148. ],
  6149. "authors": [
  6150. {
  6151. "name": "Sebastian Bergmann",
  6152. "email": "sebastian@phpunit.de",
  6153. "role": "lead"
  6154. }
  6155. ],
  6156. "description": "Utility class for timing",
  6157. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6158. "keywords": [
  6159. "timer"
  6160. ],
  6161. "time": "2023-02-03T06:57:52+00:00"
  6162. },
  6163. {
  6164. "name": "phpunit/phpunit",
  6165. "version": "10.5.5",
  6166. "dist": {
  6167. "type": "zip",
  6168. "url": "https://mirrors.tencent.com/repository/composer/phpunit/phpunit/10.5.5/phpunit-phpunit-10.5.5.zip",
  6169. "reference": "ed21115d505b4b4f7dc7b5651464e19a2c7f7856",
  6170. "shasum": ""
  6171. },
  6172. "require": {
  6173. "ext-dom": "*",
  6174. "ext-json": "*",
  6175. "ext-libxml": "*",
  6176. "ext-mbstring": "*",
  6177. "ext-xml": "*",
  6178. "ext-xmlwriter": "*",
  6179. "myclabs/deep-copy": "^1.10.1",
  6180. "phar-io/manifest": "^2.0.3",
  6181. "phar-io/version": "^3.0.2",
  6182. "php": ">=8.1",
  6183. "phpunit/php-code-coverage": "^10.1.5",
  6184. "phpunit/php-file-iterator": "^4.0",
  6185. "phpunit/php-invoker": "^4.0",
  6186. "phpunit/php-text-template": "^3.0",
  6187. "phpunit/php-timer": "^6.0",
  6188. "sebastian/cli-parser": "^2.0",
  6189. "sebastian/code-unit": "^2.0",
  6190. "sebastian/comparator": "^5.0",
  6191. "sebastian/diff": "^5.0",
  6192. "sebastian/environment": "^6.0",
  6193. "sebastian/exporter": "^5.1",
  6194. "sebastian/global-state": "^6.0.1",
  6195. "sebastian/object-enumerator": "^5.0",
  6196. "sebastian/recursion-context": "^5.0",
  6197. "sebastian/type": "^4.0",
  6198. "sebastian/version": "^4.0"
  6199. },
  6200. "suggest": {
  6201. "ext-soap": "To be able to generate mocks based on WSDL files"
  6202. },
  6203. "bin": [
  6204. "phpunit"
  6205. ],
  6206. "type": "library",
  6207. "extra": {
  6208. "branch-alias": {
  6209. "dev-main": "10.5-dev"
  6210. }
  6211. },
  6212. "autoload": {
  6213. "files": [
  6214. "src/Framework/Assert/Functions.php"
  6215. ],
  6216. "classmap": [
  6217. "src/"
  6218. ]
  6219. },
  6220. "license": [
  6221. "BSD-3-Clause"
  6222. ],
  6223. "authors": [
  6224. {
  6225. "name": "Sebastian Bergmann",
  6226. "email": "sebastian@phpunit.de",
  6227. "role": "lead"
  6228. }
  6229. ],
  6230. "description": "The PHP Unit Testing framework.",
  6231. "homepage": "https://phpunit.de/",
  6232. "keywords": [
  6233. "phpunit",
  6234. "testing",
  6235. "xunit"
  6236. ],
  6237. "time": "2023-12-27T15:13:52+00:00"
  6238. },
  6239. {
  6240. "name": "sebastian/cli-parser",
  6241. "version": "2.0.0",
  6242. "dist": {
  6243. "type": "zip",
  6244. "url": "https://mirrors.tencent.com/repository/composer/sebastian/cli-parser/2.0.0/sebastian-cli-parser-2.0.0.zip",
  6245. "reference": "efdc130dbbbb8ef0b545a994fd811725c5282cae",
  6246. "shasum": ""
  6247. },
  6248. "require": {
  6249. "php": ">=8.1"
  6250. },
  6251. "require-dev": {
  6252. "phpunit/phpunit": "^10.0"
  6253. },
  6254. "type": "library",
  6255. "extra": {
  6256. "branch-alias": {
  6257. "dev-main": "2.0-dev"
  6258. }
  6259. },
  6260. "autoload": {
  6261. "classmap": [
  6262. "src/"
  6263. ]
  6264. },
  6265. "license": [
  6266. "BSD-3-Clause"
  6267. ],
  6268. "authors": [
  6269. {
  6270. "name": "Sebastian Bergmann",
  6271. "email": "sebastian@phpunit.de",
  6272. "role": "lead"
  6273. }
  6274. ],
  6275. "description": "Library for parsing CLI options",
  6276. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  6277. "time": "2023-02-03T06:58:15+00:00"
  6278. },
  6279. {
  6280. "name": "sebastian/code-unit",
  6281. "version": "2.0.0",
  6282. "dist": {
  6283. "type": "zip",
  6284. "url": "https://mirrors.tencent.com/repository/composer/sebastian/code-unit/2.0.0/sebastian-code-unit-2.0.0.zip",
  6285. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  6286. "shasum": ""
  6287. },
  6288. "require": {
  6289. "php": ">=8.1"
  6290. },
  6291. "require-dev": {
  6292. "phpunit/phpunit": "^10.0"
  6293. },
  6294. "type": "library",
  6295. "extra": {
  6296. "branch-alias": {
  6297. "dev-main": "2.0-dev"
  6298. }
  6299. },
  6300. "autoload": {
  6301. "classmap": [
  6302. "src/"
  6303. ]
  6304. },
  6305. "license": [
  6306. "BSD-3-Clause"
  6307. ],
  6308. "authors": [
  6309. {
  6310. "name": "Sebastian Bergmann",
  6311. "email": "sebastian@phpunit.de",
  6312. "role": "lead"
  6313. }
  6314. ],
  6315. "description": "Collection of value objects that represent the PHP code units",
  6316. "homepage": "https://github.com/sebastianbergmann/code-unit",
  6317. "time": "2023-02-03T06:58:43+00:00"
  6318. },
  6319. {
  6320. "name": "sebastian/code-unit-reverse-lookup",
  6321. "version": "3.0.0",
  6322. "dist": {
  6323. "type": "zip",
  6324. "url": "https://mirrors.tencent.com/repository/composer/sebastian/code-unit-reverse-lookup/3.0.0/sebastian-code-unit-reverse-lookup-3.0.0.zip",
  6325. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  6326. "shasum": ""
  6327. },
  6328. "require": {
  6329. "php": ">=8.1"
  6330. },
  6331. "require-dev": {
  6332. "phpunit/phpunit": "^10.0"
  6333. },
  6334. "type": "library",
  6335. "extra": {
  6336. "branch-alias": {
  6337. "dev-main": "3.0-dev"
  6338. }
  6339. },
  6340. "autoload": {
  6341. "classmap": [
  6342. "src/"
  6343. ]
  6344. },
  6345. "license": [
  6346. "BSD-3-Clause"
  6347. ],
  6348. "authors": [
  6349. {
  6350. "name": "Sebastian Bergmann",
  6351. "email": "sebastian@phpunit.de"
  6352. }
  6353. ],
  6354. "description": "Looks up which function or method a line of code belongs to",
  6355. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6356. "time": "2023-02-03T06:59:15+00:00"
  6357. },
  6358. {
  6359. "name": "sebastian/comparator",
  6360. "version": "5.0.1",
  6361. "dist": {
  6362. "type": "zip",
  6363. "url": "https://mirrors.tencent.com/repository/composer/sebastian/comparator/5.0.1/sebastian-comparator-5.0.1.zip",
  6364. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  6365. "shasum": ""
  6366. },
  6367. "require": {
  6368. "ext-dom": "*",
  6369. "ext-mbstring": "*",
  6370. "php": ">=8.1",
  6371. "sebastian/diff": "^5.0",
  6372. "sebastian/exporter": "^5.0"
  6373. },
  6374. "require-dev": {
  6375. "phpunit/phpunit": "^10.3"
  6376. },
  6377. "type": "library",
  6378. "extra": {
  6379. "branch-alias": {
  6380. "dev-main": "5.0-dev"
  6381. }
  6382. },
  6383. "autoload": {
  6384. "classmap": [
  6385. "src/"
  6386. ]
  6387. },
  6388. "license": [
  6389. "BSD-3-Clause"
  6390. ],
  6391. "authors": [
  6392. {
  6393. "name": "Sebastian Bergmann",
  6394. "email": "sebastian@phpunit.de"
  6395. },
  6396. {
  6397. "name": "Jeff Welch",
  6398. "email": "whatthejeff@gmail.com"
  6399. },
  6400. {
  6401. "name": "Volker Dusch",
  6402. "email": "github@wallbash.com"
  6403. },
  6404. {
  6405. "name": "Bernhard Schussek",
  6406. "email": "bschussek@2bepublished.at"
  6407. }
  6408. ],
  6409. "description": "Provides the functionality to compare PHP values for equality",
  6410. "homepage": "https://github.com/sebastianbergmann/comparator",
  6411. "keywords": [
  6412. "comparator",
  6413. "compare",
  6414. "equality"
  6415. ],
  6416. "time": "2023-08-14T13:18:12+00:00"
  6417. },
  6418. {
  6419. "name": "sebastian/complexity",
  6420. "version": "3.2.0",
  6421. "dist": {
  6422. "type": "zip",
  6423. "url": "https://mirrors.tencent.com/repository/composer/sebastian/complexity/3.2.0/sebastian-complexity-3.2.0.zip",
  6424. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  6425. "shasum": ""
  6426. },
  6427. "require": {
  6428. "nikic/php-parser": "^4.18 || ^5.0",
  6429. "php": ">=8.1"
  6430. },
  6431. "require-dev": {
  6432. "phpunit/phpunit": "^10.0"
  6433. },
  6434. "type": "library",
  6435. "extra": {
  6436. "branch-alias": {
  6437. "dev-main": "3.2-dev"
  6438. }
  6439. },
  6440. "autoload": {
  6441. "classmap": [
  6442. "src/"
  6443. ]
  6444. },
  6445. "license": [
  6446. "BSD-3-Clause"
  6447. ],
  6448. "authors": [
  6449. {
  6450. "name": "Sebastian Bergmann",
  6451. "email": "sebastian@phpunit.de",
  6452. "role": "lead"
  6453. }
  6454. ],
  6455. "description": "Library for calculating the complexity of PHP code units",
  6456. "homepage": "https://github.com/sebastianbergmann/complexity",
  6457. "time": "2023-12-21T08:37:17+00:00"
  6458. },
  6459. {
  6460. "name": "sebastian/diff",
  6461. "version": "5.1.0",
  6462. "dist": {
  6463. "type": "zip",
  6464. "url": "https://mirrors.cloud.tencent.com/repository/composer/sebastian/diff/5.1.0/sebastian-diff-5.1.0.zip",
  6465. "reference": "fbf413a49e54f6b9b17e12d900ac7f6101591b7f",
  6466. "shasum": ""
  6467. },
  6468. "require": {
  6469. "php": ">=8.1"
  6470. },
  6471. "require-dev": {
  6472. "phpunit/phpunit": "^10.0",
  6473. "symfony/process": "^4.2 || ^5"
  6474. },
  6475. "type": "library",
  6476. "extra": {
  6477. "branch-alias": {
  6478. "dev-main": "5.1-dev"
  6479. }
  6480. },
  6481. "autoload": {
  6482. "classmap": [
  6483. "src/"
  6484. ]
  6485. },
  6486. "license": [
  6487. "BSD-3-Clause"
  6488. ],
  6489. "authors": [
  6490. {
  6491. "name": "Sebastian Bergmann",
  6492. "email": "sebastian@phpunit.de"
  6493. },
  6494. {
  6495. "name": "Kore Nordmann",
  6496. "email": "mail@kore-nordmann.de"
  6497. }
  6498. ],
  6499. "description": "Diff implementation",
  6500. "homepage": "https://github.com/sebastianbergmann/diff",
  6501. "keywords": [
  6502. "diff",
  6503. "udiff",
  6504. "unidiff",
  6505. "unified diff"
  6506. ],
  6507. "time": "2023-12-22T10:55:06+00:00"
  6508. },
  6509. {
  6510. "name": "sebastian/environment",
  6511. "version": "6.0.1",
  6512. "dist": {
  6513. "type": "zip",
  6514. "url": "https://mirrors.cloud.tencent.com/repository/composer/sebastian/environment/6.0.1/sebastian-environment-6.0.1.zip",
  6515. "reference": "43c751b41d74f96cbbd4e07b7aec9675651e2951",
  6516. "shasum": ""
  6517. },
  6518. "require": {
  6519. "php": ">=8.1"
  6520. },
  6521. "require-dev": {
  6522. "phpunit/phpunit": "^10.0"
  6523. },
  6524. "suggest": {
  6525. "ext-posix": "*"
  6526. },
  6527. "type": "library",
  6528. "extra": {
  6529. "branch-alias": {
  6530. "dev-main": "6.0-dev"
  6531. }
  6532. },
  6533. "autoload": {
  6534. "classmap": [
  6535. "src/"
  6536. ]
  6537. },
  6538. "license": [
  6539. "BSD-3-Clause"
  6540. ],
  6541. "authors": [
  6542. {
  6543. "name": "Sebastian Bergmann",
  6544. "email": "sebastian@phpunit.de"
  6545. }
  6546. ],
  6547. "description": "Provides functionality to handle HHVM/PHP environments",
  6548. "homepage": "https://github.com/sebastianbergmann/environment",
  6549. "keywords": [
  6550. "Xdebug",
  6551. "environment",
  6552. "hhvm"
  6553. ],
  6554. "time": "2023-04-11T05:39:26+00:00"
  6555. },
  6556. {
  6557. "name": "sebastian/exporter",
  6558. "version": "5.1.1",
  6559. "dist": {
  6560. "type": "zip",
  6561. "url": "https://mirrors.tencent.com/repository/composer/sebastian/exporter/5.1.1/sebastian-exporter-5.1.1.zip",
  6562. "reference": "64f51654862e0f5e318db7e9dcc2292c63cdbddc",
  6563. "shasum": ""
  6564. },
  6565. "require": {
  6566. "ext-mbstring": "*",
  6567. "php": ">=8.1",
  6568. "sebastian/recursion-context": "^5.0"
  6569. },
  6570. "require-dev": {
  6571. "phpunit/phpunit": "^10.0"
  6572. },
  6573. "type": "library",
  6574. "extra": {
  6575. "branch-alias": {
  6576. "dev-main": "5.1-dev"
  6577. }
  6578. },
  6579. "autoload": {
  6580. "classmap": [
  6581. "src/"
  6582. ]
  6583. },
  6584. "license": [
  6585. "BSD-3-Clause"
  6586. ],
  6587. "authors": [
  6588. {
  6589. "name": "Sebastian Bergmann",
  6590. "email": "sebastian@phpunit.de"
  6591. },
  6592. {
  6593. "name": "Jeff Welch",
  6594. "email": "whatthejeff@gmail.com"
  6595. },
  6596. {
  6597. "name": "Volker Dusch",
  6598. "email": "github@wallbash.com"
  6599. },
  6600. {
  6601. "name": "Adam Harvey",
  6602. "email": "aharvey@php.net"
  6603. },
  6604. {
  6605. "name": "Bernhard Schussek",
  6606. "email": "bschussek@gmail.com"
  6607. }
  6608. ],
  6609. "description": "Provides the functionality to export PHP variables for visualization",
  6610. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  6611. "keywords": [
  6612. "export",
  6613. "exporter"
  6614. ],
  6615. "time": "2023-09-24T13:22:09+00:00"
  6616. },
  6617. {
  6618. "name": "sebastian/global-state",
  6619. "version": "6.0.1",
  6620. "dist": {
  6621. "type": "zip",
  6622. "url": "https://mirrors.tencent.com/repository/composer/sebastian/global-state/6.0.1/sebastian-global-state-6.0.1.zip",
  6623. "reference": "7ea9ead78f6d380d2a667864c132c2f7b83055e4",
  6624. "shasum": ""
  6625. },
  6626. "require": {
  6627. "php": ">=8.1",
  6628. "sebastian/object-reflector": "^3.0",
  6629. "sebastian/recursion-context": "^5.0"
  6630. },
  6631. "require-dev": {
  6632. "ext-dom": "*",
  6633. "phpunit/phpunit": "^10.0"
  6634. },
  6635. "type": "library",
  6636. "extra": {
  6637. "branch-alias": {
  6638. "dev-main": "6.0-dev"
  6639. }
  6640. },
  6641. "autoload": {
  6642. "classmap": [
  6643. "src/"
  6644. ]
  6645. },
  6646. "license": [
  6647. "BSD-3-Clause"
  6648. ],
  6649. "authors": [
  6650. {
  6651. "name": "Sebastian Bergmann",
  6652. "email": "sebastian@phpunit.de"
  6653. }
  6654. ],
  6655. "description": "Snapshotting of global state",
  6656. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  6657. "keywords": [
  6658. "global state"
  6659. ],
  6660. "time": "2023-07-19T07:19:23+00:00"
  6661. },
  6662. {
  6663. "name": "sebastian/lines-of-code",
  6664. "version": "2.0.2",
  6665. "dist": {
  6666. "type": "zip",
  6667. "url": "https://mirrors.tencent.com/repository/composer/sebastian/lines-of-code/2.0.2/sebastian-lines-of-code-2.0.2.zip",
  6668. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  6669. "shasum": ""
  6670. },
  6671. "require": {
  6672. "nikic/php-parser": "^4.18 || ^5.0",
  6673. "php": ">=8.1"
  6674. },
  6675. "require-dev": {
  6676. "phpunit/phpunit": "^10.0"
  6677. },
  6678. "type": "library",
  6679. "extra": {
  6680. "branch-alias": {
  6681. "dev-main": "2.0-dev"
  6682. }
  6683. },
  6684. "autoload": {
  6685. "classmap": [
  6686. "src/"
  6687. ]
  6688. },
  6689. "license": [
  6690. "BSD-3-Clause"
  6691. ],
  6692. "authors": [
  6693. {
  6694. "name": "Sebastian Bergmann",
  6695. "email": "sebastian@phpunit.de",
  6696. "role": "lead"
  6697. }
  6698. ],
  6699. "description": "Library for counting the lines of code in PHP source code",
  6700. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  6701. "time": "2023-12-21T08:38:20+00:00"
  6702. },
  6703. {
  6704. "name": "sebastian/object-enumerator",
  6705. "version": "5.0.0",
  6706. "dist": {
  6707. "type": "zip",
  6708. "url": "https://mirrors.tencent.com/repository/composer/sebastian/object-enumerator/5.0.0/sebastian-object-enumerator-5.0.0.zip",
  6709. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  6710. "shasum": ""
  6711. },
  6712. "require": {
  6713. "php": ">=8.1",
  6714. "sebastian/object-reflector": "^3.0",
  6715. "sebastian/recursion-context": "^5.0"
  6716. },
  6717. "require-dev": {
  6718. "phpunit/phpunit": "^10.0"
  6719. },
  6720. "type": "library",
  6721. "extra": {
  6722. "branch-alias": {
  6723. "dev-main": "5.0-dev"
  6724. }
  6725. },
  6726. "autoload": {
  6727. "classmap": [
  6728. "src/"
  6729. ]
  6730. },
  6731. "license": [
  6732. "BSD-3-Clause"
  6733. ],
  6734. "authors": [
  6735. {
  6736. "name": "Sebastian Bergmann",
  6737. "email": "sebastian@phpunit.de"
  6738. }
  6739. ],
  6740. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  6741. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  6742. "time": "2023-02-03T07:08:32+00:00"
  6743. },
  6744. {
  6745. "name": "sebastian/object-reflector",
  6746. "version": "3.0.0",
  6747. "dist": {
  6748. "type": "zip",
  6749. "url": "https://mirrors.tencent.com/repository/composer/sebastian/object-reflector/3.0.0/sebastian-object-reflector-3.0.0.zip",
  6750. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  6751. "shasum": ""
  6752. },
  6753. "require": {
  6754. "php": ">=8.1"
  6755. },
  6756. "require-dev": {
  6757. "phpunit/phpunit": "^10.0"
  6758. },
  6759. "type": "library",
  6760. "extra": {
  6761. "branch-alias": {
  6762. "dev-main": "3.0-dev"
  6763. }
  6764. },
  6765. "autoload": {
  6766. "classmap": [
  6767. "src/"
  6768. ]
  6769. },
  6770. "license": [
  6771. "BSD-3-Clause"
  6772. ],
  6773. "authors": [
  6774. {
  6775. "name": "Sebastian Bergmann",
  6776. "email": "sebastian@phpunit.de"
  6777. }
  6778. ],
  6779. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  6780. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  6781. "time": "2023-02-03T07:06:18+00:00"
  6782. },
  6783. {
  6784. "name": "sebastian/recursion-context",
  6785. "version": "5.0.0",
  6786. "dist": {
  6787. "type": "zip",
  6788. "url": "https://mirrors.cloud.tencent.com/repository/composer/sebastian/recursion-context/5.0.0/sebastian-recursion-context-5.0.0.zip",
  6789. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  6790. "shasum": ""
  6791. },
  6792. "require": {
  6793. "php": ">=8.1"
  6794. },
  6795. "require-dev": {
  6796. "phpunit/phpunit": "^10.0"
  6797. },
  6798. "type": "library",
  6799. "extra": {
  6800. "branch-alias": {
  6801. "dev-main": "5.0-dev"
  6802. }
  6803. },
  6804. "autoload": {
  6805. "classmap": [
  6806. "src/"
  6807. ]
  6808. },
  6809. "license": [
  6810. "BSD-3-Clause"
  6811. ],
  6812. "authors": [
  6813. {
  6814. "name": "Sebastian Bergmann",
  6815. "email": "sebastian@phpunit.de"
  6816. },
  6817. {
  6818. "name": "Jeff Welch",
  6819. "email": "whatthejeff@gmail.com"
  6820. },
  6821. {
  6822. "name": "Adam Harvey",
  6823. "email": "aharvey@php.net"
  6824. }
  6825. ],
  6826. "description": "Provides functionality to recursively process PHP variables",
  6827. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  6828. "time": "2023-02-03T07:05:40+00:00"
  6829. },
  6830. {
  6831. "name": "sebastian/type",
  6832. "version": "4.0.0",
  6833. "dist": {
  6834. "type": "zip",
  6835. "url": "https://mirrors.tencent.com/repository/composer/sebastian/type/4.0.0/sebastian-type-4.0.0.zip",
  6836. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  6837. "shasum": ""
  6838. },
  6839. "require": {
  6840. "php": ">=8.1"
  6841. },
  6842. "require-dev": {
  6843. "phpunit/phpunit": "^10.0"
  6844. },
  6845. "type": "library",
  6846. "extra": {
  6847. "branch-alias": {
  6848. "dev-main": "4.0-dev"
  6849. }
  6850. },
  6851. "autoload": {
  6852. "classmap": [
  6853. "src/"
  6854. ]
  6855. },
  6856. "license": [
  6857. "BSD-3-Clause"
  6858. ],
  6859. "authors": [
  6860. {
  6861. "name": "Sebastian Bergmann",
  6862. "email": "sebastian@phpunit.de",
  6863. "role": "lead"
  6864. }
  6865. ],
  6866. "description": "Collection of value objects that represent the types of the PHP type system",
  6867. "homepage": "https://github.com/sebastianbergmann/type",
  6868. "time": "2023-02-03T07:10:45+00:00"
  6869. },
  6870. {
  6871. "name": "sebastian/version",
  6872. "version": "4.0.1",
  6873. "dist": {
  6874. "type": "zip",
  6875. "url": "https://mirrors.tencent.com/repository/composer/sebastian/version/4.0.1/sebastian-version-4.0.1.zip",
  6876. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  6877. "shasum": ""
  6878. },
  6879. "require": {
  6880. "php": ">=8.1"
  6881. },
  6882. "type": "library",
  6883. "extra": {
  6884. "branch-alias": {
  6885. "dev-main": "4.0-dev"
  6886. }
  6887. },
  6888. "autoload": {
  6889. "classmap": [
  6890. "src/"
  6891. ]
  6892. },
  6893. "license": [
  6894. "BSD-3-Clause"
  6895. ],
  6896. "authors": [
  6897. {
  6898. "name": "Sebastian Bergmann",
  6899. "email": "sebastian@phpunit.de",
  6900. "role": "lead"
  6901. }
  6902. ],
  6903. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  6904. "homepage": "https://github.com/sebastianbergmann/version",
  6905. "time": "2023-02-07T11:34:05+00:00"
  6906. },
  6907. {
  6908. "name": "spatie/backtrace",
  6909. "version": "1.5.3",
  6910. "dist": {
  6911. "type": "zip",
  6912. "url": "https://mirrors.cloud.tencent.com/repository/composer/spatie/backtrace/1.5.3/spatie-backtrace-1.5.3.zip",
  6913. "reference": "483f76a82964a0431aa836b6ed0edde0c248e3ab",
  6914. "shasum": ""
  6915. },
  6916. "require": {
  6917. "php": "^7.3|^8.0"
  6918. },
  6919. "require-dev": {
  6920. "ext-json": "*",
  6921. "phpunit/phpunit": "^9.3",
  6922. "spatie/phpunit-snapshot-assertions": "^4.2",
  6923. "symfony/var-dumper": "^5.1"
  6924. },
  6925. "type": "library",
  6926. "autoload": {
  6927. "psr-4": {
  6928. "Spatie\\Backtrace\\": "src"
  6929. }
  6930. },
  6931. "license": [
  6932. "MIT"
  6933. ],
  6934. "authors": [
  6935. {
  6936. "name": "Freek Van de Herten",
  6937. "email": "freek@spatie.be",
  6938. "homepage": "https://spatie.be",
  6939. "role": "Developer"
  6940. }
  6941. ],
  6942. "description": "A better backtrace",
  6943. "homepage": "https://github.com/spatie/backtrace",
  6944. "keywords": [
  6945. "Backtrace",
  6946. "spatie"
  6947. ],
  6948. "time": "2023-06-28T12:59:17+00:00"
  6949. },
  6950. {
  6951. "name": "spatie/flare-client-php",
  6952. "version": "1.4.3",
  6953. "dist": {
  6954. "type": "zip",
  6955. "url": "https://mirrors.cloud.tencent.com/repository/composer/spatie/flare-client-php/1.4.3/spatie-flare-client-php-1.4.3.zip",
  6956. "reference": "5db2fdd743c3ede33f2a5367d89ec1a7c9c1d1ec",
  6957. "shasum": ""
  6958. },
  6959. "require": {
  6960. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0",
  6961. "nesbot/carbon": "^2.62.1",
  6962. "php": "^8.0",
  6963. "spatie/backtrace": "^1.5.2",
  6964. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  6965. "symfony/mime": "^5.2|^6.0|^7.0",
  6966. "symfony/process": "^5.2|^6.0|^7.0",
  6967. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  6968. },
  6969. "require-dev": {
  6970. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  6971. "pestphp/pest": "^1.20|^2.0",
  6972. "phpstan/extension-installer": "^1.1",
  6973. "phpstan/phpstan-deprecation-rules": "^1.0",
  6974. "phpstan/phpstan-phpunit": "^1.0",
  6975. "spatie/phpunit-snapshot-assertions": "^4.0|^5.0"
  6976. },
  6977. "type": "library",
  6978. "extra": {
  6979. "branch-alias": {
  6980. "dev-main": "1.3.x-dev"
  6981. }
  6982. },
  6983. "autoload": {
  6984. "files": [
  6985. "src/helpers.php"
  6986. ],
  6987. "psr-4": {
  6988. "Spatie\\FlareClient\\": "src"
  6989. }
  6990. },
  6991. "license": [
  6992. "MIT"
  6993. ],
  6994. "description": "Send PHP errors to Flare",
  6995. "homepage": "https://github.com/spatie/flare-client-php",
  6996. "keywords": [
  6997. "exception",
  6998. "flare",
  6999. "reporting",
  7000. "spatie"
  7001. ],
  7002. "time": "2023-10-17T15:54:07+00:00"
  7003. },
  7004. {
  7005. "name": "spatie/ignition",
  7006. "version": "1.12.0",
  7007. "dist": {
  7008. "type": "zip",
  7009. "url": "https://mirrors.cloud.tencent.com/repository/composer/spatie/ignition/1.12.0/spatie-ignition-1.12.0.zip",
  7010. "reference": "5b6f801c605a593106b623e45ca41496a6e7d56d",
  7011. "shasum": ""
  7012. },
  7013. "require": {
  7014. "ext-json": "*",
  7015. "ext-mbstring": "*",
  7016. "php": "^8.0",
  7017. "spatie/backtrace": "^1.5.3",
  7018. "spatie/flare-client-php": "^1.4.0",
  7019. "symfony/console": "^5.4|^6.0|^7.0",
  7020. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7021. },
  7022. "require-dev": {
  7023. "illuminate/cache": "^9.52|^10.0|^11.0",
  7024. "mockery/mockery": "^1.4",
  7025. "pestphp/pest": "^1.20|^2.0",
  7026. "phpstan/extension-installer": "^1.1",
  7027. "phpstan/phpstan-deprecation-rules": "^1.0",
  7028. "phpstan/phpstan-phpunit": "^1.0",
  7029. "psr/simple-cache-implementation": "*",
  7030. "symfony/cache": "^5.4|^6.0|^7.0",
  7031. "symfony/process": "^5.4|^6.0|^7.0",
  7032. "vlucas/phpdotenv": "^5.5"
  7033. },
  7034. "suggest": {
  7035. "openai-php/client": "Require get solutions from OpenAI",
  7036. "simple-cache-implementation": "To cache solutions from OpenAI"
  7037. },
  7038. "type": "library",
  7039. "extra": {
  7040. "branch-alias": {
  7041. "dev-main": "1.5.x-dev"
  7042. }
  7043. },
  7044. "autoload": {
  7045. "psr-4": {
  7046. "Spatie\\Ignition\\": "src"
  7047. }
  7048. },
  7049. "license": [
  7050. "MIT"
  7051. ],
  7052. "authors": [
  7053. {
  7054. "name": "Spatie",
  7055. "email": "info@spatie.be",
  7056. "role": "Developer"
  7057. }
  7058. ],
  7059. "description": "A beautiful error page for PHP applications.",
  7060. "homepage": "https://flareapp.io/ignition",
  7061. "keywords": [
  7062. "error",
  7063. "flare",
  7064. "laravel",
  7065. "page"
  7066. ],
  7067. "time": "2024-01-03T15:49:39+00:00"
  7068. },
  7069. {
  7070. "name": "spatie/laravel-ignition",
  7071. "version": "2.4.0",
  7072. "dist": {
  7073. "type": "zip",
  7074. "url": "https://mirrors.cloud.tencent.com/repository/composer/spatie/laravel-ignition/2.4.0/spatie-laravel-ignition-2.4.0.zip",
  7075. "reference": "b9395ba48d3f30d42092cf6ceff75ed7256cd604",
  7076. "shasum": ""
  7077. },
  7078. "require": {
  7079. "ext-curl": "*",
  7080. "ext-json": "*",
  7081. "ext-mbstring": "*",
  7082. "illuminate/support": "^10.0|^11.0",
  7083. "php": "^8.1",
  7084. "spatie/flare-client-php": "^1.3.5",
  7085. "spatie/ignition": "^1.9",
  7086. "symfony/console": "^6.2.3|^7.0",
  7087. "symfony/var-dumper": "^6.2.3|^7.0"
  7088. },
  7089. "require-dev": {
  7090. "livewire/livewire": "^2.11|^3.3.5",
  7091. "mockery/mockery": "^1.5.1",
  7092. "openai-php/client": "^0.8.1",
  7093. "orchestra/testbench": "^8.0|^9.0",
  7094. "pestphp/pest": "^2.30",
  7095. "phpstan/extension-installer": "^1.2",
  7096. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  7097. "phpstan/phpstan-phpunit": "^1.3.3",
  7098. "vlucas/phpdotenv": "^5.5"
  7099. },
  7100. "suggest": {
  7101. "openai-php/client": "Require get solutions from OpenAI",
  7102. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  7103. },
  7104. "type": "library",
  7105. "extra": {
  7106. "laravel": {
  7107. "providers": [
  7108. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  7109. ],
  7110. "aliases": {
  7111. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  7112. }
  7113. }
  7114. },
  7115. "autoload": {
  7116. "files": [
  7117. "src/helpers.php"
  7118. ],
  7119. "psr-4": {
  7120. "Spatie\\LaravelIgnition\\": "src"
  7121. }
  7122. },
  7123. "license": [
  7124. "MIT"
  7125. ],
  7126. "authors": [
  7127. {
  7128. "name": "Spatie",
  7129. "email": "info@spatie.be",
  7130. "role": "Developer"
  7131. }
  7132. ],
  7133. "description": "A beautiful error page for Laravel applications.",
  7134. "homepage": "https://flareapp.io/ignition",
  7135. "keywords": [
  7136. "error",
  7137. "flare",
  7138. "laravel",
  7139. "page"
  7140. ],
  7141. "time": "2024-01-04T14:51:24+00:00"
  7142. },
  7143. {
  7144. "name": "symfony/polyfill-php81",
  7145. "version": "v1.28.0",
  7146. "dist": {
  7147. "type": "zip",
  7148. "url": "https://mirrors.cloud.tencent.com/repository/composer/symfony/polyfill-php81/v1.28.0/symfony-polyfill-php81-v1.28.0.zip",
  7149. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  7150. "shasum": ""
  7151. },
  7152. "require": {
  7153. "php": ">=7.1"
  7154. },
  7155. "type": "library",
  7156. "extra": {
  7157. "branch-alias": {
  7158. "dev-main": "1.28-dev"
  7159. },
  7160. "thanks": {
  7161. "name": "symfony/polyfill",
  7162. "url": "https://github.com/symfony/polyfill"
  7163. }
  7164. },
  7165. "autoload": {
  7166. "files": [
  7167. "bootstrap.php"
  7168. ],
  7169. "psr-4": {
  7170. "Symfony\\Polyfill\\Php81\\": ""
  7171. },
  7172. "classmap": [
  7173. "Resources/stubs"
  7174. ]
  7175. },
  7176. "license": [
  7177. "MIT"
  7178. ],
  7179. "authors": [
  7180. {
  7181. "name": "Nicolas Grekas",
  7182. "email": "p@tchwork.com"
  7183. },
  7184. {
  7185. "name": "Symfony Community",
  7186. "homepage": "https://symfony.com/contributors"
  7187. }
  7188. ],
  7189. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7190. "homepage": "https://symfony.com",
  7191. "keywords": [
  7192. "compatibility",
  7193. "polyfill",
  7194. "portable",
  7195. "shim"
  7196. ],
  7197. "time": "2023-01-26T09:26:14+00:00"
  7198. },
  7199. {
  7200. "name": "symfony/yaml",
  7201. "version": "v7.0.0",
  7202. "dist": {
  7203. "type": "zip",
  7204. "url": "https://mirrors.tencent.com/repository/composer/symfony/yaml/v7.0.0/symfony-yaml-v7.0.0.zip",
  7205. "reference": "0055b230c408428b9b5cde7c55659555be5c0278",
  7206. "shasum": ""
  7207. },
  7208. "require": {
  7209. "php": ">=8.2",
  7210. "symfony/polyfill-ctype": "^1.8"
  7211. },
  7212. "conflict": {
  7213. "symfony/console": "<6.4"
  7214. },
  7215. "require-dev": {
  7216. "symfony/console": "^6.4|^7.0"
  7217. },
  7218. "bin": [
  7219. "Resources/bin/yaml-lint"
  7220. ],
  7221. "type": "library",
  7222. "autoload": {
  7223. "psr-4": {
  7224. "Symfony\\Component\\Yaml\\": ""
  7225. },
  7226. "exclude-from-classmap": [
  7227. "/Tests/"
  7228. ]
  7229. },
  7230. "license": [
  7231. "MIT"
  7232. ],
  7233. "authors": [
  7234. {
  7235. "name": "Fabien Potencier",
  7236. "email": "fabien@symfony.com"
  7237. },
  7238. {
  7239. "name": "Symfony Community",
  7240. "homepage": "https://symfony.com/contributors"
  7241. }
  7242. ],
  7243. "description": "Loads and dumps YAML files",
  7244. "homepage": "https://symfony.com",
  7245. "time": "2023-11-07T10:26:03+00:00"
  7246. },
  7247. {
  7248. "name": "theseer/tokenizer",
  7249. "version": "1.2.2",
  7250. "dist": {
  7251. "type": "zip",
  7252. "url": "https://mirrors.tencent.com/repository/composer/theseer/tokenizer/1.2.2/theseer-tokenizer-1.2.2.zip",
  7253. "reference": "b2ad5003ca10d4ee50a12da31de12a5774ba6b96",
  7254. "shasum": ""
  7255. },
  7256. "require": {
  7257. "ext-dom": "*",
  7258. "ext-tokenizer": "*",
  7259. "ext-xmlwriter": "*",
  7260. "php": "^7.2 || ^8.0"
  7261. },
  7262. "type": "library",
  7263. "autoload": {
  7264. "classmap": [
  7265. "src/"
  7266. ]
  7267. },
  7268. "license": [
  7269. "BSD-3-Clause"
  7270. ],
  7271. "authors": [
  7272. {
  7273. "name": "Arne Blankerts",
  7274. "email": "arne@blankerts.de",
  7275. "role": "Developer"
  7276. }
  7277. ],
  7278. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  7279. "time": "2023-11-20T00:12:19+00:00"
  7280. }
  7281. ],
  7282. "aliases": [],
  7283. "minimum-stability": "stable",
  7284. "stability-flags": [],
  7285. "prefer-stable": true,
  7286. "prefer-lowest": false,
  7287. "platform": {
  7288. "php": "^8.1"
  7289. },
  7290. "platform-dev": [],
  7291. "plugin-api-version": "2.3.0"
  7292. }