composer.lock 362 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048
  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": "746a5d1fe0ef4821be84593268052a37",
  8. "packages": [
  9. {
  10. "name": "archtechx/enums",
  11. "version": "v1.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/archtechx/enums.git",
  15. "reference": "27d0405b983b14a2ee90621c4034eeb6010c0a0c"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/archtechx/enums/zipball/27d0405b983b14a2ee90621c4034eeb6010c0a0c",
  20. "reference": "27d0405b983b14a2ee90621c4034eeb6010c0a0c",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "php": "^8.1"
  31. },
  32. "require-dev": {
  33. "larastan/larastan": "^2.4",
  34. "orchestra/testbench": "^8.0",
  35. "pestphp/pest": "^2.0",
  36. "pestphp/pest-plugin-laravel": "^2.0"
  37. },
  38. "type": "library",
  39. "autoload": {
  40. "psr-4": {
  41. "ArchTech\\Enums\\": "src/"
  42. }
  43. },
  44. "notification-url": "https://packagist.org/downloads/",
  45. "license": [
  46. "MIT"
  47. ],
  48. "authors": [
  49. {
  50. "name": "Samuel Štancl",
  51. "email": "samuel@archte.ch"
  52. }
  53. ],
  54. "description": "Helpers for making PHP enums more lovable.",
  55. "support": {
  56. "issues": "https://github.com/archtechx/enums/issues",
  57. "source": "https://github.com/archtechx/enums/tree/v1.1.1"
  58. },
  59. "time": "2024-10-29T15:38:32+00:00"
  60. },
  61. {
  62. "name": "brick/math",
  63. "version": "0.12.3",
  64. "source": {
  65. "type": "git",
  66. "url": "https://github.com/brick/math.git",
  67. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba"
  68. },
  69. "dist": {
  70. "type": "zip",
  71. "url": "https://api.github.com/repos/brick/math/zipball/866551da34e9a618e64a819ee1e01c20d8a588ba",
  72. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba",
  73. "shasum": "",
  74. "mirrors": [
  75. {
  76. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  77. "preferred": true
  78. }
  79. ]
  80. },
  81. "require": {
  82. "php": "^8.1"
  83. },
  84. "require-dev": {
  85. "php-coveralls/php-coveralls": "^2.2",
  86. "phpunit/phpunit": "^10.1",
  87. "vimeo/psalm": "6.8.8"
  88. },
  89. "type": "library",
  90. "autoload": {
  91. "psr-4": {
  92. "Brick\\Math\\": "src/"
  93. }
  94. },
  95. "notification-url": "https://packagist.org/downloads/",
  96. "license": [
  97. "MIT"
  98. ],
  99. "description": "Arbitrary-precision arithmetic library",
  100. "keywords": [
  101. "Arbitrary-precision",
  102. "BigInteger",
  103. "BigRational",
  104. "arithmetic",
  105. "bigdecimal",
  106. "bignum",
  107. "bignumber",
  108. "brick",
  109. "decimal",
  110. "integer",
  111. "math",
  112. "mathematics",
  113. "rational"
  114. ],
  115. "support": {
  116. "issues": "https://github.com/brick/math/issues",
  117. "source": "https://github.com/brick/math/tree/0.12.3"
  118. },
  119. "funding": [
  120. {
  121. "url": "https://github.com/BenMorel",
  122. "type": "github"
  123. }
  124. ],
  125. "time": "2025-02-28T13:11:00+00:00"
  126. },
  127. {
  128. "name": "carbonphp/carbon-doctrine-types",
  129. "version": "3.2.0",
  130. "source": {
  131. "type": "git",
  132. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  133. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  134. },
  135. "dist": {
  136. "type": "zip",
  137. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  138. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  139. "shasum": "",
  140. "mirrors": [
  141. {
  142. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  143. "preferred": true
  144. }
  145. ]
  146. },
  147. "require": {
  148. "php": "^8.1"
  149. },
  150. "conflict": {
  151. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  152. },
  153. "require-dev": {
  154. "doctrine/dbal": "^4.0.0",
  155. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  156. "phpunit/phpunit": "^10.3"
  157. },
  158. "type": "library",
  159. "autoload": {
  160. "psr-4": {
  161. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  162. }
  163. },
  164. "notification-url": "https://packagist.org/downloads/",
  165. "license": [
  166. "MIT"
  167. ],
  168. "authors": [
  169. {
  170. "name": "KyleKatarn",
  171. "email": "kylekatarnls@gmail.com"
  172. }
  173. ],
  174. "description": "Types to use Carbon in Doctrine",
  175. "keywords": [
  176. "carbon",
  177. "date",
  178. "datetime",
  179. "doctrine",
  180. "time"
  181. ],
  182. "support": {
  183. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  184. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  185. },
  186. "funding": [
  187. {
  188. "url": "https://github.com/kylekatarnls",
  189. "type": "github"
  190. },
  191. {
  192. "url": "https://opencollective.com/Carbon",
  193. "type": "open_collective"
  194. },
  195. {
  196. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  197. "type": "tidelift"
  198. }
  199. ],
  200. "time": "2024-02-09T16:56:22+00:00"
  201. },
  202. {
  203. "name": "composer/semver",
  204. "version": "3.4.3",
  205. "source": {
  206. "type": "git",
  207. "url": "https://github.com/composer/semver.git",
  208. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  209. },
  210. "dist": {
  211. "type": "zip",
  212. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  213. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  214. "shasum": "",
  215. "mirrors": [
  216. {
  217. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  218. "preferred": true
  219. }
  220. ]
  221. },
  222. "require": {
  223. "php": "^5.3.2 || ^7.0 || ^8.0"
  224. },
  225. "require-dev": {
  226. "phpstan/phpstan": "^1.11",
  227. "symfony/phpunit-bridge": "^3 || ^7"
  228. },
  229. "type": "library",
  230. "extra": {
  231. "branch-alias": {
  232. "dev-main": "3.x-dev"
  233. }
  234. },
  235. "autoload": {
  236. "psr-4": {
  237. "Composer\\Semver\\": "src"
  238. }
  239. },
  240. "notification-url": "https://packagist.org/downloads/",
  241. "license": [
  242. "MIT"
  243. ],
  244. "authors": [
  245. {
  246. "name": "Nils Adermann",
  247. "email": "naderman@naderman.de",
  248. "homepage": "http://www.naderman.de"
  249. },
  250. {
  251. "name": "Jordi Boggiano",
  252. "email": "j.boggiano@seld.be",
  253. "homepage": "http://seld.be"
  254. },
  255. {
  256. "name": "Rob Bast",
  257. "email": "rob.bast@gmail.com",
  258. "homepage": "http://robbast.nl"
  259. }
  260. ],
  261. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  262. "keywords": [
  263. "semantic",
  264. "semver",
  265. "validation",
  266. "versioning"
  267. ],
  268. "support": {
  269. "irc": "ircs://irc.libera.chat:6697/composer",
  270. "issues": "https://github.com/composer/semver/issues",
  271. "source": "https://github.com/composer/semver/tree/3.4.3"
  272. },
  273. "funding": [
  274. {
  275. "url": "https://packagist.com",
  276. "type": "custom"
  277. },
  278. {
  279. "url": "https://github.com/composer",
  280. "type": "github"
  281. },
  282. {
  283. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  284. "type": "tidelift"
  285. }
  286. ],
  287. "time": "2024-09-19T14:15:21+00:00"
  288. },
  289. {
  290. "name": "dflydev/dot-access-data",
  291. "version": "v3.0.3",
  292. "source": {
  293. "type": "git",
  294. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  295. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  296. },
  297. "dist": {
  298. "type": "zip",
  299. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  300. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  301. "shasum": "",
  302. "mirrors": [
  303. {
  304. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  305. "preferred": true
  306. }
  307. ]
  308. },
  309. "require": {
  310. "php": "^7.1 || ^8.0"
  311. },
  312. "require-dev": {
  313. "phpstan/phpstan": "^0.12.42",
  314. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  315. "scrutinizer/ocular": "1.6.0",
  316. "squizlabs/php_codesniffer": "^3.5",
  317. "vimeo/psalm": "^4.0.0"
  318. },
  319. "type": "library",
  320. "extra": {
  321. "branch-alias": {
  322. "dev-main": "3.x-dev"
  323. }
  324. },
  325. "autoload": {
  326. "psr-4": {
  327. "Dflydev\\DotAccessData\\": "src/"
  328. }
  329. },
  330. "notification-url": "https://packagist.org/downloads/",
  331. "license": [
  332. "MIT"
  333. ],
  334. "authors": [
  335. {
  336. "name": "Dragonfly Development Inc.",
  337. "email": "info@dflydev.com",
  338. "homepage": "http://dflydev.com"
  339. },
  340. {
  341. "name": "Beau Simensen",
  342. "email": "beau@dflydev.com",
  343. "homepage": "http://beausimensen.com"
  344. },
  345. {
  346. "name": "Carlos Frutos",
  347. "email": "carlos@kiwing.it",
  348. "homepage": "https://github.com/cfrutos"
  349. },
  350. {
  351. "name": "Colin O'Dell",
  352. "email": "colinodell@gmail.com",
  353. "homepage": "https://www.colinodell.com"
  354. }
  355. ],
  356. "description": "Given a deep data structure, access data by dot notation.",
  357. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  358. "keywords": [
  359. "access",
  360. "data",
  361. "dot",
  362. "notation"
  363. ],
  364. "support": {
  365. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  366. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  367. },
  368. "time": "2024-07-08T12:26:09+00:00"
  369. },
  370. {
  371. "name": "doctrine/inflector",
  372. "version": "2.0.10",
  373. "source": {
  374. "type": "git",
  375. "url": "https://github.com/doctrine/inflector.git",
  376. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  377. },
  378. "dist": {
  379. "type": "zip",
  380. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  381. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  382. "shasum": "",
  383. "mirrors": [
  384. {
  385. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  386. "preferred": true
  387. }
  388. ]
  389. },
  390. "require": {
  391. "php": "^7.2 || ^8.0"
  392. },
  393. "require-dev": {
  394. "doctrine/coding-standard": "^11.0",
  395. "phpstan/phpstan": "^1.8",
  396. "phpstan/phpstan-phpunit": "^1.1",
  397. "phpstan/phpstan-strict-rules": "^1.3",
  398. "phpunit/phpunit": "^8.5 || ^9.5",
  399. "vimeo/psalm": "^4.25 || ^5.4"
  400. },
  401. "type": "library",
  402. "autoload": {
  403. "psr-4": {
  404. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  405. }
  406. },
  407. "notification-url": "https://packagist.org/downloads/",
  408. "license": [
  409. "MIT"
  410. ],
  411. "authors": [
  412. {
  413. "name": "Guilherme Blanco",
  414. "email": "guilhermeblanco@gmail.com"
  415. },
  416. {
  417. "name": "Roman Borschel",
  418. "email": "roman@code-factory.org"
  419. },
  420. {
  421. "name": "Benjamin Eberlei",
  422. "email": "kontakt@beberlei.de"
  423. },
  424. {
  425. "name": "Jonathan Wage",
  426. "email": "jonwage@gmail.com"
  427. },
  428. {
  429. "name": "Johannes Schmitt",
  430. "email": "schmittjoh@gmail.com"
  431. }
  432. ],
  433. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  434. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  435. "keywords": [
  436. "inflection",
  437. "inflector",
  438. "lowercase",
  439. "manipulation",
  440. "php",
  441. "plural",
  442. "singular",
  443. "strings",
  444. "uppercase",
  445. "words"
  446. ],
  447. "support": {
  448. "issues": "https://github.com/doctrine/inflector/issues",
  449. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  450. },
  451. "funding": [
  452. {
  453. "url": "https://www.doctrine-project.org/sponsorship.html",
  454. "type": "custom"
  455. },
  456. {
  457. "url": "https://www.patreon.com/phpdoctrine",
  458. "type": "patreon"
  459. },
  460. {
  461. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  462. "type": "tidelift"
  463. }
  464. ],
  465. "time": "2024-02-18T20:23:39+00:00"
  466. },
  467. {
  468. "name": "doctrine/lexer",
  469. "version": "3.0.1",
  470. "source": {
  471. "type": "git",
  472. "url": "https://github.com/doctrine/lexer.git",
  473. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  474. },
  475. "dist": {
  476. "type": "zip",
  477. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  478. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  479. "shasum": "",
  480. "mirrors": [
  481. {
  482. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  483. "preferred": true
  484. }
  485. ]
  486. },
  487. "require": {
  488. "php": "^8.1"
  489. },
  490. "require-dev": {
  491. "doctrine/coding-standard": "^12",
  492. "phpstan/phpstan": "^1.10",
  493. "phpunit/phpunit": "^10.5",
  494. "psalm/plugin-phpunit": "^0.18.3",
  495. "vimeo/psalm": "^5.21"
  496. },
  497. "type": "library",
  498. "autoload": {
  499. "psr-4": {
  500. "Doctrine\\Common\\Lexer\\": "src"
  501. }
  502. },
  503. "notification-url": "https://packagist.org/downloads/",
  504. "license": [
  505. "MIT"
  506. ],
  507. "authors": [
  508. {
  509. "name": "Guilherme Blanco",
  510. "email": "guilhermeblanco@gmail.com"
  511. },
  512. {
  513. "name": "Roman Borschel",
  514. "email": "roman@code-factory.org"
  515. },
  516. {
  517. "name": "Johannes Schmitt",
  518. "email": "schmittjoh@gmail.com"
  519. }
  520. ],
  521. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  522. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  523. "keywords": [
  524. "annotations",
  525. "docblock",
  526. "lexer",
  527. "parser",
  528. "php"
  529. ],
  530. "support": {
  531. "issues": "https://github.com/doctrine/lexer/issues",
  532. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  533. },
  534. "funding": [
  535. {
  536. "url": "https://www.doctrine-project.org/sponsorship.html",
  537. "type": "custom"
  538. },
  539. {
  540. "url": "https://www.patreon.com/phpdoctrine",
  541. "type": "patreon"
  542. },
  543. {
  544. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  545. "type": "tidelift"
  546. }
  547. ],
  548. "time": "2024-02-05T11:56:58+00:00"
  549. },
  550. {
  551. "name": "dragon-code/contracts",
  552. "version": "2.23.0",
  553. "source": {
  554. "type": "git",
  555. "url": "https://github.com/TheDragonCode/contracts.git",
  556. "reference": "44dbad923f152e0dc2699fbac2d33b65dd6a8f7d"
  557. },
  558. "dist": {
  559. "type": "zip",
  560. "url": "https://api.github.com/repos/TheDragonCode/contracts/zipball/44dbad923f152e0dc2699fbac2d33b65dd6a8f7d",
  561. "reference": "44dbad923f152e0dc2699fbac2d33b65dd6a8f7d",
  562. "shasum": "",
  563. "mirrors": [
  564. {
  565. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  566. "preferred": true
  567. }
  568. ]
  569. },
  570. "require": {
  571. "php": "^7.2.5 || ^8.0",
  572. "psr/http-message": "^1.0.1 || ^2.0",
  573. "symfony/http-kernel": "^4.0 || ^5.0 || ^6.0 || ^7.0",
  574. "symfony/polyfill-php80": "^1.23"
  575. },
  576. "conflict": {
  577. "andrey-helldar/contracts": "*"
  578. },
  579. "require-dev": {
  580. "illuminate/database": "^10.0 || ^11.0",
  581. "phpdocumentor/reflection-docblock": "^5.0"
  582. },
  583. "type": "library",
  584. "autoload": {
  585. "psr-4": {
  586. "DragonCode\\Contracts\\": "src"
  587. }
  588. },
  589. "notification-url": "https://packagist.org/downloads/",
  590. "license": [
  591. "MIT"
  592. ],
  593. "authors": [
  594. {
  595. "name": "Andrey Helldar",
  596. "email": "helldar@dragon-code.pro",
  597. "homepage": "https://dragon-code.pro"
  598. }
  599. ],
  600. "description": "A set of contracts for any project",
  601. "keywords": [
  602. "contracts",
  603. "interfaces"
  604. ],
  605. "support": {
  606. "source": "https://github.com/TheDragonCode/contracts"
  607. },
  608. "funding": [
  609. {
  610. "url": "https://boosty.to/dragon-code",
  611. "type": "boosty"
  612. },
  613. {
  614. "url": "https://www.donationalerts.com/r/dragon_code",
  615. "type": "donationalerts"
  616. },
  617. {
  618. "url": "https://yoomoney.ru/to/410012608840929",
  619. "type": "yoomoney"
  620. }
  621. ],
  622. "time": "2024-03-11T20:15:12+00:00"
  623. },
  624. {
  625. "name": "dragon-code/pretty-array",
  626. "version": "v4.1.0",
  627. "source": {
  628. "type": "git",
  629. "url": "https://github.com/TheDragonCode/pretty-array.git",
  630. "reference": "6c84e2454491b414efbd37985c322712cdf9012f"
  631. },
  632. "dist": {
  633. "type": "zip",
  634. "url": "https://api.github.com/repos/TheDragonCode/pretty-array/zipball/6c84e2454491b414efbd37985c322712cdf9012f",
  635. "reference": "6c84e2454491b414efbd37985c322712cdf9012f",
  636. "shasum": "",
  637. "mirrors": [
  638. {
  639. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  640. "preferred": true
  641. }
  642. ]
  643. },
  644. "require": {
  645. "dragon-code/contracts": "^2.20",
  646. "dragon-code/support": "^6.11.2",
  647. "ext-dom": "*",
  648. "ext-mbstring": "*",
  649. "php": "^8.0"
  650. },
  651. "require-dev": {
  652. "phpunit/phpunit": "^9.6 || ^10.2"
  653. },
  654. "suggest": {
  655. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  656. },
  657. "type": "library",
  658. "autoload": {
  659. "psr-4": {
  660. "DragonCode\\PrettyArray\\": "src"
  661. }
  662. },
  663. "notification-url": "https://packagist.org/downloads/",
  664. "license": [
  665. "MIT"
  666. ],
  667. "authors": [
  668. {
  669. "name": "Andrey Helldar",
  670. "email": "helldar@dragon-code.pro",
  671. "homepage": "https://github.com/andrey-helldar"
  672. }
  673. ],
  674. "description": "Simple conversion of an array to a pretty view",
  675. "keywords": [
  676. "andrey helldar",
  677. "array",
  678. "dragon",
  679. "dragon code",
  680. "pretty",
  681. "pretty array"
  682. ],
  683. "support": {
  684. "issues": "https://github.com/TheDragonCode/pretty-array/issues",
  685. "source": "https://github.com/TheDragonCode/pretty-array"
  686. },
  687. "funding": [
  688. {
  689. "url": "https://boosty.to/dragon-code",
  690. "type": "boosty"
  691. },
  692. {
  693. "url": "https://github.com/sponsors/TheDragonCode",
  694. "type": "github"
  695. },
  696. {
  697. "url": "https://opencollective.com/dragon-code",
  698. "type": "open_collective"
  699. },
  700. {
  701. "url": "https://yoomoney.ru/to/410012608840929",
  702. "type": "yoomoney"
  703. }
  704. ],
  705. "time": "2023-06-02T11:37:44+00:00"
  706. },
  707. {
  708. "name": "dragon-code/support",
  709. "version": "6.13.0",
  710. "source": {
  711. "type": "git",
  712. "url": "https://github.com/TheDragonCode/support.git",
  713. "reference": "a6f0468e32581efbccb23190b6d5c880cc519747"
  714. },
  715. "dist": {
  716. "type": "zip",
  717. "url": "https://api.github.com/repos/TheDragonCode/support/zipball/a6f0468e32581efbccb23190b6d5c880cc519747",
  718. "reference": "a6f0468e32581efbccb23190b6d5c880cc519747",
  719. "shasum": "",
  720. "mirrors": [
  721. {
  722. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  723. "preferred": true
  724. }
  725. ]
  726. },
  727. "require": {
  728. "dragon-code/contracts": "^2.22.0",
  729. "ext-bcmath": "*",
  730. "ext-ctype": "*",
  731. "ext-dom": "*",
  732. "ext-json": "*",
  733. "ext-mbstring": "*",
  734. "php": "^8.1",
  735. "psr/http-message": "^1.0.1 || ^2.0",
  736. "symfony/polyfill-php81": "^1.25",
  737. "voku/portable-ascii": "^1.4.8 || ^2.0.1"
  738. },
  739. "conflict": {
  740. "andrey-helldar/support": "*"
  741. },
  742. "require-dev": {
  743. "illuminate/contracts": "^9.0 || ^10.0 || ^11.0",
  744. "phpunit/phpunit": "^9.6 || ^11.0",
  745. "symfony/var-dumper": "^6.0 || ^7.0"
  746. },
  747. "suggest": {
  748. "dragon-code/laravel-support": "Various helper files for the Laravel and Lumen frameworks",
  749. "symfony/thanks": "Give thanks (in the form of a GitHub) to your fellow PHP package maintainers"
  750. },
  751. "type": "library",
  752. "extra": {
  753. "dragon-code": {
  754. "docs-generator": {
  755. "preview": {
  756. "brand": "php",
  757. "vendor": "The Dragon Code"
  758. }
  759. }
  760. }
  761. },
  762. "autoload": {
  763. "psr-4": {
  764. "DragonCode\\Support\\": "src"
  765. }
  766. },
  767. "notification-url": "https://packagist.org/downloads/",
  768. "license": [
  769. "MIT"
  770. ],
  771. "authors": [
  772. {
  773. "name": "Andrey Helldar",
  774. "email": "helldar@dragon-code.pro",
  775. "homepage": "https://dragon-code.pro"
  776. }
  777. ],
  778. "description": "Support package is a collection of helpers and tools for any project.",
  779. "keywords": [
  780. "dragon",
  781. "dragon-code",
  782. "framework",
  783. "helper",
  784. "helpers",
  785. "laravel",
  786. "php",
  787. "support",
  788. "symfony",
  789. "yii",
  790. "yii2"
  791. ],
  792. "support": {
  793. "issues": "https://github.com/TheDragonCode/support/issues",
  794. "source": "https://github.com/TheDragonCode/support"
  795. },
  796. "funding": [
  797. {
  798. "url": "https://boosty.to/dragon-code",
  799. "type": "boosty"
  800. },
  801. {
  802. "url": "https://www.donationalerts.com/r/dragon_code",
  803. "type": "donationalerts"
  804. },
  805. {
  806. "url": "https://yoomoney.ru/to/410012608840929",
  807. "type": "yoomoney"
  808. }
  809. ],
  810. "time": "2024-03-12T20:45:00+00:00"
  811. },
  812. {
  813. "name": "dragonmantank/cron-expression",
  814. "version": "v3.6.0",
  815. "source": {
  816. "type": "git",
  817. "url": "https://github.com/dragonmantank/cron-expression.git",
  818. "reference": "d61a8a9604ec1f8c3d150d09db6ce98b32675013"
  819. },
  820. "dist": {
  821. "type": "zip",
  822. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/d61a8a9604ec1f8c3d150d09db6ce98b32675013",
  823. "reference": "d61a8a9604ec1f8c3d150d09db6ce98b32675013",
  824. "shasum": "",
  825. "mirrors": [
  826. {
  827. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  828. "preferred": true
  829. }
  830. ]
  831. },
  832. "require": {
  833. "php": "^8.2|^8.3|^8.4|^8.5"
  834. },
  835. "replace": {
  836. "mtdowling/cron-expression": "^1.0"
  837. },
  838. "require-dev": {
  839. "phpstan/extension-installer": "^1.4.3",
  840. "phpstan/phpstan": "^1.12.32|^2.1.31",
  841. "phpunit/phpunit": "^8.5.48|^9.0"
  842. },
  843. "type": "library",
  844. "extra": {
  845. "branch-alias": {
  846. "dev-master": "3.x-dev"
  847. }
  848. },
  849. "autoload": {
  850. "psr-4": {
  851. "Cron\\": "src/Cron/"
  852. }
  853. },
  854. "notification-url": "https://packagist.org/downloads/",
  855. "license": [
  856. "MIT"
  857. ],
  858. "authors": [
  859. {
  860. "name": "Chris Tankersley",
  861. "email": "chris@ctankersley.com",
  862. "homepage": "https://github.com/dragonmantank"
  863. }
  864. ],
  865. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  866. "keywords": [
  867. "cron",
  868. "schedule"
  869. ],
  870. "support": {
  871. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  872. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.6.0"
  873. },
  874. "funding": [
  875. {
  876. "url": "https://github.com/dragonmantank",
  877. "type": "github"
  878. }
  879. ],
  880. "time": "2025-10-31T18:51:33+00:00"
  881. },
  882. {
  883. "name": "egulias/email-validator",
  884. "version": "4.0.3",
  885. "source": {
  886. "type": "git",
  887. "url": "https://github.com/egulias/EmailValidator.git",
  888. "reference": "b115554301161fa21467629f1e1391c1936de517"
  889. },
  890. "dist": {
  891. "type": "zip",
  892. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b115554301161fa21467629f1e1391c1936de517",
  893. "reference": "b115554301161fa21467629f1e1391c1936de517",
  894. "shasum": "",
  895. "mirrors": [
  896. {
  897. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  898. "preferred": true
  899. }
  900. ]
  901. },
  902. "require": {
  903. "doctrine/lexer": "^2.0 || ^3.0",
  904. "php": ">=8.1",
  905. "symfony/polyfill-intl-idn": "^1.26"
  906. },
  907. "require-dev": {
  908. "phpunit/phpunit": "^10.2",
  909. "vimeo/psalm": "^5.12"
  910. },
  911. "suggest": {
  912. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  913. },
  914. "type": "library",
  915. "extra": {
  916. "branch-alias": {
  917. "dev-master": "4.0.x-dev"
  918. }
  919. },
  920. "autoload": {
  921. "psr-4": {
  922. "Egulias\\EmailValidator\\": "src"
  923. }
  924. },
  925. "notification-url": "https://packagist.org/downloads/",
  926. "license": [
  927. "MIT"
  928. ],
  929. "authors": [
  930. {
  931. "name": "Eduardo Gulias Davis"
  932. }
  933. ],
  934. "description": "A library for validating emails against several RFCs",
  935. "homepage": "https://github.com/egulias/EmailValidator",
  936. "keywords": [
  937. "email",
  938. "emailvalidation",
  939. "emailvalidator",
  940. "validation",
  941. "validator"
  942. ],
  943. "support": {
  944. "issues": "https://github.com/egulias/EmailValidator/issues",
  945. "source": "https://github.com/egulias/EmailValidator/tree/4.0.3"
  946. },
  947. "funding": [
  948. {
  949. "url": "https://github.com/egulias",
  950. "type": "github"
  951. }
  952. ],
  953. "time": "2024-12-27T00:36:43+00:00"
  954. },
  955. {
  956. "name": "fruitcake/php-cors",
  957. "version": "v1.4.0",
  958. "source": {
  959. "type": "git",
  960. "url": "https://github.com/fruitcake/php-cors.git",
  961. "reference": "38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379"
  962. },
  963. "dist": {
  964. "type": "zip",
  965. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379",
  966. "reference": "38aaa6c3fd4c157ffe2a4d10aa8b9b16ba8de379",
  967. "shasum": "",
  968. "mirrors": [
  969. {
  970. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  971. "preferred": true
  972. }
  973. ]
  974. },
  975. "require": {
  976. "php": "^8.1",
  977. "symfony/http-foundation": "^5.4|^6.4|^7.3|^8"
  978. },
  979. "require-dev": {
  980. "phpstan/phpstan": "^2",
  981. "phpunit/phpunit": "^9",
  982. "squizlabs/php_codesniffer": "^4"
  983. },
  984. "type": "library",
  985. "extra": {
  986. "branch-alias": {
  987. "dev-master": "1.3-dev"
  988. }
  989. },
  990. "autoload": {
  991. "psr-4": {
  992. "Fruitcake\\Cors\\": "src/"
  993. }
  994. },
  995. "notification-url": "https://packagist.org/downloads/",
  996. "license": [
  997. "MIT"
  998. ],
  999. "authors": [
  1000. {
  1001. "name": "Fruitcake",
  1002. "homepage": "https://fruitcake.nl"
  1003. },
  1004. {
  1005. "name": "Barryvdh",
  1006. "email": "barryvdh@gmail.com"
  1007. }
  1008. ],
  1009. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1010. "homepage": "https://github.com/fruitcake/php-cors",
  1011. "keywords": [
  1012. "cors",
  1013. "laravel",
  1014. "symfony"
  1015. ],
  1016. "support": {
  1017. "issues": "https://github.com/fruitcake/php-cors/issues",
  1018. "source": "https://github.com/fruitcake/php-cors/tree/v1.4.0"
  1019. },
  1020. "funding": [
  1021. {
  1022. "url": "https://fruitcake.nl",
  1023. "type": "custom"
  1024. },
  1025. {
  1026. "url": "https://github.com/barryvdh",
  1027. "type": "github"
  1028. }
  1029. ],
  1030. "time": "2025-12-03T09:33:47+00:00"
  1031. },
  1032. {
  1033. "name": "graham-campbell/result-type",
  1034. "version": "v1.1.2",
  1035. "source": {
  1036. "type": "git",
  1037. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1038. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862"
  1039. },
  1040. "dist": {
  1041. "type": "zip",
  1042. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1043. "reference": "fbd48bce38f73f8a4ec8583362e732e4095e5862",
  1044. "shasum": "",
  1045. "mirrors": [
  1046. {
  1047. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1048. "preferred": true
  1049. }
  1050. ]
  1051. },
  1052. "require": {
  1053. "php": "^7.2.5 || ^8.0",
  1054. "phpoption/phpoption": "^1.9.2"
  1055. },
  1056. "require-dev": {
  1057. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  1058. },
  1059. "type": "library",
  1060. "autoload": {
  1061. "psr-4": {
  1062. "GrahamCampbell\\ResultType\\": "src/"
  1063. }
  1064. },
  1065. "notification-url": "https://packagist.org/downloads/",
  1066. "license": [
  1067. "MIT"
  1068. ],
  1069. "authors": [
  1070. {
  1071. "name": "Graham Campbell",
  1072. "email": "hello@gjcampbell.co.uk",
  1073. "homepage": "https://github.com/GrahamCampbell"
  1074. }
  1075. ],
  1076. "description": "An Implementation Of The Result Type",
  1077. "keywords": [
  1078. "Graham Campbell",
  1079. "GrahamCampbell",
  1080. "Result Type",
  1081. "Result-Type",
  1082. "result"
  1083. ],
  1084. "support": {
  1085. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1086. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.2"
  1087. },
  1088. "funding": [
  1089. {
  1090. "url": "https://github.com/GrahamCampbell",
  1091. "type": "github"
  1092. },
  1093. {
  1094. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1095. "type": "tidelift"
  1096. }
  1097. ],
  1098. "time": "2023-11-12T22:16:48+00:00"
  1099. },
  1100. {
  1101. "name": "guzzlehttp/guzzle",
  1102. "version": "7.9.2",
  1103. "source": {
  1104. "type": "git",
  1105. "url": "https://github.com/guzzle/guzzle.git",
  1106. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  1107. },
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  1111. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  1112. "shasum": "",
  1113. "mirrors": [
  1114. {
  1115. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1116. "preferred": true
  1117. }
  1118. ]
  1119. },
  1120. "require": {
  1121. "ext-json": "*",
  1122. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1123. "guzzlehttp/psr7": "^2.7.0",
  1124. "php": "^7.2.5 || ^8.0",
  1125. "psr/http-client": "^1.0",
  1126. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1127. },
  1128. "provide": {
  1129. "psr/http-client-implementation": "1.0"
  1130. },
  1131. "require-dev": {
  1132. "bamarni/composer-bin-plugin": "^1.8.2",
  1133. "ext-curl": "*",
  1134. "guzzle/client-integration-tests": "3.0.2",
  1135. "php-http/message-factory": "^1.1",
  1136. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1137. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1138. },
  1139. "suggest": {
  1140. "ext-curl": "Required for CURL handler support",
  1141. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1142. "psr/log": "Required for using the Log middleware"
  1143. },
  1144. "type": "library",
  1145. "extra": {
  1146. "bamarni-bin": {
  1147. "bin-links": true,
  1148. "forward-command": false
  1149. }
  1150. },
  1151. "autoload": {
  1152. "files": [
  1153. "src/functions_include.php"
  1154. ],
  1155. "psr-4": {
  1156. "GuzzleHttp\\": "src/"
  1157. }
  1158. },
  1159. "notification-url": "https://packagist.org/downloads/",
  1160. "license": [
  1161. "MIT"
  1162. ],
  1163. "authors": [
  1164. {
  1165. "name": "Graham Campbell",
  1166. "email": "hello@gjcampbell.co.uk",
  1167. "homepage": "https://github.com/GrahamCampbell"
  1168. },
  1169. {
  1170. "name": "Michael Dowling",
  1171. "email": "mtdowling@gmail.com",
  1172. "homepage": "https://github.com/mtdowling"
  1173. },
  1174. {
  1175. "name": "Jeremy Lindblom",
  1176. "email": "jeremeamia@gmail.com",
  1177. "homepage": "https://github.com/jeremeamia"
  1178. },
  1179. {
  1180. "name": "George Mponos",
  1181. "email": "gmponos@gmail.com",
  1182. "homepage": "https://github.com/gmponos"
  1183. },
  1184. {
  1185. "name": "Tobias Nyholm",
  1186. "email": "tobias.nyholm@gmail.com",
  1187. "homepage": "https://github.com/Nyholm"
  1188. },
  1189. {
  1190. "name": "Márk Sági-Kazár",
  1191. "email": "mark.sagikazar@gmail.com",
  1192. "homepage": "https://github.com/sagikazarmark"
  1193. },
  1194. {
  1195. "name": "Tobias Schultze",
  1196. "email": "webmaster@tubo-world.de",
  1197. "homepage": "https://github.com/Tobion"
  1198. }
  1199. ],
  1200. "description": "Guzzle is a PHP HTTP client library",
  1201. "keywords": [
  1202. "client",
  1203. "curl",
  1204. "framework",
  1205. "http",
  1206. "http client",
  1207. "psr-18",
  1208. "psr-7",
  1209. "rest",
  1210. "web service"
  1211. ],
  1212. "support": {
  1213. "issues": "https://github.com/guzzle/guzzle/issues",
  1214. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1215. },
  1216. "funding": [
  1217. {
  1218. "url": "https://github.com/GrahamCampbell",
  1219. "type": "github"
  1220. },
  1221. {
  1222. "url": "https://github.com/Nyholm",
  1223. "type": "github"
  1224. },
  1225. {
  1226. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1227. "type": "tidelift"
  1228. }
  1229. ],
  1230. "time": "2024-07-24T11:22:20+00:00"
  1231. },
  1232. {
  1233. "name": "guzzlehttp/promises",
  1234. "version": "2.3.0",
  1235. "source": {
  1236. "type": "git",
  1237. "url": "https://github.com/guzzle/promises.git",
  1238. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  1239. },
  1240. "dist": {
  1241. "type": "zip",
  1242. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  1243. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  1244. "shasum": "",
  1245. "mirrors": [
  1246. {
  1247. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1248. "preferred": true
  1249. }
  1250. ]
  1251. },
  1252. "require": {
  1253. "php": "^7.2.5 || ^8.0"
  1254. },
  1255. "require-dev": {
  1256. "bamarni/composer-bin-plugin": "^1.8.2",
  1257. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1258. },
  1259. "type": "library",
  1260. "extra": {
  1261. "bamarni-bin": {
  1262. "bin-links": true,
  1263. "forward-command": false
  1264. }
  1265. },
  1266. "autoload": {
  1267. "psr-4": {
  1268. "GuzzleHttp\\Promise\\": "src/"
  1269. }
  1270. },
  1271. "notification-url": "https://packagist.org/downloads/",
  1272. "license": [
  1273. "MIT"
  1274. ],
  1275. "authors": [
  1276. {
  1277. "name": "Graham Campbell",
  1278. "email": "hello@gjcampbell.co.uk",
  1279. "homepage": "https://github.com/GrahamCampbell"
  1280. },
  1281. {
  1282. "name": "Michael Dowling",
  1283. "email": "mtdowling@gmail.com",
  1284. "homepage": "https://github.com/mtdowling"
  1285. },
  1286. {
  1287. "name": "Tobias Nyholm",
  1288. "email": "tobias.nyholm@gmail.com",
  1289. "homepage": "https://github.com/Nyholm"
  1290. },
  1291. {
  1292. "name": "Tobias Schultze",
  1293. "email": "webmaster@tubo-world.de",
  1294. "homepage": "https://github.com/Tobion"
  1295. }
  1296. ],
  1297. "description": "Guzzle promises library",
  1298. "keywords": [
  1299. "promise"
  1300. ],
  1301. "support": {
  1302. "issues": "https://github.com/guzzle/promises/issues",
  1303. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  1304. },
  1305. "funding": [
  1306. {
  1307. "url": "https://github.com/GrahamCampbell",
  1308. "type": "github"
  1309. },
  1310. {
  1311. "url": "https://github.com/Nyholm",
  1312. "type": "github"
  1313. },
  1314. {
  1315. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1316. "type": "tidelift"
  1317. }
  1318. ],
  1319. "time": "2025-08-22T14:34:08+00:00"
  1320. },
  1321. {
  1322. "name": "guzzlehttp/psr7",
  1323. "version": "2.8.0",
  1324. "source": {
  1325. "type": "git",
  1326. "url": "https://github.com/guzzle/psr7.git",
  1327. "reference": "21dc724a0583619cd1652f673303492272778051"
  1328. },
  1329. "dist": {
  1330. "type": "zip",
  1331. "url": "https://api.github.com/repos/guzzle/psr7/zipball/21dc724a0583619cd1652f673303492272778051",
  1332. "reference": "21dc724a0583619cd1652f673303492272778051",
  1333. "shasum": "",
  1334. "mirrors": [
  1335. {
  1336. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1337. "preferred": true
  1338. }
  1339. ]
  1340. },
  1341. "require": {
  1342. "php": "^7.2.5 || ^8.0",
  1343. "psr/http-factory": "^1.0",
  1344. "psr/http-message": "^1.1 || ^2.0",
  1345. "ralouphie/getallheaders": "^3.0"
  1346. },
  1347. "provide": {
  1348. "psr/http-factory-implementation": "1.0",
  1349. "psr/http-message-implementation": "1.0"
  1350. },
  1351. "require-dev": {
  1352. "bamarni/composer-bin-plugin": "^1.8.2",
  1353. "http-interop/http-factory-tests": "0.9.0",
  1354. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1355. },
  1356. "suggest": {
  1357. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1358. },
  1359. "type": "library",
  1360. "extra": {
  1361. "bamarni-bin": {
  1362. "bin-links": true,
  1363. "forward-command": false
  1364. }
  1365. },
  1366. "autoload": {
  1367. "psr-4": {
  1368. "GuzzleHttp\\Psr7\\": "src/"
  1369. }
  1370. },
  1371. "notification-url": "https://packagist.org/downloads/",
  1372. "license": [
  1373. "MIT"
  1374. ],
  1375. "authors": [
  1376. {
  1377. "name": "Graham Campbell",
  1378. "email": "hello@gjcampbell.co.uk",
  1379. "homepage": "https://github.com/GrahamCampbell"
  1380. },
  1381. {
  1382. "name": "Michael Dowling",
  1383. "email": "mtdowling@gmail.com",
  1384. "homepage": "https://github.com/mtdowling"
  1385. },
  1386. {
  1387. "name": "George Mponos",
  1388. "email": "gmponos@gmail.com",
  1389. "homepage": "https://github.com/gmponos"
  1390. },
  1391. {
  1392. "name": "Tobias Nyholm",
  1393. "email": "tobias.nyholm@gmail.com",
  1394. "homepage": "https://github.com/Nyholm"
  1395. },
  1396. {
  1397. "name": "Márk Sági-Kazár",
  1398. "email": "mark.sagikazar@gmail.com",
  1399. "homepage": "https://github.com/sagikazarmark"
  1400. },
  1401. {
  1402. "name": "Tobias Schultze",
  1403. "email": "webmaster@tubo-world.de",
  1404. "homepage": "https://github.com/Tobion"
  1405. },
  1406. {
  1407. "name": "Márk Sági-Kazár",
  1408. "email": "mark.sagikazar@gmail.com",
  1409. "homepage": "https://sagikazarmark.hu"
  1410. }
  1411. ],
  1412. "description": "PSR-7 message implementation that also provides common utility methods",
  1413. "keywords": [
  1414. "http",
  1415. "message",
  1416. "psr-7",
  1417. "request",
  1418. "response",
  1419. "stream",
  1420. "uri",
  1421. "url"
  1422. ],
  1423. "support": {
  1424. "issues": "https://github.com/guzzle/psr7/issues",
  1425. "source": "https://github.com/guzzle/psr7/tree/2.8.0"
  1426. },
  1427. "funding": [
  1428. {
  1429. "url": "https://github.com/GrahamCampbell",
  1430. "type": "github"
  1431. },
  1432. {
  1433. "url": "https://github.com/Nyholm",
  1434. "type": "github"
  1435. },
  1436. {
  1437. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1438. "type": "tidelift"
  1439. }
  1440. ],
  1441. "time": "2025-08-23T21:21:41+00:00"
  1442. },
  1443. {
  1444. "name": "guzzlehttp/uri-template",
  1445. "version": "v1.0.5",
  1446. "source": {
  1447. "type": "git",
  1448. "url": "https://github.com/guzzle/uri-template.git",
  1449. "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1"
  1450. },
  1451. "dist": {
  1452. "type": "zip",
  1453. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/4f4bbd4e7172148801e76e3decc1e559bdee34e1",
  1454. "reference": "4f4bbd4e7172148801e76e3decc1e559bdee34e1",
  1455. "shasum": "",
  1456. "mirrors": [
  1457. {
  1458. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1459. "preferred": true
  1460. }
  1461. ]
  1462. },
  1463. "require": {
  1464. "php": "^7.2.5 || ^8.0",
  1465. "symfony/polyfill-php80": "^1.24"
  1466. },
  1467. "require-dev": {
  1468. "bamarni/composer-bin-plugin": "^1.8.2",
  1469. "phpunit/phpunit": "^8.5.44 || ^9.6.25",
  1470. "uri-template/tests": "1.0.0"
  1471. },
  1472. "type": "library",
  1473. "extra": {
  1474. "bamarni-bin": {
  1475. "bin-links": true,
  1476. "forward-command": false
  1477. }
  1478. },
  1479. "autoload": {
  1480. "psr-4": {
  1481. "GuzzleHttp\\UriTemplate\\": "src"
  1482. }
  1483. },
  1484. "notification-url": "https://packagist.org/downloads/",
  1485. "license": [
  1486. "MIT"
  1487. ],
  1488. "authors": [
  1489. {
  1490. "name": "Graham Campbell",
  1491. "email": "hello@gjcampbell.co.uk",
  1492. "homepage": "https://github.com/GrahamCampbell"
  1493. },
  1494. {
  1495. "name": "Michael Dowling",
  1496. "email": "mtdowling@gmail.com",
  1497. "homepage": "https://github.com/mtdowling"
  1498. },
  1499. {
  1500. "name": "George Mponos",
  1501. "email": "gmponos@gmail.com",
  1502. "homepage": "https://github.com/gmponos"
  1503. },
  1504. {
  1505. "name": "Tobias Nyholm",
  1506. "email": "tobias.nyholm@gmail.com",
  1507. "homepage": "https://github.com/Nyholm"
  1508. }
  1509. ],
  1510. "description": "A polyfill class for uri_template of PHP",
  1511. "keywords": [
  1512. "guzzlehttp",
  1513. "uri-template"
  1514. ],
  1515. "support": {
  1516. "issues": "https://github.com/guzzle/uri-template/issues",
  1517. "source": "https://github.com/guzzle/uri-template/tree/v1.0.5"
  1518. },
  1519. "funding": [
  1520. {
  1521. "url": "https://github.com/GrahamCampbell",
  1522. "type": "github"
  1523. },
  1524. {
  1525. "url": "https://github.com/Nyholm",
  1526. "type": "github"
  1527. },
  1528. {
  1529. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1530. "type": "tidelift"
  1531. }
  1532. ],
  1533. "time": "2025-08-22T14:27:06+00:00"
  1534. },
  1535. {
  1536. "name": "intervention/gif",
  1537. "version": "4.2.2",
  1538. "source": {
  1539. "type": "git",
  1540. "url": "https://github.com/Intervention/gif.git",
  1541. "reference": "5999eac6a39aa760fb803bc809e8909ee67b451a"
  1542. },
  1543. "dist": {
  1544. "type": "zip",
  1545. "url": "https://api.github.com/repos/Intervention/gif/zipball/5999eac6a39aa760fb803bc809e8909ee67b451a",
  1546. "reference": "5999eac6a39aa760fb803bc809e8909ee67b451a",
  1547. "shasum": "",
  1548. "mirrors": [
  1549. {
  1550. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1551. "preferred": true
  1552. }
  1553. ]
  1554. },
  1555. "require": {
  1556. "php": "^8.1"
  1557. },
  1558. "require-dev": {
  1559. "phpstan/phpstan": "^2.1",
  1560. "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0",
  1561. "slevomat/coding-standard": "~8.0",
  1562. "squizlabs/php_codesniffer": "^3.8"
  1563. },
  1564. "type": "library",
  1565. "autoload": {
  1566. "psr-4": {
  1567. "Intervention\\Gif\\": "src"
  1568. }
  1569. },
  1570. "notification-url": "https://packagist.org/downloads/",
  1571. "license": [
  1572. "MIT"
  1573. ],
  1574. "authors": [
  1575. {
  1576. "name": "Oliver Vogel",
  1577. "email": "oliver@intervention.io",
  1578. "homepage": "https://intervention.io/"
  1579. }
  1580. ],
  1581. "description": "Native PHP GIF Encoder/Decoder",
  1582. "homepage": "https://github.com/intervention/gif",
  1583. "keywords": [
  1584. "animation",
  1585. "gd",
  1586. "gif",
  1587. "image"
  1588. ],
  1589. "support": {
  1590. "issues": "https://github.com/Intervention/gif/issues",
  1591. "source": "https://github.com/Intervention/gif/tree/4.2.2"
  1592. },
  1593. "funding": [
  1594. {
  1595. "url": "https://paypal.me/interventionio",
  1596. "type": "custom"
  1597. },
  1598. {
  1599. "url": "https://github.com/Intervention",
  1600. "type": "github"
  1601. },
  1602. {
  1603. "url": "https://ko-fi.com/interventionphp",
  1604. "type": "ko_fi"
  1605. }
  1606. ],
  1607. "time": "2025-03-29T07:46:21+00:00"
  1608. },
  1609. {
  1610. "name": "intervention/image",
  1611. "version": "3.11.1",
  1612. "source": {
  1613. "type": "git",
  1614. "url": "https://github.com/Intervention/image.git",
  1615. "reference": "0f87254688e480fbb521e2a1ac6c11c784ca41af"
  1616. },
  1617. "dist": {
  1618. "type": "zip",
  1619. "url": "https://api.github.com/repos/Intervention/image/zipball/0f87254688e480fbb521e2a1ac6c11c784ca41af",
  1620. "reference": "0f87254688e480fbb521e2a1ac6c11c784ca41af",
  1621. "shasum": "",
  1622. "mirrors": [
  1623. {
  1624. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1625. "preferred": true
  1626. }
  1627. ]
  1628. },
  1629. "require": {
  1630. "ext-mbstring": "*",
  1631. "intervention/gif": "^4.2",
  1632. "php": "^8.1"
  1633. },
  1634. "require-dev": {
  1635. "mockery/mockery": "^1.6",
  1636. "phpstan/phpstan": "^2.1",
  1637. "phpunit/phpunit": "^10.0 || ^11.0",
  1638. "slevomat/coding-standard": "~8.0",
  1639. "squizlabs/php_codesniffer": "^3.8"
  1640. },
  1641. "suggest": {
  1642. "ext-exif": "Recommended to be able to read EXIF data properly."
  1643. },
  1644. "type": "library",
  1645. "autoload": {
  1646. "psr-4": {
  1647. "Intervention\\Image\\": "src"
  1648. }
  1649. },
  1650. "notification-url": "https://packagist.org/downloads/",
  1651. "license": [
  1652. "MIT"
  1653. ],
  1654. "authors": [
  1655. {
  1656. "name": "Oliver Vogel",
  1657. "email": "oliver@intervention.io",
  1658. "homepage": "https://intervention.io/"
  1659. }
  1660. ],
  1661. "description": "PHP image manipulation",
  1662. "homepage": "https://image.intervention.io/",
  1663. "keywords": [
  1664. "gd",
  1665. "image",
  1666. "imagick",
  1667. "resize",
  1668. "thumbnail",
  1669. "watermark"
  1670. ],
  1671. "support": {
  1672. "issues": "https://github.com/Intervention/image/issues",
  1673. "source": "https://github.com/Intervention/image/tree/3.11.1"
  1674. },
  1675. "funding": [
  1676. {
  1677. "url": "https://paypal.me/interventionio",
  1678. "type": "custom"
  1679. },
  1680. {
  1681. "url": "https://github.com/Intervention",
  1682. "type": "github"
  1683. },
  1684. {
  1685. "url": "https://ko-fi.com/interventionphp",
  1686. "type": "ko_fi"
  1687. }
  1688. ],
  1689. "time": "2025-02-01T07:28:26+00:00"
  1690. },
  1691. {
  1692. "name": "laravel-lang/config",
  1693. "version": "1.14.0",
  1694. "source": {
  1695. "type": "git",
  1696. "url": "https://github.com/Laravel-Lang/config.git",
  1697. "reference": "0f6a41a1d5f4bde6ff59fbfd9e349ac64b737c69"
  1698. },
  1699. "dist": {
  1700. "type": "zip",
  1701. "url": "https://api.github.com/repos/Laravel-Lang/config/zipball/0f6a41a1d5f4bde6ff59fbfd9e349ac64b737c69",
  1702. "reference": "0f6a41a1d5f4bde6ff59fbfd9e349ac64b737c69",
  1703. "shasum": "",
  1704. "mirrors": [
  1705. {
  1706. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1707. "preferred": true
  1708. }
  1709. ]
  1710. },
  1711. "require": {
  1712. "archtechx/enums": "^1.0",
  1713. "illuminate/config": "^10.0 || ^11.0 || ^12.0",
  1714. "illuminate/support": "^10.0 || ^11.0 || ^12.0",
  1715. "laravel-lang/locale-list": "^1.5",
  1716. "php": "^8.1"
  1717. },
  1718. "require-dev": {
  1719. "orchestra/testbench": "^8.23 || ^9.1 || ^10.0",
  1720. "pestphp/pest": "^2.34 || ^3.0"
  1721. },
  1722. "type": "library",
  1723. "extra": {
  1724. "laravel": {
  1725. "providers": [
  1726. "LaravelLang\\Config\\ServiceProvider"
  1727. ]
  1728. }
  1729. },
  1730. "autoload": {
  1731. "psr-4": {
  1732. "LaravelLang\\Config\\": "src/"
  1733. }
  1734. },
  1735. "notification-url": "https://packagist.org/downloads/",
  1736. "license": [
  1737. "MIT"
  1738. ],
  1739. "authors": [
  1740. {
  1741. "name": "Andrey Helldar",
  1742. "email": "helldar@dragon-code.pro",
  1743. "homepage": "https://dragon-code.pro"
  1744. },
  1745. {
  1746. "name": "Laravel-Lang Team",
  1747. "homepage": "https://laravel-lang.com"
  1748. }
  1749. ],
  1750. "description": "The Laravel-Lang config package",
  1751. "keywords": [
  1752. "Laravel-lang",
  1753. "Settings",
  1754. "config",
  1755. "lang",
  1756. "languages",
  1757. "laravel",
  1758. "locale",
  1759. "locales",
  1760. "localization",
  1761. "localizations",
  1762. "translation",
  1763. "translations"
  1764. ],
  1765. "support": {
  1766. "issues": "https://github.com/Laravel-Lang/config/issues",
  1767. "source": "https://github.com/Laravel-Lang/config/tree/1.14.0"
  1768. },
  1769. "time": "2025-04-11T07:31:54+00:00"
  1770. },
  1771. {
  1772. "name": "laravel-lang/lang",
  1773. "version": "15.11.4",
  1774. "source": {
  1775. "type": "git",
  1776. "url": "https://github.com/Laravel-Lang/lang.git",
  1777. "reference": "b007c3ebff827abd207e3043775e5d7e980b461b"
  1778. },
  1779. "dist": {
  1780. "type": "zip",
  1781. "url": "https://api.github.com/repos/Laravel-Lang/lang/zipball/b007c3ebff827abd207e3043775e5d7e980b461b",
  1782. "reference": "b007c3ebff827abd207e3043775e5d7e980b461b",
  1783. "shasum": "",
  1784. "mirrors": [
  1785. {
  1786. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1787. "preferred": true
  1788. }
  1789. ]
  1790. },
  1791. "require": {
  1792. "ext-json": "*",
  1793. "laravel-lang/publisher": "^16.0",
  1794. "php": "^8.2"
  1795. },
  1796. "conflict": {
  1797. "laravel/framework": "<11.0.7"
  1798. },
  1799. "require-dev": {
  1800. "laravel-lang/status-generator": "^2.11",
  1801. "phpunit/phpunit": "^10.0",
  1802. "symfony/var-dumper": "^7.0"
  1803. },
  1804. "type": "library",
  1805. "extra": {
  1806. "laravel": {
  1807. "providers": [
  1808. "LaravelLang\\Lang\\ServiceProvider"
  1809. ]
  1810. }
  1811. },
  1812. "autoload": {
  1813. "psr-4": {
  1814. "LaravelLang\\Lang\\": "src/"
  1815. }
  1816. },
  1817. "notification-url": "https://packagist.org/downloads/",
  1818. "license": [
  1819. "MIT"
  1820. ],
  1821. "authors": [
  1822. {
  1823. "name": "Laravel-Lang Team",
  1824. "homepage": "https://github.com/Laravel-Lang"
  1825. }
  1826. ],
  1827. "description": "List of 126 languages for Laravel Framework, Laravel Jetstream, Laravel Fortify, Laravel Breeze, Laravel Cashier, Laravel Nova, Laravel Spark and Laravel UI",
  1828. "keywords": [
  1829. "lang",
  1830. "languages",
  1831. "laravel",
  1832. "lpm"
  1833. ],
  1834. "support": {
  1835. "issues": "https://github.com/Laravel-Lang/lang/issues",
  1836. "source": "https://github.com/Laravel-Lang/lang"
  1837. },
  1838. "time": "2024-12-31T10:16:50+00:00"
  1839. },
  1840. {
  1841. "name": "laravel-lang/locale-list",
  1842. "version": "1.5.0",
  1843. "source": {
  1844. "type": "git",
  1845. "url": "https://github.com/Laravel-Lang/locale-list.git",
  1846. "reference": "a214a3d49b1bcd1d5111cc1bb9653f0280f223d3"
  1847. },
  1848. "dist": {
  1849. "type": "zip",
  1850. "url": "https://api.github.com/repos/Laravel-Lang/locale-list/zipball/a214a3d49b1bcd1d5111cc1bb9653f0280f223d3",
  1851. "reference": "a214a3d49b1bcd1d5111cc1bb9653f0280f223d3",
  1852. "shasum": "",
  1853. "mirrors": [
  1854. {
  1855. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1856. "preferred": true
  1857. }
  1858. ]
  1859. },
  1860. "require": {
  1861. "archtechx/enums": "^0.3.2 || ^1.0",
  1862. "php": "^8.1"
  1863. },
  1864. "type": "library",
  1865. "autoload": {
  1866. "psr-4": {
  1867. "LaravelLang\\LocaleList\\": "src/"
  1868. }
  1869. },
  1870. "notification-url": "https://packagist.org/downloads/",
  1871. "license": [
  1872. "MIT"
  1873. ],
  1874. "authors": [
  1875. {
  1876. "name": "Andrey Helldar",
  1877. "email": "helldar@dragon-code.pro",
  1878. "homepage": "https://dragon-code.pro"
  1879. },
  1880. {
  1881. "name": "Laravel-Lang Team",
  1882. "homepage": "https://laravel-lang.com"
  1883. }
  1884. ],
  1885. "description": "List of localizations available in Laravel Lang projects",
  1886. "keywords": [
  1887. "Laravel-lang",
  1888. "lang",
  1889. "languages",
  1890. "laravel",
  1891. "locale",
  1892. "locales",
  1893. "localization",
  1894. "translation",
  1895. "translations"
  1896. ],
  1897. "support": {
  1898. "issues": "https://github.com/Laravel-Lang/locale-list/issues",
  1899. "source": "https://github.com/Laravel-Lang/locale-list"
  1900. },
  1901. "time": "2025-02-24T19:11:00+00:00"
  1902. },
  1903. {
  1904. "name": "laravel-lang/locales",
  1905. "version": "2.9.2",
  1906. "source": {
  1907. "type": "git",
  1908. "url": "https://github.com/Laravel-Lang/locales.git",
  1909. "reference": "e7914ccfb91432ebebacf46697b573a330d702c7"
  1910. },
  1911. "dist": {
  1912. "type": "zip",
  1913. "url": "https://api.github.com/repos/Laravel-Lang/locales/zipball/e7914ccfb91432ebebacf46697b573a330d702c7",
  1914. "reference": "e7914ccfb91432ebebacf46697b573a330d702c7",
  1915. "shasum": "",
  1916. "mirrors": [
  1917. {
  1918. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1919. "preferred": true
  1920. }
  1921. ]
  1922. },
  1923. "require": {
  1924. "archtechx/enums": "^0.3.2 || ^1.0",
  1925. "dragon-code/support": "^6.11.3",
  1926. "ext-json": "*",
  1927. "illuminate/collections": "^10.0 || ^11.0",
  1928. "laravel-lang/config": "^1.0.2",
  1929. "laravel-lang/locale-list": "^1.2",
  1930. "laravel-lang/native-country-names": "^1.3",
  1931. "laravel-lang/native-currency-names": "^1.3",
  1932. "laravel-lang/native-locale-names": "^2.2",
  1933. "php": "^8.1"
  1934. },
  1935. "require-dev": {
  1936. "orchestra/testbench": "^8.0 || ^9.0",
  1937. "pestphp/pest": "^2.24.1",
  1938. "symfony/var-dumper": "^6.0 || ^7.0"
  1939. },
  1940. "type": "library",
  1941. "extra": {
  1942. "laravel": {
  1943. "providers": [
  1944. "LaravelLang\\Locales\\ServiceProvider"
  1945. ]
  1946. }
  1947. },
  1948. "autoload": {
  1949. "psr-4": {
  1950. "LaravelLang\\Locales\\": "src/"
  1951. }
  1952. },
  1953. "notification-url": "https://packagist.org/downloads/",
  1954. "license": [
  1955. "MIT"
  1956. ],
  1957. "authors": [
  1958. {
  1959. "name": "Andrey Helldar",
  1960. "email": "helldar@dragon-code.pro"
  1961. },
  1962. {
  1963. "name": "Laravel-Lang Team",
  1964. "homepage": "https://laravel-lang.com"
  1965. }
  1966. ],
  1967. "description": "Basic functionality for working with localizations",
  1968. "keywords": [
  1969. "laravel",
  1970. "locale",
  1971. "locales",
  1972. "localization",
  1973. "translation",
  1974. "translations"
  1975. ],
  1976. "support": {
  1977. "issues": "https://github.com/Laravel-Lang/locales/issues",
  1978. "source": "https://github.com/Laravel-Lang/locales"
  1979. },
  1980. "time": "2024-06-24T09:56:41+00:00"
  1981. },
  1982. {
  1983. "name": "laravel-lang/native-country-names",
  1984. "version": "1.6.0",
  1985. "source": {
  1986. "type": "git",
  1987. "url": "https://github.com/Laravel-Lang/native-country-names.git",
  1988. "reference": "22a9d18d9094fdf0b3384f37feefd3c7d91f1db9"
  1989. },
  1990. "dist": {
  1991. "type": "zip",
  1992. "url": "https://api.github.com/repos/Laravel-Lang/native-country-names/zipball/22a9d18d9094fdf0b3384f37feefd3c7d91f1db9",
  1993. "reference": "22a9d18d9094fdf0b3384f37feefd3c7d91f1db9",
  1994. "shasum": "",
  1995. "mirrors": [
  1996. {
  1997. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  1998. "preferred": true
  1999. }
  2000. ]
  2001. },
  2002. "require": {
  2003. "dragon-code/support": "^6.11",
  2004. "ext-json": "*",
  2005. "illuminate/collections": "^10.0 || ^11.0 || ^12.0",
  2006. "php": "^8.1"
  2007. },
  2008. "require-dev": {
  2009. "illuminate/support": "^10.0 || ^11.0 || ^12.0",
  2010. "laravel-lang/locale-list": "^1.5",
  2011. "pestphp/pest": "^2.24.3 || ^3.0",
  2012. "punic/punic": "^3.8",
  2013. "symfony/console": "^6.3 || ^7.0",
  2014. "symfony/process": "^6.3 || ^7.0",
  2015. "symfony/var-dumper": "^6.3 || ^7.0",
  2016. "vlucas/phpdotenv": "^5.6"
  2017. },
  2018. "type": "library",
  2019. "autoload": {
  2020. "psr-4": {
  2021. "LaravelLang\\NativeCountryNames\\": "src/"
  2022. }
  2023. },
  2024. "notification-url": "https://packagist.org/downloads/",
  2025. "license": [
  2026. "MIT"
  2027. ],
  2028. "authors": [
  2029. {
  2030. "name": "Andrey Helldar",
  2031. "email": "helldar@dragon-code.pro"
  2032. },
  2033. {
  2034. "name": "Laravel-Lang Team",
  2035. "homepage": "https://laravel-lang.com"
  2036. }
  2037. ],
  2038. "description": "The project contains native translations of country names",
  2039. "keywords": [
  2040. "Laravel-lang",
  2041. "countries",
  2042. "country",
  2043. "lang",
  2044. "languages",
  2045. "laravel",
  2046. "locale",
  2047. "locales",
  2048. "localization",
  2049. "territories",
  2050. "territory",
  2051. "translation",
  2052. "translations"
  2053. ],
  2054. "support": {
  2055. "issues": "https://github.com/Laravel-Lang/native-country-names/issues",
  2056. "source": "https://github.com/Laravel-Lang/native-country-names"
  2057. },
  2058. "time": "2025-11-18T07:59:31+00:00"
  2059. },
  2060. {
  2061. "name": "laravel-lang/native-currency-names",
  2062. "version": "1.7.0",
  2063. "source": {
  2064. "type": "git",
  2065. "url": "https://github.com/Laravel-Lang/native-currency-names.git",
  2066. "reference": "cc871b6d2574b4397728b78e4522e6cfd53cdb79"
  2067. },
  2068. "dist": {
  2069. "type": "zip",
  2070. "url": "https://api.github.com/repos/Laravel-Lang/native-currency-names/zipball/cc871b6d2574b4397728b78e4522e6cfd53cdb79",
  2071. "reference": "cc871b6d2574b4397728b78e4522e6cfd53cdb79",
  2072. "shasum": "",
  2073. "mirrors": [
  2074. {
  2075. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2076. "preferred": true
  2077. }
  2078. ]
  2079. },
  2080. "require": {
  2081. "dragon-code/support": "^6.11",
  2082. "ext-json": "*",
  2083. "illuminate/collections": "^10.0 || ^11.0 || ^12.0",
  2084. "php": "^8.1"
  2085. },
  2086. "require-dev": {
  2087. "illuminate/support": "^10.0 || ^11.0 || ^12.0",
  2088. "laravel-lang/locale-list": "^1.2",
  2089. "pestphp/pest": "^2.24.3 || ^3.0",
  2090. "punic/punic": "^3.8",
  2091. "symfony/console": "^6.3 || ^7.0",
  2092. "symfony/process": "^6.3 || ^7.0",
  2093. "symfony/var-dumper": "^6.3 || ^7.0",
  2094. "vlucas/phpdotenv": "^5.6"
  2095. },
  2096. "type": "library",
  2097. "autoload": {
  2098. "psr-4": {
  2099. "LaravelLang\\NativeCurrencyNames\\": "src/"
  2100. }
  2101. },
  2102. "notification-url": "https://packagist.org/downloads/",
  2103. "license": [
  2104. "MIT"
  2105. ],
  2106. "authors": [
  2107. {
  2108. "name": "Andrey Helldar",
  2109. "email": "helldar@dragon-code.pro"
  2110. },
  2111. {
  2112. "name": "Laravel-Lang Team",
  2113. "homepage": "https://laravel-lang.com"
  2114. }
  2115. ],
  2116. "description": "The project contains native translations of currency names",
  2117. "keywords": [
  2118. "Laravel-lang",
  2119. "currency",
  2120. "lang",
  2121. "languages",
  2122. "laravel",
  2123. "locale",
  2124. "locales",
  2125. "localization",
  2126. "translation",
  2127. "translations"
  2128. ],
  2129. "support": {
  2130. "issues": "https://github.com/Laravel-Lang/native-currency-names/issues",
  2131. "source": "https://github.com/Laravel-Lang/native-currency-names"
  2132. },
  2133. "time": "2025-11-18T07:53:26+00:00"
  2134. },
  2135. {
  2136. "name": "laravel-lang/native-locale-names",
  2137. "version": "2.6.1",
  2138. "source": {
  2139. "type": "git",
  2140. "url": "https://github.com/Laravel-Lang/native-locale-names.git",
  2141. "reference": "a5fe634a4db570160dbf3ac68882d281fc88436e"
  2142. },
  2143. "dist": {
  2144. "type": "zip",
  2145. "url": "https://api.github.com/repos/Laravel-Lang/native-locale-names/zipball/a5fe634a4db570160dbf3ac68882d281fc88436e",
  2146. "reference": "a5fe634a4db570160dbf3ac68882d281fc88436e",
  2147. "shasum": "",
  2148. "mirrors": [
  2149. {
  2150. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2151. "preferred": true
  2152. }
  2153. ]
  2154. },
  2155. "require": {
  2156. "dragon-code/support": "^6.11",
  2157. "ext-json": "*",
  2158. "php": "^8.1"
  2159. },
  2160. "require-dev": {
  2161. "illuminate/support": "^10.31 || ^11.0 || ^12.0",
  2162. "laravel-lang/locale-list": "^1.2",
  2163. "pestphp/pest": "^2.24.3 || ^3.0",
  2164. "punic/punic": "^3.8",
  2165. "symfony/console": "^6.3 || ^7.0",
  2166. "symfony/process": "^6.3 || ^7.0",
  2167. "symfony/var-dumper": "^6.3 || ^7.0"
  2168. },
  2169. "type": "library",
  2170. "autoload": {
  2171. "psr-4": {
  2172. "LaravelLang\\NativeLocaleNames\\": "src/"
  2173. }
  2174. },
  2175. "notification-url": "https://packagist.org/downloads/",
  2176. "license": [
  2177. "MIT"
  2178. ],
  2179. "authors": [
  2180. {
  2181. "name": "Andrey Helldar",
  2182. "email": "helldar@dragon-code.pro"
  2183. },
  2184. {
  2185. "name": "Laravel-Lang Team",
  2186. "homepage": "https://laravel-lang.com"
  2187. }
  2188. ],
  2189. "description": "The project contains native translations of locale names",
  2190. "keywords": [
  2191. "Laravel-lang",
  2192. "lang",
  2193. "languages",
  2194. "laravel",
  2195. "locale",
  2196. "locales",
  2197. "localization",
  2198. "translation",
  2199. "translations"
  2200. ],
  2201. "support": {
  2202. "issues": "https://github.com/Laravel-Lang/native-locale-names/issues",
  2203. "source": "https://github.com/Laravel-Lang/native-locale-names"
  2204. },
  2205. "time": "2025-11-18T08:10:42+00:00"
  2206. },
  2207. {
  2208. "name": "laravel-lang/publisher",
  2209. "version": "16.4.1",
  2210. "source": {
  2211. "type": "git",
  2212. "url": "https://github.com/Laravel-Lang/publisher.git",
  2213. "reference": "fc33816edbb13e9fd032243afd565efec265926d"
  2214. },
  2215. "dist": {
  2216. "type": "zip",
  2217. "url": "https://api.github.com/repos/Laravel-Lang/publisher/zipball/fc33816edbb13e9fd032243afd565efec265926d",
  2218. "reference": "fc33816edbb13e9fd032243afd565efec265926d",
  2219. "shasum": "",
  2220. "mirrors": [
  2221. {
  2222. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2223. "preferred": true
  2224. }
  2225. ]
  2226. },
  2227. "require": {
  2228. "composer/semver": "^3.4",
  2229. "dragon-code/pretty-array": "^4.1",
  2230. "dragon-code/support": "^6.11.3",
  2231. "ext-json": "*",
  2232. "illuminate/collections": "^10.0 || ^11.0",
  2233. "illuminate/console": "^10.0 || ^11.0",
  2234. "illuminate/support": "^10.0 || ^11.0",
  2235. "laravel-lang/config": "^1.0",
  2236. "laravel-lang/locales": "^2.3",
  2237. "league/commonmark": "^2.4.1",
  2238. "league/config": "^1.2",
  2239. "php": "^8.1"
  2240. },
  2241. "conflict": {
  2242. "laravel-lang/attributes": "<2.0",
  2243. "laravel-lang/http-statuses": "<3.0",
  2244. "laravel-lang/lang": "<11.0"
  2245. },
  2246. "require-dev": {
  2247. "laravel-lang/json-fallback": "^2.0",
  2248. "orchestra/testbench": "^8.14 || ^9.0",
  2249. "phpunit/phpunit": "^10.4.2",
  2250. "symfony/var-dumper": "^6.3.6 || ^7.0"
  2251. },
  2252. "type": "library",
  2253. "extra": {
  2254. "laravel": {
  2255. "providers": [
  2256. "LaravelLang\\Publisher\\ServiceProvider"
  2257. ]
  2258. }
  2259. },
  2260. "autoload": {
  2261. "psr-4": {
  2262. "LaravelLang\\Publisher\\": "src/"
  2263. }
  2264. },
  2265. "notification-url": "https://packagist.org/downloads/",
  2266. "license": [
  2267. "MIT"
  2268. ],
  2269. "authors": [
  2270. {
  2271. "name": "Andrey Helldar",
  2272. "email": "helldar@dragon-code.pro"
  2273. },
  2274. {
  2275. "name": "Laravel-Lang Team",
  2276. "homepage": "https://laravel-lang.com"
  2277. }
  2278. ],
  2279. "description": "Publisher lang files for the Laravel and Lumen Frameworks, Jetstream, Fortify, Cashier, Spark and Nova from Laravel-Lang/lang",
  2280. "keywords": [
  2281. "Laravel-lang",
  2282. "breeze",
  2283. "cashier",
  2284. "fortify",
  2285. "framework",
  2286. "i18n",
  2287. "jetstream",
  2288. "lang",
  2289. "languages",
  2290. "laravel",
  2291. "locale",
  2292. "locales",
  2293. "localization",
  2294. "localizations",
  2295. "lpm",
  2296. "lumen",
  2297. "nova",
  2298. "publisher",
  2299. "spark",
  2300. "trans",
  2301. "translation",
  2302. "translations",
  2303. "validations"
  2304. ],
  2305. "support": {
  2306. "issues": "https://github.com/Laravel-Lang/publisher/issues",
  2307. "source": "https://github.com/Laravel-Lang/publisher"
  2308. },
  2309. "time": "2025-01-17T10:45:02+00:00"
  2310. },
  2311. {
  2312. "name": "laravel/framework",
  2313. "version": "v11.33.2",
  2314. "source": {
  2315. "type": "git",
  2316. "url": "https://github.com/laravel/framework.git",
  2317. "reference": "6b9832751cf8eed18b3c73df5071f78f0682aa5d"
  2318. },
  2319. "dist": {
  2320. "type": "zip",
  2321. "url": "https://api.github.com/repos/laravel/framework/zipball/6b9832751cf8eed18b3c73df5071f78f0682aa5d",
  2322. "reference": "6b9832751cf8eed18b3c73df5071f78f0682aa5d",
  2323. "shasum": "",
  2324. "mirrors": [
  2325. {
  2326. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2327. "preferred": true
  2328. }
  2329. ]
  2330. },
  2331. "require": {
  2332. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  2333. "composer-runtime-api": "^2.2",
  2334. "doctrine/inflector": "^2.0.5",
  2335. "dragonmantank/cron-expression": "^3.3.2",
  2336. "egulias/email-validator": "^3.2.1|^4.0",
  2337. "ext-ctype": "*",
  2338. "ext-filter": "*",
  2339. "ext-hash": "*",
  2340. "ext-mbstring": "*",
  2341. "ext-openssl": "*",
  2342. "ext-session": "*",
  2343. "ext-tokenizer": "*",
  2344. "fruitcake/php-cors": "^1.3",
  2345. "guzzlehttp/guzzle": "^7.8",
  2346. "guzzlehttp/uri-template": "^1.0",
  2347. "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
  2348. "laravel/serializable-closure": "^1.3|^2.0",
  2349. "league/commonmark": "^2.2.1",
  2350. "league/flysystem": "^3.8.0",
  2351. "monolog/monolog": "^3.0",
  2352. "nesbot/carbon": "^2.72.2|^3.0",
  2353. "nunomaduro/termwind": "^2.0",
  2354. "php": "^8.2",
  2355. "psr/container": "^1.1.1|^2.0.1",
  2356. "psr/log": "^1.0|^2.0|^3.0",
  2357. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2358. "ramsey/uuid": "^4.7",
  2359. "symfony/console": "^7.0",
  2360. "symfony/error-handler": "^7.0",
  2361. "symfony/finder": "^7.0",
  2362. "symfony/http-foundation": "^7.0",
  2363. "symfony/http-kernel": "^7.0",
  2364. "symfony/mailer": "^7.0",
  2365. "symfony/mime": "^7.0",
  2366. "symfony/polyfill-php83": "^1.28",
  2367. "symfony/process": "^7.0",
  2368. "symfony/routing": "^7.0",
  2369. "symfony/uid": "^7.0",
  2370. "symfony/var-dumper": "^7.0",
  2371. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  2372. "vlucas/phpdotenv": "^5.4.1",
  2373. "voku/portable-ascii": "^2.0"
  2374. },
  2375. "conflict": {
  2376. "mockery/mockery": "1.6.8",
  2377. "tightenco/collect": "<5.5.33"
  2378. },
  2379. "provide": {
  2380. "psr/container-implementation": "1.1|2.0",
  2381. "psr/log-implementation": "1.0|2.0|3.0",
  2382. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  2383. },
  2384. "replace": {
  2385. "illuminate/auth": "self.version",
  2386. "illuminate/broadcasting": "self.version",
  2387. "illuminate/bus": "self.version",
  2388. "illuminate/cache": "self.version",
  2389. "illuminate/collections": "self.version",
  2390. "illuminate/concurrency": "self.version",
  2391. "illuminate/conditionable": "self.version",
  2392. "illuminate/config": "self.version",
  2393. "illuminate/console": "self.version",
  2394. "illuminate/container": "self.version",
  2395. "illuminate/contracts": "self.version",
  2396. "illuminate/cookie": "self.version",
  2397. "illuminate/database": "self.version",
  2398. "illuminate/encryption": "self.version",
  2399. "illuminate/events": "self.version",
  2400. "illuminate/filesystem": "self.version",
  2401. "illuminate/hashing": "self.version",
  2402. "illuminate/http": "self.version",
  2403. "illuminate/log": "self.version",
  2404. "illuminate/macroable": "self.version",
  2405. "illuminate/mail": "self.version",
  2406. "illuminate/notifications": "self.version",
  2407. "illuminate/pagination": "self.version",
  2408. "illuminate/pipeline": "self.version",
  2409. "illuminate/process": "self.version",
  2410. "illuminate/queue": "self.version",
  2411. "illuminate/redis": "self.version",
  2412. "illuminate/routing": "self.version",
  2413. "illuminate/session": "self.version",
  2414. "illuminate/support": "self.version",
  2415. "illuminate/testing": "self.version",
  2416. "illuminate/translation": "self.version",
  2417. "illuminate/validation": "self.version",
  2418. "illuminate/view": "self.version",
  2419. "spatie/once": "*"
  2420. },
  2421. "require-dev": {
  2422. "ably/ably-php": "^1.0",
  2423. "aws/aws-sdk-php": "^3.235.5",
  2424. "ext-gmp": "*",
  2425. "fakerphp/faker": "^1.23",
  2426. "league/flysystem-aws-s3-v3": "^3.0",
  2427. "league/flysystem-ftp": "^3.0",
  2428. "league/flysystem-path-prefixing": "^3.3",
  2429. "league/flysystem-read-only": "^3.3",
  2430. "league/flysystem-sftp-v3": "^3.0",
  2431. "mockery/mockery": "^1.6.10",
  2432. "nyholm/psr7": "^1.2",
  2433. "orchestra/testbench-core": "^9.6",
  2434. "pda/pheanstalk": "^5.0",
  2435. "phpstan/phpstan": "^1.11.5",
  2436. "phpunit/phpunit": "^10.5|^11.0",
  2437. "predis/predis": "^2.0.2",
  2438. "resend/resend-php": "^0.10.0",
  2439. "symfony/cache": "^7.0",
  2440. "symfony/http-client": "^7.0",
  2441. "symfony/psr-http-message-bridge": "^7.0"
  2442. },
  2443. "suggest": {
  2444. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2445. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  2446. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  2447. "ext-apcu": "Required to use the APC cache driver.",
  2448. "ext-fileinfo": "Required to use the Filesystem class.",
  2449. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2450. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2451. "ext-memcached": "Required to use the memcache cache driver.",
  2452. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  2453. "ext-pdo": "Required to use all database features.",
  2454. "ext-posix": "Required to use all features of the queue worker.",
  2455. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  2456. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2457. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2458. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2459. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  2460. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  2461. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  2462. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  2463. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  2464. "mockery/mockery": "Required to use mocking (^1.6).",
  2465. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2466. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  2467. "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).",
  2468. "predis/predis": "Required to use the predis connector (^2.0.2).",
  2469. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2470. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  2471. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  2472. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  2473. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  2474. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  2475. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  2476. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  2477. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  2478. },
  2479. "type": "library",
  2480. "extra": {
  2481. "branch-alias": {
  2482. "dev-master": "11.x-dev"
  2483. }
  2484. },
  2485. "autoload": {
  2486. "files": [
  2487. "src/Illuminate/Collections/helpers.php",
  2488. "src/Illuminate/Events/functions.php",
  2489. "src/Illuminate/Filesystem/functions.php",
  2490. "src/Illuminate/Foundation/helpers.php",
  2491. "src/Illuminate/Log/functions.php",
  2492. "src/Illuminate/Support/functions.php",
  2493. "src/Illuminate/Support/helpers.php"
  2494. ],
  2495. "psr-4": {
  2496. "Illuminate\\": "src/Illuminate/",
  2497. "Illuminate\\Support\\": [
  2498. "src/Illuminate/Macroable/",
  2499. "src/Illuminate/Collections/",
  2500. "src/Illuminate/Conditionable/"
  2501. ]
  2502. }
  2503. },
  2504. "notification-url": "https://packagist.org/downloads/",
  2505. "license": [
  2506. "MIT"
  2507. ],
  2508. "authors": [
  2509. {
  2510. "name": "Taylor Otwell",
  2511. "email": "taylor@laravel.com"
  2512. }
  2513. ],
  2514. "description": "The Laravel Framework.",
  2515. "homepage": "https://laravel.com",
  2516. "keywords": [
  2517. "framework",
  2518. "laravel"
  2519. ],
  2520. "support": {
  2521. "issues": "https://github.com/laravel/framework/issues",
  2522. "source": "https://github.com/laravel/framework"
  2523. },
  2524. "time": "2024-11-19T22:47:13+00:00"
  2525. },
  2526. {
  2527. "name": "laravel/prompts",
  2528. "version": "v0.3.8",
  2529. "source": {
  2530. "type": "git",
  2531. "url": "https://github.com/laravel/prompts.git",
  2532. "reference": "096748cdfb81988f60090bbb839ce3205ace0d35"
  2533. },
  2534. "dist": {
  2535. "type": "zip",
  2536. "url": "https://api.github.com/repos/laravel/prompts/zipball/096748cdfb81988f60090bbb839ce3205ace0d35",
  2537. "reference": "096748cdfb81988f60090bbb839ce3205ace0d35",
  2538. "shasum": "",
  2539. "mirrors": [
  2540. {
  2541. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2542. "preferred": true
  2543. }
  2544. ]
  2545. },
  2546. "require": {
  2547. "composer-runtime-api": "^2.2",
  2548. "ext-mbstring": "*",
  2549. "php": "^8.1",
  2550. "symfony/console": "^6.2|^7.0"
  2551. },
  2552. "conflict": {
  2553. "illuminate/console": ">=10.17.0 <10.25.0",
  2554. "laravel/framework": ">=10.17.0 <10.25.0"
  2555. },
  2556. "require-dev": {
  2557. "illuminate/collections": "^10.0|^11.0|^12.0",
  2558. "mockery/mockery": "^1.5",
  2559. "pestphp/pest": "^2.3|^3.4|^4.0",
  2560. "phpstan/phpstan": "^1.12.28",
  2561. "phpstan/phpstan-mockery": "^1.1.3"
  2562. },
  2563. "suggest": {
  2564. "ext-pcntl": "Required for the spinner to be animated."
  2565. },
  2566. "type": "library",
  2567. "extra": {
  2568. "branch-alias": {
  2569. "dev-main": "0.3.x-dev"
  2570. }
  2571. },
  2572. "autoload": {
  2573. "files": [
  2574. "src/helpers.php"
  2575. ],
  2576. "psr-4": {
  2577. "Laravel\\Prompts\\": "src/"
  2578. }
  2579. },
  2580. "notification-url": "https://packagist.org/downloads/",
  2581. "license": [
  2582. "MIT"
  2583. ],
  2584. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  2585. "support": {
  2586. "issues": "https://github.com/laravel/prompts/issues",
  2587. "source": "https://github.com/laravel/prompts/tree/v0.3.8"
  2588. },
  2589. "time": "2025-11-21T20:52:52+00:00"
  2590. },
  2591. {
  2592. "name": "laravel/serializable-closure",
  2593. "version": "v2.0.7",
  2594. "source": {
  2595. "type": "git",
  2596. "url": "https://github.com/laravel/serializable-closure.git",
  2597. "reference": "cb291e4c998ac50637c7eeb58189c14f5de5b9dd"
  2598. },
  2599. "dist": {
  2600. "type": "zip",
  2601. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/cb291e4c998ac50637c7eeb58189c14f5de5b9dd",
  2602. "reference": "cb291e4c998ac50637c7eeb58189c14f5de5b9dd",
  2603. "shasum": "",
  2604. "mirrors": [
  2605. {
  2606. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2607. "preferred": true
  2608. }
  2609. ]
  2610. },
  2611. "require": {
  2612. "php": "^8.1"
  2613. },
  2614. "require-dev": {
  2615. "illuminate/support": "^10.0|^11.0|^12.0",
  2616. "nesbot/carbon": "^2.67|^3.0",
  2617. "pestphp/pest": "^2.36|^3.0|^4.0",
  2618. "phpstan/phpstan": "^2.0",
  2619. "symfony/var-dumper": "^6.2.0|^7.0.0"
  2620. },
  2621. "type": "library",
  2622. "extra": {
  2623. "branch-alias": {
  2624. "dev-master": "2.x-dev"
  2625. }
  2626. },
  2627. "autoload": {
  2628. "psr-4": {
  2629. "Laravel\\SerializableClosure\\": "src/"
  2630. }
  2631. },
  2632. "notification-url": "https://packagist.org/downloads/",
  2633. "license": [
  2634. "MIT"
  2635. ],
  2636. "authors": [
  2637. {
  2638. "name": "Taylor Otwell",
  2639. "email": "taylor@laravel.com"
  2640. },
  2641. {
  2642. "name": "Nuno Maduro",
  2643. "email": "nuno@laravel.com"
  2644. }
  2645. ],
  2646. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2647. "keywords": [
  2648. "closure",
  2649. "laravel",
  2650. "serializable"
  2651. ],
  2652. "support": {
  2653. "issues": "https://github.com/laravel/serializable-closure/issues",
  2654. "source": "https://github.com/laravel/serializable-closure"
  2655. },
  2656. "time": "2025-11-21T20:52:36+00:00"
  2657. },
  2658. {
  2659. "name": "laravel/tinker",
  2660. "version": "v2.10.0",
  2661. "source": {
  2662. "type": "git",
  2663. "url": "https://github.com/laravel/tinker.git",
  2664. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5"
  2665. },
  2666. "dist": {
  2667. "type": "zip",
  2668. "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2669. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  2670. "shasum": "",
  2671. "mirrors": [
  2672. {
  2673. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2674. "preferred": true
  2675. }
  2676. ]
  2677. },
  2678. "require": {
  2679. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2680. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2681. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  2682. "php": "^7.2.5|^8.0",
  2683. "psy/psysh": "^0.11.1|^0.12.0",
  2684. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2685. },
  2686. "require-dev": {
  2687. "mockery/mockery": "~1.3.3|^1.4.2",
  2688. "phpstan/phpstan": "^1.10",
  2689. "phpunit/phpunit": "^8.5.8|^9.3.3"
  2690. },
  2691. "suggest": {
  2692. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  2693. },
  2694. "type": "library",
  2695. "extra": {
  2696. "laravel": {
  2697. "providers": [
  2698. "Laravel\\Tinker\\TinkerServiceProvider"
  2699. ]
  2700. }
  2701. },
  2702. "autoload": {
  2703. "psr-4": {
  2704. "Laravel\\Tinker\\": "src/"
  2705. }
  2706. },
  2707. "notification-url": "https://packagist.org/downloads/",
  2708. "license": [
  2709. "MIT"
  2710. ],
  2711. "authors": [
  2712. {
  2713. "name": "Taylor Otwell",
  2714. "email": "taylor@laravel.com"
  2715. }
  2716. ],
  2717. "description": "Powerful REPL for the Laravel framework.",
  2718. "keywords": [
  2719. "REPL",
  2720. "Tinker",
  2721. "laravel",
  2722. "psysh"
  2723. ],
  2724. "support": {
  2725. "issues": "https://github.com/laravel/tinker/issues",
  2726. "source": "https://github.com/laravel/tinker/tree/v2.10.0"
  2727. },
  2728. "time": "2024-09-23T13:32:56+00:00"
  2729. },
  2730. {
  2731. "name": "lcobucci/clock",
  2732. "version": "2.3.0",
  2733. "source": {
  2734. "type": "git",
  2735. "url": "https://github.com/lcobucci/clock.git",
  2736. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876"
  2737. },
  2738. "dist": {
  2739. "type": "zip",
  2740. "url": "https://api.github.com/repos/lcobucci/clock/zipball/c7aadcd6fd97ed9e199114269c0be3f335e38876",
  2741. "reference": "c7aadcd6fd97ed9e199114269c0be3f335e38876",
  2742. "shasum": "",
  2743. "mirrors": [
  2744. {
  2745. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2746. "preferred": true
  2747. }
  2748. ]
  2749. },
  2750. "require": {
  2751. "php": "~8.1.0 || ~8.2.0",
  2752. "stella-maris/clock": "^0.1.7"
  2753. },
  2754. "provide": {
  2755. "psr/clock-implementation": "1.0"
  2756. },
  2757. "require-dev": {
  2758. "infection/infection": "^0.26",
  2759. "lcobucci/coding-standard": "^9.0",
  2760. "phpstan/extension-installer": "^1.2",
  2761. "phpstan/phpstan": "^1.9.4",
  2762. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  2763. "phpstan/phpstan-phpunit": "^1.3.2",
  2764. "phpstan/phpstan-strict-rules": "^1.4.4",
  2765. "phpunit/phpunit": "^9.5.27"
  2766. },
  2767. "type": "library",
  2768. "autoload": {
  2769. "psr-4": {
  2770. "Lcobucci\\Clock\\": "src"
  2771. }
  2772. },
  2773. "notification-url": "https://packagist.org/downloads/",
  2774. "license": [
  2775. "MIT"
  2776. ],
  2777. "authors": [
  2778. {
  2779. "name": "Luís Cobucci",
  2780. "email": "lcobucci@gmail.com"
  2781. }
  2782. ],
  2783. "description": "Yet another clock abstraction",
  2784. "support": {
  2785. "issues": "https://github.com/lcobucci/clock/issues",
  2786. "source": "https://github.com/lcobucci/clock/tree/2.3.0"
  2787. },
  2788. "funding": [
  2789. {
  2790. "url": "https://github.com/lcobucci",
  2791. "type": "github"
  2792. },
  2793. {
  2794. "url": "https://www.patreon.com/lcobucci",
  2795. "type": "patreon"
  2796. }
  2797. ],
  2798. "time": "2022-12-19T14:38:11+00:00"
  2799. },
  2800. {
  2801. "name": "lcobucci/jwt",
  2802. "version": "4.0.4",
  2803. "source": {
  2804. "type": "git",
  2805. "url": "https://github.com/lcobucci/jwt.git",
  2806. "reference": "55564265fddf810504110bd68ca311932324b0e9"
  2807. },
  2808. "dist": {
  2809. "type": "zip",
  2810. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/55564265fddf810504110bd68ca311932324b0e9",
  2811. "reference": "55564265fddf810504110bd68ca311932324b0e9",
  2812. "shasum": "",
  2813. "mirrors": [
  2814. {
  2815. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2816. "preferred": true
  2817. }
  2818. ]
  2819. },
  2820. "require": {
  2821. "ext-mbstring": "*",
  2822. "ext-openssl": "*",
  2823. "lcobucci/clock": "^2.0",
  2824. "php": "^7.4 || ^8.0"
  2825. },
  2826. "require-dev": {
  2827. "infection/infection": "^0.20",
  2828. "lcobucci/coding-standard": "^6.0",
  2829. "mikey179/vfsstream": "^1.6",
  2830. "phpbench/phpbench": "^0.17",
  2831. "phpstan/extension-installer": "^1.0",
  2832. "phpstan/phpstan": "^0.12",
  2833. "phpstan/phpstan-deprecation-rules": "^0.12",
  2834. "phpstan/phpstan-phpunit": "^0.12",
  2835. "phpstan/phpstan-strict-rules": "^0.12",
  2836. "phpunit/php-invoker": "^3.1",
  2837. "phpunit/phpunit": "^9.4"
  2838. },
  2839. "type": "library",
  2840. "extra": {
  2841. "branch-alias": {
  2842. "dev-master": "4.0-dev"
  2843. }
  2844. },
  2845. "autoload": {
  2846. "psr-4": {
  2847. "Lcobucci\\JWT\\": "src"
  2848. }
  2849. },
  2850. "notification-url": "https://packagist.org/downloads/",
  2851. "license": [
  2852. "BSD-3-Clause"
  2853. ],
  2854. "authors": [
  2855. {
  2856. "name": "Luís Cobucci",
  2857. "email": "lcobucci@gmail.com",
  2858. "role": "Developer"
  2859. }
  2860. ],
  2861. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2862. "keywords": [
  2863. "JWS",
  2864. "jwt"
  2865. ],
  2866. "support": {
  2867. "issues": "https://github.com/lcobucci/jwt/issues",
  2868. "source": "https://github.com/lcobucci/jwt/tree/4.0.4"
  2869. },
  2870. "funding": [
  2871. {
  2872. "url": "https://github.com/lcobucci",
  2873. "type": "github"
  2874. },
  2875. {
  2876. "url": "https://www.patreon.com/lcobucci",
  2877. "type": "patreon"
  2878. }
  2879. ],
  2880. "time": "2021-09-28T19:18:28+00:00"
  2881. },
  2882. {
  2883. "name": "league/commonmark",
  2884. "version": "2.6.0",
  2885. "source": {
  2886. "type": "git",
  2887. "url": "https://github.com/thephpleague/commonmark.git",
  2888. "reference": "d150f911e0079e90ae3c106734c93137c184f932"
  2889. },
  2890. "dist": {
  2891. "type": "zip",
  2892. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d150f911e0079e90ae3c106734c93137c184f932",
  2893. "reference": "d150f911e0079e90ae3c106734c93137c184f932",
  2894. "shasum": "",
  2895. "mirrors": [
  2896. {
  2897. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2898. "preferred": true
  2899. }
  2900. ]
  2901. },
  2902. "require": {
  2903. "ext-mbstring": "*",
  2904. "league/config": "^1.1.1",
  2905. "php": "^7.4 || ^8.0",
  2906. "psr/event-dispatcher": "^1.0",
  2907. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2908. "symfony/polyfill-php80": "^1.16"
  2909. },
  2910. "require-dev": {
  2911. "cebe/markdown": "^1.0",
  2912. "commonmark/cmark": "0.31.1",
  2913. "commonmark/commonmark.js": "0.31.1",
  2914. "composer/package-versions-deprecated": "^1.8",
  2915. "embed/embed": "^4.4",
  2916. "erusev/parsedown": "^1.0",
  2917. "ext-json": "*",
  2918. "github/gfm": "0.29.0",
  2919. "michelf/php-markdown": "^1.4 || ^2.0",
  2920. "nyholm/psr7": "^1.5",
  2921. "phpstan/phpstan": "^1.8.2",
  2922. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2923. "scrutinizer/ocular": "^1.8.1",
  2924. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  2925. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  2926. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  2927. "unleashedtech/php-coding-standard": "^3.1.1",
  2928. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2929. },
  2930. "suggest": {
  2931. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2932. },
  2933. "type": "library",
  2934. "extra": {
  2935. "branch-alias": {
  2936. "dev-main": "2.7-dev"
  2937. }
  2938. },
  2939. "autoload": {
  2940. "psr-4": {
  2941. "League\\CommonMark\\": "src"
  2942. }
  2943. },
  2944. "notification-url": "https://packagist.org/downloads/",
  2945. "license": [
  2946. "BSD-3-Clause"
  2947. ],
  2948. "authors": [
  2949. {
  2950. "name": "Colin O'Dell",
  2951. "email": "colinodell@gmail.com",
  2952. "homepage": "https://www.colinodell.com",
  2953. "role": "Lead Developer"
  2954. }
  2955. ],
  2956. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2957. "homepage": "https://commonmark.thephpleague.com",
  2958. "keywords": [
  2959. "commonmark",
  2960. "flavored",
  2961. "gfm",
  2962. "github",
  2963. "github-flavored",
  2964. "markdown",
  2965. "md",
  2966. "parser"
  2967. ],
  2968. "support": {
  2969. "docs": "https://commonmark.thephpleague.com/",
  2970. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2971. "issues": "https://github.com/thephpleague/commonmark/issues",
  2972. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2973. "source": "https://github.com/thephpleague/commonmark"
  2974. },
  2975. "funding": [
  2976. {
  2977. "url": "https://www.colinodell.com/sponsor",
  2978. "type": "custom"
  2979. },
  2980. {
  2981. "url": "https://www.paypal.me/colinpodell/10.00",
  2982. "type": "custom"
  2983. },
  2984. {
  2985. "url": "https://github.com/colinodell",
  2986. "type": "github"
  2987. },
  2988. {
  2989. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2990. "type": "tidelift"
  2991. }
  2992. ],
  2993. "time": "2024-12-07T15:34:16+00:00"
  2994. },
  2995. {
  2996. "name": "league/config",
  2997. "version": "v1.2.0",
  2998. "source": {
  2999. "type": "git",
  3000. "url": "https://github.com/thephpleague/config.git",
  3001. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3002. },
  3003. "dist": {
  3004. "type": "zip",
  3005. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3006. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3007. "shasum": "",
  3008. "mirrors": [
  3009. {
  3010. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3011. "preferred": true
  3012. }
  3013. ]
  3014. },
  3015. "require": {
  3016. "dflydev/dot-access-data": "^3.0.1",
  3017. "nette/schema": "^1.2",
  3018. "php": "^7.4 || ^8.0"
  3019. },
  3020. "require-dev": {
  3021. "phpstan/phpstan": "^1.8.2",
  3022. "phpunit/phpunit": "^9.5.5",
  3023. "scrutinizer/ocular": "^1.8.1",
  3024. "unleashedtech/php-coding-standard": "^3.1",
  3025. "vimeo/psalm": "^4.7.3"
  3026. },
  3027. "type": "library",
  3028. "extra": {
  3029. "branch-alias": {
  3030. "dev-main": "1.2-dev"
  3031. }
  3032. },
  3033. "autoload": {
  3034. "psr-4": {
  3035. "League\\Config\\": "src"
  3036. }
  3037. },
  3038. "notification-url": "https://packagist.org/downloads/",
  3039. "license": [
  3040. "BSD-3-Clause"
  3041. ],
  3042. "authors": [
  3043. {
  3044. "name": "Colin O'Dell",
  3045. "email": "colinodell@gmail.com",
  3046. "homepage": "https://www.colinodell.com",
  3047. "role": "Lead Developer"
  3048. }
  3049. ],
  3050. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3051. "homepage": "https://config.thephpleague.com",
  3052. "keywords": [
  3053. "array",
  3054. "config",
  3055. "configuration",
  3056. "dot",
  3057. "dot-access",
  3058. "nested",
  3059. "schema"
  3060. ],
  3061. "support": {
  3062. "docs": "https://config.thephpleague.com/",
  3063. "issues": "https://github.com/thephpleague/config/issues",
  3064. "rss": "https://github.com/thephpleague/config/releases.atom",
  3065. "source": "https://github.com/thephpleague/config"
  3066. },
  3067. "funding": [
  3068. {
  3069. "url": "https://www.colinodell.com/sponsor",
  3070. "type": "custom"
  3071. },
  3072. {
  3073. "url": "https://www.paypal.me/colinpodell/10.00",
  3074. "type": "custom"
  3075. },
  3076. {
  3077. "url": "https://github.com/colinodell",
  3078. "type": "github"
  3079. }
  3080. ],
  3081. "time": "2022-12-11T20:36:23+00:00"
  3082. },
  3083. {
  3084. "name": "league/flysystem",
  3085. "version": "3.30.1",
  3086. "source": {
  3087. "type": "git",
  3088. "url": "https://github.com/thephpleague/flysystem.git",
  3089. "reference": "c139fd65c1f796b926f4aec0df37f6caa959a8da"
  3090. },
  3091. "dist": {
  3092. "type": "zip",
  3093. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/c139fd65c1f796b926f4aec0df37f6caa959a8da",
  3094. "reference": "c139fd65c1f796b926f4aec0df37f6caa959a8da",
  3095. "shasum": "",
  3096. "mirrors": [
  3097. {
  3098. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3099. "preferred": true
  3100. }
  3101. ]
  3102. },
  3103. "require": {
  3104. "league/flysystem-local": "^3.0.0",
  3105. "league/mime-type-detection": "^1.0.0",
  3106. "php": "^8.0.2"
  3107. },
  3108. "conflict": {
  3109. "async-aws/core": "<1.19.0",
  3110. "async-aws/s3": "<1.14.0",
  3111. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  3112. "guzzlehttp/guzzle": "<7.0",
  3113. "guzzlehttp/ringphp": "<1.1.1",
  3114. "phpseclib/phpseclib": "3.0.15",
  3115. "symfony/http-client": "<5.2"
  3116. },
  3117. "require-dev": {
  3118. "async-aws/s3": "^1.5 || ^2.0",
  3119. "async-aws/simple-s3": "^1.1 || ^2.0",
  3120. "aws/aws-sdk-php": "^3.295.10",
  3121. "composer/semver": "^3.0",
  3122. "ext-fileinfo": "*",
  3123. "ext-ftp": "*",
  3124. "ext-mongodb": "^1.3|^2",
  3125. "ext-zip": "*",
  3126. "friendsofphp/php-cs-fixer": "^3.5",
  3127. "google/cloud-storage": "^1.23",
  3128. "guzzlehttp/psr7": "^2.6",
  3129. "microsoft/azure-storage-blob": "^1.1",
  3130. "mongodb/mongodb": "^1.2|^2",
  3131. "phpseclib/phpseclib": "^3.0.36",
  3132. "phpstan/phpstan": "^1.10",
  3133. "phpunit/phpunit": "^9.5.11|^10.0",
  3134. "sabre/dav": "^4.6.0"
  3135. },
  3136. "type": "library",
  3137. "autoload": {
  3138. "psr-4": {
  3139. "League\\Flysystem\\": "src"
  3140. }
  3141. },
  3142. "notification-url": "https://packagist.org/downloads/",
  3143. "license": [
  3144. "MIT"
  3145. ],
  3146. "authors": [
  3147. {
  3148. "name": "Frank de Jonge",
  3149. "email": "info@frankdejonge.nl"
  3150. }
  3151. ],
  3152. "description": "File storage abstraction for PHP",
  3153. "keywords": [
  3154. "WebDAV",
  3155. "aws",
  3156. "cloud",
  3157. "file",
  3158. "files",
  3159. "filesystem",
  3160. "filesystems",
  3161. "ftp",
  3162. "s3",
  3163. "sftp",
  3164. "storage"
  3165. ],
  3166. "support": {
  3167. "issues": "https://github.com/thephpleague/flysystem/issues",
  3168. "source": "https://github.com/thephpleague/flysystem/tree/3.30.1"
  3169. },
  3170. "time": "2025-10-20T15:35:26+00:00"
  3171. },
  3172. {
  3173. "name": "league/flysystem-local",
  3174. "version": "3.30.2",
  3175. "source": {
  3176. "type": "git",
  3177. "url": "https://github.com/thephpleague/flysystem-local.git",
  3178. "reference": "ab4f9d0d672f601b102936aa728801dd1a11968d"
  3179. },
  3180. "dist": {
  3181. "type": "zip",
  3182. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/ab4f9d0d672f601b102936aa728801dd1a11968d",
  3183. "reference": "ab4f9d0d672f601b102936aa728801dd1a11968d",
  3184. "shasum": "",
  3185. "mirrors": [
  3186. {
  3187. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3188. "preferred": true
  3189. }
  3190. ]
  3191. },
  3192. "require": {
  3193. "ext-fileinfo": "*",
  3194. "league/flysystem": "^3.0.0",
  3195. "league/mime-type-detection": "^1.0.0",
  3196. "php": "^8.0.2"
  3197. },
  3198. "type": "library",
  3199. "autoload": {
  3200. "psr-4": {
  3201. "League\\Flysystem\\Local\\": ""
  3202. }
  3203. },
  3204. "notification-url": "https://packagist.org/downloads/",
  3205. "license": [
  3206. "MIT"
  3207. ],
  3208. "authors": [
  3209. {
  3210. "name": "Frank de Jonge",
  3211. "email": "info@frankdejonge.nl"
  3212. }
  3213. ],
  3214. "description": "Local filesystem adapter for Flysystem.",
  3215. "keywords": [
  3216. "Flysystem",
  3217. "file",
  3218. "files",
  3219. "filesystem",
  3220. "local"
  3221. ],
  3222. "support": {
  3223. "source": "https://github.com/thephpleague/flysystem-local/tree/3.30.2"
  3224. },
  3225. "time": "2025-11-10T11:23:37+00:00"
  3226. },
  3227. {
  3228. "name": "league/mime-type-detection",
  3229. "version": "1.15.0",
  3230. "source": {
  3231. "type": "git",
  3232. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3233. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  3234. },
  3235. "dist": {
  3236. "type": "zip",
  3237. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  3238. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  3239. "shasum": "",
  3240. "mirrors": [
  3241. {
  3242. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3243. "preferred": true
  3244. }
  3245. ]
  3246. },
  3247. "require": {
  3248. "ext-fileinfo": "*",
  3249. "php": "^7.4 || ^8.0"
  3250. },
  3251. "require-dev": {
  3252. "friendsofphp/php-cs-fixer": "^3.2",
  3253. "phpstan/phpstan": "^0.12.68",
  3254. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  3255. },
  3256. "type": "library",
  3257. "autoload": {
  3258. "psr-4": {
  3259. "League\\MimeTypeDetection\\": "src"
  3260. }
  3261. },
  3262. "notification-url": "https://packagist.org/downloads/",
  3263. "license": [
  3264. "MIT"
  3265. ],
  3266. "authors": [
  3267. {
  3268. "name": "Frank de Jonge",
  3269. "email": "info@frankdejonge.nl"
  3270. }
  3271. ],
  3272. "description": "Mime-type detection for Flysystem",
  3273. "support": {
  3274. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3275. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  3276. },
  3277. "funding": [
  3278. {
  3279. "url": "https://github.com/frankdejonge",
  3280. "type": "github"
  3281. },
  3282. {
  3283. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3284. "type": "tidelift"
  3285. }
  3286. ],
  3287. "time": "2024-01-28T23:22:08+00:00"
  3288. },
  3289. {
  3290. "name": "monolog/monolog",
  3291. "version": "3.9.0",
  3292. "source": {
  3293. "type": "git",
  3294. "url": "https://github.com/Seldaek/monolog.git",
  3295. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  3296. },
  3297. "dist": {
  3298. "type": "zip",
  3299. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  3300. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  3301. "shasum": "",
  3302. "mirrors": [
  3303. {
  3304. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3305. "preferred": true
  3306. }
  3307. ]
  3308. },
  3309. "require": {
  3310. "php": ">=8.1",
  3311. "psr/log": "^2.0 || ^3.0"
  3312. },
  3313. "provide": {
  3314. "psr/log-implementation": "3.0.0"
  3315. },
  3316. "require-dev": {
  3317. "aws/aws-sdk-php": "^3.0",
  3318. "doctrine/couchdb": "~1.0@dev",
  3319. "elasticsearch/elasticsearch": "^7 || ^8",
  3320. "ext-json": "*",
  3321. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  3322. "guzzlehttp/guzzle": "^7.4.5",
  3323. "guzzlehttp/psr7": "^2.2",
  3324. "mongodb/mongodb": "^1.8",
  3325. "php-amqplib/php-amqplib": "~2.4 || ^3",
  3326. "php-console/php-console": "^3.1.8",
  3327. "phpstan/phpstan": "^2",
  3328. "phpstan/phpstan-deprecation-rules": "^2",
  3329. "phpstan/phpstan-strict-rules": "^2",
  3330. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  3331. "predis/predis": "^1.1 || ^2",
  3332. "rollbar/rollbar": "^4.0",
  3333. "ruflin/elastica": "^7 || ^8",
  3334. "symfony/mailer": "^5.4 || ^6",
  3335. "symfony/mime": "^5.4 || ^6"
  3336. },
  3337. "suggest": {
  3338. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3339. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3340. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3341. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3342. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  3343. "ext-mbstring": "Allow to work properly with unicode symbols",
  3344. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3345. "ext-openssl": "Required to send log messages using SSL",
  3346. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  3347. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3348. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3349. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3350. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3351. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3352. },
  3353. "type": "library",
  3354. "extra": {
  3355. "branch-alias": {
  3356. "dev-main": "3.x-dev"
  3357. }
  3358. },
  3359. "autoload": {
  3360. "psr-4": {
  3361. "Monolog\\": "src/Monolog"
  3362. }
  3363. },
  3364. "notification-url": "https://packagist.org/downloads/",
  3365. "license": [
  3366. "MIT"
  3367. ],
  3368. "authors": [
  3369. {
  3370. "name": "Jordi Boggiano",
  3371. "email": "j.boggiano@seld.be",
  3372. "homepage": "https://seld.be"
  3373. }
  3374. ],
  3375. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3376. "homepage": "https://github.com/Seldaek/monolog",
  3377. "keywords": [
  3378. "log",
  3379. "logging",
  3380. "psr-3"
  3381. ],
  3382. "support": {
  3383. "issues": "https://github.com/Seldaek/monolog/issues",
  3384. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  3385. },
  3386. "funding": [
  3387. {
  3388. "url": "https://github.com/Seldaek",
  3389. "type": "github"
  3390. },
  3391. {
  3392. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  3393. "type": "tidelift"
  3394. }
  3395. ],
  3396. "time": "2025-03-24T10:02:05+00:00"
  3397. },
  3398. {
  3399. "name": "nesbot/carbon",
  3400. "version": "3.9.1",
  3401. "source": {
  3402. "type": "git",
  3403. "url": "https://github.com/CarbonPHP/carbon.git",
  3404. "reference": "ced71f79398ece168e24f7f7710462f462310d4d"
  3405. },
  3406. "dist": {
  3407. "type": "zip",
  3408. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/ced71f79398ece168e24f7f7710462f462310d4d",
  3409. "reference": "ced71f79398ece168e24f7f7710462f462310d4d",
  3410. "shasum": "",
  3411. "mirrors": [
  3412. {
  3413. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3414. "preferred": true
  3415. }
  3416. ]
  3417. },
  3418. "require": {
  3419. "carbonphp/carbon-doctrine-types": "<100.0",
  3420. "ext-json": "*",
  3421. "php": "^8.1",
  3422. "psr/clock": "^1.0",
  3423. "symfony/clock": "^6.3 || ^7.0",
  3424. "symfony/polyfill-mbstring": "^1.0",
  3425. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  3426. },
  3427. "provide": {
  3428. "psr/clock-implementation": "1.0"
  3429. },
  3430. "require-dev": {
  3431. "doctrine/dbal": "^3.6.3 || ^4.0",
  3432. "doctrine/orm": "^2.15.2 || ^3.0",
  3433. "friendsofphp/php-cs-fixer": "^3.57.2",
  3434. "kylekatarnls/multi-tester": "^2.5.3",
  3435. "ondrejmirtes/better-reflection": "^6.25.0.4",
  3436. "phpmd/phpmd": "^2.15.0",
  3437. "phpstan/extension-installer": "^1.3.1",
  3438. "phpstan/phpstan": "^1.11.2",
  3439. "phpunit/phpunit": "^10.5.20",
  3440. "squizlabs/php_codesniffer": "^3.9.0"
  3441. },
  3442. "bin": [
  3443. "bin/carbon"
  3444. ],
  3445. "type": "library",
  3446. "extra": {
  3447. "laravel": {
  3448. "providers": [
  3449. "Carbon\\Laravel\\ServiceProvider"
  3450. ]
  3451. },
  3452. "phpstan": {
  3453. "includes": [
  3454. "extension.neon"
  3455. ]
  3456. },
  3457. "branch-alias": {
  3458. "dev-2.x": "2.x-dev",
  3459. "dev-master": "3.x-dev"
  3460. }
  3461. },
  3462. "autoload": {
  3463. "psr-4": {
  3464. "Carbon\\": "src/Carbon/"
  3465. }
  3466. },
  3467. "notification-url": "https://packagist.org/downloads/",
  3468. "license": [
  3469. "MIT"
  3470. ],
  3471. "authors": [
  3472. {
  3473. "name": "Brian Nesbitt",
  3474. "email": "brian@nesbot.com",
  3475. "homepage": "https://markido.com"
  3476. },
  3477. {
  3478. "name": "kylekatarnls",
  3479. "homepage": "https://github.com/kylekatarnls"
  3480. }
  3481. ],
  3482. "description": "An API extension for DateTime that supports 281 different languages.",
  3483. "homepage": "https://carbon.nesbot.com",
  3484. "keywords": [
  3485. "date",
  3486. "datetime",
  3487. "time"
  3488. ],
  3489. "support": {
  3490. "docs": "https://carbon.nesbot.com/docs",
  3491. "issues": "https://github.com/CarbonPHP/carbon/issues",
  3492. "source": "https://github.com/CarbonPHP/carbon"
  3493. },
  3494. "funding": [
  3495. {
  3496. "url": "https://github.com/sponsors/kylekatarnls",
  3497. "type": "github"
  3498. },
  3499. {
  3500. "url": "https://opencollective.com/Carbon#sponsor",
  3501. "type": "opencollective"
  3502. },
  3503. {
  3504. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3505. "type": "tidelift"
  3506. }
  3507. ],
  3508. "time": "2025-05-01T19:51:51+00:00"
  3509. },
  3510. {
  3511. "name": "nette/schema",
  3512. "version": "v1.3.3",
  3513. "source": {
  3514. "type": "git",
  3515. "url": "https://github.com/nette/schema.git",
  3516. "reference": "2befc2f42d7c715fd9d95efc31b1081e5d765004"
  3517. },
  3518. "dist": {
  3519. "type": "zip",
  3520. "url": "https://api.github.com/repos/nette/schema/zipball/2befc2f42d7c715fd9d95efc31b1081e5d765004",
  3521. "reference": "2befc2f42d7c715fd9d95efc31b1081e5d765004",
  3522. "shasum": "",
  3523. "mirrors": [
  3524. {
  3525. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3526. "preferred": true
  3527. }
  3528. ]
  3529. },
  3530. "require": {
  3531. "nette/utils": "^4.0",
  3532. "php": "8.1 - 8.5"
  3533. },
  3534. "require-dev": {
  3535. "nette/tester": "^2.5.2",
  3536. "phpstan/phpstan-nette": "^2.0@stable",
  3537. "tracy/tracy": "^2.8"
  3538. },
  3539. "type": "library",
  3540. "extra": {
  3541. "branch-alias": {
  3542. "dev-master": "1.3-dev"
  3543. }
  3544. },
  3545. "autoload": {
  3546. "psr-4": {
  3547. "Nette\\": "src"
  3548. },
  3549. "classmap": [
  3550. "src/"
  3551. ]
  3552. },
  3553. "notification-url": "https://packagist.org/downloads/",
  3554. "license": [
  3555. "BSD-3-Clause",
  3556. "GPL-2.0-only",
  3557. "GPL-3.0-only"
  3558. ],
  3559. "authors": [
  3560. {
  3561. "name": "David Grudl",
  3562. "homepage": "https://davidgrudl.com"
  3563. },
  3564. {
  3565. "name": "Nette Community",
  3566. "homepage": "https://nette.org/contributors"
  3567. }
  3568. ],
  3569. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3570. "homepage": "https://nette.org",
  3571. "keywords": [
  3572. "config",
  3573. "nette"
  3574. ],
  3575. "support": {
  3576. "issues": "https://github.com/nette/schema/issues",
  3577. "source": "https://github.com/nette/schema/tree/v1.3.3"
  3578. },
  3579. "time": "2025-10-30T22:57:59+00:00"
  3580. },
  3581. {
  3582. "name": "nette/utils",
  3583. "version": "v4.1.0",
  3584. "source": {
  3585. "type": "git",
  3586. "url": "https://github.com/nette/utils.git",
  3587. "reference": "fa1f0b8261ed150447979eb22e373b7b7ad5a8e0"
  3588. },
  3589. "dist": {
  3590. "type": "zip",
  3591. "url": "https://api.github.com/repos/nette/utils/zipball/fa1f0b8261ed150447979eb22e373b7b7ad5a8e0",
  3592. "reference": "fa1f0b8261ed150447979eb22e373b7b7ad5a8e0",
  3593. "shasum": "",
  3594. "mirrors": [
  3595. {
  3596. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3597. "preferred": true
  3598. }
  3599. ]
  3600. },
  3601. "require": {
  3602. "php": "8.2 - 8.5"
  3603. },
  3604. "conflict": {
  3605. "nette/finder": "<3",
  3606. "nette/schema": "<1.2.2"
  3607. },
  3608. "require-dev": {
  3609. "jetbrains/phpstorm-attributes": "^1.2",
  3610. "nette/tester": "^2.5",
  3611. "phpstan/phpstan-nette": "^2.0@stable",
  3612. "tracy/tracy": "^2.9"
  3613. },
  3614. "suggest": {
  3615. "ext-gd": "to use Image",
  3616. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3617. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3618. "ext-json": "to use Nette\\Utils\\Json",
  3619. "ext-mbstring": "to use Strings::lower() etc...",
  3620. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  3621. },
  3622. "type": "library",
  3623. "extra": {
  3624. "branch-alias": {
  3625. "dev-master": "4.1-dev"
  3626. }
  3627. },
  3628. "autoload": {
  3629. "psr-4": {
  3630. "Nette\\": "src"
  3631. },
  3632. "classmap": [
  3633. "src/"
  3634. ]
  3635. },
  3636. "notification-url": "https://packagist.org/downloads/",
  3637. "license": [
  3638. "BSD-3-Clause",
  3639. "GPL-2.0-only",
  3640. "GPL-3.0-only"
  3641. ],
  3642. "authors": [
  3643. {
  3644. "name": "David Grudl",
  3645. "homepage": "https://davidgrudl.com"
  3646. },
  3647. {
  3648. "name": "Nette Community",
  3649. "homepage": "https://nette.org/contributors"
  3650. }
  3651. ],
  3652. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3653. "homepage": "https://nette.org",
  3654. "keywords": [
  3655. "array",
  3656. "core",
  3657. "datetime",
  3658. "images",
  3659. "json",
  3660. "nette",
  3661. "paginator",
  3662. "password",
  3663. "slugify",
  3664. "string",
  3665. "unicode",
  3666. "utf-8",
  3667. "utility",
  3668. "validation"
  3669. ],
  3670. "support": {
  3671. "issues": "https://github.com/nette/utils/issues",
  3672. "source": "https://github.com/nette/utils/tree/v4.1.0"
  3673. },
  3674. "time": "2025-12-01T17:49:23+00:00"
  3675. },
  3676. {
  3677. "name": "nikic/php-parser",
  3678. "version": "v5.7.0",
  3679. "source": {
  3680. "type": "git",
  3681. "url": "https://github.com/nikic/PHP-Parser.git",
  3682. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  3683. },
  3684. "dist": {
  3685. "type": "zip",
  3686. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  3687. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  3688. "shasum": "",
  3689. "mirrors": [
  3690. {
  3691. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3692. "preferred": true
  3693. }
  3694. ]
  3695. },
  3696. "require": {
  3697. "ext-ctype": "*",
  3698. "ext-json": "*",
  3699. "ext-tokenizer": "*",
  3700. "php": ">=7.4"
  3701. },
  3702. "require-dev": {
  3703. "ircmaxell/php-yacc": "^0.0.7",
  3704. "phpunit/phpunit": "^9.0"
  3705. },
  3706. "bin": [
  3707. "bin/php-parse"
  3708. ],
  3709. "type": "library",
  3710. "extra": {
  3711. "branch-alias": {
  3712. "dev-master": "5.x-dev"
  3713. }
  3714. },
  3715. "autoload": {
  3716. "psr-4": {
  3717. "PhpParser\\": "lib/PhpParser"
  3718. }
  3719. },
  3720. "notification-url": "https://packagist.org/downloads/",
  3721. "license": [
  3722. "BSD-3-Clause"
  3723. ],
  3724. "authors": [
  3725. {
  3726. "name": "Nikita Popov"
  3727. }
  3728. ],
  3729. "description": "A PHP parser written in PHP",
  3730. "keywords": [
  3731. "parser",
  3732. "php"
  3733. ],
  3734. "support": {
  3735. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3736. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  3737. },
  3738. "time": "2025-12-06T11:56:16+00:00"
  3739. },
  3740. {
  3741. "name": "nunomaduro/termwind",
  3742. "version": "v2.3.3",
  3743. "source": {
  3744. "type": "git",
  3745. "url": "https://github.com/nunomaduro/termwind.git",
  3746. "reference": "6fb2a640ff502caace8e05fd7be3b503a7e1c017"
  3747. },
  3748. "dist": {
  3749. "type": "zip",
  3750. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/6fb2a640ff502caace8e05fd7be3b503a7e1c017",
  3751. "reference": "6fb2a640ff502caace8e05fd7be3b503a7e1c017",
  3752. "shasum": "",
  3753. "mirrors": [
  3754. {
  3755. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3756. "preferred": true
  3757. }
  3758. ]
  3759. },
  3760. "require": {
  3761. "ext-mbstring": "*",
  3762. "php": "^8.2",
  3763. "symfony/console": "^7.3.6"
  3764. },
  3765. "require-dev": {
  3766. "illuminate/console": "^11.46.1",
  3767. "laravel/pint": "^1.25.1",
  3768. "mockery/mockery": "^1.6.12",
  3769. "pestphp/pest": "^2.36.0 || ^3.8.4 || ^4.1.3",
  3770. "phpstan/phpstan": "^1.12.32",
  3771. "phpstan/phpstan-strict-rules": "^1.6.2",
  3772. "symfony/var-dumper": "^7.3.5",
  3773. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  3774. },
  3775. "type": "library",
  3776. "extra": {
  3777. "laravel": {
  3778. "providers": [
  3779. "Termwind\\Laravel\\TermwindServiceProvider"
  3780. ]
  3781. },
  3782. "branch-alias": {
  3783. "dev-2.x": "2.x-dev"
  3784. }
  3785. },
  3786. "autoload": {
  3787. "files": [
  3788. "src/Functions.php"
  3789. ],
  3790. "psr-4": {
  3791. "Termwind\\": "src/"
  3792. }
  3793. },
  3794. "notification-url": "https://packagist.org/downloads/",
  3795. "license": [
  3796. "MIT"
  3797. ],
  3798. "authors": [
  3799. {
  3800. "name": "Nuno Maduro",
  3801. "email": "enunomaduro@gmail.com"
  3802. }
  3803. ],
  3804. "description": "Its like Tailwind CSS, but for the console.",
  3805. "keywords": [
  3806. "cli",
  3807. "console",
  3808. "css",
  3809. "package",
  3810. "php",
  3811. "style"
  3812. ],
  3813. "support": {
  3814. "issues": "https://github.com/nunomaduro/termwind/issues",
  3815. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.3"
  3816. },
  3817. "funding": [
  3818. {
  3819. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3820. "type": "custom"
  3821. },
  3822. {
  3823. "url": "https://github.com/nunomaduro",
  3824. "type": "github"
  3825. },
  3826. {
  3827. "url": "https://github.com/xiCO2k",
  3828. "type": "github"
  3829. }
  3830. ],
  3831. "time": "2025-11-20T02:34:59+00:00"
  3832. },
  3833. {
  3834. "name": "phpoption/phpoption",
  3835. "version": "1.9.3",
  3836. "source": {
  3837. "type": "git",
  3838. "url": "https://github.com/schmittjoh/php-option.git",
  3839. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  3840. },
  3841. "dist": {
  3842. "type": "zip",
  3843. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3844. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3845. "shasum": "",
  3846. "mirrors": [
  3847. {
  3848. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3849. "preferred": true
  3850. }
  3851. ]
  3852. },
  3853. "require": {
  3854. "php": "^7.2.5 || ^8.0"
  3855. },
  3856. "require-dev": {
  3857. "bamarni/composer-bin-plugin": "^1.8.2",
  3858. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  3859. },
  3860. "type": "library",
  3861. "extra": {
  3862. "bamarni-bin": {
  3863. "bin-links": true,
  3864. "forward-command": false
  3865. },
  3866. "branch-alias": {
  3867. "dev-master": "1.9-dev"
  3868. }
  3869. },
  3870. "autoload": {
  3871. "psr-4": {
  3872. "PhpOption\\": "src/PhpOption/"
  3873. }
  3874. },
  3875. "notification-url": "https://packagist.org/downloads/",
  3876. "license": [
  3877. "Apache-2.0"
  3878. ],
  3879. "authors": [
  3880. {
  3881. "name": "Johannes M. Schmitt",
  3882. "email": "schmittjoh@gmail.com",
  3883. "homepage": "https://github.com/schmittjoh"
  3884. },
  3885. {
  3886. "name": "Graham Campbell",
  3887. "email": "hello@gjcampbell.co.uk",
  3888. "homepage": "https://github.com/GrahamCampbell"
  3889. }
  3890. ],
  3891. "description": "Option Type for PHP",
  3892. "keywords": [
  3893. "language",
  3894. "option",
  3895. "php",
  3896. "type"
  3897. ],
  3898. "support": {
  3899. "issues": "https://github.com/schmittjoh/php-option/issues",
  3900. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  3901. },
  3902. "funding": [
  3903. {
  3904. "url": "https://github.com/GrahamCampbell",
  3905. "type": "github"
  3906. },
  3907. {
  3908. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3909. "type": "tidelift"
  3910. }
  3911. ],
  3912. "time": "2024-07-20T21:41:07+00:00"
  3913. },
  3914. {
  3915. "name": "psr/clock",
  3916. "version": "1.0.0",
  3917. "source": {
  3918. "type": "git",
  3919. "url": "https://github.com/php-fig/clock.git",
  3920. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3921. },
  3922. "dist": {
  3923. "type": "zip",
  3924. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3925. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3926. "shasum": "",
  3927. "mirrors": [
  3928. {
  3929. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3930. "preferred": true
  3931. }
  3932. ]
  3933. },
  3934. "require": {
  3935. "php": "^7.0 || ^8.0"
  3936. },
  3937. "type": "library",
  3938. "autoload": {
  3939. "psr-4": {
  3940. "Psr\\Clock\\": "src/"
  3941. }
  3942. },
  3943. "notification-url": "https://packagist.org/downloads/",
  3944. "license": [
  3945. "MIT"
  3946. ],
  3947. "authors": [
  3948. {
  3949. "name": "PHP-FIG",
  3950. "homepage": "https://www.php-fig.org/"
  3951. }
  3952. ],
  3953. "description": "Common interface for reading the clock.",
  3954. "homepage": "https://github.com/php-fig/clock",
  3955. "keywords": [
  3956. "clock",
  3957. "now",
  3958. "psr",
  3959. "psr-20",
  3960. "time"
  3961. ],
  3962. "support": {
  3963. "issues": "https://github.com/php-fig/clock/issues",
  3964. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3965. },
  3966. "time": "2022-11-25T14:36:26+00:00"
  3967. },
  3968. {
  3969. "name": "psr/container",
  3970. "version": "2.0.2",
  3971. "source": {
  3972. "type": "git",
  3973. "url": "https://github.com/php-fig/container.git",
  3974. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3975. },
  3976. "dist": {
  3977. "type": "zip",
  3978. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3979. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3980. "shasum": "",
  3981. "mirrors": [
  3982. {
  3983. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  3984. "preferred": true
  3985. }
  3986. ]
  3987. },
  3988. "require": {
  3989. "php": ">=7.4.0"
  3990. },
  3991. "type": "library",
  3992. "extra": {
  3993. "branch-alias": {
  3994. "dev-master": "2.0.x-dev"
  3995. }
  3996. },
  3997. "autoload": {
  3998. "psr-4": {
  3999. "Psr\\Container\\": "src/"
  4000. }
  4001. },
  4002. "notification-url": "https://packagist.org/downloads/",
  4003. "license": [
  4004. "MIT"
  4005. ],
  4006. "authors": [
  4007. {
  4008. "name": "PHP-FIG",
  4009. "homepage": "https://www.php-fig.org/"
  4010. }
  4011. ],
  4012. "description": "Common Container Interface (PHP FIG PSR-11)",
  4013. "homepage": "https://github.com/php-fig/container",
  4014. "keywords": [
  4015. "PSR-11",
  4016. "container",
  4017. "container-interface",
  4018. "container-interop",
  4019. "psr"
  4020. ],
  4021. "support": {
  4022. "issues": "https://github.com/php-fig/container/issues",
  4023. "source": "https://github.com/php-fig/container/tree/2.0.2"
  4024. },
  4025. "time": "2021-11-05T16:47:00+00:00"
  4026. },
  4027. {
  4028. "name": "psr/event-dispatcher",
  4029. "version": "1.0.0",
  4030. "source": {
  4031. "type": "git",
  4032. "url": "https://github.com/php-fig/event-dispatcher.git",
  4033. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  4034. },
  4035. "dist": {
  4036. "type": "zip",
  4037. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4038. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  4039. "shasum": "",
  4040. "mirrors": [
  4041. {
  4042. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4043. "preferred": true
  4044. }
  4045. ]
  4046. },
  4047. "require": {
  4048. "php": ">=7.2.0"
  4049. },
  4050. "type": "library",
  4051. "extra": {
  4052. "branch-alias": {
  4053. "dev-master": "1.0.x-dev"
  4054. }
  4055. },
  4056. "autoload": {
  4057. "psr-4": {
  4058. "Psr\\EventDispatcher\\": "src/"
  4059. }
  4060. },
  4061. "notification-url": "https://packagist.org/downloads/",
  4062. "license": [
  4063. "MIT"
  4064. ],
  4065. "authors": [
  4066. {
  4067. "name": "PHP-FIG",
  4068. "homepage": "http://www.php-fig.org/"
  4069. }
  4070. ],
  4071. "description": "Standard interfaces for event handling.",
  4072. "keywords": [
  4073. "events",
  4074. "psr",
  4075. "psr-14"
  4076. ],
  4077. "support": {
  4078. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  4079. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  4080. },
  4081. "time": "2019-01-08T18:20:26+00:00"
  4082. },
  4083. {
  4084. "name": "psr/http-client",
  4085. "version": "1.0.3",
  4086. "source": {
  4087. "type": "git",
  4088. "url": "https://github.com/php-fig/http-client.git",
  4089. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  4090. },
  4091. "dist": {
  4092. "type": "zip",
  4093. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4094. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  4095. "shasum": "",
  4096. "mirrors": [
  4097. {
  4098. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4099. "preferred": true
  4100. }
  4101. ]
  4102. },
  4103. "require": {
  4104. "php": "^7.0 || ^8.0",
  4105. "psr/http-message": "^1.0 || ^2.0"
  4106. },
  4107. "type": "library",
  4108. "extra": {
  4109. "branch-alias": {
  4110. "dev-master": "1.0.x-dev"
  4111. }
  4112. },
  4113. "autoload": {
  4114. "psr-4": {
  4115. "Psr\\Http\\Client\\": "src/"
  4116. }
  4117. },
  4118. "notification-url": "https://packagist.org/downloads/",
  4119. "license": [
  4120. "MIT"
  4121. ],
  4122. "authors": [
  4123. {
  4124. "name": "PHP-FIG",
  4125. "homepage": "https://www.php-fig.org/"
  4126. }
  4127. ],
  4128. "description": "Common interface for HTTP clients",
  4129. "homepage": "https://github.com/php-fig/http-client",
  4130. "keywords": [
  4131. "http",
  4132. "http-client",
  4133. "psr",
  4134. "psr-18"
  4135. ],
  4136. "support": {
  4137. "source": "https://github.com/php-fig/http-client"
  4138. },
  4139. "time": "2023-09-23T14:17:50+00:00"
  4140. },
  4141. {
  4142. "name": "psr/http-factory",
  4143. "version": "1.0.2",
  4144. "source": {
  4145. "type": "git",
  4146. "url": "https://github.com/php-fig/http-factory.git",
  4147. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  4148. },
  4149. "dist": {
  4150. "type": "zip",
  4151. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  4152. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  4153. "shasum": "",
  4154. "mirrors": [
  4155. {
  4156. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4157. "preferred": true
  4158. }
  4159. ]
  4160. },
  4161. "require": {
  4162. "php": ">=7.0.0",
  4163. "psr/http-message": "^1.0 || ^2.0"
  4164. },
  4165. "type": "library",
  4166. "extra": {
  4167. "branch-alias": {
  4168. "dev-master": "1.0.x-dev"
  4169. }
  4170. },
  4171. "autoload": {
  4172. "psr-4": {
  4173. "Psr\\Http\\Message\\": "src/"
  4174. }
  4175. },
  4176. "notification-url": "https://packagist.org/downloads/",
  4177. "license": [
  4178. "MIT"
  4179. ],
  4180. "authors": [
  4181. {
  4182. "name": "PHP-FIG",
  4183. "homepage": "https://www.php-fig.org/"
  4184. }
  4185. ],
  4186. "description": "Common interfaces for PSR-7 HTTP message factories",
  4187. "keywords": [
  4188. "factory",
  4189. "http",
  4190. "message",
  4191. "psr",
  4192. "psr-17",
  4193. "psr-7",
  4194. "request",
  4195. "response"
  4196. ],
  4197. "support": {
  4198. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  4199. },
  4200. "time": "2023-04-10T20:10:41+00:00"
  4201. },
  4202. {
  4203. "name": "psr/http-message",
  4204. "version": "2.0",
  4205. "source": {
  4206. "type": "git",
  4207. "url": "https://github.com/php-fig/http-message.git",
  4208. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  4209. },
  4210. "dist": {
  4211. "type": "zip",
  4212. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4213. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  4214. "shasum": "",
  4215. "mirrors": [
  4216. {
  4217. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4218. "preferred": true
  4219. }
  4220. ]
  4221. },
  4222. "require": {
  4223. "php": "^7.2 || ^8.0"
  4224. },
  4225. "type": "library",
  4226. "extra": {
  4227. "branch-alias": {
  4228. "dev-master": "2.0.x-dev"
  4229. }
  4230. },
  4231. "autoload": {
  4232. "psr-4": {
  4233. "Psr\\Http\\Message\\": "src/"
  4234. }
  4235. },
  4236. "notification-url": "https://packagist.org/downloads/",
  4237. "license": [
  4238. "MIT"
  4239. ],
  4240. "authors": [
  4241. {
  4242. "name": "PHP-FIG",
  4243. "homepage": "https://www.php-fig.org/"
  4244. }
  4245. ],
  4246. "description": "Common interface for HTTP messages",
  4247. "homepage": "https://github.com/php-fig/http-message",
  4248. "keywords": [
  4249. "http",
  4250. "http-message",
  4251. "psr",
  4252. "psr-7",
  4253. "request",
  4254. "response"
  4255. ],
  4256. "support": {
  4257. "source": "https://github.com/php-fig/http-message/tree/2.0"
  4258. },
  4259. "time": "2023-04-04T09:54:51+00:00"
  4260. },
  4261. {
  4262. "name": "psr/log",
  4263. "version": "3.0.1",
  4264. "source": {
  4265. "type": "git",
  4266. "url": "https://github.com/php-fig/log.git",
  4267. "reference": "79dff0b268932c640297f5208d6298f71855c03e"
  4268. },
  4269. "dist": {
  4270. "type": "zip",
  4271. "url": "https://api.github.com/repos/php-fig/log/zipball/79dff0b268932c640297f5208d6298f71855c03e",
  4272. "reference": "79dff0b268932c640297f5208d6298f71855c03e",
  4273. "shasum": "",
  4274. "mirrors": [
  4275. {
  4276. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4277. "preferred": true
  4278. }
  4279. ]
  4280. },
  4281. "require": {
  4282. "php": ">=8.0.0"
  4283. },
  4284. "type": "library",
  4285. "extra": {
  4286. "branch-alias": {
  4287. "dev-master": "3.x-dev"
  4288. }
  4289. },
  4290. "autoload": {
  4291. "psr-4": {
  4292. "Psr\\Log\\": "src"
  4293. }
  4294. },
  4295. "notification-url": "https://packagist.org/downloads/",
  4296. "license": [
  4297. "MIT"
  4298. ],
  4299. "authors": [
  4300. {
  4301. "name": "PHP-FIG",
  4302. "homepage": "https://www.php-fig.org/"
  4303. }
  4304. ],
  4305. "description": "Common interface for logging libraries",
  4306. "homepage": "https://github.com/php-fig/log",
  4307. "keywords": [
  4308. "log",
  4309. "psr",
  4310. "psr-3"
  4311. ],
  4312. "support": {
  4313. "source": "https://github.com/php-fig/log/tree/3.0.1"
  4314. },
  4315. "time": "2024-08-21T13:31:24+00:00"
  4316. },
  4317. {
  4318. "name": "psr/simple-cache",
  4319. "version": "3.0.0",
  4320. "source": {
  4321. "type": "git",
  4322. "url": "https://github.com/php-fig/simple-cache.git",
  4323. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4324. },
  4325. "dist": {
  4326. "type": "zip",
  4327. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4328. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4329. "shasum": "",
  4330. "mirrors": [
  4331. {
  4332. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4333. "preferred": true
  4334. }
  4335. ]
  4336. },
  4337. "require": {
  4338. "php": ">=8.0.0"
  4339. },
  4340. "type": "library",
  4341. "extra": {
  4342. "branch-alias": {
  4343. "dev-master": "3.0.x-dev"
  4344. }
  4345. },
  4346. "autoload": {
  4347. "psr-4": {
  4348. "Psr\\SimpleCache\\": "src/"
  4349. }
  4350. },
  4351. "notification-url": "https://packagist.org/downloads/",
  4352. "license": [
  4353. "MIT"
  4354. ],
  4355. "authors": [
  4356. {
  4357. "name": "PHP-FIG",
  4358. "homepage": "https://www.php-fig.org/"
  4359. }
  4360. ],
  4361. "description": "Common interfaces for simple caching",
  4362. "keywords": [
  4363. "cache",
  4364. "caching",
  4365. "psr",
  4366. "psr-16",
  4367. "simple-cache"
  4368. ],
  4369. "support": {
  4370. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4371. },
  4372. "time": "2021-10-29T13:26:27+00:00"
  4373. },
  4374. {
  4375. "name": "psy/psysh",
  4376. "version": "v0.12.15",
  4377. "source": {
  4378. "type": "git",
  4379. "url": "https://github.com/bobthecow/psysh.git",
  4380. "reference": "38953bc71491c838fcb6ebcbdc41ab7483cd549c"
  4381. },
  4382. "dist": {
  4383. "type": "zip",
  4384. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/38953bc71491c838fcb6ebcbdc41ab7483cd549c",
  4385. "reference": "38953bc71491c838fcb6ebcbdc41ab7483cd549c",
  4386. "shasum": "",
  4387. "mirrors": [
  4388. {
  4389. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4390. "preferred": true
  4391. }
  4392. ]
  4393. },
  4394. "require": {
  4395. "ext-json": "*",
  4396. "ext-tokenizer": "*",
  4397. "nikic/php-parser": "^5.0 || ^4.0",
  4398. "php": "^8.0 || ^7.4",
  4399. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4400. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4401. },
  4402. "conflict": {
  4403. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4404. },
  4405. "require-dev": {
  4406. "bamarni/composer-bin-plugin": "^1.2",
  4407. "composer/class-map-generator": "^1.6"
  4408. },
  4409. "suggest": {
  4410. "composer/class-map-generator": "Improved tab completion performance with better class discovery.",
  4411. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4412. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4413. },
  4414. "bin": [
  4415. "bin/psysh"
  4416. ],
  4417. "type": "library",
  4418. "extra": {
  4419. "bamarni-bin": {
  4420. "bin-links": false,
  4421. "forward-command": false
  4422. },
  4423. "branch-alias": {
  4424. "dev-main": "0.12.x-dev"
  4425. }
  4426. },
  4427. "autoload": {
  4428. "files": [
  4429. "src/functions.php"
  4430. ],
  4431. "psr-4": {
  4432. "Psy\\": "src/"
  4433. }
  4434. },
  4435. "notification-url": "https://packagist.org/downloads/",
  4436. "license": [
  4437. "MIT"
  4438. ],
  4439. "authors": [
  4440. {
  4441. "name": "Justin Hileman",
  4442. "email": "justin@justinhileman.info"
  4443. }
  4444. ],
  4445. "description": "An interactive shell for modern PHP.",
  4446. "homepage": "https://psysh.org",
  4447. "keywords": [
  4448. "REPL",
  4449. "console",
  4450. "interactive",
  4451. "shell"
  4452. ],
  4453. "support": {
  4454. "issues": "https://github.com/bobthecow/psysh/issues",
  4455. "source": "https://github.com/bobthecow/psysh/tree/v0.12.15"
  4456. },
  4457. "time": "2025-11-28T00:00:14+00:00"
  4458. },
  4459. {
  4460. "name": "ralouphie/getallheaders",
  4461. "version": "3.0.3",
  4462. "source": {
  4463. "type": "git",
  4464. "url": "https://github.com/ralouphie/getallheaders.git",
  4465. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4466. },
  4467. "dist": {
  4468. "type": "zip",
  4469. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4470. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4471. "shasum": "",
  4472. "mirrors": [
  4473. {
  4474. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4475. "preferred": true
  4476. }
  4477. ]
  4478. },
  4479. "require": {
  4480. "php": ">=5.6"
  4481. },
  4482. "require-dev": {
  4483. "php-coveralls/php-coveralls": "^2.1",
  4484. "phpunit/phpunit": "^5 || ^6.5"
  4485. },
  4486. "type": "library",
  4487. "autoload": {
  4488. "files": [
  4489. "src/getallheaders.php"
  4490. ]
  4491. },
  4492. "notification-url": "https://packagist.org/downloads/",
  4493. "license": [
  4494. "MIT"
  4495. ],
  4496. "authors": [
  4497. {
  4498. "name": "Ralph Khattar",
  4499. "email": "ralph.khattar@gmail.com"
  4500. }
  4501. ],
  4502. "description": "A polyfill for getallheaders.",
  4503. "support": {
  4504. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4505. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4506. },
  4507. "time": "2019-03-08T08:55:37+00:00"
  4508. },
  4509. {
  4510. "name": "ramsey/collection",
  4511. "version": "2.0.0",
  4512. "source": {
  4513. "type": "git",
  4514. "url": "https://github.com/ramsey/collection.git",
  4515. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4516. },
  4517. "dist": {
  4518. "type": "zip",
  4519. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4520. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4521. "shasum": "",
  4522. "mirrors": [
  4523. {
  4524. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4525. "preferred": true
  4526. }
  4527. ]
  4528. },
  4529. "require": {
  4530. "php": "^8.1"
  4531. },
  4532. "require-dev": {
  4533. "captainhook/plugin-composer": "^5.3",
  4534. "ergebnis/composer-normalize": "^2.28.3",
  4535. "fakerphp/faker": "^1.21",
  4536. "hamcrest/hamcrest-php": "^2.0",
  4537. "jangregor/phpstan-prophecy": "^1.0",
  4538. "mockery/mockery": "^1.5",
  4539. "php-parallel-lint/php-console-highlighter": "^1.0",
  4540. "php-parallel-lint/php-parallel-lint": "^1.3",
  4541. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4542. "phpspec/prophecy-phpunit": "^2.0",
  4543. "phpstan/extension-installer": "^1.2",
  4544. "phpstan/phpstan": "^1.9",
  4545. "phpstan/phpstan-mockery": "^1.1",
  4546. "phpstan/phpstan-phpunit": "^1.3",
  4547. "phpunit/phpunit": "^9.5",
  4548. "psalm/plugin-mockery": "^1.1",
  4549. "psalm/plugin-phpunit": "^0.18.4",
  4550. "ramsey/coding-standard": "^2.0.3",
  4551. "ramsey/conventional-commits": "^1.3",
  4552. "vimeo/psalm": "^5.4"
  4553. },
  4554. "type": "library",
  4555. "extra": {
  4556. "captainhook": {
  4557. "force-install": true
  4558. },
  4559. "ramsey/conventional-commits": {
  4560. "configFile": "conventional-commits.json"
  4561. }
  4562. },
  4563. "autoload": {
  4564. "psr-4": {
  4565. "Ramsey\\Collection\\": "src/"
  4566. }
  4567. },
  4568. "notification-url": "https://packagist.org/downloads/",
  4569. "license": [
  4570. "MIT"
  4571. ],
  4572. "authors": [
  4573. {
  4574. "name": "Ben Ramsey",
  4575. "email": "ben@benramsey.com",
  4576. "homepage": "https://benramsey.com"
  4577. }
  4578. ],
  4579. "description": "A PHP library for representing and manipulating collections.",
  4580. "keywords": [
  4581. "array",
  4582. "collection",
  4583. "hash",
  4584. "map",
  4585. "queue",
  4586. "set"
  4587. ],
  4588. "support": {
  4589. "issues": "https://github.com/ramsey/collection/issues",
  4590. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4591. },
  4592. "funding": [
  4593. {
  4594. "url": "https://github.com/ramsey",
  4595. "type": "github"
  4596. },
  4597. {
  4598. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4599. "type": "tidelift"
  4600. }
  4601. ],
  4602. "time": "2022-12-31T21:50:55+00:00"
  4603. },
  4604. {
  4605. "name": "ramsey/uuid",
  4606. "version": "4.9.0",
  4607. "source": {
  4608. "type": "git",
  4609. "url": "https://github.com/ramsey/uuid.git",
  4610. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0"
  4611. },
  4612. "dist": {
  4613. "type": "zip",
  4614. "url": "https://api.github.com/repos/ramsey/uuid/zipball/4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4615. "reference": "4e0e23cc785f0724a0e838279a9eb03f28b092a0",
  4616. "shasum": "",
  4617. "mirrors": [
  4618. {
  4619. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4620. "preferred": true
  4621. }
  4622. ]
  4623. },
  4624. "require": {
  4625. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13",
  4626. "php": "^8.0",
  4627. "ramsey/collection": "^1.2 || ^2.0"
  4628. },
  4629. "replace": {
  4630. "rhumsaa/uuid": "self.version"
  4631. },
  4632. "require-dev": {
  4633. "captainhook/captainhook": "^5.25",
  4634. "captainhook/plugin-composer": "^5.3",
  4635. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  4636. "ergebnis/composer-normalize": "^2.47",
  4637. "mockery/mockery": "^1.6",
  4638. "paragonie/random-lib": "^2",
  4639. "php-mock/php-mock": "^2.6",
  4640. "php-mock/php-mock-mockery": "^1.5",
  4641. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  4642. "phpbench/phpbench": "^1.2.14",
  4643. "phpstan/extension-installer": "^1.4",
  4644. "phpstan/phpstan": "^2.1",
  4645. "phpstan/phpstan-mockery": "^2.0",
  4646. "phpstan/phpstan-phpunit": "^2.0",
  4647. "phpunit/phpunit": "^9.6",
  4648. "slevomat/coding-standard": "^8.18",
  4649. "squizlabs/php_codesniffer": "^3.13"
  4650. },
  4651. "suggest": {
  4652. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4653. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4654. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4655. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4656. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4657. },
  4658. "type": "library",
  4659. "extra": {
  4660. "captainhook": {
  4661. "force-install": true
  4662. }
  4663. },
  4664. "autoload": {
  4665. "files": [
  4666. "src/functions.php"
  4667. ],
  4668. "psr-4": {
  4669. "Ramsey\\Uuid\\": "src/"
  4670. }
  4671. },
  4672. "notification-url": "https://packagist.org/downloads/",
  4673. "license": [
  4674. "MIT"
  4675. ],
  4676. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4677. "keywords": [
  4678. "guid",
  4679. "identifier",
  4680. "uuid"
  4681. ],
  4682. "support": {
  4683. "issues": "https://github.com/ramsey/uuid/issues",
  4684. "source": "https://github.com/ramsey/uuid/tree/4.9.0"
  4685. },
  4686. "time": "2025-06-25T14:20:11+00:00"
  4687. },
  4688. {
  4689. "name": "stella-maris/clock",
  4690. "version": "0.1.7",
  4691. "source": {
  4692. "type": "git",
  4693. "url": "https://github.com/stella-maris-solutions/clock.git",
  4694. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
  4695. },
  4696. "dist": {
  4697. "type": "zip",
  4698. "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
  4699. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
  4700. "shasum": "",
  4701. "mirrors": [
  4702. {
  4703. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4704. "preferred": true
  4705. }
  4706. ]
  4707. },
  4708. "require": {
  4709. "php": "^7.0|^8.0",
  4710. "psr/clock": "^1.0"
  4711. },
  4712. "type": "library",
  4713. "autoload": {
  4714. "psr-4": {
  4715. "StellaMaris\\Clock\\": "src"
  4716. }
  4717. },
  4718. "notification-url": "https://packagist.org/downloads/",
  4719. "license": [
  4720. "MIT"
  4721. ],
  4722. "authors": [
  4723. {
  4724. "name": "Andreas Heigl",
  4725. "role": "Maintainer"
  4726. }
  4727. ],
  4728. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  4729. "homepage": "https://gitlab.com/stella-maris/clock",
  4730. "keywords": [
  4731. "clock",
  4732. "datetime",
  4733. "point in time",
  4734. "psr20"
  4735. ],
  4736. "support": {
  4737. "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
  4738. },
  4739. "time": "2022-11-25T16:15:06+00:00"
  4740. },
  4741. {
  4742. "name": "symfony/clock",
  4743. "version": "v7.4.0",
  4744. "source": {
  4745. "type": "git",
  4746. "url": "https://github.com/symfony/clock.git",
  4747. "reference": "9169f24776edde469914c1e7a1442a50f7a4e110"
  4748. },
  4749. "dist": {
  4750. "type": "zip",
  4751. "url": "https://api.github.com/repos/symfony/clock/zipball/9169f24776edde469914c1e7a1442a50f7a4e110",
  4752. "reference": "9169f24776edde469914c1e7a1442a50f7a4e110",
  4753. "shasum": "",
  4754. "mirrors": [
  4755. {
  4756. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4757. "preferred": true
  4758. }
  4759. ]
  4760. },
  4761. "require": {
  4762. "php": ">=8.2",
  4763. "psr/clock": "^1.0",
  4764. "symfony/polyfill-php83": "^1.28"
  4765. },
  4766. "provide": {
  4767. "psr/clock-implementation": "1.0"
  4768. },
  4769. "type": "library",
  4770. "autoload": {
  4771. "files": [
  4772. "Resources/now.php"
  4773. ],
  4774. "psr-4": {
  4775. "Symfony\\Component\\Clock\\": ""
  4776. },
  4777. "exclude-from-classmap": [
  4778. "/Tests/"
  4779. ]
  4780. },
  4781. "notification-url": "https://packagist.org/downloads/",
  4782. "license": [
  4783. "MIT"
  4784. ],
  4785. "authors": [
  4786. {
  4787. "name": "Nicolas Grekas",
  4788. "email": "p@tchwork.com"
  4789. },
  4790. {
  4791. "name": "Symfony Community",
  4792. "homepage": "https://symfony.com/contributors"
  4793. }
  4794. ],
  4795. "description": "Decouples applications from the system clock",
  4796. "homepage": "https://symfony.com",
  4797. "keywords": [
  4798. "clock",
  4799. "psr20",
  4800. "time"
  4801. ],
  4802. "support": {
  4803. "source": "https://github.com/symfony/clock/tree/v7.4.0"
  4804. },
  4805. "funding": [
  4806. {
  4807. "url": "https://symfony.com/sponsor",
  4808. "type": "custom"
  4809. },
  4810. {
  4811. "url": "https://github.com/fabpot",
  4812. "type": "github"
  4813. },
  4814. {
  4815. "url": "https://github.com/nicolas-grekas",
  4816. "type": "github"
  4817. },
  4818. {
  4819. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4820. "type": "tidelift"
  4821. }
  4822. ],
  4823. "time": "2025-11-12T15:39:26+00:00"
  4824. },
  4825. {
  4826. "name": "symfony/console",
  4827. "version": "v7.3.6",
  4828. "source": {
  4829. "type": "git",
  4830. "url": "https://github.com/symfony/console.git",
  4831. "reference": "c28ad91448f86c5f6d9d2c70f0cf68bf135f252a"
  4832. },
  4833. "dist": {
  4834. "type": "zip",
  4835. "url": "https://api.github.com/repos/symfony/console/zipball/c28ad91448f86c5f6d9d2c70f0cf68bf135f252a",
  4836. "reference": "c28ad91448f86c5f6d9d2c70f0cf68bf135f252a",
  4837. "shasum": "",
  4838. "mirrors": [
  4839. {
  4840. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4841. "preferred": true
  4842. }
  4843. ]
  4844. },
  4845. "require": {
  4846. "php": ">=8.2",
  4847. "symfony/deprecation-contracts": "^2.5|^3",
  4848. "symfony/polyfill-mbstring": "~1.0",
  4849. "symfony/service-contracts": "^2.5|^3",
  4850. "symfony/string": "^7.2"
  4851. },
  4852. "conflict": {
  4853. "symfony/dependency-injection": "<6.4",
  4854. "symfony/dotenv": "<6.4",
  4855. "symfony/event-dispatcher": "<6.4",
  4856. "symfony/lock": "<6.4",
  4857. "symfony/process": "<6.4"
  4858. },
  4859. "provide": {
  4860. "psr/log-implementation": "1.0|2.0|3.0"
  4861. },
  4862. "require-dev": {
  4863. "psr/log": "^1|^2|^3",
  4864. "symfony/config": "^6.4|^7.0",
  4865. "symfony/dependency-injection": "^6.4|^7.0",
  4866. "symfony/event-dispatcher": "^6.4|^7.0",
  4867. "symfony/http-foundation": "^6.4|^7.0",
  4868. "symfony/http-kernel": "^6.4|^7.0",
  4869. "symfony/lock": "^6.4|^7.0",
  4870. "symfony/messenger": "^6.4|^7.0",
  4871. "symfony/process": "^6.4|^7.0",
  4872. "symfony/stopwatch": "^6.4|^7.0",
  4873. "symfony/var-dumper": "^6.4|^7.0"
  4874. },
  4875. "type": "library",
  4876. "autoload": {
  4877. "psr-4": {
  4878. "Symfony\\Component\\Console\\": ""
  4879. },
  4880. "exclude-from-classmap": [
  4881. "/Tests/"
  4882. ]
  4883. },
  4884. "notification-url": "https://packagist.org/downloads/",
  4885. "license": [
  4886. "MIT"
  4887. ],
  4888. "authors": [
  4889. {
  4890. "name": "Fabien Potencier",
  4891. "email": "fabien@symfony.com"
  4892. },
  4893. {
  4894. "name": "Symfony Community",
  4895. "homepage": "https://symfony.com/contributors"
  4896. }
  4897. ],
  4898. "description": "Eases the creation of beautiful and testable command line interfaces",
  4899. "homepage": "https://symfony.com",
  4900. "keywords": [
  4901. "cli",
  4902. "command-line",
  4903. "console",
  4904. "terminal"
  4905. ],
  4906. "support": {
  4907. "source": "https://github.com/symfony/console/tree/v7.3.6"
  4908. },
  4909. "funding": [
  4910. {
  4911. "url": "https://symfony.com/sponsor",
  4912. "type": "custom"
  4913. },
  4914. {
  4915. "url": "https://github.com/fabpot",
  4916. "type": "github"
  4917. },
  4918. {
  4919. "url": "https://github.com/nicolas-grekas",
  4920. "type": "github"
  4921. },
  4922. {
  4923. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4924. "type": "tidelift"
  4925. }
  4926. ],
  4927. "time": "2025-11-04T01:21:42+00:00"
  4928. },
  4929. {
  4930. "name": "symfony/css-selector",
  4931. "version": "v7.3.6",
  4932. "source": {
  4933. "type": "git",
  4934. "url": "https://github.com/symfony/css-selector.git",
  4935. "reference": "84321188c4754e64273b46b406081ad9b18e8614"
  4936. },
  4937. "dist": {
  4938. "type": "zip",
  4939. "url": "https://api.github.com/repos/symfony/css-selector/zipball/84321188c4754e64273b46b406081ad9b18e8614",
  4940. "reference": "84321188c4754e64273b46b406081ad9b18e8614",
  4941. "shasum": "",
  4942. "mirrors": [
  4943. {
  4944. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4945. "preferred": true
  4946. }
  4947. ]
  4948. },
  4949. "require": {
  4950. "php": ">=8.2"
  4951. },
  4952. "type": "library",
  4953. "autoload": {
  4954. "psr-4": {
  4955. "Symfony\\Component\\CssSelector\\": ""
  4956. },
  4957. "exclude-from-classmap": [
  4958. "/Tests/"
  4959. ]
  4960. },
  4961. "notification-url": "https://packagist.org/downloads/",
  4962. "license": [
  4963. "MIT"
  4964. ],
  4965. "authors": [
  4966. {
  4967. "name": "Fabien Potencier",
  4968. "email": "fabien@symfony.com"
  4969. },
  4970. {
  4971. "name": "Jean-François Simon",
  4972. "email": "jeanfrancois.simon@sensiolabs.com"
  4973. },
  4974. {
  4975. "name": "Symfony Community",
  4976. "homepage": "https://symfony.com/contributors"
  4977. }
  4978. ],
  4979. "description": "Converts CSS selectors to XPath expressions",
  4980. "homepage": "https://symfony.com",
  4981. "support": {
  4982. "source": "https://github.com/symfony/css-selector/tree/v7.3.6"
  4983. },
  4984. "funding": [
  4985. {
  4986. "url": "https://symfony.com/sponsor",
  4987. "type": "custom"
  4988. },
  4989. {
  4990. "url": "https://github.com/fabpot",
  4991. "type": "github"
  4992. },
  4993. {
  4994. "url": "https://github.com/nicolas-grekas",
  4995. "type": "github"
  4996. },
  4997. {
  4998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4999. "type": "tidelift"
  5000. }
  5001. ],
  5002. "time": "2025-10-29T17:24:25+00:00"
  5003. },
  5004. {
  5005. "name": "symfony/deprecation-contracts",
  5006. "version": "v3.5.1",
  5007. "source": {
  5008. "type": "git",
  5009. "url": "https://github.com/symfony/deprecation-contracts.git",
  5010. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  5011. },
  5012. "dist": {
  5013. "type": "zip",
  5014. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  5015. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  5016. "shasum": "",
  5017. "mirrors": [
  5018. {
  5019. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5020. "preferred": true
  5021. }
  5022. ]
  5023. },
  5024. "require": {
  5025. "php": ">=8.1"
  5026. },
  5027. "type": "library",
  5028. "extra": {
  5029. "thanks": {
  5030. "url": "https://github.com/symfony/contracts",
  5031. "name": "symfony/contracts"
  5032. },
  5033. "branch-alias": {
  5034. "dev-main": "3.5-dev"
  5035. }
  5036. },
  5037. "autoload": {
  5038. "files": [
  5039. "function.php"
  5040. ]
  5041. },
  5042. "notification-url": "https://packagist.org/downloads/",
  5043. "license": [
  5044. "MIT"
  5045. ],
  5046. "authors": [
  5047. {
  5048. "name": "Nicolas Grekas",
  5049. "email": "p@tchwork.com"
  5050. },
  5051. {
  5052. "name": "Symfony Community",
  5053. "homepage": "https://symfony.com/contributors"
  5054. }
  5055. ],
  5056. "description": "A generic function and convention to trigger deprecation notices",
  5057. "homepage": "https://symfony.com",
  5058. "support": {
  5059. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  5060. },
  5061. "funding": [
  5062. {
  5063. "url": "https://symfony.com/sponsor",
  5064. "type": "custom"
  5065. },
  5066. {
  5067. "url": "https://github.com/fabpot",
  5068. "type": "github"
  5069. },
  5070. {
  5071. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5072. "type": "tidelift"
  5073. }
  5074. ],
  5075. "time": "2024-09-25T14:20:29+00:00"
  5076. },
  5077. {
  5078. "name": "symfony/error-handler",
  5079. "version": "v7.2.5",
  5080. "source": {
  5081. "type": "git",
  5082. "url": "https://github.com/symfony/error-handler.git",
  5083. "reference": "102be5e6a8e4f4f3eb3149bcbfa33a80d1ee374b"
  5084. },
  5085. "dist": {
  5086. "type": "zip",
  5087. "url": "https://api.github.com/repos/symfony/error-handler/zipball/102be5e6a8e4f4f3eb3149bcbfa33a80d1ee374b",
  5088. "reference": "102be5e6a8e4f4f3eb3149bcbfa33a80d1ee374b",
  5089. "shasum": "",
  5090. "mirrors": [
  5091. {
  5092. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5093. "preferred": true
  5094. }
  5095. ]
  5096. },
  5097. "require": {
  5098. "php": ">=8.2",
  5099. "psr/log": "^1|^2|^3",
  5100. "symfony/var-dumper": "^6.4|^7.0"
  5101. },
  5102. "conflict": {
  5103. "symfony/deprecation-contracts": "<2.5",
  5104. "symfony/http-kernel": "<6.4"
  5105. },
  5106. "require-dev": {
  5107. "symfony/deprecation-contracts": "^2.5|^3",
  5108. "symfony/http-kernel": "^6.4|^7.0",
  5109. "symfony/serializer": "^6.4|^7.0"
  5110. },
  5111. "bin": [
  5112. "Resources/bin/patch-type-declarations"
  5113. ],
  5114. "type": "library",
  5115. "autoload": {
  5116. "psr-4": {
  5117. "Symfony\\Component\\ErrorHandler\\": ""
  5118. },
  5119. "exclude-from-classmap": [
  5120. "/Tests/"
  5121. ]
  5122. },
  5123. "notification-url": "https://packagist.org/downloads/",
  5124. "license": [
  5125. "MIT"
  5126. ],
  5127. "authors": [
  5128. {
  5129. "name": "Fabien Potencier",
  5130. "email": "fabien@symfony.com"
  5131. },
  5132. {
  5133. "name": "Symfony Community",
  5134. "homepage": "https://symfony.com/contributors"
  5135. }
  5136. ],
  5137. "description": "Provides tools to manage errors and ease debugging PHP code",
  5138. "homepage": "https://symfony.com",
  5139. "support": {
  5140. "source": "https://github.com/symfony/error-handler/tree/v7.2.5"
  5141. },
  5142. "funding": [
  5143. {
  5144. "url": "https://symfony.com/sponsor",
  5145. "type": "custom"
  5146. },
  5147. {
  5148. "url": "https://github.com/fabpot",
  5149. "type": "github"
  5150. },
  5151. {
  5152. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5153. "type": "tidelift"
  5154. }
  5155. ],
  5156. "time": "2025-03-03T07:12:39+00:00"
  5157. },
  5158. {
  5159. "name": "symfony/event-dispatcher",
  5160. "version": "v7.3.3",
  5161. "source": {
  5162. "type": "git",
  5163. "url": "https://github.com/symfony/event-dispatcher.git",
  5164. "reference": "b7dc69e71de420ac04bc9ab830cf3ffebba48191"
  5165. },
  5166. "dist": {
  5167. "type": "zip",
  5168. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/b7dc69e71de420ac04bc9ab830cf3ffebba48191",
  5169. "reference": "b7dc69e71de420ac04bc9ab830cf3ffebba48191",
  5170. "shasum": "",
  5171. "mirrors": [
  5172. {
  5173. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5174. "preferred": true
  5175. }
  5176. ]
  5177. },
  5178. "require": {
  5179. "php": ">=8.2",
  5180. "symfony/event-dispatcher-contracts": "^2.5|^3"
  5181. },
  5182. "conflict": {
  5183. "symfony/dependency-injection": "<6.4",
  5184. "symfony/service-contracts": "<2.5"
  5185. },
  5186. "provide": {
  5187. "psr/event-dispatcher-implementation": "1.0",
  5188. "symfony/event-dispatcher-implementation": "2.0|3.0"
  5189. },
  5190. "require-dev": {
  5191. "psr/log": "^1|^2|^3",
  5192. "symfony/config": "^6.4|^7.0",
  5193. "symfony/dependency-injection": "^6.4|^7.0",
  5194. "symfony/error-handler": "^6.4|^7.0",
  5195. "symfony/expression-language": "^6.4|^7.0",
  5196. "symfony/http-foundation": "^6.4|^7.0",
  5197. "symfony/service-contracts": "^2.5|^3",
  5198. "symfony/stopwatch": "^6.4|^7.0"
  5199. },
  5200. "type": "library",
  5201. "autoload": {
  5202. "psr-4": {
  5203. "Symfony\\Component\\EventDispatcher\\": ""
  5204. },
  5205. "exclude-from-classmap": [
  5206. "/Tests/"
  5207. ]
  5208. },
  5209. "notification-url": "https://packagist.org/downloads/",
  5210. "license": [
  5211. "MIT"
  5212. ],
  5213. "authors": [
  5214. {
  5215. "name": "Fabien Potencier",
  5216. "email": "fabien@symfony.com"
  5217. },
  5218. {
  5219. "name": "Symfony Community",
  5220. "homepage": "https://symfony.com/contributors"
  5221. }
  5222. ],
  5223. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5224. "homepage": "https://symfony.com",
  5225. "support": {
  5226. "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.3"
  5227. },
  5228. "funding": [
  5229. {
  5230. "url": "https://symfony.com/sponsor",
  5231. "type": "custom"
  5232. },
  5233. {
  5234. "url": "https://github.com/fabpot",
  5235. "type": "github"
  5236. },
  5237. {
  5238. "url": "https://github.com/nicolas-grekas",
  5239. "type": "github"
  5240. },
  5241. {
  5242. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5243. "type": "tidelift"
  5244. }
  5245. ],
  5246. "time": "2025-08-13T11:49:31+00:00"
  5247. },
  5248. {
  5249. "name": "symfony/event-dispatcher-contracts",
  5250. "version": "v3.5.1",
  5251. "source": {
  5252. "type": "git",
  5253. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5254. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  5255. },
  5256. "dist": {
  5257. "type": "zip",
  5258. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  5259. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  5260. "shasum": "",
  5261. "mirrors": [
  5262. {
  5263. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5264. "preferred": true
  5265. }
  5266. ]
  5267. },
  5268. "require": {
  5269. "php": ">=8.1",
  5270. "psr/event-dispatcher": "^1"
  5271. },
  5272. "type": "library",
  5273. "extra": {
  5274. "thanks": {
  5275. "url": "https://github.com/symfony/contracts",
  5276. "name": "symfony/contracts"
  5277. },
  5278. "branch-alias": {
  5279. "dev-main": "3.5-dev"
  5280. }
  5281. },
  5282. "autoload": {
  5283. "psr-4": {
  5284. "Symfony\\Contracts\\EventDispatcher\\": ""
  5285. }
  5286. },
  5287. "notification-url": "https://packagist.org/downloads/",
  5288. "license": [
  5289. "MIT"
  5290. ],
  5291. "authors": [
  5292. {
  5293. "name": "Nicolas Grekas",
  5294. "email": "p@tchwork.com"
  5295. },
  5296. {
  5297. "name": "Symfony Community",
  5298. "homepage": "https://symfony.com/contributors"
  5299. }
  5300. ],
  5301. "description": "Generic abstractions related to dispatching event",
  5302. "homepage": "https://symfony.com",
  5303. "keywords": [
  5304. "abstractions",
  5305. "contracts",
  5306. "decoupling",
  5307. "interfaces",
  5308. "interoperability",
  5309. "standards"
  5310. ],
  5311. "support": {
  5312. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  5313. },
  5314. "funding": [
  5315. {
  5316. "url": "https://symfony.com/sponsor",
  5317. "type": "custom"
  5318. },
  5319. {
  5320. "url": "https://github.com/fabpot",
  5321. "type": "github"
  5322. },
  5323. {
  5324. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5325. "type": "tidelift"
  5326. }
  5327. ],
  5328. "time": "2024-09-25T14:20:29+00:00"
  5329. },
  5330. {
  5331. "name": "symfony/finder",
  5332. "version": "v7.3.2",
  5333. "source": {
  5334. "type": "git",
  5335. "url": "https://github.com/symfony/finder.git",
  5336. "reference": "2a6614966ba1074fa93dae0bc804227422df4dfe"
  5337. },
  5338. "dist": {
  5339. "type": "zip",
  5340. "url": "https://api.github.com/repos/symfony/finder/zipball/2a6614966ba1074fa93dae0bc804227422df4dfe",
  5341. "reference": "2a6614966ba1074fa93dae0bc804227422df4dfe",
  5342. "shasum": "",
  5343. "mirrors": [
  5344. {
  5345. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5346. "preferred": true
  5347. }
  5348. ]
  5349. },
  5350. "require": {
  5351. "php": ">=8.2"
  5352. },
  5353. "require-dev": {
  5354. "symfony/filesystem": "^6.4|^7.0"
  5355. },
  5356. "type": "library",
  5357. "autoload": {
  5358. "psr-4": {
  5359. "Symfony\\Component\\Finder\\": ""
  5360. },
  5361. "exclude-from-classmap": [
  5362. "/Tests/"
  5363. ]
  5364. },
  5365. "notification-url": "https://packagist.org/downloads/",
  5366. "license": [
  5367. "MIT"
  5368. ],
  5369. "authors": [
  5370. {
  5371. "name": "Fabien Potencier",
  5372. "email": "fabien@symfony.com"
  5373. },
  5374. {
  5375. "name": "Symfony Community",
  5376. "homepage": "https://symfony.com/contributors"
  5377. }
  5378. ],
  5379. "description": "Finds files and directories via an intuitive fluent interface",
  5380. "homepage": "https://symfony.com",
  5381. "support": {
  5382. "source": "https://github.com/symfony/finder/tree/v7.3.2"
  5383. },
  5384. "funding": [
  5385. {
  5386. "url": "https://symfony.com/sponsor",
  5387. "type": "custom"
  5388. },
  5389. {
  5390. "url": "https://github.com/fabpot",
  5391. "type": "github"
  5392. },
  5393. {
  5394. "url": "https://github.com/nicolas-grekas",
  5395. "type": "github"
  5396. },
  5397. {
  5398. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5399. "type": "tidelift"
  5400. }
  5401. ],
  5402. "time": "2025-07-15T13:41:35+00:00"
  5403. },
  5404. {
  5405. "name": "symfony/http-foundation",
  5406. "version": "v7.3.5",
  5407. "source": {
  5408. "type": "git",
  5409. "url": "https://github.com/symfony/http-foundation.git",
  5410. "reference": "ce31218c7cac92eab280762c4375fb70a6f4f897"
  5411. },
  5412. "dist": {
  5413. "type": "zip",
  5414. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ce31218c7cac92eab280762c4375fb70a6f4f897",
  5415. "reference": "ce31218c7cac92eab280762c4375fb70a6f4f897",
  5416. "shasum": "",
  5417. "mirrors": [
  5418. {
  5419. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5420. "preferred": true
  5421. }
  5422. ]
  5423. },
  5424. "require": {
  5425. "php": ">=8.2",
  5426. "symfony/deprecation-contracts": "^2.5|^3.0",
  5427. "symfony/polyfill-mbstring": "~1.1",
  5428. "symfony/polyfill-php83": "^1.27"
  5429. },
  5430. "conflict": {
  5431. "doctrine/dbal": "<3.6",
  5432. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  5433. },
  5434. "require-dev": {
  5435. "doctrine/dbal": "^3.6|^4",
  5436. "predis/predis": "^1.1|^2.0",
  5437. "symfony/cache": "^6.4.12|^7.1.5",
  5438. "symfony/clock": "^6.4|^7.0",
  5439. "symfony/dependency-injection": "^6.4|^7.0",
  5440. "symfony/expression-language": "^6.4|^7.0",
  5441. "symfony/http-kernel": "^6.4|^7.0",
  5442. "symfony/mime": "^6.4|^7.0",
  5443. "symfony/rate-limiter": "^6.4|^7.0"
  5444. },
  5445. "type": "library",
  5446. "autoload": {
  5447. "psr-4": {
  5448. "Symfony\\Component\\HttpFoundation\\": ""
  5449. },
  5450. "exclude-from-classmap": [
  5451. "/Tests/"
  5452. ]
  5453. },
  5454. "notification-url": "https://packagist.org/downloads/",
  5455. "license": [
  5456. "MIT"
  5457. ],
  5458. "authors": [
  5459. {
  5460. "name": "Fabien Potencier",
  5461. "email": "fabien@symfony.com"
  5462. },
  5463. {
  5464. "name": "Symfony Community",
  5465. "homepage": "https://symfony.com/contributors"
  5466. }
  5467. ],
  5468. "description": "Defines an object-oriented layer for the HTTP specification",
  5469. "homepage": "https://symfony.com",
  5470. "support": {
  5471. "source": "https://github.com/symfony/http-foundation/tree/v7.3.5"
  5472. },
  5473. "funding": [
  5474. {
  5475. "url": "https://symfony.com/sponsor",
  5476. "type": "custom"
  5477. },
  5478. {
  5479. "url": "https://github.com/fabpot",
  5480. "type": "github"
  5481. },
  5482. {
  5483. "url": "https://github.com/nicolas-grekas",
  5484. "type": "github"
  5485. },
  5486. {
  5487. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5488. "type": "tidelift"
  5489. }
  5490. ],
  5491. "time": "2025-10-24T21:42:11+00:00"
  5492. },
  5493. {
  5494. "name": "symfony/http-kernel",
  5495. "version": "v7.3.1",
  5496. "source": {
  5497. "type": "git",
  5498. "url": "https://github.com/symfony/http-kernel.git",
  5499. "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831"
  5500. },
  5501. "dist": {
  5502. "type": "zip",
  5503. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1644879a66e4aa29c36fe33dfa6c54b450ce1831",
  5504. "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831",
  5505. "shasum": "",
  5506. "mirrors": [
  5507. {
  5508. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5509. "preferred": true
  5510. }
  5511. ]
  5512. },
  5513. "require": {
  5514. "php": ">=8.2",
  5515. "psr/log": "^1|^2|^3",
  5516. "symfony/deprecation-contracts": "^2.5|^3",
  5517. "symfony/error-handler": "^6.4|^7.0",
  5518. "symfony/event-dispatcher": "^7.3",
  5519. "symfony/http-foundation": "^7.3",
  5520. "symfony/polyfill-ctype": "^1.8"
  5521. },
  5522. "conflict": {
  5523. "symfony/browser-kit": "<6.4",
  5524. "symfony/cache": "<6.4",
  5525. "symfony/config": "<6.4",
  5526. "symfony/console": "<6.4",
  5527. "symfony/dependency-injection": "<6.4",
  5528. "symfony/doctrine-bridge": "<6.4",
  5529. "symfony/form": "<6.4",
  5530. "symfony/http-client": "<6.4",
  5531. "symfony/http-client-contracts": "<2.5",
  5532. "symfony/mailer": "<6.4",
  5533. "symfony/messenger": "<6.4",
  5534. "symfony/translation": "<6.4",
  5535. "symfony/translation-contracts": "<2.5",
  5536. "symfony/twig-bridge": "<6.4",
  5537. "symfony/validator": "<6.4",
  5538. "symfony/var-dumper": "<6.4",
  5539. "twig/twig": "<3.12"
  5540. },
  5541. "provide": {
  5542. "psr/log-implementation": "1.0|2.0|3.0"
  5543. },
  5544. "require-dev": {
  5545. "psr/cache": "^1.0|^2.0|^3.0",
  5546. "symfony/browser-kit": "^6.4|^7.0",
  5547. "symfony/clock": "^6.4|^7.0",
  5548. "symfony/config": "^6.4|^7.0",
  5549. "symfony/console": "^6.4|^7.0",
  5550. "symfony/css-selector": "^6.4|^7.0",
  5551. "symfony/dependency-injection": "^6.4|^7.0",
  5552. "symfony/dom-crawler": "^6.4|^7.0",
  5553. "symfony/expression-language": "^6.4|^7.0",
  5554. "symfony/finder": "^6.4|^7.0",
  5555. "symfony/http-client-contracts": "^2.5|^3",
  5556. "symfony/process": "^6.4|^7.0",
  5557. "symfony/property-access": "^7.1",
  5558. "symfony/routing": "^6.4|^7.0",
  5559. "symfony/serializer": "^7.1",
  5560. "symfony/stopwatch": "^6.4|^7.0",
  5561. "symfony/translation": "^6.4|^7.0",
  5562. "symfony/translation-contracts": "^2.5|^3",
  5563. "symfony/uid": "^6.4|^7.0",
  5564. "symfony/validator": "^6.4|^7.0",
  5565. "symfony/var-dumper": "^6.4|^7.0",
  5566. "symfony/var-exporter": "^6.4|^7.0",
  5567. "twig/twig": "^3.12"
  5568. },
  5569. "type": "library",
  5570. "autoload": {
  5571. "psr-4": {
  5572. "Symfony\\Component\\HttpKernel\\": ""
  5573. },
  5574. "exclude-from-classmap": [
  5575. "/Tests/"
  5576. ]
  5577. },
  5578. "notification-url": "https://packagist.org/downloads/",
  5579. "license": [
  5580. "MIT"
  5581. ],
  5582. "authors": [
  5583. {
  5584. "name": "Fabien Potencier",
  5585. "email": "fabien@symfony.com"
  5586. },
  5587. {
  5588. "name": "Symfony Community",
  5589. "homepage": "https://symfony.com/contributors"
  5590. }
  5591. ],
  5592. "description": "Provides a structured process for converting a Request into a Response",
  5593. "homepage": "https://symfony.com",
  5594. "support": {
  5595. "source": "https://github.com/symfony/http-kernel/tree/v7.3.1"
  5596. },
  5597. "funding": [
  5598. {
  5599. "url": "https://symfony.com/sponsor",
  5600. "type": "custom"
  5601. },
  5602. {
  5603. "url": "https://github.com/fabpot",
  5604. "type": "github"
  5605. },
  5606. {
  5607. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5608. "type": "tidelift"
  5609. }
  5610. ],
  5611. "time": "2025-06-28T08:24:55+00:00"
  5612. },
  5613. {
  5614. "name": "symfony/mailer",
  5615. "version": "v7.2.6",
  5616. "source": {
  5617. "type": "git",
  5618. "url": "https://github.com/symfony/mailer.git",
  5619. "reference": "998692469d6e698c6eadc7ef37a6530a9eabb356"
  5620. },
  5621. "dist": {
  5622. "type": "zip",
  5623. "url": "https://api.github.com/repos/symfony/mailer/zipball/998692469d6e698c6eadc7ef37a6530a9eabb356",
  5624. "reference": "998692469d6e698c6eadc7ef37a6530a9eabb356",
  5625. "shasum": "",
  5626. "mirrors": [
  5627. {
  5628. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5629. "preferred": true
  5630. }
  5631. ]
  5632. },
  5633. "require": {
  5634. "egulias/email-validator": "^2.1.10|^3|^4",
  5635. "php": ">=8.2",
  5636. "psr/event-dispatcher": "^1",
  5637. "psr/log": "^1|^2|^3",
  5638. "symfony/event-dispatcher": "^6.4|^7.0",
  5639. "symfony/mime": "^7.2",
  5640. "symfony/service-contracts": "^2.5|^3"
  5641. },
  5642. "conflict": {
  5643. "symfony/http-client-contracts": "<2.5",
  5644. "symfony/http-kernel": "<6.4",
  5645. "symfony/messenger": "<6.4",
  5646. "symfony/mime": "<6.4",
  5647. "symfony/twig-bridge": "<6.4"
  5648. },
  5649. "require-dev": {
  5650. "symfony/console": "^6.4|^7.0",
  5651. "symfony/http-client": "^6.4|^7.0",
  5652. "symfony/messenger": "^6.4|^7.0",
  5653. "symfony/twig-bridge": "^6.4|^7.0"
  5654. },
  5655. "type": "library",
  5656. "autoload": {
  5657. "psr-4": {
  5658. "Symfony\\Component\\Mailer\\": ""
  5659. },
  5660. "exclude-from-classmap": [
  5661. "/Tests/"
  5662. ]
  5663. },
  5664. "notification-url": "https://packagist.org/downloads/",
  5665. "license": [
  5666. "MIT"
  5667. ],
  5668. "authors": [
  5669. {
  5670. "name": "Fabien Potencier",
  5671. "email": "fabien@symfony.com"
  5672. },
  5673. {
  5674. "name": "Symfony Community",
  5675. "homepage": "https://symfony.com/contributors"
  5676. }
  5677. ],
  5678. "description": "Helps sending emails",
  5679. "homepage": "https://symfony.com",
  5680. "support": {
  5681. "source": "https://github.com/symfony/mailer/tree/v7.2.6"
  5682. },
  5683. "funding": [
  5684. {
  5685. "url": "https://symfony.com/sponsor",
  5686. "type": "custom"
  5687. },
  5688. {
  5689. "url": "https://github.com/fabpot",
  5690. "type": "github"
  5691. },
  5692. {
  5693. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5694. "type": "tidelift"
  5695. }
  5696. ],
  5697. "time": "2025-04-04T09:50:51+00:00"
  5698. },
  5699. {
  5700. "name": "symfony/mime",
  5701. "version": "v7.3.4",
  5702. "source": {
  5703. "type": "git",
  5704. "url": "https://github.com/symfony/mime.git",
  5705. "reference": "b1b828f69cbaf887fa835a091869e55df91d0e35"
  5706. },
  5707. "dist": {
  5708. "type": "zip",
  5709. "url": "https://api.github.com/repos/symfony/mime/zipball/b1b828f69cbaf887fa835a091869e55df91d0e35",
  5710. "reference": "b1b828f69cbaf887fa835a091869e55df91d0e35",
  5711. "shasum": "",
  5712. "mirrors": [
  5713. {
  5714. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5715. "preferred": true
  5716. }
  5717. ]
  5718. },
  5719. "require": {
  5720. "php": ">=8.2",
  5721. "symfony/polyfill-intl-idn": "^1.10",
  5722. "symfony/polyfill-mbstring": "^1.0"
  5723. },
  5724. "conflict": {
  5725. "egulias/email-validator": "~3.0.0",
  5726. "phpdocumentor/reflection-docblock": "<3.2.2",
  5727. "phpdocumentor/type-resolver": "<1.4.0",
  5728. "symfony/mailer": "<6.4",
  5729. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  5730. },
  5731. "require-dev": {
  5732. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5733. "league/html-to-markdown": "^5.0",
  5734. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5735. "symfony/dependency-injection": "^6.4|^7.0",
  5736. "symfony/process": "^6.4|^7.0",
  5737. "symfony/property-access": "^6.4|^7.0",
  5738. "symfony/property-info": "^6.4|^7.0",
  5739. "symfony/serializer": "^6.4.3|^7.0.3"
  5740. },
  5741. "type": "library",
  5742. "autoload": {
  5743. "psr-4": {
  5744. "Symfony\\Component\\Mime\\": ""
  5745. },
  5746. "exclude-from-classmap": [
  5747. "/Tests/"
  5748. ]
  5749. },
  5750. "notification-url": "https://packagist.org/downloads/",
  5751. "license": [
  5752. "MIT"
  5753. ],
  5754. "authors": [
  5755. {
  5756. "name": "Fabien Potencier",
  5757. "email": "fabien@symfony.com"
  5758. },
  5759. {
  5760. "name": "Symfony Community",
  5761. "homepage": "https://symfony.com/contributors"
  5762. }
  5763. ],
  5764. "description": "Allows manipulating MIME messages",
  5765. "homepage": "https://symfony.com",
  5766. "keywords": [
  5767. "mime",
  5768. "mime-type"
  5769. ],
  5770. "support": {
  5771. "source": "https://github.com/symfony/mime/tree/v7.3.4"
  5772. },
  5773. "funding": [
  5774. {
  5775. "url": "https://symfony.com/sponsor",
  5776. "type": "custom"
  5777. },
  5778. {
  5779. "url": "https://github.com/fabpot",
  5780. "type": "github"
  5781. },
  5782. {
  5783. "url": "https://github.com/nicolas-grekas",
  5784. "type": "github"
  5785. },
  5786. {
  5787. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5788. "type": "tidelift"
  5789. }
  5790. ],
  5791. "time": "2025-09-16T08:38:17+00:00"
  5792. },
  5793. {
  5794. "name": "symfony/polyfill-ctype",
  5795. "version": "v1.32.0",
  5796. "source": {
  5797. "type": "git",
  5798. "url": "https://github.com/symfony/polyfill-ctype.git",
  5799. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  5800. },
  5801. "dist": {
  5802. "type": "zip",
  5803. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  5804. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  5805. "shasum": "",
  5806. "mirrors": [
  5807. {
  5808. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5809. "preferred": true
  5810. }
  5811. ]
  5812. },
  5813. "require": {
  5814. "php": ">=7.2"
  5815. },
  5816. "provide": {
  5817. "ext-ctype": "*"
  5818. },
  5819. "suggest": {
  5820. "ext-ctype": "For best performance"
  5821. },
  5822. "type": "library",
  5823. "extra": {
  5824. "thanks": {
  5825. "url": "https://github.com/symfony/polyfill",
  5826. "name": "symfony/polyfill"
  5827. }
  5828. },
  5829. "autoload": {
  5830. "files": [
  5831. "bootstrap.php"
  5832. ],
  5833. "psr-4": {
  5834. "Symfony\\Polyfill\\Ctype\\": ""
  5835. }
  5836. },
  5837. "notification-url": "https://packagist.org/downloads/",
  5838. "license": [
  5839. "MIT"
  5840. ],
  5841. "authors": [
  5842. {
  5843. "name": "Gert de Pagter",
  5844. "email": "BackEndTea@gmail.com"
  5845. },
  5846. {
  5847. "name": "Symfony Community",
  5848. "homepage": "https://symfony.com/contributors"
  5849. }
  5850. ],
  5851. "description": "Symfony polyfill for ctype functions",
  5852. "homepage": "https://symfony.com",
  5853. "keywords": [
  5854. "compatibility",
  5855. "ctype",
  5856. "polyfill",
  5857. "portable"
  5858. ],
  5859. "support": {
  5860. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
  5861. },
  5862. "funding": [
  5863. {
  5864. "url": "https://symfony.com/sponsor",
  5865. "type": "custom"
  5866. },
  5867. {
  5868. "url": "https://github.com/fabpot",
  5869. "type": "github"
  5870. },
  5871. {
  5872. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5873. "type": "tidelift"
  5874. }
  5875. ],
  5876. "time": "2024-09-09T11:45:10+00:00"
  5877. },
  5878. {
  5879. "name": "symfony/polyfill-intl-grapheme",
  5880. "version": "v1.32.0",
  5881. "source": {
  5882. "type": "git",
  5883. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5884. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  5885. },
  5886. "dist": {
  5887. "type": "zip",
  5888. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5889. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5890. "shasum": "",
  5891. "mirrors": [
  5892. {
  5893. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5894. "preferred": true
  5895. }
  5896. ]
  5897. },
  5898. "require": {
  5899. "php": ">=7.2"
  5900. },
  5901. "suggest": {
  5902. "ext-intl": "For best performance"
  5903. },
  5904. "type": "library",
  5905. "extra": {
  5906. "thanks": {
  5907. "url": "https://github.com/symfony/polyfill",
  5908. "name": "symfony/polyfill"
  5909. }
  5910. },
  5911. "autoload": {
  5912. "files": [
  5913. "bootstrap.php"
  5914. ],
  5915. "psr-4": {
  5916. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5917. }
  5918. },
  5919. "notification-url": "https://packagist.org/downloads/",
  5920. "license": [
  5921. "MIT"
  5922. ],
  5923. "authors": [
  5924. {
  5925. "name": "Nicolas Grekas",
  5926. "email": "p@tchwork.com"
  5927. },
  5928. {
  5929. "name": "Symfony Community",
  5930. "homepage": "https://symfony.com/contributors"
  5931. }
  5932. ],
  5933. "description": "Symfony polyfill for intl's grapheme_* functions",
  5934. "homepage": "https://symfony.com",
  5935. "keywords": [
  5936. "compatibility",
  5937. "grapheme",
  5938. "intl",
  5939. "polyfill",
  5940. "portable",
  5941. "shim"
  5942. ],
  5943. "support": {
  5944. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
  5945. },
  5946. "funding": [
  5947. {
  5948. "url": "https://symfony.com/sponsor",
  5949. "type": "custom"
  5950. },
  5951. {
  5952. "url": "https://github.com/fabpot",
  5953. "type": "github"
  5954. },
  5955. {
  5956. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5957. "type": "tidelift"
  5958. }
  5959. ],
  5960. "time": "2024-09-09T11:45:10+00:00"
  5961. },
  5962. {
  5963. "name": "symfony/polyfill-intl-idn",
  5964. "version": "v1.32.0",
  5965. "source": {
  5966. "type": "git",
  5967. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5968. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  5969. },
  5970. "dist": {
  5971. "type": "zip",
  5972. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  5973. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  5974. "shasum": "",
  5975. "mirrors": [
  5976. {
  5977. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5978. "preferred": true
  5979. }
  5980. ]
  5981. },
  5982. "require": {
  5983. "php": ">=7.2",
  5984. "symfony/polyfill-intl-normalizer": "^1.10"
  5985. },
  5986. "suggest": {
  5987. "ext-intl": "For best performance"
  5988. },
  5989. "type": "library",
  5990. "extra": {
  5991. "thanks": {
  5992. "url": "https://github.com/symfony/polyfill",
  5993. "name": "symfony/polyfill"
  5994. }
  5995. },
  5996. "autoload": {
  5997. "files": [
  5998. "bootstrap.php"
  5999. ],
  6000. "psr-4": {
  6001. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6002. }
  6003. },
  6004. "notification-url": "https://packagist.org/downloads/",
  6005. "license": [
  6006. "MIT"
  6007. ],
  6008. "authors": [
  6009. {
  6010. "name": "Laurent Bassin",
  6011. "email": "laurent@bassin.info"
  6012. },
  6013. {
  6014. "name": "Trevor Rowbotham",
  6015. "email": "trevor.rowbotham@pm.me"
  6016. },
  6017. {
  6018. "name": "Symfony Community",
  6019. "homepage": "https://symfony.com/contributors"
  6020. }
  6021. ],
  6022. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6023. "homepage": "https://symfony.com",
  6024. "keywords": [
  6025. "compatibility",
  6026. "idn",
  6027. "intl",
  6028. "polyfill",
  6029. "portable",
  6030. "shim"
  6031. ],
  6032. "support": {
  6033. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  6034. },
  6035. "funding": [
  6036. {
  6037. "url": "https://symfony.com/sponsor",
  6038. "type": "custom"
  6039. },
  6040. {
  6041. "url": "https://github.com/fabpot",
  6042. "type": "github"
  6043. },
  6044. {
  6045. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6046. "type": "tidelift"
  6047. }
  6048. ],
  6049. "time": "2024-09-10T14:38:51+00:00"
  6050. },
  6051. {
  6052. "name": "symfony/polyfill-intl-normalizer",
  6053. "version": "v1.32.0",
  6054. "source": {
  6055. "type": "git",
  6056. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6057. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  6058. },
  6059. "dist": {
  6060. "type": "zip",
  6061. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  6062. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  6063. "shasum": "",
  6064. "mirrors": [
  6065. {
  6066. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6067. "preferred": true
  6068. }
  6069. ]
  6070. },
  6071. "require": {
  6072. "php": ">=7.2"
  6073. },
  6074. "suggest": {
  6075. "ext-intl": "For best performance"
  6076. },
  6077. "type": "library",
  6078. "extra": {
  6079. "thanks": {
  6080. "url": "https://github.com/symfony/polyfill",
  6081. "name": "symfony/polyfill"
  6082. }
  6083. },
  6084. "autoload": {
  6085. "files": [
  6086. "bootstrap.php"
  6087. ],
  6088. "psr-4": {
  6089. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6090. },
  6091. "classmap": [
  6092. "Resources/stubs"
  6093. ]
  6094. },
  6095. "notification-url": "https://packagist.org/downloads/",
  6096. "license": [
  6097. "MIT"
  6098. ],
  6099. "authors": [
  6100. {
  6101. "name": "Nicolas Grekas",
  6102. "email": "p@tchwork.com"
  6103. },
  6104. {
  6105. "name": "Symfony Community",
  6106. "homepage": "https://symfony.com/contributors"
  6107. }
  6108. ],
  6109. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6110. "homepage": "https://symfony.com",
  6111. "keywords": [
  6112. "compatibility",
  6113. "intl",
  6114. "normalizer",
  6115. "polyfill",
  6116. "portable",
  6117. "shim"
  6118. ],
  6119. "support": {
  6120. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  6121. },
  6122. "funding": [
  6123. {
  6124. "url": "https://symfony.com/sponsor",
  6125. "type": "custom"
  6126. },
  6127. {
  6128. "url": "https://github.com/fabpot",
  6129. "type": "github"
  6130. },
  6131. {
  6132. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6133. "type": "tidelift"
  6134. }
  6135. ],
  6136. "time": "2024-09-09T11:45:10+00:00"
  6137. },
  6138. {
  6139. "name": "symfony/polyfill-mbstring",
  6140. "version": "v1.32.0",
  6141. "source": {
  6142. "type": "git",
  6143. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6144. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  6145. },
  6146. "dist": {
  6147. "type": "zip",
  6148. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6149. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  6150. "shasum": "",
  6151. "mirrors": [
  6152. {
  6153. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6154. "preferred": true
  6155. }
  6156. ]
  6157. },
  6158. "require": {
  6159. "ext-iconv": "*",
  6160. "php": ">=7.2"
  6161. },
  6162. "provide": {
  6163. "ext-mbstring": "*"
  6164. },
  6165. "suggest": {
  6166. "ext-mbstring": "For best performance"
  6167. },
  6168. "type": "library",
  6169. "extra": {
  6170. "thanks": {
  6171. "url": "https://github.com/symfony/polyfill",
  6172. "name": "symfony/polyfill"
  6173. }
  6174. },
  6175. "autoload": {
  6176. "files": [
  6177. "bootstrap.php"
  6178. ],
  6179. "psr-4": {
  6180. "Symfony\\Polyfill\\Mbstring\\": ""
  6181. }
  6182. },
  6183. "notification-url": "https://packagist.org/downloads/",
  6184. "license": [
  6185. "MIT"
  6186. ],
  6187. "authors": [
  6188. {
  6189. "name": "Nicolas Grekas",
  6190. "email": "p@tchwork.com"
  6191. },
  6192. {
  6193. "name": "Symfony Community",
  6194. "homepage": "https://symfony.com/contributors"
  6195. }
  6196. ],
  6197. "description": "Symfony polyfill for the Mbstring extension",
  6198. "homepage": "https://symfony.com",
  6199. "keywords": [
  6200. "compatibility",
  6201. "mbstring",
  6202. "polyfill",
  6203. "portable",
  6204. "shim"
  6205. ],
  6206. "support": {
  6207. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  6208. },
  6209. "funding": [
  6210. {
  6211. "url": "https://symfony.com/sponsor",
  6212. "type": "custom"
  6213. },
  6214. {
  6215. "url": "https://github.com/fabpot",
  6216. "type": "github"
  6217. },
  6218. {
  6219. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6220. "type": "tidelift"
  6221. }
  6222. ],
  6223. "time": "2024-12-23T08:48:59+00:00"
  6224. },
  6225. {
  6226. "name": "symfony/polyfill-php80",
  6227. "version": "v1.32.0",
  6228. "source": {
  6229. "type": "git",
  6230. "url": "https://github.com/symfony/polyfill-php80.git",
  6231. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  6232. },
  6233. "dist": {
  6234. "type": "zip",
  6235. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6236. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  6237. "shasum": "",
  6238. "mirrors": [
  6239. {
  6240. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6241. "preferred": true
  6242. }
  6243. ]
  6244. },
  6245. "require": {
  6246. "php": ">=7.2"
  6247. },
  6248. "type": "library",
  6249. "extra": {
  6250. "thanks": {
  6251. "url": "https://github.com/symfony/polyfill",
  6252. "name": "symfony/polyfill"
  6253. }
  6254. },
  6255. "autoload": {
  6256. "files": [
  6257. "bootstrap.php"
  6258. ],
  6259. "psr-4": {
  6260. "Symfony\\Polyfill\\Php80\\": ""
  6261. },
  6262. "classmap": [
  6263. "Resources/stubs"
  6264. ]
  6265. },
  6266. "notification-url": "https://packagist.org/downloads/",
  6267. "license": [
  6268. "MIT"
  6269. ],
  6270. "authors": [
  6271. {
  6272. "name": "Ion Bazan",
  6273. "email": "ion.bazan@gmail.com"
  6274. },
  6275. {
  6276. "name": "Nicolas Grekas",
  6277. "email": "p@tchwork.com"
  6278. },
  6279. {
  6280. "name": "Symfony Community",
  6281. "homepage": "https://symfony.com/contributors"
  6282. }
  6283. ],
  6284. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  6285. "homepage": "https://symfony.com",
  6286. "keywords": [
  6287. "compatibility",
  6288. "polyfill",
  6289. "portable",
  6290. "shim"
  6291. ],
  6292. "support": {
  6293. "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0"
  6294. },
  6295. "funding": [
  6296. {
  6297. "url": "https://symfony.com/sponsor",
  6298. "type": "custom"
  6299. },
  6300. {
  6301. "url": "https://github.com/fabpot",
  6302. "type": "github"
  6303. },
  6304. {
  6305. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6306. "type": "tidelift"
  6307. }
  6308. ],
  6309. "time": "2025-01-02T08:10:11+00:00"
  6310. },
  6311. {
  6312. "name": "symfony/polyfill-php81",
  6313. "version": "v1.32.0",
  6314. "source": {
  6315. "type": "git",
  6316. "url": "https://github.com/symfony/polyfill-php81.git",
  6317. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  6318. },
  6319. "dist": {
  6320. "type": "zip",
  6321. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6322. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  6323. "shasum": "",
  6324. "mirrors": [
  6325. {
  6326. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6327. "preferred": true
  6328. }
  6329. ]
  6330. },
  6331. "require": {
  6332. "php": ">=7.2"
  6333. },
  6334. "type": "library",
  6335. "extra": {
  6336. "thanks": {
  6337. "url": "https://github.com/symfony/polyfill",
  6338. "name": "symfony/polyfill"
  6339. }
  6340. },
  6341. "autoload": {
  6342. "files": [
  6343. "bootstrap.php"
  6344. ],
  6345. "psr-4": {
  6346. "Symfony\\Polyfill\\Php81\\": ""
  6347. },
  6348. "classmap": [
  6349. "Resources/stubs"
  6350. ]
  6351. },
  6352. "notification-url": "https://packagist.org/downloads/",
  6353. "license": [
  6354. "MIT"
  6355. ],
  6356. "authors": [
  6357. {
  6358. "name": "Nicolas Grekas",
  6359. "email": "p@tchwork.com"
  6360. },
  6361. {
  6362. "name": "Symfony Community",
  6363. "homepage": "https://symfony.com/contributors"
  6364. }
  6365. ],
  6366. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  6367. "homepage": "https://symfony.com",
  6368. "keywords": [
  6369. "compatibility",
  6370. "polyfill",
  6371. "portable",
  6372. "shim"
  6373. ],
  6374. "support": {
  6375. "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0"
  6376. },
  6377. "funding": [
  6378. {
  6379. "url": "https://symfony.com/sponsor",
  6380. "type": "custom"
  6381. },
  6382. {
  6383. "url": "https://github.com/fabpot",
  6384. "type": "github"
  6385. },
  6386. {
  6387. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6388. "type": "tidelift"
  6389. }
  6390. ],
  6391. "time": "2024-09-09T11:45:10+00:00"
  6392. },
  6393. {
  6394. "name": "symfony/polyfill-php83",
  6395. "version": "v1.32.0",
  6396. "source": {
  6397. "type": "git",
  6398. "url": "https://github.com/symfony/polyfill-php83.git",
  6399. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  6400. },
  6401. "dist": {
  6402. "type": "zip",
  6403. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  6404. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  6405. "shasum": "",
  6406. "mirrors": [
  6407. {
  6408. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6409. "preferred": true
  6410. }
  6411. ]
  6412. },
  6413. "require": {
  6414. "php": ">=7.2"
  6415. },
  6416. "type": "library",
  6417. "extra": {
  6418. "thanks": {
  6419. "url": "https://github.com/symfony/polyfill",
  6420. "name": "symfony/polyfill"
  6421. }
  6422. },
  6423. "autoload": {
  6424. "files": [
  6425. "bootstrap.php"
  6426. ],
  6427. "psr-4": {
  6428. "Symfony\\Polyfill\\Php83\\": ""
  6429. },
  6430. "classmap": [
  6431. "Resources/stubs"
  6432. ]
  6433. },
  6434. "notification-url": "https://packagist.org/downloads/",
  6435. "license": [
  6436. "MIT"
  6437. ],
  6438. "authors": [
  6439. {
  6440. "name": "Nicolas Grekas",
  6441. "email": "p@tchwork.com"
  6442. },
  6443. {
  6444. "name": "Symfony Community",
  6445. "homepage": "https://symfony.com/contributors"
  6446. }
  6447. ],
  6448. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6449. "homepage": "https://symfony.com",
  6450. "keywords": [
  6451. "compatibility",
  6452. "polyfill",
  6453. "portable",
  6454. "shim"
  6455. ],
  6456. "support": {
  6457. "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0"
  6458. },
  6459. "funding": [
  6460. {
  6461. "url": "https://symfony.com/sponsor",
  6462. "type": "custom"
  6463. },
  6464. {
  6465. "url": "https://github.com/fabpot",
  6466. "type": "github"
  6467. },
  6468. {
  6469. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6470. "type": "tidelift"
  6471. }
  6472. ],
  6473. "time": "2024-09-09T11:45:10+00:00"
  6474. },
  6475. {
  6476. "name": "symfony/polyfill-uuid",
  6477. "version": "v1.32.0",
  6478. "source": {
  6479. "type": "git",
  6480. "url": "https://github.com/symfony/polyfill-uuid.git",
  6481. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  6482. },
  6483. "dist": {
  6484. "type": "zip",
  6485. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  6486. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  6487. "shasum": "",
  6488. "mirrors": [
  6489. {
  6490. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6491. "preferred": true
  6492. }
  6493. ]
  6494. },
  6495. "require": {
  6496. "php": ">=7.2"
  6497. },
  6498. "provide": {
  6499. "ext-uuid": "*"
  6500. },
  6501. "suggest": {
  6502. "ext-uuid": "For best performance"
  6503. },
  6504. "type": "library",
  6505. "extra": {
  6506. "thanks": {
  6507. "url": "https://github.com/symfony/polyfill",
  6508. "name": "symfony/polyfill"
  6509. }
  6510. },
  6511. "autoload": {
  6512. "files": [
  6513. "bootstrap.php"
  6514. ],
  6515. "psr-4": {
  6516. "Symfony\\Polyfill\\Uuid\\": ""
  6517. }
  6518. },
  6519. "notification-url": "https://packagist.org/downloads/",
  6520. "license": [
  6521. "MIT"
  6522. ],
  6523. "authors": [
  6524. {
  6525. "name": "Grégoire Pineau",
  6526. "email": "lyrixx@lyrixx.info"
  6527. },
  6528. {
  6529. "name": "Symfony Community",
  6530. "homepage": "https://symfony.com/contributors"
  6531. }
  6532. ],
  6533. "description": "Symfony polyfill for uuid functions",
  6534. "homepage": "https://symfony.com",
  6535. "keywords": [
  6536. "compatibility",
  6537. "polyfill",
  6538. "portable",
  6539. "uuid"
  6540. ],
  6541. "support": {
  6542. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.32.0"
  6543. },
  6544. "funding": [
  6545. {
  6546. "url": "https://symfony.com/sponsor",
  6547. "type": "custom"
  6548. },
  6549. {
  6550. "url": "https://github.com/fabpot",
  6551. "type": "github"
  6552. },
  6553. {
  6554. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6555. "type": "tidelift"
  6556. }
  6557. ],
  6558. "time": "2024-09-09T11:45:10+00:00"
  6559. },
  6560. {
  6561. "name": "symfony/process",
  6562. "version": "v7.3.0",
  6563. "source": {
  6564. "type": "git",
  6565. "url": "https://github.com/symfony/process.git",
  6566. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af"
  6567. },
  6568. "dist": {
  6569. "type": "zip",
  6570. "url": "https://api.github.com/repos/symfony/process/zipball/40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  6571. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  6572. "shasum": "",
  6573. "mirrors": [
  6574. {
  6575. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6576. "preferred": true
  6577. }
  6578. ]
  6579. },
  6580. "require": {
  6581. "php": ">=8.2"
  6582. },
  6583. "type": "library",
  6584. "autoload": {
  6585. "psr-4": {
  6586. "Symfony\\Component\\Process\\": ""
  6587. },
  6588. "exclude-from-classmap": [
  6589. "/Tests/"
  6590. ]
  6591. },
  6592. "notification-url": "https://packagist.org/downloads/",
  6593. "license": [
  6594. "MIT"
  6595. ],
  6596. "authors": [
  6597. {
  6598. "name": "Fabien Potencier",
  6599. "email": "fabien@symfony.com"
  6600. },
  6601. {
  6602. "name": "Symfony Community",
  6603. "homepage": "https://symfony.com/contributors"
  6604. }
  6605. ],
  6606. "description": "Executes commands in sub-processes",
  6607. "homepage": "https://symfony.com",
  6608. "support": {
  6609. "source": "https://github.com/symfony/process/tree/v7.3.0"
  6610. },
  6611. "funding": [
  6612. {
  6613. "url": "https://symfony.com/sponsor",
  6614. "type": "custom"
  6615. },
  6616. {
  6617. "url": "https://github.com/fabpot",
  6618. "type": "github"
  6619. },
  6620. {
  6621. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6622. "type": "tidelift"
  6623. }
  6624. ],
  6625. "time": "2025-04-17T09:11:12+00:00"
  6626. },
  6627. {
  6628. "name": "symfony/routing",
  6629. "version": "v7.3.0",
  6630. "source": {
  6631. "type": "git",
  6632. "url": "https://github.com/symfony/routing.git",
  6633. "reference": "8e213820c5fea844ecea29203d2a308019007c15"
  6634. },
  6635. "dist": {
  6636. "type": "zip",
  6637. "url": "https://api.github.com/repos/symfony/routing/zipball/8e213820c5fea844ecea29203d2a308019007c15",
  6638. "reference": "8e213820c5fea844ecea29203d2a308019007c15",
  6639. "shasum": "",
  6640. "mirrors": [
  6641. {
  6642. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6643. "preferred": true
  6644. }
  6645. ]
  6646. },
  6647. "require": {
  6648. "php": ">=8.2",
  6649. "symfony/deprecation-contracts": "^2.5|^3"
  6650. },
  6651. "conflict": {
  6652. "symfony/config": "<6.4",
  6653. "symfony/dependency-injection": "<6.4",
  6654. "symfony/yaml": "<6.4"
  6655. },
  6656. "require-dev": {
  6657. "psr/log": "^1|^2|^3",
  6658. "symfony/config": "^6.4|^7.0",
  6659. "symfony/dependency-injection": "^6.4|^7.0",
  6660. "symfony/expression-language": "^6.4|^7.0",
  6661. "symfony/http-foundation": "^6.4|^7.0",
  6662. "symfony/yaml": "^6.4|^7.0"
  6663. },
  6664. "type": "library",
  6665. "autoload": {
  6666. "psr-4": {
  6667. "Symfony\\Component\\Routing\\": ""
  6668. },
  6669. "exclude-from-classmap": [
  6670. "/Tests/"
  6671. ]
  6672. },
  6673. "notification-url": "https://packagist.org/downloads/",
  6674. "license": [
  6675. "MIT"
  6676. ],
  6677. "authors": [
  6678. {
  6679. "name": "Fabien Potencier",
  6680. "email": "fabien@symfony.com"
  6681. },
  6682. {
  6683. "name": "Symfony Community",
  6684. "homepage": "https://symfony.com/contributors"
  6685. }
  6686. ],
  6687. "description": "Maps an HTTP request to a set of configuration variables",
  6688. "homepage": "https://symfony.com",
  6689. "keywords": [
  6690. "router",
  6691. "routing",
  6692. "uri",
  6693. "url"
  6694. ],
  6695. "support": {
  6696. "source": "https://github.com/symfony/routing/tree/v7.3.0"
  6697. },
  6698. "funding": [
  6699. {
  6700. "url": "https://symfony.com/sponsor",
  6701. "type": "custom"
  6702. },
  6703. {
  6704. "url": "https://github.com/fabpot",
  6705. "type": "github"
  6706. },
  6707. {
  6708. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6709. "type": "tidelift"
  6710. }
  6711. ],
  6712. "time": "2025-05-24T20:43:28+00:00"
  6713. },
  6714. {
  6715. "name": "symfony/service-contracts",
  6716. "version": "v3.6.1",
  6717. "source": {
  6718. "type": "git",
  6719. "url": "https://github.com/symfony/service-contracts.git",
  6720. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
  6721. },
  6722. "dist": {
  6723. "type": "zip",
  6724. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
  6725. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
  6726. "shasum": "",
  6727. "mirrors": [
  6728. {
  6729. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6730. "preferred": true
  6731. }
  6732. ]
  6733. },
  6734. "require": {
  6735. "php": ">=8.1",
  6736. "psr/container": "^1.1|^2.0",
  6737. "symfony/deprecation-contracts": "^2.5|^3"
  6738. },
  6739. "conflict": {
  6740. "ext-psr": "<1.1|>=2"
  6741. },
  6742. "type": "library",
  6743. "extra": {
  6744. "thanks": {
  6745. "url": "https://github.com/symfony/contracts",
  6746. "name": "symfony/contracts"
  6747. },
  6748. "branch-alias": {
  6749. "dev-main": "3.6-dev"
  6750. }
  6751. },
  6752. "autoload": {
  6753. "psr-4": {
  6754. "Symfony\\Contracts\\Service\\": ""
  6755. },
  6756. "exclude-from-classmap": [
  6757. "/Test/"
  6758. ]
  6759. },
  6760. "notification-url": "https://packagist.org/downloads/",
  6761. "license": [
  6762. "MIT"
  6763. ],
  6764. "authors": [
  6765. {
  6766. "name": "Nicolas Grekas",
  6767. "email": "p@tchwork.com"
  6768. },
  6769. {
  6770. "name": "Symfony Community",
  6771. "homepage": "https://symfony.com/contributors"
  6772. }
  6773. ],
  6774. "description": "Generic abstractions related to writing services",
  6775. "homepage": "https://symfony.com",
  6776. "keywords": [
  6777. "abstractions",
  6778. "contracts",
  6779. "decoupling",
  6780. "interfaces",
  6781. "interoperability",
  6782. "standards"
  6783. ],
  6784. "support": {
  6785. "source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
  6786. },
  6787. "funding": [
  6788. {
  6789. "url": "https://symfony.com/sponsor",
  6790. "type": "custom"
  6791. },
  6792. {
  6793. "url": "https://github.com/fabpot",
  6794. "type": "github"
  6795. },
  6796. {
  6797. "url": "https://github.com/nicolas-grekas",
  6798. "type": "github"
  6799. },
  6800. {
  6801. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6802. "type": "tidelift"
  6803. }
  6804. ],
  6805. "time": "2025-07-15T11:30:57+00:00"
  6806. },
  6807. {
  6808. "name": "symfony/string",
  6809. "version": "v7.3.4",
  6810. "source": {
  6811. "type": "git",
  6812. "url": "https://github.com/symfony/string.git",
  6813. "reference": "f96476035142921000338bad71e5247fbc138872"
  6814. },
  6815. "dist": {
  6816. "type": "zip",
  6817. "url": "https://api.github.com/repos/symfony/string/zipball/f96476035142921000338bad71e5247fbc138872",
  6818. "reference": "f96476035142921000338bad71e5247fbc138872",
  6819. "shasum": "",
  6820. "mirrors": [
  6821. {
  6822. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6823. "preferred": true
  6824. }
  6825. ]
  6826. },
  6827. "require": {
  6828. "php": ">=8.2",
  6829. "symfony/polyfill-ctype": "~1.8",
  6830. "symfony/polyfill-intl-grapheme": "~1.0",
  6831. "symfony/polyfill-intl-normalizer": "~1.0",
  6832. "symfony/polyfill-mbstring": "~1.0"
  6833. },
  6834. "conflict": {
  6835. "symfony/translation-contracts": "<2.5"
  6836. },
  6837. "require-dev": {
  6838. "symfony/emoji": "^7.1",
  6839. "symfony/http-client": "^6.4|^7.0",
  6840. "symfony/intl": "^6.4|^7.0",
  6841. "symfony/translation-contracts": "^2.5|^3.0",
  6842. "symfony/var-exporter": "^6.4|^7.0"
  6843. },
  6844. "type": "library",
  6845. "autoload": {
  6846. "files": [
  6847. "Resources/functions.php"
  6848. ],
  6849. "psr-4": {
  6850. "Symfony\\Component\\String\\": ""
  6851. },
  6852. "exclude-from-classmap": [
  6853. "/Tests/"
  6854. ]
  6855. },
  6856. "notification-url": "https://packagist.org/downloads/",
  6857. "license": [
  6858. "MIT"
  6859. ],
  6860. "authors": [
  6861. {
  6862. "name": "Nicolas Grekas",
  6863. "email": "p@tchwork.com"
  6864. },
  6865. {
  6866. "name": "Symfony Community",
  6867. "homepage": "https://symfony.com/contributors"
  6868. }
  6869. ],
  6870. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6871. "homepage": "https://symfony.com",
  6872. "keywords": [
  6873. "grapheme",
  6874. "i18n",
  6875. "string",
  6876. "unicode",
  6877. "utf-8",
  6878. "utf8"
  6879. ],
  6880. "support": {
  6881. "source": "https://github.com/symfony/string/tree/v7.3.4"
  6882. },
  6883. "funding": [
  6884. {
  6885. "url": "https://symfony.com/sponsor",
  6886. "type": "custom"
  6887. },
  6888. {
  6889. "url": "https://github.com/fabpot",
  6890. "type": "github"
  6891. },
  6892. {
  6893. "url": "https://github.com/nicolas-grekas",
  6894. "type": "github"
  6895. },
  6896. {
  6897. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6898. "type": "tidelift"
  6899. }
  6900. ],
  6901. "time": "2025-09-11T14:36:48+00:00"
  6902. },
  6903. {
  6904. "name": "symfony/translation",
  6905. "version": "v7.4.0",
  6906. "source": {
  6907. "type": "git",
  6908. "url": "https://github.com/symfony/translation.git",
  6909. "reference": "2d01ca0da3f092f91eeedb46f24aa30d2fca8f68"
  6910. },
  6911. "dist": {
  6912. "type": "zip",
  6913. "url": "https://api.github.com/repos/symfony/translation/zipball/2d01ca0da3f092f91eeedb46f24aa30d2fca8f68",
  6914. "reference": "2d01ca0da3f092f91eeedb46f24aa30d2fca8f68",
  6915. "shasum": "",
  6916. "mirrors": [
  6917. {
  6918. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6919. "preferred": true
  6920. }
  6921. ]
  6922. },
  6923. "require": {
  6924. "php": ">=8.2",
  6925. "symfony/deprecation-contracts": "^2.5|^3",
  6926. "symfony/polyfill-mbstring": "~1.0",
  6927. "symfony/translation-contracts": "^2.5.3|^3.3"
  6928. },
  6929. "conflict": {
  6930. "nikic/php-parser": "<5.0",
  6931. "symfony/config": "<6.4",
  6932. "symfony/console": "<6.4",
  6933. "symfony/dependency-injection": "<6.4",
  6934. "symfony/http-client-contracts": "<2.5",
  6935. "symfony/http-kernel": "<6.4",
  6936. "symfony/service-contracts": "<2.5",
  6937. "symfony/twig-bundle": "<6.4",
  6938. "symfony/yaml": "<6.4"
  6939. },
  6940. "provide": {
  6941. "symfony/translation-implementation": "2.3|3.0"
  6942. },
  6943. "require-dev": {
  6944. "nikic/php-parser": "^5.0",
  6945. "psr/log": "^1|^2|^3",
  6946. "symfony/config": "^6.4|^7.0|^8.0",
  6947. "symfony/console": "^6.4|^7.0|^8.0",
  6948. "symfony/dependency-injection": "^6.4|^7.0|^8.0",
  6949. "symfony/finder": "^6.4|^7.0|^8.0",
  6950. "symfony/http-client-contracts": "^2.5|^3.0",
  6951. "symfony/http-kernel": "^6.4|^7.0|^8.0",
  6952. "symfony/intl": "^6.4|^7.0|^8.0",
  6953. "symfony/polyfill-intl-icu": "^1.21",
  6954. "symfony/routing": "^6.4|^7.0|^8.0",
  6955. "symfony/service-contracts": "^2.5|^3",
  6956. "symfony/yaml": "^6.4|^7.0|^8.0"
  6957. },
  6958. "type": "library",
  6959. "autoload": {
  6960. "files": [
  6961. "Resources/functions.php"
  6962. ],
  6963. "psr-4": {
  6964. "Symfony\\Component\\Translation\\": ""
  6965. },
  6966. "exclude-from-classmap": [
  6967. "/Tests/"
  6968. ]
  6969. },
  6970. "notification-url": "https://packagist.org/downloads/",
  6971. "license": [
  6972. "MIT"
  6973. ],
  6974. "authors": [
  6975. {
  6976. "name": "Fabien Potencier",
  6977. "email": "fabien@symfony.com"
  6978. },
  6979. {
  6980. "name": "Symfony Community",
  6981. "homepage": "https://symfony.com/contributors"
  6982. }
  6983. ],
  6984. "description": "Provides tools to internationalize your application",
  6985. "homepage": "https://symfony.com",
  6986. "support": {
  6987. "source": "https://github.com/symfony/translation/tree/v7.4.0"
  6988. },
  6989. "funding": [
  6990. {
  6991. "url": "https://symfony.com/sponsor",
  6992. "type": "custom"
  6993. },
  6994. {
  6995. "url": "https://github.com/fabpot",
  6996. "type": "github"
  6997. },
  6998. {
  6999. "url": "https://github.com/nicolas-grekas",
  7000. "type": "github"
  7001. },
  7002. {
  7003. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7004. "type": "tidelift"
  7005. }
  7006. ],
  7007. "time": "2025-11-27T13:27:24+00:00"
  7008. },
  7009. {
  7010. "name": "symfony/translation-contracts",
  7011. "version": "v3.6.1",
  7012. "source": {
  7013. "type": "git",
  7014. "url": "https://github.com/symfony/translation-contracts.git",
  7015. "reference": "65a8bc82080447fae78373aa10f8d13b38338977"
  7016. },
  7017. "dist": {
  7018. "type": "zip",
  7019. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977",
  7020. "reference": "65a8bc82080447fae78373aa10f8d13b38338977",
  7021. "shasum": "",
  7022. "mirrors": [
  7023. {
  7024. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7025. "preferred": true
  7026. }
  7027. ]
  7028. },
  7029. "require": {
  7030. "php": ">=8.1"
  7031. },
  7032. "type": "library",
  7033. "extra": {
  7034. "thanks": {
  7035. "url": "https://github.com/symfony/contracts",
  7036. "name": "symfony/contracts"
  7037. },
  7038. "branch-alias": {
  7039. "dev-main": "3.6-dev"
  7040. }
  7041. },
  7042. "autoload": {
  7043. "psr-4": {
  7044. "Symfony\\Contracts\\Translation\\": ""
  7045. },
  7046. "exclude-from-classmap": [
  7047. "/Test/"
  7048. ]
  7049. },
  7050. "notification-url": "https://packagist.org/downloads/",
  7051. "license": [
  7052. "MIT"
  7053. ],
  7054. "authors": [
  7055. {
  7056. "name": "Nicolas Grekas",
  7057. "email": "p@tchwork.com"
  7058. },
  7059. {
  7060. "name": "Symfony Community",
  7061. "homepage": "https://symfony.com/contributors"
  7062. }
  7063. ],
  7064. "description": "Generic abstractions related to translation",
  7065. "homepage": "https://symfony.com",
  7066. "keywords": [
  7067. "abstractions",
  7068. "contracts",
  7069. "decoupling",
  7070. "interfaces",
  7071. "interoperability",
  7072. "standards"
  7073. ],
  7074. "support": {
  7075. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1"
  7076. },
  7077. "funding": [
  7078. {
  7079. "url": "https://symfony.com/sponsor",
  7080. "type": "custom"
  7081. },
  7082. {
  7083. "url": "https://github.com/fabpot",
  7084. "type": "github"
  7085. },
  7086. {
  7087. "url": "https://github.com/nicolas-grekas",
  7088. "type": "github"
  7089. },
  7090. {
  7091. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7092. "type": "tidelift"
  7093. }
  7094. ],
  7095. "time": "2025-07-15T13:41:35+00:00"
  7096. },
  7097. {
  7098. "name": "symfony/uid",
  7099. "version": "v7.3.1",
  7100. "source": {
  7101. "type": "git",
  7102. "url": "https://github.com/symfony/uid.git",
  7103. "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb"
  7104. },
  7105. "dist": {
  7106. "type": "zip",
  7107. "url": "https://api.github.com/repos/symfony/uid/zipball/a69f69f3159b852651a6bf45a9fdd149520525bb",
  7108. "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb",
  7109. "shasum": "",
  7110. "mirrors": [
  7111. {
  7112. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7113. "preferred": true
  7114. }
  7115. ]
  7116. },
  7117. "require": {
  7118. "php": ">=8.2",
  7119. "symfony/polyfill-uuid": "^1.15"
  7120. },
  7121. "require-dev": {
  7122. "symfony/console": "^6.4|^7.0"
  7123. },
  7124. "type": "library",
  7125. "autoload": {
  7126. "psr-4": {
  7127. "Symfony\\Component\\Uid\\": ""
  7128. },
  7129. "exclude-from-classmap": [
  7130. "/Tests/"
  7131. ]
  7132. },
  7133. "notification-url": "https://packagist.org/downloads/",
  7134. "license": [
  7135. "MIT"
  7136. ],
  7137. "authors": [
  7138. {
  7139. "name": "Grégoire Pineau",
  7140. "email": "lyrixx@lyrixx.info"
  7141. },
  7142. {
  7143. "name": "Nicolas Grekas",
  7144. "email": "p@tchwork.com"
  7145. },
  7146. {
  7147. "name": "Symfony Community",
  7148. "homepage": "https://symfony.com/contributors"
  7149. }
  7150. ],
  7151. "description": "Provides an object-oriented API to generate and represent UIDs",
  7152. "homepage": "https://symfony.com",
  7153. "keywords": [
  7154. "UID",
  7155. "ulid",
  7156. "uuid"
  7157. ],
  7158. "support": {
  7159. "source": "https://github.com/symfony/uid/tree/v7.3.1"
  7160. },
  7161. "funding": [
  7162. {
  7163. "url": "https://symfony.com/sponsor",
  7164. "type": "custom"
  7165. },
  7166. {
  7167. "url": "https://github.com/fabpot",
  7168. "type": "github"
  7169. },
  7170. {
  7171. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7172. "type": "tidelift"
  7173. }
  7174. ],
  7175. "time": "2025-06-27T19:55:54+00:00"
  7176. },
  7177. {
  7178. "name": "symfony/var-dumper",
  7179. "version": "v7.3.0",
  7180. "source": {
  7181. "type": "git",
  7182. "url": "https://github.com/symfony/var-dumper.git",
  7183. "reference": "548f6760c54197b1084e1e5c71f6d9d523f2f78e"
  7184. },
  7185. "dist": {
  7186. "type": "zip",
  7187. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/548f6760c54197b1084e1e5c71f6d9d523f2f78e",
  7188. "reference": "548f6760c54197b1084e1e5c71f6d9d523f2f78e",
  7189. "shasum": "",
  7190. "mirrors": [
  7191. {
  7192. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7193. "preferred": true
  7194. }
  7195. ]
  7196. },
  7197. "require": {
  7198. "php": ">=8.2",
  7199. "symfony/deprecation-contracts": "^2.5|^3",
  7200. "symfony/polyfill-mbstring": "~1.0"
  7201. },
  7202. "conflict": {
  7203. "symfony/console": "<6.4"
  7204. },
  7205. "require-dev": {
  7206. "ext-iconv": "*",
  7207. "symfony/console": "^6.4|^7.0",
  7208. "symfony/http-kernel": "^6.4|^7.0",
  7209. "symfony/process": "^6.4|^7.0",
  7210. "symfony/uid": "^6.4|^7.0",
  7211. "twig/twig": "^3.12"
  7212. },
  7213. "bin": [
  7214. "Resources/bin/var-dump-server"
  7215. ],
  7216. "type": "library",
  7217. "autoload": {
  7218. "files": [
  7219. "Resources/functions/dump.php"
  7220. ],
  7221. "psr-4": {
  7222. "Symfony\\Component\\VarDumper\\": ""
  7223. },
  7224. "exclude-from-classmap": [
  7225. "/Tests/"
  7226. ]
  7227. },
  7228. "notification-url": "https://packagist.org/downloads/",
  7229. "license": [
  7230. "MIT"
  7231. ],
  7232. "authors": [
  7233. {
  7234. "name": "Nicolas Grekas",
  7235. "email": "p@tchwork.com"
  7236. },
  7237. {
  7238. "name": "Symfony Community",
  7239. "homepage": "https://symfony.com/contributors"
  7240. }
  7241. ],
  7242. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7243. "homepage": "https://symfony.com",
  7244. "keywords": [
  7245. "debug",
  7246. "dump"
  7247. ],
  7248. "support": {
  7249. "source": "https://github.com/symfony/var-dumper/tree/v7.3.0"
  7250. },
  7251. "funding": [
  7252. {
  7253. "url": "https://symfony.com/sponsor",
  7254. "type": "custom"
  7255. },
  7256. {
  7257. "url": "https://github.com/fabpot",
  7258. "type": "github"
  7259. },
  7260. {
  7261. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7262. "type": "tidelift"
  7263. }
  7264. ],
  7265. "time": "2025-04-27T18:39:23+00:00"
  7266. },
  7267. {
  7268. "name": "tijsverkoyen/css-to-inline-styles",
  7269. "version": "v2.3.0",
  7270. "source": {
  7271. "type": "git",
  7272. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7273. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  7274. },
  7275. "dist": {
  7276. "type": "zip",
  7277. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  7278. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  7279. "shasum": "",
  7280. "mirrors": [
  7281. {
  7282. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7283. "preferred": true
  7284. }
  7285. ]
  7286. },
  7287. "require": {
  7288. "ext-dom": "*",
  7289. "ext-libxml": "*",
  7290. "php": "^7.4 || ^8.0",
  7291. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  7292. },
  7293. "require-dev": {
  7294. "phpstan/phpstan": "^2.0",
  7295. "phpstan/phpstan-phpunit": "^2.0",
  7296. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  7297. },
  7298. "type": "library",
  7299. "extra": {
  7300. "branch-alias": {
  7301. "dev-master": "2.x-dev"
  7302. }
  7303. },
  7304. "autoload": {
  7305. "psr-4": {
  7306. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7307. }
  7308. },
  7309. "notification-url": "https://packagist.org/downloads/",
  7310. "license": [
  7311. "BSD-3-Clause"
  7312. ],
  7313. "authors": [
  7314. {
  7315. "name": "Tijs Verkoyen",
  7316. "email": "css_to_inline_styles@verkoyen.eu",
  7317. "role": "Developer"
  7318. }
  7319. ],
  7320. "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.",
  7321. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7322. "support": {
  7323. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7324. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  7325. },
  7326. "time": "2024-12-21T16:25:41+00:00"
  7327. },
  7328. {
  7329. "name": "tymon/jwt-auth",
  7330. "version": "2.2.0",
  7331. "source": {
  7332. "type": "git",
  7333. "url": "https://github.com/tymondesigns/jwt-auth.git",
  7334. "reference": "6c98cea2c3f11a71c0c7f982dd2d76e64247ee28"
  7335. },
  7336. "dist": {
  7337. "type": "zip",
  7338. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/6c98cea2c3f11a71c0c7f982dd2d76e64247ee28",
  7339. "reference": "6c98cea2c3f11a71c0c7f982dd2d76e64247ee28",
  7340. "shasum": "",
  7341. "mirrors": [
  7342. {
  7343. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7344. "preferred": true
  7345. }
  7346. ]
  7347. },
  7348. "require": {
  7349. "illuminate/auth": "^9.0|^10.0|^11.0|^12.0",
  7350. "illuminate/contracts": "^9.0|^10.0|^11.0|^12.0",
  7351. "illuminate/http": "^9.0|^10.0|^11.0|^12.0",
  7352. "illuminate/support": "^9.0|^10.0|^11.0|^12.0",
  7353. "lcobucci/jwt": "^4.0",
  7354. "nesbot/carbon": "^2.69|^3.0",
  7355. "php": "^8.0"
  7356. },
  7357. "require-dev": {
  7358. "illuminate/console": "^9.0|^10.0|^11.0|^12.0",
  7359. "illuminate/database": "^9.0|^10.0|^11.0|^12.0",
  7360. "illuminate/routing": "^9.0|^10.0|^11.0|^12.0",
  7361. "mockery/mockery": "^1.6",
  7362. "phpunit/phpunit": "^9.4"
  7363. },
  7364. "type": "library",
  7365. "extra": {
  7366. "laravel": {
  7367. "aliases": {
  7368. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  7369. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  7370. },
  7371. "providers": [
  7372. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  7373. ]
  7374. },
  7375. "branch-alias": {
  7376. "dev-2.x": "2.0-dev",
  7377. "dev-develop": "1.0-dev"
  7378. }
  7379. },
  7380. "autoload": {
  7381. "psr-4": {
  7382. "Tymon\\JWTAuth\\": "src/"
  7383. }
  7384. },
  7385. "notification-url": "https://packagist.org/downloads/",
  7386. "license": [
  7387. "MIT"
  7388. ],
  7389. "authors": [
  7390. {
  7391. "name": "Sean Tymon",
  7392. "email": "tymon148@gmail.com",
  7393. "homepage": "https://tymon.xyz",
  7394. "role": "Developer"
  7395. }
  7396. ],
  7397. "description": "JSON Web Token Authentication for Laravel and Lumen",
  7398. "homepage": "https://github.com/tymondesigns/jwt-auth",
  7399. "keywords": [
  7400. "Authentication",
  7401. "JSON Web Token",
  7402. "auth",
  7403. "jwt",
  7404. "laravel"
  7405. ],
  7406. "support": {
  7407. "issues": "https://github.com/tymondesigns/jwt-auth/issues",
  7408. "source": "https://github.com/tymondesigns/jwt-auth"
  7409. },
  7410. "funding": [
  7411. {
  7412. "url": "https://www.patreon.com/seantymon",
  7413. "type": "patreon"
  7414. }
  7415. ],
  7416. "time": "2025-02-28T08:14:11+00:00"
  7417. },
  7418. {
  7419. "name": "vlucas/phpdotenv",
  7420. "version": "v5.6.0",
  7421. "source": {
  7422. "type": "git",
  7423. "url": "https://github.com/vlucas/phpdotenv.git",
  7424. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4"
  7425. },
  7426. "dist": {
  7427. "type": "zip",
  7428. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  7429. "reference": "2cf9fb6054c2bb1d59d1f3817706ecdb9d2934c4",
  7430. "shasum": "",
  7431. "mirrors": [
  7432. {
  7433. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7434. "preferred": true
  7435. }
  7436. ]
  7437. },
  7438. "require": {
  7439. "ext-pcre": "*",
  7440. "graham-campbell/result-type": "^1.1.2",
  7441. "php": "^7.2.5 || ^8.0",
  7442. "phpoption/phpoption": "^1.9.2",
  7443. "symfony/polyfill-ctype": "^1.24",
  7444. "symfony/polyfill-mbstring": "^1.24",
  7445. "symfony/polyfill-php80": "^1.24"
  7446. },
  7447. "require-dev": {
  7448. "bamarni/composer-bin-plugin": "^1.8.2",
  7449. "ext-filter": "*",
  7450. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  7451. },
  7452. "suggest": {
  7453. "ext-filter": "Required to use the boolean validator."
  7454. },
  7455. "type": "library",
  7456. "extra": {
  7457. "bamarni-bin": {
  7458. "bin-links": true,
  7459. "forward-command": true
  7460. },
  7461. "branch-alias": {
  7462. "dev-master": "5.6-dev"
  7463. }
  7464. },
  7465. "autoload": {
  7466. "psr-4": {
  7467. "Dotenv\\": "src/"
  7468. }
  7469. },
  7470. "notification-url": "https://packagist.org/downloads/",
  7471. "license": [
  7472. "BSD-3-Clause"
  7473. ],
  7474. "authors": [
  7475. {
  7476. "name": "Graham Campbell",
  7477. "email": "hello@gjcampbell.co.uk",
  7478. "homepage": "https://github.com/GrahamCampbell"
  7479. },
  7480. {
  7481. "name": "Vance Lucas",
  7482. "email": "vance@vancelucas.com",
  7483. "homepage": "https://github.com/vlucas"
  7484. }
  7485. ],
  7486. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  7487. "keywords": [
  7488. "dotenv",
  7489. "env",
  7490. "environment"
  7491. ],
  7492. "support": {
  7493. "issues": "https://github.com/vlucas/phpdotenv/issues",
  7494. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.0"
  7495. },
  7496. "funding": [
  7497. {
  7498. "url": "https://github.com/GrahamCampbell",
  7499. "type": "github"
  7500. },
  7501. {
  7502. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  7503. "type": "tidelift"
  7504. }
  7505. ],
  7506. "time": "2023-11-12T22:43:29+00:00"
  7507. },
  7508. {
  7509. "name": "voku/portable-ascii",
  7510. "version": "2.0.2",
  7511. "source": {
  7512. "type": "git",
  7513. "url": "https://github.com/voku/portable-ascii.git",
  7514. "reference": "16c17671a804bb92602822113dd91fbc8a35d2af"
  7515. },
  7516. "dist": {
  7517. "type": "zip",
  7518. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/16c17671a804bb92602822113dd91fbc8a35d2af",
  7519. "reference": "16c17671a804bb92602822113dd91fbc8a35d2af",
  7520. "shasum": "",
  7521. "mirrors": [
  7522. {
  7523. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7524. "preferred": true
  7525. }
  7526. ]
  7527. },
  7528. "require": {
  7529. "php": ">=7.0.0"
  7530. },
  7531. "require-dev": {
  7532. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  7533. },
  7534. "suggest": {
  7535. "ext-intl": "Use Intl for transliterator_transliterate() support"
  7536. },
  7537. "type": "library",
  7538. "autoload": {
  7539. "psr-4": {
  7540. "voku\\": "src/voku/"
  7541. }
  7542. },
  7543. "notification-url": "https://packagist.org/downloads/",
  7544. "license": [
  7545. "MIT"
  7546. ],
  7547. "authors": [
  7548. {
  7549. "name": "Lars Moelleken",
  7550. "homepage": "https://www.moelleken.org/"
  7551. }
  7552. ],
  7553. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  7554. "homepage": "https://github.com/voku/portable-ascii",
  7555. "keywords": [
  7556. "ascii",
  7557. "clean",
  7558. "php"
  7559. ],
  7560. "support": {
  7561. "issues": "https://github.com/voku/portable-ascii/issues",
  7562. "source": "https://github.com/voku/portable-ascii/tree/2.0.2"
  7563. },
  7564. "funding": [
  7565. {
  7566. "url": "https://www.paypal.me/moelleken",
  7567. "type": "custom"
  7568. },
  7569. {
  7570. "url": "https://github.com/voku",
  7571. "type": "github"
  7572. },
  7573. {
  7574. "url": "https://opencollective.com/portable-ascii",
  7575. "type": "open_collective"
  7576. },
  7577. {
  7578. "url": "https://www.patreon.com/voku",
  7579. "type": "patreon"
  7580. },
  7581. {
  7582. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  7583. "type": "tidelift"
  7584. }
  7585. ],
  7586. "time": "2024-11-21T00:49:12+00:00"
  7587. }
  7588. ],
  7589. "packages-dev": [
  7590. {
  7591. "name": "fakerphp/faker",
  7592. "version": "v1.23.1",
  7593. "source": {
  7594. "type": "git",
  7595. "url": "https://github.com/FakerPHP/Faker.git",
  7596. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  7597. },
  7598. "dist": {
  7599. "type": "zip",
  7600. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  7601. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  7602. "shasum": "",
  7603. "mirrors": [
  7604. {
  7605. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7606. "preferred": true
  7607. }
  7608. ]
  7609. },
  7610. "require": {
  7611. "php": "^7.4 || ^8.0",
  7612. "psr/container": "^1.0 || ^2.0",
  7613. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  7614. },
  7615. "conflict": {
  7616. "fzaninotto/faker": "*"
  7617. },
  7618. "require-dev": {
  7619. "bamarni/composer-bin-plugin": "^1.4.1",
  7620. "doctrine/persistence": "^1.3 || ^2.0",
  7621. "ext-intl": "*",
  7622. "phpunit/phpunit": "^9.5.26",
  7623. "symfony/phpunit-bridge": "^5.4.16"
  7624. },
  7625. "suggest": {
  7626. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  7627. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  7628. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  7629. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  7630. "ext-mbstring": "Required for multibyte Unicode string functionality."
  7631. },
  7632. "type": "library",
  7633. "autoload": {
  7634. "psr-4": {
  7635. "Faker\\": "src/Faker/"
  7636. }
  7637. },
  7638. "notification-url": "https://packagist.org/downloads/",
  7639. "license": [
  7640. "MIT"
  7641. ],
  7642. "authors": [
  7643. {
  7644. "name": "François Zaninotto"
  7645. }
  7646. ],
  7647. "description": "Faker is a PHP library that generates fake data for you.",
  7648. "keywords": [
  7649. "data",
  7650. "faker",
  7651. "fixtures"
  7652. ],
  7653. "support": {
  7654. "issues": "https://github.com/FakerPHP/Faker/issues",
  7655. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  7656. },
  7657. "time": "2024-01-02T13:46:09+00:00"
  7658. },
  7659. {
  7660. "name": "filp/whoops",
  7661. "version": "2.16.0",
  7662. "source": {
  7663. "type": "git",
  7664. "url": "https://github.com/filp/whoops.git",
  7665. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  7666. },
  7667. "dist": {
  7668. "type": "zip",
  7669. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  7670. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  7671. "shasum": "",
  7672. "mirrors": [
  7673. {
  7674. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7675. "preferred": true
  7676. }
  7677. ]
  7678. },
  7679. "require": {
  7680. "php": "^7.1 || ^8.0",
  7681. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  7682. },
  7683. "require-dev": {
  7684. "mockery/mockery": "^1.0",
  7685. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  7686. "symfony/var-dumper": "^4.0 || ^5.0"
  7687. },
  7688. "suggest": {
  7689. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  7690. "whoops/soap": "Formats errors as SOAP responses"
  7691. },
  7692. "type": "library",
  7693. "extra": {
  7694. "branch-alias": {
  7695. "dev-master": "2.7-dev"
  7696. }
  7697. },
  7698. "autoload": {
  7699. "psr-4": {
  7700. "Whoops\\": "src/Whoops/"
  7701. }
  7702. },
  7703. "notification-url": "https://packagist.org/downloads/",
  7704. "license": [
  7705. "MIT"
  7706. ],
  7707. "authors": [
  7708. {
  7709. "name": "Filipe Dobreira",
  7710. "homepage": "https://github.com/filp",
  7711. "role": "Developer"
  7712. }
  7713. ],
  7714. "description": "php error handling for cool kids",
  7715. "homepage": "https://filp.github.io/whoops/",
  7716. "keywords": [
  7717. "error",
  7718. "exception",
  7719. "handling",
  7720. "library",
  7721. "throwable",
  7722. "whoops"
  7723. ],
  7724. "support": {
  7725. "issues": "https://github.com/filp/whoops/issues",
  7726. "source": "https://github.com/filp/whoops/tree/2.16.0"
  7727. },
  7728. "funding": [
  7729. {
  7730. "url": "https://github.com/denis-sokolov",
  7731. "type": "github"
  7732. }
  7733. ],
  7734. "time": "2024-09-25T12:00:00+00:00"
  7735. },
  7736. {
  7737. "name": "hamcrest/hamcrest-php",
  7738. "version": "v2.0.1",
  7739. "source": {
  7740. "type": "git",
  7741. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7742. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7743. },
  7744. "dist": {
  7745. "type": "zip",
  7746. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7747. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7748. "shasum": "",
  7749. "mirrors": [
  7750. {
  7751. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7752. "preferred": true
  7753. }
  7754. ]
  7755. },
  7756. "require": {
  7757. "php": "^5.3|^7.0|^8.0"
  7758. },
  7759. "replace": {
  7760. "cordoval/hamcrest-php": "*",
  7761. "davedevelopment/hamcrest-php": "*",
  7762. "kodova/hamcrest-php": "*"
  7763. },
  7764. "require-dev": {
  7765. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7766. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7767. },
  7768. "type": "library",
  7769. "extra": {
  7770. "branch-alias": {
  7771. "dev-master": "2.1-dev"
  7772. }
  7773. },
  7774. "autoload": {
  7775. "classmap": [
  7776. "hamcrest"
  7777. ]
  7778. },
  7779. "notification-url": "https://packagist.org/downloads/",
  7780. "license": [
  7781. "BSD-3-Clause"
  7782. ],
  7783. "description": "This is the PHP port of Hamcrest Matchers",
  7784. "keywords": [
  7785. "test"
  7786. ],
  7787. "support": {
  7788. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7789. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7790. },
  7791. "time": "2020-07-09T08:09:16+00:00"
  7792. },
  7793. {
  7794. "name": "laravel/pail",
  7795. "version": "v1.2.4",
  7796. "source": {
  7797. "type": "git",
  7798. "url": "https://github.com/laravel/pail.git",
  7799. "reference": "49f92285ff5d6fc09816e976a004f8dec6a0ea30"
  7800. },
  7801. "dist": {
  7802. "type": "zip",
  7803. "url": "https://api.github.com/repos/laravel/pail/zipball/49f92285ff5d6fc09816e976a004f8dec6a0ea30",
  7804. "reference": "49f92285ff5d6fc09816e976a004f8dec6a0ea30",
  7805. "shasum": "",
  7806. "mirrors": [
  7807. {
  7808. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7809. "preferred": true
  7810. }
  7811. ]
  7812. },
  7813. "require": {
  7814. "ext-mbstring": "*",
  7815. "illuminate/console": "^10.24|^11.0|^12.0",
  7816. "illuminate/contracts": "^10.24|^11.0|^12.0",
  7817. "illuminate/log": "^10.24|^11.0|^12.0",
  7818. "illuminate/process": "^10.24|^11.0|^12.0",
  7819. "illuminate/support": "^10.24|^11.0|^12.0",
  7820. "nunomaduro/termwind": "^1.15|^2.0",
  7821. "php": "^8.2",
  7822. "symfony/console": "^6.0|^7.0"
  7823. },
  7824. "require-dev": {
  7825. "laravel/framework": "^10.24|^11.0|^12.0",
  7826. "laravel/pint": "^1.13",
  7827. "orchestra/testbench-core": "^8.13|^9.17|^10.8",
  7828. "pestphp/pest": "^2.20|^3.0|^4.0",
  7829. "pestphp/pest-plugin-type-coverage": "^2.3|^3.0|^4.0",
  7830. "phpstan/phpstan": "^1.12.27",
  7831. "symfony/var-dumper": "^6.3|^7.0"
  7832. },
  7833. "type": "library",
  7834. "extra": {
  7835. "laravel": {
  7836. "providers": [
  7837. "Laravel\\Pail\\PailServiceProvider"
  7838. ]
  7839. },
  7840. "branch-alias": {
  7841. "dev-main": "1.x-dev"
  7842. }
  7843. },
  7844. "autoload": {
  7845. "psr-4": {
  7846. "Laravel\\Pail\\": "src/"
  7847. }
  7848. },
  7849. "notification-url": "https://packagist.org/downloads/",
  7850. "license": [
  7851. "MIT"
  7852. ],
  7853. "authors": [
  7854. {
  7855. "name": "Taylor Otwell",
  7856. "email": "taylor@laravel.com"
  7857. },
  7858. {
  7859. "name": "Nuno Maduro",
  7860. "email": "enunomaduro@gmail.com"
  7861. }
  7862. ],
  7863. "description": "Easily delve into your Laravel application's log files directly from the command line.",
  7864. "homepage": "https://github.com/laravel/pail",
  7865. "keywords": [
  7866. "dev",
  7867. "laravel",
  7868. "logs",
  7869. "php",
  7870. "tail"
  7871. ],
  7872. "support": {
  7873. "issues": "https://github.com/laravel/pail/issues",
  7874. "source": "https://github.com/laravel/pail"
  7875. },
  7876. "time": "2025-11-20T16:29:35+00:00"
  7877. },
  7878. {
  7879. "name": "laravel/pint",
  7880. "version": "v1.25.1",
  7881. "source": {
  7882. "type": "git",
  7883. "url": "https://github.com/laravel/pint.git",
  7884. "reference": "5016e263f95d97670d71b9a987bd8996ade6d8d9"
  7885. },
  7886. "dist": {
  7887. "type": "zip",
  7888. "url": "https://api.github.com/repos/laravel/pint/zipball/5016e263f95d97670d71b9a987bd8996ade6d8d9",
  7889. "reference": "5016e263f95d97670d71b9a987bd8996ade6d8d9",
  7890. "shasum": "",
  7891. "mirrors": [
  7892. {
  7893. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7894. "preferred": true
  7895. }
  7896. ]
  7897. },
  7898. "require": {
  7899. "ext-json": "*",
  7900. "ext-mbstring": "*",
  7901. "ext-tokenizer": "*",
  7902. "ext-xml": "*",
  7903. "php": "^8.2.0"
  7904. },
  7905. "require-dev": {
  7906. "friendsofphp/php-cs-fixer": "^3.87.2",
  7907. "illuminate/view": "^11.46.0",
  7908. "larastan/larastan": "^3.7.1",
  7909. "laravel-zero/framework": "^11.45.0",
  7910. "mockery/mockery": "^1.6.12",
  7911. "nunomaduro/termwind": "^2.3.1",
  7912. "pestphp/pest": "^2.36.0"
  7913. },
  7914. "bin": [
  7915. "builds/pint"
  7916. ],
  7917. "type": "project",
  7918. "autoload": {
  7919. "psr-4": {
  7920. "App\\": "app/",
  7921. "Database\\Seeders\\": "database/seeders/",
  7922. "Database\\Factories\\": "database/factories/"
  7923. }
  7924. },
  7925. "notification-url": "https://packagist.org/downloads/",
  7926. "license": [
  7927. "MIT"
  7928. ],
  7929. "authors": [
  7930. {
  7931. "name": "Nuno Maduro",
  7932. "email": "enunomaduro@gmail.com"
  7933. }
  7934. ],
  7935. "description": "An opinionated code formatter for PHP.",
  7936. "homepage": "https://laravel.com",
  7937. "keywords": [
  7938. "format",
  7939. "formatter",
  7940. "lint",
  7941. "linter",
  7942. "php"
  7943. ],
  7944. "support": {
  7945. "issues": "https://github.com/laravel/pint/issues",
  7946. "source": "https://github.com/laravel/pint"
  7947. },
  7948. "time": "2025-09-19T02:57:12+00:00"
  7949. },
  7950. {
  7951. "name": "laravel/sail",
  7952. "version": "v1.46.0",
  7953. "source": {
  7954. "type": "git",
  7955. "url": "https://github.com/laravel/sail.git",
  7956. "reference": "eb90c4f113c4a9637b8fdd16e24cfc64f2b0ae6e"
  7957. },
  7958. "dist": {
  7959. "type": "zip",
  7960. "url": "https://api.github.com/repos/laravel/sail/zipball/eb90c4f113c4a9637b8fdd16e24cfc64f2b0ae6e",
  7961. "reference": "eb90c4f113c4a9637b8fdd16e24cfc64f2b0ae6e",
  7962. "shasum": "",
  7963. "mirrors": [
  7964. {
  7965. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7966. "preferred": true
  7967. }
  7968. ]
  7969. },
  7970. "require": {
  7971. "illuminate/console": "^9.52.16|^10.0|^11.0|^12.0",
  7972. "illuminate/contracts": "^9.52.16|^10.0|^11.0|^12.0",
  7973. "illuminate/support": "^9.52.16|^10.0|^11.0|^12.0",
  7974. "php": "^8.0",
  7975. "symfony/console": "^6.0|^7.0",
  7976. "symfony/yaml": "^6.0|^7.0"
  7977. },
  7978. "require-dev": {
  7979. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  7980. "phpstan/phpstan": "^1.10"
  7981. },
  7982. "bin": [
  7983. "bin/sail"
  7984. ],
  7985. "type": "library",
  7986. "extra": {
  7987. "laravel": {
  7988. "providers": [
  7989. "Laravel\\Sail\\SailServiceProvider"
  7990. ]
  7991. }
  7992. },
  7993. "autoload": {
  7994. "psr-4": {
  7995. "Laravel\\Sail\\": "src/"
  7996. }
  7997. },
  7998. "notification-url": "https://packagist.org/downloads/",
  7999. "license": [
  8000. "MIT"
  8001. ],
  8002. "authors": [
  8003. {
  8004. "name": "Taylor Otwell",
  8005. "email": "taylor@laravel.com"
  8006. }
  8007. ],
  8008. "description": "Docker files for running a basic Laravel application.",
  8009. "keywords": [
  8010. "docker",
  8011. "laravel"
  8012. ],
  8013. "support": {
  8014. "issues": "https://github.com/laravel/sail/issues",
  8015. "source": "https://github.com/laravel/sail"
  8016. },
  8017. "time": "2025-09-23T13:44:39+00:00"
  8018. },
  8019. {
  8020. "name": "mockery/mockery",
  8021. "version": "1.6.12",
  8022. "source": {
  8023. "type": "git",
  8024. "url": "https://github.com/mockery/mockery.git",
  8025. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  8026. },
  8027. "dist": {
  8028. "type": "zip",
  8029. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8030. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  8031. "shasum": "",
  8032. "mirrors": [
  8033. {
  8034. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8035. "preferred": true
  8036. }
  8037. ]
  8038. },
  8039. "require": {
  8040. "hamcrest/hamcrest-php": "^2.0.1",
  8041. "lib-pcre": ">=7.0",
  8042. "php": ">=7.3"
  8043. },
  8044. "conflict": {
  8045. "phpunit/phpunit": "<8.0"
  8046. },
  8047. "require-dev": {
  8048. "phpunit/phpunit": "^8.5 || ^9.6.17",
  8049. "symplify/easy-coding-standard": "^12.1.14"
  8050. },
  8051. "type": "library",
  8052. "autoload": {
  8053. "files": [
  8054. "library/helpers.php",
  8055. "library/Mockery.php"
  8056. ],
  8057. "psr-4": {
  8058. "Mockery\\": "library/Mockery"
  8059. }
  8060. },
  8061. "notification-url": "https://packagist.org/downloads/",
  8062. "license": [
  8063. "BSD-3-Clause"
  8064. ],
  8065. "authors": [
  8066. {
  8067. "name": "Pádraic Brady",
  8068. "email": "padraic.brady@gmail.com",
  8069. "homepage": "https://github.com/padraic",
  8070. "role": "Author"
  8071. },
  8072. {
  8073. "name": "Dave Marshall",
  8074. "email": "dave.marshall@atstsolutions.co.uk",
  8075. "homepage": "https://davedevelopment.co.uk",
  8076. "role": "Developer"
  8077. },
  8078. {
  8079. "name": "Nathanael Esayeas",
  8080. "email": "nathanael.esayeas@protonmail.com",
  8081. "homepage": "https://github.com/ghostwriter",
  8082. "role": "Lead Developer"
  8083. }
  8084. ],
  8085. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8086. "homepage": "https://github.com/mockery/mockery",
  8087. "keywords": [
  8088. "BDD",
  8089. "TDD",
  8090. "library",
  8091. "mock",
  8092. "mock objects",
  8093. "mockery",
  8094. "stub",
  8095. "test",
  8096. "test double",
  8097. "testing"
  8098. ],
  8099. "support": {
  8100. "docs": "https://docs.mockery.io/",
  8101. "issues": "https://github.com/mockery/mockery/issues",
  8102. "rss": "https://github.com/mockery/mockery/releases.atom",
  8103. "security": "https://github.com/mockery/mockery/security/advisories",
  8104. "source": "https://github.com/mockery/mockery"
  8105. },
  8106. "time": "2024-05-16T03:13:13+00:00"
  8107. },
  8108. {
  8109. "name": "myclabs/deep-copy",
  8110. "version": "1.13.3",
  8111. "source": {
  8112. "type": "git",
  8113. "url": "https://github.com/myclabs/DeepCopy.git",
  8114. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
  8115. },
  8116. "dist": {
  8117. "type": "zip",
  8118. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
  8119. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
  8120. "shasum": "",
  8121. "mirrors": [
  8122. {
  8123. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8124. "preferred": true
  8125. }
  8126. ]
  8127. },
  8128. "require": {
  8129. "php": "^7.1 || ^8.0"
  8130. },
  8131. "conflict": {
  8132. "doctrine/collections": "<1.6.8",
  8133. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8134. },
  8135. "require-dev": {
  8136. "doctrine/collections": "^1.6.8",
  8137. "doctrine/common": "^2.13.3 || ^3.2.2",
  8138. "phpspec/prophecy": "^1.10",
  8139. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8140. },
  8141. "type": "library",
  8142. "autoload": {
  8143. "files": [
  8144. "src/DeepCopy/deep_copy.php"
  8145. ],
  8146. "psr-4": {
  8147. "DeepCopy\\": "src/DeepCopy/"
  8148. }
  8149. },
  8150. "notification-url": "https://packagist.org/downloads/",
  8151. "license": [
  8152. "MIT"
  8153. ],
  8154. "description": "Create deep copies (clones) of your objects",
  8155. "keywords": [
  8156. "clone",
  8157. "copy",
  8158. "duplicate",
  8159. "object",
  8160. "object graph"
  8161. ],
  8162. "support": {
  8163. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8164. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
  8165. },
  8166. "funding": [
  8167. {
  8168. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8169. "type": "tidelift"
  8170. }
  8171. ],
  8172. "time": "2025-07-05T12:25:42+00:00"
  8173. },
  8174. {
  8175. "name": "nunomaduro/collision",
  8176. "version": "v8.5.0",
  8177. "source": {
  8178. "type": "git",
  8179. "url": "https://github.com/nunomaduro/collision.git",
  8180. "reference": "f5c101b929c958e849a633283adff296ed5f38f5"
  8181. },
  8182. "dist": {
  8183. "type": "zip",
  8184. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f5c101b929c958e849a633283adff296ed5f38f5",
  8185. "reference": "f5c101b929c958e849a633283adff296ed5f38f5",
  8186. "shasum": "",
  8187. "mirrors": [
  8188. {
  8189. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8190. "preferred": true
  8191. }
  8192. ]
  8193. },
  8194. "require": {
  8195. "filp/whoops": "^2.16.0",
  8196. "nunomaduro/termwind": "^2.1.0",
  8197. "php": "^8.2.0",
  8198. "symfony/console": "^7.1.5"
  8199. },
  8200. "conflict": {
  8201. "laravel/framework": "<11.0.0 || >=12.0.0",
  8202. "phpunit/phpunit": "<10.5.1 || >=12.0.0"
  8203. },
  8204. "require-dev": {
  8205. "larastan/larastan": "^2.9.8",
  8206. "laravel/framework": "^11.28.0",
  8207. "laravel/pint": "^1.18.1",
  8208. "laravel/sail": "^1.36.0",
  8209. "laravel/sanctum": "^4.0.3",
  8210. "laravel/tinker": "^2.10.0",
  8211. "orchestra/testbench-core": "^9.5.3",
  8212. "pestphp/pest": "^2.36.0 || ^3.4.0",
  8213. "sebastian/environment": "^6.1.0 || ^7.2.0"
  8214. },
  8215. "type": "library",
  8216. "extra": {
  8217. "laravel": {
  8218. "providers": [
  8219. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  8220. ]
  8221. },
  8222. "branch-alias": {
  8223. "dev-8.x": "8.x-dev"
  8224. }
  8225. },
  8226. "autoload": {
  8227. "files": [
  8228. "./src/Adapters/Phpunit/Autoload.php"
  8229. ],
  8230. "psr-4": {
  8231. "NunoMaduro\\Collision\\": "src/"
  8232. }
  8233. },
  8234. "notification-url": "https://packagist.org/downloads/",
  8235. "license": [
  8236. "MIT"
  8237. ],
  8238. "authors": [
  8239. {
  8240. "name": "Nuno Maduro",
  8241. "email": "enunomaduro@gmail.com"
  8242. }
  8243. ],
  8244. "description": "Cli error handling for console/command-line PHP applications.",
  8245. "keywords": [
  8246. "artisan",
  8247. "cli",
  8248. "command-line",
  8249. "console",
  8250. "error",
  8251. "handling",
  8252. "laravel",
  8253. "laravel-zero",
  8254. "php",
  8255. "symfony"
  8256. ],
  8257. "support": {
  8258. "issues": "https://github.com/nunomaduro/collision/issues",
  8259. "source": "https://github.com/nunomaduro/collision"
  8260. },
  8261. "funding": [
  8262. {
  8263. "url": "https://www.paypal.com/paypalme/enunomaduro",
  8264. "type": "custom"
  8265. },
  8266. {
  8267. "url": "https://github.com/nunomaduro",
  8268. "type": "github"
  8269. },
  8270. {
  8271. "url": "https://www.patreon.com/nunomaduro",
  8272. "type": "patreon"
  8273. }
  8274. ],
  8275. "time": "2024-10-15T16:06:32+00:00"
  8276. },
  8277. {
  8278. "name": "phar-io/manifest",
  8279. "version": "2.0.3",
  8280. "source": {
  8281. "type": "git",
  8282. "url": "https://github.com/phar-io/manifest.git",
  8283. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  8284. },
  8285. "dist": {
  8286. "type": "zip",
  8287. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  8288. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  8289. "shasum": "",
  8290. "mirrors": [
  8291. {
  8292. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8293. "preferred": true
  8294. }
  8295. ]
  8296. },
  8297. "require": {
  8298. "ext-dom": "*",
  8299. "ext-phar": "*",
  8300. "ext-xmlwriter": "*",
  8301. "phar-io/version": "^3.0.1",
  8302. "php": "^7.2 || ^8.0"
  8303. },
  8304. "type": "library",
  8305. "extra": {
  8306. "branch-alias": {
  8307. "dev-master": "2.0.x-dev"
  8308. }
  8309. },
  8310. "autoload": {
  8311. "classmap": [
  8312. "src/"
  8313. ]
  8314. },
  8315. "notification-url": "https://packagist.org/downloads/",
  8316. "license": [
  8317. "BSD-3-Clause"
  8318. ],
  8319. "authors": [
  8320. {
  8321. "name": "Arne Blankerts",
  8322. "email": "arne@blankerts.de",
  8323. "role": "Developer"
  8324. },
  8325. {
  8326. "name": "Sebastian Heuer",
  8327. "email": "sebastian@phpeople.de",
  8328. "role": "Developer"
  8329. },
  8330. {
  8331. "name": "Sebastian Bergmann",
  8332. "email": "sebastian@phpunit.de",
  8333. "role": "Developer"
  8334. }
  8335. ],
  8336. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8337. "support": {
  8338. "issues": "https://github.com/phar-io/manifest/issues",
  8339. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  8340. },
  8341. "time": "2021-07-20T11:28:43+00:00"
  8342. },
  8343. {
  8344. "name": "phar-io/version",
  8345. "version": "3.2.1",
  8346. "source": {
  8347. "type": "git",
  8348. "url": "https://github.com/phar-io/version.git",
  8349. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8350. },
  8351. "dist": {
  8352. "type": "zip",
  8353. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8354. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8355. "shasum": "",
  8356. "mirrors": [
  8357. {
  8358. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8359. "preferred": true
  8360. }
  8361. ]
  8362. },
  8363. "require": {
  8364. "php": "^7.2 || ^8.0"
  8365. },
  8366. "type": "library",
  8367. "autoload": {
  8368. "classmap": [
  8369. "src/"
  8370. ]
  8371. },
  8372. "notification-url": "https://packagist.org/downloads/",
  8373. "license": [
  8374. "BSD-3-Clause"
  8375. ],
  8376. "authors": [
  8377. {
  8378. "name": "Arne Blankerts",
  8379. "email": "arne@blankerts.de",
  8380. "role": "Developer"
  8381. },
  8382. {
  8383. "name": "Sebastian Heuer",
  8384. "email": "sebastian@phpeople.de",
  8385. "role": "Developer"
  8386. },
  8387. {
  8388. "name": "Sebastian Bergmann",
  8389. "email": "sebastian@phpunit.de",
  8390. "role": "Developer"
  8391. }
  8392. ],
  8393. "description": "Library for handling version information and constraints",
  8394. "support": {
  8395. "issues": "https://github.com/phar-io/version/issues",
  8396. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8397. },
  8398. "time": "2022-02-21T01:04:05+00:00"
  8399. },
  8400. {
  8401. "name": "phpunit/php-code-coverage",
  8402. "version": "11.0.5",
  8403. "source": {
  8404. "type": "git",
  8405. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8406. "reference": "19b6365ab8b59a64438c0c3f4241feeb480c9861"
  8407. },
  8408. "dist": {
  8409. "type": "zip",
  8410. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/19b6365ab8b59a64438c0c3f4241feeb480c9861",
  8411. "reference": "19b6365ab8b59a64438c0c3f4241feeb480c9861",
  8412. "shasum": "",
  8413. "mirrors": [
  8414. {
  8415. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8416. "preferred": true
  8417. }
  8418. ]
  8419. },
  8420. "require": {
  8421. "ext-dom": "*",
  8422. "ext-libxml": "*",
  8423. "ext-xmlwriter": "*",
  8424. "nikic/php-parser": "^5.0",
  8425. "php": ">=8.2",
  8426. "phpunit/php-file-iterator": "^5.0",
  8427. "phpunit/php-text-template": "^4.0",
  8428. "sebastian/code-unit-reverse-lookup": "^4.0",
  8429. "sebastian/complexity": "^4.0",
  8430. "sebastian/environment": "^7.0",
  8431. "sebastian/lines-of-code": "^3.0",
  8432. "sebastian/version": "^5.0",
  8433. "theseer/tokenizer": "^1.2.0"
  8434. },
  8435. "require-dev": {
  8436. "phpunit/phpunit": "^11.0"
  8437. },
  8438. "suggest": {
  8439. "ext-pcov": "PHP extension that provides line coverage",
  8440. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8441. },
  8442. "type": "library",
  8443. "extra": {
  8444. "branch-alias": {
  8445. "dev-main": "11.0-dev"
  8446. }
  8447. },
  8448. "autoload": {
  8449. "classmap": [
  8450. "src/"
  8451. ]
  8452. },
  8453. "notification-url": "https://packagist.org/downloads/",
  8454. "license": [
  8455. "BSD-3-Clause"
  8456. ],
  8457. "authors": [
  8458. {
  8459. "name": "Sebastian Bergmann",
  8460. "email": "sebastian@phpunit.de",
  8461. "role": "lead"
  8462. }
  8463. ],
  8464. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8465. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8466. "keywords": [
  8467. "coverage",
  8468. "testing",
  8469. "xunit"
  8470. ],
  8471. "support": {
  8472. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8473. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8474. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.5"
  8475. },
  8476. "funding": [
  8477. {
  8478. "url": "https://github.com/sebastianbergmann",
  8479. "type": "github"
  8480. }
  8481. ],
  8482. "time": "2024-07-03T05:05:37+00:00"
  8483. },
  8484. {
  8485. "name": "phpunit/php-file-iterator",
  8486. "version": "5.1.0",
  8487. "source": {
  8488. "type": "git",
  8489. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8490. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  8491. },
  8492. "dist": {
  8493. "type": "zip",
  8494. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  8495. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  8496. "shasum": "",
  8497. "mirrors": [
  8498. {
  8499. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8500. "preferred": true
  8501. }
  8502. ]
  8503. },
  8504. "require": {
  8505. "php": ">=8.2"
  8506. },
  8507. "require-dev": {
  8508. "phpunit/phpunit": "^11.0"
  8509. },
  8510. "type": "library",
  8511. "extra": {
  8512. "branch-alias": {
  8513. "dev-main": "5.0-dev"
  8514. }
  8515. },
  8516. "autoload": {
  8517. "classmap": [
  8518. "src/"
  8519. ]
  8520. },
  8521. "notification-url": "https://packagist.org/downloads/",
  8522. "license": [
  8523. "BSD-3-Clause"
  8524. ],
  8525. "authors": [
  8526. {
  8527. "name": "Sebastian Bergmann",
  8528. "email": "sebastian@phpunit.de",
  8529. "role": "lead"
  8530. }
  8531. ],
  8532. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8533. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8534. "keywords": [
  8535. "filesystem",
  8536. "iterator"
  8537. ],
  8538. "support": {
  8539. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8540. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8541. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  8542. },
  8543. "funding": [
  8544. {
  8545. "url": "https://github.com/sebastianbergmann",
  8546. "type": "github"
  8547. }
  8548. ],
  8549. "time": "2024-08-27T05:02:59+00:00"
  8550. },
  8551. {
  8552. "name": "phpunit/php-invoker",
  8553. "version": "5.0.0",
  8554. "source": {
  8555. "type": "git",
  8556. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8557. "reference": "5d8d9355a16d8cc5a1305b0a85342cfa420612be"
  8558. },
  8559. "dist": {
  8560. "type": "zip",
  8561. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5d8d9355a16d8cc5a1305b0a85342cfa420612be",
  8562. "reference": "5d8d9355a16d8cc5a1305b0a85342cfa420612be",
  8563. "shasum": "",
  8564. "mirrors": [
  8565. {
  8566. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8567. "preferred": true
  8568. }
  8569. ]
  8570. },
  8571. "require": {
  8572. "php": ">=8.2"
  8573. },
  8574. "require-dev": {
  8575. "ext-pcntl": "*",
  8576. "phpunit/phpunit": "^11.0"
  8577. },
  8578. "suggest": {
  8579. "ext-pcntl": "*"
  8580. },
  8581. "type": "library",
  8582. "extra": {
  8583. "branch-alias": {
  8584. "dev-main": "5.0-dev"
  8585. }
  8586. },
  8587. "autoload": {
  8588. "classmap": [
  8589. "src/"
  8590. ]
  8591. },
  8592. "notification-url": "https://packagist.org/downloads/",
  8593. "license": [
  8594. "BSD-3-Clause"
  8595. ],
  8596. "authors": [
  8597. {
  8598. "name": "Sebastian Bergmann",
  8599. "email": "sebastian@phpunit.de",
  8600. "role": "lead"
  8601. }
  8602. ],
  8603. "description": "Invoke callables with a timeout",
  8604. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8605. "keywords": [
  8606. "process"
  8607. ],
  8608. "support": {
  8609. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8610. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  8611. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.0"
  8612. },
  8613. "funding": [
  8614. {
  8615. "url": "https://github.com/sebastianbergmann",
  8616. "type": "github"
  8617. }
  8618. ],
  8619. "time": "2024-02-02T06:05:50+00:00"
  8620. },
  8621. {
  8622. "name": "phpunit/php-text-template",
  8623. "version": "4.0.1",
  8624. "source": {
  8625. "type": "git",
  8626. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8627. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  8628. },
  8629. "dist": {
  8630. "type": "zip",
  8631. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  8632. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  8633. "shasum": "",
  8634. "mirrors": [
  8635. {
  8636. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8637. "preferred": true
  8638. }
  8639. ]
  8640. },
  8641. "require": {
  8642. "php": ">=8.2"
  8643. },
  8644. "require-dev": {
  8645. "phpunit/phpunit": "^11.0"
  8646. },
  8647. "type": "library",
  8648. "extra": {
  8649. "branch-alias": {
  8650. "dev-main": "4.0-dev"
  8651. }
  8652. },
  8653. "autoload": {
  8654. "classmap": [
  8655. "src/"
  8656. ]
  8657. },
  8658. "notification-url": "https://packagist.org/downloads/",
  8659. "license": [
  8660. "BSD-3-Clause"
  8661. ],
  8662. "authors": [
  8663. {
  8664. "name": "Sebastian Bergmann",
  8665. "email": "sebastian@phpunit.de",
  8666. "role": "lead"
  8667. }
  8668. ],
  8669. "description": "Simple template engine.",
  8670. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8671. "keywords": [
  8672. "template"
  8673. ],
  8674. "support": {
  8675. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8676. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8677. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  8678. },
  8679. "funding": [
  8680. {
  8681. "url": "https://github.com/sebastianbergmann",
  8682. "type": "github"
  8683. }
  8684. ],
  8685. "time": "2024-07-03T05:08:43+00:00"
  8686. },
  8687. {
  8688. "name": "phpunit/php-timer",
  8689. "version": "7.0.1",
  8690. "source": {
  8691. "type": "git",
  8692. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8693. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  8694. },
  8695. "dist": {
  8696. "type": "zip",
  8697. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  8698. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  8699. "shasum": "",
  8700. "mirrors": [
  8701. {
  8702. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8703. "preferred": true
  8704. }
  8705. ]
  8706. },
  8707. "require": {
  8708. "php": ">=8.2"
  8709. },
  8710. "require-dev": {
  8711. "phpunit/phpunit": "^11.0"
  8712. },
  8713. "type": "library",
  8714. "extra": {
  8715. "branch-alias": {
  8716. "dev-main": "7.0-dev"
  8717. }
  8718. },
  8719. "autoload": {
  8720. "classmap": [
  8721. "src/"
  8722. ]
  8723. },
  8724. "notification-url": "https://packagist.org/downloads/",
  8725. "license": [
  8726. "BSD-3-Clause"
  8727. ],
  8728. "authors": [
  8729. {
  8730. "name": "Sebastian Bergmann",
  8731. "email": "sebastian@phpunit.de",
  8732. "role": "lead"
  8733. }
  8734. ],
  8735. "description": "Utility class for timing",
  8736. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8737. "keywords": [
  8738. "timer"
  8739. ],
  8740. "support": {
  8741. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8742. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  8743. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  8744. },
  8745. "funding": [
  8746. {
  8747. "url": "https://github.com/sebastianbergmann",
  8748. "type": "github"
  8749. }
  8750. ],
  8751. "time": "2024-07-03T05:09:35+00:00"
  8752. },
  8753. {
  8754. "name": "phpunit/phpunit",
  8755. "version": "11.2.6",
  8756. "source": {
  8757. "type": "git",
  8758. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8759. "reference": "1dc0fedac703199e8704de085e47dd46bac0dde4"
  8760. },
  8761. "dist": {
  8762. "type": "zip",
  8763. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/1dc0fedac703199e8704de085e47dd46bac0dde4",
  8764. "reference": "1dc0fedac703199e8704de085e47dd46bac0dde4",
  8765. "shasum": "",
  8766. "mirrors": [
  8767. {
  8768. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8769. "preferred": true
  8770. }
  8771. ]
  8772. },
  8773. "require": {
  8774. "ext-dom": "*",
  8775. "ext-json": "*",
  8776. "ext-libxml": "*",
  8777. "ext-mbstring": "*",
  8778. "ext-xml": "*",
  8779. "ext-xmlwriter": "*",
  8780. "myclabs/deep-copy": "^1.10.1",
  8781. "phar-io/manifest": "^2.0.3",
  8782. "phar-io/version": "^3.0.2",
  8783. "php": ">=8.2",
  8784. "phpunit/php-code-coverage": "^11.0",
  8785. "phpunit/php-file-iterator": "^5.0",
  8786. "phpunit/php-invoker": "^5.0",
  8787. "phpunit/php-text-template": "^4.0",
  8788. "phpunit/php-timer": "^7.0",
  8789. "sebastian/cli-parser": "^3.0",
  8790. "sebastian/code-unit": "^3.0",
  8791. "sebastian/comparator": "^6.0",
  8792. "sebastian/diff": "^6.0",
  8793. "sebastian/environment": "^7.0",
  8794. "sebastian/exporter": "^6.1.2",
  8795. "sebastian/global-state": "^7.0",
  8796. "sebastian/object-enumerator": "^6.0",
  8797. "sebastian/type": "^5.0",
  8798. "sebastian/version": "^5.0"
  8799. },
  8800. "suggest": {
  8801. "ext-soap": "To be able to generate mocks based on WSDL files"
  8802. },
  8803. "bin": [
  8804. "phpunit"
  8805. ],
  8806. "type": "library",
  8807. "extra": {
  8808. "branch-alias": {
  8809. "dev-main": "11.2-dev"
  8810. }
  8811. },
  8812. "autoload": {
  8813. "files": [
  8814. "src/Framework/Assert/Functions.php"
  8815. ],
  8816. "classmap": [
  8817. "src/"
  8818. ]
  8819. },
  8820. "notification-url": "https://packagist.org/downloads/",
  8821. "license": [
  8822. "BSD-3-Clause"
  8823. ],
  8824. "authors": [
  8825. {
  8826. "name": "Sebastian Bergmann",
  8827. "email": "sebastian@phpunit.de",
  8828. "role": "lead"
  8829. }
  8830. ],
  8831. "description": "The PHP Unit Testing framework.",
  8832. "homepage": "https://phpunit.de/",
  8833. "keywords": [
  8834. "phpunit",
  8835. "testing",
  8836. "xunit"
  8837. ],
  8838. "support": {
  8839. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8840. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8841. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.2.6"
  8842. },
  8843. "funding": [
  8844. {
  8845. "url": "https://phpunit.de/sponsors.html",
  8846. "type": "custom"
  8847. },
  8848. {
  8849. "url": "https://github.com/sebastianbergmann",
  8850. "type": "github"
  8851. },
  8852. {
  8853. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8854. "type": "tidelift"
  8855. }
  8856. ],
  8857. "time": "2024-07-03T05:51:49+00:00"
  8858. },
  8859. {
  8860. "name": "sebastian/cli-parser",
  8861. "version": "3.0.2",
  8862. "source": {
  8863. "type": "git",
  8864. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8865. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  8866. },
  8867. "dist": {
  8868. "type": "zip",
  8869. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  8870. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  8871. "shasum": "",
  8872. "mirrors": [
  8873. {
  8874. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8875. "preferred": true
  8876. }
  8877. ]
  8878. },
  8879. "require": {
  8880. "php": ">=8.2"
  8881. },
  8882. "require-dev": {
  8883. "phpunit/phpunit": "^11.0"
  8884. },
  8885. "type": "library",
  8886. "extra": {
  8887. "branch-alias": {
  8888. "dev-main": "3.0-dev"
  8889. }
  8890. },
  8891. "autoload": {
  8892. "classmap": [
  8893. "src/"
  8894. ]
  8895. },
  8896. "notification-url": "https://packagist.org/downloads/",
  8897. "license": [
  8898. "BSD-3-Clause"
  8899. ],
  8900. "authors": [
  8901. {
  8902. "name": "Sebastian Bergmann",
  8903. "email": "sebastian@phpunit.de",
  8904. "role": "lead"
  8905. }
  8906. ],
  8907. "description": "Library for parsing CLI options",
  8908. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8909. "support": {
  8910. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8911. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  8912. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  8913. },
  8914. "funding": [
  8915. {
  8916. "url": "https://github.com/sebastianbergmann",
  8917. "type": "github"
  8918. }
  8919. ],
  8920. "time": "2024-07-03T04:41:36+00:00"
  8921. },
  8922. {
  8923. "name": "sebastian/code-unit",
  8924. "version": "3.0.3",
  8925. "source": {
  8926. "type": "git",
  8927. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8928. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64"
  8929. },
  8930. "dist": {
  8931. "type": "zip",
  8932. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  8933. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  8934. "shasum": "",
  8935. "mirrors": [
  8936. {
  8937. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8938. "preferred": true
  8939. }
  8940. ]
  8941. },
  8942. "require": {
  8943. "php": ">=8.2"
  8944. },
  8945. "require-dev": {
  8946. "phpunit/phpunit": "^11.5"
  8947. },
  8948. "type": "library",
  8949. "extra": {
  8950. "branch-alias": {
  8951. "dev-main": "3.0-dev"
  8952. }
  8953. },
  8954. "autoload": {
  8955. "classmap": [
  8956. "src/"
  8957. ]
  8958. },
  8959. "notification-url": "https://packagist.org/downloads/",
  8960. "license": [
  8961. "BSD-3-Clause"
  8962. ],
  8963. "authors": [
  8964. {
  8965. "name": "Sebastian Bergmann",
  8966. "email": "sebastian@phpunit.de",
  8967. "role": "lead"
  8968. }
  8969. ],
  8970. "description": "Collection of value objects that represent the PHP code units",
  8971. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8972. "support": {
  8973. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8974. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  8975. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3"
  8976. },
  8977. "funding": [
  8978. {
  8979. "url": "https://github.com/sebastianbergmann",
  8980. "type": "github"
  8981. }
  8982. ],
  8983. "time": "2025-03-19T07:56:08+00:00"
  8984. },
  8985. {
  8986. "name": "sebastian/code-unit-reverse-lookup",
  8987. "version": "4.0.1",
  8988. "source": {
  8989. "type": "git",
  8990. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8991. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  8992. },
  8993. "dist": {
  8994. "type": "zip",
  8995. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  8996. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  8997. "shasum": "",
  8998. "mirrors": [
  8999. {
  9000. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9001. "preferred": true
  9002. }
  9003. ]
  9004. },
  9005. "require": {
  9006. "php": ">=8.2"
  9007. },
  9008. "require-dev": {
  9009. "phpunit/phpunit": "^11.0"
  9010. },
  9011. "type": "library",
  9012. "extra": {
  9013. "branch-alias": {
  9014. "dev-main": "4.0-dev"
  9015. }
  9016. },
  9017. "autoload": {
  9018. "classmap": [
  9019. "src/"
  9020. ]
  9021. },
  9022. "notification-url": "https://packagist.org/downloads/",
  9023. "license": [
  9024. "BSD-3-Clause"
  9025. ],
  9026. "authors": [
  9027. {
  9028. "name": "Sebastian Bergmann",
  9029. "email": "sebastian@phpunit.de"
  9030. }
  9031. ],
  9032. "description": "Looks up which function or method a line of code belongs to",
  9033. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9034. "support": {
  9035. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  9036. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  9037. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  9038. },
  9039. "funding": [
  9040. {
  9041. "url": "https://github.com/sebastianbergmann",
  9042. "type": "github"
  9043. }
  9044. ],
  9045. "time": "2024-07-03T04:45:54+00:00"
  9046. },
  9047. {
  9048. "name": "sebastian/comparator",
  9049. "version": "6.3.1",
  9050. "source": {
  9051. "type": "git",
  9052. "url": "https://github.com/sebastianbergmann/comparator.git",
  9053. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959"
  9054. },
  9055. "dist": {
  9056. "type": "zip",
  9057. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  9058. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  9059. "shasum": "",
  9060. "mirrors": [
  9061. {
  9062. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9063. "preferred": true
  9064. }
  9065. ]
  9066. },
  9067. "require": {
  9068. "ext-dom": "*",
  9069. "ext-mbstring": "*",
  9070. "php": ">=8.2",
  9071. "sebastian/diff": "^6.0",
  9072. "sebastian/exporter": "^6.0"
  9073. },
  9074. "require-dev": {
  9075. "phpunit/phpunit": "^11.4"
  9076. },
  9077. "suggest": {
  9078. "ext-bcmath": "For comparing BcMath\\Number objects"
  9079. },
  9080. "type": "library",
  9081. "extra": {
  9082. "branch-alias": {
  9083. "dev-main": "6.3-dev"
  9084. }
  9085. },
  9086. "autoload": {
  9087. "classmap": [
  9088. "src/"
  9089. ]
  9090. },
  9091. "notification-url": "https://packagist.org/downloads/",
  9092. "license": [
  9093. "BSD-3-Clause"
  9094. ],
  9095. "authors": [
  9096. {
  9097. "name": "Sebastian Bergmann",
  9098. "email": "sebastian@phpunit.de"
  9099. },
  9100. {
  9101. "name": "Jeff Welch",
  9102. "email": "whatthejeff@gmail.com"
  9103. },
  9104. {
  9105. "name": "Volker Dusch",
  9106. "email": "github@wallbash.com"
  9107. },
  9108. {
  9109. "name": "Bernhard Schussek",
  9110. "email": "bschussek@2bepublished.at"
  9111. }
  9112. ],
  9113. "description": "Provides the functionality to compare PHP values for equality",
  9114. "homepage": "https://github.com/sebastianbergmann/comparator",
  9115. "keywords": [
  9116. "comparator",
  9117. "compare",
  9118. "equality"
  9119. ],
  9120. "support": {
  9121. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9122. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9123. "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.1"
  9124. },
  9125. "funding": [
  9126. {
  9127. "url": "https://github.com/sebastianbergmann",
  9128. "type": "github"
  9129. }
  9130. ],
  9131. "time": "2025-03-07T06:57:01+00:00"
  9132. },
  9133. {
  9134. "name": "sebastian/complexity",
  9135. "version": "4.0.1",
  9136. "source": {
  9137. "type": "git",
  9138. "url": "https://github.com/sebastianbergmann/complexity.git",
  9139. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  9140. },
  9141. "dist": {
  9142. "type": "zip",
  9143. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  9144. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  9145. "shasum": "",
  9146. "mirrors": [
  9147. {
  9148. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9149. "preferred": true
  9150. }
  9151. ]
  9152. },
  9153. "require": {
  9154. "nikic/php-parser": "^5.0",
  9155. "php": ">=8.2"
  9156. },
  9157. "require-dev": {
  9158. "phpunit/phpunit": "^11.0"
  9159. },
  9160. "type": "library",
  9161. "extra": {
  9162. "branch-alias": {
  9163. "dev-main": "4.0-dev"
  9164. }
  9165. },
  9166. "autoload": {
  9167. "classmap": [
  9168. "src/"
  9169. ]
  9170. },
  9171. "notification-url": "https://packagist.org/downloads/",
  9172. "license": [
  9173. "BSD-3-Clause"
  9174. ],
  9175. "authors": [
  9176. {
  9177. "name": "Sebastian Bergmann",
  9178. "email": "sebastian@phpunit.de",
  9179. "role": "lead"
  9180. }
  9181. ],
  9182. "description": "Library for calculating the complexity of PHP code units",
  9183. "homepage": "https://github.com/sebastianbergmann/complexity",
  9184. "support": {
  9185. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9186. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9187. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  9188. },
  9189. "funding": [
  9190. {
  9191. "url": "https://github.com/sebastianbergmann",
  9192. "type": "github"
  9193. }
  9194. ],
  9195. "time": "2024-07-03T04:49:50+00:00"
  9196. },
  9197. {
  9198. "name": "sebastian/diff",
  9199. "version": "6.0.2",
  9200. "source": {
  9201. "type": "git",
  9202. "url": "https://github.com/sebastianbergmann/diff.git",
  9203. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  9204. },
  9205. "dist": {
  9206. "type": "zip",
  9207. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  9208. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  9209. "shasum": "",
  9210. "mirrors": [
  9211. {
  9212. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9213. "preferred": true
  9214. }
  9215. ]
  9216. },
  9217. "require": {
  9218. "php": ">=8.2"
  9219. },
  9220. "require-dev": {
  9221. "phpunit/phpunit": "^11.0",
  9222. "symfony/process": "^4.2 || ^5"
  9223. },
  9224. "type": "library",
  9225. "extra": {
  9226. "branch-alias": {
  9227. "dev-main": "6.0-dev"
  9228. }
  9229. },
  9230. "autoload": {
  9231. "classmap": [
  9232. "src/"
  9233. ]
  9234. },
  9235. "notification-url": "https://packagist.org/downloads/",
  9236. "license": [
  9237. "BSD-3-Clause"
  9238. ],
  9239. "authors": [
  9240. {
  9241. "name": "Sebastian Bergmann",
  9242. "email": "sebastian@phpunit.de"
  9243. },
  9244. {
  9245. "name": "Kore Nordmann",
  9246. "email": "mail@kore-nordmann.de"
  9247. }
  9248. ],
  9249. "description": "Diff implementation",
  9250. "homepage": "https://github.com/sebastianbergmann/diff",
  9251. "keywords": [
  9252. "diff",
  9253. "udiff",
  9254. "unidiff",
  9255. "unified diff"
  9256. ],
  9257. "support": {
  9258. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9259. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9260. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  9261. },
  9262. "funding": [
  9263. {
  9264. "url": "https://github.com/sebastianbergmann",
  9265. "type": "github"
  9266. }
  9267. ],
  9268. "time": "2024-07-03T04:53:05+00:00"
  9269. },
  9270. {
  9271. "name": "sebastian/environment",
  9272. "version": "7.2.1",
  9273. "source": {
  9274. "type": "git",
  9275. "url": "https://github.com/sebastianbergmann/environment.git",
  9276. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4"
  9277. },
  9278. "dist": {
  9279. "type": "zip",
  9280. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/a5c75038693ad2e8d4b6c15ba2403532647830c4",
  9281. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4",
  9282. "shasum": "",
  9283. "mirrors": [
  9284. {
  9285. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9286. "preferred": true
  9287. }
  9288. ]
  9289. },
  9290. "require": {
  9291. "php": ">=8.2"
  9292. },
  9293. "require-dev": {
  9294. "phpunit/phpunit": "^11.3"
  9295. },
  9296. "suggest": {
  9297. "ext-posix": "*"
  9298. },
  9299. "type": "library",
  9300. "extra": {
  9301. "branch-alias": {
  9302. "dev-main": "7.2-dev"
  9303. }
  9304. },
  9305. "autoload": {
  9306. "classmap": [
  9307. "src/"
  9308. ]
  9309. },
  9310. "notification-url": "https://packagist.org/downloads/",
  9311. "license": [
  9312. "BSD-3-Clause"
  9313. ],
  9314. "authors": [
  9315. {
  9316. "name": "Sebastian Bergmann",
  9317. "email": "sebastian@phpunit.de"
  9318. }
  9319. ],
  9320. "description": "Provides functionality to handle HHVM/PHP environments",
  9321. "homepage": "https://github.com/sebastianbergmann/environment",
  9322. "keywords": [
  9323. "Xdebug",
  9324. "environment",
  9325. "hhvm"
  9326. ],
  9327. "support": {
  9328. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9329. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9330. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.1"
  9331. },
  9332. "funding": [
  9333. {
  9334. "url": "https://github.com/sebastianbergmann",
  9335. "type": "github"
  9336. },
  9337. {
  9338. "url": "https://liberapay.com/sebastianbergmann",
  9339. "type": "liberapay"
  9340. },
  9341. {
  9342. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9343. "type": "thanks_dev"
  9344. },
  9345. {
  9346. "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
  9347. "type": "tidelift"
  9348. }
  9349. ],
  9350. "time": "2025-05-21T11:55:47+00:00"
  9351. },
  9352. {
  9353. "name": "sebastian/exporter",
  9354. "version": "6.3.2",
  9355. "source": {
  9356. "type": "git",
  9357. "url": "https://github.com/sebastianbergmann/exporter.git",
  9358. "reference": "70a298763b40b213ec087c51c739efcaa90bcd74"
  9359. },
  9360. "dist": {
  9361. "type": "zip",
  9362. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/70a298763b40b213ec087c51c739efcaa90bcd74",
  9363. "reference": "70a298763b40b213ec087c51c739efcaa90bcd74",
  9364. "shasum": "",
  9365. "mirrors": [
  9366. {
  9367. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9368. "preferred": true
  9369. }
  9370. ]
  9371. },
  9372. "require": {
  9373. "ext-mbstring": "*",
  9374. "php": ">=8.2",
  9375. "sebastian/recursion-context": "^6.0"
  9376. },
  9377. "require-dev": {
  9378. "phpunit/phpunit": "^11.3"
  9379. },
  9380. "type": "library",
  9381. "extra": {
  9382. "branch-alias": {
  9383. "dev-main": "6.3-dev"
  9384. }
  9385. },
  9386. "autoload": {
  9387. "classmap": [
  9388. "src/"
  9389. ]
  9390. },
  9391. "notification-url": "https://packagist.org/downloads/",
  9392. "license": [
  9393. "BSD-3-Clause"
  9394. ],
  9395. "authors": [
  9396. {
  9397. "name": "Sebastian Bergmann",
  9398. "email": "sebastian@phpunit.de"
  9399. },
  9400. {
  9401. "name": "Jeff Welch",
  9402. "email": "whatthejeff@gmail.com"
  9403. },
  9404. {
  9405. "name": "Volker Dusch",
  9406. "email": "github@wallbash.com"
  9407. },
  9408. {
  9409. "name": "Adam Harvey",
  9410. "email": "aharvey@php.net"
  9411. },
  9412. {
  9413. "name": "Bernhard Schussek",
  9414. "email": "bschussek@gmail.com"
  9415. }
  9416. ],
  9417. "description": "Provides the functionality to export PHP variables for visualization",
  9418. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9419. "keywords": [
  9420. "export",
  9421. "exporter"
  9422. ],
  9423. "support": {
  9424. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9425. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9426. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.2"
  9427. },
  9428. "funding": [
  9429. {
  9430. "url": "https://github.com/sebastianbergmann",
  9431. "type": "github"
  9432. },
  9433. {
  9434. "url": "https://liberapay.com/sebastianbergmann",
  9435. "type": "liberapay"
  9436. },
  9437. {
  9438. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9439. "type": "thanks_dev"
  9440. },
  9441. {
  9442. "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
  9443. "type": "tidelift"
  9444. }
  9445. ],
  9446. "time": "2025-09-24T06:12:51+00:00"
  9447. },
  9448. {
  9449. "name": "sebastian/global-state",
  9450. "version": "7.0.2",
  9451. "source": {
  9452. "type": "git",
  9453. "url": "https://github.com/sebastianbergmann/global-state.git",
  9454. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  9455. },
  9456. "dist": {
  9457. "type": "zip",
  9458. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  9459. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  9460. "shasum": "",
  9461. "mirrors": [
  9462. {
  9463. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9464. "preferred": true
  9465. }
  9466. ]
  9467. },
  9468. "require": {
  9469. "php": ">=8.2",
  9470. "sebastian/object-reflector": "^4.0",
  9471. "sebastian/recursion-context": "^6.0"
  9472. },
  9473. "require-dev": {
  9474. "ext-dom": "*",
  9475. "phpunit/phpunit": "^11.0"
  9476. },
  9477. "type": "library",
  9478. "extra": {
  9479. "branch-alias": {
  9480. "dev-main": "7.0-dev"
  9481. }
  9482. },
  9483. "autoload": {
  9484. "classmap": [
  9485. "src/"
  9486. ]
  9487. },
  9488. "notification-url": "https://packagist.org/downloads/",
  9489. "license": [
  9490. "BSD-3-Clause"
  9491. ],
  9492. "authors": [
  9493. {
  9494. "name": "Sebastian Bergmann",
  9495. "email": "sebastian@phpunit.de"
  9496. }
  9497. ],
  9498. "description": "Snapshotting of global state",
  9499. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9500. "keywords": [
  9501. "global state"
  9502. ],
  9503. "support": {
  9504. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9505. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9506. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  9507. },
  9508. "funding": [
  9509. {
  9510. "url": "https://github.com/sebastianbergmann",
  9511. "type": "github"
  9512. }
  9513. ],
  9514. "time": "2024-07-03T04:57:36+00:00"
  9515. },
  9516. {
  9517. "name": "sebastian/lines-of-code",
  9518. "version": "3.0.0",
  9519. "source": {
  9520. "type": "git",
  9521. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9522. "reference": "376c5b3f6b43c78fdc049740bca76a7c846706c0"
  9523. },
  9524. "dist": {
  9525. "type": "zip",
  9526. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/376c5b3f6b43c78fdc049740bca76a7c846706c0",
  9527. "reference": "376c5b3f6b43c78fdc049740bca76a7c846706c0",
  9528. "shasum": "",
  9529. "mirrors": [
  9530. {
  9531. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9532. "preferred": true
  9533. }
  9534. ]
  9535. },
  9536. "require": {
  9537. "nikic/php-parser": "^5.0",
  9538. "php": ">=8.2"
  9539. },
  9540. "require-dev": {
  9541. "phpunit/phpunit": "^11.0"
  9542. },
  9543. "type": "library",
  9544. "extra": {
  9545. "branch-alias": {
  9546. "dev-main": "3.0-dev"
  9547. }
  9548. },
  9549. "autoload": {
  9550. "classmap": [
  9551. "src/"
  9552. ]
  9553. },
  9554. "notification-url": "https://packagist.org/downloads/",
  9555. "license": [
  9556. "BSD-3-Clause"
  9557. ],
  9558. "authors": [
  9559. {
  9560. "name": "Sebastian Bergmann",
  9561. "email": "sebastian@phpunit.de",
  9562. "role": "lead"
  9563. }
  9564. ],
  9565. "description": "Library for counting the lines of code in PHP source code",
  9566. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9567. "support": {
  9568. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9569. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9570. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.0"
  9571. },
  9572. "funding": [
  9573. {
  9574. "url": "https://github.com/sebastianbergmann",
  9575. "type": "github"
  9576. }
  9577. ],
  9578. "time": "2024-02-02T06:00:36+00:00"
  9579. },
  9580. {
  9581. "name": "sebastian/object-enumerator",
  9582. "version": "6.0.1",
  9583. "source": {
  9584. "type": "git",
  9585. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9586. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  9587. },
  9588. "dist": {
  9589. "type": "zip",
  9590. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  9591. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  9592. "shasum": "",
  9593. "mirrors": [
  9594. {
  9595. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9596. "preferred": true
  9597. }
  9598. ]
  9599. },
  9600. "require": {
  9601. "php": ">=8.2",
  9602. "sebastian/object-reflector": "^4.0",
  9603. "sebastian/recursion-context": "^6.0"
  9604. },
  9605. "require-dev": {
  9606. "phpunit/phpunit": "^11.0"
  9607. },
  9608. "type": "library",
  9609. "extra": {
  9610. "branch-alias": {
  9611. "dev-main": "6.0-dev"
  9612. }
  9613. },
  9614. "autoload": {
  9615. "classmap": [
  9616. "src/"
  9617. ]
  9618. },
  9619. "notification-url": "https://packagist.org/downloads/",
  9620. "license": [
  9621. "BSD-3-Clause"
  9622. ],
  9623. "authors": [
  9624. {
  9625. "name": "Sebastian Bergmann",
  9626. "email": "sebastian@phpunit.de"
  9627. }
  9628. ],
  9629. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9630. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9631. "support": {
  9632. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9633. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  9634. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  9635. },
  9636. "funding": [
  9637. {
  9638. "url": "https://github.com/sebastianbergmann",
  9639. "type": "github"
  9640. }
  9641. ],
  9642. "time": "2024-07-03T05:00:13+00:00"
  9643. },
  9644. {
  9645. "name": "sebastian/object-reflector",
  9646. "version": "4.0.1",
  9647. "source": {
  9648. "type": "git",
  9649. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9650. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  9651. },
  9652. "dist": {
  9653. "type": "zip",
  9654. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  9655. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  9656. "shasum": "",
  9657. "mirrors": [
  9658. {
  9659. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9660. "preferred": true
  9661. }
  9662. ]
  9663. },
  9664. "require": {
  9665. "php": ">=8.2"
  9666. },
  9667. "require-dev": {
  9668. "phpunit/phpunit": "^11.0"
  9669. },
  9670. "type": "library",
  9671. "extra": {
  9672. "branch-alias": {
  9673. "dev-main": "4.0-dev"
  9674. }
  9675. },
  9676. "autoload": {
  9677. "classmap": [
  9678. "src/"
  9679. ]
  9680. },
  9681. "notification-url": "https://packagist.org/downloads/",
  9682. "license": [
  9683. "BSD-3-Clause"
  9684. ],
  9685. "authors": [
  9686. {
  9687. "name": "Sebastian Bergmann",
  9688. "email": "sebastian@phpunit.de"
  9689. }
  9690. ],
  9691. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9692. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9693. "support": {
  9694. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9695. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  9696. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  9697. },
  9698. "funding": [
  9699. {
  9700. "url": "https://github.com/sebastianbergmann",
  9701. "type": "github"
  9702. }
  9703. ],
  9704. "time": "2024-07-03T05:01:32+00:00"
  9705. },
  9706. {
  9707. "name": "sebastian/recursion-context",
  9708. "version": "6.0.2",
  9709. "source": {
  9710. "type": "git",
  9711. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9712. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  9713. },
  9714. "dist": {
  9715. "type": "zip",
  9716. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  9717. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  9718. "shasum": "",
  9719. "mirrors": [
  9720. {
  9721. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9722. "preferred": true
  9723. }
  9724. ]
  9725. },
  9726. "require": {
  9727. "php": ">=8.2"
  9728. },
  9729. "require-dev": {
  9730. "phpunit/phpunit": "^11.0"
  9731. },
  9732. "type": "library",
  9733. "extra": {
  9734. "branch-alias": {
  9735. "dev-main": "6.0-dev"
  9736. }
  9737. },
  9738. "autoload": {
  9739. "classmap": [
  9740. "src/"
  9741. ]
  9742. },
  9743. "notification-url": "https://packagist.org/downloads/",
  9744. "license": [
  9745. "BSD-3-Clause"
  9746. ],
  9747. "authors": [
  9748. {
  9749. "name": "Sebastian Bergmann",
  9750. "email": "sebastian@phpunit.de"
  9751. },
  9752. {
  9753. "name": "Jeff Welch",
  9754. "email": "whatthejeff@gmail.com"
  9755. },
  9756. {
  9757. "name": "Adam Harvey",
  9758. "email": "aharvey@php.net"
  9759. }
  9760. ],
  9761. "description": "Provides functionality to recursively process PHP variables",
  9762. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9763. "support": {
  9764. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9765. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  9766. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  9767. },
  9768. "funding": [
  9769. {
  9770. "url": "https://github.com/sebastianbergmann",
  9771. "type": "github"
  9772. }
  9773. ],
  9774. "time": "2024-07-03T05:10:34+00:00"
  9775. },
  9776. {
  9777. "name": "sebastian/type",
  9778. "version": "5.1.2",
  9779. "source": {
  9780. "type": "git",
  9781. "url": "https://github.com/sebastianbergmann/type.git",
  9782. "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e"
  9783. },
  9784. "dist": {
  9785. "type": "zip",
  9786. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
  9787. "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
  9788. "shasum": "",
  9789. "mirrors": [
  9790. {
  9791. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9792. "preferred": true
  9793. }
  9794. ]
  9795. },
  9796. "require": {
  9797. "php": ">=8.2"
  9798. },
  9799. "require-dev": {
  9800. "phpunit/phpunit": "^11.3"
  9801. },
  9802. "type": "library",
  9803. "extra": {
  9804. "branch-alias": {
  9805. "dev-main": "5.1-dev"
  9806. }
  9807. },
  9808. "autoload": {
  9809. "classmap": [
  9810. "src/"
  9811. ]
  9812. },
  9813. "notification-url": "https://packagist.org/downloads/",
  9814. "license": [
  9815. "BSD-3-Clause"
  9816. ],
  9817. "authors": [
  9818. {
  9819. "name": "Sebastian Bergmann",
  9820. "email": "sebastian@phpunit.de",
  9821. "role": "lead"
  9822. }
  9823. ],
  9824. "description": "Collection of value objects that represent the types of the PHP type system",
  9825. "homepage": "https://github.com/sebastianbergmann/type",
  9826. "support": {
  9827. "issues": "https://github.com/sebastianbergmann/type/issues",
  9828. "security": "https://github.com/sebastianbergmann/type/security/policy",
  9829. "source": "https://github.com/sebastianbergmann/type/tree/5.1.2"
  9830. },
  9831. "funding": [
  9832. {
  9833. "url": "https://github.com/sebastianbergmann",
  9834. "type": "github"
  9835. }
  9836. ],
  9837. "time": "2025-03-18T13:35:50+00:00"
  9838. },
  9839. {
  9840. "name": "sebastian/version",
  9841. "version": "5.0.2",
  9842. "source": {
  9843. "type": "git",
  9844. "url": "https://github.com/sebastianbergmann/version.git",
  9845. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  9846. },
  9847. "dist": {
  9848. "type": "zip",
  9849. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  9850. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  9851. "shasum": "",
  9852. "mirrors": [
  9853. {
  9854. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9855. "preferred": true
  9856. }
  9857. ]
  9858. },
  9859. "require": {
  9860. "php": ">=8.2"
  9861. },
  9862. "type": "library",
  9863. "extra": {
  9864. "branch-alias": {
  9865. "dev-main": "5.0-dev"
  9866. }
  9867. },
  9868. "autoload": {
  9869. "classmap": [
  9870. "src/"
  9871. ]
  9872. },
  9873. "notification-url": "https://packagist.org/downloads/",
  9874. "license": [
  9875. "BSD-3-Clause"
  9876. ],
  9877. "authors": [
  9878. {
  9879. "name": "Sebastian Bergmann",
  9880. "email": "sebastian@phpunit.de",
  9881. "role": "lead"
  9882. }
  9883. ],
  9884. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9885. "homepage": "https://github.com/sebastianbergmann/version",
  9886. "support": {
  9887. "issues": "https://github.com/sebastianbergmann/version/issues",
  9888. "security": "https://github.com/sebastianbergmann/version/security/policy",
  9889. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  9890. },
  9891. "funding": [
  9892. {
  9893. "url": "https://github.com/sebastianbergmann",
  9894. "type": "github"
  9895. }
  9896. ],
  9897. "time": "2024-10-09T05:16:32+00:00"
  9898. },
  9899. {
  9900. "name": "symfony/yaml",
  9901. "version": "v7.4.1",
  9902. "source": {
  9903. "type": "git",
  9904. "url": "https://github.com/symfony/yaml.git",
  9905. "reference": "24dd4de28d2e3988b311751ac49e684d783e2345"
  9906. },
  9907. "dist": {
  9908. "type": "zip",
  9909. "url": "https://api.github.com/repos/symfony/yaml/zipball/24dd4de28d2e3988b311751ac49e684d783e2345",
  9910. "reference": "24dd4de28d2e3988b311751ac49e684d783e2345",
  9911. "shasum": "",
  9912. "mirrors": [
  9913. {
  9914. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9915. "preferred": true
  9916. }
  9917. ]
  9918. },
  9919. "require": {
  9920. "php": ">=8.2",
  9921. "symfony/deprecation-contracts": "^2.5|^3",
  9922. "symfony/polyfill-ctype": "^1.8"
  9923. },
  9924. "conflict": {
  9925. "symfony/console": "<6.4"
  9926. },
  9927. "require-dev": {
  9928. "symfony/console": "^6.4|^7.0|^8.0"
  9929. },
  9930. "bin": [
  9931. "Resources/bin/yaml-lint"
  9932. ],
  9933. "type": "library",
  9934. "autoload": {
  9935. "psr-4": {
  9936. "Symfony\\Component\\Yaml\\": ""
  9937. },
  9938. "exclude-from-classmap": [
  9939. "/Tests/"
  9940. ]
  9941. },
  9942. "notification-url": "https://packagist.org/downloads/",
  9943. "license": [
  9944. "MIT"
  9945. ],
  9946. "authors": [
  9947. {
  9948. "name": "Fabien Potencier",
  9949. "email": "fabien@symfony.com"
  9950. },
  9951. {
  9952. "name": "Symfony Community",
  9953. "homepage": "https://symfony.com/contributors"
  9954. }
  9955. ],
  9956. "description": "Loads and dumps YAML files",
  9957. "homepage": "https://symfony.com",
  9958. "support": {
  9959. "source": "https://github.com/symfony/yaml/tree/v7.4.1"
  9960. },
  9961. "funding": [
  9962. {
  9963. "url": "https://symfony.com/sponsor",
  9964. "type": "custom"
  9965. },
  9966. {
  9967. "url": "https://github.com/fabpot",
  9968. "type": "github"
  9969. },
  9970. {
  9971. "url": "https://github.com/nicolas-grekas",
  9972. "type": "github"
  9973. },
  9974. {
  9975. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9976. "type": "tidelift"
  9977. }
  9978. ],
  9979. "time": "2025-12-04T18:11:45+00:00"
  9980. },
  9981. {
  9982. "name": "theseer/tokenizer",
  9983. "version": "1.3.1",
  9984. "source": {
  9985. "type": "git",
  9986. "url": "https://github.com/theseer/tokenizer.git",
  9987. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c"
  9988. },
  9989. "dist": {
  9990. "type": "zip",
  9991. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c",
  9992. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c",
  9993. "shasum": "",
  9994. "mirrors": [
  9995. {
  9996. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9997. "preferred": true
  9998. }
  9999. ]
  10000. },
  10001. "require": {
  10002. "ext-dom": "*",
  10003. "ext-tokenizer": "*",
  10004. "ext-xmlwriter": "*",
  10005. "php": "^7.2 || ^8.0"
  10006. },
  10007. "type": "library",
  10008. "autoload": {
  10009. "classmap": [
  10010. "src/"
  10011. ]
  10012. },
  10013. "notification-url": "https://packagist.org/downloads/",
  10014. "license": [
  10015. "BSD-3-Clause"
  10016. ],
  10017. "authors": [
  10018. {
  10019. "name": "Arne Blankerts",
  10020. "email": "arne@blankerts.de",
  10021. "role": "Developer"
  10022. }
  10023. ],
  10024. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10025. "support": {
  10026. "issues": "https://github.com/theseer/tokenizer/issues",
  10027. "source": "https://github.com/theseer/tokenizer/tree/1.3.1"
  10028. },
  10029. "funding": [
  10030. {
  10031. "url": "https://github.com/theseer",
  10032. "type": "github"
  10033. }
  10034. ],
  10035. "time": "2025-11-17T20:03:58+00:00"
  10036. }
  10037. ],
  10038. "aliases": [],
  10039. "minimum-stability": "stable",
  10040. "stability-flags": [],
  10041. "prefer-stable": true,
  10042. "prefer-lowest": false,
  10043. "platform": {
  10044. "php": "^8.2"
  10045. },
  10046. "platform-dev": [],
  10047. "plugin-api-version": "2.3.0"
  10048. }