composer.lock 302 KB

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