composer.lock 378 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426
  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": "6fa7d973c7984a64dfa93cd65ae42ea0",
  8. "packages": [
  9. {
  10. "name": "composer/semver",
  11. "version": "3.4.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/semver.git",
  15. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  20. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^5.3.2 || ^7.0 || ^8.0"
  25. },
  26. "require-dev": {
  27. "phpstan/phpstan": "^1.11",
  28. "symfony/phpunit-bridge": "^3 || ^7"
  29. },
  30. "type": "library",
  31. "extra": {
  32. "branch-alias": {
  33. "dev-main": "3.x-dev"
  34. }
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "Composer\\Semver\\": "src"
  39. }
  40. },
  41. "notification-url": "https://packagist.org/downloads/",
  42. "license": [
  43. "MIT"
  44. ],
  45. "authors": [
  46. {
  47. "name": "Nils Adermann",
  48. "email": "naderman@naderman.de",
  49. "homepage": "http://www.naderman.de"
  50. },
  51. {
  52. "name": "Jordi Boggiano",
  53. "email": "j.boggiano@seld.be",
  54. "homepage": "http://seld.be"
  55. },
  56. {
  57. "name": "Rob Bast",
  58. "email": "rob.bast@gmail.com",
  59. "homepage": "http://robbast.nl"
  60. }
  61. ],
  62. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  63. "keywords": [
  64. "semantic",
  65. "semver",
  66. "validation",
  67. "versioning"
  68. ],
  69. "support": {
  70. "irc": "ircs://irc.libera.chat:6697/composer",
  71. "issues": "https://github.com/composer/semver/issues",
  72. "source": "https://github.com/composer/semver/tree/3.4.3"
  73. },
  74. "funding": [
  75. {
  76. "url": "https://packagist.com",
  77. "type": "custom"
  78. },
  79. {
  80. "url": "https://github.com/composer",
  81. "type": "github"
  82. },
  83. {
  84. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  85. "type": "tidelift"
  86. }
  87. ],
  88. "time": "2024-09-19T14:15:21+00:00"
  89. },
  90. {
  91. "name": "doctrine/collections",
  92. "version": "2.3.0",
  93. "source": {
  94. "type": "git",
  95. "url": "https://github.com/doctrine/collections.git",
  96. "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d"
  97. },
  98. "dist": {
  99. "type": "zip",
  100. "url": "https://api.github.com/repos/doctrine/collections/zipball/2eb07e5953eed811ce1b309a7478a3b236f2273d",
  101. "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d",
  102. "shasum": ""
  103. },
  104. "require": {
  105. "doctrine/deprecations": "^1",
  106. "php": "^8.1",
  107. "symfony/polyfill-php84": "^1.30"
  108. },
  109. "require-dev": {
  110. "doctrine/coding-standard": "^12",
  111. "ext-json": "*",
  112. "phpstan/phpstan": "^1.8",
  113. "phpstan/phpstan-phpunit": "^1.0",
  114. "phpunit/phpunit": "^10.5"
  115. },
  116. "type": "library",
  117. "autoload": {
  118. "psr-4": {
  119. "Doctrine\\Common\\Collections\\": "src"
  120. }
  121. },
  122. "notification-url": "https://packagist.org/downloads/",
  123. "license": [
  124. "MIT"
  125. ],
  126. "authors": [
  127. {
  128. "name": "Guilherme Blanco",
  129. "email": "guilhermeblanco@gmail.com"
  130. },
  131. {
  132. "name": "Roman Borschel",
  133. "email": "roman@code-factory.org"
  134. },
  135. {
  136. "name": "Benjamin Eberlei",
  137. "email": "kontakt@beberlei.de"
  138. },
  139. {
  140. "name": "Jonathan Wage",
  141. "email": "jonwage@gmail.com"
  142. },
  143. {
  144. "name": "Johannes Schmitt",
  145. "email": "schmittjoh@gmail.com"
  146. }
  147. ],
  148. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  149. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  150. "keywords": [
  151. "array",
  152. "collections",
  153. "iterators",
  154. "php"
  155. ],
  156. "support": {
  157. "issues": "https://github.com/doctrine/collections/issues",
  158. "source": "https://github.com/doctrine/collections/tree/2.3.0"
  159. },
  160. "funding": [
  161. {
  162. "url": "https://www.doctrine-project.org/sponsorship.html",
  163. "type": "custom"
  164. },
  165. {
  166. "url": "https://www.patreon.com/phpdoctrine",
  167. "type": "patreon"
  168. },
  169. {
  170. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  171. "type": "tidelift"
  172. }
  173. ],
  174. "time": "2025-03-22T10:17:19+00:00"
  175. },
  176. {
  177. "name": "doctrine/dbal",
  178. "version": "3.10.0",
  179. "source": {
  180. "type": "git",
  181. "url": "https://github.com/doctrine/dbal.git",
  182. "reference": "1cf840d696373ea0d58ad0a8875c0fadcfc67214"
  183. },
  184. "dist": {
  185. "type": "zip",
  186. "url": "https://api.github.com/repos/doctrine/dbal/zipball/1cf840d696373ea0d58ad0a8875c0fadcfc67214",
  187. "reference": "1cf840d696373ea0d58ad0a8875c0fadcfc67214",
  188. "shasum": ""
  189. },
  190. "require": {
  191. "composer-runtime-api": "^2",
  192. "doctrine/deprecations": "^0.5.3|^1",
  193. "doctrine/event-manager": "^1|^2",
  194. "php": "^7.4 || ^8.0",
  195. "psr/cache": "^1|^2|^3",
  196. "psr/log": "^1|^2|^3"
  197. },
  198. "conflict": {
  199. "doctrine/cache": "< 1.11"
  200. },
  201. "require-dev": {
  202. "doctrine/cache": "^1.11|^2.0",
  203. "doctrine/coding-standard": "13.0.0",
  204. "fig/log-test": "^1",
  205. "jetbrains/phpstorm-stubs": "2023.1",
  206. "phpstan/phpstan": "2.1.17",
  207. "phpstan/phpstan-strict-rules": "^2",
  208. "phpunit/phpunit": "9.6.23",
  209. "slevomat/coding-standard": "8.16.2",
  210. "squizlabs/php_codesniffer": "3.13.1",
  211. "symfony/cache": "^5.4|^6.0|^7.0",
  212. "symfony/console": "^4.4|^5.4|^6.0|^7.0"
  213. },
  214. "suggest": {
  215. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  216. },
  217. "bin": [
  218. "bin/doctrine-dbal"
  219. ],
  220. "type": "library",
  221. "autoload": {
  222. "psr-4": {
  223. "Doctrine\\DBAL\\": "src"
  224. }
  225. },
  226. "notification-url": "https://packagist.org/downloads/",
  227. "license": [
  228. "MIT"
  229. ],
  230. "authors": [
  231. {
  232. "name": "Guilherme Blanco",
  233. "email": "guilhermeblanco@gmail.com"
  234. },
  235. {
  236. "name": "Roman Borschel",
  237. "email": "roman@code-factory.org"
  238. },
  239. {
  240. "name": "Benjamin Eberlei",
  241. "email": "kontakt@beberlei.de"
  242. },
  243. {
  244. "name": "Jonathan Wage",
  245. "email": "jonwage@gmail.com"
  246. }
  247. ],
  248. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  249. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  250. "keywords": [
  251. "abstraction",
  252. "database",
  253. "db2",
  254. "dbal",
  255. "mariadb",
  256. "mssql",
  257. "mysql",
  258. "oci8",
  259. "oracle",
  260. "pdo",
  261. "pgsql",
  262. "postgresql",
  263. "queryobject",
  264. "sasql",
  265. "sql",
  266. "sqlite",
  267. "sqlserver",
  268. "sqlsrv"
  269. ],
  270. "support": {
  271. "issues": "https://github.com/doctrine/dbal/issues",
  272. "source": "https://github.com/doctrine/dbal/tree/3.10.0"
  273. },
  274. "funding": [
  275. {
  276. "url": "https://www.doctrine-project.org/sponsorship.html",
  277. "type": "custom"
  278. },
  279. {
  280. "url": "https://www.patreon.com/phpdoctrine",
  281. "type": "patreon"
  282. },
  283. {
  284. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  285. "type": "tidelift"
  286. }
  287. ],
  288. "time": "2025-07-10T21:11:04+00:00"
  289. },
  290. {
  291. "name": "doctrine/deprecations",
  292. "version": "1.1.5",
  293. "source": {
  294. "type": "git",
  295. "url": "https://github.com/doctrine/deprecations.git",
  296. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
  297. },
  298. "dist": {
  299. "type": "zip",
  300. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  301. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  302. "shasum": ""
  303. },
  304. "require": {
  305. "php": "^7.1 || ^8.0"
  306. },
  307. "conflict": {
  308. "phpunit/phpunit": "<=7.5 || >=13"
  309. },
  310. "require-dev": {
  311. "doctrine/coding-standard": "^9 || ^12 || ^13",
  312. "phpstan/phpstan": "1.4.10 || 2.1.11",
  313. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  314. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
  315. "psr/log": "^1 || ^2 || ^3"
  316. },
  317. "suggest": {
  318. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  319. },
  320. "type": "library",
  321. "autoload": {
  322. "psr-4": {
  323. "Doctrine\\Deprecations\\": "src"
  324. }
  325. },
  326. "notification-url": "https://packagist.org/downloads/",
  327. "license": [
  328. "MIT"
  329. ],
  330. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  331. "homepage": "https://www.doctrine-project.org/",
  332. "support": {
  333. "issues": "https://github.com/doctrine/deprecations/issues",
  334. "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
  335. },
  336. "time": "2025-04-07T20:06:18+00:00"
  337. },
  338. {
  339. "name": "doctrine/doctrine-bundle",
  340. "version": "2.15.0",
  341. "source": {
  342. "type": "git",
  343. "url": "https://github.com/doctrine/DoctrineBundle.git",
  344. "reference": "d88294521a1bca943240adca65fa19ca8a7288c6"
  345. },
  346. "dist": {
  347. "type": "zip",
  348. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/d88294521a1bca943240adca65fa19ca8a7288c6",
  349. "reference": "d88294521a1bca943240adca65fa19ca8a7288c6",
  350. "shasum": ""
  351. },
  352. "require": {
  353. "doctrine/dbal": "^3.7.0 || ^4.0",
  354. "doctrine/persistence": "^3.1 || ^4",
  355. "doctrine/sql-formatter": "^1.0.1",
  356. "php": "^8.1",
  357. "symfony/cache": "^6.4 || ^7.0",
  358. "symfony/config": "^6.4 || ^7.0",
  359. "symfony/console": "^6.4 || ^7.0",
  360. "symfony/dependency-injection": "^6.4 || ^7.0",
  361. "symfony/deprecation-contracts": "^2.1 || ^3",
  362. "symfony/doctrine-bridge": "^6.4.3 || ^7.0.3",
  363. "symfony/framework-bundle": "^6.4 || ^7.0",
  364. "symfony/service-contracts": "^2.5 || ^3"
  365. },
  366. "conflict": {
  367. "doctrine/annotations": ">=3.0",
  368. "doctrine/cache": "< 1.11",
  369. "doctrine/orm": "<2.17 || >=4.0",
  370. "symfony/var-exporter": "< 6.4.1 || 7.0.0",
  371. "twig/twig": "<2.13 || >=3.0 <3.0.4"
  372. },
  373. "require-dev": {
  374. "doctrine/annotations": "^1 || ^2",
  375. "doctrine/cache": "^1.11 || ^2.0",
  376. "doctrine/coding-standard": "^13",
  377. "doctrine/deprecations": "^1.0",
  378. "doctrine/orm": "^2.17 || ^3.1",
  379. "friendsofphp/proxy-manager-lts": "^1.0",
  380. "phpstan/phpstan": "2.1.1",
  381. "phpstan/phpstan-phpunit": "2.0.3",
  382. "phpstan/phpstan-strict-rules": "^2",
  383. "phpunit/phpunit": "^9.6.22",
  384. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  385. "symfony/doctrine-messenger": "^6.4 || ^7.0",
  386. "symfony/messenger": "^6.4 || ^7.0",
  387. "symfony/phpunit-bridge": "^7.2",
  388. "symfony/property-info": "^6.4 || ^7.0",
  389. "symfony/security-bundle": "^6.4 || ^7.0",
  390. "symfony/stopwatch": "^6.4 || ^7.0",
  391. "symfony/string": "^6.4 || ^7.0",
  392. "symfony/twig-bridge": "^6.4 || ^7.0",
  393. "symfony/validator": "^6.4 || ^7.0",
  394. "symfony/var-exporter": "^6.4.1 || ^7.0.1",
  395. "symfony/web-profiler-bundle": "^6.4 || ^7.0",
  396. "symfony/yaml": "^6.4 || ^7.0",
  397. "twig/twig": "^2.13 || ^3.0.4"
  398. },
  399. "suggest": {
  400. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  401. "ext-pdo": "*",
  402. "symfony/web-profiler-bundle": "To use the data collector."
  403. },
  404. "type": "symfony-bundle",
  405. "autoload": {
  406. "psr-4": {
  407. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  408. }
  409. },
  410. "notification-url": "https://packagist.org/downloads/",
  411. "license": [
  412. "MIT"
  413. ],
  414. "authors": [
  415. {
  416. "name": "Fabien Potencier",
  417. "email": "fabien@symfony.com"
  418. },
  419. {
  420. "name": "Benjamin Eberlei",
  421. "email": "kontakt@beberlei.de"
  422. },
  423. {
  424. "name": "Symfony Community",
  425. "homepage": "https://symfony.com/contributors"
  426. },
  427. {
  428. "name": "Doctrine Project",
  429. "homepage": "https://www.doctrine-project.org/"
  430. }
  431. ],
  432. "description": "Symfony DoctrineBundle",
  433. "homepage": "https://www.doctrine-project.org",
  434. "keywords": [
  435. "database",
  436. "dbal",
  437. "orm",
  438. "persistence"
  439. ],
  440. "support": {
  441. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  442. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.15.0"
  443. },
  444. "funding": [
  445. {
  446. "url": "https://www.doctrine-project.org/sponsorship.html",
  447. "type": "custom"
  448. },
  449. {
  450. "url": "https://www.patreon.com/phpdoctrine",
  451. "type": "patreon"
  452. },
  453. {
  454. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  455. "type": "tidelift"
  456. }
  457. ],
  458. "time": "2025-06-16T19:53:58+00:00"
  459. },
  460. {
  461. "name": "doctrine/doctrine-migrations-bundle",
  462. "version": "3.4.2",
  463. "source": {
  464. "type": "git",
  465. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  466. "reference": "5a6ac7120c2924c4c070a869d08b11ccf9e277b9"
  467. },
  468. "dist": {
  469. "type": "zip",
  470. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/5a6ac7120c2924c4c070a869d08b11ccf9e277b9",
  471. "reference": "5a6ac7120c2924c4c070a869d08b11ccf9e277b9",
  472. "shasum": ""
  473. },
  474. "require": {
  475. "doctrine/doctrine-bundle": "^2.4",
  476. "doctrine/migrations": "^3.2",
  477. "php": "^7.2 || ^8.0",
  478. "symfony/deprecation-contracts": "^2.1 || ^3",
  479. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  480. },
  481. "require-dev": {
  482. "composer/semver": "^3.0",
  483. "doctrine/coding-standard": "^12",
  484. "doctrine/orm": "^2.6 || ^3",
  485. "phpstan/phpstan": "^1.4 || ^2",
  486. "phpstan/phpstan-deprecation-rules": "^1 || ^2",
  487. "phpstan/phpstan-phpunit": "^1 || ^2",
  488. "phpstan/phpstan-strict-rules": "^1.1 || ^2",
  489. "phpstan/phpstan-symfony": "^1.3 || ^2",
  490. "phpunit/phpunit": "^8.5 || ^9.5",
  491. "symfony/phpunit-bridge": "^6.3 || ^7",
  492. "symfony/var-exporter": "^5.4 || ^6 || ^7"
  493. },
  494. "type": "symfony-bundle",
  495. "autoload": {
  496. "psr-4": {
  497. "Doctrine\\Bundle\\MigrationsBundle\\": "src"
  498. }
  499. },
  500. "notification-url": "https://packagist.org/downloads/",
  501. "license": [
  502. "MIT"
  503. ],
  504. "authors": [
  505. {
  506. "name": "Fabien Potencier",
  507. "email": "fabien@symfony.com"
  508. },
  509. {
  510. "name": "Doctrine Project",
  511. "homepage": "https://www.doctrine-project.org"
  512. },
  513. {
  514. "name": "Symfony Community",
  515. "homepage": "https://symfony.com/contributors"
  516. }
  517. ],
  518. "description": "Symfony DoctrineMigrationsBundle",
  519. "homepage": "https://www.doctrine-project.org",
  520. "keywords": [
  521. "dbal",
  522. "migrations",
  523. "schema"
  524. ],
  525. "support": {
  526. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  527. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.4.2"
  528. },
  529. "funding": [
  530. {
  531. "url": "https://www.doctrine-project.org/sponsorship.html",
  532. "type": "custom"
  533. },
  534. {
  535. "url": "https://www.patreon.com/phpdoctrine",
  536. "type": "patreon"
  537. },
  538. {
  539. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  540. "type": "tidelift"
  541. }
  542. ],
  543. "time": "2025-03-11T17:36:26+00:00"
  544. },
  545. {
  546. "name": "doctrine/event-manager",
  547. "version": "2.0.1",
  548. "source": {
  549. "type": "git",
  550. "url": "https://github.com/doctrine/event-manager.git",
  551. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  552. },
  553. "dist": {
  554. "type": "zip",
  555. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  556. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  557. "shasum": ""
  558. },
  559. "require": {
  560. "php": "^8.1"
  561. },
  562. "conflict": {
  563. "doctrine/common": "<2.9"
  564. },
  565. "require-dev": {
  566. "doctrine/coding-standard": "^12",
  567. "phpstan/phpstan": "^1.8.8",
  568. "phpunit/phpunit": "^10.5",
  569. "vimeo/psalm": "^5.24"
  570. },
  571. "type": "library",
  572. "autoload": {
  573. "psr-4": {
  574. "Doctrine\\Common\\": "src"
  575. }
  576. },
  577. "notification-url": "https://packagist.org/downloads/",
  578. "license": [
  579. "MIT"
  580. ],
  581. "authors": [
  582. {
  583. "name": "Guilherme Blanco",
  584. "email": "guilhermeblanco@gmail.com"
  585. },
  586. {
  587. "name": "Roman Borschel",
  588. "email": "roman@code-factory.org"
  589. },
  590. {
  591. "name": "Benjamin Eberlei",
  592. "email": "kontakt@beberlei.de"
  593. },
  594. {
  595. "name": "Jonathan Wage",
  596. "email": "jonwage@gmail.com"
  597. },
  598. {
  599. "name": "Johannes Schmitt",
  600. "email": "schmittjoh@gmail.com"
  601. },
  602. {
  603. "name": "Marco Pivetta",
  604. "email": "ocramius@gmail.com"
  605. }
  606. ],
  607. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  608. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  609. "keywords": [
  610. "event",
  611. "event dispatcher",
  612. "event manager",
  613. "event system",
  614. "events"
  615. ],
  616. "support": {
  617. "issues": "https://github.com/doctrine/event-manager/issues",
  618. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  619. },
  620. "funding": [
  621. {
  622. "url": "https://www.doctrine-project.org/sponsorship.html",
  623. "type": "custom"
  624. },
  625. {
  626. "url": "https://www.patreon.com/phpdoctrine",
  627. "type": "patreon"
  628. },
  629. {
  630. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  631. "type": "tidelift"
  632. }
  633. ],
  634. "time": "2024-05-22T20:47:39+00:00"
  635. },
  636. {
  637. "name": "doctrine/inflector",
  638. "version": "2.0.10",
  639. "source": {
  640. "type": "git",
  641. "url": "https://github.com/doctrine/inflector.git",
  642. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  643. },
  644. "dist": {
  645. "type": "zip",
  646. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  647. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  648. "shasum": ""
  649. },
  650. "require": {
  651. "php": "^7.2 || ^8.0"
  652. },
  653. "require-dev": {
  654. "doctrine/coding-standard": "^11.0",
  655. "phpstan/phpstan": "^1.8",
  656. "phpstan/phpstan-phpunit": "^1.1",
  657. "phpstan/phpstan-strict-rules": "^1.3",
  658. "phpunit/phpunit": "^8.5 || ^9.5",
  659. "vimeo/psalm": "^4.25 || ^5.4"
  660. },
  661. "type": "library",
  662. "autoload": {
  663. "psr-4": {
  664. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  665. }
  666. },
  667. "notification-url": "https://packagist.org/downloads/",
  668. "license": [
  669. "MIT"
  670. ],
  671. "authors": [
  672. {
  673. "name": "Guilherme Blanco",
  674. "email": "guilhermeblanco@gmail.com"
  675. },
  676. {
  677. "name": "Roman Borschel",
  678. "email": "roman@code-factory.org"
  679. },
  680. {
  681. "name": "Benjamin Eberlei",
  682. "email": "kontakt@beberlei.de"
  683. },
  684. {
  685. "name": "Jonathan Wage",
  686. "email": "jonwage@gmail.com"
  687. },
  688. {
  689. "name": "Johannes Schmitt",
  690. "email": "schmittjoh@gmail.com"
  691. }
  692. ],
  693. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  694. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  695. "keywords": [
  696. "inflection",
  697. "inflector",
  698. "lowercase",
  699. "manipulation",
  700. "php",
  701. "plural",
  702. "singular",
  703. "strings",
  704. "uppercase",
  705. "words"
  706. ],
  707. "support": {
  708. "issues": "https://github.com/doctrine/inflector/issues",
  709. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  710. },
  711. "funding": [
  712. {
  713. "url": "https://www.doctrine-project.org/sponsorship.html",
  714. "type": "custom"
  715. },
  716. {
  717. "url": "https://www.patreon.com/phpdoctrine",
  718. "type": "patreon"
  719. },
  720. {
  721. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  722. "type": "tidelift"
  723. }
  724. ],
  725. "time": "2024-02-18T20:23:39+00:00"
  726. },
  727. {
  728. "name": "doctrine/instantiator",
  729. "version": "2.0.0",
  730. "source": {
  731. "type": "git",
  732. "url": "https://github.com/doctrine/instantiator.git",
  733. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  734. },
  735. "dist": {
  736. "type": "zip",
  737. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  738. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  739. "shasum": ""
  740. },
  741. "require": {
  742. "php": "^8.1"
  743. },
  744. "require-dev": {
  745. "doctrine/coding-standard": "^11",
  746. "ext-pdo": "*",
  747. "ext-phar": "*",
  748. "phpbench/phpbench": "^1.2",
  749. "phpstan/phpstan": "^1.9.4",
  750. "phpstan/phpstan-phpunit": "^1.3",
  751. "phpunit/phpunit": "^9.5.27",
  752. "vimeo/psalm": "^5.4"
  753. },
  754. "type": "library",
  755. "autoload": {
  756. "psr-4": {
  757. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  758. }
  759. },
  760. "notification-url": "https://packagist.org/downloads/",
  761. "license": [
  762. "MIT"
  763. ],
  764. "authors": [
  765. {
  766. "name": "Marco Pivetta",
  767. "email": "ocramius@gmail.com",
  768. "homepage": "https://ocramius.github.io/"
  769. }
  770. ],
  771. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  772. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  773. "keywords": [
  774. "constructor",
  775. "instantiate"
  776. ],
  777. "support": {
  778. "issues": "https://github.com/doctrine/instantiator/issues",
  779. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  780. },
  781. "funding": [
  782. {
  783. "url": "https://www.doctrine-project.org/sponsorship.html",
  784. "type": "custom"
  785. },
  786. {
  787. "url": "https://www.patreon.com/phpdoctrine",
  788. "type": "patreon"
  789. },
  790. {
  791. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  792. "type": "tidelift"
  793. }
  794. ],
  795. "time": "2022-12-30T00:23:10+00:00"
  796. },
  797. {
  798. "name": "doctrine/lexer",
  799. "version": "3.0.1",
  800. "source": {
  801. "type": "git",
  802. "url": "https://github.com/doctrine/lexer.git",
  803. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  804. },
  805. "dist": {
  806. "type": "zip",
  807. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  808. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  809. "shasum": ""
  810. },
  811. "require": {
  812. "php": "^8.1"
  813. },
  814. "require-dev": {
  815. "doctrine/coding-standard": "^12",
  816. "phpstan/phpstan": "^1.10",
  817. "phpunit/phpunit": "^10.5",
  818. "psalm/plugin-phpunit": "^0.18.3",
  819. "vimeo/psalm": "^5.21"
  820. },
  821. "type": "library",
  822. "autoload": {
  823. "psr-4": {
  824. "Doctrine\\Common\\Lexer\\": "src"
  825. }
  826. },
  827. "notification-url": "https://packagist.org/downloads/",
  828. "license": [
  829. "MIT"
  830. ],
  831. "authors": [
  832. {
  833. "name": "Guilherme Blanco",
  834. "email": "guilhermeblanco@gmail.com"
  835. },
  836. {
  837. "name": "Roman Borschel",
  838. "email": "roman@code-factory.org"
  839. },
  840. {
  841. "name": "Johannes Schmitt",
  842. "email": "schmittjoh@gmail.com"
  843. }
  844. ],
  845. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  846. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  847. "keywords": [
  848. "annotations",
  849. "docblock",
  850. "lexer",
  851. "parser",
  852. "php"
  853. ],
  854. "support": {
  855. "issues": "https://github.com/doctrine/lexer/issues",
  856. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  857. },
  858. "funding": [
  859. {
  860. "url": "https://www.doctrine-project.org/sponsorship.html",
  861. "type": "custom"
  862. },
  863. {
  864. "url": "https://www.patreon.com/phpdoctrine",
  865. "type": "patreon"
  866. },
  867. {
  868. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  869. "type": "tidelift"
  870. }
  871. ],
  872. "time": "2024-02-05T11:56:58+00:00"
  873. },
  874. {
  875. "name": "doctrine/migrations",
  876. "version": "3.9.1",
  877. "source": {
  878. "type": "git",
  879. "url": "https://github.com/doctrine/migrations.git",
  880. "reference": "0f1e0c960ac29866d648a4f50142a74fe1cb6999"
  881. },
  882. "dist": {
  883. "type": "zip",
  884. "url": "https://api.github.com/repos/doctrine/migrations/zipball/0f1e0c960ac29866d648a4f50142a74fe1cb6999",
  885. "reference": "0f1e0c960ac29866d648a4f50142a74fe1cb6999",
  886. "shasum": ""
  887. },
  888. "require": {
  889. "composer-runtime-api": "^2",
  890. "doctrine/dbal": "^3.6 || ^4",
  891. "doctrine/deprecations": "^0.5.3 || ^1",
  892. "doctrine/event-manager": "^1.2 || ^2.0",
  893. "php": "^8.1",
  894. "psr/log": "^1.1.3 || ^2 || ^3",
  895. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  896. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  897. "symfony/var-exporter": "^6.2 || ^7.0"
  898. },
  899. "conflict": {
  900. "doctrine/orm": "<2.12 || >=4"
  901. },
  902. "require-dev": {
  903. "doctrine/coding-standard": "^12",
  904. "doctrine/orm": "^2.13 || ^3",
  905. "doctrine/persistence": "^2 || ^3 || ^4",
  906. "doctrine/sql-formatter": "^1.0",
  907. "ext-pdo_sqlite": "*",
  908. "fig/log-test": "^1",
  909. "phpstan/phpstan": "^1.10",
  910. "phpstan/phpstan-deprecation-rules": "^1.1",
  911. "phpstan/phpstan-phpunit": "^1.3",
  912. "phpstan/phpstan-strict-rules": "^1.4",
  913. "phpstan/phpstan-symfony": "^1.3",
  914. "phpunit/phpunit": "^10.3",
  915. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  916. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  917. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  918. },
  919. "suggest": {
  920. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  921. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  922. },
  923. "bin": [
  924. "bin/doctrine-migrations"
  925. ],
  926. "type": "library",
  927. "autoload": {
  928. "psr-4": {
  929. "Doctrine\\Migrations\\": "src"
  930. }
  931. },
  932. "notification-url": "https://packagist.org/downloads/",
  933. "license": [
  934. "MIT"
  935. ],
  936. "authors": [
  937. {
  938. "name": "Benjamin Eberlei",
  939. "email": "kontakt@beberlei.de"
  940. },
  941. {
  942. "name": "Jonathan Wage",
  943. "email": "jonwage@gmail.com"
  944. },
  945. {
  946. "name": "Michael Simonson",
  947. "email": "contact@mikesimonson.com"
  948. }
  949. ],
  950. "description": "PHP Doctrine Migrations project offer additional functionality on top of the database abstraction layer (DBAL) for versioning your database schema and easily deploying changes to it. It is a very easy to use and a powerful tool.",
  951. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  952. "keywords": [
  953. "database",
  954. "dbal",
  955. "migrations"
  956. ],
  957. "support": {
  958. "issues": "https://github.com/doctrine/migrations/issues",
  959. "source": "https://github.com/doctrine/migrations/tree/3.9.1"
  960. },
  961. "funding": [
  962. {
  963. "url": "https://www.doctrine-project.org/sponsorship.html",
  964. "type": "custom"
  965. },
  966. {
  967. "url": "https://www.patreon.com/phpdoctrine",
  968. "type": "patreon"
  969. },
  970. {
  971. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  972. "type": "tidelift"
  973. }
  974. ],
  975. "time": "2025-06-27T07:19:23+00:00"
  976. },
  977. {
  978. "name": "doctrine/orm",
  979. "version": "3.5.0",
  980. "source": {
  981. "type": "git",
  982. "url": "https://github.com/doctrine/orm.git",
  983. "reference": "6deec3655ba3e8f15280aac11e264225854d2369"
  984. },
  985. "dist": {
  986. "type": "zip",
  987. "url": "https://api.github.com/repos/doctrine/orm/zipball/6deec3655ba3e8f15280aac11e264225854d2369",
  988. "reference": "6deec3655ba3e8f15280aac11e264225854d2369",
  989. "shasum": ""
  990. },
  991. "require": {
  992. "composer-runtime-api": "^2",
  993. "doctrine/collections": "^2.2",
  994. "doctrine/dbal": "^3.8.2 || ^4",
  995. "doctrine/deprecations": "^0.5.3 || ^1",
  996. "doctrine/event-manager": "^1.2 || ^2",
  997. "doctrine/inflector": "^1.4 || ^2.0",
  998. "doctrine/instantiator": "^1.3 || ^2",
  999. "doctrine/lexer": "^3",
  1000. "doctrine/persistence": "^3.3.1 || ^4",
  1001. "ext-ctype": "*",
  1002. "php": "^8.1",
  1003. "psr/cache": "^1 || ^2 || ^3",
  1004. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1005. "symfony/var-exporter": "^6.3.9 || ^7.0"
  1006. },
  1007. "require-dev": {
  1008. "doctrine/coding-standard": "^13.0",
  1009. "phpbench/phpbench": "^1.0",
  1010. "phpdocumentor/guides-cli": "^1.4",
  1011. "phpstan/extension-installer": "^1.4",
  1012. "phpstan/phpstan": "2.0.3",
  1013. "phpstan/phpstan-deprecation-rules": "^2",
  1014. "phpunit/phpunit": "^10.4.0",
  1015. "psr/log": "^1 || ^2 || ^3",
  1016. "squizlabs/php_codesniffer": "3.12.0",
  1017. "symfony/cache": "^5.4 || ^6.2 || ^7.0"
  1018. },
  1019. "suggest": {
  1020. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1021. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1022. },
  1023. "type": "library",
  1024. "autoload": {
  1025. "psr-4": {
  1026. "Doctrine\\ORM\\": "src"
  1027. }
  1028. },
  1029. "notification-url": "https://packagist.org/downloads/",
  1030. "license": [
  1031. "MIT"
  1032. ],
  1033. "authors": [
  1034. {
  1035. "name": "Guilherme Blanco",
  1036. "email": "guilhermeblanco@gmail.com"
  1037. },
  1038. {
  1039. "name": "Roman Borschel",
  1040. "email": "roman@code-factory.org"
  1041. },
  1042. {
  1043. "name": "Benjamin Eberlei",
  1044. "email": "kontakt@beberlei.de"
  1045. },
  1046. {
  1047. "name": "Jonathan Wage",
  1048. "email": "jonwage@gmail.com"
  1049. },
  1050. {
  1051. "name": "Marco Pivetta",
  1052. "email": "ocramius@gmail.com"
  1053. }
  1054. ],
  1055. "description": "Object-Relational-Mapper for PHP",
  1056. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1057. "keywords": [
  1058. "database",
  1059. "orm"
  1060. ],
  1061. "support": {
  1062. "issues": "https://github.com/doctrine/orm/issues",
  1063. "source": "https://github.com/doctrine/orm/tree/3.5.0"
  1064. },
  1065. "time": "2025-07-01T17:40:53+00:00"
  1066. },
  1067. {
  1068. "name": "doctrine/persistence",
  1069. "version": "4.0.0",
  1070. "source": {
  1071. "type": "git",
  1072. "url": "https://github.com/doctrine/persistence.git",
  1073. "reference": "45004aca79189474f113cbe3a53847c2115a55fa"
  1074. },
  1075. "dist": {
  1076. "type": "zip",
  1077. "url": "https://api.github.com/repos/doctrine/persistence/zipball/45004aca79189474f113cbe3a53847c2115a55fa",
  1078. "reference": "45004aca79189474f113cbe3a53847c2115a55fa",
  1079. "shasum": ""
  1080. },
  1081. "require": {
  1082. "doctrine/event-manager": "^1 || ^2",
  1083. "php": "^8.1",
  1084. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1085. },
  1086. "conflict": {
  1087. "doctrine/common": "<2.10"
  1088. },
  1089. "require-dev": {
  1090. "doctrine/coding-standard": "^12",
  1091. "phpstan/phpstan": "1.12.7",
  1092. "phpstan/phpstan-phpunit": "^1",
  1093. "phpstan/phpstan-strict-rules": "^1.1",
  1094. "phpunit/phpunit": "^9.6",
  1095. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1096. },
  1097. "type": "library",
  1098. "autoload": {
  1099. "psr-4": {
  1100. "Doctrine\\Persistence\\": "src/Persistence"
  1101. }
  1102. },
  1103. "notification-url": "https://packagist.org/downloads/",
  1104. "license": [
  1105. "MIT"
  1106. ],
  1107. "authors": [
  1108. {
  1109. "name": "Guilherme Blanco",
  1110. "email": "guilhermeblanco@gmail.com"
  1111. },
  1112. {
  1113. "name": "Roman Borschel",
  1114. "email": "roman@code-factory.org"
  1115. },
  1116. {
  1117. "name": "Benjamin Eberlei",
  1118. "email": "kontakt@beberlei.de"
  1119. },
  1120. {
  1121. "name": "Jonathan Wage",
  1122. "email": "jonwage@gmail.com"
  1123. },
  1124. {
  1125. "name": "Johannes Schmitt",
  1126. "email": "schmittjoh@gmail.com"
  1127. },
  1128. {
  1129. "name": "Marco Pivetta",
  1130. "email": "ocramius@gmail.com"
  1131. }
  1132. ],
  1133. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1134. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1135. "keywords": [
  1136. "mapper",
  1137. "object",
  1138. "odm",
  1139. "orm",
  1140. "persistence"
  1141. ],
  1142. "support": {
  1143. "issues": "https://github.com/doctrine/persistence/issues",
  1144. "source": "https://github.com/doctrine/persistence/tree/4.0.0"
  1145. },
  1146. "funding": [
  1147. {
  1148. "url": "https://www.doctrine-project.org/sponsorship.html",
  1149. "type": "custom"
  1150. },
  1151. {
  1152. "url": "https://www.patreon.com/phpdoctrine",
  1153. "type": "patreon"
  1154. },
  1155. {
  1156. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1157. "type": "tidelift"
  1158. }
  1159. ],
  1160. "time": "2024-11-01T21:49:07+00:00"
  1161. },
  1162. {
  1163. "name": "doctrine/sql-formatter",
  1164. "version": "1.5.2",
  1165. "source": {
  1166. "type": "git",
  1167. "url": "https://github.com/doctrine/sql-formatter.git",
  1168. "reference": "d6d00aba6fd2957fe5216fe2b7673e9985db20c8"
  1169. },
  1170. "dist": {
  1171. "type": "zip",
  1172. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/d6d00aba6fd2957fe5216fe2b7673e9985db20c8",
  1173. "reference": "d6d00aba6fd2957fe5216fe2b7673e9985db20c8",
  1174. "shasum": ""
  1175. },
  1176. "require": {
  1177. "php": "^8.1"
  1178. },
  1179. "require-dev": {
  1180. "doctrine/coding-standard": "^12",
  1181. "ergebnis/phpunit-slow-test-detector": "^2.14",
  1182. "phpstan/phpstan": "^1.10",
  1183. "phpunit/phpunit": "^10.5"
  1184. },
  1185. "bin": [
  1186. "bin/sql-formatter"
  1187. ],
  1188. "type": "library",
  1189. "autoload": {
  1190. "psr-4": {
  1191. "Doctrine\\SqlFormatter\\": "src"
  1192. }
  1193. },
  1194. "notification-url": "https://packagist.org/downloads/",
  1195. "license": [
  1196. "MIT"
  1197. ],
  1198. "authors": [
  1199. {
  1200. "name": "Jeremy Dorn",
  1201. "email": "jeremy@jeremydorn.com",
  1202. "homepage": "https://jeremydorn.com/"
  1203. }
  1204. ],
  1205. "description": "a PHP SQL highlighting library",
  1206. "homepage": "https://github.com/doctrine/sql-formatter/",
  1207. "keywords": [
  1208. "highlight",
  1209. "sql"
  1210. ],
  1211. "support": {
  1212. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1213. "source": "https://github.com/doctrine/sql-formatter/tree/1.5.2"
  1214. },
  1215. "time": "2025-01-24T11:45:48+00:00"
  1216. },
  1217. {
  1218. "name": "egulias/email-validator",
  1219. "version": "4.0.4",
  1220. "source": {
  1221. "type": "git",
  1222. "url": "https://github.com/egulias/EmailValidator.git",
  1223. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  1224. },
  1225. "dist": {
  1226. "type": "zip",
  1227. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1228. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1229. "shasum": ""
  1230. },
  1231. "require": {
  1232. "doctrine/lexer": "^2.0 || ^3.0",
  1233. "php": ">=8.1",
  1234. "symfony/polyfill-intl-idn": "^1.26"
  1235. },
  1236. "require-dev": {
  1237. "phpunit/phpunit": "^10.2",
  1238. "vimeo/psalm": "^5.12"
  1239. },
  1240. "suggest": {
  1241. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1242. },
  1243. "type": "library",
  1244. "extra": {
  1245. "branch-alias": {
  1246. "dev-master": "4.0.x-dev"
  1247. }
  1248. },
  1249. "autoload": {
  1250. "psr-4": {
  1251. "Egulias\\EmailValidator\\": "src"
  1252. }
  1253. },
  1254. "notification-url": "https://packagist.org/downloads/",
  1255. "license": [
  1256. "MIT"
  1257. ],
  1258. "authors": [
  1259. {
  1260. "name": "Eduardo Gulias Davis"
  1261. }
  1262. ],
  1263. "description": "A library for validating emails against several RFCs",
  1264. "homepage": "https://github.com/egulias/EmailValidator",
  1265. "keywords": [
  1266. "email",
  1267. "emailvalidation",
  1268. "emailvalidator",
  1269. "validation",
  1270. "validator"
  1271. ],
  1272. "support": {
  1273. "issues": "https://github.com/egulias/EmailValidator/issues",
  1274. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  1275. },
  1276. "funding": [
  1277. {
  1278. "url": "https://github.com/egulias",
  1279. "type": "github"
  1280. }
  1281. ],
  1282. "time": "2025-03-06T22:45:56+00:00"
  1283. },
  1284. {
  1285. "name": "giggsey/libphonenumber-for-php",
  1286. "version": "9.0.10",
  1287. "source": {
  1288. "type": "git",
  1289. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  1290. "reference": "727af7896f37194f7417def96b2140481668a28c"
  1291. },
  1292. "dist": {
  1293. "type": "zip",
  1294. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/727af7896f37194f7417def96b2140481668a28c",
  1295. "reference": "727af7896f37194f7417def96b2140481668a28c",
  1296. "shasum": ""
  1297. },
  1298. "require": {
  1299. "giggsey/locale": "^2.7",
  1300. "php": "^8.1",
  1301. "symfony/polyfill-mbstring": "^1.31"
  1302. },
  1303. "replace": {
  1304. "giggsey/libphonenumber-for-php-lite": "self.version"
  1305. },
  1306. "require-dev": {
  1307. "ext-dom": "*",
  1308. "friendsofphp/php-cs-fixer": "^3.71",
  1309. "infection/infection": "^0.28.0",
  1310. "nette/php-generator": "^4.1",
  1311. "php-coveralls/php-coveralls": "^2.7",
  1312. "phpstan/extension-installer": "^1.4.3",
  1313. "phpstan/phpstan": "^2.1.7",
  1314. "phpstan/phpstan-deprecation-rules": "^2.0.1",
  1315. "phpstan/phpstan-phpunit": "^2.0.4",
  1316. "phpstan/phpstan-strict-rules": "^2.0.3",
  1317. "phpunit/phpunit": "^10.5.45",
  1318. "symfony/console": "^6.4",
  1319. "symfony/filesystem": "^6.4",
  1320. "symfony/process": "^6.4"
  1321. },
  1322. "type": "library",
  1323. "extra": {
  1324. "branch-alias": {
  1325. "dev-master": "9.x-dev"
  1326. }
  1327. },
  1328. "autoload": {
  1329. "psr-4": {
  1330. "libphonenumber\\": "src/"
  1331. }
  1332. },
  1333. "notification-url": "https://packagist.org/downloads/",
  1334. "license": [
  1335. "Apache-2.0"
  1336. ],
  1337. "authors": [
  1338. {
  1339. "name": "Joshua Gigg",
  1340. "email": "giggsey@gmail.com",
  1341. "homepage": "https://giggsey.com/"
  1342. }
  1343. ],
  1344. "description": "A library for parsing, formatting, storing and validating international phone numbers, a PHP Port of Google's libphonenumber.",
  1345. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  1346. "keywords": [
  1347. "geocoding",
  1348. "geolocation",
  1349. "libphonenumber",
  1350. "mobile",
  1351. "phonenumber",
  1352. "validation"
  1353. ],
  1354. "support": {
  1355. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
  1356. "source": "https://github.com/giggsey/libphonenumber-for-php"
  1357. },
  1358. "time": "2025-07-18T06:47:04+00:00"
  1359. },
  1360. {
  1361. "name": "giggsey/locale",
  1362. "version": "2.8.0",
  1363. "source": {
  1364. "type": "git",
  1365. "url": "https://github.com/giggsey/Locale.git",
  1366. "reference": "1cd8b3ad2d43e04f4c2c6a240495af44780f809b"
  1367. },
  1368. "dist": {
  1369. "type": "zip",
  1370. "url": "https://api.github.com/repos/giggsey/Locale/zipball/1cd8b3ad2d43e04f4c2c6a240495af44780f809b",
  1371. "reference": "1cd8b3ad2d43e04f4c2c6a240495af44780f809b",
  1372. "shasum": ""
  1373. },
  1374. "require": {
  1375. "php": "^8.1"
  1376. },
  1377. "require-dev": {
  1378. "ext-json": "*",
  1379. "friendsofphp/php-cs-fixer": "^3.66",
  1380. "pear/pear-core-minimal": "^1.10",
  1381. "pear/pear_exception": "^1.0",
  1382. "pear/versioncontrol_git": "^0.5",
  1383. "phing/phing": "^2.17.4",
  1384. "php-coveralls/php-coveralls": "^2.7",
  1385. "phpunit/phpunit": "^10.5.45",
  1386. "symfony/console": "^6.4",
  1387. "symfony/filesystem": "6.4",
  1388. "symfony/finder": "^6.4",
  1389. "symfony/process": "^6.4",
  1390. "symfony/var-exporter": "^6.4"
  1391. },
  1392. "type": "library",
  1393. "autoload": {
  1394. "psr-4": {
  1395. "Giggsey\\Locale\\": "src/"
  1396. }
  1397. },
  1398. "notification-url": "https://packagist.org/downloads/",
  1399. "license": [
  1400. "MIT"
  1401. ],
  1402. "authors": [
  1403. {
  1404. "name": "Joshua Gigg",
  1405. "email": "giggsey@gmail.com",
  1406. "homepage": "https://giggsey.com/"
  1407. }
  1408. ],
  1409. "description": "Locale functions required by libphonenumber-for-php",
  1410. "support": {
  1411. "issues": "https://github.com/giggsey/Locale/issues",
  1412. "source": "https://github.com/giggsey/Locale/tree/2.8.0"
  1413. },
  1414. "time": "2025-03-20T14:25:27+00:00"
  1415. },
  1416. {
  1417. "name": "monolog/monolog",
  1418. "version": "3.9.0",
  1419. "source": {
  1420. "type": "git",
  1421. "url": "https://github.com/Seldaek/monolog.git",
  1422. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  1423. },
  1424. "dist": {
  1425. "type": "zip",
  1426. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  1427. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  1428. "shasum": ""
  1429. },
  1430. "require": {
  1431. "php": ">=8.1",
  1432. "psr/log": "^2.0 || ^3.0"
  1433. },
  1434. "provide": {
  1435. "psr/log-implementation": "3.0.0"
  1436. },
  1437. "require-dev": {
  1438. "aws/aws-sdk-php": "^3.0",
  1439. "doctrine/couchdb": "~1.0@dev",
  1440. "elasticsearch/elasticsearch": "^7 || ^8",
  1441. "ext-json": "*",
  1442. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  1443. "guzzlehttp/guzzle": "^7.4.5",
  1444. "guzzlehttp/psr7": "^2.2",
  1445. "mongodb/mongodb": "^1.8",
  1446. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1447. "php-console/php-console": "^3.1.8",
  1448. "phpstan/phpstan": "^2",
  1449. "phpstan/phpstan-deprecation-rules": "^2",
  1450. "phpstan/phpstan-strict-rules": "^2",
  1451. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  1452. "predis/predis": "^1.1 || ^2",
  1453. "rollbar/rollbar": "^4.0",
  1454. "ruflin/elastica": "^7 || ^8",
  1455. "symfony/mailer": "^5.4 || ^6",
  1456. "symfony/mime": "^5.4 || ^6"
  1457. },
  1458. "suggest": {
  1459. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1460. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1461. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1462. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1463. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1464. "ext-mbstring": "Allow to work properly with unicode symbols",
  1465. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1466. "ext-openssl": "Required to send log messages using SSL",
  1467. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1468. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1469. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1470. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1471. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1472. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1473. },
  1474. "type": "library",
  1475. "extra": {
  1476. "branch-alias": {
  1477. "dev-main": "3.x-dev"
  1478. }
  1479. },
  1480. "autoload": {
  1481. "psr-4": {
  1482. "Monolog\\": "src/Monolog"
  1483. }
  1484. },
  1485. "notification-url": "https://packagist.org/downloads/",
  1486. "license": [
  1487. "MIT"
  1488. ],
  1489. "authors": [
  1490. {
  1491. "name": "Jordi Boggiano",
  1492. "email": "j.boggiano@seld.be",
  1493. "homepage": "https://seld.be"
  1494. }
  1495. ],
  1496. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1497. "homepage": "https://github.com/Seldaek/monolog",
  1498. "keywords": [
  1499. "log",
  1500. "logging",
  1501. "psr-3"
  1502. ],
  1503. "support": {
  1504. "issues": "https://github.com/Seldaek/monolog/issues",
  1505. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  1506. },
  1507. "funding": [
  1508. {
  1509. "url": "https://github.com/Seldaek",
  1510. "type": "github"
  1511. },
  1512. {
  1513. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1514. "type": "tidelift"
  1515. }
  1516. ],
  1517. "time": "2025-03-24T10:02:05+00:00"
  1518. },
  1519. {
  1520. "name": "odolbeau/phone-number-bundle",
  1521. "version": "v4.2.0",
  1522. "source": {
  1523. "type": "git",
  1524. "url": "https://github.com/odolbeau/phone-number-bundle.git",
  1525. "reference": "0952c8d10a245d2e6d13263c97715679654cd7e4"
  1526. },
  1527. "dist": {
  1528. "type": "zip",
  1529. "url": "https://api.github.com/repos/odolbeau/phone-number-bundle/zipball/0952c8d10a245d2e6d13263c97715679654cd7e4",
  1530. "reference": "0952c8d10a245d2e6d13263c97715679654cd7e4",
  1531. "shasum": ""
  1532. },
  1533. "require": {
  1534. "giggsey/libphonenumber-for-php": "^9.0.2",
  1535. "php": ">=8.1",
  1536. "symfony/config": "^6.4 || ^7.2",
  1537. "symfony/deprecation-contracts": "^2.5|^3",
  1538. "symfony/framework-bundle": "^6.4 || ^7.2",
  1539. "symfony/intl": "^6.4 || ^7.2",
  1540. "symfony/polyfill-mbstring": "^1.28"
  1541. },
  1542. "replace": {
  1543. "misd/phone-number-bundle": "self.version"
  1544. },
  1545. "require-dev": {
  1546. "doctrine/doctrine-bundle": "^1.12|^2.0",
  1547. "phpspec/prophecy": "^1.20",
  1548. "phpspec/prophecy-phpunit": "^2.3",
  1549. "phpunit/phpunit": "^9.6.11",
  1550. "symfony/form": "^6.4 || ^7.2",
  1551. "symfony/phpunit-bridge": "^7.2",
  1552. "symfony/property-access": "^6.4 || ^7.2",
  1553. "symfony/serializer": "^6.4 || ^7.2",
  1554. "symfony/twig-bundle": "^6.4 || ^7.2",
  1555. "symfony/validator": "^6.4 || ^7.2"
  1556. },
  1557. "suggest": {
  1558. "doctrine/doctrine-bundle": "Add a DBAL mapping type",
  1559. "symfony/form": "Add a data transformer",
  1560. "symfony/property-access": "Choose a path in the validation constraint",
  1561. "symfony/serializer": "Serialize/deserialize phone numbers using Symfony library",
  1562. "symfony/twig-bundle": "Format phone numbers in Twig templates",
  1563. "symfony/validator": "Add a validation constraint"
  1564. },
  1565. "type": "symfony-bundle",
  1566. "extra": {
  1567. "branch-alias": {
  1568. "dev-master": "3.10.x-dev"
  1569. }
  1570. },
  1571. "autoload": {
  1572. "psr-4": {
  1573. "Misd\\PhoneNumberBundle\\": "src/"
  1574. }
  1575. },
  1576. "notification-url": "https://packagist.org/downloads/",
  1577. "license": [
  1578. "MIT"
  1579. ],
  1580. "description": "Integrates libphonenumber into your Symfony application",
  1581. "homepage": "https://github.com/odolbeau/phone-number-bundle",
  1582. "keywords": [
  1583. "bundle",
  1584. "libphonenumber",
  1585. "phone-number",
  1586. "phonenumber",
  1587. "telephone number"
  1588. ],
  1589. "support": {
  1590. "issues": "https://github.com/odolbeau/phone-number-bundle/issues",
  1591. "source": "https://github.com/odolbeau/phone-number-bundle/tree/v4.2.0"
  1592. },
  1593. "time": "2025-07-15T20:50:09+00:00"
  1594. },
  1595. {
  1596. "name": "phpdocumentor/reflection-common",
  1597. "version": "2.2.0",
  1598. "source": {
  1599. "type": "git",
  1600. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1601. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  1602. },
  1603. "dist": {
  1604. "type": "zip",
  1605. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1606. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1607. "shasum": ""
  1608. },
  1609. "require": {
  1610. "php": "^7.2 || ^8.0"
  1611. },
  1612. "type": "library",
  1613. "extra": {
  1614. "branch-alias": {
  1615. "dev-2.x": "2.x-dev"
  1616. }
  1617. },
  1618. "autoload": {
  1619. "psr-4": {
  1620. "phpDocumentor\\Reflection\\": "src/"
  1621. }
  1622. },
  1623. "notification-url": "https://packagist.org/downloads/",
  1624. "license": [
  1625. "MIT"
  1626. ],
  1627. "authors": [
  1628. {
  1629. "name": "Jaap van Otterdijk",
  1630. "email": "opensource@ijaap.nl"
  1631. }
  1632. ],
  1633. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1634. "homepage": "http://www.phpdoc.org",
  1635. "keywords": [
  1636. "FQSEN",
  1637. "phpDocumentor",
  1638. "phpdoc",
  1639. "reflection",
  1640. "static analysis"
  1641. ],
  1642. "support": {
  1643. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  1644. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  1645. },
  1646. "time": "2020-06-27T09:03:43+00:00"
  1647. },
  1648. {
  1649. "name": "phpdocumentor/reflection-docblock",
  1650. "version": "5.6.2",
  1651. "source": {
  1652. "type": "git",
  1653. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1654. "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62"
  1655. },
  1656. "dist": {
  1657. "type": "zip",
  1658. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/92dde6a5919e34835c506ac8c523ef095a95ed62",
  1659. "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62",
  1660. "shasum": ""
  1661. },
  1662. "require": {
  1663. "doctrine/deprecations": "^1.1",
  1664. "ext-filter": "*",
  1665. "php": "^7.4 || ^8.0",
  1666. "phpdocumentor/reflection-common": "^2.2",
  1667. "phpdocumentor/type-resolver": "^1.7",
  1668. "phpstan/phpdoc-parser": "^1.7|^2.0",
  1669. "webmozart/assert": "^1.9.1"
  1670. },
  1671. "require-dev": {
  1672. "mockery/mockery": "~1.3.5 || ~1.6.0",
  1673. "phpstan/extension-installer": "^1.1",
  1674. "phpstan/phpstan": "^1.8",
  1675. "phpstan/phpstan-mockery": "^1.1",
  1676. "phpstan/phpstan-webmozart-assert": "^1.2",
  1677. "phpunit/phpunit": "^9.5",
  1678. "psalm/phar": "^5.26"
  1679. },
  1680. "type": "library",
  1681. "extra": {
  1682. "branch-alias": {
  1683. "dev-master": "5.x-dev"
  1684. }
  1685. },
  1686. "autoload": {
  1687. "psr-4": {
  1688. "phpDocumentor\\Reflection\\": "src"
  1689. }
  1690. },
  1691. "notification-url": "https://packagist.org/downloads/",
  1692. "license": [
  1693. "MIT"
  1694. ],
  1695. "authors": [
  1696. {
  1697. "name": "Mike van Riel",
  1698. "email": "me@mikevanriel.com"
  1699. },
  1700. {
  1701. "name": "Jaap van Otterdijk",
  1702. "email": "opensource@ijaap.nl"
  1703. }
  1704. ],
  1705. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1706. "support": {
  1707. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  1708. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.2"
  1709. },
  1710. "time": "2025-04-13T19:20:35+00:00"
  1711. },
  1712. {
  1713. "name": "phpdocumentor/type-resolver",
  1714. "version": "1.10.0",
  1715. "source": {
  1716. "type": "git",
  1717. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1718. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  1719. },
  1720. "dist": {
  1721. "type": "zip",
  1722. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  1723. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  1724. "shasum": ""
  1725. },
  1726. "require": {
  1727. "doctrine/deprecations": "^1.0",
  1728. "php": "^7.3 || ^8.0",
  1729. "phpdocumentor/reflection-common": "^2.0",
  1730. "phpstan/phpdoc-parser": "^1.18|^2.0"
  1731. },
  1732. "require-dev": {
  1733. "ext-tokenizer": "*",
  1734. "phpbench/phpbench": "^1.2",
  1735. "phpstan/extension-installer": "^1.1",
  1736. "phpstan/phpstan": "^1.8",
  1737. "phpstan/phpstan-phpunit": "^1.1",
  1738. "phpunit/phpunit": "^9.5",
  1739. "rector/rector": "^0.13.9",
  1740. "vimeo/psalm": "^4.25"
  1741. },
  1742. "type": "library",
  1743. "extra": {
  1744. "branch-alias": {
  1745. "dev-1.x": "1.x-dev"
  1746. }
  1747. },
  1748. "autoload": {
  1749. "psr-4": {
  1750. "phpDocumentor\\Reflection\\": "src"
  1751. }
  1752. },
  1753. "notification-url": "https://packagist.org/downloads/",
  1754. "license": [
  1755. "MIT"
  1756. ],
  1757. "authors": [
  1758. {
  1759. "name": "Mike van Riel",
  1760. "email": "me@mikevanriel.com"
  1761. }
  1762. ],
  1763. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  1764. "support": {
  1765. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  1766. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  1767. },
  1768. "time": "2024-11-09T15:12:26+00:00"
  1769. },
  1770. {
  1771. "name": "phpstan/phpdoc-parser",
  1772. "version": "2.2.0",
  1773. "source": {
  1774. "type": "git",
  1775. "url": "https://github.com/phpstan/phpdoc-parser.git",
  1776. "reference": "b9e61a61e39e02dd90944e9115241c7f7e76bfd8"
  1777. },
  1778. "dist": {
  1779. "type": "zip",
  1780. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/b9e61a61e39e02dd90944e9115241c7f7e76bfd8",
  1781. "reference": "b9e61a61e39e02dd90944e9115241c7f7e76bfd8",
  1782. "shasum": ""
  1783. },
  1784. "require": {
  1785. "php": "^7.4 || ^8.0"
  1786. },
  1787. "require-dev": {
  1788. "doctrine/annotations": "^2.0",
  1789. "nikic/php-parser": "^5.3.0",
  1790. "php-parallel-lint/php-parallel-lint": "^1.2",
  1791. "phpstan/extension-installer": "^1.0",
  1792. "phpstan/phpstan": "^2.0",
  1793. "phpstan/phpstan-phpunit": "^2.0",
  1794. "phpstan/phpstan-strict-rules": "^2.0",
  1795. "phpunit/phpunit": "^9.6",
  1796. "symfony/process": "^5.2"
  1797. },
  1798. "type": "library",
  1799. "autoload": {
  1800. "psr-4": {
  1801. "PHPStan\\PhpDocParser\\": [
  1802. "src/"
  1803. ]
  1804. }
  1805. },
  1806. "notification-url": "https://packagist.org/downloads/",
  1807. "license": [
  1808. "MIT"
  1809. ],
  1810. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  1811. "support": {
  1812. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  1813. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.2.0"
  1814. },
  1815. "time": "2025-07-13T07:04:09+00:00"
  1816. },
  1817. {
  1818. "name": "psr/cache",
  1819. "version": "3.0.0",
  1820. "source": {
  1821. "type": "git",
  1822. "url": "https://github.com/php-fig/cache.git",
  1823. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  1824. },
  1825. "dist": {
  1826. "type": "zip",
  1827. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1828. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1829. "shasum": ""
  1830. },
  1831. "require": {
  1832. "php": ">=8.0.0"
  1833. },
  1834. "type": "library",
  1835. "extra": {
  1836. "branch-alias": {
  1837. "dev-master": "1.0.x-dev"
  1838. }
  1839. },
  1840. "autoload": {
  1841. "psr-4": {
  1842. "Psr\\Cache\\": "src/"
  1843. }
  1844. },
  1845. "notification-url": "https://packagist.org/downloads/",
  1846. "license": [
  1847. "MIT"
  1848. ],
  1849. "authors": [
  1850. {
  1851. "name": "PHP-FIG",
  1852. "homepage": "https://www.php-fig.org/"
  1853. }
  1854. ],
  1855. "description": "Common interface for caching libraries",
  1856. "keywords": [
  1857. "cache",
  1858. "psr",
  1859. "psr-6"
  1860. ],
  1861. "support": {
  1862. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  1863. },
  1864. "time": "2021-02-03T23:26:27+00:00"
  1865. },
  1866. {
  1867. "name": "psr/clock",
  1868. "version": "1.0.0",
  1869. "source": {
  1870. "type": "git",
  1871. "url": "https://github.com/php-fig/clock.git",
  1872. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  1873. },
  1874. "dist": {
  1875. "type": "zip",
  1876. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1877. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1878. "shasum": ""
  1879. },
  1880. "require": {
  1881. "php": "^7.0 || ^8.0"
  1882. },
  1883. "type": "library",
  1884. "autoload": {
  1885. "psr-4": {
  1886. "Psr\\Clock\\": "src/"
  1887. }
  1888. },
  1889. "notification-url": "https://packagist.org/downloads/",
  1890. "license": [
  1891. "MIT"
  1892. ],
  1893. "authors": [
  1894. {
  1895. "name": "PHP-FIG",
  1896. "homepage": "https://www.php-fig.org/"
  1897. }
  1898. ],
  1899. "description": "Common interface for reading the clock.",
  1900. "homepage": "https://github.com/php-fig/clock",
  1901. "keywords": [
  1902. "clock",
  1903. "now",
  1904. "psr",
  1905. "psr-20",
  1906. "time"
  1907. ],
  1908. "support": {
  1909. "issues": "https://github.com/php-fig/clock/issues",
  1910. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  1911. },
  1912. "time": "2022-11-25T14:36:26+00:00"
  1913. },
  1914. {
  1915. "name": "psr/container",
  1916. "version": "2.0.2",
  1917. "source": {
  1918. "type": "git",
  1919. "url": "https://github.com/php-fig/container.git",
  1920. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  1921. },
  1922. "dist": {
  1923. "type": "zip",
  1924. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1925. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1926. "shasum": ""
  1927. },
  1928. "require": {
  1929. "php": ">=7.4.0"
  1930. },
  1931. "type": "library",
  1932. "extra": {
  1933. "branch-alias": {
  1934. "dev-master": "2.0.x-dev"
  1935. }
  1936. },
  1937. "autoload": {
  1938. "psr-4": {
  1939. "Psr\\Container\\": "src/"
  1940. }
  1941. },
  1942. "notification-url": "https://packagist.org/downloads/",
  1943. "license": [
  1944. "MIT"
  1945. ],
  1946. "authors": [
  1947. {
  1948. "name": "PHP-FIG",
  1949. "homepage": "https://www.php-fig.org/"
  1950. }
  1951. ],
  1952. "description": "Common Container Interface (PHP FIG PSR-11)",
  1953. "homepage": "https://github.com/php-fig/container",
  1954. "keywords": [
  1955. "PSR-11",
  1956. "container",
  1957. "container-interface",
  1958. "container-interop",
  1959. "psr"
  1960. ],
  1961. "support": {
  1962. "issues": "https://github.com/php-fig/container/issues",
  1963. "source": "https://github.com/php-fig/container/tree/2.0.2"
  1964. },
  1965. "time": "2021-11-05T16:47:00+00:00"
  1966. },
  1967. {
  1968. "name": "psr/event-dispatcher",
  1969. "version": "1.0.0",
  1970. "source": {
  1971. "type": "git",
  1972. "url": "https://github.com/php-fig/event-dispatcher.git",
  1973. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1974. },
  1975. "dist": {
  1976. "type": "zip",
  1977. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1978. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1979. "shasum": ""
  1980. },
  1981. "require": {
  1982. "php": ">=7.2.0"
  1983. },
  1984. "type": "library",
  1985. "extra": {
  1986. "branch-alias": {
  1987. "dev-master": "1.0.x-dev"
  1988. }
  1989. },
  1990. "autoload": {
  1991. "psr-4": {
  1992. "Psr\\EventDispatcher\\": "src/"
  1993. }
  1994. },
  1995. "notification-url": "https://packagist.org/downloads/",
  1996. "license": [
  1997. "MIT"
  1998. ],
  1999. "authors": [
  2000. {
  2001. "name": "PHP-FIG",
  2002. "homepage": "http://www.php-fig.org/"
  2003. }
  2004. ],
  2005. "description": "Standard interfaces for event handling.",
  2006. "keywords": [
  2007. "events",
  2008. "psr",
  2009. "psr-14"
  2010. ],
  2011. "support": {
  2012. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2013. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2014. },
  2015. "time": "2019-01-08T18:20:26+00:00"
  2016. },
  2017. {
  2018. "name": "psr/link",
  2019. "version": "2.0.1",
  2020. "source": {
  2021. "type": "git",
  2022. "url": "https://github.com/php-fig/link.git",
  2023. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2024. },
  2025. "dist": {
  2026. "type": "zip",
  2027. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2028. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2029. "shasum": ""
  2030. },
  2031. "require": {
  2032. "php": ">=8.0.0"
  2033. },
  2034. "suggest": {
  2035. "fig/link-util": "Provides some useful PSR-13 utilities"
  2036. },
  2037. "type": "library",
  2038. "extra": {
  2039. "branch-alias": {
  2040. "dev-master": "2.0.x-dev"
  2041. }
  2042. },
  2043. "autoload": {
  2044. "psr-4": {
  2045. "Psr\\Link\\": "src/"
  2046. }
  2047. },
  2048. "notification-url": "https://packagist.org/downloads/",
  2049. "license": [
  2050. "MIT"
  2051. ],
  2052. "authors": [
  2053. {
  2054. "name": "PHP-FIG",
  2055. "homepage": "http://www.php-fig.org/"
  2056. }
  2057. ],
  2058. "description": "Common interfaces for HTTP links",
  2059. "homepage": "https://github.com/php-fig/link",
  2060. "keywords": [
  2061. "http",
  2062. "http-link",
  2063. "link",
  2064. "psr",
  2065. "psr-13",
  2066. "rest"
  2067. ],
  2068. "support": {
  2069. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2070. },
  2071. "time": "2021-03-11T23:00:27+00:00"
  2072. },
  2073. {
  2074. "name": "psr/log",
  2075. "version": "3.0.2",
  2076. "source": {
  2077. "type": "git",
  2078. "url": "https://github.com/php-fig/log.git",
  2079. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  2080. },
  2081. "dist": {
  2082. "type": "zip",
  2083. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2084. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2085. "shasum": ""
  2086. },
  2087. "require": {
  2088. "php": ">=8.0.0"
  2089. },
  2090. "type": "library",
  2091. "extra": {
  2092. "branch-alias": {
  2093. "dev-master": "3.x-dev"
  2094. }
  2095. },
  2096. "autoload": {
  2097. "psr-4": {
  2098. "Psr\\Log\\": "src"
  2099. }
  2100. },
  2101. "notification-url": "https://packagist.org/downloads/",
  2102. "license": [
  2103. "MIT"
  2104. ],
  2105. "authors": [
  2106. {
  2107. "name": "PHP-FIG",
  2108. "homepage": "https://www.php-fig.org/"
  2109. }
  2110. ],
  2111. "description": "Common interface for logging libraries",
  2112. "homepage": "https://github.com/php-fig/log",
  2113. "keywords": [
  2114. "log",
  2115. "psr",
  2116. "psr-3"
  2117. ],
  2118. "support": {
  2119. "source": "https://github.com/php-fig/log/tree/3.0.2"
  2120. },
  2121. "time": "2024-09-11T13:17:53+00:00"
  2122. },
  2123. {
  2124. "name": "symfony/asset",
  2125. "version": "v7.3.0",
  2126. "source": {
  2127. "type": "git",
  2128. "url": "https://github.com/symfony/asset.git",
  2129. "reference": "56c4d9f759247c4e07d8549e3baf7493cb9c3e4b"
  2130. },
  2131. "dist": {
  2132. "type": "zip",
  2133. "url": "https://api.github.com/repos/symfony/asset/zipball/56c4d9f759247c4e07d8549e3baf7493cb9c3e4b",
  2134. "reference": "56c4d9f759247c4e07d8549e3baf7493cb9c3e4b",
  2135. "shasum": ""
  2136. },
  2137. "require": {
  2138. "php": ">=8.2"
  2139. },
  2140. "conflict": {
  2141. "symfony/http-foundation": "<6.4"
  2142. },
  2143. "require-dev": {
  2144. "symfony/http-client": "^6.4|^7.0",
  2145. "symfony/http-foundation": "^6.4|^7.0",
  2146. "symfony/http-kernel": "^6.4|^7.0"
  2147. },
  2148. "type": "library",
  2149. "autoload": {
  2150. "psr-4": {
  2151. "Symfony\\Component\\Asset\\": ""
  2152. },
  2153. "exclude-from-classmap": [
  2154. "/Tests/"
  2155. ]
  2156. },
  2157. "notification-url": "https://packagist.org/downloads/",
  2158. "license": [
  2159. "MIT"
  2160. ],
  2161. "authors": [
  2162. {
  2163. "name": "Fabien Potencier",
  2164. "email": "fabien@symfony.com"
  2165. },
  2166. {
  2167. "name": "Symfony Community",
  2168. "homepage": "https://symfony.com/contributors"
  2169. }
  2170. ],
  2171. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2172. "homepage": "https://symfony.com",
  2173. "support": {
  2174. "source": "https://github.com/symfony/asset/tree/v7.3.0"
  2175. },
  2176. "funding": [
  2177. {
  2178. "url": "https://symfony.com/sponsor",
  2179. "type": "custom"
  2180. },
  2181. {
  2182. "url": "https://github.com/fabpot",
  2183. "type": "github"
  2184. },
  2185. {
  2186. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2187. "type": "tidelift"
  2188. }
  2189. ],
  2190. "time": "2025-03-05T10:15:41+00:00"
  2191. },
  2192. {
  2193. "name": "symfony/asset-mapper",
  2194. "version": "v7.3.0",
  2195. "source": {
  2196. "type": "git",
  2197. "url": "https://github.com/symfony/asset-mapper.git",
  2198. "reference": "6516f38868b75c4902ea72a9fa44967628375ae7"
  2199. },
  2200. "dist": {
  2201. "type": "zip",
  2202. "url": "https://api.github.com/repos/symfony/asset-mapper/zipball/6516f38868b75c4902ea72a9fa44967628375ae7",
  2203. "reference": "6516f38868b75c4902ea72a9fa44967628375ae7",
  2204. "shasum": ""
  2205. },
  2206. "require": {
  2207. "composer/semver": "^3.0",
  2208. "php": ">=8.2",
  2209. "symfony/deprecation-contracts": "^2.1|^3",
  2210. "symfony/filesystem": "^7.1",
  2211. "symfony/http-client": "^6.4|^7.0"
  2212. },
  2213. "conflict": {
  2214. "symfony/framework-bundle": "<6.4"
  2215. },
  2216. "require-dev": {
  2217. "symfony/asset": "^6.4|^7.0",
  2218. "symfony/browser-kit": "^6.4|^7.0",
  2219. "symfony/console": "^6.4|^7.0",
  2220. "symfony/event-dispatcher-contracts": "^3.0",
  2221. "symfony/finder": "^6.4|^7.0",
  2222. "symfony/framework-bundle": "^6.4|^7.0",
  2223. "symfony/http-foundation": "^6.4|^7.0",
  2224. "symfony/http-kernel": "^6.4|^7.0",
  2225. "symfony/process": "^6.4|^7.0",
  2226. "symfony/web-link": "^6.4|^7.0"
  2227. },
  2228. "type": "library",
  2229. "autoload": {
  2230. "psr-4": {
  2231. "Symfony\\Component\\AssetMapper\\": ""
  2232. },
  2233. "exclude-from-classmap": [
  2234. "/Tests/"
  2235. ]
  2236. },
  2237. "notification-url": "https://packagist.org/downloads/",
  2238. "license": [
  2239. "MIT"
  2240. ],
  2241. "authors": [
  2242. {
  2243. "name": "Fabien Potencier",
  2244. "email": "fabien@symfony.com"
  2245. },
  2246. {
  2247. "name": "Symfony Community",
  2248. "homepage": "https://symfony.com/contributors"
  2249. }
  2250. ],
  2251. "description": "Maps directories of assets & makes them available in a public directory with versioned filenames.",
  2252. "homepage": "https://symfony.com",
  2253. "support": {
  2254. "source": "https://github.com/symfony/asset-mapper/tree/v7.3.0"
  2255. },
  2256. "funding": [
  2257. {
  2258. "url": "https://symfony.com/sponsor",
  2259. "type": "custom"
  2260. },
  2261. {
  2262. "url": "https://github.com/fabpot",
  2263. "type": "github"
  2264. },
  2265. {
  2266. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2267. "type": "tidelift"
  2268. }
  2269. ],
  2270. "time": "2025-05-24T14:05:12+00:00"
  2271. },
  2272. {
  2273. "name": "symfony/cache",
  2274. "version": "v7.3.1",
  2275. "source": {
  2276. "type": "git",
  2277. "url": "https://github.com/symfony/cache.git",
  2278. "reference": "a7c6caa9d6113cebfb3020b427bcb021ebfdfc9e"
  2279. },
  2280. "dist": {
  2281. "type": "zip",
  2282. "url": "https://api.github.com/repos/symfony/cache/zipball/a7c6caa9d6113cebfb3020b427bcb021ebfdfc9e",
  2283. "reference": "a7c6caa9d6113cebfb3020b427bcb021ebfdfc9e",
  2284. "shasum": ""
  2285. },
  2286. "require": {
  2287. "php": ">=8.2",
  2288. "psr/cache": "^2.0|^3.0",
  2289. "psr/log": "^1.1|^2|^3",
  2290. "symfony/cache-contracts": "^3.6",
  2291. "symfony/deprecation-contracts": "^2.5|^3.0",
  2292. "symfony/service-contracts": "^2.5|^3",
  2293. "symfony/var-exporter": "^6.4|^7.0"
  2294. },
  2295. "conflict": {
  2296. "doctrine/dbal": "<3.6",
  2297. "symfony/dependency-injection": "<6.4",
  2298. "symfony/http-kernel": "<6.4",
  2299. "symfony/var-dumper": "<6.4"
  2300. },
  2301. "provide": {
  2302. "psr/cache-implementation": "2.0|3.0",
  2303. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  2304. "symfony/cache-implementation": "1.1|2.0|3.0"
  2305. },
  2306. "require-dev": {
  2307. "cache/integration-tests": "dev-master",
  2308. "doctrine/dbal": "^3.6|^4",
  2309. "predis/predis": "^1.1|^2.0",
  2310. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2311. "symfony/clock": "^6.4|^7.0",
  2312. "symfony/config": "^6.4|^7.0",
  2313. "symfony/dependency-injection": "^6.4|^7.0",
  2314. "symfony/filesystem": "^6.4|^7.0",
  2315. "symfony/http-kernel": "^6.4|^7.0",
  2316. "symfony/messenger": "^6.4|^7.0",
  2317. "symfony/var-dumper": "^6.4|^7.0"
  2318. },
  2319. "type": "library",
  2320. "autoload": {
  2321. "psr-4": {
  2322. "Symfony\\Component\\Cache\\": ""
  2323. },
  2324. "classmap": [
  2325. "Traits/ValueWrapper.php"
  2326. ],
  2327. "exclude-from-classmap": [
  2328. "/Tests/"
  2329. ]
  2330. },
  2331. "notification-url": "https://packagist.org/downloads/",
  2332. "license": [
  2333. "MIT"
  2334. ],
  2335. "authors": [
  2336. {
  2337. "name": "Nicolas Grekas",
  2338. "email": "p@tchwork.com"
  2339. },
  2340. {
  2341. "name": "Symfony Community",
  2342. "homepage": "https://symfony.com/contributors"
  2343. }
  2344. ],
  2345. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2346. "homepage": "https://symfony.com",
  2347. "keywords": [
  2348. "caching",
  2349. "psr6"
  2350. ],
  2351. "support": {
  2352. "source": "https://github.com/symfony/cache/tree/v7.3.1"
  2353. },
  2354. "funding": [
  2355. {
  2356. "url": "https://symfony.com/sponsor",
  2357. "type": "custom"
  2358. },
  2359. {
  2360. "url": "https://github.com/fabpot",
  2361. "type": "github"
  2362. },
  2363. {
  2364. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2365. "type": "tidelift"
  2366. }
  2367. ],
  2368. "time": "2025-06-27T19:55:54+00:00"
  2369. },
  2370. {
  2371. "name": "symfony/cache-contracts",
  2372. "version": "v3.6.0",
  2373. "source": {
  2374. "type": "git",
  2375. "url": "https://github.com/symfony/cache-contracts.git",
  2376. "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868"
  2377. },
  2378. "dist": {
  2379. "type": "zip",
  2380. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/5d68a57d66910405e5c0b63d6f0af941e66fc868",
  2381. "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868",
  2382. "shasum": ""
  2383. },
  2384. "require": {
  2385. "php": ">=8.1",
  2386. "psr/cache": "^3.0"
  2387. },
  2388. "type": "library",
  2389. "extra": {
  2390. "thanks": {
  2391. "url": "https://github.com/symfony/contracts",
  2392. "name": "symfony/contracts"
  2393. },
  2394. "branch-alias": {
  2395. "dev-main": "3.6-dev"
  2396. }
  2397. },
  2398. "autoload": {
  2399. "psr-4": {
  2400. "Symfony\\Contracts\\Cache\\": ""
  2401. }
  2402. },
  2403. "notification-url": "https://packagist.org/downloads/",
  2404. "license": [
  2405. "MIT"
  2406. ],
  2407. "authors": [
  2408. {
  2409. "name": "Nicolas Grekas",
  2410. "email": "p@tchwork.com"
  2411. },
  2412. {
  2413. "name": "Symfony Community",
  2414. "homepage": "https://symfony.com/contributors"
  2415. }
  2416. ],
  2417. "description": "Generic abstractions related to caching",
  2418. "homepage": "https://symfony.com",
  2419. "keywords": [
  2420. "abstractions",
  2421. "contracts",
  2422. "decoupling",
  2423. "interfaces",
  2424. "interoperability",
  2425. "standards"
  2426. ],
  2427. "support": {
  2428. "source": "https://github.com/symfony/cache-contracts/tree/v3.6.0"
  2429. },
  2430. "funding": [
  2431. {
  2432. "url": "https://symfony.com/sponsor",
  2433. "type": "custom"
  2434. },
  2435. {
  2436. "url": "https://github.com/fabpot",
  2437. "type": "github"
  2438. },
  2439. {
  2440. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2441. "type": "tidelift"
  2442. }
  2443. ],
  2444. "time": "2025-03-13T15:25:07+00:00"
  2445. },
  2446. {
  2447. "name": "symfony/clock",
  2448. "version": "v7.3.0",
  2449. "source": {
  2450. "type": "git",
  2451. "url": "https://github.com/symfony/clock.git",
  2452. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24"
  2453. },
  2454. "dist": {
  2455. "type": "zip",
  2456. "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  2457. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  2458. "shasum": ""
  2459. },
  2460. "require": {
  2461. "php": ">=8.2",
  2462. "psr/clock": "^1.0",
  2463. "symfony/polyfill-php83": "^1.28"
  2464. },
  2465. "provide": {
  2466. "psr/clock-implementation": "1.0"
  2467. },
  2468. "type": "library",
  2469. "autoload": {
  2470. "files": [
  2471. "Resources/now.php"
  2472. ],
  2473. "psr-4": {
  2474. "Symfony\\Component\\Clock\\": ""
  2475. },
  2476. "exclude-from-classmap": [
  2477. "/Tests/"
  2478. ]
  2479. },
  2480. "notification-url": "https://packagist.org/downloads/",
  2481. "license": [
  2482. "MIT"
  2483. ],
  2484. "authors": [
  2485. {
  2486. "name": "Nicolas Grekas",
  2487. "email": "p@tchwork.com"
  2488. },
  2489. {
  2490. "name": "Symfony Community",
  2491. "homepage": "https://symfony.com/contributors"
  2492. }
  2493. ],
  2494. "description": "Decouples applications from the system clock",
  2495. "homepage": "https://symfony.com",
  2496. "keywords": [
  2497. "clock",
  2498. "psr20",
  2499. "time"
  2500. ],
  2501. "support": {
  2502. "source": "https://github.com/symfony/clock/tree/v7.3.0"
  2503. },
  2504. "funding": [
  2505. {
  2506. "url": "https://symfony.com/sponsor",
  2507. "type": "custom"
  2508. },
  2509. {
  2510. "url": "https://github.com/fabpot",
  2511. "type": "github"
  2512. },
  2513. {
  2514. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2515. "type": "tidelift"
  2516. }
  2517. ],
  2518. "time": "2024-09-25T14:21:43+00:00"
  2519. },
  2520. {
  2521. "name": "symfony/config",
  2522. "version": "v7.3.0",
  2523. "source": {
  2524. "type": "git",
  2525. "url": "https://github.com/symfony/config.git",
  2526. "reference": "ba62ae565f1327c2f6366726312ed828c85853bc"
  2527. },
  2528. "dist": {
  2529. "type": "zip",
  2530. "url": "https://api.github.com/repos/symfony/config/zipball/ba62ae565f1327c2f6366726312ed828c85853bc",
  2531. "reference": "ba62ae565f1327c2f6366726312ed828c85853bc",
  2532. "shasum": ""
  2533. },
  2534. "require": {
  2535. "php": ">=8.2",
  2536. "symfony/deprecation-contracts": "^2.5|^3",
  2537. "symfony/filesystem": "^7.1",
  2538. "symfony/polyfill-ctype": "~1.8"
  2539. },
  2540. "conflict": {
  2541. "symfony/finder": "<6.4",
  2542. "symfony/service-contracts": "<2.5"
  2543. },
  2544. "require-dev": {
  2545. "symfony/event-dispatcher": "^6.4|^7.0",
  2546. "symfony/finder": "^6.4|^7.0",
  2547. "symfony/messenger": "^6.4|^7.0",
  2548. "symfony/service-contracts": "^2.5|^3",
  2549. "symfony/yaml": "^6.4|^7.0"
  2550. },
  2551. "type": "library",
  2552. "autoload": {
  2553. "psr-4": {
  2554. "Symfony\\Component\\Config\\": ""
  2555. },
  2556. "exclude-from-classmap": [
  2557. "/Tests/"
  2558. ]
  2559. },
  2560. "notification-url": "https://packagist.org/downloads/",
  2561. "license": [
  2562. "MIT"
  2563. ],
  2564. "authors": [
  2565. {
  2566. "name": "Fabien Potencier",
  2567. "email": "fabien@symfony.com"
  2568. },
  2569. {
  2570. "name": "Symfony Community",
  2571. "homepage": "https://symfony.com/contributors"
  2572. }
  2573. ],
  2574. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  2575. "homepage": "https://symfony.com",
  2576. "support": {
  2577. "source": "https://github.com/symfony/config/tree/v7.3.0"
  2578. },
  2579. "funding": [
  2580. {
  2581. "url": "https://symfony.com/sponsor",
  2582. "type": "custom"
  2583. },
  2584. {
  2585. "url": "https://github.com/fabpot",
  2586. "type": "github"
  2587. },
  2588. {
  2589. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2590. "type": "tidelift"
  2591. }
  2592. ],
  2593. "time": "2025-05-15T09:04:05+00:00"
  2594. },
  2595. {
  2596. "name": "symfony/console",
  2597. "version": "v7.3.1",
  2598. "source": {
  2599. "type": "git",
  2600. "url": "https://github.com/symfony/console.git",
  2601. "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101"
  2602. },
  2603. "dist": {
  2604. "type": "zip",
  2605. "url": "https://api.github.com/repos/symfony/console/zipball/9e27aecde8f506ba0fd1d9989620c04a87697101",
  2606. "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101",
  2607. "shasum": ""
  2608. },
  2609. "require": {
  2610. "php": ">=8.2",
  2611. "symfony/deprecation-contracts": "^2.5|^3",
  2612. "symfony/polyfill-mbstring": "~1.0",
  2613. "symfony/service-contracts": "^2.5|^3",
  2614. "symfony/string": "^7.2"
  2615. },
  2616. "conflict": {
  2617. "symfony/dependency-injection": "<6.4",
  2618. "symfony/dotenv": "<6.4",
  2619. "symfony/event-dispatcher": "<6.4",
  2620. "symfony/lock": "<6.4",
  2621. "symfony/process": "<6.4"
  2622. },
  2623. "provide": {
  2624. "psr/log-implementation": "1.0|2.0|3.0"
  2625. },
  2626. "require-dev": {
  2627. "psr/log": "^1|^2|^3",
  2628. "symfony/config": "^6.4|^7.0",
  2629. "symfony/dependency-injection": "^6.4|^7.0",
  2630. "symfony/event-dispatcher": "^6.4|^7.0",
  2631. "symfony/http-foundation": "^6.4|^7.0",
  2632. "symfony/http-kernel": "^6.4|^7.0",
  2633. "symfony/lock": "^6.4|^7.0",
  2634. "symfony/messenger": "^6.4|^7.0",
  2635. "symfony/process": "^6.4|^7.0",
  2636. "symfony/stopwatch": "^6.4|^7.0",
  2637. "symfony/var-dumper": "^6.4|^7.0"
  2638. },
  2639. "type": "library",
  2640. "autoload": {
  2641. "psr-4": {
  2642. "Symfony\\Component\\Console\\": ""
  2643. },
  2644. "exclude-from-classmap": [
  2645. "/Tests/"
  2646. ]
  2647. },
  2648. "notification-url": "https://packagist.org/downloads/",
  2649. "license": [
  2650. "MIT"
  2651. ],
  2652. "authors": [
  2653. {
  2654. "name": "Fabien Potencier",
  2655. "email": "fabien@symfony.com"
  2656. },
  2657. {
  2658. "name": "Symfony Community",
  2659. "homepage": "https://symfony.com/contributors"
  2660. }
  2661. ],
  2662. "description": "Eases the creation of beautiful and testable command line interfaces",
  2663. "homepage": "https://symfony.com",
  2664. "keywords": [
  2665. "cli",
  2666. "command-line",
  2667. "console",
  2668. "terminal"
  2669. ],
  2670. "support": {
  2671. "source": "https://github.com/symfony/console/tree/v7.3.1"
  2672. },
  2673. "funding": [
  2674. {
  2675. "url": "https://symfony.com/sponsor",
  2676. "type": "custom"
  2677. },
  2678. {
  2679. "url": "https://github.com/fabpot",
  2680. "type": "github"
  2681. },
  2682. {
  2683. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2684. "type": "tidelift"
  2685. }
  2686. ],
  2687. "time": "2025-06-27T19:55:54+00:00"
  2688. },
  2689. {
  2690. "name": "symfony/dependency-injection",
  2691. "version": "v7.3.1",
  2692. "source": {
  2693. "type": "git",
  2694. "url": "https://github.com/symfony/dependency-injection.git",
  2695. "reference": "8656c4848b48784c4bb8c4ae50d2b43f832cead8"
  2696. },
  2697. "dist": {
  2698. "type": "zip",
  2699. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/8656c4848b48784c4bb8c4ae50d2b43f832cead8",
  2700. "reference": "8656c4848b48784c4bb8c4ae50d2b43f832cead8",
  2701. "shasum": ""
  2702. },
  2703. "require": {
  2704. "php": ">=8.2",
  2705. "psr/container": "^1.1|^2.0",
  2706. "symfony/deprecation-contracts": "^2.5|^3",
  2707. "symfony/service-contracts": "^3.5",
  2708. "symfony/var-exporter": "^6.4.20|^7.2.5"
  2709. },
  2710. "conflict": {
  2711. "ext-psr": "<1.1|>=2",
  2712. "symfony/config": "<6.4",
  2713. "symfony/finder": "<6.4",
  2714. "symfony/yaml": "<6.4"
  2715. },
  2716. "provide": {
  2717. "psr/container-implementation": "1.1|2.0",
  2718. "symfony/service-implementation": "1.1|2.0|3.0"
  2719. },
  2720. "require-dev": {
  2721. "symfony/config": "^6.4|^7.0",
  2722. "symfony/expression-language": "^6.4|^7.0",
  2723. "symfony/yaml": "^6.4|^7.0"
  2724. },
  2725. "type": "library",
  2726. "autoload": {
  2727. "psr-4": {
  2728. "Symfony\\Component\\DependencyInjection\\": ""
  2729. },
  2730. "exclude-from-classmap": [
  2731. "/Tests/"
  2732. ]
  2733. },
  2734. "notification-url": "https://packagist.org/downloads/",
  2735. "license": [
  2736. "MIT"
  2737. ],
  2738. "authors": [
  2739. {
  2740. "name": "Fabien Potencier",
  2741. "email": "fabien@symfony.com"
  2742. },
  2743. {
  2744. "name": "Symfony Community",
  2745. "homepage": "https://symfony.com/contributors"
  2746. }
  2747. ],
  2748. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  2749. "homepage": "https://symfony.com",
  2750. "support": {
  2751. "source": "https://github.com/symfony/dependency-injection/tree/v7.3.1"
  2752. },
  2753. "funding": [
  2754. {
  2755. "url": "https://symfony.com/sponsor",
  2756. "type": "custom"
  2757. },
  2758. {
  2759. "url": "https://github.com/fabpot",
  2760. "type": "github"
  2761. },
  2762. {
  2763. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2764. "type": "tidelift"
  2765. }
  2766. ],
  2767. "time": "2025-06-24T04:04:43+00:00"
  2768. },
  2769. {
  2770. "name": "symfony/deprecation-contracts",
  2771. "version": "v3.6.0",
  2772. "source": {
  2773. "type": "git",
  2774. "url": "https://github.com/symfony/deprecation-contracts.git",
  2775. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  2776. },
  2777. "dist": {
  2778. "type": "zip",
  2779. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  2780. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  2781. "shasum": ""
  2782. },
  2783. "require": {
  2784. "php": ">=8.1"
  2785. },
  2786. "type": "library",
  2787. "extra": {
  2788. "thanks": {
  2789. "url": "https://github.com/symfony/contracts",
  2790. "name": "symfony/contracts"
  2791. },
  2792. "branch-alias": {
  2793. "dev-main": "3.6-dev"
  2794. }
  2795. },
  2796. "autoload": {
  2797. "files": [
  2798. "function.php"
  2799. ]
  2800. },
  2801. "notification-url": "https://packagist.org/downloads/",
  2802. "license": [
  2803. "MIT"
  2804. ],
  2805. "authors": [
  2806. {
  2807. "name": "Nicolas Grekas",
  2808. "email": "p@tchwork.com"
  2809. },
  2810. {
  2811. "name": "Symfony Community",
  2812. "homepage": "https://symfony.com/contributors"
  2813. }
  2814. ],
  2815. "description": "A generic function and convention to trigger deprecation notices",
  2816. "homepage": "https://symfony.com",
  2817. "support": {
  2818. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  2819. },
  2820. "funding": [
  2821. {
  2822. "url": "https://symfony.com/sponsor",
  2823. "type": "custom"
  2824. },
  2825. {
  2826. "url": "https://github.com/fabpot",
  2827. "type": "github"
  2828. },
  2829. {
  2830. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2831. "type": "tidelift"
  2832. }
  2833. ],
  2834. "time": "2024-09-25T14:21:43+00:00"
  2835. },
  2836. {
  2837. "name": "symfony/doctrine-bridge",
  2838. "version": "v7.3.1",
  2839. "source": {
  2840. "type": "git",
  2841. "url": "https://github.com/symfony/doctrine-bridge.git",
  2842. "reference": "6c0acb248c46452ae2c15752dc71e72f3335403f"
  2843. },
  2844. "dist": {
  2845. "type": "zip",
  2846. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/6c0acb248c46452ae2c15752dc71e72f3335403f",
  2847. "reference": "6c0acb248c46452ae2c15752dc71e72f3335403f",
  2848. "shasum": ""
  2849. },
  2850. "require": {
  2851. "doctrine/event-manager": "^2",
  2852. "doctrine/persistence": "^3.1|^4",
  2853. "php": ">=8.2",
  2854. "symfony/deprecation-contracts": "^2.5|^3",
  2855. "symfony/polyfill-ctype": "~1.8",
  2856. "symfony/polyfill-mbstring": "~1.0",
  2857. "symfony/service-contracts": "^2.5|^3"
  2858. },
  2859. "conflict": {
  2860. "doctrine/collections": "<1.8",
  2861. "doctrine/dbal": "<3.6",
  2862. "doctrine/lexer": "<1.1",
  2863. "doctrine/orm": "<2.15",
  2864. "symfony/cache": "<6.4",
  2865. "symfony/dependency-injection": "<6.4",
  2866. "symfony/form": "<6.4.6|>=7,<7.0.6",
  2867. "symfony/http-foundation": "<6.4",
  2868. "symfony/http-kernel": "<6.4",
  2869. "symfony/lock": "<6.4",
  2870. "symfony/messenger": "<6.4",
  2871. "symfony/property-info": "<6.4",
  2872. "symfony/security-bundle": "<6.4",
  2873. "symfony/security-core": "<6.4",
  2874. "symfony/validator": "<6.4"
  2875. },
  2876. "require-dev": {
  2877. "doctrine/collections": "^1.8|^2.0",
  2878. "doctrine/data-fixtures": "^1.1|^2",
  2879. "doctrine/dbal": "^3.6|^4",
  2880. "doctrine/orm": "^2.15|^3",
  2881. "psr/log": "^1|^2|^3",
  2882. "symfony/cache": "^6.4|^7.0",
  2883. "symfony/config": "^6.4|^7.0",
  2884. "symfony/dependency-injection": "^6.4|^7.0",
  2885. "symfony/doctrine-messenger": "^6.4|^7.0",
  2886. "symfony/expression-language": "^6.4|^7.0",
  2887. "symfony/form": "^6.4.6|^7.0.6",
  2888. "symfony/http-kernel": "^6.4|^7.0",
  2889. "symfony/lock": "^6.4|^7.0",
  2890. "symfony/messenger": "^6.4|^7.0",
  2891. "symfony/property-access": "^6.4|^7.0",
  2892. "symfony/property-info": "^6.4|^7.0",
  2893. "symfony/security-core": "^6.4|^7.0",
  2894. "symfony/stopwatch": "^6.4|^7.0",
  2895. "symfony/translation": "^6.4|^7.0",
  2896. "symfony/type-info": "^7.1",
  2897. "symfony/uid": "^6.4|^7.0",
  2898. "symfony/validator": "^6.4|^7.0",
  2899. "symfony/var-dumper": "^6.4|^7.0"
  2900. },
  2901. "type": "symfony-bridge",
  2902. "autoload": {
  2903. "psr-4": {
  2904. "Symfony\\Bridge\\Doctrine\\": ""
  2905. },
  2906. "exclude-from-classmap": [
  2907. "/Tests/"
  2908. ]
  2909. },
  2910. "notification-url": "https://packagist.org/downloads/",
  2911. "license": [
  2912. "MIT"
  2913. ],
  2914. "authors": [
  2915. {
  2916. "name": "Fabien Potencier",
  2917. "email": "fabien@symfony.com"
  2918. },
  2919. {
  2920. "name": "Symfony Community",
  2921. "homepage": "https://symfony.com/contributors"
  2922. }
  2923. ],
  2924. "description": "Provides integration for Doctrine with various Symfony components",
  2925. "homepage": "https://symfony.com",
  2926. "support": {
  2927. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.3.1"
  2928. },
  2929. "funding": [
  2930. {
  2931. "url": "https://symfony.com/sponsor",
  2932. "type": "custom"
  2933. },
  2934. {
  2935. "url": "https://github.com/fabpot",
  2936. "type": "github"
  2937. },
  2938. {
  2939. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2940. "type": "tidelift"
  2941. }
  2942. ],
  2943. "time": "2025-06-26T13:02:59+00:00"
  2944. },
  2945. {
  2946. "name": "symfony/doctrine-messenger",
  2947. "version": "v7.3.0",
  2948. "source": {
  2949. "type": "git",
  2950. "url": "https://github.com/symfony/doctrine-messenger.git",
  2951. "reference": "099d9cd03f889c31c90d406fed07f25dc3732487"
  2952. },
  2953. "dist": {
  2954. "type": "zip",
  2955. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/099d9cd03f889c31c90d406fed07f25dc3732487",
  2956. "reference": "099d9cd03f889c31c90d406fed07f25dc3732487",
  2957. "shasum": ""
  2958. },
  2959. "require": {
  2960. "doctrine/dbal": "^3.6|^4",
  2961. "php": ">=8.2",
  2962. "symfony/messenger": "^7.2",
  2963. "symfony/service-contracts": "^2.5|^3"
  2964. },
  2965. "conflict": {
  2966. "doctrine/persistence": "<1.3"
  2967. },
  2968. "require-dev": {
  2969. "doctrine/persistence": "^1.3|^2|^3",
  2970. "symfony/property-access": "^6.4|^7.0",
  2971. "symfony/serializer": "^6.4|^7.0"
  2972. },
  2973. "type": "symfony-messenger-bridge",
  2974. "autoload": {
  2975. "psr-4": {
  2976. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  2977. },
  2978. "exclude-from-classmap": [
  2979. "/Tests/"
  2980. ]
  2981. },
  2982. "notification-url": "https://packagist.org/downloads/",
  2983. "license": [
  2984. "MIT"
  2985. ],
  2986. "authors": [
  2987. {
  2988. "name": "Fabien Potencier",
  2989. "email": "fabien@symfony.com"
  2990. },
  2991. {
  2992. "name": "Symfony Community",
  2993. "homepage": "https://symfony.com/contributors"
  2994. }
  2995. ],
  2996. "description": "Symfony Doctrine Messenger Bridge",
  2997. "homepage": "https://symfony.com",
  2998. "support": {
  2999. "source": "https://github.com/symfony/doctrine-messenger/tree/v7.3.0"
  3000. },
  3001. "funding": [
  3002. {
  3003. "url": "https://symfony.com/sponsor",
  3004. "type": "custom"
  3005. },
  3006. {
  3007. "url": "https://github.com/fabpot",
  3008. "type": "github"
  3009. },
  3010. {
  3011. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3012. "type": "tidelift"
  3013. }
  3014. ],
  3015. "time": "2025-03-26T11:30:13+00:00"
  3016. },
  3017. {
  3018. "name": "symfony/dotenv",
  3019. "version": "v7.3.0",
  3020. "source": {
  3021. "type": "git",
  3022. "url": "https://github.com/symfony/dotenv.git",
  3023. "reference": "28347a897771d0c28e99b75166dd2689099f3045"
  3024. },
  3025. "dist": {
  3026. "type": "zip",
  3027. "url": "https://api.github.com/repos/symfony/dotenv/zipball/28347a897771d0c28e99b75166dd2689099f3045",
  3028. "reference": "28347a897771d0c28e99b75166dd2689099f3045",
  3029. "shasum": ""
  3030. },
  3031. "require": {
  3032. "php": ">=8.2"
  3033. },
  3034. "conflict": {
  3035. "symfony/console": "<6.4",
  3036. "symfony/process": "<6.4"
  3037. },
  3038. "require-dev": {
  3039. "symfony/console": "^6.4|^7.0",
  3040. "symfony/process": "^6.4|^7.0"
  3041. },
  3042. "type": "library",
  3043. "autoload": {
  3044. "psr-4": {
  3045. "Symfony\\Component\\Dotenv\\": ""
  3046. },
  3047. "exclude-from-classmap": [
  3048. "/Tests/"
  3049. ]
  3050. },
  3051. "notification-url": "https://packagist.org/downloads/",
  3052. "license": [
  3053. "MIT"
  3054. ],
  3055. "authors": [
  3056. {
  3057. "name": "Fabien Potencier",
  3058. "email": "fabien@symfony.com"
  3059. },
  3060. {
  3061. "name": "Symfony Community",
  3062. "homepage": "https://symfony.com/contributors"
  3063. }
  3064. ],
  3065. "description": "Registers environment variables from a .env file",
  3066. "homepage": "https://symfony.com",
  3067. "keywords": [
  3068. "dotenv",
  3069. "env",
  3070. "environment"
  3071. ],
  3072. "support": {
  3073. "source": "https://github.com/symfony/dotenv/tree/v7.3.0"
  3074. },
  3075. "funding": [
  3076. {
  3077. "url": "https://symfony.com/sponsor",
  3078. "type": "custom"
  3079. },
  3080. {
  3081. "url": "https://github.com/fabpot",
  3082. "type": "github"
  3083. },
  3084. {
  3085. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3086. "type": "tidelift"
  3087. }
  3088. ],
  3089. "time": "2024-11-27T11:18:42+00:00"
  3090. },
  3091. {
  3092. "name": "symfony/error-handler",
  3093. "version": "v7.3.1",
  3094. "source": {
  3095. "type": "git",
  3096. "url": "https://github.com/symfony/error-handler.git",
  3097. "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235"
  3098. },
  3099. "dist": {
  3100. "type": "zip",
  3101. "url": "https://api.github.com/repos/symfony/error-handler/zipball/35b55b166f6752d6aaf21aa042fc5ed280fce235",
  3102. "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235",
  3103. "shasum": ""
  3104. },
  3105. "require": {
  3106. "php": ">=8.2",
  3107. "psr/log": "^1|^2|^3",
  3108. "symfony/var-dumper": "^6.4|^7.0"
  3109. },
  3110. "conflict": {
  3111. "symfony/deprecation-contracts": "<2.5",
  3112. "symfony/http-kernel": "<6.4"
  3113. },
  3114. "require-dev": {
  3115. "symfony/console": "^6.4|^7.0",
  3116. "symfony/deprecation-contracts": "^2.5|^3",
  3117. "symfony/http-kernel": "^6.4|^7.0",
  3118. "symfony/serializer": "^6.4|^7.0",
  3119. "symfony/webpack-encore-bundle": "^1.0|^2.0"
  3120. },
  3121. "bin": [
  3122. "Resources/bin/patch-type-declarations"
  3123. ],
  3124. "type": "library",
  3125. "autoload": {
  3126. "psr-4": {
  3127. "Symfony\\Component\\ErrorHandler\\": ""
  3128. },
  3129. "exclude-from-classmap": [
  3130. "/Tests/"
  3131. ]
  3132. },
  3133. "notification-url": "https://packagist.org/downloads/",
  3134. "license": [
  3135. "MIT"
  3136. ],
  3137. "authors": [
  3138. {
  3139. "name": "Fabien Potencier",
  3140. "email": "fabien@symfony.com"
  3141. },
  3142. {
  3143. "name": "Symfony Community",
  3144. "homepage": "https://symfony.com/contributors"
  3145. }
  3146. ],
  3147. "description": "Provides tools to manage errors and ease debugging PHP code",
  3148. "homepage": "https://symfony.com",
  3149. "support": {
  3150. "source": "https://github.com/symfony/error-handler/tree/v7.3.1"
  3151. },
  3152. "funding": [
  3153. {
  3154. "url": "https://symfony.com/sponsor",
  3155. "type": "custom"
  3156. },
  3157. {
  3158. "url": "https://github.com/fabpot",
  3159. "type": "github"
  3160. },
  3161. {
  3162. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3163. "type": "tidelift"
  3164. }
  3165. ],
  3166. "time": "2025-06-13T07:48:40+00:00"
  3167. },
  3168. {
  3169. "name": "symfony/event-dispatcher",
  3170. "version": "v7.3.0",
  3171. "source": {
  3172. "type": "git",
  3173. "url": "https://github.com/symfony/event-dispatcher.git",
  3174. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d"
  3175. },
  3176. "dist": {
  3177. "type": "zip",
  3178. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/497f73ac996a598c92409b44ac43b6690c4f666d",
  3179. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d",
  3180. "shasum": ""
  3181. },
  3182. "require": {
  3183. "php": ">=8.2",
  3184. "symfony/event-dispatcher-contracts": "^2.5|^3"
  3185. },
  3186. "conflict": {
  3187. "symfony/dependency-injection": "<6.4",
  3188. "symfony/service-contracts": "<2.5"
  3189. },
  3190. "provide": {
  3191. "psr/event-dispatcher-implementation": "1.0",
  3192. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3193. },
  3194. "require-dev": {
  3195. "psr/log": "^1|^2|^3",
  3196. "symfony/config": "^6.4|^7.0",
  3197. "symfony/dependency-injection": "^6.4|^7.0",
  3198. "symfony/error-handler": "^6.4|^7.0",
  3199. "symfony/expression-language": "^6.4|^7.0",
  3200. "symfony/http-foundation": "^6.4|^7.0",
  3201. "symfony/service-contracts": "^2.5|^3",
  3202. "symfony/stopwatch": "^6.4|^7.0"
  3203. },
  3204. "type": "library",
  3205. "autoload": {
  3206. "psr-4": {
  3207. "Symfony\\Component\\EventDispatcher\\": ""
  3208. },
  3209. "exclude-from-classmap": [
  3210. "/Tests/"
  3211. ]
  3212. },
  3213. "notification-url": "https://packagist.org/downloads/",
  3214. "license": [
  3215. "MIT"
  3216. ],
  3217. "authors": [
  3218. {
  3219. "name": "Fabien Potencier",
  3220. "email": "fabien@symfony.com"
  3221. },
  3222. {
  3223. "name": "Symfony Community",
  3224. "homepage": "https://symfony.com/contributors"
  3225. }
  3226. ],
  3227. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3228. "homepage": "https://symfony.com",
  3229. "support": {
  3230. "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.0"
  3231. },
  3232. "funding": [
  3233. {
  3234. "url": "https://symfony.com/sponsor",
  3235. "type": "custom"
  3236. },
  3237. {
  3238. "url": "https://github.com/fabpot",
  3239. "type": "github"
  3240. },
  3241. {
  3242. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3243. "type": "tidelift"
  3244. }
  3245. ],
  3246. "time": "2025-04-22T09:11:45+00:00"
  3247. },
  3248. {
  3249. "name": "symfony/event-dispatcher-contracts",
  3250. "version": "v3.6.0",
  3251. "source": {
  3252. "type": "git",
  3253. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3254. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  3255. },
  3256. "dist": {
  3257. "type": "zip",
  3258. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  3259. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  3260. "shasum": ""
  3261. },
  3262. "require": {
  3263. "php": ">=8.1",
  3264. "psr/event-dispatcher": "^1"
  3265. },
  3266. "type": "library",
  3267. "extra": {
  3268. "thanks": {
  3269. "url": "https://github.com/symfony/contracts",
  3270. "name": "symfony/contracts"
  3271. },
  3272. "branch-alias": {
  3273. "dev-main": "3.6-dev"
  3274. }
  3275. },
  3276. "autoload": {
  3277. "psr-4": {
  3278. "Symfony\\Contracts\\EventDispatcher\\": ""
  3279. }
  3280. },
  3281. "notification-url": "https://packagist.org/downloads/",
  3282. "license": [
  3283. "MIT"
  3284. ],
  3285. "authors": [
  3286. {
  3287. "name": "Nicolas Grekas",
  3288. "email": "p@tchwork.com"
  3289. },
  3290. {
  3291. "name": "Symfony Community",
  3292. "homepage": "https://symfony.com/contributors"
  3293. }
  3294. ],
  3295. "description": "Generic abstractions related to dispatching event",
  3296. "homepage": "https://symfony.com",
  3297. "keywords": [
  3298. "abstractions",
  3299. "contracts",
  3300. "decoupling",
  3301. "interfaces",
  3302. "interoperability",
  3303. "standards"
  3304. ],
  3305. "support": {
  3306. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  3307. },
  3308. "funding": [
  3309. {
  3310. "url": "https://symfony.com/sponsor",
  3311. "type": "custom"
  3312. },
  3313. {
  3314. "url": "https://github.com/fabpot",
  3315. "type": "github"
  3316. },
  3317. {
  3318. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3319. "type": "tidelift"
  3320. }
  3321. ],
  3322. "time": "2024-09-25T14:21:43+00:00"
  3323. },
  3324. {
  3325. "name": "symfony/expression-language",
  3326. "version": "v7.3.0",
  3327. "source": {
  3328. "type": "git",
  3329. "url": "https://github.com/symfony/expression-language.git",
  3330. "reference": "26f4884a455e755e630a5fc372df124a3578da2e"
  3331. },
  3332. "dist": {
  3333. "type": "zip",
  3334. "url": "https://api.github.com/repos/symfony/expression-language/zipball/26f4884a455e755e630a5fc372df124a3578da2e",
  3335. "reference": "26f4884a455e755e630a5fc372df124a3578da2e",
  3336. "shasum": ""
  3337. },
  3338. "require": {
  3339. "php": ">=8.2",
  3340. "symfony/cache": "^6.4|^7.0",
  3341. "symfony/deprecation-contracts": "^2.5|^3",
  3342. "symfony/service-contracts": "^2.5|^3"
  3343. },
  3344. "type": "library",
  3345. "autoload": {
  3346. "psr-4": {
  3347. "Symfony\\Component\\ExpressionLanguage\\": ""
  3348. },
  3349. "exclude-from-classmap": [
  3350. "/Tests/"
  3351. ]
  3352. },
  3353. "notification-url": "https://packagist.org/downloads/",
  3354. "license": [
  3355. "MIT"
  3356. ],
  3357. "authors": [
  3358. {
  3359. "name": "Fabien Potencier",
  3360. "email": "fabien@symfony.com"
  3361. },
  3362. {
  3363. "name": "Symfony Community",
  3364. "homepage": "https://symfony.com/contributors"
  3365. }
  3366. ],
  3367. "description": "Provides an engine that can compile and evaluate expressions",
  3368. "homepage": "https://symfony.com",
  3369. "support": {
  3370. "source": "https://github.com/symfony/expression-language/tree/v7.3.0"
  3371. },
  3372. "funding": [
  3373. {
  3374. "url": "https://symfony.com/sponsor",
  3375. "type": "custom"
  3376. },
  3377. {
  3378. "url": "https://github.com/fabpot",
  3379. "type": "github"
  3380. },
  3381. {
  3382. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3383. "type": "tidelift"
  3384. }
  3385. ],
  3386. "time": "2024-10-15T11:52:45+00:00"
  3387. },
  3388. {
  3389. "name": "symfony/filesystem",
  3390. "version": "v7.3.0",
  3391. "source": {
  3392. "type": "git",
  3393. "url": "https://github.com/symfony/filesystem.git",
  3394. "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb"
  3395. },
  3396. "dist": {
  3397. "type": "zip",
  3398. "url": "https://api.github.com/repos/symfony/filesystem/zipball/b8dce482de9d7c9fe2891155035a7248ab5c7fdb",
  3399. "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb",
  3400. "shasum": ""
  3401. },
  3402. "require": {
  3403. "php": ">=8.2",
  3404. "symfony/polyfill-ctype": "~1.8",
  3405. "symfony/polyfill-mbstring": "~1.8"
  3406. },
  3407. "require-dev": {
  3408. "symfony/process": "^6.4|^7.0"
  3409. },
  3410. "type": "library",
  3411. "autoload": {
  3412. "psr-4": {
  3413. "Symfony\\Component\\Filesystem\\": ""
  3414. },
  3415. "exclude-from-classmap": [
  3416. "/Tests/"
  3417. ]
  3418. },
  3419. "notification-url": "https://packagist.org/downloads/",
  3420. "license": [
  3421. "MIT"
  3422. ],
  3423. "authors": [
  3424. {
  3425. "name": "Fabien Potencier",
  3426. "email": "fabien@symfony.com"
  3427. },
  3428. {
  3429. "name": "Symfony Community",
  3430. "homepage": "https://symfony.com/contributors"
  3431. }
  3432. ],
  3433. "description": "Provides basic utilities for the filesystem",
  3434. "homepage": "https://symfony.com",
  3435. "support": {
  3436. "source": "https://github.com/symfony/filesystem/tree/v7.3.0"
  3437. },
  3438. "funding": [
  3439. {
  3440. "url": "https://symfony.com/sponsor",
  3441. "type": "custom"
  3442. },
  3443. {
  3444. "url": "https://github.com/fabpot",
  3445. "type": "github"
  3446. },
  3447. {
  3448. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3449. "type": "tidelift"
  3450. }
  3451. ],
  3452. "time": "2024-10-25T15:15:23+00:00"
  3453. },
  3454. {
  3455. "name": "symfony/finder",
  3456. "version": "v7.3.0",
  3457. "source": {
  3458. "type": "git",
  3459. "url": "https://github.com/symfony/finder.git",
  3460. "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d"
  3461. },
  3462. "dist": {
  3463. "type": "zip",
  3464. "url": "https://api.github.com/repos/symfony/finder/zipball/ec2344cf77a48253bbca6939aa3d2477773ea63d",
  3465. "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d",
  3466. "shasum": ""
  3467. },
  3468. "require": {
  3469. "php": ">=8.2"
  3470. },
  3471. "require-dev": {
  3472. "symfony/filesystem": "^6.4|^7.0"
  3473. },
  3474. "type": "library",
  3475. "autoload": {
  3476. "psr-4": {
  3477. "Symfony\\Component\\Finder\\": ""
  3478. },
  3479. "exclude-from-classmap": [
  3480. "/Tests/"
  3481. ]
  3482. },
  3483. "notification-url": "https://packagist.org/downloads/",
  3484. "license": [
  3485. "MIT"
  3486. ],
  3487. "authors": [
  3488. {
  3489. "name": "Fabien Potencier",
  3490. "email": "fabien@symfony.com"
  3491. },
  3492. {
  3493. "name": "Symfony Community",
  3494. "homepage": "https://symfony.com/contributors"
  3495. }
  3496. ],
  3497. "description": "Finds files and directories via an intuitive fluent interface",
  3498. "homepage": "https://symfony.com",
  3499. "support": {
  3500. "source": "https://github.com/symfony/finder/tree/v7.3.0"
  3501. },
  3502. "funding": [
  3503. {
  3504. "url": "https://symfony.com/sponsor",
  3505. "type": "custom"
  3506. },
  3507. {
  3508. "url": "https://github.com/fabpot",
  3509. "type": "github"
  3510. },
  3511. {
  3512. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3513. "type": "tidelift"
  3514. }
  3515. ],
  3516. "time": "2024-12-30T19:00:26+00:00"
  3517. },
  3518. {
  3519. "name": "symfony/flex",
  3520. "version": "v2.8.1",
  3521. "source": {
  3522. "type": "git",
  3523. "url": "https://github.com/symfony/flex.git",
  3524. "reference": "423c36e369361003dc31ef11c5f15fb589e52c01"
  3525. },
  3526. "dist": {
  3527. "type": "zip",
  3528. "url": "https://api.github.com/repos/symfony/flex/zipball/423c36e369361003dc31ef11c5f15fb589e52c01",
  3529. "reference": "423c36e369361003dc31ef11c5f15fb589e52c01",
  3530. "shasum": ""
  3531. },
  3532. "require": {
  3533. "composer-plugin-api": "^2.1",
  3534. "php": ">=8.0"
  3535. },
  3536. "conflict": {
  3537. "composer/semver": "<1.7.2"
  3538. },
  3539. "require-dev": {
  3540. "composer/composer": "^2.1",
  3541. "symfony/dotenv": "^5.4|^6.0",
  3542. "symfony/filesystem": "^5.4|^6.0",
  3543. "symfony/phpunit-bridge": "^5.4|^6.0",
  3544. "symfony/process": "^5.4|^6.0"
  3545. },
  3546. "type": "composer-plugin",
  3547. "extra": {
  3548. "class": "Symfony\\Flex\\Flex"
  3549. },
  3550. "autoload": {
  3551. "psr-4": {
  3552. "Symfony\\Flex\\": "src"
  3553. }
  3554. },
  3555. "notification-url": "https://packagist.org/downloads/",
  3556. "license": [
  3557. "MIT"
  3558. ],
  3559. "authors": [
  3560. {
  3561. "name": "Fabien Potencier",
  3562. "email": "fabien.potencier@gmail.com"
  3563. }
  3564. ],
  3565. "description": "Composer plugin for Symfony",
  3566. "support": {
  3567. "issues": "https://github.com/symfony/flex/issues",
  3568. "source": "https://github.com/symfony/flex/tree/v2.8.1"
  3569. },
  3570. "funding": [
  3571. {
  3572. "url": "https://symfony.com/sponsor",
  3573. "type": "custom"
  3574. },
  3575. {
  3576. "url": "https://github.com/fabpot",
  3577. "type": "github"
  3578. },
  3579. {
  3580. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3581. "type": "tidelift"
  3582. }
  3583. ],
  3584. "time": "2025-07-05T07:45:19+00:00"
  3585. },
  3586. {
  3587. "name": "symfony/form",
  3588. "version": "v7.3.1",
  3589. "source": {
  3590. "type": "git",
  3591. "url": "https://github.com/symfony/form.git",
  3592. "reference": "e06b02dd21b33b0cd7bb942c7e446ef7b22a2a5a"
  3593. },
  3594. "dist": {
  3595. "type": "zip",
  3596. "url": "https://api.github.com/repos/symfony/form/zipball/e06b02dd21b33b0cd7bb942c7e446ef7b22a2a5a",
  3597. "reference": "e06b02dd21b33b0cd7bb942c7e446ef7b22a2a5a",
  3598. "shasum": ""
  3599. },
  3600. "require": {
  3601. "php": ">=8.2",
  3602. "symfony/deprecation-contracts": "^2.5|^3",
  3603. "symfony/event-dispatcher": "^6.4|^7.0",
  3604. "symfony/options-resolver": "^7.3",
  3605. "symfony/polyfill-ctype": "~1.8",
  3606. "symfony/polyfill-intl-icu": "^1.21",
  3607. "symfony/polyfill-mbstring": "~1.0",
  3608. "symfony/property-access": "^6.4|^7.0",
  3609. "symfony/service-contracts": "^2.5|^3"
  3610. },
  3611. "conflict": {
  3612. "symfony/console": "<6.4",
  3613. "symfony/dependency-injection": "<6.4",
  3614. "symfony/doctrine-bridge": "<6.4",
  3615. "symfony/error-handler": "<6.4",
  3616. "symfony/framework-bundle": "<6.4",
  3617. "symfony/http-kernel": "<6.4",
  3618. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  3619. "symfony/translation-contracts": "<2.5",
  3620. "symfony/twig-bridge": "<6.4"
  3621. },
  3622. "require-dev": {
  3623. "doctrine/collections": "^1.0|^2.0",
  3624. "symfony/config": "^6.4|^7.0",
  3625. "symfony/console": "^6.4|^7.0",
  3626. "symfony/dependency-injection": "^6.4|^7.0",
  3627. "symfony/expression-language": "^6.4|^7.0",
  3628. "symfony/html-sanitizer": "^6.4|^7.0",
  3629. "symfony/http-foundation": "^6.4|^7.0",
  3630. "symfony/http-kernel": "^6.4|^7.0",
  3631. "symfony/intl": "^6.4|^7.0",
  3632. "symfony/security-core": "^6.4|^7.0",
  3633. "symfony/security-csrf": "^6.4|^7.0",
  3634. "symfony/translation": "^6.4.3|^7.0.3",
  3635. "symfony/uid": "^6.4|^7.0",
  3636. "symfony/validator": "^6.4|^7.0",
  3637. "symfony/var-dumper": "^6.4|^7.0"
  3638. },
  3639. "type": "library",
  3640. "autoload": {
  3641. "psr-4": {
  3642. "Symfony\\Component\\Form\\": ""
  3643. },
  3644. "exclude-from-classmap": [
  3645. "/Tests/"
  3646. ]
  3647. },
  3648. "notification-url": "https://packagist.org/downloads/",
  3649. "license": [
  3650. "MIT"
  3651. ],
  3652. "authors": [
  3653. {
  3654. "name": "Fabien Potencier",
  3655. "email": "fabien@symfony.com"
  3656. },
  3657. {
  3658. "name": "Symfony Community",
  3659. "homepage": "https://symfony.com/contributors"
  3660. }
  3661. ],
  3662. "description": "Allows to easily create, process and reuse HTML forms",
  3663. "homepage": "https://symfony.com",
  3664. "support": {
  3665. "source": "https://github.com/symfony/form/tree/v7.3.1"
  3666. },
  3667. "funding": [
  3668. {
  3669. "url": "https://symfony.com/sponsor",
  3670. "type": "custom"
  3671. },
  3672. {
  3673. "url": "https://github.com/fabpot",
  3674. "type": "github"
  3675. },
  3676. {
  3677. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3678. "type": "tidelift"
  3679. }
  3680. ],
  3681. "time": "2025-06-13T07:48:40+00:00"
  3682. },
  3683. {
  3684. "name": "symfony/framework-bundle",
  3685. "version": "v7.3.1",
  3686. "source": {
  3687. "type": "git",
  3688. "url": "https://github.com/symfony/framework-bundle.git",
  3689. "reference": "91905f22f26aa350a33b3b9690bdf94976b0d0ab"
  3690. },
  3691. "dist": {
  3692. "type": "zip",
  3693. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/91905f22f26aa350a33b3b9690bdf94976b0d0ab",
  3694. "reference": "91905f22f26aa350a33b3b9690bdf94976b0d0ab",
  3695. "shasum": ""
  3696. },
  3697. "require": {
  3698. "composer-runtime-api": ">=2.1",
  3699. "ext-xml": "*",
  3700. "php": ">=8.2",
  3701. "symfony/cache": "^6.4|^7.0",
  3702. "symfony/config": "^7.3",
  3703. "symfony/dependency-injection": "^7.2",
  3704. "symfony/deprecation-contracts": "^2.5|^3",
  3705. "symfony/error-handler": "^7.3",
  3706. "symfony/event-dispatcher": "^6.4|^7.0",
  3707. "symfony/filesystem": "^7.1",
  3708. "symfony/finder": "^6.4|^7.0",
  3709. "symfony/http-foundation": "^7.3",
  3710. "symfony/http-kernel": "^7.2",
  3711. "symfony/polyfill-mbstring": "~1.0",
  3712. "symfony/routing": "^6.4|^7.0"
  3713. },
  3714. "conflict": {
  3715. "doctrine/persistence": "<1.3",
  3716. "phpdocumentor/reflection-docblock": "<3.2.2",
  3717. "phpdocumentor/type-resolver": "<1.4.0",
  3718. "symfony/asset": "<6.4",
  3719. "symfony/asset-mapper": "<6.4",
  3720. "symfony/clock": "<6.4",
  3721. "symfony/console": "<6.4",
  3722. "symfony/dom-crawler": "<6.4",
  3723. "symfony/dotenv": "<6.4",
  3724. "symfony/form": "<6.4",
  3725. "symfony/http-client": "<6.4",
  3726. "symfony/json-streamer": ">=7.4",
  3727. "symfony/lock": "<6.4",
  3728. "symfony/mailer": "<6.4",
  3729. "symfony/messenger": "<6.4",
  3730. "symfony/mime": "<6.4",
  3731. "symfony/object-mapper": ">=7.4",
  3732. "symfony/property-access": "<6.4",
  3733. "symfony/property-info": "<6.4",
  3734. "symfony/runtime": "<6.4.13|>=7.0,<7.1.6",
  3735. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  3736. "symfony/security-core": "<6.4",
  3737. "symfony/security-csrf": "<7.2",
  3738. "symfony/serializer": "<7.2.5",
  3739. "symfony/stopwatch": "<6.4",
  3740. "symfony/translation": "<7.3",
  3741. "symfony/twig-bridge": "<6.4",
  3742. "symfony/twig-bundle": "<6.4",
  3743. "symfony/validator": "<6.4",
  3744. "symfony/web-profiler-bundle": "<6.4",
  3745. "symfony/webhook": "<7.2",
  3746. "symfony/workflow": "<7.3.0-beta2"
  3747. },
  3748. "require-dev": {
  3749. "doctrine/persistence": "^1.3|^2|^3",
  3750. "dragonmantank/cron-expression": "^3.1",
  3751. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3752. "seld/jsonlint": "^1.10",
  3753. "symfony/asset": "^6.4|^7.0",
  3754. "symfony/asset-mapper": "^6.4|^7.0",
  3755. "symfony/browser-kit": "^6.4|^7.0",
  3756. "symfony/clock": "^6.4|^7.0",
  3757. "symfony/console": "^6.4|^7.0",
  3758. "symfony/css-selector": "^6.4|^7.0",
  3759. "symfony/dom-crawler": "^6.4|^7.0",
  3760. "symfony/dotenv": "^6.4|^7.0",
  3761. "symfony/expression-language": "^6.4|^7.0",
  3762. "symfony/form": "^6.4|^7.0",
  3763. "symfony/html-sanitizer": "^6.4|^7.0",
  3764. "symfony/http-client": "^6.4|^7.0",
  3765. "symfony/json-streamer": "7.3.*",
  3766. "symfony/lock": "^6.4|^7.0",
  3767. "symfony/mailer": "^6.4|^7.0",
  3768. "symfony/messenger": "^6.4|^7.0",
  3769. "symfony/mime": "^6.4|^7.0",
  3770. "symfony/notifier": "^6.4|^7.0",
  3771. "symfony/object-mapper": "^v7.3.0-beta2",
  3772. "symfony/polyfill-intl-icu": "~1.0",
  3773. "symfony/process": "^6.4|^7.0",
  3774. "symfony/property-info": "^6.4|^7.0",
  3775. "symfony/rate-limiter": "^6.4|^7.0",
  3776. "symfony/scheduler": "^6.4.4|^7.0.4",
  3777. "symfony/security-bundle": "^6.4|^7.0",
  3778. "symfony/semaphore": "^6.4|^7.0",
  3779. "symfony/serializer": "^7.2.5",
  3780. "symfony/stopwatch": "^6.4|^7.0",
  3781. "symfony/string": "^6.4|^7.0",
  3782. "symfony/translation": "^7.3",
  3783. "symfony/twig-bundle": "^6.4|^7.0",
  3784. "symfony/type-info": "^7.1",
  3785. "symfony/uid": "^6.4|^7.0",
  3786. "symfony/validator": "^6.4|^7.0",
  3787. "symfony/web-link": "^6.4|^7.0",
  3788. "symfony/webhook": "^7.2",
  3789. "symfony/workflow": "^7.3",
  3790. "symfony/yaml": "^6.4|^7.0",
  3791. "twig/twig": "^3.12"
  3792. },
  3793. "type": "symfony-bundle",
  3794. "autoload": {
  3795. "psr-4": {
  3796. "Symfony\\Bundle\\FrameworkBundle\\": ""
  3797. },
  3798. "exclude-from-classmap": [
  3799. "/Tests/"
  3800. ]
  3801. },
  3802. "notification-url": "https://packagist.org/downloads/",
  3803. "license": [
  3804. "MIT"
  3805. ],
  3806. "authors": [
  3807. {
  3808. "name": "Fabien Potencier",
  3809. "email": "fabien@symfony.com"
  3810. },
  3811. {
  3812. "name": "Symfony Community",
  3813. "homepage": "https://symfony.com/contributors"
  3814. }
  3815. ],
  3816. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  3817. "homepage": "https://symfony.com",
  3818. "support": {
  3819. "source": "https://github.com/symfony/framework-bundle/tree/v7.3.1"
  3820. },
  3821. "funding": [
  3822. {
  3823. "url": "https://symfony.com/sponsor",
  3824. "type": "custom"
  3825. },
  3826. {
  3827. "url": "https://github.com/fabpot",
  3828. "type": "github"
  3829. },
  3830. {
  3831. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3832. "type": "tidelift"
  3833. }
  3834. ],
  3835. "time": "2025-06-27T19:55:54+00:00"
  3836. },
  3837. {
  3838. "name": "symfony/http-client",
  3839. "version": "v7.3.1",
  3840. "source": {
  3841. "type": "git",
  3842. "url": "https://github.com/symfony/http-client.git",
  3843. "reference": "4403d87a2c16f33345dca93407a8714ee8c05a64"
  3844. },
  3845. "dist": {
  3846. "type": "zip",
  3847. "url": "https://api.github.com/repos/symfony/http-client/zipball/4403d87a2c16f33345dca93407a8714ee8c05a64",
  3848. "reference": "4403d87a2c16f33345dca93407a8714ee8c05a64",
  3849. "shasum": ""
  3850. },
  3851. "require": {
  3852. "php": ">=8.2",
  3853. "psr/log": "^1|^2|^3",
  3854. "symfony/deprecation-contracts": "^2.5|^3",
  3855. "symfony/http-client-contracts": "~3.4.4|^3.5.2",
  3856. "symfony/service-contracts": "^2.5|^3"
  3857. },
  3858. "conflict": {
  3859. "amphp/amp": "<2.5",
  3860. "amphp/socket": "<1.1",
  3861. "php-http/discovery": "<1.15",
  3862. "symfony/http-foundation": "<6.4"
  3863. },
  3864. "provide": {
  3865. "php-http/async-client-implementation": "*",
  3866. "php-http/client-implementation": "*",
  3867. "psr/http-client-implementation": "1.0",
  3868. "symfony/http-client-implementation": "3.0"
  3869. },
  3870. "require-dev": {
  3871. "amphp/http-client": "^4.2.1|^5.0",
  3872. "amphp/http-tunnel": "^1.0|^2.0",
  3873. "guzzlehttp/promises": "^1.4|^2.0",
  3874. "nyholm/psr7": "^1.0",
  3875. "php-http/httplug": "^1.0|^2.0",
  3876. "psr/http-client": "^1.0",
  3877. "symfony/amphp-http-client-meta": "^1.0|^2.0",
  3878. "symfony/dependency-injection": "^6.4|^7.0",
  3879. "symfony/http-kernel": "^6.4|^7.0",
  3880. "symfony/messenger": "^6.4|^7.0",
  3881. "symfony/process": "^6.4|^7.0",
  3882. "symfony/rate-limiter": "^6.4|^7.0",
  3883. "symfony/stopwatch": "^6.4|^7.0"
  3884. },
  3885. "type": "library",
  3886. "autoload": {
  3887. "psr-4": {
  3888. "Symfony\\Component\\HttpClient\\": ""
  3889. },
  3890. "exclude-from-classmap": [
  3891. "/Tests/"
  3892. ]
  3893. },
  3894. "notification-url": "https://packagist.org/downloads/",
  3895. "license": [
  3896. "MIT"
  3897. ],
  3898. "authors": [
  3899. {
  3900. "name": "Nicolas Grekas",
  3901. "email": "p@tchwork.com"
  3902. },
  3903. {
  3904. "name": "Symfony Community",
  3905. "homepage": "https://symfony.com/contributors"
  3906. }
  3907. ],
  3908. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  3909. "homepage": "https://symfony.com",
  3910. "keywords": [
  3911. "http"
  3912. ],
  3913. "support": {
  3914. "source": "https://github.com/symfony/http-client/tree/v7.3.1"
  3915. },
  3916. "funding": [
  3917. {
  3918. "url": "https://symfony.com/sponsor",
  3919. "type": "custom"
  3920. },
  3921. {
  3922. "url": "https://github.com/fabpot",
  3923. "type": "github"
  3924. },
  3925. {
  3926. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3927. "type": "tidelift"
  3928. }
  3929. ],
  3930. "time": "2025-06-28T07:58:39+00:00"
  3931. },
  3932. {
  3933. "name": "symfony/http-client-contracts",
  3934. "version": "v3.6.0",
  3935. "source": {
  3936. "type": "git",
  3937. "url": "https://github.com/symfony/http-client-contracts.git",
  3938. "reference": "75d7043853a42837e68111812f4d964b01e5101c"
  3939. },
  3940. "dist": {
  3941. "type": "zip",
  3942. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/75d7043853a42837e68111812f4d964b01e5101c",
  3943. "reference": "75d7043853a42837e68111812f4d964b01e5101c",
  3944. "shasum": ""
  3945. },
  3946. "require": {
  3947. "php": ">=8.1"
  3948. },
  3949. "type": "library",
  3950. "extra": {
  3951. "thanks": {
  3952. "url": "https://github.com/symfony/contracts",
  3953. "name": "symfony/contracts"
  3954. },
  3955. "branch-alias": {
  3956. "dev-main": "3.6-dev"
  3957. }
  3958. },
  3959. "autoload": {
  3960. "psr-4": {
  3961. "Symfony\\Contracts\\HttpClient\\": ""
  3962. },
  3963. "exclude-from-classmap": [
  3964. "/Test/"
  3965. ]
  3966. },
  3967. "notification-url": "https://packagist.org/downloads/",
  3968. "license": [
  3969. "MIT"
  3970. ],
  3971. "authors": [
  3972. {
  3973. "name": "Nicolas Grekas",
  3974. "email": "p@tchwork.com"
  3975. },
  3976. {
  3977. "name": "Symfony Community",
  3978. "homepage": "https://symfony.com/contributors"
  3979. }
  3980. ],
  3981. "description": "Generic abstractions related to HTTP clients",
  3982. "homepage": "https://symfony.com",
  3983. "keywords": [
  3984. "abstractions",
  3985. "contracts",
  3986. "decoupling",
  3987. "interfaces",
  3988. "interoperability",
  3989. "standards"
  3990. ],
  3991. "support": {
  3992. "source": "https://github.com/symfony/http-client-contracts/tree/v3.6.0"
  3993. },
  3994. "funding": [
  3995. {
  3996. "url": "https://symfony.com/sponsor",
  3997. "type": "custom"
  3998. },
  3999. {
  4000. "url": "https://github.com/fabpot",
  4001. "type": "github"
  4002. },
  4003. {
  4004. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4005. "type": "tidelift"
  4006. }
  4007. ],
  4008. "time": "2025-04-29T11:18:49+00:00"
  4009. },
  4010. {
  4011. "name": "symfony/http-foundation",
  4012. "version": "v7.3.1",
  4013. "source": {
  4014. "type": "git",
  4015. "url": "https://github.com/symfony/http-foundation.git",
  4016. "reference": "23dd60256610c86a3414575b70c596e5deff6ed9"
  4017. },
  4018. "dist": {
  4019. "type": "zip",
  4020. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/23dd60256610c86a3414575b70c596e5deff6ed9",
  4021. "reference": "23dd60256610c86a3414575b70c596e5deff6ed9",
  4022. "shasum": ""
  4023. },
  4024. "require": {
  4025. "php": ">=8.2",
  4026. "symfony/deprecation-contracts": "^2.5|^3.0",
  4027. "symfony/polyfill-mbstring": "~1.1",
  4028. "symfony/polyfill-php83": "^1.27"
  4029. },
  4030. "conflict": {
  4031. "doctrine/dbal": "<3.6",
  4032. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  4033. },
  4034. "require-dev": {
  4035. "doctrine/dbal": "^3.6|^4",
  4036. "predis/predis": "^1.1|^2.0",
  4037. "symfony/cache": "^6.4.12|^7.1.5",
  4038. "symfony/clock": "^6.4|^7.0",
  4039. "symfony/dependency-injection": "^6.4|^7.0",
  4040. "symfony/expression-language": "^6.4|^7.0",
  4041. "symfony/http-kernel": "^6.4|^7.0",
  4042. "symfony/mime": "^6.4|^7.0",
  4043. "symfony/rate-limiter": "^6.4|^7.0"
  4044. },
  4045. "type": "library",
  4046. "autoload": {
  4047. "psr-4": {
  4048. "Symfony\\Component\\HttpFoundation\\": ""
  4049. },
  4050. "exclude-from-classmap": [
  4051. "/Tests/"
  4052. ]
  4053. },
  4054. "notification-url": "https://packagist.org/downloads/",
  4055. "license": [
  4056. "MIT"
  4057. ],
  4058. "authors": [
  4059. {
  4060. "name": "Fabien Potencier",
  4061. "email": "fabien@symfony.com"
  4062. },
  4063. {
  4064. "name": "Symfony Community",
  4065. "homepage": "https://symfony.com/contributors"
  4066. }
  4067. ],
  4068. "description": "Defines an object-oriented layer for the HTTP specification",
  4069. "homepage": "https://symfony.com",
  4070. "support": {
  4071. "source": "https://github.com/symfony/http-foundation/tree/v7.3.1"
  4072. },
  4073. "funding": [
  4074. {
  4075. "url": "https://symfony.com/sponsor",
  4076. "type": "custom"
  4077. },
  4078. {
  4079. "url": "https://github.com/fabpot",
  4080. "type": "github"
  4081. },
  4082. {
  4083. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4084. "type": "tidelift"
  4085. }
  4086. ],
  4087. "time": "2025-06-23T15:07:14+00:00"
  4088. },
  4089. {
  4090. "name": "symfony/http-kernel",
  4091. "version": "v7.3.1",
  4092. "source": {
  4093. "type": "git",
  4094. "url": "https://github.com/symfony/http-kernel.git",
  4095. "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831"
  4096. },
  4097. "dist": {
  4098. "type": "zip",
  4099. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1644879a66e4aa29c36fe33dfa6c54b450ce1831",
  4100. "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831",
  4101. "shasum": ""
  4102. },
  4103. "require": {
  4104. "php": ">=8.2",
  4105. "psr/log": "^1|^2|^3",
  4106. "symfony/deprecation-contracts": "^2.5|^3",
  4107. "symfony/error-handler": "^6.4|^7.0",
  4108. "symfony/event-dispatcher": "^7.3",
  4109. "symfony/http-foundation": "^7.3",
  4110. "symfony/polyfill-ctype": "^1.8"
  4111. },
  4112. "conflict": {
  4113. "symfony/browser-kit": "<6.4",
  4114. "symfony/cache": "<6.4",
  4115. "symfony/config": "<6.4",
  4116. "symfony/console": "<6.4",
  4117. "symfony/dependency-injection": "<6.4",
  4118. "symfony/doctrine-bridge": "<6.4",
  4119. "symfony/form": "<6.4",
  4120. "symfony/http-client": "<6.4",
  4121. "symfony/http-client-contracts": "<2.5",
  4122. "symfony/mailer": "<6.4",
  4123. "symfony/messenger": "<6.4",
  4124. "symfony/translation": "<6.4",
  4125. "symfony/translation-contracts": "<2.5",
  4126. "symfony/twig-bridge": "<6.4",
  4127. "symfony/validator": "<6.4",
  4128. "symfony/var-dumper": "<6.4",
  4129. "twig/twig": "<3.12"
  4130. },
  4131. "provide": {
  4132. "psr/log-implementation": "1.0|2.0|3.0"
  4133. },
  4134. "require-dev": {
  4135. "psr/cache": "^1.0|^2.0|^3.0",
  4136. "symfony/browser-kit": "^6.4|^7.0",
  4137. "symfony/clock": "^6.4|^7.0",
  4138. "symfony/config": "^6.4|^7.0",
  4139. "symfony/console": "^6.4|^7.0",
  4140. "symfony/css-selector": "^6.4|^7.0",
  4141. "symfony/dependency-injection": "^6.4|^7.0",
  4142. "symfony/dom-crawler": "^6.4|^7.0",
  4143. "symfony/expression-language": "^6.4|^7.0",
  4144. "symfony/finder": "^6.4|^7.0",
  4145. "symfony/http-client-contracts": "^2.5|^3",
  4146. "symfony/process": "^6.4|^7.0",
  4147. "symfony/property-access": "^7.1",
  4148. "symfony/routing": "^6.4|^7.0",
  4149. "symfony/serializer": "^7.1",
  4150. "symfony/stopwatch": "^6.4|^7.0",
  4151. "symfony/translation": "^6.4|^7.0",
  4152. "symfony/translation-contracts": "^2.5|^3",
  4153. "symfony/uid": "^6.4|^7.0",
  4154. "symfony/validator": "^6.4|^7.0",
  4155. "symfony/var-dumper": "^6.4|^7.0",
  4156. "symfony/var-exporter": "^6.4|^7.0",
  4157. "twig/twig": "^3.12"
  4158. },
  4159. "type": "library",
  4160. "autoload": {
  4161. "psr-4": {
  4162. "Symfony\\Component\\HttpKernel\\": ""
  4163. },
  4164. "exclude-from-classmap": [
  4165. "/Tests/"
  4166. ]
  4167. },
  4168. "notification-url": "https://packagist.org/downloads/",
  4169. "license": [
  4170. "MIT"
  4171. ],
  4172. "authors": [
  4173. {
  4174. "name": "Fabien Potencier",
  4175. "email": "fabien@symfony.com"
  4176. },
  4177. {
  4178. "name": "Symfony Community",
  4179. "homepage": "https://symfony.com/contributors"
  4180. }
  4181. ],
  4182. "description": "Provides a structured process for converting a Request into a Response",
  4183. "homepage": "https://symfony.com",
  4184. "support": {
  4185. "source": "https://github.com/symfony/http-kernel/tree/v7.3.1"
  4186. },
  4187. "funding": [
  4188. {
  4189. "url": "https://symfony.com/sponsor",
  4190. "type": "custom"
  4191. },
  4192. {
  4193. "url": "https://github.com/fabpot",
  4194. "type": "github"
  4195. },
  4196. {
  4197. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4198. "type": "tidelift"
  4199. }
  4200. ],
  4201. "time": "2025-06-28T08:24:55+00:00"
  4202. },
  4203. {
  4204. "name": "symfony/intl",
  4205. "version": "v7.3.1",
  4206. "source": {
  4207. "type": "git",
  4208. "url": "https://github.com/symfony/intl.git",
  4209. "reference": "bd50940329ac1cfc4af0491cc4468f477d967e45"
  4210. },
  4211. "dist": {
  4212. "type": "zip",
  4213. "url": "https://api.github.com/repos/symfony/intl/zipball/bd50940329ac1cfc4af0491cc4468f477d967e45",
  4214. "reference": "bd50940329ac1cfc4af0491cc4468f477d967e45",
  4215. "shasum": ""
  4216. },
  4217. "require": {
  4218. "php": ">=8.2",
  4219. "symfony/deprecation-contracts": "^2.5|^3"
  4220. },
  4221. "conflict": {
  4222. "symfony/string": "<7.1"
  4223. },
  4224. "require-dev": {
  4225. "symfony/filesystem": "^6.4|^7.0",
  4226. "symfony/var-exporter": "^6.4|^7.0"
  4227. },
  4228. "type": "library",
  4229. "autoload": {
  4230. "psr-4": {
  4231. "Symfony\\Component\\Intl\\": ""
  4232. },
  4233. "exclude-from-classmap": [
  4234. "/Tests/",
  4235. "/Resources/data/"
  4236. ]
  4237. },
  4238. "notification-url": "https://packagist.org/downloads/",
  4239. "license": [
  4240. "MIT"
  4241. ],
  4242. "authors": [
  4243. {
  4244. "name": "Bernhard Schussek",
  4245. "email": "bschussek@gmail.com"
  4246. },
  4247. {
  4248. "name": "Eriksen Costa",
  4249. "email": "eriksen.costa@infranology.com.br"
  4250. },
  4251. {
  4252. "name": "Igor Wiedler",
  4253. "email": "igor@wiedler.ch"
  4254. },
  4255. {
  4256. "name": "Symfony Community",
  4257. "homepage": "https://symfony.com/contributors"
  4258. }
  4259. ],
  4260. "description": "Provides access to the localization data of the ICU library",
  4261. "homepage": "https://symfony.com",
  4262. "keywords": [
  4263. "i18n",
  4264. "icu",
  4265. "internationalization",
  4266. "intl",
  4267. "l10n",
  4268. "localization"
  4269. ],
  4270. "support": {
  4271. "source": "https://github.com/symfony/intl/tree/v7.3.1"
  4272. },
  4273. "funding": [
  4274. {
  4275. "url": "https://symfony.com/sponsor",
  4276. "type": "custom"
  4277. },
  4278. {
  4279. "url": "https://github.com/fabpot",
  4280. "type": "github"
  4281. },
  4282. {
  4283. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4284. "type": "tidelift"
  4285. }
  4286. ],
  4287. "time": "2025-06-06T16:10:07+00:00"
  4288. },
  4289. {
  4290. "name": "symfony/mailer",
  4291. "version": "v7.3.1",
  4292. "source": {
  4293. "type": "git",
  4294. "url": "https://github.com/symfony/mailer.git",
  4295. "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368"
  4296. },
  4297. "dist": {
  4298. "type": "zip",
  4299. "url": "https://api.github.com/repos/symfony/mailer/zipball/b5db5105b290bdbea5ab27b89c69effcf1cb3368",
  4300. "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368",
  4301. "shasum": ""
  4302. },
  4303. "require": {
  4304. "egulias/email-validator": "^2.1.10|^3|^4",
  4305. "php": ">=8.2",
  4306. "psr/event-dispatcher": "^1",
  4307. "psr/log": "^1|^2|^3",
  4308. "symfony/event-dispatcher": "^6.4|^7.0",
  4309. "symfony/mime": "^7.2",
  4310. "symfony/service-contracts": "^2.5|^3"
  4311. },
  4312. "conflict": {
  4313. "symfony/http-client-contracts": "<2.5",
  4314. "symfony/http-kernel": "<6.4",
  4315. "symfony/messenger": "<6.4",
  4316. "symfony/mime": "<6.4",
  4317. "symfony/twig-bridge": "<6.4"
  4318. },
  4319. "require-dev": {
  4320. "symfony/console": "^6.4|^7.0",
  4321. "symfony/http-client": "^6.4|^7.0",
  4322. "symfony/messenger": "^6.4|^7.0",
  4323. "symfony/twig-bridge": "^6.4|^7.0"
  4324. },
  4325. "type": "library",
  4326. "autoload": {
  4327. "psr-4": {
  4328. "Symfony\\Component\\Mailer\\": ""
  4329. },
  4330. "exclude-from-classmap": [
  4331. "/Tests/"
  4332. ]
  4333. },
  4334. "notification-url": "https://packagist.org/downloads/",
  4335. "license": [
  4336. "MIT"
  4337. ],
  4338. "authors": [
  4339. {
  4340. "name": "Fabien Potencier",
  4341. "email": "fabien@symfony.com"
  4342. },
  4343. {
  4344. "name": "Symfony Community",
  4345. "homepage": "https://symfony.com/contributors"
  4346. }
  4347. ],
  4348. "description": "Helps sending emails",
  4349. "homepage": "https://symfony.com",
  4350. "support": {
  4351. "source": "https://github.com/symfony/mailer/tree/v7.3.1"
  4352. },
  4353. "funding": [
  4354. {
  4355. "url": "https://symfony.com/sponsor",
  4356. "type": "custom"
  4357. },
  4358. {
  4359. "url": "https://github.com/fabpot",
  4360. "type": "github"
  4361. },
  4362. {
  4363. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4364. "type": "tidelift"
  4365. }
  4366. ],
  4367. "time": "2025-06-27T19:55:54+00:00"
  4368. },
  4369. {
  4370. "name": "symfony/messenger",
  4371. "version": "v7.3.1",
  4372. "source": {
  4373. "type": "git",
  4374. "url": "https://github.com/symfony/messenger.git",
  4375. "reference": "716c89b86ce58c4946d436d862694971c999d1aa"
  4376. },
  4377. "dist": {
  4378. "type": "zip",
  4379. "url": "https://api.github.com/repos/symfony/messenger/zipball/716c89b86ce58c4946d436d862694971c999d1aa",
  4380. "reference": "716c89b86ce58c4946d436d862694971c999d1aa",
  4381. "shasum": ""
  4382. },
  4383. "require": {
  4384. "php": ">=8.2",
  4385. "psr/log": "^1|^2|^3",
  4386. "symfony/clock": "^6.4|^7.0",
  4387. "symfony/deprecation-contracts": "^2.5|^3"
  4388. },
  4389. "conflict": {
  4390. "symfony/console": "<7.2",
  4391. "symfony/event-dispatcher": "<6.4",
  4392. "symfony/event-dispatcher-contracts": "<2.5",
  4393. "symfony/framework-bundle": "<6.4",
  4394. "symfony/http-kernel": "<6.4",
  4395. "symfony/lock": "<6.4",
  4396. "symfony/serializer": "<6.4"
  4397. },
  4398. "require-dev": {
  4399. "psr/cache": "^1.0|^2.0|^3.0",
  4400. "symfony/console": "^7.2",
  4401. "symfony/dependency-injection": "^6.4|^7.0",
  4402. "symfony/event-dispatcher": "^6.4|^7.0",
  4403. "symfony/http-kernel": "^6.4|^7.0",
  4404. "symfony/lock": "^6.4|^7.0",
  4405. "symfony/process": "^6.4|^7.0",
  4406. "symfony/property-access": "^6.4|^7.0",
  4407. "symfony/rate-limiter": "^6.4|^7.0",
  4408. "symfony/routing": "^6.4|^7.0",
  4409. "symfony/serializer": "^6.4|^7.0",
  4410. "symfony/service-contracts": "^2.5|^3",
  4411. "symfony/stopwatch": "^6.4|^7.0",
  4412. "symfony/validator": "^6.4|^7.0"
  4413. },
  4414. "type": "library",
  4415. "autoload": {
  4416. "psr-4": {
  4417. "Symfony\\Component\\Messenger\\": ""
  4418. },
  4419. "exclude-from-classmap": [
  4420. "/Tests/"
  4421. ]
  4422. },
  4423. "notification-url": "https://packagist.org/downloads/",
  4424. "license": [
  4425. "MIT"
  4426. ],
  4427. "authors": [
  4428. {
  4429. "name": "Samuel Roze",
  4430. "email": "samuel.roze@gmail.com"
  4431. },
  4432. {
  4433. "name": "Symfony Community",
  4434. "homepage": "https://symfony.com/contributors"
  4435. }
  4436. ],
  4437. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  4438. "homepage": "https://symfony.com",
  4439. "support": {
  4440. "source": "https://github.com/symfony/messenger/tree/v7.3.1"
  4441. },
  4442. "funding": [
  4443. {
  4444. "url": "https://symfony.com/sponsor",
  4445. "type": "custom"
  4446. },
  4447. {
  4448. "url": "https://github.com/fabpot",
  4449. "type": "github"
  4450. },
  4451. {
  4452. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4453. "type": "tidelift"
  4454. }
  4455. ],
  4456. "time": "2025-06-27T19:55:54+00:00"
  4457. },
  4458. {
  4459. "name": "symfony/mime",
  4460. "version": "v7.3.0",
  4461. "source": {
  4462. "type": "git",
  4463. "url": "https://github.com/symfony/mime.git",
  4464. "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9"
  4465. },
  4466. "dist": {
  4467. "type": "zip",
  4468. "url": "https://api.github.com/repos/symfony/mime/zipball/0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
  4469. "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
  4470. "shasum": ""
  4471. },
  4472. "require": {
  4473. "php": ">=8.2",
  4474. "symfony/polyfill-intl-idn": "^1.10",
  4475. "symfony/polyfill-mbstring": "^1.0"
  4476. },
  4477. "conflict": {
  4478. "egulias/email-validator": "~3.0.0",
  4479. "phpdocumentor/reflection-docblock": "<3.2.2",
  4480. "phpdocumentor/type-resolver": "<1.4.0",
  4481. "symfony/mailer": "<6.4",
  4482. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  4483. },
  4484. "require-dev": {
  4485. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4486. "league/html-to-markdown": "^5.0",
  4487. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4488. "symfony/dependency-injection": "^6.4|^7.0",
  4489. "symfony/process": "^6.4|^7.0",
  4490. "symfony/property-access": "^6.4|^7.0",
  4491. "symfony/property-info": "^6.4|^7.0",
  4492. "symfony/serializer": "^6.4.3|^7.0.3"
  4493. },
  4494. "type": "library",
  4495. "autoload": {
  4496. "psr-4": {
  4497. "Symfony\\Component\\Mime\\": ""
  4498. },
  4499. "exclude-from-classmap": [
  4500. "/Tests/"
  4501. ]
  4502. },
  4503. "notification-url": "https://packagist.org/downloads/",
  4504. "license": [
  4505. "MIT"
  4506. ],
  4507. "authors": [
  4508. {
  4509. "name": "Fabien Potencier",
  4510. "email": "fabien@symfony.com"
  4511. },
  4512. {
  4513. "name": "Symfony Community",
  4514. "homepage": "https://symfony.com/contributors"
  4515. }
  4516. ],
  4517. "description": "Allows manipulating MIME messages",
  4518. "homepage": "https://symfony.com",
  4519. "keywords": [
  4520. "mime",
  4521. "mime-type"
  4522. ],
  4523. "support": {
  4524. "source": "https://github.com/symfony/mime/tree/v7.3.0"
  4525. },
  4526. "funding": [
  4527. {
  4528. "url": "https://symfony.com/sponsor",
  4529. "type": "custom"
  4530. },
  4531. {
  4532. "url": "https://github.com/fabpot",
  4533. "type": "github"
  4534. },
  4535. {
  4536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4537. "type": "tidelift"
  4538. }
  4539. ],
  4540. "time": "2025-02-19T08:51:26+00:00"
  4541. },
  4542. {
  4543. "name": "symfony/monolog-bridge",
  4544. "version": "v7.3.0",
  4545. "source": {
  4546. "type": "git",
  4547. "url": "https://github.com/symfony/monolog-bridge.git",
  4548. "reference": "1b188c8abbbef25b111da878797514b7a8d33990"
  4549. },
  4550. "dist": {
  4551. "type": "zip",
  4552. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/1b188c8abbbef25b111da878797514b7a8d33990",
  4553. "reference": "1b188c8abbbef25b111da878797514b7a8d33990",
  4554. "shasum": ""
  4555. },
  4556. "require": {
  4557. "monolog/monolog": "^3",
  4558. "php": ">=8.2",
  4559. "symfony/http-kernel": "^6.4|^7.0",
  4560. "symfony/service-contracts": "^2.5|^3"
  4561. },
  4562. "conflict": {
  4563. "symfony/console": "<6.4",
  4564. "symfony/http-foundation": "<6.4",
  4565. "symfony/security-core": "<6.4"
  4566. },
  4567. "require-dev": {
  4568. "symfony/console": "^6.4|^7.0",
  4569. "symfony/http-client": "^6.4|^7.0",
  4570. "symfony/mailer": "^6.4|^7.0",
  4571. "symfony/messenger": "^6.4|^7.0",
  4572. "symfony/mime": "^6.4|^7.0",
  4573. "symfony/security-core": "^6.4|^7.0",
  4574. "symfony/var-dumper": "^6.4|^7.0"
  4575. },
  4576. "type": "symfony-bridge",
  4577. "autoload": {
  4578. "psr-4": {
  4579. "Symfony\\Bridge\\Monolog\\": ""
  4580. },
  4581. "exclude-from-classmap": [
  4582. "/Tests/"
  4583. ]
  4584. },
  4585. "notification-url": "https://packagist.org/downloads/",
  4586. "license": [
  4587. "MIT"
  4588. ],
  4589. "authors": [
  4590. {
  4591. "name": "Fabien Potencier",
  4592. "email": "fabien@symfony.com"
  4593. },
  4594. {
  4595. "name": "Symfony Community",
  4596. "homepage": "https://symfony.com/contributors"
  4597. }
  4598. ],
  4599. "description": "Provides integration for Monolog with various Symfony components",
  4600. "homepage": "https://symfony.com",
  4601. "support": {
  4602. "source": "https://github.com/symfony/monolog-bridge/tree/v7.3.0"
  4603. },
  4604. "funding": [
  4605. {
  4606. "url": "https://symfony.com/sponsor",
  4607. "type": "custom"
  4608. },
  4609. {
  4610. "url": "https://github.com/fabpot",
  4611. "type": "github"
  4612. },
  4613. {
  4614. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4615. "type": "tidelift"
  4616. }
  4617. ],
  4618. "time": "2025-03-21T12:17:46+00:00"
  4619. },
  4620. {
  4621. "name": "symfony/monolog-bundle",
  4622. "version": "v3.10.0",
  4623. "source": {
  4624. "type": "git",
  4625. "url": "https://github.com/symfony/monolog-bundle.git",
  4626. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  4627. },
  4628. "dist": {
  4629. "type": "zip",
  4630. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  4631. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  4632. "shasum": ""
  4633. },
  4634. "require": {
  4635. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  4636. "php": ">=7.2.5",
  4637. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  4638. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  4639. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  4640. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  4641. },
  4642. "require-dev": {
  4643. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  4644. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  4645. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  4646. },
  4647. "type": "symfony-bundle",
  4648. "extra": {
  4649. "branch-alias": {
  4650. "dev-master": "3.x-dev"
  4651. }
  4652. },
  4653. "autoload": {
  4654. "psr-4": {
  4655. "Symfony\\Bundle\\MonologBundle\\": ""
  4656. },
  4657. "exclude-from-classmap": [
  4658. "/Tests/"
  4659. ]
  4660. },
  4661. "notification-url": "https://packagist.org/downloads/",
  4662. "license": [
  4663. "MIT"
  4664. ],
  4665. "authors": [
  4666. {
  4667. "name": "Fabien Potencier",
  4668. "email": "fabien@symfony.com"
  4669. },
  4670. {
  4671. "name": "Symfony Community",
  4672. "homepage": "https://symfony.com/contributors"
  4673. }
  4674. ],
  4675. "description": "Symfony MonologBundle",
  4676. "homepage": "https://symfony.com",
  4677. "keywords": [
  4678. "log",
  4679. "logging"
  4680. ],
  4681. "support": {
  4682. "issues": "https://github.com/symfony/monolog-bundle/issues",
  4683. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  4684. },
  4685. "funding": [
  4686. {
  4687. "url": "https://symfony.com/sponsor",
  4688. "type": "custom"
  4689. },
  4690. {
  4691. "url": "https://github.com/fabpot",
  4692. "type": "github"
  4693. },
  4694. {
  4695. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4696. "type": "tidelift"
  4697. }
  4698. ],
  4699. "time": "2023-11-06T17:08:13+00:00"
  4700. },
  4701. {
  4702. "name": "symfony/notifier",
  4703. "version": "v7.3.0",
  4704. "source": {
  4705. "type": "git",
  4706. "url": "https://github.com/symfony/notifier.git",
  4707. "reference": "9e68a3266c8b0381f8756022b1c1ba3c0264416e"
  4708. },
  4709. "dist": {
  4710. "type": "zip",
  4711. "url": "https://api.github.com/repos/symfony/notifier/zipball/9e68a3266c8b0381f8756022b1c1ba3c0264416e",
  4712. "reference": "9e68a3266c8b0381f8756022b1c1ba3c0264416e",
  4713. "shasum": ""
  4714. },
  4715. "require": {
  4716. "php": ">=8.2",
  4717. "psr/log": "^1|^2|^3"
  4718. },
  4719. "conflict": {
  4720. "symfony/event-dispatcher": "<6.4",
  4721. "symfony/event-dispatcher-contracts": "<2.5",
  4722. "symfony/http-client-contracts": "<2.5",
  4723. "symfony/http-kernel": "<6.4"
  4724. },
  4725. "require-dev": {
  4726. "symfony/event-dispatcher-contracts": "^2.5|^3",
  4727. "symfony/http-client-contracts": "^2.5|^3",
  4728. "symfony/http-foundation": "^6.4|^7.0",
  4729. "symfony/messenger": "^6.4|^7.0"
  4730. },
  4731. "type": "library",
  4732. "autoload": {
  4733. "psr-4": {
  4734. "Symfony\\Component\\Notifier\\": ""
  4735. },
  4736. "exclude-from-classmap": [
  4737. "/Tests/"
  4738. ]
  4739. },
  4740. "notification-url": "https://packagist.org/downloads/",
  4741. "license": [
  4742. "MIT"
  4743. ],
  4744. "authors": [
  4745. {
  4746. "name": "Fabien Potencier",
  4747. "email": "fabien@symfony.com"
  4748. },
  4749. {
  4750. "name": "Symfony Community",
  4751. "homepage": "https://symfony.com/contributors"
  4752. }
  4753. ],
  4754. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  4755. "homepage": "https://symfony.com",
  4756. "keywords": [
  4757. "notification",
  4758. "notifier"
  4759. ],
  4760. "support": {
  4761. "source": "https://github.com/symfony/notifier/tree/v7.3.0"
  4762. },
  4763. "funding": [
  4764. {
  4765. "url": "https://symfony.com/sponsor",
  4766. "type": "custom"
  4767. },
  4768. {
  4769. "url": "https://github.com/fabpot",
  4770. "type": "github"
  4771. },
  4772. {
  4773. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4774. "type": "tidelift"
  4775. }
  4776. ],
  4777. "time": "2025-05-01T12:12:53+00:00"
  4778. },
  4779. {
  4780. "name": "symfony/options-resolver",
  4781. "version": "v7.3.0",
  4782. "source": {
  4783. "type": "git",
  4784. "url": "https://github.com/symfony/options-resolver.git",
  4785. "reference": "afb9a8038025e5dbc657378bfab9198d75f10fca"
  4786. },
  4787. "dist": {
  4788. "type": "zip",
  4789. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/afb9a8038025e5dbc657378bfab9198d75f10fca",
  4790. "reference": "afb9a8038025e5dbc657378bfab9198d75f10fca",
  4791. "shasum": ""
  4792. },
  4793. "require": {
  4794. "php": ">=8.2",
  4795. "symfony/deprecation-contracts": "^2.5|^3"
  4796. },
  4797. "type": "library",
  4798. "autoload": {
  4799. "psr-4": {
  4800. "Symfony\\Component\\OptionsResolver\\": ""
  4801. },
  4802. "exclude-from-classmap": [
  4803. "/Tests/"
  4804. ]
  4805. },
  4806. "notification-url": "https://packagist.org/downloads/",
  4807. "license": [
  4808. "MIT"
  4809. ],
  4810. "authors": [
  4811. {
  4812. "name": "Fabien Potencier",
  4813. "email": "fabien@symfony.com"
  4814. },
  4815. {
  4816. "name": "Symfony Community",
  4817. "homepage": "https://symfony.com/contributors"
  4818. }
  4819. ],
  4820. "description": "Provides an improved replacement for the array_replace PHP function",
  4821. "homepage": "https://symfony.com",
  4822. "keywords": [
  4823. "config",
  4824. "configuration",
  4825. "options"
  4826. ],
  4827. "support": {
  4828. "source": "https://github.com/symfony/options-resolver/tree/v7.3.0"
  4829. },
  4830. "funding": [
  4831. {
  4832. "url": "https://symfony.com/sponsor",
  4833. "type": "custom"
  4834. },
  4835. {
  4836. "url": "https://github.com/fabpot",
  4837. "type": "github"
  4838. },
  4839. {
  4840. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4841. "type": "tidelift"
  4842. }
  4843. ],
  4844. "time": "2025-04-04T13:12:05+00:00"
  4845. },
  4846. {
  4847. "name": "symfony/password-hasher",
  4848. "version": "v7.3.0",
  4849. "source": {
  4850. "type": "git",
  4851. "url": "https://github.com/symfony/password-hasher.git",
  4852. "reference": "31fbe66af859582a20b803f38be96be8accdf2c3"
  4853. },
  4854. "dist": {
  4855. "type": "zip",
  4856. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/31fbe66af859582a20b803f38be96be8accdf2c3",
  4857. "reference": "31fbe66af859582a20b803f38be96be8accdf2c3",
  4858. "shasum": ""
  4859. },
  4860. "require": {
  4861. "php": ">=8.2"
  4862. },
  4863. "conflict": {
  4864. "symfony/security-core": "<6.4"
  4865. },
  4866. "require-dev": {
  4867. "symfony/console": "^6.4|^7.0",
  4868. "symfony/security-core": "^6.4|^7.0"
  4869. },
  4870. "type": "library",
  4871. "autoload": {
  4872. "psr-4": {
  4873. "Symfony\\Component\\PasswordHasher\\": ""
  4874. },
  4875. "exclude-from-classmap": [
  4876. "/Tests/"
  4877. ]
  4878. },
  4879. "notification-url": "https://packagist.org/downloads/",
  4880. "license": [
  4881. "MIT"
  4882. ],
  4883. "authors": [
  4884. {
  4885. "name": "Robin Chalas",
  4886. "email": "robin.chalas@gmail.com"
  4887. },
  4888. {
  4889. "name": "Symfony Community",
  4890. "homepage": "https://symfony.com/contributors"
  4891. }
  4892. ],
  4893. "description": "Provides password hashing utilities",
  4894. "homepage": "https://symfony.com",
  4895. "keywords": [
  4896. "hashing",
  4897. "password"
  4898. ],
  4899. "support": {
  4900. "source": "https://github.com/symfony/password-hasher/tree/v7.3.0"
  4901. },
  4902. "funding": [
  4903. {
  4904. "url": "https://symfony.com/sponsor",
  4905. "type": "custom"
  4906. },
  4907. {
  4908. "url": "https://github.com/fabpot",
  4909. "type": "github"
  4910. },
  4911. {
  4912. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4913. "type": "tidelift"
  4914. }
  4915. ],
  4916. "time": "2025-02-04T08:22:58+00:00"
  4917. },
  4918. {
  4919. "name": "symfony/polyfill-intl-grapheme",
  4920. "version": "v1.32.0",
  4921. "source": {
  4922. "type": "git",
  4923. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4924. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  4925. },
  4926. "dist": {
  4927. "type": "zip",
  4928. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  4929. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  4930. "shasum": ""
  4931. },
  4932. "require": {
  4933. "php": ">=7.2"
  4934. },
  4935. "suggest": {
  4936. "ext-intl": "For best performance"
  4937. },
  4938. "type": "library",
  4939. "extra": {
  4940. "thanks": {
  4941. "url": "https://github.com/symfony/polyfill",
  4942. "name": "symfony/polyfill"
  4943. }
  4944. },
  4945. "autoload": {
  4946. "files": [
  4947. "bootstrap.php"
  4948. ],
  4949. "psr-4": {
  4950. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4951. }
  4952. },
  4953. "notification-url": "https://packagist.org/downloads/",
  4954. "license": [
  4955. "MIT"
  4956. ],
  4957. "authors": [
  4958. {
  4959. "name": "Nicolas Grekas",
  4960. "email": "p@tchwork.com"
  4961. },
  4962. {
  4963. "name": "Symfony Community",
  4964. "homepage": "https://symfony.com/contributors"
  4965. }
  4966. ],
  4967. "description": "Symfony polyfill for intl's grapheme_* functions",
  4968. "homepage": "https://symfony.com",
  4969. "keywords": [
  4970. "compatibility",
  4971. "grapheme",
  4972. "intl",
  4973. "polyfill",
  4974. "portable",
  4975. "shim"
  4976. ],
  4977. "support": {
  4978. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
  4979. },
  4980. "funding": [
  4981. {
  4982. "url": "https://symfony.com/sponsor",
  4983. "type": "custom"
  4984. },
  4985. {
  4986. "url": "https://github.com/fabpot",
  4987. "type": "github"
  4988. },
  4989. {
  4990. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4991. "type": "tidelift"
  4992. }
  4993. ],
  4994. "time": "2024-09-09T11:45:10+00:00"
  4995. },
  4996. {
  4997. "name": "symfony/polyfill-intl-icu",
  4998. "version": "v1.32.0",
  4999. "source": {
  5000. "type": "git",
  5001. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5002. "reference": "763d2a91fea5681509ca01acbc1c5e450d127811"
  5003. },
  5004. "dist": {
  5005. "type": "zip",
  5006. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/763d2a91fea5681509ca01acbc1c5e450d127811",
  5007. "reference": "763d2a91fea5681509ca01acbc1c5e450d127811",
  5008. "shasum": ""
  5009. },
  5010. "require": {
  5011. "php": ">=7.2"
  5012. },
  5013. "suggest": {
  5014. "ext-intl": "For best performance and support of other locales than \"en\""
  5015. },
  5016. "type": "library",
  5017. "extra": {
  5018. "thanks": {
  5019. "url": "https://github.com/symfony/polyfill",
  5020. "name": "symfony/polyfill"
  5021. }
  5022. },
  5023. "autoload": {
  5024. "files": [
  5025. "bootstrap.php"
  5026. ],
  5027. "psr-4": {
  5028. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5029. },
  5030. "classmap": [
  5031. "Resources/stubs"
  5032. ],
  5033. "exclude-from-classmap": [
  5034. "/Tests/"
  5035. ]
  5036. },
  5037. "notification-url": "https://packagist.org/downloads/",
  5038. "license": [
  5039. "MIT"
  5040. ],
  5041. "authors": [
  5042. {
  5043. "name": "Nicolas Grekas",
  5044. "email": "p@tchwork.com"
  5045. },
  5046. {
  5047. "name": "Symfony Community",
  5048. "homepage": "https://symfony.com/contributors"
  5049. }
  5050. ],
  5051. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5052. "homepage": "https://symfony.com",
  5053. "keywords": [
  5054. "compatibility",
  5055. "icu",
  5056. "intl",
  5057. "polyfill",
  5058. "portable",
  5059. "shim"
  5060. ],
  5061. "support": {
  5062. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.32.0"
  5063. },
  5064. "funding": [
  5065. {
  5066. "url": "https://symfony.com/sponsor",
  5067. "type": "custom"
  5068. },
  5069. {
  5070. "url": "https://github.com/fabpot",
  5071. "type": "github"
  5072. },
  5073. {
  5074. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5075. "type": "tidelift"
  5076. }
  5077. ],
  5078. "time": "2024-12-21T18:38:29+00:00"
  5079. },
  5080. {
  5081. "name": "symfony/polyfill-intl-idn",
  5082. "version": "v1.32.0",
  5083. "source": {
  5084. "type": "git",
  5085. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5086. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  5087. },
  5088. "dist": {
  5089. "type": "zip",
  5090. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  5091. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  5092. "shasum": ""
  5093. },
  5094. "require": {
  5095. "php": ">=7.2",
  5096. "symfony/polyfill-intl-normalizer": "^1.10"
  5097. },
  5098. "suggest": {
  5099. "ext-intl": "For best performance"
  5100. },
  5101. "type": "library",
  5102. "extra": {
  5103. "thanks": {
  5104. "url": "https://github.com/symfony/polyfill",
  5105. "name": "symfony/polyfill"
  5106. }
  5107. },
  5108. "autoload": {
  5109. "files": [
  5110. "bootstrap.php"
  5111. ],
  5112. "psr-4": {
  5113. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5114. }
  5115. },
  5116. "notification-url": "https://packagist.org/downloads/",
  5117. "license": [
  5118. "MIT"
  5119. ],
  5120. "authors": [
  5121. {
  5122. "name": "Laurent Bassin",
  5123. "email": "laurent@bassin.info"
  5124. },
  5125. {
  5126. "name": "Trevor Rowbotham",
  5127. "email": "trevor.rowbotham@pm.me"
  5128. },
  5129. {
  5130. "name": "Symfony Community",
  5131. "homepage": "https://symfony.com/contributors"
  5132. }
  5133. ],
  5134. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5135. "homepage": "https://symfony.com",
  5136. "keywords": [
  5137. "compatibility",
  5138. "idn",
  5139. "intl",
  5140. "polyfill",
  5141. "portable",
  5142. "shim"
  5143. ],
  5144. "support": {
  5145. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  5146. },
  5147. "funding": [
  5148. {
  5149. "url": "https://symfony.com/sponsor",
  5150. "type": "custom"
  5151. },
  5152. {
  5153. "url": "https://github.com/fabpot",
  5154. "type": "github"
  5155. },
  5156. {
  5157. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5158. "type": "tidelift"
  5159. }
  5160. ],
  5161. "time": "2024-09-10T14:38:51+00:00"
  5162. },
  5163. {
  5164. "name": "symfony/polyfill-intl-normalizer",
  5165. "version": "v1.32.0",
  5166. "source": {
  5167. "type": "git",
  5168. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5169. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  5170. },
  5171. "dist": {
  5172. "type": "zip",
  5173. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  5174. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  5175. "shasum": ""
  5176. },
  5177. "require": {
  5178. "php": ">=7.2"
  5179. },
  5180. "suggest": {
  5181. "ext-intl": "For best performance"
  5182. },
  5183. "type": "library",
  5184. "extra": {
  5185. "thanks": {
  5186. "url": "https://github.com/symfony/polyfill",
  5187. "name": "symfony/polyfill"
  5188. }
  5189. },
  5190. "autoload": {
  5191. "files": [
  5192. "bootstrap.php"
  5193. ],
  5194. "psr-4": {
  5195. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5196. },
  5197. "classmap": [
  5198. "Resources/stubs"
  5199. ]
  5200. },
  5201. "notification-url": "https://packagist.org/downloads/",
  5202. "license": [
  5203. "MIT"
  5204. ],
  5205. "authors": [
  5206. {
  5207. "name": "Nicolas Grekas",
  5208. "email": "p@tchwork.com"
  5209. },
  5210. {
  5211. "name": "Symfony Community",
  5212. "homepage": "https://symfony.com/contributors"
  5213. }
  5214. ],
  5215. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5216. "homepage": "https://symfony.com",
  5217. "keywords": [
  5218. "compatibility",
  5219. "intl",
  5220. "normalizer",
  5221. "polyfill",
  5222. "portable",
  5223. "shim"
  5224. ],
  5225. "support": {
  5226. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  5227. },
  5228. "funding": [
  5229. {
  5230. "url": "https://symfony.com/sponsor",
  5231. "type": "custom"
  5232. },
  5233. {
  5234. "url": "https://github.com/fabpot",
  5235. "type": "github"
  5236. },
  5237. {
  5238. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5239. "type": "tidelift"
  5240. }
  5241. ],
  5242. "time": "2024-09-09T11:45:10+00:00"
  5243. },
  5244. {
  5245. "name": "symfony/polyfill-mbstring",
  5246. "version": "v1.32.0",
  5247. "source": {
  5248. "type": "git",
  5249. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5250. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  5251. },
  5252. "dist": {
  5253. "type": "zip",
  5254. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  5255. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  5256. "shasum": ""
  5257. },
  5258. "require": {
  5259. "ext-iconv": "*",
  5260. "php": ">=7.2"
  5261. },
  5262. "provide": {
  5263. "ext-mbstring": "*"
  5264. },
  5265. "suggest": {
  5266. "ext-mbstring": "For best performance"
  5267. },
  5268. "type": "library",
  5269. "extra": {
  5270. "thanks": {
  5271. "url": "https://github.com/symfony/polyfill",
  5272. "name": "symfony/polyfill"
  5273. }
  5274. },
  5275. "autoload": {
  5276. "files": [
  5277. "bootstrap.php"
  5278. ],
  5279. "psr-4": {
  5280. "Symfony\\Polyfill\\Mbstring\\": ""
  5281. }
  5282. },
  5283. "notification-url": "https://packagist.org/downloads/",
  5284. "license": [
  5285. "MIT"
  5286. ],
  5287. "authors": [
  5288. {
  5289. "name": "Nicolas Grekas",
  5290. "email": "p@tchwork.com"
  5291. },
  5292. {
  5293. "name": "Symfony Community",
  5294. "homepage": "https://symfony.com/contributors"
  5295. }
  5296. ],
  5297. "description": "Symfony polyfill for the Mbstring extension",
  5298. "homepage": "https://symfony.com",
  5299. "keywords": [
  5300. "compatibility",
  5301. "mbstring",
  5302. "polyfill",
  5303. "portable",
  5304. "shim"
  5305. ],
  5306. "support": {
  5307. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  5308. },
  5309. "funding": [
  5310. {
  5311. "url": "https://symfony.com/sponsor",
  5312. "type": "custom"
  5313. },
  5314. {
  5315. "url": "https://github.com/fabpot",
  5316. "type": "github"
  5317. },
  5318. {
  5319. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5320. "type": "tidelift"
  5321. }
  5322. ],
  5323. "time": "2024-12-23T08:48:59+00:00"
  5324. },
  5325. {
  5326. "name": "symfony/polyfill-php83",
  5327. "version": "v1.32.0",
  5328. "source": {
  5329. "type": "git",
  5330. "url": "https://github.com/symfony/polyfill-php83.git",
  5331. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  5332. },
  5333. "dist": {
  5334. "type": "zip",
  5335. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  5336. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  5337. "shasum": ""
  5338. },
  5339. "require": {
  5340. "php": ">=7.2"
  5341. },
  5342. "type": "library",
  5343. "extra": {
  5344. "thanks": {
  5345. "url": "https://github.com/symfony/polyfill",
  5346. "name": "symfony/polyfill"
  5347. }
  5348. },
  5349. "autoload": {
  5350. "files": [
  5351. "bootstrap.php"
  5352. ],
  5353. "psr-4": {
  5354. "Symfony\\Polyfill\\Php83\\": ""
  5355. },
  5356. "classmap": [
  5357. "Resources/stubs"
  5358. ]
  5359. },
  5360. "notification-url": "https://packagist.org/downloads/",
  5361. "license": [
  5362. "MIT"
  5363. ],
  5364. "authors": [
  5365. {
  5366. "name": "Nicolas Grekas",
  5367. "email": "p@tchwork.com"
  5368. },
  5369. {
  5370. "name": "Symfony Community",
  5371. "homepage": "https://symfony.com/contributors"
  5372. }
  5373. ],
  5374. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5375. "homepage": "https://symfony.com",
  5376. "keywords": [
  5377. "compatibility",
  5378. "polyfill",
  5379. "portable",
  5380. "shim"
  5381. ],
  5382. "support": {
  5383. "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0"
  5384. },
  5385. "funding": [
  5386. {
  5387. "url": "https://symfony.com/sponsor",
  5388. "type": "custom"
  5389. },
  5390. {
  5391. "url": "https://github.com/fabpot",
  5392. "type": "github"
  5393. },
  5394. {
  5395. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5396. "type": "tidelift"
  5397. }
  5398. ],
  5399. "time": "2024-09-09T11:45:10+00:00"
  5400. },
  5401. {
  5402. "name": "symfony/polyfill-php84",
  5403. "version": "v1.32.0",
  5404. "source": {
  5405. "type": "git",
  5406. "url": "https://github.com/symfony/polyfill-php84.git",
  5407. "reference": "000df7860439609837bbe28670b0be15783b7fbf"
  5408. },
  5409. "dist": {
  5410. "type": "zip",
  5411. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/000df7860439609837bbe28670b0be15783b7fbf",
  5412. "reference": "000df7860439609837bbe28670b0be15783b7fbf",
  5413. "shasum": ""
  5414. },
  5415. "require": {
  5416. "php": ">=7.2"
  5417. },
  5418. "type": "library",
  5419. "extra": {
  5420. "thanks": {
  5421. "url": "https://github.com/symfony/polyfill",
  5422. "name": "symfony/polyfill"
  5423. }
  5424. },
  5425. "autoload": {
  5426. "files": [
  5427. "bootstrap.php"
  5428. ],
  5429. "psr-4": {
  5430. "Symfony\\Polyfill\\Php84\\": ""
  5431. },
  5432. "classmap": [
  5433. "Resources/stubs"
  5434. ]
  5435. },
  5436. "notification-url": "https://packagist.org/downloads/",
  5437. "license": [
  5438. "MIT"
  5439. ],
  5440. "authors": [
  5441. {
  5442. "name": "Nicolas Grekas",
  5443. "email": "p@tchwork.com"
  5444. },
  5445. {
  5446. "name": "Symfony Community",
  5447. "homepage": "https://symfony.com/contributors"
  5448. }
  5449. ],
  5450. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  5451. "homepage": "https://symfony.com",
  5452. "keywords": [
  5453. "compatibility",
  5454. "polyfill",
  5455. "portable",
  5456. "shim"
  5457. ],
  5458. "support": {
  5459. "source": "https://github.com/symfony/polyfill-php84/tree/v1.32.0"
  5460. },
  5461. "funding": [
  5462. {
  5463. "url": "https://symfony.com/sponsor",
  5464. "type": "custom"
  5465. },
  5466. {
  5467. "url": "https://github.com/fabpot",
  5468. "type": "github"
  5469. },
  5470. {
  5471. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5472. "type": "tidelift"
  5473. }
  5474. ],
  5475. "time": "2025-02-20T12:04:08+00:00"
  5476. },
  5477. {
  5478. "name": "symfony/polyfill-uuid",
  5479. "version": "v1.32.0",
  5480. "source": {
  5481. "type": "git",
  5482. "url": "https://github.com/symfony/polyfill-uuid.git",
  5483. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  5484. },
  5485. "dist": {
  5486. "type": "zip",
  5487. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  5488. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  5489. "shasum": ""
  5490. },
  5491. "require": {
  5492. "php": ">=7.2"
  5493. },
  5494. "provide": {
  5495. "ext-uuid": "*"
  5496. },
  5497. "suggest": {
  5498. "ext-uuid": "For best performance"
  5499. },
  5500. "type": "library",
  5501. "extra": {
  5502. "thanks": {
  5503. "url": "https://github.com/symfony/polyfill",
  5504. "name": "symfony/polyfill"
  5505. }
  5506. },
  5507. "autoload": {
  5508. "files": [
  5509. "bootstrap.php"
  5510. ],
  5511. "psr-4": {
  5512. "Symfony\\Polyfill\\Uuid\\": ""
  5513. }
  5514. },
  5515. "notification-url": "https://packagist.org/downloads/",
  5516. "license": [
  5517. "MIT"
  5518. ],
  5519. "authors": [
  5520. {
  5521. "name": "Grégoire Pineau",
  5522. "email": "lyrixx@lyrixx.info"
  5523. },
  5524. {
  5525. "name": "Symfony Community",
  5526. "homepage": "https://symfony.com/contributors"
  5527. }
  5528. ],
  5529. "description": "Symfony polyfill for uuid functions",
  5530. "homepage": "https://symfony.com",
  5531. "keywords": [
  5532. "compatibility",
  5533. "polyfill",
  5534. "portable",
  5535. "uuid"
  5536. ],
  5537. "support": {
  5538. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.32.0"
  5539. },
  5540. "funding": [
  5541. {
  5542. "url": "https://symfony.com/sponsor",
  5543. "type": "custom"
  5544. },
  5545. {
  5546. "url": "https://github.com/fabpot",
  5547. "type": "github"
  5548. },
  5549. {
  5550. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5551. "type": "tidelift"
  5552. }
  5553. ],
  5554. "time": "2024-09-09T11:45:10+00:00"
  5555. },
  5556. {
  5557. "name": "symfony/process",
  5558. "version": "v7.3.0",
  5559. "source": {
  5560. "type": "git",
  5561. "url": "https://github.com/symfony/process.git",
  5562. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af"
  5563. },
  5564. "dist": {
  5565. "type": "zip",
  5566. "url": "https://api.github.com/repos/symfony/process/zipball/40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  5567. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  5568. "shasum": ""
  5569. },
  5570. "require": {
  5571. "php": ">=8.2"
  5572. },
  5573. "type": "library",
  5574. "autoload": {
  5575. "psr-4": {
  5576. "Symfony\\Component\\Process\\": ""
  5577. },
  5578. "exclude-from-classmap": [
  5579. "/Tests/"
  5580. ]
  5581. },
  5582. "notification-url": "https://packagist.org/downloads/",
  5583. "license": [
  5584. "MIT"
  5585. ],
  5586. "authors": [
  5587. {
  5588. "name": "Fabien Potencier",
  5589. "email": "fabien@symfony.com"
  5590. },
  5591. {
  5592. "name": "Symfony Community",
  5593. "homepage": "https://symfony.com/contributors"
  5594. }
  5595. ],
  5596. "description": "Executes commands in sub-processes",
  5597. "homepage": "https://symfony.com",
  5598. "support": {
  5599. "source": "https://github.com/symfony/process/tree/v7.3.0"
  5600. },
  5601. "funding": [
  5602. {
  5603. "url": "https://symfony.com/sponsor",
  5604. "type": "custom"
  5605. },
  5606. {
  5607. "url": "https://github.com/fabpot",
  5608. "type": "github"
  5609. },
  5610. {
  5611. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5612. "type": "tidelift"
  5613. }
  5614. ],
  5615. "time": "2025-04-17T09:11:12+00:00"
  5616. },
  5617. {
  5618. "name": "symfony/property-access",
  5619. "version": "v7.3.1",
  5620. "source": {
  5621. "type": "git",
  5622. "url": "https://github.com/symfony/property-access.git",
  5623. "reference": "518d15c8cca726ebe665dcd7154074584cf862e8"
  5624. },
  5625. "dist": {
  5626. "type": "zip",
  5627. "url": "https://api.github.com/repos/symfony/property-access/zipball/518d15c8cca726ebe665dcd7154074584cf862e8",
  5628. "reference": "518d15c8cca726ebe665dcd7154074584cf862e8",
  5629. "shasum": ""
  5630. },
  5631. "require": {
  5632. "php": ">=8.2",
  5633. "symfony/property-info": "^6.4|^7.0"
  5634. },
  5635. "require-dev": {
  5636. "symfony/cache": "^6.4|^7.0"
  5637. },
  5638. "type": "library",
  5639. "autoload": {
  5640. "psr-4": {
  5641. "Symfony\\Component\\PropertyAccess\\": ""
  5642. },
  5643. "exclude-from-classmap": [
  5644. "/Tests/"
  5645. ]
  5646. },
  5647. "notification-url": "https://packagist.org/downloads/",
  5648. "license": [
  5649. "MIT"
  5650. ],
  5651. "authors": [
  5652. {
  5653. "name": "Fabien Potencier",
  5654. "email": "fabien@symfony.com"
  5655. },
  5656. {
  5657. "name": "Symfony Community",
  5658. "homepage": "https://symfony.com/contributors"
  5659. }
  5660. ],
  5661. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  5662. "homepage": "https://symfony.com",
  5663. "keywords": [
  5664. "access",
  5665. "array",
  5666. "extraction",
  5667. "index",
  5668. "injection",
  5669. "object",
  5670. "property",
  5671. "property-path",
  5672. "reflection"
  5673. ],
  5674. "support": {
  5675. "source": "https://github.com/symfony/property-access/tree/v7.3.1"
  5676. },
  5677. "funding": [
  5678. {
  5679. "url": "https://symfony.com/sponsor",
  5680. "type": "custom"
  5681. },
  5682. {
  5683. "url": "https://github.com/fabpot",
  5684. "type": "github"
  5685. },
  5686. {
  5687. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5688. "type": "tidelift"
  5689. }
  5690. ],
  5691. "time": "2025-06-24T04:04:43+00:00"
  5692. },
  5693. {
  5694. "name": "symfony/property-info",
  5695. "version": "v7.3.1",
  5696. "source": {
  5697. "type": "git",
  5698. "url": "https://github.com/symfony/property-info.git",
  5699. "reference": "90586acbf2a6dd13bee4f09f09111c8bd4773970"
  5700. },
  5701. "dist": {
  5702. "type": "zip",
  5703. "url": "https://api.github.com/repos/symfony/property-info/zipball/90586acbf2a6dd13bee4f09f09111c8bd4773970",
  5704. "reference": "90586acbf2a6dd13bee4f09f09111c8bd4773970",
  5705. "shasum": ""
  5706. },
  5707. "require": {
  5708. "php": ">=8.2",
  5709. "symfony/deprecation-contracts": "^2.5|^3",
  5710. "symfony/string": "^6.4|^7.0",
  5711. "symfony/type-info": "~7.2.8|^7.3.1"
  5712. },
  5713. "conflict": {
  5714. "phpdocumentor/reflection-docblock": "<5.2",
  5715. "phpdocumentor/type-resolver": "<1.5.1",
  5716. "symfony/cache": "<6.4",
  5717. "symfony/dependency-injection": "<6.4",
  5718. "symfony/serializer": "<6.4"
  5719. },
  5720. "require-dev": {
  5721. "phpdocumentor/reflection-docblock": "^5.2",
  5722. "phpstan/phpdoc-parser": "^1.0|^2.0",
  5723. "symfony/cache": "^6.4|^7.0",
  5724. "symfony/dependency-injection": "^6.4|^7.0",
  5725. "symfony/serializer": "^6.4|^7.0"
  5726. },
  5727. "type": "library",
  5728. "autoload": {
  5729. "psr-4": {
  5730. "Symfony\\Component\\PropertyInfo\\": ""
  5731. },
  5732. "exclude-from-classmap": [
  5733. "/Tests/"
  5734. ]
  5735. },
  5736. "notification-url": "https://packagist.org/downloads/",
  5737. "license": [
  5738. "MIT"
  5739. ],
  5740. "authors": [
  5741. {
  5742. "name": "Kévin Dunglas",
  5743. "email": "dunglas@gmail.com"
  5744. },
  5745. {
  5746. "name": "Symfony Community",
  5747. "homepage": "https://symfony.com/contributors"
  5748. }
  5749. ],
  5750. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  5751. "homepage": "https://symfony.com",
  5752. "keywords": [
  5753. "doctrine",
  5754. "phpdoc",
  5755. "property",
  5756. "symfony",
  5757. "type",
  5758. "validator"
  5759. ],
  5760. "support": {
  5761. "source": "https://github.com/symfony/property-info/tree/v7.3.1"
  5762. },
  5763. "funding": [
  5764. {
  5765. "url": "https://symfony.com/sponsor",
  5766. "type": "custom"
  5767. },
  5768. {
  5769. "url": "https://github.com/fabpot",
  5770. "type": "github"
  5771. },
  5772. {
  5773. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5774. "type": "tidelift"
  5775. }
  5776. ],
  5777. "time": "2025-06-27T19:55:54+00:00"
  5778. },
  5779. {
  5780. "name": "symfony/routing",
  5781. "version": "v7.3.0",
  5782. "source": {
  5783. "type": "git",
  5784. "url": "https://github.com/symfony/routing.git",
  5785. "reference": "8e213820c5fea844ecea29203d2a308019007c15"
  5786. },
  5787. "dist": {
  5788. "type": "zip",
  5789. "url": "https://api.github.com/repos/symfony/routing/zipball/8e213820c5fea844ecea29203d2a308019007c15",
  5790. "reference": "8e213820c5fea844ecea29203d2a308019007c15",
  5791. "shasum": ""
  5792. },
  5793. "require": {
  5794. "php": ">=8.2",
  5795. "symfony/deprecation-contracts": "^2.5|^3"
  5796. },
  5797. "conflict": {
  5798. "symfony/config": "<6.4",
  5799. "symfony/dependency-injection": "<6.4",
  5800. "symfony/yaml": "<6.4"
  5801. },
  5802. "require-dev": {
  5803. "psr/log": "^1|^2|^3",
  5804. "symfony/config": "^6.4|^7.0",
  5805. "symfony/dependency-injection": "^6.4|^7.0",
  5806. "symfony/expression-language": "^6.4|^7.0",
  5807. "symfony/http-foundation": "^6.4|^7.0",
  5808. "symfony/yaml": "^6.4|^7.0"
  5809. },
  5810. "type": "library",
  5811. "autoload": {
  5812. "psr-4": {
  5813. "Symfony\\Component\\Routing\\": ""
  5814. },
  5815. "exclude-from-classmap": [
  5816. "/Tests/"
  5817. ]
  5818. },
  5819. "notification-url": "https://packagist.org/downloads/",
  5820. "license": [
  5821. "MIT"
  5822. ],
  5823. "authors": [
  5824. {
  5825. "name": "Fabien Potencier",
  5826. "email": "fabien@symfony.com"
  5827. },
  5828. {
  5829. "name": "Symfony Community",
  5830. "homepage": "https://symfony.com/contributors"
  5831. }
  5832. ],
  5833. "description": "Maps an HTTP request to a set of configuration variables",
  5834. "homepage": "https://symfony.com",
  5835. "keywords": [
  5836. "router",
  5837. "routing",
  5838. "uri",
  5839. "url"
  5840. ],
  5841. "support": {
  5842. "source": "https://github.com/symfony/routing/tree/v7.3.0"
  5843. },
  5844. "funding": [
  5845. {
  5846. "url": "https://symfony.com/sponsor",
  5847. "type": "custom"
  5848. },
  5849. {
  5850. "url": "https://github.com/fabpot",
  5851. "type": "github"
  5852. },
  5853. {
  5854. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5855. "type": "tidelift"
  5856. }
  5857. ],
  5858. "time": "2025-05-24T20:43:28+00:00"
  5859. },
  5860. {
  5861. "name": "symfony/runtime",
  5862. "version": "v7.3.1",
  5863. "source": {
  5864. "type": "git",
  5865. "url": "https://github.com/symfony/runtime.git",
  5866. "reference": "9516056d432f8acdac9458eb41b80097da7a05c9"
  5867. },
  5868. "dist": {
  5869. "type": "zip",
  5870. "url": "https://api.github.com/repos/symfony/runtime/zipball/9516056d432f8acdac9458eb41b80097da7a05c9",
  5871. "reference": "9516056d432f8acdac9458eb41b80097da7a05c9",
  5872. "shasum": ""
  5873. },
  5874. "require": {
  5875. "composer-plugin-api": "^1.0|^2.0",
  5876. "php": ">=8.2"
  5877. },
  5878. "conflict": {
  5879. "symfony/dotenv": "<6.4"
  5880. },
  5881. "require-dev": {
  5882. "composer/composer": "^2.6",
  5883. "symfony/console": "^6.4|^7.0",
  5884. "symfony/dotenv": "^6.4|^7.0",
  5885. "symfony/http-foundation": "^6.4|^7.0",
  5886. "symfony/http-kernel": "^6.4|^7.0"
  5887. },
  5888. "type": "composer-plugin",
  5889. "extra": {
  5890. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  5891. },
  5892. "autoload": {
  5893. "psr-4": {
  5894. "Symfony\\Component\\Runtime\\": "",
  5895. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  5896. },
  5897. "exclude-from-classmap": [
  5898. "/Tests/"
  5899. ]
  5900. },
  5901. "notification-url": "https://packagist.org/downloads/",
  5902. "license": [
  5903. "MIT"
  5904. ],
  5905. "authors": [
  5906. {
  5907. "name": "Nicolas Grekas",
  5908. "email": "p@tchwork.com"
  5909. },
  5910. {
  5911. "name": "Symfony Community",
  5912. "homepage": "https://symfony.com/contributors"
  5913. }
  5914. ],
  5915. "description": "Enables decoupling PHP applications from global state",
  5916. "homepage": "https://symfony.com",
  5917. "keywords": [
  5918. "runtime"
  5919. ],
  5920. "support": {
  5921. "source": "https://github.com/symfony/runtime/tree/v7.3.1"
  5922. },
  5923. "funding": [
  5924. {
  5925. "url": "https://symfony.com/sponsor",
  5926. "type": "custom"
  5927. },
  5928. {
  5929. "url": "https://github.com/fabpot",
  5930. "type": "github"
  5931. },
  5932. {
  5933. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5934. "type": "tidelift"
  5935. }
  5936. ],
  5937. "time": "2025-06-13T07:48:40+00:00"
  5938. },
  5939. {
  5940. "name": "symfony/security-bundle",
  5941. "version": "v7.3.1",
  5942. "source": {
  5943. "type": "git",
  5944. "url": "https://github.com/symfony/security-bundle.git",
  5945. "reference": "428a281fd66c8358adc2259c8578e6d81fbb7079"
  5946. },
  5947. "dist": {
  5948. "type": "zip",
  5949. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/428a281fd66c8358adc2259c8578e6d81fbb7079",
  5950. "reference": "428a281fd66c8358adc2259c8578e6d81fbb7079",
  5951. "shasum": ""
  5952. },
  5953. "require": {
  5954. "composer-runtime-api": ">=2.1",
  5955. "ext-xml": "*",
  5956. "php": ">=8.2",
  5957. "symfony/clock": "^6.4|^7.0",
  5958. "symfony/config": "^7.3",
  5959. "symfony/dependency-injection": "^6.4.11|^7.1.4",
  5960. "symfony/event-dispatcher": "^6.4|^7.0",
  5961. "symfony/http-foundation": "^6.4|^7.0",
  5962. "symfony/http-kernel": "^6.4|^7.0",
  5963. "symfony/password-hasher": "^6.4|^7.0",
  5964. "symfony/security-core": "^7.3",
  5965. "symfony/security-csrf": "^6.4|^7.0",
  5966. "symfony/security-http": "^7.3",
  5967. "symfony/service-contracts": "^2.5|^3"
  5968. },
  5969. "conflict": {
  5970. "symfony/browser-kit": "<6.4",
  5971. "symfony/console": "<6.4",
  5972. "symfony/framework-bundle": "<6.4",
  5973. "symfony/http-client": "<6.4",
  5974. "symfony/ldap": "<6.4",
  5975. "symfony/serializer": "<6.4",
  5976. "symfony/twig-bundle": "<6.4",
  5977. "symfony/validator": "<6.4"
  5978. },
  5979. "require-dev": {
  5980. "symfony/asset": "^6.4|^7.0",
  5981. "symfony/browser-kit": "^6.4|^7.0",
  5982. "symfony/console": "^6.4|^7.0",
  5983. "symfony/css-selector": "^6.4|^7.0",
  5984. "symfony/dom-crawler": "^6.4|^7.0",
  5985. "symfony/expression-language": "^6.4|^7.0",
  5986. "symfony/form": "^6.4|^7.0",
  5987. "symfony/framework-bundle": "^6.4|^7.0",
  5988. "symfony/http-client": "^6.4|^7.0",
  5989. "symfony/ldap": "^6.4|^7.0",
  5990. "symfony/process": "^6.4|^7.0",
  5991. "symfony/rate-limiter": "^6.4|^7.0",
  5992. "symfony/serializer": "^6.4|^7.0",
  5993. "symfony/translation": "^6.4|^7.0",
  5994. "symfony/twig-bridge": "^6.4|^7.0",
  5995. "symfony/twig-bundle": "^6.4|^7.0",
  5996. "symfony/validator": "^6.4|^7.0",
  5997. "symfony/yaml": "^6.4|^7.0",
  5998. "twig/twig": "^3.12",
  5999. "web-token/jwt-library": "^3.3.2|^4.0"
  6000. },
  6001. "type": "symfony-bundle",
  6002. "autoload": {
  6003. "psr-4": {
  6004. "Symfony\\Bundle\\SecurityBundle\\": ""
  6005. },
  6006. "exclude-from-classmap": [
  6007. "/Tests/"
  6008. ]
  6009. },
  6010. "notification-url": "https://packagist.org/downloads/",
  6011. "license": [
  6012. "MIT"
  6013. ],
  6014. "authors": [
  6015. {
  6016. "name": "Fabien Potencier",
  6017. "email": "fabien@symfony.com"
  6018. },
  6019. {
  6020. "name": "Symfony Community",
  6021. "homepage": "https://symfony.com/contributors"
  6022. }
  6023. ],
  6024. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6025. "homepage": "https://symfony.com",
  6026. "support": {
  6027. "source": "https://github.com/symfony/security-bundle/tree/v7.3.1"
  6028. },
  6029. "funding": [
  6030. {
  6031. "url": "https://symfony.com/sponsor",
  6032. "type": "custom"
  6033. },
  6034. {
  6035. "url": "https://github.com/fabpot",
  6036. "type": "github"
  6037. },
  6038. {
  6039. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6040. "type": "tidelift"
  6041. }
  6042. ],
  6043. "time": "2025-06-24T04:04:43+00:00"
  6044. },
  6045. {
  6046. "name": "symfony/security-core",
  6047. "version": "v7.3.1",
  6048. "source": {
  6049. "type": "git",
  6050. "url": "https://github.com/symfony/security-core.git",
  6051. "reference": "fafab1003a31e51506e1a0a83e81c072211d81ba"
  6052. },
  6053. "dist": {
  6054. "type": "zip",
  6055. "url": "https://api.github.com/repos/symfony/security-core/zipball/fafab1003a31e51506e1a0a83e81c072211d81ba",
  6056. "reference": "fafab1003a31e51506e1a0a83e81c072211d81ba",
  6057. "shasum": ""
  6058. },
  6059. "require": {
  6060. "php": ">=8.2",
  6061. "symfony/deprecation-contracts": "^2.5|^3",
  6062. "symfony/event-dispatcher-contracts": "^2.5|^3",
  6063. "symfony/password-hasher": "^6.4|^7.0",
  6064. "symfony/service-contracts": "^2.5|^3"
  6065. },
  6066. "conflict": {
  6067. "symfony/dependency-injection": "<6.4",
  6068. "symfony/event-dispatcher": "<6.4",
  6069. "symfony/http-foundation": "<6.4",
  6070. "symfony/ldap": "<6.4",
  6071. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  6072. "symfony/validator": "<6.4"
  6073. },
  6074. "require-dev": {
  6075. "psr/cache": "^1.0|^2.0|^3.0",
  6076. "psr/container": "^1.1|^2.0",
  6077. "psr/log": "^1|^2|^3",
  6078. "symfony/cache": "^6.4|^7.0",
  6079. "symfony/dependency-injection": "^6.4|^7.0",
  6080. "symfony/event-dispatcher": "^6.4|^7.0",
  6081. "symfony/expression-language": "^6.4|^7.0",
  6082. "symfony/http-foundation": "^6.4|^7.0",
  6083. "symfony/ldap": "^6.4|^7.0",
  6084. "symfony/string": "^6.4|^7.0",
  6085. "symfony/translation": "^6.4.3|^7.0.3",
  6086. "symfony/validator": "^6.4|^7.0"
  6087. },
  6088. "type": "library",
  6089. "autoload": {
  6090. "psr-4": {
  6091. "Symfony\\Component\\Security\\Core\\": ""
  6092. },
  6093. "exclude-from-classmap": [
  6094. "/Tests/"
  6095. ]
  6096. },
  6097. "notification-url": "https://packagist.org/downloads/",
  6098. "license": [
  6099. "MIT"
  6100. ],
  6101. "authors": [
  6102. {
  6103. "name": "Fabien Potencier",
  6104. "email": "fabien@symfony.com"
  6105. },
  6106. {
  6107. "name": "Symfony Community",
  6108. "homepage": "https://symfony.com/contributors"
  6109. }
  6110. ],
  6111. "description": "Symfony Security Component - Core Library",
  6112. "homepage": "https://symfony.com",
  6113. "support": {
  6114. "source": "https://github.com/symfony/security-core/tree/v7.3.1"
  6115. },
  6116. "funding": [
  6117. {
  6118. "url": "https://symfony.com/sponsor",
  6119. "type": "custom"
  6120. },
  6121. {
  6122. "url": "https://github.com/fabpot",
  6123. "type": "github"
  6124. },
  6125. {
  6126. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6127. "type": "tidelift"
  6128. }
  6129. ],
  6130. "time": "2025-06-23T07:28:50+00:00"
  6131. },
  6132. {
  6133. "name": "symfony/security-csrf",
  6134. "version": "v7.3.0",
  6135. "source": {
  6136. "type": "git",
  6137. "url": "https://github.com/symfony/security-csrf.git",
  6138. "reference": "2b4b0c46c901729e4e90719eacd980381f53e0a3"
  6139. },
  6140. "dist": {
  6141. "type": "zip",
  6142. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/2b4b0c46c901729e4e90719eacd980381f53e0a3",
  6143. "reference": "2b4b0c46c901729e4e90719eacd980381f53e0a3",
  6144. "shasum": ""
  6145. },
  6146. "require": {
  6147. "php": ">=8.2",
  6148. "symfony/security-core": "^6.4|^7.0"
  6149. },
  6150. "conflict": {
  6151. "symfony/http-foundation": "<6.4"
  6152. },
  6153. "require-dev": {
  6154. "psr/log": "^1|^2|^3",
  6155. "symfony/http-foundation": "^6.4|^7.0",
  6156. "symfony/http-kernel": "^6.4|^7.0"
  6157. },
  6158. "type": "library",
  6159. "autoload": {
  6160. "psr-4": {
  6161. "Symfony\\Component\\Security\\Csrf\\": ""
  6162. },
  6163. "exclude-from-classmap": [
  6164. "/Tests/"
  6165. ]
  6166. },
  6167. "notification-url": "https://packagist.org/downloads/",
  6168. "license": [
  6169. "MIT"
  6170. ],
  6171. "authors": [
  6172. {
  6173. "name": "Fabien Potencier",
  6174. "email": "fabien@symfony.com"
  6175. },
  6176. {
  6177. "name": "Symfony Community",
  6178. "homepage": "https://symfony.com/contributors"
  6179. }
  6180. ],
  6181. "description": "Symfony Security Component - CSRF Library",
  6182. "homepage": "https://symfony.com",
  6183. "support": {
  6184. "source": "https://github.com/symfony/security-csrf/tree/v7.3.0"
  6185. },
  6186. "funding": [
  6187. {
  6188. "url": "https://symfony.com/sponsor",
  6189. "type": "custom"
  6190. },
  6191. {
  6192. "url": "https://github.com/fabpot",
  6193. "type": "github"
  6194. },
  6195. {
  6196. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6197. "type": "tidelift"
  6198. }
  6199. ],
  6200. "time": "2025-01-02T18:42:10+00:00"
  6201. },
  6202. {
  6203. "name": "symfony/security-http",
  6204. "version": "v7.3.1",
  6205. "source": {
  6206. "type": "git",
  6207. "url": "https://github.com/symfony/security-http.git",
  6208. "reference": "b7182ed0fd2359297f78ff6d407265168255ea84"
  6209. },
  6210. "dist": {
  6211. "type": "zip",
  6212. "url": "https://api.github.com/repos/symfony/security-http/zipball/b7182ed0fd2359297f78ff6d407265168255ea84",
  6213. "reference": "b7182ed0fd2359297f78ff6d407265168255ea84",
  6214. "shasum": ""
  6215. },
  6216. "require": {
  6217. "php": ">=8.2",
  6218. "symfony/deprecation-contracts": "^2.5|^3",
  6219. "symfony/http-foundation": "^6.4|^7.0",
  6220. "symfony/http-kernel": "^6.4|^7.0",
  6221. "symfony/polyfill-mbstring": "~1.0",
  6222. "symfony/property-access": "^6.4|^7.0",
  6223. "symfony/security-core": "^7.3",
  6224. "symfony/service-contracts": "^2.5|^3"
  6225. },
  6226. "conflict": {
  6227. "symfony/clock": "<6.4",
  6228. "symfony/event-dispatcher": "<6.4",
  6229. "symfony/http-client-contracts": "<3.0",
  6230. "symfony/security-bundle": "<6.4",
  6231. "symfony/security-csrf": "<6.4"
  6232. },
  6233. "require-dev": {
  6234. "psr/log": "^1|^2|^3",
  6235. "symfony/cache": "^6.4|^7.0",
  6236. "symfony/clock": "^6.4|^7.0",
  6237. "symfony/expression-language": "^6.4|^7.0",
  6238. "symfony/http-client": "^6.4|^7.0",
  6239. "symfony/http-client-contracts": "^3.0",
  6240. "symfony/rate-limiter": "^6.4|^7.0",
  6241. "symfony/routing": "^6.4|^7.0",
  6242. "symfony/security-csrf": "^6.4|^7.0",
  6243. "symfony/translation": "^6.4|^7.0",
  6244. "web-token/jwt-library": "^3.3.2|^4.0"
  6245. },
  6246. "type": "library",
  6247. "autoload": {
  6248. "psr-4": {
  6249. "Symfony\\Component\\Security\\Http\\": ""
  6250. },
  6251. "exclude-from-classmap": [
  6252. "/Tests/"
  6253. ]
  6254. },
  6255. "notification-url": "https://packagist.org/downloads/",
  6256. "license": [
  6257. "MIT"
  6258. ],
  6259. "authors": [
  6260. {
  6261. "name": "Fabien Potencier",
  6262. "email": "fabien@symfony.com"
  6263. },
  6264. {
  6265. "name": "Symfony Community",
  6266. "homepage": "https://symfony.com/contributors"
  6267. }
  6268. ],
  6269. "description": "Symfony Security Component - HTTP Integration",
  6270. "homepage": "https://symfony.com",
  6271. "support": {
  6272. "source": "https://github.com/symfony/security-http/tree/v7.3.1"
  6273. },
  6274. "funding": [
  6275. {
  6276. "url": "https://symfony.com/sponsor",
  6277. "type": "custom"
  6278. },
  6279. {
  6280. "url": "https://github.com/fabpot",
  6281. "type": "github"
  6282. },
  6283. {
  6284. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6285. "type": "tidelift"
  6286. }
  6287. ],
  6288. "time": "2025-06-24T04:04:43+00:00"
  6289. },
  6290. {
  6291. "name": "symfony/serializer",
  6292. "version": "v7.3.1",
  6293. "source": {
  6294. "type": "git",
  6295. "url": "https://github.com/symfony/serializer.git",
  6296. "reference": "feaf837cedbbc8287986602223175d3fd639922d"
  6297. },
  6298. "dist": {
  6299. "type": "zip",
  6300. "url": "https://api.github.com/repos/symfony/serializer/zipball/feaf837cedbbc8287986602223175d3fd639922d",
  6301. "reference": "feaf837cedbbc8287986602223175d3fd639922d",
  6302. "shasum": ""
  6303. },
  6304. "require": {
  6305. "php": ">=8.2",
  6306. "symfony/deprecation-contracts": "^2.5|^3",
  6307. "symfony/polyfill-ctype": "~1.8"
  6308. },
  6309. "conflict": {
  6310. "phpdocumentor/reflection-docblock": "<3.2.2",
  6311. "phpdocumentor/type-resolver": "<1.4.0",
  6312. "symfony/dependency-injection": "<6.4",
  6313. "symfony/property-access": "<6.4",
  6314. "symfony/property-info": "<6.4",
  6315. "symfony/uid": "<6.4",
  6316. "symfony/validator": "<6.4",
  6317. "symfony/yaml": "<6.4"
  6318. },
  6319. "require-dev": {
  6320. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6321. "phpstan/phpdoc-parser": "^1.0|^2.0",
  6322. "seld/jsonlint": "^1.10",
  6323. "symfony/cache": "^6.4|^7.0",
  6324. "symfony/config": "^6.4|^7.0",
  6325. "symfony/console": "^6.4|^7.0",
  6326. "symfony/dependency-injection": "^7.2",
  6327. "symfony/error-handler": "^6.4|^7.0",
  6328. "symfony/filesystem": "^6.4|^7.0",
  6329. "symfony/form": "^6.4|^7.0",
  6330. "symfony/http-foundation": "^6.4|^7.0",
  6331. "symfony/http-kernel": "^6.4|^7.0",
  6332. "symfony/messenger": "^6.4|^7.0",
  6333. "symfony/mime": "^6.4|^7.0",
  6334. "symfony/property-access": "^6.4|^7.0",
  6335. "symfony/property-info": "^6.4|^7.0",
  6336. "symfony/translation-contracts": "^2.5|^3",
  6337. "symfony/type-info": "^7.1",
  6338. "symfony/uid": "^6.4|^7.0",
  6339. "symfony/validator": "^6.4|^7.0",
  6340. "symfony/var-dumper": "^6.4|^7.0",
  6341. "symfony/var-exporter": "^6.4|^7.0",
  6342. "symfony/yaml": "^6.4|^7.0"
  6343. },
  6344. "type": "library",
  6345. "autoload": {
  6346. "psr-4": {
  6347. "Symfony\\Component\\Serializer\\": ""
  6348. },
  6349. "exclude-from-classmap": [
  6350. "/Tests/"
  6351. ]
  6352. },
  6353. "notification-url": "https://packagist.org/downloads/",
  6354. "license": [
  6355. "MIT"
  6356. ],
  6357. "authors": [
  6358. {
  6359. "name": "Fabien Potencier",
  6360. "email": "fabien@symfony.com"
  6361. },
  6362. {
  6363. "name": "Symfony Community",
  6364. "homepage": "https://symfony.com/contributors"
  6365. }
  6366. ],
  6367. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6368. "homepage": "https://symfony.com",
  6369. "support": {
  6370. "source": "https://github.com/symfony/serializer/tree/v7.3.1"
  6371. },
  6372. "funding": [
  6373. {
  6374. "url": "https://symfony.com/sponsor",
  6375. "type": "custom"
  6376. },
  6377. {
  6378. "url": "https://github.com/fabpot",
  6379. "type": "github"
  6380. },
  6381. {
  6382. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6383. "type": "tidelift"
  6384. }
  6385. ],
  6386. "time": "2025-06-27T19:55:54+00:00"
  6387. },
  6388. {
  6389. "name": "symfony/service-contracts",
  6390. "version": "v3.6.0",
  6391. "source": {
  6392. "type": "git",
  6393. "url": "https://github.com/symfony/service-contracts.git",
  6394. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
  6395. },
  6396. "dist": {
  6397. "type": "zip",
  6398. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  6399. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  6400. "shasum": ""
  6401. },
  6402. "require": {
  6403. "php": ">=8.1",
  6404. "psr/container": "^1.1|^2.0",
  6405. "symfony/deprecation-contracts": "^2.5|^3"
  6406. },
  6407. "conflict": {
  6408. "ext-psr": "<1.1|>=2"
  6409. },
  6410. "type": "library",
  6411. "extra": {
  6412. "thanks": {
  6413. "url": "https://github.com/symfony/contracts",
  6414. "name": "symfony/contracts"
  6415. },
  6416. "branch-alias": {
  6417. "dev-main": "3.6-dev"
  6418. }
  6419. },
  6420. "autoload": {
  6421. "psr-4": {
  6422. "Symfony\\Contracts\\Service\\": ""
  6423. },
  6424. "exclude-from-classmap": [
  6425. "/Test/"
  6426. ]
  6427. },
  6428. "notification-url": "https://packagist.org/downloads/",
  6429. "license": [
  6430. "MIT"
  6431. ],
  6432. "authors": [
  6433. {
  6434. "name": "Nicolas Grekas",
  6435. "email": "p@tchwork.com"
  6436. },
  6437. {
  6438. "name": "Symfony Community",
  6439. "homepage": "https://symfony.com/contributors"
  6440. }
  6441. ],
  6442. "description": "Generic abstractions related to writing services",
  6443. "homepage": "https://symfony.com",
  6444. "keywords": [
  6445. "abstractions",
  6446. "contracts",
  6447. "decoupling",
  6448. "interfaces",
  6449. "interoperability",
  6450. "standards"
  6451. ],
  6452. "support": {
  6453. "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
  6454. },
  6455. "funding": [
  6456. {
  6457. "url": "https://symfony.com/sponsor",
  6458. "type": "custom"
  6459. },
  6460. {
  6461. "url": "https://github.com/fabpot",
  6462. "type": "github"
  6463. },
  6464. {
  6465. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6466. "type": "tidelift"
  6467. }
  6468. ],
  6469. "time": "2025-04-25T09:37:31+00:00"
  6470. },
  6471. {
  6472. "name": "symfony/stimulus-bundle",
  6473. "version": "v2.27.0",
  6474. "source": {
  6475. "type": "git",
  6476. "url": "https://github.com/symfony/stimulus-bundle.git",
  6477. "reference": "defaeb91bd366f9f43dbe54dbdfd9bc3c4138814"
  6478. },
  6479. "dist": {
  6480. "type": "zip",
  6481. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/defaeb91bd366f9f43dbe54dbdfd9bc3c4138814",
  6482. "reference": "defaeb91bd366f9f43dbe54dbdfd9bc3c4138814",
  6483. "shasum": ""
  6484. },
  6485. "require": {
  6486. "php": ">=8.1",
  6487. "symfony/config": "^5.4|^6.0|^7.0",
  6488. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6489. "symfony/deprecation-contracts": "^2.0|^3.0",
  6490. "symfony/finder": "^5.4|^6.0|^7.0",
  6491. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6492. "twig/twig": "^2.15.3|^3.8"
  6493. },
  6494. "require-dev": {
  6495. "symfony/asset-mapper": "^6.3|^7.0",
  6496. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  6497. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  6498. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  6499. "zenstruck/browser": "^1.4"
  6500. },
  6501. "type": "symfony-bundle",
  6502. "autoload": {
  6503. "psr-4": {
  6504. "Symfony\\UX\\StimulusBundle\\": "src"
  6505. }
  6506. },
  6507. "notification-url": "https://packagist.org/downloads/",
  6508. "license": [
  6509. "MIT"
  6510. ],
  6511. "authors": [
  6512. {
  6513. "name": "Symfony Community",
  6514. "homepage": "https://symfony.com/contributors"
  6515. }
  6516. ],
  6517. "description": "Integration with your Symfony app & Stimulus!",
  6518. "keywords": [
  6519. "symfony-ux"
  6520. ],
  6521. "support": {
  6522. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.27.0"
  6523. },
  6524. "funding": [
  6525. {
  6526. "url": "https://symfony.com/sponsor",
  6527. "type": "custom"
  6528. },
  6529. {
  6530. "url": "https://github.com/fabpot",
  6531. "type": "github"
  6532. },
  6533. {
  6534. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6535. "type": "tidelift"
  6536. }
  6537. ],
  6538. "time": "2025-06-22T19:07:55+00:00"
  6539. },
  6540. {
  6541. "name": "symfony/stopwatch",
  6542. "version": "v7.3.0",
  6543. "source": {
  6544. "type": "git",
  6545. "url": "https://github.com/symfony/stopwatch.git",
  6546. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd"
  6547. },
  6548. "dist": {
  6549. "type": "zip",
  6550. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  6551. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  6552. "shasum": ""
  6553. },
  6554. "require": {
  6555. "php": ">=8.2",
  6556. "symfony/service-contracts": "^2.5|^3"
  6557. },
  6558. "type": "library",
  6559. "autoload": {
  6560. "psr-4": {
  6561. "Symfony\\Component\\Stopwatch\\": ""
  6562. },
  6563. "exclude-from-classmap": [
  6564. "/Tests/"
  6565. ]
  6566. },
  6567. "notification-url": "https://packagist.org/downloads/",
  6568. "license": [
  6569. "MIT"
  6570. ],
  6571. "authors": [
  6572. {
  6573. "name": "Fabien Potencier",
  6574. "email": "fabien@symfony.com"
  6575. },
  6576. {
  6577. "name": "Symfony Community",
  6578. "homepage": "https://symfony.com/contributors"
  6579. }
  6580. ],
  6581. "description": "Provides a way to profile code",
  6582. "homepage": "https://symfony.com",
  6583. "support": {
  6584. "source": "https://github.com/symfony/stopwatch/tree/v7.3.0"
  6585. },
  6586. "funding": [
  6587. {
  6588. "url": "https://symfony.com/sponsor",
  6589. "type": "custom"
  6590. },
  6591. {
  6592. "url": "https://github.com/fabpot",
  6593. "type": "github"
  6594. },
  6595. {
  6596. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6597. "type": "tidelift"
  6598. }
  6599. ],
  6600. "time": "2025-02-24T10:49:57+00:00"
  6601. },
  6602. {
  6603. "name": "symfony/string",
  6604. "version": "v7.3.0",
  6605. "source": {
  6606. "type": "git",
  6607. "url": "https://github.com/symfony/string.git",
  6608. "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125"
  6609. },
  6610. "dist": {
  6611. "type": "zip",
  6612. "url": "https://api.github.com/repos/symfony/string/zipball/f3570b8c61ca887a9e2938e85cb6458515d2b125",
  6613. "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125",
  6614. "shasum": ""
  6615. },
  6616. "require": {
  6617. "php": ">=8.2",
  6618. "symfony/polyfill-ctype": "~1.8",
  6619. "symfony/polyfill-intl-grapheme": "~1.0",
  6620. "symfony/polyfill-intl-normalizer": "~1.0",
  6621. "symfony/polyfill-mbstring": "~1.0"
  6622. },
  6623. "conflict": {
  6624. "symfony/translation-contracts": "<2.5"
  6625. },
  6626. "require-dev": {
  6627. "symfony/emoji": "^7.1",
  6628. "symfony/error-handler": "^6.4|^7.0",
  6629. "symfony/http-client": "^6.4|^7.0",
  6630. "symfony/intl": "^6.4|^7.0",
  6631. "symfony/translation-contracts": "^2.5|^3.0",
  6632. "symfony/var-exporter": "^6.4|^7.0"
  6633. },
  6634. "type": "library",
  6635. "autoload": {
  6636. "files": [
  6637. "Resources/functions.php"
  6638. ],
  6639. "psr-4": {
  6640. "Symfony\\Component\\String\\": ""
  6641. },
  6642. "exclude-from-classmap": [
  6643. "/Tests/"
  6644. ]
  6645. },
  6646. "notification-url": "https://packagist.org/downloads/",
  6647. "license": [
  6648. "MIT"
  6649. ],
  6650. "authors": [
  6651. {
  6652. "name": "Nicolas Grekas",
  6653. "email": "p@tchwork.com"
  6654. },
  6655. {
  6656. "name": "Symfony Community",
  6657. "homepage": "https://symfony.com/contributors"
  6658. }
  6659. ],
  6660. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6661. "homepage": "https://symfony.com",
  6662. "keywords": [
  6663. "grapheme",
  6664. "i18n",
  6665. "string",
  6666. "unicode",
  6667. "utf-8",
  6668. "utf8"
  6669. ],
  6670. "support": {
  6671. "source": "https://github.com/symfony/string/tree/v7.3.0"
  6672. },
  6673. "funding": [
  6674. {
  6675. "url": "https://symfony.com/sponsor",
  6676. "type": "custom"
  6677. },
  6678. {
  6679. "url": "https://github.com/fabpot",
  6680. "type": "github"
  6681. },
  6682. {
  6683. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6684. "type": "tidelift"
  6685. }
  6686. ],
  6687. "time": "2025-04-20T20:19:01+00:00"
  6688. },
  6689. {
  6690. "name": "symfony/translation",
  6691. "version": "v7.3.1",
  6692. "source": {
  6693. "type": "git",
  6694. "url": "https://github.com/symfony/translation.git",
  6695. "reference": "241d5ac4910d256660238a7ecf250deba4c73063"
  6696. },
  6697. "dist": {
  6698. "type": "zip",
  6699. "url": "https://api.github.com/repos/symfony/translation/zipball/241d5ac4910d256660238a7ecf250deba4c73063",
  6700. "reference": "241d5ac4910d256660238a7ecf250deba4c73063",
  6701. "shasum": ""
  6702. },
  6703. "require": {
  6704. "php": ">=8.2",
  6705. "symfony/deprecation-contracts": "^2.5|^3",
  6706. "symfony/polyfill-mbstring": "~1.0",
  6707. "symfony/translation-contracts": "^2.5|^3.0"
  6708. },
  6709. "conflict": {
  6710. "nikic/php-parser": "<5.0",
  6711. "symfony/config": "<6.4",
  6712. "symfony/console": "<6.4",
  6713. "symfony/dependency-injection": "<6.4",
  6714. "symfony/http-client-contracts": "<2.5",
  6715. "symfony/http-kernel": "<6.4",
  6716. "symfony/service-contracts": "<2.5",
  6717. "symfony/twig-bundle": "<6.4",
  6718. "symfony/yaml": "<6.4"
  6719. },
  6720. "provide": {
  6721. "symfony/translation-implementation": "2.3|3.0"
  6722. },
  6723. "require-dev": {
  6724. "nikic/php-parser": "^5.0",
  6725. "psr/log": "^1|^2|^3",
  6726. "symfony/config": "^6.4|^7.0",
  6727. "symfony/console": "^6.4|^7.0",
  6728. "symfony/dependency-injection": "^6.4|^7.0",
  6729. "symfony/finder": "^6.4|^7.0",
  6730. "symfony/http-client-contracts": "^2.5|^3.0",
  6731. "symfony/http-kernel": "^6.4|^7.0",
  6732. "symfony/intl": "^6.4|^7.0",
  6733. "symfony/polyfill-intl-icu": "^1.21",
  6734. "symfony/routing": "^6.4|^7.0",
  6735. "symfony/service-contracts": "^2.5|^3",
  6736. "symfony/yaml": "^6.4|^7.0"
  6737. },
  6738. "type": "library",
  6739. "autoload": {
  6740. "files": [
  6741. "Resources/functions.php"
  6742. ],
  6743. "psr-4": {
  6744. "Symfony\\Component\\Translation\\": ""
  6745. },
  6746. "exclude-from-classmap": [
  6747. "/Tests/"
  6748. ]
  6749. },
  6750. "notification-url": "https://packagist.org/downloads/",
  6751. "license": [
  6752. "MIT"
  6753. ],
  6754. "authors": [
  6755. {
  6756. "name": "Fabien Potencier",
  6757. "email": "fabien@symfony.com"
  6758. },
  6759. {
  6760. "name": "Symfony Community",
  6761. "homepage": "https://symfony.com/contributors"
  6762. }
  6763. ],
  6764. "description": "Provides tools to internationalize your application",
  6765. "homepage": "https://symfony.com",
  6766. "support": {
  6767. "source": "https://github.com/symfony/translation/tree/v7.3.1"
  6768. },
  6769. "funding": [
  6770. {
  6771. "url": "https://symfony.com/sponsor",
  6772. "type": "custom"
  6773. },
  6774. {
  6775. "url": "https://github.com/fabpot",
  6776. "type": "github"
  6777. },
  6778. {
  6779. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6780. "type": "tidelift"
  6781. }
  6782. ],
  6783. "time": "2025-06-27T19:55:54+00:00"
  6784. },
  6785. {
  6786. "name": "symfony/translation-contracts",
  6787. "version": "v3.6.0",
  6788. "source": {
  6789. "type": "git",
  6790. "url": "https://github.com/symfony/translation-contracts.git",
  6791. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
  6792. },
  6793. "dist": {
  6794. "type": "zip",
  6795. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  6796. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  6797. "shasum": ""
  6798. },
  6799. "require": {
  6800. "php": ">=8.1"
  6801. },
  6802. "type": "library",
  6803. "extra": {
  6804. "thanks": {
  6805. "url": "https://github.com/symfony/contracts",
  6806. "name": "symfony/contracts"
  6807. },
  6808. "branch-alias": {
  6809. "dev-main": "3.6-dev"
  6810. }
  6811. },
  6812. "autoload": {
  6813. "psr-4": {
  6814. "Symfony\\Contracts\\Translation\\": ""
  6815. },
  6816. "exclude-from-classmap": [
  6817. "/Test/"
  6818. ]
  6819. },
  6820. "notification-url": "https://packagist.org/downloads/",
  6821. "license": [
  6822. "MIT"
  6823. ],
  6824. "authors": [
  6825. {
  6826. "name": "Nicolas Grekas",
  6827. "email": "p@tchwork.com"
  6828. },
  6829. {
  6830. "name": "Symfony Community",
  6831. "homepage": "https://symfony.com/contributors"
  6832. }
  6833. ],
  6834. "description": "Generic abstractions related to translation",
  6835. "homepage": "https://symfony.com",
  6836. "keywords": [
  6837. "abstractions",
  6838. "contracts",
  6839. "decoupling",
  6840. "interfaces",
  6841. "interoperability",
  6842. "standards"
  6843. ],
  6844. "support": {
  6845. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
  6846. },
  6847. "funding": [
  6848. {
  6849. "url": "https://symfony.com/sponsor",
  6850. "type": "custom"
  6851. },
  6852. {
  6853. "url": "https://github.com/fabpot",
  6854. "type": "github"
  6855. },
  6856. {
  6857. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6858. "type": "tidelift"
  6859. }
  6860. ],
  6861. "time": "2024-09-27T08:32:26+00:00"
  6862. },
  6863. {
  6864. "name": "symfony/twig-bridge",
  6865. "version": "v7.3.0",
  6866. "source": {
  6867. "type": "git",
  6868. "url": "https://github.com/symfony/twig-bridge.git",
  6869. "reference": "082eb15d8a4f9afee0acc4709fbe3aaf26d48891"
  6870. },
  6871. "dist": {
  6872. "type": "zip",
  6873. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/082eb15d8a4f9afee0acc4709fbe3aaf26d48891",
  6874. "reference": "082eb15d8a4f9afee0acc4709fbe3aaf26d48891",
  6875. "shasum": ""
  6876. },
  6877. "require": {
  6878. "php": ">=8.2",
  6879. "symfony/deprecation-contracts": "^2.5|^3",
  6880. "symfony/translation-contracts": "^2.5|^3",
  6881. "twig/twig": "^3.21"
  6882. },
  6883. "conflict": {
  6884. "phpdocumentor/reflection-docblock": "<3.2.2",
  6885. "phpdocumentor/type-resolver": "<1.4.0",
  6886. "symfony/console": "<6.4",
  6887. "symfony/form": "<6.4",
  6888. "symfony/http-foundation": "<6.4",
  6889. "symfony/http-kernel": "<6.4",
  6890. "symfony/mime": "<6.4",
  6891. "symfony/serializer": "<6.4",
  6892. "symfony/translation": "<6.4",
  6893. "symfony/workflow": "<6.4"
  6894. },
  6895. "require-dev": {
  6896. "egulias/email-validator": "^2.1.10|^3|^4",
  6897. "league/html-to-markdown": "^5.0",
  6898. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6899. "symfony/asset": "^6.4|^7.0",
  6900. "symfony/asset-mapper": "^6.4|^7.0",
  6901. "symfony/console": "^6.4|^7.0",
  6902. "symfony/dependency-injection": "^6.4|^7.0",
  6903. "symfony/emoji": "^7.1",
  6904. "symfony/expression-language": "^6.4|^7.0",
  6905. "symfony/finder": "^6.4|^7.0",
  6906. "symfony/form": "^6.4.20|^7.2.5",
  6907. "symfony/html-sanitizer": "^6.4|^7.0",
  6908. "symfony/http-foundation": "^7.3",
  6909. "symfony/http-kernel": "^6.4|^7.0",
  6910. "symfony/intl": "^6.4|^7.0",
  6911. "symfony/mime": "^6.4|^7.0",
  6912. "symfony/polyfill-intl-icu": "~1.0",
  6913. "symfony/property-info": "^6.4|^7.0",
  6914. "symfony/routing": "^6.4|^7.0",
  6915. "symfony/security-acl": "^2.8|^3.0",
  6916. "symfony/security-core": "^6.4|^7.0",
  6917. "symfony/security-csrf": "^6.4|^7.0",
  6918. "symfony/security-http": "^6.4|^7.0",
  6919. "symfony/serializer": "^6.4.3|^7.0.3",
  6920. "symfony/stopwatch": "^6.4|^7.0",
  6921. "symfony/translation": "^6.4|^7.0",
  6922. "symfony/validator": "^6.4|^7.0",
  6923. "symfony/web-link": "^6.4|^7.0",
  6924. "symfony/workflow": "^6.4|^7.0",
  6925. "symfony/yaml": "^6.4|^7.0",
  6926. "twig/cssinliner-extra": "^3",
  6927. "twig/inky-extra": "^3",
  6928. "twig/markdown-extra": "^3"
  6929. },
  6930. "type": "symfony-bridge",
  6931. "autoload": {
  6932. "psr-4": {
  6933. "Symfony\\Bridge\\Twig\\": ""
  6934. },
  6935. "exclude-from-classmap": [
  6936. "/Tests/"
  6937. ]
  6938. },
  6939. "notification-url": "https://packagist.org/downloads/",
  6940. "license": [
  6941. "MIT"
  6942. ],
  6943. "authors": [
  6944. {
  6945. "name": "Fabien Potencier",
  6946. "email": "fabien@symfony.com"
  6947. },
  6948. {
  6949. "name": "Symfony Community",
  6950. "homepage": "https://symfony.com/contributors"
  6951. }
  6952. ],
  6953. "description": "Provides integration for Twig with various Symfony components",
  6954. "homepage": "https://symfony.com",
  6955. "support": {
  6956. "source": "https://github.com/symfony/twig-bridge/tree/v7.3.0"
  6957. },
  6958. "funding": [
  6959. {
  6960. "url": "https://symfony.com/sponsor",
  6961. "type": "custom"
  6962. },
  6963. {
  6964. "url": "https://github.com/fabpot",
  6965. "type": "github"
  6966. },
  6967. {
  6968. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6969. "type": "tidelift"
  6970. }
  6971. ],
  6972. "time": "2025-05-19T13:28:56+00:00"
  6973. },
  6974. {
  6975. "name": "symfony/twig-bundle",
  6976. "version": "v7.3.1",
  6977. "source": {
  6978. "type": "git",
  6979. "url": "https://github.com/symfony/twig-bundle.git",
  6980. "reference": "bc23c11d9716fc2261ee26a32e654b0e8b1b1896"
  6981. },
  6982. "dist": {
  6983. "type": "zip",
  6984. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/bc23c11d9716fc2261ee26a32e654b0e8b1b1896",
  6985. "reference": "bc23c11d9716fc2261ee26a32e654b0e8b1b1896",
  6986. "shasum": ""
  6987. },
  6988. "require": {
  6989. "composer-runtime-api": ">=2.1",
  6990. "php": ">=8.2",
  6991. "symfony/config": "^7.3",
  6992. "symfony/dependency-injection": "^6.4|^7.0",
  6993. "symfony/http-foundation": "^6.4|^7.0",
  6994. "symfony/http-kernel": "^6.4|^7.0",
  6995. "symfony/twig-bridge": "^7.3",
  6996. "twig/twig": "^3.12"
  6997. },
  6998. "conflict": {
  6999. "symfony/framework-bundle": "<6.4",
  7000. "symfony/translation": "<6.4"
  7001. },
  7002. "require-dev": {
  7003. "symfony/asset": "^6.4|^7.0",
  7004. "symfony/expression-language": "^6.4|^7.0",
  7005. "symfony/finder": "^6.4|^7.0",
  7006. "symfony/form": "^6.4|^7.0",
  7007. "symfony/framework-bundle": "^6.4|^7.0",
  7008. "symfony/routing": "^6.4|^7.0",
  7009. "symfony/stopwatch": "^6.4|^7.0",
  7010. "symfony/translation": "^6.4|^7.0",
  7011. "symfony/web-link": "^6.4|^7.0",
  7012. "symfony/yaml": "^6.4|^7.0"
  7013. },
  7014. "type": "symfony-bundle",
  7015. "autoload": {
  7016. "psr-4": {
  7017. "Symfony\\Bundle\\TwigBundle\\": ""
  7018. },
  7019. "exclude-from-classmap": [
  7020. "/Tests/"
  7021. ]
  7022. },
  7023. "notification-url": "https://packagist.org/downloads/",
  7024. "license": [
  7025. "MIT"
  7026. ],
  7027. "authors": [
  7028. {
  7029. "name": "Fabien Potencier",
  7030. "email": "fabien@symfony.com"
  7031. },
  7032. {
  7033. "name": "Symfony Community",
  7034. "homepage": "https://symfony.com/contributors"
  7035. }
  7036. ],
  7037. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7038. "homepage": "https://symfony.com",
  7039. "support": {
  7040. "source": "https://github.com/symfony/twig-bundle/tree/v7.3.1"
  7041. },
  7042. "funding": [
  7043. {
  7044. "url": "https://symfony.com/sponsor",
  7045. "type": "custom"
  7046. },
  7047. {
  7048. "url": "https://github.com/fabpot",
  7049. "type": "github"
  7050. },
  7051. {
  7052. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7053. "type": "tidelift"
  7054. }
  7055. ],
  7056. "time": "2025-06-24T04:04:43+00:00"
  7057. },
  7058. {
  7059. "name": "symfony/type-info",
  7060. "version": "v7.3.1",
  7061. "source": {
  7062. "type": "git",
  7063. "url": "https://github.com/symfony/type-info.git",
  7064. "reference": "5fa6e25e4195e73ce9e457b521ac5e61ec271150"
  7065. },
  7066. "dist": {
  7067. "type": "zip",
  7068. "url": "https://api.github.com/repos/symfony/type-info/zipball/5fa6e25e4195e73ce9e457b521ac5e61ec271150",
  7069. "reference": "5fa6e25e4195e73ce9e457b521ac5e61ec271150",
  7070. "shasum": ""
  7071. },
  7072. "require": {
  7073. "php": ">=8.2",
  7074. "psr/container": "^1.1|^2.0",
  7075. "symfony/deprecation-contracts": "^2.5|^3"
  7076. },
  7077. "conflict": {
  7078. "phpstan/phpdoc-parser": "<1.30"
  7079. },
  7080. "require-dev": {
  7081. "phpstan/phpdoc-parser": "^1.30|^2.0"
  7082. },
  7083. "type": "library",
  7084. "autoload": {
  7085. "psr-4": {
  7086. "Symfony\\Component\\TypeInfo\\": ""
  7087. },
  7088. "exclude-from-classmap": [
  7089. "/Tests/"
  7090. ]
  7091. },
  7092. "notification-url": "https://packagist.org/downloads/",
  7093. "license": [
  7094. "MIT"
  7095. ],
  7096. "authors": [
  7097. {
  7098. "name": "Mathias Arlaud",
  7099. "email": "mathias.arlaud@gmail.com"
  7100. },
  7101. {
  7102. "name": "Baptiste LEDUC",
  7103. "email": "baptiste.leduc@gmail.com"
  7104. },
  7105. {
  7106. "name": "Symfony Community",
  7107. "homepage": "https://symfony.com/contributors"
  7108. }
  7109. ],
  7110. "description": "Extracts PHP types information.",
  7111. "homepage": "https://symfony.com",
  7112. "keywords": [
  7113. "PHPStan",
  7114. "phpdoc",
  7115. "symfony",
  7116. "type"
  7117. ],
  7118. "support": {
  7119. "source": "https://github.com/symfony/type-info/tree/v7.3.1"
  7120. },
  7121. "funding": [
  7122. {
  7123. "url": "https://symfony.com/sponsor",
  7124. "type": "custom"
  7125. },
  7126. {
  7127. "url": "https://github.com/fabpot",
  7128. "type": "github"
  7129. },
  7130. {
  7131. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7132. "type": "tidelift"
  7133. }
  7134. ],
  7135. "time": "2025-06-27T19:55:54+00:00"
  7136. },
  7137. {
  7138. "name": "symfony/uid",
  7139. "version": "v7.3.1",
  7140. "source": {
  7141. "type": "git",
  7142. "url": "https://github.com/symfony/uid.git",
  7143. "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb"
  7144. },
  7145. "dist": {
  7146. "type": "zip",
  7147. "url": "https://api.github.com/repos/symfony/uid/zipball/a69f69f3159b852651a6bf45a9fdd149520525bb",
  7148. "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb",
  7149. "shasum": ""
  7150. },
  7151. "require": {
  7152. "php": ">=8.2",
  7153. "symfony/polyfill-uuid": "^1.15"
  7154. },
  7155. "require-dev": {
  7156. "symfony/console": "^6.4|^7.0"
  7157. },
  7158. "type": "library",
  7159. "autoload": {
  7160. "psr-4": {
  7161. "Symfony\\Component\\Uid\\": ""
  7162. },
  7163. "exclude-from-classmap": [
  7164. "/Tests/"
  7165. ]
  7166. },
  7167. "notification-url": "https://packagist.org/downloads/",
  7168. "license": [
  7169. "MIT"
  7170. ],
  7171. "authors": [
  7172. {
  7173. "name": "Grégoire Pineau",
  7174. "email": "lyrixx@lyrixx.info"
  7175. },
  7176. {
  7177. "name": "Nicolas Grekas",
  7178. "email": "p@tchwork.com"
  7179. },
  7180. {
  7181. "name": "Symfony Community",
  7182. "homepage": "https://symfony.com/contributors"
  7183. }
  7184. ],
  7185. "description": "Provides an object-oriented API to generate and represent UIDs",
  7186. "homepage": "https://symfony.com",
  7187. "keywords": [
  7188. "UID",
  7189. "ulid",
  7190. "uuid"
  7191. ],
  7192. "support": {
  7193. "source": "https://github.com/symfony/uid/tree/v7.3.1"
  7194. },
  7195. "funding": [
  7196. {
  7197. "url": "https://symfony.com/sponsor",
  7198. "type": "custom"
  7199. },
  7200. {
  7201. "url": "https://github.com/fabpot",
  7202. "type": "github"
  7203. },
  7204. {
  7205. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7206. "type": "tidelift"
  7207. }
  7208. ],
  7209. "time": "2025-06-27T19:55:54+00:00"
  7210. },
  7211. {
  7212. "name": "symfony/ux-icons",
  7213. "version": "v2.27.0",
  7214. "source": {
  7215. "type": "git",
  7216. "url": "https://github.com/symfony/ux-icons.git",
  7217. "reference": "af6d09779e786717c6e3b5a8a004e8c18ce3ef00"
  7218. },
  7219. "dist": {
  7220. "type": "zip",
  7221. "url": "https://api.github.com/repos/symfony/ux-icons/zipball/af6d09779e786717c6e3b5a8a004e8c18ce3ef00",
  7222. "reference": "af6d09779e786717c6e3b5a8a004e8c18ce3ef00",
  7223. "shasum": ""
  7224. },
  7225. "require": {
  7226. "php": ">=8.1",
  7227. "symfony/framework-bundle": "^6.4|^7.0",
  7228. "symfony/twig-bundle": "^6.4|^7.0"
  7229. },
  7230. "conflict": {
  7231. "symfony/flex": "<1.13",
  7232. "symfony/ux-twig-component": "<2.21"
  7233. },
  7234. "require-dev": {
  7235. "psr/log": "^2|^3",
  7236. "symfony/asset-mapper": "^6.4|^7.0",
  7237. "symfony/console": "^6.4|^7.0",
  7238. "symfony/http-client": "6.4|^7.0",
  7239. "symfony/phpunit-bridge": "^6.3|^7.0",
  7240. "symfony/ux-twig-component": "^2.14",
  7241. "zenstruck/console-test": "^1.5"
  7242. },
  7243. "type": "symfony-bundle",
  7244. "extra": {
  7245. "thanks": {
  7246. "url": "https://github.com/symfony/ux",
  7247. "name": "symfony/ux"
  7248. }
  7249. },
  7250. "autoload": {
  7251. "psr-4": {
  7252. "Symfony\\UX\\Icons\\": "src/"
  7253. }
  7254. },
  7255. "notification-url": "https://packagist.org/downloads/",
  7256. "license": [
  7257. "MIT"
  7258. ],
  7259. "authors": [
  7260. {
  7261. "name": "Kevin Bond",
  7262. "email": "kevinbond@gmail.com"
  7263. },
  7264. {
  7265. "name": "Simon André",
  7266. "email": "smn.andre@gmail.com"
  7267. },
  7268. {
  7269. "name": "Symfony Community",
  7270. "homepage": "https://symfony.com/contributors"
  7271. }
  7272. ],
  7273. "description": "Renders local and remote SVG icons in your Twig templates.",
  7274. "homepage": "https://symfony.com",
  7275. "keywords": [
  7276. "icons",
  7277. "svg",
  7278. "symfony-ux",
  7279. "twig"
  7280. ],
  7281. "support": {
  7282. "source": "https://github.com/symfony/ux-icons/tree/v2.27.0"
  7283. },
  7284. "funding": [
  7285. {
  7286. "url": "https://symfony.com/sponsor",
  7287. "type": "custom"
  7288. },
  7289. {
  7290. "url": "https://github.com/fabpot",
  7291. "type": "github"
  7292. },
  7293. {
  7294. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7295. "type": "tidelift"
  7296. }
  7297. ],
  7298. "time": "2025-06-17T06:15:15+00:00"
  7299. },
  7300. {
  7301. "name": "symfony/ux-toggle-password",
  7302. "version": "v2.27.0",
  7303. "source": {
  7304. "type": "git",
  7305. "url": "https://github.com/symfony/ux-toggle-password.git",
  7306. "reference": "9753f554d00e0f86f44726165f9af6e6513086b7"
  7307. },
  7308. "dist": {
  7309. "type": "zip",
  7310. "url": "https://api.github.com/repos/symfony/ux-toggle-password/zipball/9753f554d00e0f86f44726165f9af6e6513086b7",
  7311. "reference": "9753f554d00e0f86f44726165f9af6e6513086b7",
  7312. "shasum": ""
  7313. },
  7314. "require": {
  7315. "php": ">=8.1",
  7316. "symfony/config": "^5.4|^6.0|^7.0",
  7317. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7318. "symfony/form": "^5.4|^6.0|^7.0",
  7319. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7320. "symfony/options-resolver": "^5.4|^6.0|^7.0",
  7321. "symfony/translation": "^5.4|^6.0|^7.0"
  7322. },
  7323. "require-dev": {
  7324. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  7325. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  7326. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  7327. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  7328. "twig/twig": "^2.14.7|^3.0.4"
  7329. },
  7330. "type": "symfony-bundle",
  7331. "extra": {
  7332. "thanks": {
  7333. "url": "https://github.com/symfony/ux",
  7334. "name": "symfony/ux"
  7335. }
  7336. },
  7337. "autoload": {
  7338. "psr-4": {
  7339. "Symfony\\UX\\TogglePassword\\": "src/"
  7340. }
  7341. },
  7342. "notification-url": "https://packagist.org/downloads/",
  7343. "license": [
  7344. "MIT"
  7345. ],
  7346. "authors": [
  7347. {
  7348. "name": "Félix Eymonot",
  7349. "email": "felix.eymonot@alximy.io"
  7350. },
  7351. {
  7352. "name": "Symfony Community",
  7353. "homepage": "https://symfony.com/contributors"
  7354. }
  7355. ],
  7356. "description": "Toggle visibility of password inputs for Symfony Forms",
  7357. "homepage": "https://symfony.com",
  7358. "keywords": [
  7359. "symfony-ux"
  7360. ],
  7361. "support": {
  7362. "source": "https://github.com/symfony/ux-toggle-password/tree/v2.27.0"
  7363. },
  7364. "funding": [
  7365. {
  7366. "url": "https://symfony.com/sponsor",
  7367. "type": "custom"
  7368. },
  7369. {
  7370. "url": "https://github.com/fabpot",
  7371. "type": "github"
  7372. },
  7373. {
  7374. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7375. "type": "tidelift"
  7376. }
  7377. ],
  7378. "time": "2025-06-06T20:27:21+00:00"
  7379. },
  7380. {
  7381. "name": "symfony/ux-turbo",
  7382. "version": "v2.27.0",
  7383. "source": {
  7384. "type": "git",
  7385. "url": "https://github.com/symfony/ux-turbo.git",
  7386. "reference": "b9ce9b30a9cf9bbd090c7ad290bdaf84a0e100b2"
  7387. },
  7388. "dist": {
  7389. "type": "zip",
  7390. "url": "https://api.github.com/repos/symfony/ux-turbo/zipball/b9ce9b30a9cf9bbd090c7ad290bdaf84a0e100b2",
  7391. "reference": "b9ce9b30a9cf9bbd090c7ad290bdaf84a0e100b2",
  7392. "shasum": ""
  7393. },
  7394. "require": {
  7395. "php": ">=8.1",
  7396. "symfony/stimulus-bundle": "^2.9.1"
  7397. },
  7398. "conflict": {
  7399. "symfony/flex": "<1.13"
  7400. },
  7401. "require-dev": {
  7402. "dbrekelmans/bdi": "dev-main",
  7403. "doctrine/doctrine-bundle": "^2.4.3",
  7404. "doctrine/orm": "^2.8 | 3.0",
  7405. "php-webdriver/webdriver": "^1.15",
  7406. "phpstan/phpstan": "^2.1.17",
  7407. "symfony/asset-mapper": "^6.4|^7.0",
  7408. "symfony/debug-bundle": "^5.4|^6.0|^7.0",
  7409. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7410. "symfony/form": "^5.4|^6.0|^7.0",
  7411. "symfony/framework-bundle": "^6.4|^7.0",
  7412. "symfony/mercure-bundle": "^0.3.7",
  7413. "symfony/messenger": "^5.4|^6.0|^7.0",
  7414. "symfony/panther": "^2.2",
  7415. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  7416. "symfony/process": "^5.4|6.3.*|^7.0",
  7417. "symfony/property-access": "^5.4|^6.0|^7.0",
  7418. "symfony/security-core": "^5.4|^6.0|^7.0",
  7419. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7420. "symfony/twig-bundle": "^6.4|^7.0",
  7421. "symfony/ux-twig-component": "^2.21",
  7422. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
  7423. },
  7424. "type": "symfony-bundle",
  7425. "extra": {
  7426. "thanks": {
  7427. "url": "https://github.com/symfony/ux",
  7428. "name": "symfony/ux"
  7429. }
  7430. },
  7431. "autoload": {
  7432. "psr-4": {
  7433. "Symfony\\UX\\Turbo\\": "src/"
  7434. }
  7435. },
  7436. "notification-url": "https://packagist.org/downloads/",
  7437. "license": [
  7438. "MIT"
  7439. ],
  7440. "authors": [
  7441. {
  7442. "name": "Kévin Dunglas",
  7443. "email": "kevin@dunglas.fr"
  7444. },
  7445. {
  7446. "name": "Symfony Community",
  7447. "homepage": "https://symfony.com/contributors"
  7448. }
  7449. ],
  7450. "description": "Hotwire Turbo integration for Symfony",
  7451. "homepage": "https://symfony.com",
  7452. "keywords": [
  7453. "hotwire",
  7454. "javascript",
  7455. "mercure",
  7456. "symfony-ux",
  7457. "turbo",
  7458. "turbo-stream"
  7459. ],
  7460. "support": {
  7461. "source": "https://github.com/symfony/ux-turbo/tree/v2.27.0"
  7462. },
  7463. "funding": [
  7464. {
  7465. "url": "https://symfony.com/sponsor",
  7466. "type": "custom"
  7467. },
  7468. {
  7469. "url": "https://github.com/fabpot",
  7470. "type": "github"
  7471. },
  7472. {
  7473. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7474. "type": "tidelift"
  7475. }
  7476. ],
  7477. "time": "2025-06-06T20:27:21+00:00"
  7478. },
  7479. {
  7480. "name": "symfony/ux-twig-component",
  7481. "version": "v2.27.0",
  7482. "source": {
  7483. "type": "git",
  7484. "url": "https://github.com/symfony/ux-twig-component.git",
  7485. "reference": "0879cd53812b79e8b6a20e104b6e785a2ac2c013"
  7486. },
  7487. "dist": {
  7488. "type": "zip",
  7489. "url": "https://api.github.com/repos/symfony/ux-twig-component/zipball/0879cd53812b79e8b6a20e104b6e785a2ac2c013",
  7490. "reference": "0879cd53812b79e8b6a20e104b6e785a2ac2c013",
  7491. "shasum": ""
  7492. },
  7493. "require": {
  7494. "php": ">=8.1",
  7495. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7496. "symfony/deprecation-contracts": "^2.2|^3.0",
  7497. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7498. "symfony/property-access": "^5.4|^6.0|^7.0",
  7499. "twig/twig": "^3.10.3"
  7500. },
  7501. "conflict": {
  7502. "symfony/config": "<5.4.0"
  7503. },
  7504. "require-dev": {
  7505. "symfony/console": "^5.4|^6.0|^7.0",
  7506. "symfony/css-selector": "^5.4|^6.0|^7.0",
  7507. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  7508. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  7509. "symfony/phpunit-bridge": "^6.0|^7.0",
  7510. "symfony/stimulus-bundle": "^2.9.1",
  7511. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  7512. "symfony/webpack-encore-bundle": "^1.15"
  7513. },
  7514. "type": "symfony-bundle",
  7515. "extra": {
  7516. "thanks": {
  7517. "url": "https://github.com/symfony/ux",
  7518. "name": "symfony/ux"
  7519. }
  7520. },
  7521. "autoload": {
  7522. "psr-4": {
  7523. "Symfony\\UX\\TwigComponent\\": "src/"
  7524. }
  7525. },
  7526. "notification-url": "https://packagist.org/downloads/",
  7527. "license": [
  7528. "MIT"
  7529. ],
  7530. "authors": [
  7531. {
  7532. "name": "Symfony Community",
  7533. "homepage": "https://symfony.com/contributors"
  7534. }
  7535. ],
  7536. "description": "Twig components for Symfony",
  7537. "homepage": "https://symfony.com",
  7538. "keywords": [
  7539. "components",
  7540. "symfony-ux",
  7541. "twig"
  7542. ],
  7543. "support": {
  7544. "source": "https://github.com/symfony/ux-twig-component/tree/v2.27.0"
  7545. },
  7546. "funding": [
  7547. {
  7548. "url": "https://symfony.com/sponsor",
  7549. "type": "custom"
  7550. },
  7551. {
  7552. "url": "https://github.com/fabpot",
  7553. "type": "github"
  7554. },
  7555. {
  7556. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7557. "type": "tidelift"
  7558. }
  7559. ],
  7560. "time": "2025-06-21T16:41:28+00:00"
  7561. },
  7562. {
  7563. "name": "symfony/validator",
  7564. "version": "v7.3.1",
  7565. "source": {
  7566. "type": "git",
  7567. "url": "https://github.com/symfony/validator.git",
  7568. "reference": "e2f2497c869fc57446f735fbf00cff4de32ae8c3"
  7569. },
  7570. "dist": {
  7571. "type": "zip",
  7572. "url": "https://api.github.com/repos/symfony/validator/zipball/e2f2497c869fc57446f735fbf00cff4de32ae8c3",
  7573. "reference": "e2f2497c869fc57446f735fbf00cff4de32ae8c3",
  7574. "shasum": ""
  7575. },
  7576. "require": {
  7577. "php": ">=8.2",
  7578. "symfony/deprecation-contracts": "^2.5|^3",
  7579. "symfony/polyfill-ctype": "~1.8",
  7580. "symfony/polyfill-mbstring": "~1.0",
  7581. "symfony/polyfill-php83": "^1.27",
  7582. "symfony/translation-contracts": "^2.5|^3"
  7583. },
  7584. "conflict": {
  7585. "doctrine/lexer": "<1.1",
  7586. "symfony/dependency-injection": "<6.4",
  7587. "symfony/doctrine-bridge": "<7.0",
  7588. "symfony/expression-language": "<6.4",
  7589. "symfony/http-kernel": "<6.4",
  7590. "symfony/intl": "<6.4",
  7591. "symfony/property-info": "<6.4",
  7592. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  7593. "symfony/yaml": "<6.4"
  7594. },
  7595. "require-dev": {
  7596. "egulias/email-validator": "^2.1.10|^3|^4",
  7597. "symfony/cache": "^6.4|^7.0",
  7598. "symfony/config": "^6.4|^7.0",
  7599. "symfony/console": "^6.4|^7.0",
  7600. "symfony/dependency-injection": "^6.4|^7.0",
  7601. "symfony/expression-language": "^6.4|^7.0",
  7602. "symfony/finder": "^6.4|^7.0",
  7603. "symfony/http-client": "^6.4|^7.0",
  7604. "symfony/http-foundation": "^6.4|^7.0",
  7605. "symfony/http-kernel": "^6.4|^7.0",
  7606. "symfony/intl": "^6.4|^7.0",
  7607. "symfony/mime": "^6.4|^7.0",
  7608. "symfony/property-access": "^6.4|^7.0",
  7609. "symfony/property-info": "^6.4|^7.0",
  7610. "symfony/string": "^6.4|^7.0",
  7611. "symfony/translation": "^6.4.3|^7.0.3",
  7612. "symfony/type-info": "^7.1",
  7613. "symfony/yaml": "^6.4|^7.0"
  7614. },
  7615. "type": "library",
  7616. "autoload": {
  7617. "psr-4": {
  7618. "Symfony\\Component\\Validator\\": ""
  7619. },
  7620. "exclude-from-classmap": [
  7621. "/Tests/",
  7622. "/Resources/bin/"
  7623. ]
  7624. },
  7625. "notification-url": "https://packagist.org/downloads/",
  7626. "license": [
  7627. "MIT"
  7628. ],
  7629. "authors": [
  7630. {
  7631. "name": "Fabien Potencier",
  7632. "email": "fabien@symfony.com"
  7633. },
  7634. {
  7635. "name": "Symfony Community",
  7636. "homepage": "https://symfony.com/contributors"
  7637. }
  7638. ],
  7639. "description": "Provides tools to validate values",
  7640. "homepage": "https://symfony.com",
  7641. "support": {
  7642. "source": "https://github.com/symfony/validator/tree/v7.3.1"
  7643. },
  7644. "funding": [
  7645. {
  7646. "url": "https://symfony.com/sponsor",
  7647. "type": "custom"
  7648. },
  7649. {
  7650. "url": "https://github.com/fabpot",
  7651. "type": "github"
  7652. },
  7653. {
  7654. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7655. "type": "tidelift"
  7656. }
  7657. ],
  7658. "time": "2025-06-26T13:22:23+00:00"
  7659. },
  7660. {
  7661. "name": "symfony/var-dumper",
  7662. "version": "v7.3.1",
  7663. "source": {
  7664. "type": "git",
  7665. "url": "https://github.com/symfony/var-dumper.git",
  7666. "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42"
  7667. },
  7668. "dist": {
  7669. "type": "zip",
  7670. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6e209fbe5f5a7b6043baba46fe5735a4b85d0d42",
  7671. "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42",
  7672. "shasum": ""
  7673. },
  7674. "require": {
  7675. "php": ">=8.2",
  7676. "symfony/deprecation-contracts": "^2.5|^3",
  7677. "symfony/polyfill-mbstring": "~1.0"
  7678. },
  7679. "conflict": {
  7680. "symfony/console": "<6.4"
  7681. },
  7682. "require-dev": {
  7683. "ext-iconv": "*",
  7684. "symfony/console": "^6.4|^7.0",
  7685. "symfony/http-kernel": "^6.4|^7.0",
  7686. "symfony/process": "^6.4|^7.0",
  7687. "symfony/uid": "^6.4|^7.0",
  7688. "twig/twig": "^3.12"
  7689. },
  7690. "bin": [
  7691. "Resources/bin/var-dump-server"
  7692. ],
  7693. "type": "library",
  7694. "autoload": {
  7695. "files": [
  7696. "Resources/functions/dump.php"
  7697. ],
  7698. "psr-4": {
  7699. "Symfony\\Component\\VarDumper\\": ""
  7700. },
  7701. "exclude-from-classmap": [
  7702. "/Tests/"
  7703. ]
  7704. },
  7705. "notification-url": "https://packagist.org/downloads/",
  7706. "license": [
  7707. "MIT"
  7708. ],
  7709. "authors": [
  7710. {
  7711. "name": "Nicolas Grekas",
  7712. "email": "p@tchwork.com"
  7713. },
  7714. {
  7715. "name": "Symfony Community",
  7716. "homepage": "https://symfony.com/contributors"
  7717. }
  7718. ],
  7719. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7720. "homepage": "https://symfony.com",
  7721. "keywords": [
  7722. "debug",
  7723. "dump"
  7724. ],
  7725. "support": {
  7726. "source": "https://github.com/symfony/var-dumper/tree/v7.3.1"
  7727. },
  7728. "funding": [
  7729. {
  7730. "url": "https://symfony.com/sponsor",
  7731. "type": "custom"
  7732. },
  7733. {
  7734. "url": "https://github.com/fabpot",
  7735. "type": "github"
  7736. },
  7737. {
  7738. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7739. "type": "tidelift"
  7740. }
  7741. ],
  7742. "time": "2025-06-27T19:55:54+00:00"
  7743. },
  7744. {
  7745. "name": "symfony/var-exporter",
  7746. "version": "v7.3.0",
  7747. "source": {
  7748. "type": "git",
  7749. "url": "https://github.com/symfony/var-exporter.git",
  7750. "reference": "c9a1168891b5aaadfd6332ef44393330b3498c4c"
  7751. },
  7752. "dist": {
  7753. "type": "zip",
  7754. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/c9a1168891b5aaadfd6332ef44393330b3498c4c",
  7755. "reference": "c9a1168891b5aaadfd6332ef44393330b3498c4c",
  7756. "shasum": ""
  7757. },
  7758. "require": {
  7759. "php": ">=8.2",
  7760. "symfony/deprecation-contracts": "^2.5|^3"
  7761. },
  7762. "require-dev": {
  7763. "symfony/property-access": "^6.4|^7.0",
  7764. "symfony/serializer": "^6.4|^7.0",
  7765. "symfony/var-dumper": "^6.4|^7.0"
  7766. },
  7767. "type": "library",
  7768. "autoload": {
  7769. "psr-4": {
  7770. "Symfony\\Component\\VarExporter\\": ""
  7771. },
  7772. "exclude-from-classmap": [
  7773. "/Tests/"
  7774. ]
  7775. },
  7776. "notification-url": "https://packagist.org/downloads/",
  7777. "license": [
  7778. "MIT"
  7779. ],
  7780. "authors": [
  7781. {
  7782. "name": "Nicolas Grekas",
  7783. "email": "p@tchwork.com"
  7784. },
  7785. {
  7786. "name": "Symfony Community",
  7787. "homepage": "https://symfony.com/contributors"
  7788. }
  7789. ],
  7790. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7791. "homepage": "https://symfony.com",
  7792. "keywords": [
  7793. "clone",
  7794. "construct",
  7795. "export",
  7796. "hydrate",
  7797. "instantiate",
  7798. "lazy-loading",
  7799. "proxy",
  7800. "serialize"
  7801. ],
  7802. "support": {
  7803. "source": "https://github.com/symfony/var-exporter/tree/v7.3.0"
  7804. },
  7805. "funding": [
  7806. {
  7807. "url": "https://symfony.com/sponsor",
  7808. "type": "custom"
  7809. },
  7810. {
  7811. "url": "https://github.com/fabpot",
  7812. "type": "github"
  7813. },
  7814. {
  7815. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7816. "type": "tidelift"
  7817. }
  7818. ],
  7819. "time": "2025-05-15T09:04:05+00:00"
  7820. },
  7821. {
  7822. "name": "symfony/web-link",
  7823. "version": "v7.3.0",
  7824. "source": {
  7825. "type": "git",
  7826. "url": "https://github.com/symfony/web-link.git",
  7827. "reference": "7697f74fce67555665339423ce453cc8216a98ff"
  7828. },
  7829. "dist": {
  7830. "type": "zip",
  7831. "url": "https://api.github.com/repos/symfony/web-link/zipball/7697f74fce67555665339423ce453cc8216a98ff",
  7832. "reference": "7697f74fce67555665339423ce453cc8216a98ff",
  7833. "shasum": ""
  7834. },
  7835. "require": {
  7836. "php": ">=8.2",
  7837. "psr/link": "^1.1|^2.0"
  7838. },
  7839. "conflict": {
  7840. "symfony/http-kernel": "<6.4"
  7841. },
  7842. "provide": {
  7843. "psr/link-implementation": "1.0|2.0"
  7844. },
  7845. "require-dev": {
  7846. "symfony/http-kernel": "^6.4|^7.0"
  7847. },
  7848. "type": "library",
  7849. "autoload": {
  7850. "psr-4": {
  7851. "Symfony\\Component\\WebLink\\": ""
  7852. },
  7853. "exclude-from-classmap": [
  7854. "/Tests/"
  7855. ]
  7856. },
  7857. "notification-url": "https://packagist.org/downloads/",
  7858. "license": [
  7859. "MIT"
  7860. ],
  7861. "authors": [
  7862. {
  7863. "name": "Kévin Dunglas",
  7864. "email": "dunglas@gmail.com"
  7865. },
  7866. {
  7867. "name": "Symfony Community",
  7868. "homepage": "https://symfony.com/contributors"
  7869. }
  7870. ],
  7871. "description": "Manages links between resources",
  7872. "homepage": "https://symfony.com",
  7873. "keywords": [
  7874. "dns-prefetch",
  7875. "http",
  7876. "http2",
  7877. "link",
  7878. "performance",
  7879. "prefetch",
  7880. "preload",
  7881. "prerender",
  7882. "psr13",
  7883. "push"
  7884. ],
  7885. "support": {
  7886. "source": "https://github.com/symfony/web-link/tree/v7.3.0"
  7887. },
  7888. "funding": [
  7889. {
  7890. "url": "https://symfony.com/sponsor",
  7891. "type": "custom"
  7892. },
  7893. {
  7894. "url": "https://github.com/fabpot",
  7895. "type": "github"
  7896. },
  7897. {
  7898. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7899. "type": "tidelift"
  7900. }
  7901. ],
  7902. "time": "2025-05-19T13:28:18+00:00"
  7903. },
  7904. {
  7905. "name": "symfony/yaml",
  7906. "version": "v7.3.1",
  7907. "source": {
  7908. "type": "git",
  7909. "url": "https://github.com/symfony/yaml.git",
  7910. "reference": "0c3555045a46ab3cd4cc5a69d161225195230edb"
  7911. },
  7912. "dist": {
  7913. "type": "zip",
  7914. "url": "https://api.github.com/repos/symfony/yaml/zipball/0c3555045a46ab3cd4cc5a69d161225195230edb",
  7915. "reference": "0c3555045a46ab3cd4cc5a69d161225195230edb",
  7916. "shasum": ""
  7917. },
  7918. "require": {
  7919. "php": ">=8.2",
  7920. "symfony/deprecation-contracts": "^2.5|^3.0",
  7921. "symfony/polyfill-ctype": "^1.8"
  7922. },
  7923. "conflict": {
  7924. "symfony/console": "<6.4"
  7925. },
  7926. "require-dev": {
  7927. "symfony/console": "^6.4|^7.0"
  7928. },
  7929. "bin": [
  7930. "Resources/bin/yaml-lint"
  7931. ],
  7932. "type": "library",
  7933. "autoload": {
  7934. "psr-4": {
  7935. "Symfony\\Component\\Yaml\\": ""
  7936. },
  7937. "exclude-from-classmap": [
  7938. "/Tests/"
  7939. ]
  7940. },
  7941. "notification-url": "https://packagist.org/downloads/",
  7942. "license": [
  7943. "MIT"
  7944. ],
  7945. "authors": [
  7946. {
  7947. "name": "Fabien Potencier",
  7948. "email": "fabien@symfony.com"
  7949. },
  7950. {
  7951. "name": "Symfony Community",
  7952. "homepage": "https://symfony.com/contributors"
  7953. }
  7954. ],
  7955. "description": "Loads and dumps YAML files",
  7956. "homepage": "https://symfony.com",
  7957. "support": {
  7958. "source": "https://github.com/symfony/yaml/tree/v7.3.1"
  7959. },
  7960. "funding": [
  7961. {
  7962. "url": "https://symfony.com/sponsor",
  7963. "type": "custom"
  7964. },
  7965. {
  7966. "url": "https://github.com/fabpot",
  7967. "type": "github"
  7968. },
  7969. {
  7970. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7971. "type": "tidelift"
  7972. }
  7973. ],
  7974. "time": "2025-06-03T06:57:57+00:00"
  7975. },
  7976. {
  7977. "name": "symfonycasts/reset-password-bundle",
  7978. "version": "v1.23.1",
  7979. "source": {
  7980. "type": "git",
  7981. "url": "https://github.com/SymfonyCasts/reset-password-bundle.git",
  7982. "reference": "bde42fe5956e0cd523931da886ee41ab660c45b2"
  7983. },
  7984. "dist": {
  7985. "type": "zip",
  7986. "url": "https://api.github.com/repos/SymfonyCasts/reset-password-bundle/zipball/bde42fe5956e0cd523931da886ee41ab660c45b2",
  7987. "reference": "bde42fe5956e0cd523931da886ee41ab660c45b2",
  7988. "shasum": ""
  7989. },
  7990. "require": {
  7991. "ext-json": "*",
  7992. "php": ">=8.1.10",
  7993. "symfony/config": "^5.4 | ^6.0 | ^7.0",
  7994. "symfony/dependency-injection": "^5.4 | ^6.0 | ^7.0",
  7995. "symfony/deprecation-contracts": "^2.2 | ^3.0",
  7996. "symfony/http-kernel": "^5.4 | ^6.0 | ^7.0"
  7997. },
  7998. "require-dev": {
  7999. "doctrine/annotations": "^1.0",
  8000. "doctrine/doctrine-bundle": "^2.8",
  8001. "doctrine/orm": "^2.13",
  8002. "symfony/framework-bundle": "^5.4 | ^6.0 | ^7.0",
  8003. "symfony/phpunit-bridge": "^5.4 | ^6.0 | ^7.0",
  8004. "symfony/process": "^6.4 | ^7.0 | ^7.1",
  8005. "symfonycasts/internal-test-helpers": "dev-main"
  8006. },
  8007. "type": "symfony-bundle",
  8008. "autoload": {
  8009. "psr-4": {
  8010. "SymfonyCasts\\Bundle\\ResetPassword\\": "src/"
  8011. }
  8012. },
  8013. "notification-url": "https://packagist.org/downloads/",
  8014. "license": [
  8015. "MIT"
  8016. ],
  8017. "description": "Symfony bundle that adds password reset functionality.",
  8018. "support": {
  8019. "issues": "https://github.com/SymfonyCasts/reset-password-bundle/issues",
  8020. "source": "https://github.com/SymfonyCasts/reset-password-bundle/tree/v1.23.1"
  8021. },
  8022. "time": "2024-12-09T19:04:36+00:00"
  8023. },
  8024. {
  8025. "name": "symfonycasts/verify-email-bundle",
  8026. "version": "v1.17.3",
  8027. "source": {
  8028. "type": "git",
  8029. "url": "https://github.com/SymfonyCasts/verify-email-bundle.git",
  8030. "reference": "2cb1cd94ca7a65471563a5cb91ddf40e8433844e"
  8031. },
  8032. "dist": {
  8033. "type": "zip",
  8034. "url": "https://api.github.com/repos/SymfonyCasts/verify-email-bundle/zipball/2cb1cd94ca7a65471563a5cb91ddf40e8433844e",
  8035. "reference": "2cb1cd94ca7a65471563a5cb91ddf40e8433844e",
  8036. "shasum": ""
  8037. },
  8038. "require": {
  8039. "ext-json": "*",
  8040. "php": ">=8.1",
  8041. "symfony/config": "^5.4 | ^6.0 | ^7.0",
  8042. "symfony/dependency-injection": "^5.4 | ^6.0 | ^7.0",
  8043. "symfony/deprecation-contracts": "^2.2 | ^3.0",
  8044. "symfony/http-kernel": "^5.4 | ^6.0 | ^7.0",
  8045. "symfony/routing": "^5.4 | ^6.0 | ^7.0"
  8046. },
  8047. "require-dev": {
  8048. "doctrine/orm": "^2.7",
  8049. "doctrine/persistence": "^2.0",
  8050. "symfony/framework-bundle": "^5.4 | ^6.0 | ^7.0",
  8051. "symfony/phpunit-bridge": "^5.4 | ^6.0 | ^7.0"
  8052. },
  8053. "type": "symfony-bundle",
  8054. "autoload": {
  8055. "psr-4": {
  8056. "SymfonyCasts\\Bundle\\VerifyEmail\\": "src/"
  8057. }
  8058. },
  8059. "notification-url": "https://packagist.org/downloads/",
  8060. "license": [
  8061. "MIT"
  8062. ],
  8063. "description": "Simple, stylish Email Verification for Symfony",
  8064. "support": {
  8065. "issues": "https://github.com/SymfonyCasts/verify-email-bundle/issues",
  8066. "source": "https://github.com/SymfonyCasts/verify-email-bundle/tree/v1.17.3"
  8067. },
  8068. "time": "2024-12-09T18:44:25+00:00"
  8069. },
  8070. {
  8071. "name": "twig/extra-bundle",
  8072. "version": "v3.21.0",
  8073. "source": {
  8074. "type": "git",
  8075. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8076. "reference": "62d1cf47a1aa009cbd07b21045b97d3d5cb79896"
  8077. },
  8078. "dist": {
  8079. "type": "zip",
  8080. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/62d1cf47a1aa009cbd07b21045b97d3d5cb79896",
  8081. "reference": "62d1cf47a1aa009cbd07b21045b97d3d5cb79896",
  8082. "shasum": ""
  8083. },
  8084. "require": {
  8085. "php": ">=8.1.0",
  8086. "symfony/framework-bundle": "^5.4|^6.4|^7.0",
  8087. "symfony/twig-bundle": "^5.4|^6.4|^7.0",
  8088. "twig/twig": "^3.2|^4.0"
  8089. },
  8090. "require-dev": {
  8091. "league/commonmark": "^1.0|^2.0",
  8092. "symfony/phpunit-bridge": "^6.4|^7.0",
  8093. "twig/cache-extra": "^3.0",
  8094. "twig/cssinliner-extra": "^3.0",
  8095. "twig/html-extra": "^3.0",
  8096. "twig/inky-extra": "^3.0",
  8097. "twig/intl-extra": "^3.0",
  8098. "twig/markdown-extra": "^3.0",
  8099. "twig/string-extra": "^3.0"
  8100. },
  8101. "type": "symfony-bundle",
  8102. "autoload": {
  8103. "psr-4": {
  8104. "Twig\\Extra\\TwigExtraBundle\\": ""
  8105. },
  8106. "exclude-from-classmap": [
  8107. "/Tests/"
  8108. ]
  8109. },
  8110. "notification-url": "https://packagist.org/downloads/",
  8111. "license": [
  8112. "MIT"
  8113. ],
  8114. "authors": [
  8115. {
  8116. "name": "Fabien Potencier",
  8117. "email": "fabien@symfony.com",
  8118. "homepage": "http://fabien.potencier.org",
  8119. "role": "Lead Developer"
  8120. }
  8121. ],
  8122. "description": "A Symfony bundle for extra Twig extensions",
  8123. "homepage": "https://twig.symfony.com",
  8124. "keywords": [
  8125. "bundle",
  8126. "extra",
  8127. "twig"
  8128. ],
  8129. "support": {
  8130. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.21.0"
  8131. },
  8132. "funding": [
  8133. {
  8134. "url": "https://github.com/fabpot",
  8135. "type": "github"
  8136. },
  8137. {
  8138. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8139. "type": "tidelift"
  8140. }
  8141. ],
  8142. "time": "2025-02-19T14:29:33+00:00"
  8143. },
  8144. {
  8145. "name": "twig/twig",
  8146. "version": "v3.21.1",
  8147. "source": {
  8148. "type": "git",
  8149. "url": "https://github.com/twigphp/Twig.git",
  8150. "reference": "285123877d4dd97dd7c11842ac5fb7e86e60d81d"
  8151. },
  8152. "dist": {
  8153. "type": "zip",
  8154. "url": "https://api.github.com/repos/twigphp/Twig/zipball/285123877d4dd97dd7c11842ac5fb7e86e60d81d",
  8155. "reference": "285123877d4dd97dd7c11842ac5fb7e86e60d81d",
  8156. "shasum": ""
  8157. },
  8158. "require": {
  8159. "php": ">=8.1.0",
  8160. "symfony/deprecation-contracts": "^2.5|^3",
  8161. "symfony/polyfill-ctype": "^1.8",
  8162. "symfony/polyfill-mbstring": "^1.3"
  8163. },
  8164. "require-dev": {
  8165. "phpstan/phpstan": "^2.0",
  8166. "psr/container": "^1.0|^2.0",
  8167. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  8168. },
  8169. "type": "library",
  8170. "autoload": {
  8171. "files": [
  8172. "src/Resources/core.php",
  8173. "src/Resources/debug.php",
  8174. "src/Resources/escaper.php",
  8175. "src/Resources/string_loader.php"
  8176. ],
  8177. "psr-4": {
  8178. "Twig\\": "src/"
  8179. }
  8180. },
  8181. "notification-url": "https://packagist.org/downloads/",
  8182. "license": [
  8183. "BSD-3-Clause"
  8184. ],
  8185. "authors": [
  8186. {
  8187. "name": "Fabien Potencier",
  8188. "email": "fabien@symfony.com",
  8189. "homepage": "http://fabien.potencier.org",
  8190. "role": "Lead Developer"
  8191. },
  8192. {
  8193. "name": "Twig Team",
  8194. "role": "Contributors"
  8195. },
  8196. {
  8197. "name": "Armin Ronacher",
  8198. "email": "armin.ronacher@active-4.com",
  8199. "role": "Project Founder"
  8200. }
  8201. ],
  8202. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8203. "homepage": "https://twig.symfony.com",
  8204. "keywords": [
  8205. "templating"
  8206. ],
  8207. "support": {
  8208. "issues": "https://github.com/twigphp/Twig/issues",
  8209. "source": "https://github.com/twigphp/Twig/tree/v3.21.1"
  8210. },
  8211. "funding": [
  8212. {
  8213. "url": "https://github.com/fabpot",
  8214. "type": "github"
  8215. },
  8216. {
  8217. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8218. "type": "tidelift"
  8219. }
  8220. ],
  8221. "time": "2025-05-03T07:21:55+00:00"
  8222. },
  8223. {
  8224. "name": "webmozart/assert",
  8225. "version": "1.11.0",
  8226. "source": {
  8227. "type": "git",
  8228. "url": "https://github.com/webmozarts/assert.git",
  8229. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8230. },
  8231. "dist": {
  8232. "type": "zip",
  8233. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8234. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8235. "shasum": ""
  8236. },
  8237. "require": {
  8238. "ext-ctype": "*",
  8239. "php": "^7.2 || ^8.0"
  8240. },
  8241. "conflict": {
  8242. "phpstan/phpstan": "<0.12.20",
  8243. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8244. },
  8245. "require-dev": {
  8246. "phpunit/phpunit": "^8.5.13"
  8247. },
  8248. "type": "library",
  8249. "extra": {
  8250. "branch-alias": {
  8251. "dev-master": "1.10-dev"
  8252. }
  8253. },
  8254. "autoload": {
  8255. "psr-4": {
  8256. "Webmozart\\Assert\\": "src/"
  8257. }
  8258. },
  8259. "notification-url": "https://packagist.org/downloads/",
  8260. "license": [
  8261. "MIT"
  8262. ],
  8263. "authors": [
  8264. {
  8265. "name": "Bernhard Schussek",
  8266. "email": "bschussek@gmail.com"
  8267. }
  8268. ],
  8269. "description": "Assertions to validate method input/output with nice error messages.",
  8270. "keywords": [
  8271. "assert",
  8272. "check",
  8273. "validate"
  8274. ],
  8275. "support": {
  8276. "issues": "https://github.com/webmozarts/assert/issues",
  8277. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8278. },
  8279. "time": "2022-06-03T18:03:27+00:00"
  8280. }
  8281. ],
  8282. "packages-dev": [
  8283. {
  8284. "name": "masterminds/html5",
  8285. "version": "2.9.0",
  8286. "source": {
  8287. "type": "git",
  8288. "url": "https://github.com/Masterminds/html5-php.git",
  8289. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  8290. },
  8291. "dist": {
  8292. "type": "zip",
  8293. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  8294. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  8295. "shasum": ""
  8296. },
  8297. "require": {
  8298. "ext-dom": "*",
  8299. "php": ">=5.3.0"
  8300. },
  8301. "require-dev": {
  8302. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  8303. },
  8304. "type": "library",
  8305. "extra": {
  8306. "branch-alias": {
  8307. "dev-master": "2.7-dev"
  8308. }
  8309. },
  8310. "autoload": {
  8311. "psr-4": {
  8312. "Masterminds\\": "src"
  8313. }
  8314. },
  8315. "notification-url": "https://packagist.org/downloads/",
  8316. "license": [
  8317. "MIT"
  8318. ],
  8319. "authors": [
  8320. {
  8321. "name": "Matt Butcher",
  8322. "email": "technosophos@gmail.com"
  8323. },
  8324. {
  8325. "name": "Matt Farina",
  8326. "email": "matt@mattfarina.com"
  8327. },
  8328. {
  8329. "name": "Asmir Mustafic",
  8330. "email": "goetas@gmail.com"
  8331. }
  8332. ],
  8333. "description": "An HTML5 parser and serializer.",
  8334. "homepage": "http://masterminds.github.io/html5-php",
  8335. "keywords": [
  8336. "HTML5",
  8337. "dom",
  8338. "html",
  8339. "parser",
  8340. "querypath",
  8341. "serializer",
  8342. "xml"
  8343. ],
  8344. "support": {
  8345. "issues": "https://github.com/Masterminds/html5-php/issues",
  8346. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  8347. },
  8348. "time": "2024-03-31T07:05:07+00:00"
  8349. },
  8350. {
  8351. "name": "myclabs/deep-copy",
  8352. "version": "1.13.3",
  8353. "source": {
  8354. "type": "git",
  8355. "url": "https://github.com/myclabs/DeepCopy.git",
  8356. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
  8357. },
  8358. "dist": {
  8359. "type": "zip",
  8360. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
  8361. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
  8362. "shasum": ""
  8363. },
  8364. "require": {
  8365. "php": "^7.1 || ^8.0"
  8366. },
  8367. "conflict": {
  8368. "doctrine/collections": "<1.6.8",
  8369. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8370. },
  8371. "require-dev": {
  8372. "doctrine/collections": "^1.6.8",
  8373. "doctrine/common": "^2.13.3 || ^3.2.2",
  8374. "phpspec/prophecy": "^1.10",
  8375. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8376. },
  8377. "type": "library",
  8378. "autoload": {
  8379. "files": [
  8380. "src/DeepCopy/deep_copy.php"
  8381. ],
  8382. "psr-4": {
  8383. "DeepCopy\\": "src/DeepCopy/"
  8384. }
  8385. },
  8386. "notification-url": "https://packagist.org/downloads/",
  8387. "license": [
  8388. "MIT"
  8389. ],
  8390. "description": "Create deep copies (clones) of your objects",
  8391. "keywords": [
  8392. "clone",
  8393. "copy",
  8394. "duplicate",
  8395. "object",
  8396. "object graph"
  8397. ],
  8398. "support": {
  8399. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8400. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
  8401. },
  8402. "funding": [
  8403. {
  8404. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8405. "type": "tidelift"
  8406. }
  8407. ],
  8408. "time": "2025-07-05T12:25:42+00:00"
  8409. },
  8410. {
  8411. "name": "nikic/php-parser",
  8412. "version": "v5.5.0",
  8413. "source": {
  8414. "type": "git",
  8415. "url": "https://github.com/nikic/PHP-Parser.git",
  8416. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9"
  8417. },
  8418. "dist": {
  8419. "type": "zip",
  8420. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/ae59794362fe85e051a58ad36b289443f57be7a9",
  8421. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9",
  8422. "shasum": ""
  8423. },
  8424. "require": {
  8425. "ext-ctype": "*",
  8426. "ext-json": "*",
  8427. "ext-tokenizer": "*",
  8428. "php": ">=7.4"
  8429. },
  8430. "require-dev": {
  8431. "ircmaxell/php-yacc": "^0.0.7",
  8432. "phpunit/phpunit": "^9.0"
  8433. },
  8434. "bin": [
  8435. "bin/php-parse"
  8436. ],
  8437. "type": "library",
  8438. "extra": {
  8439. "branch-alias": {
  8440. "dev-master": "5.0-dev"
  8441. }
  8442. },
  8443. "autoload": {
  8444. "psr-4": {
  8445. "PhpParser\\": "lib/PhpParser"
  8446. }
  8447. },
  8448. "notification-url": "https://packagist.org/downloads/",
  8449. "license": [
  8450. "BSD-3-Clause"
  8451. ],
  8452. "authors": [
  8453. {
  8454. "name": "Nikita Popov"
  8455. }
  8456. ],
  8457. "description": "A PHP parser written in PHP",
  8458. "keywords": [
  8459. "parser",
  8460. "php"
  8461. ],
  8462. "support": {
  8463. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8464. "source": "https://github.com/nikic/PHP-Parser/tree/v5.5.0"
  8465. },
  8466. "time": "2025-05-31T08:24:38+00:00"
  8467. },
  8468. {
  8469. "name": "phar-io/manifest",
  8470. "version": "2.0.4",
  8471. "source": {
  8472. "type": "git",
  8473. "url": "https://github.com/phar-io/manifest.git",
  8474. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8475. },
  8476. "dist": {
  8477. "type": "zip",
  8478. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8479. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8480. "shasum": ""
  8481. },
  8482. "require": {
  8483. "ext-dom": "*",
  8484. "ext-libxml": "*",
  8485. "ext-phar": "*",
  8486. "ext-xmlwriter": "*",
  8487. "phar-io/version": "^3.0.1",
  8488. "php": "^7.2 || ^8.0"
  8489. },
  8490. "type": "library",
  8491. "extra": {
  8492. "branch-alias": {
  8493. "dev-master": "2.0.x-dev"
  8494. }
  8495. },
  8496. "autoload": {
  8497. "classmap": [
  8498. "src/"
  8499. ]
  8500. },
  8501. "notification-url": "https://packagist.org/downloads/",
  8502. "license": [
  8503. "BSD-3-Clause"
  8504. ],
  8505. "authors": [
  8506. {
  8507. "name": "Arne Blankerts",
  8508. "email": "arne@blankerts.de",
  8509. "role": "Developer"
  8510. },
  8511. {
  8512. "name": "Sebastian Heuer",
  8513. "email": "sebastian@phpeople.de",
  8514. "role": "Developer"
  8515. },
  8516. {
  8517. "name": "Sebastian Bergmann",
  8518. "email": "sebastian@phpunit.de",
  8519. "role": "Developer"
  8520. }
  8521. ],
  8522. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8523. "support": {
  8524. "issues": "https://github.com/phar-io/manifest/issues",
  8525. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8526. },
  8527. "funding": [
  8528. {
  8529. "url": "https://github.com/theseer",
  8530. "type": "github"
  8531. }
  8532. ],
  8533. "time": "2024-03-03T12:33:53+00:00"
  8534. },
  8535. {
  8536. "name": "phar-io/version",
  8537. "version": "3.2.1",
  8538. "source": {
  8539. "type": "git",
  8540. "url": "https://github.com/phar-io/version.git",
  8541. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8542. },
  8543. "dist": {
  8544. "type": "zip",
  8545. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8546. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8547. "shasum": ""
  8548. },
  8549. "require": {
  8550. "php": "^7.2 || ^8.0"
  8551. },
  8552. "type": "library",
  8553. "autoload": {
  8554. "classmap": [
  8555. "src/"
  8556. ]
  8557. },
  8558. "notification-url": "https://packagist.org/downloads/",
  8559. "license": [
  8560. "BSD-3-Clause"
  8561. ],
  8562. "authors": [
  8563. {
  8564. "name": "Arne Blankerts",
  8565. "email": "arne@blankerts.de",
  8566. "role": "Developer"
  8567. },
  8568. {
  8569. "name": "Sebastian Heuer",
  8570. "email": "sebastian@phpeople.de",
  8571. "role": "Developer"
  8572. },
  8573. {
  8574. "name": "Sebastian Bergmann",
  8575. "email": "sebastian@phpunit.de",
  8576. "role": "Developer"
  8577. }
  8578. ],
  8579. "description": "Library for handling version information and constraints",
  8580. "support": {
  8581. "issues": "https://github.com/phar-io/version/issues",
  8582. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8583. },
  8584. "time": "2022-02-21T01:04:05+00:00"
  8585. },
  8586. {
  8587. "name": "phpunit/php-code-coverage",
  8588. "version": "12.3.1",
  8589. "source": {
  8590. "type": "git",
  8591. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8592. "reference": "ddec29dfc128eba9c204389960f2063f3b7fa170"
  8593. },
  8594. "dist": {
  8595. "type": "zip",
  8596. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ddec29dfc128eba9c204389960f2063f3b7fa170",
  8597. "reference": "ddec29dfc128eba9c204389960f2063f3b7fa170",
  8598. "shasum": ""
  8599. },
  8600. "require": {
  8601. "ext-dom": "*",
  8602. "ext-libxml": "*",
  8603. "ext-xmlwriter": "*",
  8604. "nikic/php-parser": "^5.4.0",
  8605. "php": ">=8.3",
  8606. "phpunit/php-file-iterator": "^6.0",
  8607. "phpunit/php-text-template": "^5.0",
  8608. "sebastian/complexity": "^5.0",
  8609. "sebastian/environment": "^8.0",
  8610. "sebastian/lines-of-code": "^4.0",
  8611. "sebastian/version": "^6.0",
  8612. "theseer/tokenizer": "^1.2.3"
  8613. },
  8614. "require-dev": {
  8615. "phpunit/phpunit": "^12.1"
  8616. },
  8617. "suggest": {
  8618. "ext-pcov": "PHP extension that provides line coverage",
  8619. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8620. },
  8621. "type": "library",
  8622. "extra": {
  8623. "branch-alias": {
  8624. "dev-main": "12.3.x-dev"
  8625. }
  8626. },
  8627. "autoload": {
  8628. "classmap": [
  8629. "src/"
  8630. ]
  8631. },
  8632. "notification-url": "https://packagist.org/downloads/",
  8633. "license": [
  8634. "BSD-3-Clause"
  8635. ],
  8636. "authors": [
  8637. {
  8638. "name": "Sebastian Bergmann",
  8639. "email": "sebastian@phpunit.de",
  8640. "role": "lead"
  8641. }
  8642. ],
  8643. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8644. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8645. "keywords": [
  8646. "coverage",
  8647. "testing",
  8648. "xunit"
  8649. ],
  8650. "support": {
  8651. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8652. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8653. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/12.3.1"
  8654. },
  8655. "funding": [
  8656. {
  8657. "url": "https://github.com/sebastianbergmann",
  8658. "type": "github"
  8659. },
  8660. {
  8661. "url": "https://liberapay.com/sebastianbergmann",
  8662. "type": "liberapay"
  8663. },
  8664. {
  8665. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  8666. "type": "thanks_dev"
  8667. },
  8668. {
  8669. "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage",
  8670. "type": "tidelift"
  8671. }
  8672. ],
  8673. "time": "2025-06-18T08:58:13+00:00"
  8674. },
  8675. {
  8676. "name": "phpunit/php-file-iterator",
  8677. "version": "6.0.0",
  8678. "source": {
  8679. "type": "git",
  8680. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8681. "reference": "961bc913d42fe24a257bfff826a5068079ac7782"
  8682. },
  8683. "dist": {
  8684. "type": "zip",
  8685. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/961bc913d42fe24a257bfff826a5068079ac7782",
  8686. "reference": "961bc913d42fe24a257bfff826a5068079ac7782",
  8687. "shasum": ""
  8688. },
  8689. "require": {
  8690. "php": ">=8.3"
  8691. },
  8692. "require-dev": {
  8693. "phpunit/phpunit": "^12.0"
  8694. },
  8695. "type": "library",
  8696. "extra": {
  8697. "branch-alias": {
  8698. "dev-main": "6.0-dev"
  8699. }
  8700. },
  8701. "autoload": {
  8702. "classmap": [
  8703. "src/"
  8704. ]
  8705. },
  8706. "notification-url": "https://packagist.org/downloads/",
  8707. "license": [
  8708. "BSD-3-Clause"
  8709. ],
  8710. "authors": [
  8711. {
  8712. "name": "Sebastian Bergmann",
  8713. "email": "sebastian@phpunit.de",
  8714. "role": "lead"
  8715. }
  8716. ],
  8717. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8718. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8719. "keywords": [
  8720. "filesystem",
  8721. "iterator"
  8722. ],
  8723. "support": {
  8724. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8725. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8726. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/6.0.0"
  8727. },
  8728. "funding": [
  8729. {
  8730. "url": "https://github.com/sebastianbergmann",
  8731. "type": "github"
  8732. }
  8733. ],
  8734. "time": "2025-02-07T04:58:37+00:00"
  8735. },
  8736. {
  8737. "name": "phpunit/php-invoker",
  8738. "version": "6.0.0",
  8739. "source": {
  8740. "type": "git",
  8741. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8742. "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406"
  8743. },
  8744. "dist": {
  8745. "type": "zip",
  8746. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/12b54e689b07a25a9b41e57736dfab6ec9ae5406",
  8747. "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406",
  8748. "shasum": ""
  8749. },
  8750. "require": {
  8751. "php": ">=8.3"
  8752. },
  8753. "require-dev": {
  8754. "ext-pcntl": "*",
  8755. "phpunit/phpunit": "^12.0"
  8756. },
  8757. "suggest": {
  8758. "ext-pcntl": "*"
  8759. },
  8760. "type": "library",
  8761. "extra": {
  8762. "branch-alias": {
  8763. "dev-main": "6.0-dev"
  8764. }
  8765. },
  8766. "autoload": {
  8767. "classmap": [
  8768. "src/"
  8769. ]
  8770. },
  8771. "notification-url": "https://packagist.org/downloads/",
  8772. "license": [
  8773. "BSD-3-Clause"
  8774. ],
  8775. "authors": [
  8776. {
  8777. "name": "Sebastian Bergmann",
  8778. "email": "sebastian@phpunit.de",
  8779. "role": "lead"
  8780. }
  8781. ],
  8782. "description": "Invoke callables with a timeout",
  8783. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8784. "keywords": [
  8785. "process"
  8786. ],
  8787. "support": {
  8788. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8789. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  8790. "source": "https://github.com/sebastianbergmann/php-invoker/tree/6.0.0"
  8791. },
  8792. "funding": [
  8793. {
  8794. "url": "https://github.com/sebastianbergmann",
  8795. "type": "github"
  8796. }
  8797. ],
  8798. "time": "2025-02-07T04:58:58+00:00"
  8799. },
  8800. {
  8801. "name": "phpunit/php-text-template",
  8802. "version": "5.0.0",
  8803. "source": {
  8804. "type": "git",
  8805. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8806. "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53"
  8807. },
  8808. "dist": {
  8809. "type": "zip",
  8810. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/e1367a453f0eda562eedb4f659e13aa900d66c53",
  8811. "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53",
  8812. "shasum": ""
  8813. },
  8814. "require": {
  8815. "php": ">=8.3"
  8816. },
  8817. "require-dev": {
  8818. "phpunit/phpunit": "^12.0"
  8819. },
  8820. "type": "library",
  8821. "extra": {
  8822. "branch-alias": {
  8823. "dev-main": "5.0-dev"
  8824. }
  8825. },
  8826. "autoload": {
  8827. "classmap": [
  8828. "src/"
  8829. ]
  8830. },
  8831. "notification-url": "https://packagist.org/downloads/",
  8832. "license": [
  8833. "BSD-3-Clause"
  8834. ],
  8835. "authors": [
  8836. {
  8837. "name": "Sebastian Bergmann",
  8838. "email": "sebastian@phpunit.de",
  8839. "role": "lead"
  8840. }
  8841. ],
  8842. "description": "Simple template engine.",
  8843. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8844. "keywords": [
  8845. "template"
  8846. ],
  8847. "support": {
  8848. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8849. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8850. "source": "https://github.com/sebastianbergmann/php-text-template/tree/5.0.0"
  8851. },
  8852. "funding": [
  8853. {
  8854. "url": "https://github.com/sebastianbergmann",
  8855. "type": "github"
  8856. }
  8857. ],
  8858. "time": "2025-02-07T04:59:16+00:00"
  8859. },
  8860. {
  8861. "name": "phpunit/php-timer",
  8862. "version": "8.0.0",
  8863. "source": {
  8864. "type": "git",
  8865. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8866. "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc"
  8867. },
  8868. "dist": {
  8869. "type": "zip",
  8870. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc",
  8871. "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc",
  8872. "shasum": ""
  8873. },
  8874. "require": {
  8875. "php": ">=8.3"
  8876. },
  8877. "require-dev": {
  8878. "phpunit/phpunit": "^12.0"
  8879. },
  8880. "type": "library",
  8881. "extra": {
  8882. "branch-alias": {
  8883. "dev-main": "8.0-dev"
  8884. }
  8885. },
  8886. "autoload": {
  8887. "classmap": [
  8888. "src/"
  8889. ]
  8890. },
  8891. "notification-url": "https://packagist.org/downloads/",
  8892. "license": [
  8893. "BSD-3-Clause"
  8894. ],
  8895. "authors": [
  8896. {
  8897. "name": "Sebastian Bergmann",
  8898. "email": "sebastian@phpunit.de",
  8899. "role": "lead"
  8900. }
  8901. ],
  8902. "description": "Utility class for timing",
  8903. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8904. "keywords": [
  8905. "timer"
  8906. ],
  8907. "support": {
  8908. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8909. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  8910. "source": "https://github.com/sebastianbergmann/php-timer/tree/8.0.0"
  8911. },
  8912. "funding": [
  8913. {
  8914. "url": "https://github.com/sebastianbergmann",
  8915. "type": "github"
  8916. }
  8917. ],
  8918. "time": "2025-02-07T04:59:38+00:00"
  8919. },
  8920. {
  8921. "name": "phpunit/phpunit",
  8922. "version": "12.2.7",
  8923. "source": {
  8924. "type": "git",
  8925. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8926. "reference": "8b1348b254e5959acaf1539c6bd790515fb49414"
  8927. },
  8928. "dist": {
  8929. "type": "zip",
  8930. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8b1348b254e5959acaf1539c6bd790515fb49414",
  8931. "reference": "8b1348b254e5959acaf1539c6bd790515fb49414",
  8932. "shasum": ""
  8933. },
  8934. "require": {
  8935. "ext-dom": "*",
  8936. "ext-json": "*",
  8937. "ext-libxml": "*",
  8938. "ext-mbstring": "*",
  8939. "ext-xml": "*",
  8940. "ext-xmlwriter": "*",
  8941. "myclabs/deep-copy": "^1.13.3",
  8942. "phar-io/manifest": "^2.0.4",
  8943. "phar-io/version": "^3.2.1",
  8944. "php": ">=8.3",
  8945. "phpunit/php-code-coverage": "^12.3.1",
  8946. "phpunit/php-file-iterator": "^6.0.0",
  8947. "phpunit/php-invoker": "^6.0.0",
  8948. "phpunit/php-text-template": "^5.0.0",
  8949. "phpunit/php-timer": "^8.0.0",
  8950. "sebastian/cli-parser": "^4.0.0",
  8951. "sebastian/comparator": "^7.1.0",
  8952. "sebastian/diff": "^7.0.0",
  8953. "sebastian/environment": "^8.0.2",
  8954. "sebastian/exporter": "^7.0.0",
  8955. "sebastian/global-state": "^8.0.0",
  8956. "sebastian/object-enumerator": "^7.0.0",
  8957. "sebastian/type": "^6.0.2",
  8958. "sebastian/version": "^6.0.0",
  8959. "staabm/side-effects-detector": "^1.0.5"
  8960. },
  8961. "bin": [
  8962. "phpunit"
  8963. ],
  8964. "type": "library",
  8965. "extra": {
  8966. "branch-alias": {
  8967. "dev-main": "12.2-dev"
  8968. }
  8969. },
  8970. "autoload": {
  8971. "files": [
  8972. "src/Framework/Assert/Functions.php"
  8973. ],
  8974. "classmap": [
  8975. "src/"
  8976. ]
  8977. },
  8978. "notification-url": "https://packagist.org/downloads/",
  8979. "license": [
  8980. "BSD-3-Clause"
  8981. ],
  8982. "authors": [
  8983. {
  8984. "name": "Sebastian Bergmann",
  8985. "email": "sebastian@phpunit.de",
  8986. "role": "lead"
  8987. }
  8988. ],
  8989. "description": "The PHP Unit Testing framework.",
  8990. "homepage": "https://phpunit.de/",
  8991. "keywords": [
  8992. "phpunit",
  8993. "testing",
  8994. "xunit"
  8995. ],
  8996. "support": {
  8997. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8998. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8999. "source": "https://github.com/sebastianbergmann/phpunit/tree/12.2.7"
  9000. },
  9001. "funding": [
  9002. {
  9003. "url": "https://phpunit.de/sponsors.html",
  9004. "type": "custom"
  9005. },
  9006. {
  9007. "url": "https://github.com/sebastianbergmann",
  9008. "type": "github"
  9009. },
  9010. {
  9011. "url": "https://liberapay.com/sebastianbergmann",
  9012. "type": "liberapay"
  9013. },
  9014. {
  9015. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9016. "type": "thanks_dev"
  9017. },
  9018. {
  9019. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9020. "type": "tidelift"
  9021. }
  9022. ],
  9023. "time": "2025-07-11T04:11:13+00:00"
  9024. },
  9025. {
  9026. "name": "sebastian/cli-parser",
  9027. "version": "4.0.0",
  9028. "source": {
  9029. "type": "git",
  9030. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9031. "reference": "6d584c727d9114bcdc14c86711cd1cad51778e7c"
  9032. },
  9033. "dist": {
  9034. "type": "zip",
  9035. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/6d584c727d9114bcdc14c86711cd1cad51778e7c",
  9036. "reference": "6d584c727d9114bcdc14c86711cd1cad51778e7c",
  9037. "shasum": ""
  9038. },
  9039. "require": {
  9040. "php": ">=8.3"
  9041. },
  9042. "require-dev": {
  9043. "phpunit/phpunit": "^12.0"
  9044. },
  9045. "type": "library",
  9046. "extra": {
  9047. "branch-alias": {
  9048. "dev-main": "4.0-dev"
  9049. }
  9050. },
  9051. "autoload": {
  9052. "classmap": [
  9053. "src/"
  9054. ]
  9055. },
  9056. "notification-url": "https://packagist.org/downloads/",
  9057. "license": [
  9058. "BSD-3-Clause"
  9059. ],
  9060. "authors": [
  9061. {
  9062. "name": "Sebastian Bergmann",
  9063. "email": "sebastian@phpunit.de",
  9064. "role": "lead"
  9065. }
  9066. ],
  9067. "description": "Library for parsing CLI options",
  9068. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9069. "support": {
  9070. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9071. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9072. "source": "https://github.com/sebastianbergmann/cli-parser/tree/4.0.0"
  9073. },
  9074. "funding": [
  9075. {
  9076. "url": "https://github.com/sebastianbergmann",
  9077. "type": "github"
  9078. }
  9079. ],
  9080. "time": "2025-02-07T04:53:50+00:00"
  9081. },
  9082. {
  9083. "name": "sebastian/comparator",
  9084. "version": "7.1.0",
  9085. "source": {
  9086. "type": "git",
  9087. "url": "https://github.com/sebastianbergmann/comparator.git",
  9088. "reference": "03d905327dccc0851c9a08d6a979dfc683826b6f"
  9089. },
  9090. "dist": {
  9091. "type": "zip",
  9092. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/03d905327dccc0851c9a08d6a979dfc683826b6f",
  9093. "reference": "03d905327dccc0851c9a08d6a979dfc683826b6f",
  9094. "shasum": ""
  9095. },
  9096. "require": {
  9097. "ext-dom": "*",
  9098. "ext-mbstring": "*",
  9099. "php": ">=8.3",
  9100. "sebastian/diff": "^7.0",
  9101. "sebastian/exporter": "^7.0"
  9102. },
  9103. "require-dev": {
  9104. "phpunit/phpunit": "^12.2"
  9105. },
  9106. "suggest": {
  9107. "ext-bcmath": "For comparing BcMath\\Number objects"
  9108. },
  9109. "type": "library",
  9110. "extra": {
  9111. "branch-alias": {
  9112. "dev-main": "7.1-dev"
  9113. }
  9114. },
  9115. "autoload": {
  9116. "classmap": [
  9117. "src/"
  9118. ]
  9119. },
  9120. "notification-url": "https://packagist.org/downloads/",
  9121. "license": [
  9122. "BSD-3-Clause"
  9123. ],
  9124. "authors": [
  9125. {
  9126. "name": "Sebastian Bergmann",
  9127. "email": "sebastian@phpunit.de"
  9128. },
  9129. {
  9130. "name": "Jeff Welch",
  9131. "email": "whatthejeff@gmail.com"
  9132. },
  9133. {
  9134. "name": "Volker Dusch",
  9135. "email": "github@wallbash.com"
  9136. },
  9137. {
  9138. "name": "Bernhard Schussek",
  9139. "email": "bschussek@2bepublished.at"
  9140. }
  9141. ],
  9142. "description": "Provides the functionality to compare PHP values for equality",
  9143. "homepage": "https://github.com/sebastianbergmann/comparator",
  9144. "keywords": [
  9145. "comparator",
  9146. "compare",
  9147. "equality"
  9148. ],
  9149. "support": {
  9150. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9151. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9152. "source": "https://github.com/sebastianbergmann/comparator/tree/7.1.0"
  9153. },
  9154. "funding": [
  9155. {
  9156. "url": "https://github.com/sebastianbergmann",
  9157. "type": "github"
  9158. },
  9159. {
  9160. "url": "https://liberapay.com/sebastianbergmann",
  9161. "type": "liberapay"
  9162. },
  9163. {
  9164. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9165. "type": "thanks_dev"
  9166. },
  9167. {
  9168. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  9169. "type": "tidelift"
  9170. }
  9171. ],
  9172. "time": "2025-06-17T07:41:58+00:00"
  9173. },
  9174. {
  9175. "name": "sebastian/complexity",
  9176. "version": "5.0.0",
  9177. "source": {
  9178. "type": "git",
  9179. "url": "https://github.com/sebastianbergmann/complexity.git",
  9180. "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb"
  9181. },
  9182. "dist": {
  9183. "type": "zip",
  9184. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/bad4316aba5303d0221f43f8cee37eb58d384bbb",
  9185. "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb",
  9186. "shasum": ""
  9187. },
  9188. "require": {
  9189. "nikic/php-parser": "^5.0",
  9190. "php": ">=8.3"
  9191. },
  9192. "require-dev": {
  9193. "phpunit/phpunit": "^12.0"
  9194. },
  9195. "type": "library",
  9196. "extra": {
  9197. "branch-alias": {
  9198. "dev-main": "5.0-dev"
  9199. }
  9200. },
  9201. "autoload": {
  9202. "classmap": [
  9203. "src/"
  9204. ]
  9205. },
  9206. "notification-url": "https://packagist.org/downloads/",
  9207. "license": [
  9208. "BSD-3-Clause"
  9209. ],
  9210. "authors": [
  9211. {
  9212. "name": "Sebastian Bergmann",
  9213. "email": "sebastian@phpunit.de",
  9214. "role": "lead"
  9215. }
  9216. ],
  9217. "description": "Library for calculating the complexity of PHP code units",
  9218. "homepage": "https://github.com/sebastianbergmann/complexity",
  9219. "support": {
  9220. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9221. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9222. "source": "https://github.com/sebastianbergmann/complexity/tree/5.0.0"
  9223. },
  9224. "funding": [
  9225. {
  9226. "url": "https://github.com/sebastianbergmann",
  9227. "type": "github"
  9228. }
  9229. ],
  9230. "time": "2025-02-07T04:55:25+00:00"
  9231. },
  9232. {
  9233. "name": "sebastian/diff",
  9234. "version": "7.0.0",
  9235. "source": {
  9236. "type": "git",
  9237. "url": "https://github.com/sebastianbergmann/diff.git",
  9238. "reference": "7ab1ea946c012266ca32390913653d844ecd085f"
  9239. },
  9240. "dist": {
  9241. "type": "zip",
  9242. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7ab1ea946c012266ca32390913653d844ecd085f",
  9243. "reference": "7ab1ea946c012266ca32390913653d844ecd085f",
  9244. "shasum": ""
  9245. },
  9246. "require": {
  9247. "php": ">=8.3"
  9248. },
  9249. "require-dev": {
  9250. "phpunit/phpunit": "^12.0",
  9251. "symfony/process": "^7.2"
  9252. },
  9253. "type": "library",
  9254. "extra": {
  9255. "branch-alias": {
  9256. "dev-main": "7.0-dev"
  9257. }
  9258. },
  9259. "autoload": {
  9260. "classmap": [
  9261. "src/"
  9262. ]
  9263. },
  9264. "notification-url": "https://packagist.org/downloads/",
  9265. "license": [
  9266. "BSD-3-Clause"
  9267. ],
  9268. "authors": [
  9269. {
  9270. "name": "Sebastian Bergmann",
  9271. "email": "sebastian@phpunit.de"
  9272. },
  9273. {
  9274. "name": "Kore Nordmann",
  9275. "email": "mail@kore-nordmann.de"
  9276. }
  9277. ],
  9278. "description": "Diff implementation",
  9279. "homepage": "https://github.com/sebastianbergmann/diff",
  9280. "keywords": [
  9281. "diff",
  9282. "udiff",
  9283. "unidiff",
  9284. "unified diff"
  9285. ],
  9286. "support": {
  9287. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9288. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9289. "source": "https://github.com/sebastianbergmann/diff/tree/7.0.0"
  9290. },
  9291. "funding": [
  9292. {
  9293. "url": "https://github.com/sebastianbergmann",
  9294. "type": "github"
  9295. }
  9296. ],
  9297. "time": "2025-02-07T04:55:46+00:00"
  9298. },
  9299. {
  9300. "name": "sebastian/environment",
  9301. "version": "8.0.2",
  9302. "source": {
  9303. "type": "git",
  9304. "url": "https://github.com/sebastianbergmann/environment.git",
  9305. "reference": "d364b9e5d0d3b18a2573351a1786fbf96b7e0792"
  9306. },
  9307. "dist": {
  9308. "type": "zip",
  9309. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d364b9e5d0d3b18a2573351a1786fbf96b7e0792",
  9310. "reference": "d364b9e5d0d3b18a2573351a1786fbf96b7e0792",
  9311. "shasum": ""
  9312. },
  9313. "require": {
  9314. "php": ">=8.3"
  9315. },
  9316. "require-dev": {
  9317. "phpunit/phpunit": "^12.0"
  9318. },
  9319. "suggest": {
  9320. "ext-posix": "*"
  9321. },
  9322. "type": "library",
  9323. "extra": {
  9324. "branch-alias": {
  9325. "dev-main": "8.0-dev"
  9326. }
  9327. },
  9328. "autoload": {
  9329. "classmap": [
  9330. "src/"
  9331. ]
  9332. },
  9333. "notification-url": "https://packagist.org/downloads/",
  9334. "license": [
  9335. "BSD-3-Clause"
  9336. ],
  9337. "authors": [
  9338. {
  9339. "name": "Sebastian Bergmann",
  9340. "email": "sebastian@phpunit.de"
  9341. }
  9342. ],
  9343. "description": "Provides functionality to handle HHVM/PHP environments",
  9344. "homepage": "https://github.com/sebastianbergmann/environment",
  9345. "keywords": [
  9346. "Xdebug",
  9347. "environment",
  9348. "hhvm"
  9349. ],
  9350. "support": {
  9351. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9352. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9353. "source": "https://github.com/sebastianbergmann/environment/tree/8.0.2"
  9354. },
  9355. "funding": [
  9356. {
  9357. "url": "https://github.com/sebastianbergmann",
  9358. "type": "github"
  9359. },
  9360. {
  9361. "url": "https://liberapay.com/sebastianbergmann",
  9362. "type": "liberapay"
  9363. },
  9364. {
  9365. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9366. "type": "thanks_dev"
  9367. },
  9368. {
  9369. "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
  9370. "type": "tidelift"
  9371. }
  9372. ],
  9373. "time": "2025-05-21T15:05:44+00:00"
  9374. },
  9375. {
  9376. "name": "sebastian/exporter",
  9377. "version": "7.0.0",
  9378. "source": {
  9379. "type": "git",
  9380. "url": "https://github.com/sebastianbergmann/exporter.git",
  9381. "reference": "76432aafc58d50691a00d86d0632f1217a47b688"
  9382. },
  9383. "dist": {
  9384. "type": "zip",
  9385. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/76432aafc58d50691a00d86d0632f1217a47b688",
  9386. "reference": "76432aafc58d50691a00d86d0632f1217a47b688",
  9387. "shasum": ""
  9388. },
  9389. "require": {
  9390. "ext-mbstring": "*",
  9391. "php": ">=8.3",
  9392. "sebastian/recursion-context": "^7.0"
  9393. },
  9394. "require-dev": {
  9395. "phpunit/phpunit": "^12.0"
  9396. },
  9397. "type": "library",
  9398. "extra": {
  9399. "branch-alias": {
  9400. "dev-main": "7.0-dev"
  9401. }
  9402. },
  9403. "autoload": {
  9404. "classmap": [
  9405. "src/"
  9406. ]
  9407. },
  9408. "notification-url": "https://packagist.org/downloads/",
  9409. "license": [
  9410. "BSD-3-Clause"
  9411. ],
  9412. "authors": [
  9413. {
  9414. "name": "Sebastian Bergmann",
  9415. "email": "sebastian@phpunit.de"
  9416. },
  9417. {
  9418. "name": "Jeff Welch",
  9419. "email": "whatthejeff@gmail.com"
  9420. },
  9421. {
  9422. "name": "Volker Dusch",
  9423. "email": "github@wallbash.com"
  9424. },
  9425. {
  9426. "name": "Adam Harvey",
  9427. "email": "aharvey@php.net"
  9428. },
  9429. {
  9430. "name": "Bernhard Schussek",
  9431. "email": "bschussek@gmail.com"
  9432. }
  9433. ],
  9434. "description": "Provides the functionality to export PHP variables for visualization",
  9435. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9436. "keywords": [
  9437. "export",
  9438. "exporter"
  9439. ],
  9440. "support": {
  9441. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9442. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9443. "source": "https://github.com/sebastianbergmann/exporter/tree/7.0.0"
  9444. },
  9445. "funding": [
  9446. {
  9447. "url": "https://github.com/sebastianbergmann",
  9448. "type": "github"
  9449. }
  9450. ],
  9451. "time": "2025-02-07T04:56:42+00:00"
  9452. },
  9453. {
  9454. "name": "sebastian/global-state",
  9455. "version": "8.0.0",
  9456. "source": {
  9457. "type": "git",
  9458. "url": "https://github.com/sebastianbergmann/global-state.git",
  9459. "reference": "570a2aeb26d40f057af686d63c4e99b075fb6cbc"
  9460. },
  9461. "dist": {
  9462. "type": "zip",
  9463. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/570a2aeb26d40f057af686d63c4e99b075fb6cbc",
  9464. "reference": "570a2aeb26d40f057af686d63c4e99b075fb6cbc",
  9465. "shasum": ""
  9466. },
  9467. "require": {
  9468. "php": ">=8.3",
  9469. "sebastian/object-reflector": "^5.0",
  9470. "sebastian/recursion-context": "^7.0"
  9471. },
  9472. "require-dev": {
  9473. "ext-dom": "*",
  9474. "phpunit/phpunit": "^12.0"
  9475. },
  9476. "type": "library",
  9477. "extra": {
  9478. "branch-alias": {
  9479. "dev-main": "8.0-dev"
  9480. }
  9481. },
  9482. "autoload": {
  9483. "classmap": [
  9484. "src/"
  9485. ]
  9486. },
  9487. "notification-url": "https://packagist.org/downloads/",
  9488. "license": [
  9489. "BSD-3-Clause"
  9490. ],
  9491. "authors": [
  9492. {
  9493. "name": "Sebastian Bergmann",
  9494. "email": "sebastian@phpunit.de"
  9495. }
  9496. ],
  9497. "description": "Snapshotting of global state",
  9498. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9499. "keywords": [
  9500. "global state"
  9501. ],
  9502. "support": {
  9503. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9504. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9505. "source": "https://github.com/sebastianbergmann/global-state/tree/8.0.0"
  9506. },
  9507. "funding": [
  9508. {
  9509. "url": "https://github.com/sebastianbergmann",
  9510. "type": "github"
  9511. }
  9512. ],
  9513. "time": "2025-02-07T04:56:59+00:00"
  9514. },
  9515. {
  9516. "name": "sebastian/lines-of-code",
  9517. "version": "4.0.0",
  9518. "source": {
  9519. "type": "git",
  9520. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9521. "reference": "97ffee3bcfb5805568d6af7f0f893678fc076d2f"
  9522. },
  9523. "dist": {
  9524. "type": "zip",
  9525. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/97ffee3bcfb5805568d6af7f0f893678fc076d2f",
  9526. "reference": "97ffee3bcfb5805568d6af7f0f893678fc076d2f",
  9527. "shasum": ""
  9528. },
  9529. "require": {
  9530. "nikic/php-parser": "^5.0",
  9531. "php": ">=8.3"
  9532. },
  9533. "require-dev": {
  9534. "phpunit/phpunit": "^12.0"
  9535. },
  9536. "type": "library",
  9537. "extra": {
  9538. "branch-alias": {
  9539. "dev-main": "4.0-dev"
  9540. }
  9541. },
  9542. "autoload": {
  9543. "classmap": [
  9544. "src/"
  9545. ]
  9546. },
  9547. "notification-url": "https://packagist.org/downloads/",
  9548. "license": [
  9549. "BSD-3-Clause"
  9550. ],
  9551. "authors": [
  9552. {
  9553. "name": "Sebastian Bergmann",
  9554. "email": "sebastian@phpunit.de",
  9555. "role": "lead"
  9556. }
  9557. ],
  9558. "description": "Library for counting the lines of code in PHP source code",
  9559. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9560. "support": {
  9561. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9562. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9563. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/4.0.0"
  9564. },
  9565. "funding": [
  9566. {
  9567. "url": "https://github.com/sebastianbergmann",
  9568. "type": "github"
  9569. }
  9570. ],
  9571. "time": "2025-02-07T04:57:28+00:00"
  9572. },
  9573. {
  9574. "name": "sebastian/object-enumerator",
  9575. "version": "7.0.0",
  9576. "source": {
  9577. "type": "git",
  9578. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9579. "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894"
  9580. },
  9581. "dist": {
  9582. "type": "zip",
  9583. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1effe8e9b8e068e9ae228e542d5d11b5d16db894",
  9584. "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894",
  9585. "shasum": ""
  9586. },
  9587. "require": {
  9588. "php": ">=8.3",
  9589. "sebastian/object-reflector": "^5.0",
  9590. "sebastian/recursion-context": "^7.0"
  9591. },
  9592. "require-dev": {
  9593. "phpunit/phpunit": "^12.0"
  9594. },
  9595. "type": "library",
  9596. "extra": {
  9597. "branch-alias": {
  9598. "dev-main": "7.0-dev"
  9599. }
  9600. },
  9601. "autoload": {
  9602. "classmap": [
  9603. "src/"
  9604. ]
  9605. },
  9606. "notification-url": "https://packagist.org/downloads/",
  9607. "license": [
  9608. "BSD-3-Clause"
  9609. ],
  9610. "authors": [
  9611. {
  9612. "name": "Sebastian Bergmann",
  9613. "email": "sebastian@phpunit.de"
  9614. }
  9615. ],
  9616. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9617. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9618. "support": {
  9619. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9620. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  9621. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/7.0.0"
  9622. },
  9623. "funding": [
  9624. {
  9625. "url": "https://github.com/sebastianbergmann",
  9626. "type": "github"
  9627. }
  9628. ],
  9629. "time": "2025-02-07T04:57:48+00:00"
  9630. },
  9631. {
  9632. "name": "sebastian/object-reflector",
  9633. "version": "5.0.0",
  9634. "source": {
  9635. "type": "git",
  9636. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9637. "reference": "4bfa827c969c98be1e527abd576533293c634f6a"
  9638. },
  9639. "dist": {
  9640. "type": "zip",
  9641. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/4bfa827c969c98be1e527abd576533293c634f6a",
  9642. "reference": "4bfa827c969c98be1e527abd576533293c634f6a",
  9643. "shasum": ""
  9644. },
  9645. "require": {
  9646. "php": ">=8.3"
  9647. },
  9648. "require-dev": {
  9649. "phpunit/phpunit": "^12.0"
  9650. },
  9651. "type": "library",
  9652. "extra": {
  9653. "branch-alias": {
  9654. "dev-main": "5.0-dev"
  9655. }
  9656. },
  9657. "autoload": {
  9658. "classmap": [
  9659. "src/"
  9660. ]
  9661. },
  9662. "notification-url": "https://packagist.org/downloads/",
  9663. "license": [
  9664. "BSD-3-Clause"
  9665. ],
  9666. "authors": [
  9667. {
  9668. "name": "Sebastian Bergmann",
  9669. "email": "sebastian@phpunit.de"
  9670. }
  9671. ],
  9672. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9673. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9674. "support": {
  9675. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9676. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  9677. "source": "https://github.com/sebastianbergmann/object-reflector/tree/5.0.0"
  9678. },
  9679. "funding": [
  9680. {
  9681. "url": "https://github.com/sebastianbergmann",
  9682. "type": "github"
  9683. }
  9684. ],
  9685. "time": "2025-02-07T04:58:17+00:00"
  9686. },
  9687. {
  9688. "name": "sebastian/recursion-context",
  9689. "version": "7.0.0",
  9690. "source": {
  9691. "type": "git",
  9692. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9693. "reference": "c405ae3a63e01b32eb71577f8ec1604e39858a7c"
  9694. },
  9695. "dist": {
  9696. "type": "zip",
  9697. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/c405ae3a63e01b32eb71577f8ec1604e39858a7c",
  9698. "reference": "c405ae3a63e01b32eb71577f8ec1604e39858a7c",
  9699. "shasum": ""
  9700. },
  9701. "require": {
  9702. "php": ">=8.3"
  9703. },
  9704. "require-dev": {
  9705. "phpunit/phpunit": "^12.0"
  9706. },
  9707. "type": "library",
  9708. "extra": {
  9709. "branch-alias": {
  9710. "dev-main": "7.0-dev"
  9711. }
  9712. },
  9713. "autoload": {
  9714. "classmap": [
  9715. "src/"
  9716. ]
  9717. },
  9718. "notification-url": "https://packagist.org/downloads/",
  9719. "license": [
  9720. "BSD-3-Clause"
  9721. ],
  9722. "authors": [
  9723. {
  9724. "name": "Sebastian Bergmann",
  9725. "email": "sebastian@phpunit.de"
  9726. },
  9727. {
  9728. "name": "Jeff Welch",
  9729. "email": "whatthejeff@gmail.com"
  9730. },
  9731. {
  9732. "name": "Adam Harvey",
  9733. "email": "aharvey@php.net"
  9734. }
  9735. ],
  9736. "description": "Provides functionality to recursively process PHP variables",
  9737. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9738. "support": {
  9739. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9740. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  9741. "source": "https://github.com/sebastianbergmann/recursion-context/tree/7.0.0"
  9742. },
  9743. "funding": [
  9744. {
  9745. "url": "https://github.com/sebastianbergmann",
  9746. "type": "github"
  9747. }
  9748. ],
  9749. "time": "2025-02-07T05:00:01+00:00"
  9750. },
  9751. {
  9752. "name": "sebastian/type",
  9753. "version": "6.0.2",
  9754. "source": {
  9755. "type": "git",
  9756. "url": "https://github.com/sebastianbergmann/type.git",
  9757. "reference": "1d7cd6e514384c36d7a390347f57c385d4be6069"
  9758. },
  9759. "dist": {
  9760. "type": "zip",
  9761. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/1d7cd6e514384c36d7a390347f57c385d4be6069",
  9762. "reference": "1d7cd6e514384c36d7a390347f57c385d4be6069",
  9763. "shasum": ""
  9764. },
  9765. "require": {
  9766. "php": ">=8.3"
  9767. },
  9768. "require-dev": {
  9769. "phpunit/phpunit": "^12.0"
  9770. },
  9771. "type": "library",
  9772. "extra": {
  9773. "branch-alias": {
  9774. "dev-main": "6.0-dev"
  9775. }
  9776. },
  9777. "autoload": {
  9778. "classmap": [
  9779. "src/"
  9780. ]
  9781. },
  9782. "notification-url": "https://packagist.org/downloads/",
  9783. "license": [
  9784. "BSD-3-Clause"
  9785. ],
  9786. "authors": [
  9787. {
  9788. "name": "Sebastian Bergmann",
  9789. "email": "sebastian@phpunit.de",
  9790. "role": "lead"
  9791. }
  9792. ],
  9793. "description": "Collection of value objects that represent the types of the PHP type system",
  9794. "homepage": "https://github.com/sebastianbergmann/type",
  9795. "support": {
  9796. "issues": "https://github.com/sebastianbergmann/type/issues",
  9797. "security": "https://github.com/sebastianbergmann/type/security/policy",
  9798. "source": "https://github.com/sebastianbergmann/type/tree/6.0.2"
  9799. },
  9800. "funding": [
  9801. {
  9802. "url": "https://github.com/sebastianbergmann",
  9803. "type": "github"
  9804. }
  9805. ],
  9806. "time": "2025-03-18T13:37:31+00:00"
  9807. },
  9808. {
  9809. "name": "sebastian/version",
  9810. "version": "6.0.0",
  9811. "source": {
  9812. "type": "git",
  9813. "url": "https://github.com/sebastianbergmann/version.git",
  9814. "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c"
  9815. },
  9816. "dist": {
  9817. "type": "zip",
  9818. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/3e6ccf7657d4f0a59200564b08cead899313b53c",
  9819. "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c",
  9820. "shasum": ""
  9821. },
  9822. "require": {
  9823. "php": ">=8.3"
  9824. },
  9825. "type": "library",
  9826. "extra": {
  9827. "branch-alias": {
  9828. "dev-main": "6.0-dev"
  9829. }
  9830. },
  9831. "autoload": {
  9832. "classmap": [
  9833. "src/"
  9834. ]
  9835. },
  9836. "notification-url": "https://packagist.org/downloads/",
  9837. "license": [
  9838. "BSD-3-Clause"
  9839. ],
  9840. "authors": [
  9841. {
  9842. "name": "Sebastian Bergmann",
  9843. "email": "sebastian@phpunit.de",
  9844. "role": "lead"
  9845. }
  9846. ],
  9847. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9848. "homepage": "https://github.com/sebastianbergmann/version",
  9849. "support": {
  9850. "issues": "https://github.com/sebastianbergmann/version/issues",
  9851. "security": "https://github.com/sebastianbergmann/version/security/policy",
  9852. "source": "https://github.com/sebastianbergmann/version/tree/6.0.0"
  9853. },
  9854. "funding": [
  9855. {
  9856. "url": "https://github.com/sebastianbergmann",
  9857. "type": "github"
  9858. }
  9859. ],
  9860. "time": "2025-02-07T05:00:38+00:00"
  9861. },
  9862. {
  9863. "name": "staabm/side-effects-detector",
  9864. "version": "1.0.5",
  9865. "source": {
  9866. "type": "git",
  9867. "url": "https://github.com/staabm/side-effects-detector.git",
  9868. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  9869. },
  9870. "dist": {
  9871. "type": "zip",
  9872. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  9873. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  9874. "shasum": ""
  9875. },
  9876. "require": {
  9877. "ext-tokenizer": "*",
  9878. "php": "^7.4 || ^8.0"
  9879. },
  9880. "require-dev": {
  9881. "phpstan/extension-installer": "^1.4.3",
  9882. "phpstan/phpstan": "^1.12.6",
  9883. "phpunit/phpunit": "^9.6.21",
  9884. "symfony/var-dumper": "^5.4.43",
  9885. "tomasvotruba/type-coverage": "1.0.0",
  9886. "tomasvotruba/unused-public": "1.0.0"
  9887. },
  9888. "type": "library",
  9889. "autoload": {
  9890. "classmap": [
  9891. "lib/"
  9892. ]
  9893. },
  9894. "notification-url": "https://packagist.org/downloads/",
  9895. "license": [
  9896. "MIT"
  9897. ],
  9898. "description": "A static analysis tool to detect side effects in PHP code",
  9899. "keywords": [
  9900. "static analysis"
  9901. ],
  9902. "support": {
  9903. "issues": "https://github.com/staabm/side-effects-detector/issues",
  9904. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  9905. },
  9906. "funding": [
  9907. {
  9908. "url": "https://github.com/staabm",
  9909. "type": "github"
  9910. }
  9911. ],
  9912. "time": "2024-10-20T05:08:20+00:00"
  9913. },
  9914. {
  9915. "name": "symfony/browser-kit",
  9916. "version": "v7.3.0",
  9917. "source": {
  9918. "type": "git",
  9919. "url": "https://github.com/symfony/browser-kit.git",
  9920. "reference": "5384291845e74fd7d54f3d925c4a86ce12336593"
  9921. },
  9922. "dist": {
  9923. "type": "zip",
  9924. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/5384291845e74fd7d54f3d925c4a86ce12336593",
  9925. "reference": "5384291845e74fd7d54f3d925c4a86ce12336593",
  9926. "shasum": ""
  9927. },
  9928. "require": {
  9929. "php": ">=8.2",
  9930. "symfony/dom-crawler": "^6.4|^7.0"
  9931. },
  9932. "require-dev": {
  9933. "symfony/css-selector": "^6.4|^7.0",
  9934. "symfony/http-client": "^6.4|^7.0",
  9935. "symfony/mime": "^6.4|^7.0",
  9936. "symfony/process": "^6.4|^7.0"
  9937. },
  9938. "type": "library",
  9939. "autoload": {
  9940. "psr-4": {
  9941. "Symfony\\Component\\BrowserKit\\": ""
  9942. },
  9943. "exclude-from-classmap": [
  9944. "/Tests/"
  9945. ]
  9946. },
  9947. "notification-url": "https://packagist.org/downloads/",
  9948. "license": [
  9949. "MIT"
  9950. ],
  9951. "authors": [
  9952. {
  9953. "name": "Fabien Potencier",
  9954. "email": "fabien@symfony.com"
  9955. },
  9956. {
  9957. "name": "Symfony Community",
  9958. "homepage": "https://symfony.com/contributors"
  9959. }
  9960. ],
  9961. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  9962. "homepage": "https://symfony.com",
  9963. "support": {
  9964. "source": "https://github.com/symfony/browser-kit/tree/v7.3.0"
  9965. },
  9966. "funding": [
  9967. {
  9968. "url": "https://symfony.com/sponsor",
  9969. "type": "custom"
  9970. },
  9971. {
  9972. "url": "https://github.com/fabpot",
  9973. "type": "github"
  9974. },
  9975. {
  9976. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9977. "type": "tidelift"
  9978. }
  9979. ],
  9980. "time": "2025-03-05T10:15:41+00:00"
  9981. },
  9982. {
  9983. "name": "symfony/css-selector",
  9984. "version": "v7.3.0",
  9985. "source": {
  9986. "type": "git",
  9987. "url": "https://github.com/symfony/css-selector.git",
  9988. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  9989. },
  9990. "dist": {
  9991. "type": "zip",
  9992. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  9993. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  9994. "shasum": ""
  9995. },
  9996. "require": {
  9997. "php": ">=8.2"
  9998. },
  9999. "type": "library",
  10000. "autoload": {
  10001. "psr-4": {
  10002. "Symfony\\Component\\CssSelector\\": ""
  10003. },
  10004. "exclude-from-classmap": [
  10005. "/Tests/"
  10006. ]
  10007. },
  10008. "notification-url": "https://packagist.org/downloads/",
  10009. "license": [
  10010. "MIT"
  10011. ],
  10012. "authors": [
  10013. {
  10014. "name": "Fabien Potencier",
  10015. "email": "fabien@symfony.com"
  10016. },
  10017. {
  10018. "name": "Jean-François Simon",
  10019. "email": "jeanfrancois.simon@sensiolabs.com"
  10020. },
  10021. {
  10022. "name": "Symfony Community",
  10023. "homepage": "https://symfony.com/contributors"
  10024. }
  10025. ],
  10026. "description": "Converts CSS selectors to XPath expressions",
  10027. "homepage": "https://symfony.com",
  10028. "support": {
  10029. "source": "https://github.com/symfony/css-selector/tree/v7.3.0"
  10030. },
  10031. "funding": [
  10032. {
  10033. "url": "https://symfony.com/sponsor",
  10034. "type": "custom"
  10035. },
  10036. {
  10037. "url": "https://github.com/fabpot",
  10038. "type": "github"
  10039. },
  10040. {
  10041. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10042. "type": "tidelift"
  10043. }
  10044. ],
  10045. "time": "2024-09-25T14:21:43+00:00"
  10046. },
  10047. {
  10048. "name": "symfony/debug-bundle",
  10049. "version": "v7.3.0",
  10050. "source": {
  10051. "type": "git",
  10052. "url": "https://github.com/symfony/debug-bundle.git",
  10053. "reference": "781acc90f31f5fe18915f9276890864ebbbe3da8"
  10054. },
  10055. "dist": {
  10056. "type": "zip",
  10057. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/781acc90f31f5fe18915f9276890864ebbbe3da8",
  10058. "reference": "781acc90f31f5fe18915f9276890864ebbbe3da8",
  10059. "shasum": ""
  10060. },
  10061. "require": {
  10062. "composer-runtime-api": ">=2.1",
  10063. "ext-xml": "*",
  10064. "php": ">=8.2",
  10065. "symfony/config": "^7.3",
  10066. "symfony/dependency-injection": "^6.4|^7.0",
  10067. "symfony/http-kernel": "^6.4|^7.0",
  10068. "symfony/twig-bridge": "^6.4|^7.0",
  10069. "symfony/var-dumper": "^6.4|^7.0"
  10070. },
  10071. "require-dev": {
  10072. "symfony/web-profiler-bundle": "^6.4|^7.0"
  10073. },
  10074. "type": "symfony-bundle",
  10075. "autoload": {
  10076. "psr-4": {
  10077. "Symfony\\Bundle\\DebugBundle\\": ""
  10078. },
  10079. "exclude-from-classmap": [
  10080. "/Tests/"
  10081. ]
  10082. },
  10083. "notification-url": "https://packagist.org/downloads/",
  10084. "license": [
  10085. "MIT"
  10086. ],
  10087. "authors": [
  10088. {
  10089. "name": "Fabien Potencier",
  10090. "email": "fabien@symfony.com"
  10091. },
  10092. {
  10093. "name": "Symfony Community",
  10094. "homepage": "https://symfony.com/contributors"
  10095. }
  10096. ],
  10097. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10098. "homepage": "https://symfony.com",
  10099. "support": {
  10100. "source": "https://github.com/symfony/debug-bundle/tree/v7.3.0"
  10101. },
  10102. "funding": [
  10103. {
  10104. "url": "https://symfony.com/sponsor",
  10105. "type": "custom"
  10106. },
  10107. {
  10108. "url": "https://github.com/fabpot",
  10109. "type": "github"
  10110. },
  10111. {
  10112. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10113. "type": "tidelift"
  10114. }
  10115. ],
  10116. "time": "2025-05-04T13:21:13+00:00"
  10117. },
  10118. {
  10119. "name": "symfony/dom-crawler",
  10120. "version": "v7.3.1",
  10121. "source": {
  10122. "type": "git",
  10123. "url": "https://github.com/symfony/dom-crawler.git",
  10124. "reference": "8b2ee2e06ab99fa5f067b6699296d4e35c156bb9"
  10125. },
  10126. "dist": {
  10127. "type": "zip",
  10128. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/8b2ee2e06ab99fa5f067b6699296d4e35c156bb9",
  10129. "reference": "8b2ee2e06ab99fa5f067b6699296d4e35c156bb9",
  10130. "shasum": ""
  10131. },
  10132. "require": {
  10133. "masterminds/html5": "^2.6",
  10134. "php": ">=8.2",
  10135. "symfony/polyfill-ctype": "~1.8",
  10136. "symfony/polyfill-mbstring": "~1.0"
  10137. },
  10138. "require-dev": {
  10139. "symfony/css-selector": "^6.4|^7.0"
  10140. },
  10141. "type": "library",
  10142. "autoload": {
  10143. "psr-4": {
  10144. "Symfony\\Component\\DomCrawler\\": ""
  10145. },
  10146. "exclude-from-classmap": [
  10147. "/Tests/"
  10148. ]
  10149. },
  10150. "notification-url": "https://packagist.org/downloads/",
  10151. "license": [
  10152. "MIT"
  10153. ],
  10154. "authors": [
  10155. {
  10156. "name": "Fabien Potencier",
  10157. "email": "fabien@symfony.com"
  10158. },
  10159. {
  10160. "name": "Symfony Community",
  10161. "homepage": "https://symfony.com/contributors"
  10162. }
  10163. ],
  10164. "description": "Eases DOM navigation for HTML and XML documents",
  10165. "homepage": "https://symfony.com",
  10166. "support": {
  10167. "source": "https://github.com/symfony/dom-crawler/tree/v7.3.1"
  10168. },
  10169. "funding": [
  10170. {
  10171. "url": "https://symfony.com/sponsor",
  10172. "type": "custom"
  10173. },
  10174. {
  10175. "url": "https://github.com/fabpot",
  10176. "type": "github"
  10177. },
  10178. {
  10179. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10180. "type": "tidelift"
  10181. }
  10182. ],
  10183. "time": "2025-06-15T10:07:06+00:00"
  10184. },
  10185. {
  10186. "name": "symfony/maker-bundle",
  10187. "version": "v1.64.0",
  10188. "source": {
  10189. "type": "git",
  10190. "url": "https://github.com/symfony/maker-bundle.git",
  10191. "reference": "c86da84640b0586e92aee2b276ee3638ef2f425a"
  10192. },
  10193. "dist": {
  10194. "type": "zip",
  10195. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/c86da84640b0586e92aee2b276ee3638ef2f425a",
  10196. "reference": "c86da84640b0586e92aee2b276ee3638ef2f425a",
  10197. "shasum": ""
  10198. },
  10199. "require": {
  10200. "doctrine/inflector": "^2.0",
  10201. "nikic/php-parser": "^5.0",
  10202. "php": ">=8.1",
  10203. "symfony/config": "^6.4|^7.0",
  10204. "symfony/console": "^6.4|^7.0",
  10205. "symfony/dependency-injection": "^6.4|^7.0",
  10206. "symfony/deprecation-contracts": "^2.2|^3",
  10207. "symfony/filesystem": "^6.4|^7.0",
  10208. "symfony/finder": "^6.4|^7.0",
  10209. "symfony/framework-bundle": "^6.4|^7.0",
  10210. "symfony/http-kernel": "^6.4|^7.0",
  10211. "symfony/process": "^6.4|^7.0"
  10212. },
  10213. "conflict": {
  10214. "doctrine/doctrine-bundle": "<2.10",
  10215. "doctrine/orm": "<2.15"
  10216. },
  10217. "require-dev": {
  10218. "composer/semver": "^3.0",
  10219. "doctrine/doctrine-bundle": "^2.5.0",
  10220. "doctrine/orm": "^2.15|^3",
  10221. "symfony/http-client": "^6.4|^7.0",
  10222. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  10223. "symfony/security-core": "^6.4|^7.0",
  10224. "symfony/security-http": "^6.4|^7.0",
  10225. "symfony/yaml": "^6.4|^7.0",
  10226. "twig/twig": "^3.0|^4.x-dev"
  10227. },
  10228. "type": "symfony-bundle",
  10229. "extra": {
  10230. "branch-alias": {
  10231. "dev-main": "1.x-dev"
  10232. }
  10233. },
  10234. "autoload": {
  10235. "psr-4": {
  10236. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10237. }
  10238. },
  10239. "notification-url": "https://packagist.org/downloads/",
  10240. "license": [
  10241. "MIT"
  10242. ],
  10243. "authors": [
  10244. {
  10245. "name": "Symfony Community",
  10246. "homepage": "https://symfony.com/contributors"
  10247. }
  10248. ],
  10249. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10250. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10251. "keywords": [
  10252. "code generator",
  10253. "dev",
  10254. "generator",
  10255. "scaffold",
  10256. "scaffolding"
  10257. ],
  10258. "support": {
  10259. "issues": "https://github.com/symfony/maker-bundle/issues",
  10260. "source": "https://github.com/symfony/maker-bundle/tree/v1.64.0"
  10261. },
  10262. "funding": [
  10263. {
  10264. "url": "https://symfony.com/sponsor",
  10265. "type": "custom"
  10266. },
  10267. {
  10268. "url": "https://github.com/fabpot",
  10269. "type": "github"
  10270. },
  10271. {
  10272. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10273. "type": "tidelift"
  10274. }
  10275. ],
  10276. "time": "2025-06-23T16:12:08+00:00"
  10277. },
  10278. {
  10279. "name": "symfony/web-profiler-bundle",
  10280. "version": "v7.3.1",
  10281. "source": {
  10282. "type": "git",
  10283. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10284. "reference": "47c994d8f08817122ffb48bf2ea4fb97b7e00d51"
  10285. },
  10286. "dist": {
  10287. "type": "zip",
  10288. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/47c994d8f08817122ffb48bf2ea4fb97b7e00d51",
  10289. "reference": "47c994d8f08817122ffb48bf2ea4fb97b7e00d51",
  10290. "shasum": ""
  10291. },
  10292. "require": {
  10293. "composer-runtime-api": ">=2.1",
  10294. "php": ">=8.2",
  10295. "symfony/config": "^7.3",
  10296. "symfony/deprecation-contracts": "^2.5|^3",
  10297. "symfony/framework-bundle": "^6.4|^7.0",
  10298. "symfony/http-kernel": "^6.4|^7.0",
  10299. "symfony/routing": "^6.4|^7.0",
  10300. "symfony/twig-bundle": "^6.4|^7.0",
  10301. "twig/twig": "^3.12"
  10302. },
  10303. "conflict": {
  10304. "symfony/form": "<6.4",
  10305. "symfony/mailer": "<6.4",
  10306. "symfony/messenger": "<6.4",
  10307. "symfony/serializer": "<7.2",
  10308. "symfony/workflow": "<7.3"
  10309. },
  10310. "require-dev": {
  10311. "symfony/browser-kit": "^6.4|^7.0",
  10312. "symfony/console": "^6.4|^7.0",
  10313. "symfony/css-selector": "^6.4|^7.0",
  10314. "symfony/stopwatch": "^6.4|^7.0"
  10315. },
  10316. "type": "symfony-bundle",
  10317. "autoload": {
  10318. "psr-4": {
  10319. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10320. },
  10321. "exclude-from-classmap": [
  10322. "/Tests/"
  10323. ]
  10324. },
  10325. "notification-url": "https://packagist.org/downloads/",
  10326. "license": [
  10327. "MIT"
  10328. ],
  10329. "authors": [
  10330. {
  10331. "name": "Fabien Potencier",
  10332. "email": "fabien@symfony.com"
  10333. },
  10334. {
  10335. "name": "Symfony Community",
  10336. "homepage": "https://symfony.com/contributors"
  10337. }
  10338. ],
  10339. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10340. "homepage": "https://symfony.com",
  10341. "keywords": [
  10342. "dev"
  10343. ],
  10344. "support": {
  10345. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.3.1"
  10346. },
  10347. "funding": [
  10348. {
  10349. "url": "https://symfony.com/sponsor",
  10350. "type": "custom"
  10351. },
  10352. {
  10353. "url": "https://github.com/fabpot",
  10354. "type": "github"
  10355. },
  10356. {
  10357. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10358. "type": "tidelift"
  10359. }
  10360. ],
  10361. "time": "2025-06-05T09:30:41+00:00"
  10362. },
  10363. {
  10364. "name": "theseer/tokenizer",
  10365. "version": "1.2.3",
  10366. "source": {
  10367. "type": "git",
  10368. "url": "https://github.com/theseer/tokenizer.git",
  10369. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10370. },
  10371. "dist": {
  10372. "type": "zip",
  10373. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10374. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10375. "shasum": ""
  10376. },
  10377. "require": {
  10378. "ext-dom": "*",
  10379. "ext-tokenizer": "*",
  10380. "ext-xmlwriter": "*",
  10381. "php": "^7.2 || ^8.0"
  10382. },
  10383. "type": "library",
  10384. "autoload": {
  10385. "classmap": [
  10386. "src/"
  10387. ]
  10388. },
  10389. "notification-url": "https://packagist.org/downloads/",
  10390. "license": [
  10391. "BSD-3-Clause"
  10392. ],
  10393. "authors": [
  10394. {
  10395. "name": "Arne Blankerts",
  10396. "email": "arne@blankerts.de",
  10397. "role": "Developer"
  10398. }
  10399. ],
  10400. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10401. "support": {
  10402. "issues": "https://github.com/theseer/tokenizer/issues",
  10403. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10404. },
  10405. "funding": [
  10406. {
  10407. "url": "https://github.com/theseer",
  10408. "type": "github"
  10409. }
  10410. ],
  10411. "time": "2024-03-03T12:36:25+00:00"
  10412. }
  10413. ],
  10414. "aliases": [],
  10415. "minimum-stability": "stable",
  10416. "stability-flags": {},
  10417. "prefer-stable": true,
  10418. "prefer-lowest": false,
  10419. "platform": {
  10420. "php": ">=8.2",
  10421. "ext-ctype": "*",
  10422. "ext-iconv": "*"
  10423. },
  10424. "platform-dev": {},
  10425. "plugin-api-version": "2.6.0"
  10426. }