composer.lock 265 KB

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