composer.lock 352 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719
  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": "f17c83386904be5fbae1adf19e62b937",
  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": "monolog/monolog",
  1286. "version": "3.9.0",
  1287. "source": {
  1288. "type": "git",
  1289. "url": "https://github.com/Seldaek/monolog.git",
  1290. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  1291. },
  1292. "dist": {
  1293. "type": "zip",
  1294. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  1295. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  1296. "shasum": ""
  1297. },
  1298. "require": {
  1299. "php": ">=8.1",
  1300. "psr/log": "^2.0 || ^3.0"
  1301. },
  1302. "provide": {
  1303. "psr/log-implementation": "3.0.0"
  1304. },
  1305. "require-dev": {
  1306. "aws/aws-sdk-php": "^3.0",
  1307. "doctrine/couchdb": "~1.0@dev",
  1308. "elasticsearch/elasticsearch": "^7 || ^8",
  1309. "ext-json": "*",
  1310. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  1311. "guzzlehttp/guzzle": "^7.4.5",
  1312. "guzzlehttp/psr7": "^2.2",
  1313. "mongodb/mongodb": "^1.8",
  1314. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1315. "php-console/php-console": "^3.1.8",
  1316. "phpstan/phpstan": "^2",
  1317. "phpstan/phpstan-deprecation-rules": "^2",
  1318. "phpstan/phpstan-strict-rules": "^2",
  1319. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  1320. "predis/predis": "^1.1 || ^2",
  1321. "rollbar/rollbar": "^4.0",
  1322. "ruflin/elastica": "^7 || ^8",
  1323. "symfony/mailer": "^5.4 || ^6",
  1324. "symfony/mime": "^5.4 || ^6"
  1325. },
  1326. "suggest": {
  1327. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1328. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1329. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1330. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1331. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1332. "ext-mbstring": "Allow to work properly with unicode symbols",
  1333. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1334. "ext-openssl": "Required to send log messages using SSL",
  1335. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1336. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1337. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1338. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1339. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1340. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1341. },
  1342. "type": "library",
  1343. "extra": {
  1344. "branch-alias": {
  1345. "dev-main": "3.x-dev"
  1346. }
  1347. },
  1348. "autoload": {
  1349. "psr-4": {
  1350. "Monolog\\": "src/Monolog"
  1351. }
  1352. },
  1353. "notification-url": "https://packagist.org/downloads/",
  1354. "license": [
  1355. "MIT"
  1356. ],
  1357. "authors": [
  1358. {
  1359. "name": "Jordi Boggiano",
  1360. "email": "j.boggiano@seld.be",
  1361. "homepage": "https://seld.be"
  1362. }
  1363. ],
  1364. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1365. "homepage": "https://github.com/Seldaek/monolog",
  1366. "keywords": [
  1367. "log",
  1368. "logging",
  1369. "psr-3"
  1370. ],
  1371. "support": {
  1372. "issues": "https://github.com/Seldaek/monolog/issues",
  1373. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  1374. },
  1375. "funding": [
  1376. {
  1377. "url": "https://github.com/Seldaek",
  1378. "type": "github"
  1379. },
  1380. {
  1381. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1382. "type": "tidelift"
  1383. }
  1384. ],
  1385. "time": "2025-03-24T10:02:05+00:00"
  1386. },
  1387. {
  1388. "name": "phpdocumentor/reflection-common",
  1389. "version": "2.2.0",
  1390. "source": {
  1391. "type": "git",
  1392. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1393. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  1394. },
  1395. "dist": {
  1396. "type": "zip",
  1397. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1398. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1399. "shasum": ""
  1400. },
  1401. "require": {
  1402. "php": "^7.2 || ^8.0"
  1403. },
  1404. "type": "library",
  1405. "extra": {
  1406. "branch-alias": {
  1407. "dev-2.x": "2.x-dev"
  1408. }
  1409. },
  1410. "autoload": {
  1411. "psr-4": {
  1412. "phpDocumentor\\Reflection\\": "src/"
  1413. }
  1414. },
  1415. "notification-url": "https://packagist.org/downloads/",
  1416. "license": [
  1417. "MIT"
  1418. ],
  1419. "authors": [
  1420. {
  1421. "name": "Jaap van Otterdijk",
  1422. "email": "opensource@ijaap.nl"
  1423. }
  1424. ],
  1425. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1426. "homepage": "http://www.phpdoc.org",
  1427. "keywords": [
  1428. "FQSEN",
  1429. "phpDocumentor",
  1430. "phpdoc",
  1431. "reflection",
  1432. "static analysis"
  1433. ],
  1434. "support": {
  1435. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  1436. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  1437. },
  1438. "time": "2020-06-27T09:03:43+00:00"
  1439. },
  1440. {
  1441. "name": "phpdocumentor/reflection-docblock",
  1442. "version": "5.6.2",
  1443. "source": {
  1444. "type": "git",
  1445. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1446. "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62"
  1447. },
  1448. "dist": {
  1449. "type": "zip",
  1450. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/92dde6a5919e34835c506ac8c523ef095a95ed62",
  1451. "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62",
  1452. "shasum": ""
  1453. },
  1454. "require": {
  1455. "doctrine/deprecations": "^1.1",
  1456. "ext-filter": "*",
  1457. "php": "^7.4 || ^8.0",
  1458. "phpdocumentor/reflection-common": "^2.2",
  1459. "phpdocumentor/type-resolver": "^1.7",
  1460. "phpstan/phpdoc-parser": "^1.7|^2.0",
  1461. "webmozart/assert": "^1.9.1"
  1462. },
  1463. "require-dev": {
  1464. "mockery/mockery": "~1.3.5 || ~1.6.0",
  1465. "phpstan/extension-installer": "^1.1",
  1466. "phpstan/phpstan": "^1.8",
  1467. "phpstan/phpstan-mockery": "^1.1",
  1468. "phpstan/phpstan-webmozart-assert": "^1.2",
  1469. "phpunit/phpunit": "^9.5",
  1470. "psalm/phar": "^5.26"
  1471. },
  1472. "type": "library",
  1473. "extra": {
  1474. "branch-alias": {
  1475. "dev-master": "5.x-dev"
  1476. }
  1477. },
  1478. "autoload": {
  1479. "psr-4": {
  1480. "phpDocumentor\\Reflection\\": "src"
  1481. }
  1482. },
  1483. "notification-url": "https://packagist.org/downloads/",
  1484. "license": [
  1485. "MIT"
  1486. ],
  1487. "authors": [
  1488. {
  1489. "name": "Mike van Riel",
  1490. "email": "me@mikevanriel.com"
  1491. },
  1492. {
  1493. "name": "Jaap van Otterdijk",
  1494. "email": "opensource@ijaap.nl"
  1495. }
  1496. ],
  1497. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1498. "support": {
  1499. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  1500. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.2"
  1501. },
  1502. "time": "2025-04-13T19:20:35+00:00"
  1503. },
  1504. {
  1505. "name": "phpdocumentor/type-resolver",
  1506. "version": "1.10.0",
  1507. "source": {
  1508. "type": "git",
  1509. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1510. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  1511. },
  1512. "dist": {
  1513. "type": "zip",
  1514. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  1515. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  1516. "shasum": ""
  1517. },
  1518. "require": {
  1519. "doctrine/deprecations": "^1.0",
  1520. "php": "^7.3 || ^8.0",
  1521. "phpdocumentor/reflection-common": "^2.0",
  1522. "phpstan/phpdoc-parser": "^1.18|^2.0"
  1523. },
  1524. "require-dev": {
  1525. "ext-tokenizer": "*",
  1526. "phpbench/phpbench": "^1.2",
  1527. "phpstan/extension-installer": "^1.1",
  1528. "phpstan/phpstan": "^1.8",
  1529. "phpstan/phpstan-phpunit": "^1.1",
  1530. "phpunit/phpunit": "^9.5",
  1531. "rector/rector": "^0.13.9",
  1532. "vimeo/psalm": "^4.25"
  1533. },
  1534. "type": "library",
  1535. "extra": {
  1536. "branch-alias": {
  1537. "dev-1.x": "1.x-dev"
  1538. }
  1539. },
  1540. "autoload": {
  1541. "psr-4": {
  1542. "phpDocumentor\\Reflection\\": "src"
  1543. }
  1544. },
  1545. "notification-url": "https://packagist.org/downloads/",
  1546. "license": [
  1547. "MIT"
  1548. ],
  1549. "authors": [
  1550. {
  1551. "name": "Mike van Riel",
  1552. "email": "me@mikevanriel.com"
  1553. }
  1554. ],
  1555. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  1556. "support": {
  1557. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  1558. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  1559. },
  1560. "time": "2024-11-09T15:12:26+00:00"
  1561. },
  1562. {
  1563. "name": "phpstan/phpdoc-parser",
  1564. "version": "2.2.0",
  1565. "source": {
  1566. "type": "git",
  1567. "url": "https://github.com/phpstan/phpdoc-parser.git",
  1568. "reference": "b9e61a61e39e02dd90944e9115241c7f7e76bfd8"
  1569. },
  1570. "dist": {
  1571. "type": "zip",
  1572. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/b9e61a61e39e02dd90944e9115241c7f7e76bfd8",
  1573. "reference": "b9e61a61e39e02dd90944e9115241c7f7e76bfd8",
  1574. "shasum": ""
  1575. },
  1576. "require": {
  1577. "php": "^7.4 || ^8.0"
  1578. },
  1579. "require-dev": {
  1580. "doctrine/annotations": "^2.0",
  1581. "nikic/php-parser": "^5.3.0",
  1582. "php-parallel-lint/php-parallel-lint": "^1.2",
  1583. "phpstan/extension-installer": "^1.0",
  1584. "phpstan/phpstan": "^2.0",
  1585. "phpstan/phpstan-phpunit": "^2.0",
  1586. "phpstan/phpstan-strict-rules": "^2.0",
  1587. "phpunit/phpunit": "^9.6",
  1588. "symfony/process": "^5.2"
  1589. },
  1590. "type": "library",
  1591. "autoload": {
  1592. "psr-4": {
  1593. "PHPStan\\PhpDocParser\\": [
  1594. "src/"
  1595. ]
  1596. }
  1597. },
  1598. "notification-url": "https://packagist.org/downloads/",
  1599. "license": [
  1600. "MIT"
  1601. ],
  1602. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  1603. "support": {
  1604. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  1605. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.2.0"
  1606. },
  1607. "time": "2025-07-13T07:04:09+00:00"
  1608. },
  1609. {
  1610. "name": "psr/cache",
  1611. "version": "3.0.0",
  1612. "source": {
  1613. "type": "git",
  1614. "url": "https://github.com/php-fig/cache.git",
  1615. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  1616. },
  1617. "dist": {
  1618. "type": "zip",
  1619. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1620. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1621. "shasum": ""
  1622. },
  1623. "require": {
  1624. "php": ">=8.0.0"
  1625. },
  1626. "type": "library",
  1627. "extra": {
  1628. "branch-alias": {
  1629. "dev-master": "1.0.x-dev"
  1630. }
  1631. },
  1632. "autoload": {
  1633. "psr-4": {
  1634. "Psr\\Cache\\": "src/"
  1635. }
  1636. },
  1637. "notification-url": "https://packagist.org/downloads/",
  1638. "license": [
  1639. "MIT"
  1640. ],
  1641. "authors": [
  1642. {
  1643. "name": "PHP-FIG",
  1644. "homepage": "https://www.php-fig.org/"
  1645. }
  1646. ],
  1647. "description": "Common interface for caching libraries",
  1648. "keywords": [
  1649. "cache",
  1650. "psr",
  1651. "psr-6"
  1652. ],
  1653. "support": {
  1654. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  1655. },
  1656. "time": "2021-02-03T23:26:27+00:00"
  1657. },
  1658. {
  1659. "name": "psr/clock",
  1660. "version": "1.0.0",
  1661. "source": {
  1662. "type": "git",
  1663. "url": "https://github.com/php-fig/clock.git",
  1664. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  1665. },
  1666. "dist": {
  1667. "type": "zip",
  1668. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1669. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1670. "shasum": ""
  1671. },
  1672. "require": {
  1673. "php": "^7.0 || ^8.0"
  1674. },
  1675. "type": "library",
  1676. "autoload": {
  1677. "psr-4": {
  1678. "Psr\\Clock\\": "src/"
  1679. }
  1680. },
  1681. "notification-url": "https://packagist.org/downloads/",
  1682. "license": [
  1683. "MIT"
  1684. ],
  1685. "authors": [
  1686. {
  1687. "name": "PHP-FIG",
  1688. "homepage": "https://www.php-fig.org/"
  1689. }
  1690. ],
  1691. "description": "Common interface for reading the clock.",
  1692. "homepage": "https://github.com/php-fig/clock",
  1693. "keywords": [
  1694. "clock",
  1695. "now",
  1696. "psr",
  1697. "psr-20",
  1698. "time"
  1699. ],
  1700. "support": {
  1701. "issues": "https://github.com/php-fig/clock/issues",
  1702. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  1703. },
  1704. "time": "2022-11-25T14:36:26+00:00"
  1705. },
  1706. {
  1707. "name": "psr/container",
  1708. "version": "2.0.2",
  1709. "source": {
  1710. "type": "git",
  1711. "url": "https://github.com/php-fig/container.git",
  1712. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  1713. },
  1714. "dist": {
  1715. "type": "zip",
  1716. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1717. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1718. "shasum": ""
  1719. },
  1720. "require": {
  1721. "php": ">=7.4.0"
  1722. },
  1723. "type": "library",
  1724. "extra": {
  1725. "branch-alias": {
  1726. "dev-master": "2.0.x-dev"
  1727. }
  1728. },
  1729. "autoload": {
  1730. "psr-4": {
  1731. "Psr\\Container\\": "src/"
  1732. }
  1733. },
  1734. "notification-url": "https://packagist.org/downloads/",
  1735. "license": [
  1736. "MIT"
  1737. ],
  1738. "authors": [
  1739. {
  1740. "name": "PHP-FIG",
  1741. "homepage": "https://www.php-fig.org/"
  1742. }
  1743. ],
  1744. "description": "Common Container Interface (PHP FIG PSR-11)",
  1745. "homepage": "https://github.com/php-fig/container",
  1746. "keywords": [
  1747. "PSR-11",
  1748. "container",
  1749. "container-interface",
  1750. "container-interop",
  1751. "psr"
  1752. ],
  1753. "support": {
  1754. "issues": "https://github.com/php-fig/container/issues",
  1755. "source": "https://github.com/php-fig/container/tree/2.0.2"
  1756. },
  1757. "time": "2021-11-05T16:47:00+00:00"
  1758. },
  1759. {
  1760. "name": "psr/event-dispatcher",
  1761. "version": "1.0.0",
  1762. "source": {
  1763. "type": "git",
  1764. "url": "https://github.com/php-fig/event-dispatcher.git",
  1765. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1766. },
  1767. "dist": {
  1768. "type": "zip",
  1769. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1770. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1771. "shasum": ""
  1772. },
  1773. "require": {
  1774. "php": ">=7.2.0"
  1775. },
  1776. "type": "library",
  1777. "extra": {
  1778. "branch-alias": {
  1779. "dev-master": "1.0.x-dev"
  1780. }
  1781. },
  1782. "autoload": {
  1783. "psr-4": {
  1784. "Psr\\EventDispatcher\\": "src/"
  1785. }
  1786. },
  1787. "notification-url": "https://packagist.org/downloads/",
  1788. "license": [
  1789. "MIT"
  1790. ],
  1791. "authors": [
  1792. {
  1793. "name": "PHP-FIG",
  1794. "homepage": "http://www.php-fig.org/"
  1795. }
  1796. ],
  1797. "description": "Standard interfaces for event handling.",
  1798. "keywords": [
  1799. "events",
  1800. "psr",
  1801. "psr-14"
  1802. ],
  1803. "support": {
  1804. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  1805. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  1806. },
  1807. "time": "2019-01-08T18:20:26+00:00"
  1808. },
  1809. {
  1810. "name": "psr/link",
  1811. "version": "2.0.1",
  1812. "source": {
  1813. "type": "git",
  1814. "url": "https://github.com/php-fig/link.git",
  1815. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  1816. },
  1817. "dist": {
  1818. "type": "zip",
  1819. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  1820. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  1821. "shasum": ""
  1822. },
  1823. "require": {
  1824. "php": ">=8.0.0"
  1825. },
  1826. "suggest": {
  1827. "fig/link-util": "Provides some useful PSR-13 utilities"
  1828. },
  1829. "type": "library",
  1830. "extra": {
  1831. "branch-alias": {
  1832. "dev-master": "2.0.x-dev"
  1833. }
  1834. },
  1835. "autoload": {
  1836. "psr-4": {
  1837. "Psr\\Link\\": "src/"
  1838. }
  1839. },
  1840. "notification-url": "https://packagist.org/downloads/",
  1841. "license": [
  1842. "MIT"
  1843. ],
  1844. "authors": [
  1845. {
  1846. "name": "PHP-FIG",
  1847. "homepage": "http://www.php-fig.org/"
  1848. }
  1849. ],
  1850. "description": "Common interfaces for HTTP links",
  1851. "homepage": "https://github.com/php-fig/link",
  1852. "keywords": [
  1853. "http",
  1854. "http-link",
  1855. "link",
  1856. "psr",
  1857. "psr-13",
  1858. "rest"
  1859. ],
  1860. "support": {
  1861. "source": "https://github.com/php-fig/link/tree/2.0.1"
  1862. },
  1863. "time": "2021-03-11T23:00:27+00:00"
  1864. },
  1865. {
  1866. "name": "psr/log",
  1867. "version": "3.0.2",
  1868. "source": {
  1869. "type": "git",
  1870. "url": "https://github.com/php-fig/log.git",
  1871. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  1872. },
  1873. "dist": {
  1874. "type": "zip",
  1875. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  1876. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  1877. "shasum": ""
  1878. },
  1879. "require": {
  1880. "php": ">=8.0.0"
  1881. },
  1882. "type": "library",
  1883. "extra": {
  1884. "branch-alias": {
  1885. "dev-master": "3.x-dev"
  1886. }
  1887. },
  1888. "autoload": {
  1889. "psr-4": {
  1890. "Psr\\Log\\": "src"
  1891. }
  1892. },
  1893. "notification-url": "https://packagist.org/downloads/",
  1894. "license": [
  1895. "MIT"
  1896. ],
  1897. "authors": [
  1898. {
  1899. "name": "PHP-FIG",
  1900. "homepage": "https://www.php-fig.org/"
  1901. }
  1902. ],
  1903. "description": "Common interface for logging libraries",
  1904. "homepage": "https://github.com/php-fig/log",
  1905. "keywords": [
  1906. "log",
  1907. "psr",
  1908. "psr-3"
  1909. ],
  1910. "support": {
  1911. "source": "https://github.com/php-fig/log/tree/3.0.2"
  1912. },
  1913. "time": "2024-09-11T13:17:53+00:00"
  1914. },
  1915. {
  1916. "name": "symfony/asset",
  1917. "version": "v7.3.0",
  1918. "source": {
  1919. "type": "git",
  1920. "url": "https://github.com/symfony/asset.git",
  1921. "reference": "56c4d9f759247c4e07d8549e3baf7493cb9c3e4b"
  1922. },
  1923. "dist": {
  1924. "type": "zip",
  1925. "url": "https://api.github.com/repos/symfony/asset/zipball/56c4d9f759247c4e07d8549e3baf7493cb9c3e4b",
  1926. "reference": "56c4d9f759247c4e07d8549e3baf7493cb9c3e4b",
  1927. "shasum": ""
  1928. },
  1929. "require": {
  1930. "php": ">=8.2"
  1931. },
  1932. "conflict": {
  1933. "symfony/http-foundation": "<6.4"
  1934. },
  1935. "require-dev": {
  1936. "symfony/http-client": "^6.4|^7.0",
  1937. "symfony/http-foundation": "^6.4|^7.0",
  1938. "symfony/http-kernel": "^6.4|^7.0"
  1939. },
  1940. "type": "library",
  1941. "autoload": {
  1942. "psr-4": {
  1943. "Symfony\\Component\\Asset\\": ""
  1944. },
  1945. "exclude-from-classmap": [
  1946. "/Tests/"
  1947. ]
  1948. },
  1949. "notification-url": "https://packagist.org/downloads/",
  1950. "license": [
  1951. "MIT"
  1952. ],
  1953. "authors": [
  1954. {
  1955. "name": "Fabien Potencier",
  1956. "email": "fabien@symfony.com"
  1957. },
  1958. {
  1959. "name": "Symfony Community",
  1960. "homepage": "https://symfony.com/contributors"
  1961. }
  1962. ],
  1963. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  1964. "homepage": "https://symfony.com",
  1965. "support": {
  1966. "source": "https://github.com/symfony/asset/tree/v7.3.0"
  1967. },
  1968. "funding": [
  1969. {
  1970. "url": "https://symfony.com/sponsor",
  1971. "type": "custom"
  1972. },
  1973. {
  1974. "url": "https://github.com/fabpot",
  1975. "type": "github"
  1976. },
  1977. {
  1978. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  1979. "type": "tidelift"
  1980. }
  1981. ],
  1982. "time": "2025-03-05T10:15:41+00:00"
  1983. },
  1984. {
  1985. "name": "symfony/asset-mapper",
  1986. "version": "v7.3.0",
  1987. "source": {
  1988. "type": "git",
  1989. "url": "https://github.com/symfony/asset-mapper.git",
  1990. "reference": "6516f38868b75c4902ea72a9fa44967628375ae7"
  1991. },
  1992. "dist": {
  1993. "type": "zip",
  1994. "url": "https://api.github.com/repos/symfony/asset-mapper/zipball/6516f38868b75c4902ea72a9fa44967628375ae7",
  1995. "reference": "6516f38868b75c4902ea72a9fa44967628375ae7",
  1996. "shasum": ""
  1997. },
  1998. "require": {
  1999. "composer/semver": "^3.0",
  2000. "php": ">=8.2",
  2001. "symfony/deprecation-contracts": "^2.1|^3",
  2002. "symfony/filesystem": "^7.1",
  2003. "symfony/http-client": "^6.4|^7.0"
  2004. },
  2005. "conflict": {
  2006. "symfony/framework-bundle": "<6.4"
  2007. },
  2008. "require-dev": {
  2009. "symfony/asset": "^6.4|^7.0",
  2010. "symfony/browser-kit": "^6.4|^7.0",
  2011. "symfony/console": "^6.4|^7.0",
  2012. "symfony/event-dispatcher-contracts": "^3.0",
  2013. "symfony/finder": "^6.4|^7.0",
  2014. "symfony/framework-bundle": "^6.4|^7.0",
  2015. "symfony/http-foundation": "^6.4|^7.0",
  2016. "symfony/http-kernel": "^6.4|^7.0",
  2017. "symfony/process": "^6.4|^7.0",
  2018. "symfony/web-link": "^6.4|^7.0"
  2019. },
  2020. "type": "library",
  2021. "autoload": {
  2022. "psr-4": {
  2023. "Symfony\\Component\\AssetMapper\\": ""
  2024. },
  2025. "exclude-from-classmap": [
  2026. "/Tests/"
  2027. ]
  2028. },
  2029. "notification-url": "https://packagist.org/downloads/",
  2030. "license": [
  2031. "MIT"
  2032. ],
  2033. "authors": [
  2034. {
  2035. "name": "Fabien Potencier",
  2036. "email": "fabien@symfony.com"
  2037. },
  2038. {
  2039. "name": "Symfony Community",
  2040. "homepage": "https://symfony.com/contributors"
  2041. }
  2042. ],
  2043. "description": "Maps directories of assets & makes them available in a public directory with versioned filenames.",
  2044. "homepage": "https://symfony.com",
  2045. "support": {
  2046. "source": "https://github.com/symfony/asset-mapper/tree/v7.3.0"
  2047. },
  2048. "funding": [
  2049. {
  2050. "url": "https://symfony.com/sponsor",
  2051. "type": "custom"
  2052. },
  2053. {
  2054. "url": "https://github.com/fabpot",
  2055. "type": "github"
  2056. },
  2057. {
  2058. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2059. "type": "tidelift"
  2060. }
  2061. ],
  2062. "time": "2025-05-24T14:05:12+00:00"
  2063. },
  2064. {
  2065. "name": "symfony/cache",
  2066. "version": "v7.3.1",
  2067. "source": {
  2068. "type": "git",
  2069. "url": "https://github.com/symfony/cache.git",
  2070. "reference": "a7c6caa9d6113cebfb3020b427bcb021ebfdfc9e"
  2071. },
  2072. "dist": {
  2073. "type": "zip",
  2074. "url": "https://api.github.com/repos/symfony/cache/zipball/a7c6caa9d6113cebfb3020b427bcb021ebfdfc9e",
  2075. "reference": "a7c6caa9d6113cebfb3020b427bcb021ebfdfc9e",
  2076. "shasum": ""
  2077. },
  2078. "require": {
  2079. "php": ">=8.2",
  2080. "psr/cache": "^2.0|^3.0",
  2081. "psr/log": "^1.1|^2|^3",
  2082. "symfony/cache-contracts": "^3.6",
  2083. "symfony/deprecation-contracts": "^2.5|^3.0",
  2084. "symfony/service-contracts": "^2.5|^3",
  2085. "symfony/var-exporter": "^6.4|^7.0"
  2086. },
  2087. "conflict": {
  2088. "doctrine/dbal": "<3.6",
  2089. "symfony/dependency-injection": "<6.4",
  2090. "symfony/http-kernel": "<6.4",
  2091. "symfony/var-dumper": "<6.4"
  2092. },
  2093. "provide": {
  2094. "psr/cache-implementation": "2.0|3.0",
  2095. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  2096. "symfony/cache-implementation": "1.1|2.0|3.0"
  2097. },
  2098. "require-dev": {
  2099. "cache/integration-tests": "dev-master",
  2100. "doctrine/dbal": "^3.6|^4",
  2101. "predis/predis": "^1.1|^2.0",
  2102. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2103. "symfony/clock": "^6.4|^7.0",
  2104. "symfony/config": "^6.4|^7.0",
  2105. "symfony/dependency-injection": "^6.4|^7.0",
  2106. "symfony/filesystem": "^6.4|^7.0",
  2107. "symfony/http-kernel": "^6.4|^7.0",
  2108. "symfony/messenger": "^6.4|^7.0",
  2109. "symfony/var-dumper": "^6.4|^7.0"
  2110. },
  2111. "type": "library",
  2112. "autoload": {
  2113. "psr-4": {
  2114. "Symfony\\Component\\Cache\\": ""
  2115. },
  2116. "classmap": [
  2117. "Traits/ValueWrapper.php"
  2118. ],
  2119. "exclude-from-classmap": [
  2120. "/Tests/"
  2121. ]
  2122. },
  2123. "notification-url": "https://packagist.org/downloads/",
  2124. "license": [
  2125. "MIT"
  2126. ],
  2127. "authors": [
  2128. {
  2129. "name": "Nicolas Grekas",
  2130. "email": "p@tchwork.com"
  2131. },
  2132. {
  2133. "name": "Symfony Community",
  2134. "homepage": "https://symfony.com/contributors"
  2135. }
  2136. ],
  2137. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2138. "homepage": "https://symfony.com",
  2139. "keywords": [
  2140. "caching",
  2141. "psr6"
  2142. ],
  2143. "support": {
  2144. "source": "https://github.com/symfony/cache/tree/v7.3.1"
  2145. },
  2146. "funding": [
  2147. {
  2148. "url": "https://symfony.com/sponsor",
  2149. "type": "custom"
  2150. },
  2151. {
  2152. "url": "https://github.com/fabpot",
  2153. "type": "github"
  2154. },
  2155. {
  2156. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2157. "type": "tidelift"
  2158. }
  2159. ],
  2160. "time": "2025-06-27T19:55:54+00:00"
  2161. },
  2162. {
  2163. "name": "symfony/cache-contracts",
  2164. "version": "v3.6.0",
  2165. "source": {
  2166. "type": "git",
  2167. "url": "https://github.com/symfony/cache-contracts.git",
  2168. "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868"
  2169. },
  2170. "dist": {
  2171. "type": "zip",
  2172. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/5d68a57d66910405e5c0b63d6f0af941e66fc868",
  2173. "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868",
  2174. "shasum": ""
  2175. },
  2176. "require": {
  2177. "php": ">=8.1",
  2178. "psr/cache": "^3.0"
  2179. },
  2180. "type": "library",
  2181. "extra": {
  2182. "thanks": {
  2183. "url": "https://github.com/symfony/contracts",
  2184. "name": "symfony/contracts"
  2185. },
  2186. "branch-alias": {
  2187. "dev-main": "3.6-dev"
  2188. }
  2189. },
  2190. "autoload": {
  2191. "psr-4": {
  2192. "Symfony\\Contracts\\Cache\\": ""
  2193. }
  2194. },
  2195. "notification-url": "https://packagist.org/downloads/",
  2196. "license": [
  2197. "MIT"
  2198. ],
  2199. "authors": [
  2200. {
  2201. "name": "Nicolas Grekas",
  2202. "email": "p@tchwork.com"
  2203. },
  2204. {
  2205. "name": "Symfony Community",
  2206. "homepage": "https://symfony.com/contributors"
  2207. }
  2208. ],
  2209. "description": "Generic abstractions related to caching",
  2210. "homepage": "https://symfony.com",
  2211. "keywords": [
  2212. "abstractions",
  2213. "contracts",
  2214. "decoupling",
  2215. "interfaces",
  2216. "interoperability",
  2217. "standards"
  2218. ],
  2219. "support": {
  2220. "source": "https://github.com/symfony/cache-contracts/tree/v3.6.0"
  2221. },
  2222. "funding": [
  2223. {
  2224. "url": "https://symfony.com/sponsor",
  2225. "type": "custom"
  2226. },
  2227. {
  2228. "url": "https://github.com/fabpot",
  2229. "type": "github"
  2230. },
  2231. {
  2232. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2233. "type": "tidelift"
  2234. }
  2235. ],
  2236. "time": "2025-03-13T15:25:07+00:00"
  2237. },
  2238. {
  2239. "name": "symfony/clock",
  2240. "version": "v7.3.0",
  2241. "source": {
  2242. "type": "git",
  2243. "url": "https://github.com/symfony/clock.git",
  2244. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24"
  2245. },
  2246. "dist": {
  2247. "type": "zip",
  2248. "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  2249. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  2250. "shasum": ""
  2251. },
  2252. "require": {
  2253. "php": ">=8.2",
  2254. "psr/clock": "^1.0",
  2255. "symfony/polyfill-php83": "^1.28"
  2256. },
  2257. "provide": {
  2258. "psr/clock-implementation": "1.0"
  2259. },
  2260. "type": "library",
  2261. "autoload": {
  2262. "files": [
  2263. "Resources/now.php"
  2264. ],
  2265. "psr-4": {
  2266. "Symfony\\Component\\Clock\\": ""
  2267. },
  2268. "exclude-from-classmap": [
  2269. "/Tests/"
  2270. ]
  2271. },
  2272. "notification-url": "https://packagist.org/downloads/",
  2273. "license": [
  2274. "MIT"
  2275. ],
  2276. "authors": [
  2277. {
  2278. "name": "Nicolas Grekas",
  2279. "email": "p@tchwork.com"
  2280. },
  2281. {
  2282. "name": "Symfony Community",
  2283. "homepage": "https://symfony.com/contributors"
  2284. }
  2285. ],
  2286. "description": "Decouples applications from the system clock",
  2287. "homepage": "https://symfony.com",
  2288. "keywords": [
  2289. "clock",
  2290. "psr20",
  2291. "time"
  2292. ],
  2293. "support": {
  2294. "source": "https://github.com/symfony/clock/tree/v7.3.0"
  2295. },
  2296. "funding": [
  2297. {
  2298. "url": "https://symfony.com/sponsor",
  2299. "type": "custom"
  2300. },
  2301. {
  2302. "url": "https://github.com/fabpot",
  2303. "type": "github"
  2304. },
  2305. {
  2306. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2307. "type": "tidelift"
  2308. }
  2309. ],
  2310. "time": "2024-09-25T14:21:43+00:00"
  2311. },
  2312. {
  2313. "name": "symfony/config",
  2314. "version": "v7.3.0",
  2315. "source": {
  2316. "type": "git",
  2317. "url": "https://github.com/symfony/config.git",
  2318. "reference": "ba62ae565f1327c2f6366726312ed828c85853bc"
  2319. },
  2320. "dist": {
  2321. "type": "zip",
  2322. "url": "https://api.github.com/repos/symfony/config/zipball/ba62ae565f1327c2f6366726312ed828c85853bc",
  2323. "reference": "ba62ae565f1327c2f6366726312ed828c85853bc",
  2324. "shasum": ""
  2325. },
  2326. "require": {
  2327. "php": ">=8.2",
  2328. "symfony/deprecation-contracts": "^2.5|^3",
  2329. "symfony/filesystem": "^7.1",
  2330. "symfony/polyfill-ctype": "~1.8"
  2331. },
  2332. "conflict": {
  2333. "symfony/finder": "<6.4",
  2334. "symfony/service-contracts": "<2.5"
  2335. },
  2336. "require-dev": {
  2337. "symfony/event-dispatcher": "^6.4|^7.0",
  2338. "symfony/finder": "^6.4|^7.0",
  2339. "symfony/messenger": "^6.4|^7.0",
  2340. "symfony/service-contracts": "^2.5|^3",
  2341. "symfony/yaml": "^6.4|^7.0"
  2342. },
  2343. "type": "library",
  2344. "autoload": {
  2345. "psr-4": {
  2346. "Symfony\\Component\\Config\\": ""
  2347. },
  2348. "exclude-from-classmap": [
  2349. "/Tests/"
  2350. ]
  2351. },
  2352. "notification-url": "https://packagist.org/downloads/",
  2353. "license": [
  2354. "MIT"
  2355. ],
  2356. "authors": [
  2357. {
  2358. "name": "Fabien Potencier",
  2359. "email": "fabien@symfony.com"
  2360. },
  2361. {
  2362. "name": "Symfony Community",
  2363. "homepage": "https://symfony.com/contributors"
  2364. }
  2365. ],
  2366. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  2367. "homepage": "https://symfony.com",
  2368. "support": {
  2369. "source": "https://github.com/symfony/config/tree/v7.3.0"
  2370. },
  2371. "funding": [
  2372. {
  2373. "url": "https://symfony.com/sponsor",
  2374. "type": "custom"
  2375. },
  2376. {
  2377. "url": "https://github.com/fabpot",
  2378. "type": "github"
  2379. },
  2380. {
  2381. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2382. "type": "tidelift"
  2383. }
  2384. ],
  2385. "time": "2025-05-15T09:04:05+00:00"
  2386. },
  2387. {
  2388. "name": "symfony/console",
  2389. "version": "v7.3.1",
  2390. "source": {
  2391. "type": "git",
  2392. "url": "https://github.com/symfony/console.git",
  2393. "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101"
  2394. },
  2395. "dist": {
  2396. "type": "zip",
  2397. "url": "https://api.github.com/repos/symfony/console/zipball/9e27aecde8f506ba0fd1d9989620c04a87697101",
  2398. "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101",
  2399. "shasum": ""
  2400. },
  2401. "require": {
  2402. "php": ">=8.2",
  2403. "symfony/deprecation-contracts": "^2.5|^3",
  2404. "symfony/polyfill-mbstring": "~1.0",
  2405. "symfony/service-contracts": "^2.5|^3",
  2406. "symfony/string": "^7.2"
  2407. },
  2408. "conflict": {
  2409. "symfony/dependency-injection": "<6.4",
  2410. "symfony/dotenv": "<6.4",
  2411. "symfony/event-dispatcher": "<6.4",
  2412. "symfony/lock": "<6.4",
  2413. "symfony/process": "<6.4"
  2414. },
  2415. "provide": {
  2416. "psr/log-implementation": "1.0|2.0|3.0"
  2417. },
  2418. "require-dev": {
  2419. "psr/log": "^1|^2|^3",
  2420. "symfony/config": "^6.4|^7.0",
  2421. "symfony/dependency-injection": "^6.4|^7.0",
  2422. "symfony/event-dispatcher": "^6.4|^7.0",
  2423. "symfony/http-foundation": "^6.4|^7.0",
  2424. "symfony/http-kernel": "^6.4|^7.0",
  2425. "symfony/lock": "^6.4|^7.0",
  2426. "symfony/messenger": "^6.4|^7.0",
  2427. "symfony/process": "^6.4|^7.0",
  2428. "symfony/stopwatch": "^6.4|^7.0",
  2429. "symfony/var-dumper": "^6.4|^7.0"
  2430. },
  2431. "type": "library",
  2432. "autoload": {
  2433. "psr-4": {
  2434. "Symfony\\Component\\Console\\": ""
  2435. },
  2436. "exclude-from-classmap": [
  2437. "/Tests/"
  2438. ]
  2439. },
  2440. "notification-url": "https://packagist.org/downloads/",
  2441. "license": [
  2442. "MIT"
  2443. ],
  2444. "authors": [
  2445. {
  2446. "name": "Fabien Potencier",
  2447. "email": "fabien@symfony.com"
  2448. },
  2449. {
  2450. "name": "Symfony Community",
  2451. "homepage": "https://symfony.com/contributors"
  2452. }
  2453. ],
  2454. "description": "Eases the creation of beautiful and testable command line interfaces",
  2455. "homepage": "https://symfony.com",
  2456. "keywords": [
  2457. "cli",
  2458. "command-line",
  2459. "console",
  2460. "terminal"
  2461. ],
  2462. "support": {
  2463. "source": "https://github.com/symfony/console/tree/v7.3.1"
  2464. },
  2465. "funding": [
  2466. {
  2467. "url": "https://symfony.com/sponsor",
  2468. "type": "custom"
  2469. },
  2470. {
  2471. "url": "https://github.com/fabpot",
  2472. "type": "github"
  2473. },
  2474. {
  2475. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2476. "type": "tidelift"
  2477. }
  2478. ],
  2479. "time": "2025-06-27T19:55:54+00:00"
  2480. },
  2481. {
  2482. "name": "symfony/dependency-injection",
  2483. "version": "v7.3.1",
  2484. "source": {
  2485. "type": "git",
  2486. "url": "https://github.com/symfony/dependency-injection.git",
  2487. "reference": "8656c4848b48784c4bb8c4ae50d2b43f832cead8"
  2488. },
  2489. "dist": {
  2490. "type": "zip",
  2491. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/8656c4848b48784c4bb8c4ae50d2b43f832cead8",
  2492. "reference": "8656c4848b48784c4bb8c4ae50d2b43f832cead8",
  2493. "shasum": ""
  2494. },
  2495. "require": {
  2496. "php": ">=8.2",
  2497. "psr/container": "^1.1|^2.0",
  2498. "symfony/deprecation-contracts": "^2.5|^3",
  2499. "symfony/service-contracts": "^3.5",
  2500. "symfony/var-exporter": "^6.4.20|^7.2.5"
  2501. },
  2502. "conflict": {
  2503. "ext-psr": "<1.1|>=2",
  2504. "symfony/config": "<6.4",
  2505. "symfony/finder": "<6.4",
  2506. "symfony/yaml": "<6.4"
  2507. },
  2508. "provide": {
  2509. "psr/container-implementation": "1.1|2.0",
  2510. "symfony/service-implementation": "1.1|2.0|3.0"
  2511. },
  2512. "require-dev": {
  2513. "symfony/config": "^6.4|^7.0",
  2514. "symfony/expression-language": "^6.4|^7.0",
  2515. "symfony/yaml": "^6.4|^7.0"
  2516. },
  2517. "type": "library",
  2518. "autoload": {
  2519. "psr-4": {
  2520. "Symfony\\Component\\DependencyInjection\\": ""
  2521. },
  2522. "exclude-from-classmap": [
  2523. "/Tests/"
  2524. ]
  2525. },
  2526. "notification-url": "https://packagist.org/downloads/",
  2527. "license": [
  2528. "MIT"
  2529. ],
  2530. "authors": [
  2531. {
  2532. "name": "Fabien Potencier",
  2533. "email": "fabien@symfony.com"
  2534. },
  2535. {
  2536. "name": "Symfony Community",
  2537. "homepage": "https://symfony.com/contributors"
  2538. }
  2539. ],
  2540. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  2541. "homepage": "https://symfony.com",
  2542. "support": {
  2543. "source": "https://github.com/symfony/dependency-injection/tree/v7.3.1"
  2544. },
  2545. "funding": [
  2546. {
  2547. "url": "https://symfony.com/sponsor",
  2548. "type": "custom"
  2549. },
  2550. {
  2551. "url": "https://github.com/fabpot",
  2552. "type": "github"
  2553. },
  2554. {
  2555. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2556. "type": "tidelift"
  2557. }
  2558. ],
  2559. "time": "2025-06-24T04:04:43+00:00"
  2560. },
  2561. {
  2562. "name": "symfony/deprecation-contracts",
  2563. "version": "v3.6.0",
  2564. "source": {
  2565. "type": "git",
  2566. "url": "https://github.com/symfony/deprecation-contracts.git",
  2567. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  2568. },
  2569. "dist": {
  2570. "type": "zip",
  2571. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  2572. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  2573. "shasum": ""
  2574. },
  2575. "require": {
  2576. "php": ">=8.1"
  2577. },
  2578. "type": "library",
  2579. "extra": {
  2580. "thanks": {
  2581. "url": "https://github.com/symfony/contracts",
  2582. "name": "symfony/contracts"
  2583. },
  2584. "branch-alias": {
  2585. "dev-main": "3.6-dev"
  2586. }
  2587. },
  2588. "autoload": {
  2589. "files": [
  2590. "function.php"
  2591. ]
  2592. },
  2593. "notification-url": "https://packagist.org/downloads/",
  2594. "license": [
  2595. "MIT"
  2596. ],
  2597. "authors": [
  2598. {
  2599. "name": "Nicolas Grekas",
  2600. "email": "p@tchwork.com"
  2601. },
  2602. {
  2603. "name": "Symfony Community",
  2604. "homepage": "https://symfony.com/contributors"
  2605. }
  2606. ],
  2607. "description": "A generic function and convention to trigger deprecation notices",
  2608. "homepage": "https://symfony.com",
  2609. "support": {
  2610. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  2611. },
  2612. "funding": [
  2613. {
  2614. "url": "https://symfony.com/sponsor",
  2615. "type": "custom"
  2616. },
  2617. {
  2618. "url": "https://github.com/fabpot",
  2619. "type": "github"
  2620. },
  2621. {
  2622. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2623. "type": "tidelift"
  2624. }
  2625. ],
  2626. "time": "2024-09-25T14:21:43+00:00"
  2627. },
  2628. {
  2629. "name": "symfony/doctrine-bridge",
  2630. "version": "v7.3.1",
  2631. "source": {
  2632. "type": "git",
  2633. "url": "https://github.com/symfony/doctrine-bridge.git",
  2634. "reference": "6c0acb248c46452ae2c15752dc71e72f3335403f"
  2635. },
  2636. "dist": {
  2637. "type": "zip",
  2638. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/6c0acb248c46452ae2c15752dc71e72f3335403f",
  2639. "reference": "6c0acb248c46452ae2c15752dc71e72f3335403f",
  2640. "shasum": ""
  2641. },
  2642. "require": {
  2643. "doctrine/event-manager": "^2",
  2644. "doctrine/persistence": "^3.1|^4",
  2645. "php": ">=8.2",
  2646. "symfony/deprecation-contracts": "^2.5|^3",
  2647. "symfony/polyfill-ctype": "~1.8",
  2648. "symfony/polyfill-mbstring": "~1.0",
  2649. "symfony/service-contracts": "^2.5|^3"
  2650. },
  2651. "conflict": {
  2652. "doctrine/collections": "<1.8",
  2653. "doctrine/dbal": "<3.6",
  2654. "doctrine/lexer": "<1.1",
  2655. "doctrine/orm": "<2.15",
  2656. "symfony/cache": "<6.4",
  2657. "symfony/dependency-injection": "<6.4",
  2658. "symfony/form": "<6.4.6|>=7,<7.0.6",
  2659. "symfony/http-foundation": "<6.4",
  2660. "symfony/http-kernel": "<6.4",
  2661. "symfony/lock": "<6.4",
  2662. "symfony/messenger": "<6.4",
  2663. "symfony/property-info": "<6.4",
  2664. "symfony/security-bundle": "<6.4",
  2665. "symfony/security-core": "<6.4",
  2666. "symfony/validator": "<6.4"
  2667. },
  2668. "require-dev": {
  2669. "doctrine/collections": "^1.8|^2.0",
  2670. "doctrine/data-fixtures": "^1.1|^2",
  2671. "doctrine/dbal": "^3.6|^4",
  2672. "doctrine/orm": "^2.15|^3",
  2673. "psr/log": "^1|^2|^3",
  2674. "symfony/cache": "^6.4|^7.0",
  2675. "symfony/config": "^6.4|^7.0",
  2676. "symfony/dependency-injection": "^6.4|^7.0",
  2677. "symfony/doctrine-messenger": "^6.4|^7.0",
  2678. "symfony/expression-language": "^6.4|^7.0",
  2679. "symfony/form": "^6.4.6|^7.0.6",
  2680. "symfony/http-kernel": "^6.4|^7.0",
  2681. "symfony/lock": "^6.4|^7.0",
  2682. "symfony/messenger": "^6.4|^7.0",
  2683. "symfony/property-access": "^6.4|^7.0",
  2684. "symfony/property-info": "^6.4|^7.0",
  2685. "symfony/security-core": "^6.4|^7.0",
  2686. "symfony/stopwatch": "^6.4|^7.0",
  2687. "symfony/translation": "^6.4|^7.0",
  2688. "symfony/type-info": "^7.1",
  2689. "symfony/uid": "^6.4|^7.0",
  2690. "symfony/validator": "^6.4|^7.0",
  2691. "symfony/var-dumper": "^6.4|^7.0"
  2692. },
  2693. "type": "symfony-bridge",
  2694. "autoload": {
  2695. "psr-4": {
  2696. "Symfony\\Bridge\\Doctrine\\": ""
  2697. },
  2698. "exclude-from-classmap": [
  2699. "/Tests/"
  2700. ]
  2701. },
  2702. "notification-url": "https://packagist.org/downloads/",
  2703. "license": [
  2704. "MIT"
  2705. ],
  2706. "authors": [
  2707. {
  2708. "name": "Fabien Potencier",
  2709. "email": "fabien@symfony.com"
  2710. },
  2711. {
  2712. "name": "Symfony Community",
  2713. "homepage": "https://symfony.com/contributors"
  2714. }
  2715. ],
  2716. "description": "Provides integration for Doctrine with various Symfony components",
  2717. "homepage": "https://symfony.com",
  2718. "support": {
  2719. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.3.1"
  2720. },
  2721. "funding": [
  2722. {
  2723. "url": "https://symfony.com/sponsor",
  2724. "type": "custom"
  2725. },
  2726. {
  2727. "url": "https://github.com/fabpot",
  2728. "type": "github"
  2729. },
  2730. {
  2731. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2732. "type": "tidelift"
  2733. }
  2734. ],
  2735. "time": "2025-06-26T13:02:59+00:00"
  2736. },
  2737. {
  2738. "name": "symfony/doctrine-messenger",
  2739. "version": "v7.3.0",
  2740. "source": {
  2741. "type": "git",
  2742. "url": "https://github.com/symfony/doctrine-messenger.git",
  2743. "reference": "099d9cd03f889c31c90d406fed07f25dc3732487"
  2744. },
  2745. "dist": {
  2746. "type": "zip",
  2747. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/099d9cd03f889c31c90d406fed07f25dc3732487",
  2748. "reference": "099d9cd03f889c31c90d406fed07f25dc3732487",
  2749. "shasum": ""
  2750. },
  2751. "require": {
  2752. "doctrine/dbal": "^3.6|^4",
  2753. "php": ">=8.2",
  2754. "symfony/messenger": "^7.2",
  2755. "symfony/service-contracts": "^2.5|^3"
  2756. },
  2757. "conflict": {
  2758. "doctrine/persistence": "<1.3"
  2759. },
  2760. "require-dev": {
  2761. "doctrine/persistence": "^1.3|^2|^3",
  2762. "symfony/property-access": "^6.4|^7.0",
  2763. "symfony/serializer": "^6.4|^7.0"
  2764. },
  2765. "type": "symfony-messenger-bridge",
  2766. "autoload": {
  2767. "psr-4": {
  2768. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  2769. },
  2770. "exclude-from-classmap": [
  2771. "/Tests/"
  2772. ]
  2773. },
  2774. "notification-url": "https://packagist.org/downloads/",
  2775. "license": [
  2776. "MIT"
  2777. ],
  2778. "authors": [
  2779. {
  2780. "name": "Fabien Potencier",
  2781. "email": "fabien@symfony.com"
  2782. },
  2783. {
  2784. "name": "Symfony Community",
  2785. "homepage": "https://symfony.com/contributors"
  2786. }
  2787. ],
  2788. "description": "Symfony Doctrine Messenger Bridge",
  2789. "homepage": "https://symfony.com",
  2790. "support": {
  2791. "source": "https://github.com/symfony/doctrine-messenger/tree/v7.3.0"
  2792. },
  2793. "funding": [
  2794. {
  2795. "url": "https://symfony.com/sponsor",
  2796. "type": "custom"
  2797. },
  2798. {
  2799. "url": "https://github.com/fabpot",
  2800. "type": "github"
  2801. },
  2802. {
  2803. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2804. "type": "tidelift"
  2805. }
  2806. ],
  2807. "time": "2025-03-26T11:30:13+00:00"
  2808. },
  2809. {
  2810. "name": "symfony/dotenv",
  2811. "version": "v7.3.0",
  2812. "source": {
  2813. "type": "git",
  2814. "url": "https://github.com/symfony/dotenv.git",
  2815. "reference": "28347a897771d0c28e99b75166dd2689099f3045"
  2816. },
  2817. "dist": {
  2818. "type": "zip",
  2819. "url": "https://api.github.com/repos/symfony/dotenv/zipball/28347a897771d0c28e99b75166dd2689099f3045",
  2820. "reference": "28347a897771d0c28e99b75166dd2689099f3045",
  2821. "shasum": ""
  2822. },
  2823. "require": {
  2824. "php": ">=8.2"
  2825. },
  2826. "conflict": {
  2827. "symfony/console": "<6.4",
  2828. "symfony/process": "<6.4"
  2829. },
  2830. "require-dev": {
  2831. "symfony/console": "^6.4|^7.0",
  2832. "symfony/process": "^6.4|^7.0"
  2833. },
  2834. "type": "library",
  2835. "autoload": {
  2836. "psr-4": {
  2837. "Symfony\\Component\\Dotenv\\": ""
  2838. },
  2839. "exclude-from-classmap": [
  2840. "/Tests/"
  2841. ]
  2842. },
  2843. "notification-url": "https://packagist.org/downloads/",
  2844. "license": [
  2845. "MIT"
  2846. ],
  2847. "authors": [
  2848. {
  2849. "name": "Fabien Potencier",
  2850. "email": "fabien@symfony.com"
  2851. },
  2852. {
  2853. "name": "Symfony Community",
  2854. "homepage": "https://symfony.com/contributors"
  2855. }
  2856. ],
  2857. "description": "Registers environment variables from a .env file",
  2858. "homepage": "https://symfony.com",
  2859. "keywords": [
  2860. "dotenv",
  2861. "env",
  2862. "environment"
  2863. ],
  2864. "support": {
  2865. "source": "https://github.com/symfony/dotenv/tree/v7.3.0"
  2866. },
  2867. "funding": [
  2868. {
  2869. "url": "https://symfony.com/sponsor",
  2870. "type": "custom"
  2871. },
  2872. {
  2873. "url": "https://github.com/fabpot",
  2874. "type": "github"
  2875. },
  2876. {
  2877. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2878. "type": "tidelift"
  2879. }
  2880. ],
  2881. "time": "2024-11-27T11:18:42+00:00"
  2882. },
  2883. {
  2884. "name": "symfony/error-handler",
  2885. "version": "v7.3.1",
  2886. "source": {
  2887. "type": "git",
  2888. "url": "https://github.com/symfony/error-handler.git",
  2889. "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235"
  2890. },
  2891. "dist": {
  2892. "type": "zip",
  2893. "url": "https://api.github.com/repos/symfony/error-handler/zipball/35b55b166f6752d6aaf21aa042fc5ed280fce235",
  2894. "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235",
  2895. "shasum": ""
  2896. },
  2897. "require": {
  2898. "php": ">=8.2",
  2899. "psr/log": "^1|^2|^3",
  2900. "symfony/var-dumper": "^6.4|^7.0"
  2901. },
  2902. "conflict": {
  2903. "symfony/deprecation-contracts": "<2.5",
  2904. "symfony/http-kernel": "<6.4"
  2905. },
  2906. "require-dev": {
  2907. "symfony/console": "^6.4|^7.0",
  2908. "symfony/deprecation-contracts": "^2.5|^3",
  2909. "symfony/http-kernel": "^6.4|^7.0",
  2910. "symfony/serializer": "^6.4|^7.0",
  2911. "symfony/webpack-encore-bundle": "^1.0|^2.0"
  2912. },
  2913. "bin": [
  2914. "Resources/bin/patch-type-declarations"
  2915. ],
  2916. "type": "library",
  2917. "autoload": {
  2918. "psr-4": {
  2919. "Symfony\\Component\\ErrorHandler\\": ""
  2920. },
  2921. "exclude-from-classmap": [
  2922. "/Tests/"
  2923. ]
  2924. },
  2925. "notification-url": "https://packagist.org/downloads/",
  2926. "license": [
  2927. "MIT"
  2928. ],
  2929. "authors": [
  2930. {
  2931. "name": "Fabien Potencier",
  2932. "email": "fabien@symfony.com"
  2933. },
  2934. {
  2935. "name": "Symfony Community",
  2936. "homepage": "https://symfony.com/contributors"
  2937. }
  2938. ],
  2939. "description": "Provides tools to manage errors and ease debugging PHP code",
  2940. "homepage": "https://symfony.com",
  2941. "support": {
  2942. "source": "https://github.com/symfony/error-handler/tree/v7.3.1"
  2943. },
  2944. "funding": [
  2945. {
  2946. "url": "https://symfony.com/sponsor",
  2947. "type": "custom"
  2948. },
  2949. {
  2950. "url": "https://github.com/fabpot",
  2951. "type": "github"
  2952. },
  2953. {
  2954. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2955. "type": "tidelift"
  2956. }
  2957. ],
  2958. "time": "2025-06-13T07:48:40+00:00"
  2959. },
  2960. {
  2961. "name": "symfony/event-dispatcher",
  2962. "version": "v7.3.0",
  2963. "source": {
  2964. "type": "git",
  2965. "url": "https://github.com/symfony/event-dispatcher.git",
  2966. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d"
  2967. },
  2968. "dist": {
  2969. "type": "zip",
  2970. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/497f73ac996a598c92409b44ac43b6690c4f666d",
  2971. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d",
  2972. "shasum": ""
  2973. },
  2974. "require": {
  2975. "php": ">=8.2",
  2976. "symfony/event-dispatcher-contracts": "^2.5|^3"
  2977. },
  2978. "conflict": {
  2979. "symfony/dependency-injection": "<6.4",
  2980. "symfony/service-contracts": "<2.5"
  2981. },
  2982. "provide": {
  2983. "psr/event-dispatcher-implementation": "1.0",
  2984. "symfony/event-dispatcher-implementation": "2.0|3.0"
  2985. },
  2986. "require-dev": {
  2987. "psr/log": "^1|^2|^3",
  2988. "symfony/config": "^6.4|^7.0",
  2989. "symfony/dependency-injection": "^6.4|^7.0",
  2990. "symfony/error-handler": "^6.4|^7.0",
  2991. "symfony/expression-language": "^6.4|^7.0",
  2992. "symfony/http-foundation": "^6.4|^7.0",
  2993. "symfony/service-contracts": "^2.5|^3",
  2994. "symfony/stopwatch": "^6.4|^7.0"
  2995. },
  2996. "type": "library",
  2997. "autoload": {
  2998. "psr-4": {
  2999. "Symfony\\Component\\EventDispatcher\\": ""
  3000. },
  3001. "exclude-from-classmap": [
  3002. "/Tests/"
  3003. ]
  3004. },
  3005. "notification-url": "https://packagist.org/downloads/",
  3006. "license": [
  3007. "MIT"
  3008. ],
  3009. "authors": [
  3010. {
  3011. "name": "Fabien Potencier",
  3012. "email": "fabien@symfony.com"
  3013. },
  3014. {
  3015. "name": "Symfony Community",
  3016. "homepage": "https://symfony.com/contributors"
  3017. }
  3018. ],
  3019. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3020. "homepage": "https://symfony.com",
  3021. "support": {
  3022. "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.0"
  3023. },
  3024. "funding": [
  3025. {
  3026. "url": "https://symfony.com/sponsor",
  3027. "type": "custom"
  3028. },
  3029. {
  3030. "url": "https://github.com/fabpot",
  3031. "type": "github"
  3032. },
  3033. {
  3034. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3035. "type": "tidelift"
  3036. }
  3037. ],
  3038. "time": "2025-04-22T09:11:45+00:00"
  3039. },
  3040. {
  3041. "name": "symfony/event-dispatcher-contracts",
  3042. "version": "v3.6.0",
  3043. "source": {
  3044. "type": "git",
  3045. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3046. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  3047. },
  3048. "dist": {
  3049. "type": "zip",
  3050. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  3051. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  3052. "shasum": ""
  3053. },
  3054. "require": {
  3055. "php": ">=8.1",
  3056. "psr/event-dispatcher": "^1"
  3057. },
  3058. "type": "library",
  3059. "extra": {
  3060. "thanks": {
  3061. "url": "https://github.com/symfony/contracts",
  3062. "name": "symfony/contracts"
  3063. },
  3064. "branch-alias": {
  3065. "dev-main": "3.6-dev"
  3066. }
  3067. },
  3068. "autoload": {
  3069. "psr-4": {
  3070. "Symfony\\Contracts\\EventDispatcher\\": ""
  3071. }
  3072. },
  3073. "notification-url": "https://packagist.org/downloads/",
  3074. "license": [
  3075. "MIT"
  3076. ],
  3077. "authors": [
  3078. {
  3079. "name": "Nicolas Grekas",
  3080. "email": "p@tchwork.com"
  3081. },
  3082. {
  3083. "name": "Symfony Community",
  3084. "homepage": "https://symfony.com/contributors"
  3085. }
  3086. ],
  3087. "description": "Generic abstractions related to dispatching event",
  3088. "homepage": "https://symfony.com",
  3089. "keywords": [
  3090. "abstractions",
  3091. "contracts",
  3092. "decoupling",
  3093. "interfaces",
  3094. "interoperability",
  3095. "standards"
  3096. ],
  3097. "support": {
  3098. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  3099. },
  3100. "funding": [
  3101. {
  3102. "url": "https://symfony.com/sponsor",
  3103. "type": "custom"
  3104. },
  3105. {
  3106. "url": "https://github.com/fabpot",
  3107. "type": "github"
  3108. },
  3109. {
  3110. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3111. "type": "tidelift"
  3112. }
  3113. ],
  3114. "time": "2024-09-25T14:21:43+00:00"
  3115. },
  3116. {
  3117. "name": "symfony/expression-language",
  3118. "version": "v7.3.0",
  3119. "source": {
  3120. "type": "git",
  3121. "url": "https://github.com/symfony/expression-language.git",
  3122. "reference": "26f4884a455e755e630a5fc372df124a3578da2e"
  3123. },
  3124. "dist": {
  3125. "type": "zip",
  3126. "url": "https://api.github.com/repos/symfony/expression-language/zipball/26f4884a455e755e630a5fc372df124a3578da2e",
  3127. "reference": "26f4884a455e755e630a5fc372df124a3578da2e",
  3128. "shasum": ""
  3129. },
  3130. "require": {
  3131. "php": ">=8.2",
  3132. "symfony/cache": "^6.4|^7.0",
  3133. "symfony/deprecation-contracts": "^2.5|^3",
  3134. "symfony/service-contracts": "^2.5|^3"
  3135. },
  3136. "type": "library",
  3137. "autoload": {
  3138. "psr-4": {
  3139. "Symfony\\Component\\ExpressionLanguage\\": ""
  3140. },
  3141. "exclude-from-classmap": [
  3142. "/Tests/"
  3143. ]
  3144. },
  3145. "notification-url": "https://packagist.org/downloads/",
  3146. "license": [
  3147. "MIT"
  3148. ],
  3149. "authors": [
  3150. {
  3151. "name": "Fabien Potencier",
  3152. "email": "fabien@symfony.com"
  3153. },
  3154. {
  3155. "name": "Symfony Community",
  3156. "homepage": "https://symfony.com/contributors"
  3157. }
  3158. ],
  3159. "description": "Provides an engine that can compile and evaluate expressions",
  3160. "homepage": "https://symfony.com",
  3161. "support": {
  3162. "source": "https://github.com/symfony/expression-language/tree/v7.3.0"
  3163. },
  3164. "funding": [
  3165. {
  3166. "url": "https://symfony.com/sponsor",
  3167. "type": "custom"
  3168. },
  3169. {
  3170. "url": "https://github.com/fabpot",
  3171. "type": "github"
  3172. },
  3173. {
  3174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3175. "type": "tidelift"
  3176. }
  3177. ],
  3178. "time": "2024-10-15T11:52:45+00:00"
  3179. },
  3180. {
  3181. "name": "symfony/filesystem",
  3182. "version": "v7.3.0",
  3183. "source": {
  3184. "type": "git",
  3185. "url": "https://github.com/symfony/filesystem.git",
  3186. "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb"
  3187. },
  3188. "dist": {
  3189. "type": "zip",
  3190. "url": "https://api.github.com/repos/symfony/filesystem/zipball/b8dce482de9d7c9fe2891155035a7248ab5c7fdb",
  3191. "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb",
  3192. "shasum": ""
  3193. },
  3194. "require": {
  3195. "php": ">=8.2",
  3196. "symfony/polyfill-ctype": "~1.8",
  3197. "symfony/polyfill-mbstring": "~1.8"
  3198. },
  3199. "require-dev": {
  3200. "symfony/process": "^6.4|^7.0"
  3201. },
  3202. "type": "library",
  3203. "autoload": {
  3204. "psr-4": {
  3205. "Symfony\\Component\\Filesystem\\": ""
  3206. },
  3207. "exclude-from-classmap": [
  3208. "/Tests/"
  3209. ]
  3210. },
  3211. "notification-url": "https://packagist.org/downloads/",
  3212. "license": [
  3213. "MIT"
  3214. ],
  3215. "authors": [
  3216. {
  3217. "name": "Fabien Potencier",
  3218. "email": "fabien@symfony.com"
  3219. },
  3220. {
  3221. "name": "Symfony Community",
  3222. "homepage": "https://symfony.com/contributors"
  3223. }
  3224. ],
  3225. "description": "Provides basic utilities for the filesystem",
  3226. "homepage": "https://symfony.com",
  3227. "support": {
  3228. "source": "https://github.com/symfony/filesystem/tree/v7.3.0"
  3229. },
  3230. "funding": [
  3231. {
  3232. "url": "https://symfony.com/sponsor",
  3233. "type": "custom"
  3234. },
  3235. {
  3236. "url": "https://github.com/fabpot",
  3237. "type": "github"
  3238. },
  3239. {
  3240. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3241. "type": "tidelift"
  3242. }
  3243. ],
  3244. "time": "2024-10-25T15:15:23+00:00"
  3245. },
  3246. {
  3247. "name": "symfony/finder",
  3248. "version": "v7.3.0",
  3249. "source": {
  3250. "type": "git",
  3251. "url": "https://github.com/symfony/finder.git",
  3252. "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d"
  3253. },
  3254. "dist": {
  3255. "type": "zip",
  3256. "url": "https://api.github.com/repos/symfony/finder/zipball/ec2344cf77a48253bbca6939aa3d2477773ea63d",
  3257. "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d",
  3258. "shasum": ""
  3259. },
  3260. "require": {
  3261. "php": ">=8.2"
  3262. },
  3263. "require-dev": {
  3264. "symfony/filesystem": "^6.4|^7.0"
  3265. },
  3266. "type": "library",
  3267. "autoload": {
  3268. "psr-4": {
  3269. "Symfony\\Component\\Finder\\": ""
  3270. },
  3271. "exclude-from-classmap": [
  3272. "/Tests/"
  3273. ]
  3274. },
  3275. "notification-url": "https://packagist.org/downloads/",
  3276. "license": [
  3277. "MIT"
  3278. ],
  3279. "authors": [
  3280. {
  3281. "name": "Fabien Potencier",
  3282. "email": "fabien@symfony.com"
  3283. },
  3284. {
  3285. "name": "Symfony Community",
  3286. "homepage": "https://symfony.com/contributors"
  3287. }
  3288. ],
  3289. "description": "Finds files and directories via an intuitive fluent interface",
  3290. "homepage": "https://symfony.com",
  3291. "support": {
  3292. "source": "https://github.com/symfony/finder/tree/v7.3.0"
  3293. },
  3294. "funding": [
  3295. {
  3296. "url": "https://symfony.com/sponsor",
  3297. "type": "custom"
  3298. },
  3299. {
  3300. "url": "https://github.com/fabpot",
  3301. "type": "github"
  3302. },
  3303. {
  3304. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3305. "type": "tidelift"
  3306. }
  3307. ],
  3308. "time": "2024-12-30T19:00:26+00:00"
  3309. },
  3310. {
  3311. "name": "symfony/flex",
  3312. "version": "v2.8.1",
  3313. "source": {
  3314. "type": "git",
  3315. "url": "https://github.com/symfony/flex.git",
  3316. "reference": "423c36e369361003dc31ef11c5f15fb589e52c01"
  3317. },
  3318. "dist": {
  3319. "type": "zip",
  3320. "url": "https://api.github.com/repos/symfony/flex/zipball/423c36e369361003dc31ef11c5f15fb589e52c01",
  3321. "reference": "423c36e369361003dc31ef11c5f15fb589e52c01",
  3322. "shasum": ""
  3323. },
  3324. "require": {
  3325. "composer-plugin-api": "^2.1",
  3326. "php": ">=8.0"
  3327. },
  3328. "conflict": {
  3329. "composer/semver": "<1.7.2"
  3330. },
  3331. "require-dev": {
  3332. "composer/composer": "^2.1",
  3333. "symfony/dotenv": "^5.4|^6.0",
  3334. "symfony/filesystem": "^5.4|^6.0",
  3335. "symfony/phpunit-bridge": "^5.4|^6.0",
  3336. "symfony/process": "^5.4|^6.0"
  3337. },
  3338. "type": "composer-plugin",
  3339. "extra": {
  3340. "class": "Symfony\\Flex\\Flex"
  3341. },
  3342. "autoload": {
  3343. "psr-4": {
  3344. "Symfony\\Flex\\": "src"
  3345. }
  3346. },
  3347. "notification-url": "https://packagist.org/downloads/",
  3348. "license": [
  3349. "MIT"
  3350. ],
  3351. "authors": [
  3352. {
  3353. "name": "Fabien Potencier",
  3354. "email": "fabien.potencier@gmail.com"
  3355. }
  3356. ],
  3357. "description": "Composer plugin for Symfony",
  3358. "support": {
  3359. "issues": "https://github.com/symfony/flex/issues",
  3360. "source": "https://github.com/symfony/flex/tree/v2.8.1"
  3361. },
  3362. "funding": [
  3363. {
  3364. "url": "https://symfony.com/sponsor",
  3365. "type": "custom"
  3366. },
  3367. {
  3368. "url": "https://github.com/fabpot",
  3369. "type": "github"
  3370. },
  3371. {
  3372. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3373. "type": "tidelift"
  3374. }
  3375. ],
  3376. "time": "2025-07-05T07:45:19+00:00"
  3377. },
  3378. {
  3379. "name": "symfony/form",
  3380. "version": "v7.3.1",
  3381. "source": {
  3382. "type": "git",
  3383. "url": "https://github.com/symfony/form.git",
  3384. "reference": "e06b02dd21b33b0cd7bb942c7e446ef7b22a2a5a"
  3385. },
  3386. "dist": {
  3387. "type": "zip",
  3388. "url": "https://api.github.com/repos/symfony/form/zipball/e06b02dd21b33b0cd7bb942c7e446ef7b22a2a5a",
  3389. "reference": "e06b02dd21b33b0cd7bb942c7e446ef7b22a2a5a",
  3390. "shasum": ""
  3391. },
  3392. "require": {
  3393. "php": ">=8.2",
  3394. "symfony/deprecation-contracts": "^2.5|^3",
  3395. "symfony/event-dispatcher": "^6.4|^7.0",
  3396. "symfony/options-resolver": "^7.3",
  3397. "symfony/polyfill-ctype": "~1.8",
  3398. "symfony/polyfill-intl-icu": "^1.21",
  3399. "symfony/polyfill-mbstring": "~1.0",
  3400. "symfony/property-access": "^6.4|^7.0",
  3401. "symfony/service-contracts": "^2.5|^3"
  3402. },
  3403. "conflict": {
  3404. "symfony/console": "<6.4",
  3405. "symfony/dependency-injection": "<6.4",
  3406. "symfony/doctrine-bridge": "<6.4",
  3407. "symfony/error-handler": "<6.4",
  3408. "symfony/framework-bundle": "<6.4",
  3409. "symfony/http-kernel": "<6.4",
  3410. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  3411. "symfony/translation-contracts": "<2.5",
  3412. "symfony/twig-bridge": "<6.4"
  3413. },
  3414. "require-dev": {
  3415. "doctrine/collections": "^1.0|^2.0",
  3416. "symfony/config": "^6.4|^7.0",
  3417. "symfony/console": "^6.4|^7.0",
  3418. "symfony/dependency-injection": "^6.4|^7.0",
  3419. "symfony/expression-language": "^6.4|^7.0",
  3420. "symfony/html-sanitizer": "^6.4|^7.0",
  3421. "symfony/http-foundation": "^6.4|^7.0",
  3422. "symfony/http-kernel": "^6.4|^7.0",
  3423. "symfony/intl": "^6.4|^7.0",
  3424. "symfony/security-core": "^6.4|^7.0",
  3425. "symfony/security-csrf": "^6.4|^7.0",
  3426. "symfony/translation": "^6.4.3|^7.0.3",
  3427. "symfony/uid": "^6.4|^7.0",
  3428. "symfony/validator": "^6.4|^7.0",
  3429. "symfony/var-dumper": "^6.4|^7.0"
  3430. },
  3431. "type": "library",
  3432. "autoload": {
  3433. "psr-4": {
  3434. "Symfony\\Component\\Form\\": ""
  3435. },
  3436. "exclude-from-classmap": [
  3437. "/Tests/"
  3438. ]
  3439. },
  3440. "notification-url": "https://packagist.org/downloads/",
  3441. "license": [
  3442. "MIT"
  3443. ],
  3444. "authors": [
  3445. {
  3446. "name": "Fabien Potencier",
  3447. "email": "fabien@symfony.com"
  3448. },
  3449. {
  3450. "name": "Symfony Community",
  3451. "homepage": "https://symfony.com/contributors"
  3452. }
  3453. ],
  3454. "description": "Allows to easily create, process and reuse HTML forms",
  3455. "homepage": "https://symfony.com",
  3456. "support": {
  3457. "source": "https://github.com/symfony/form/tree/v7.3.1"
  3458. },
  3459. "funding": [
  3460. {
  3461. "url": "https://symfony.com/sponsor",
  3462. "type": "custom"
  3463. },
  3464. {
  3465. "url": "https://github.com/fabpot",
  3466. "type": "github"
  3467. },
  3468. {
  3469. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3470. "type": "tidelift"
  3471. }
  3472. ],
  3473. "time": "2025-06-13T07:48:40+00:00"
  3474. },
  3475. {
  3476. "name": "symfony/framework-bundle",
  3477. "version": "v7.3.1",
  3478. "source": {
  3479. "type": "git",
  3480. "url": "https://github.com/symfony/framework-bundle.git",
  3481. "reference": "91905f22f26aa350a33b3b9690bdf94976b0d0ab"
  3482. },
  3483. "dist": {
  3484. "type": "zip",
  3485. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/91905f22f26aa350a33b3b9690bdf94976b0d0ab",
  3486. "reference": "91905f22f26aa350a33b3b9690bdf94976b0d0ab",
  3487. "shasum": ""
  3488. },
  3489. "require": {
  3490. "composer-runtime-api": ">=2.1",
  3491. "ext-xml": "*",
  3492. "php": ">=8.2",
  3493. "symfony/cache": "^6.4|^7.0",
  3494. "symfony/config": "^7.3",
  3495. "symfony/dependency-injection": "^7.2",
  3496. "symfony/deprecation-contracts": "^2.5|^3",
  3497. "symfony/error-handler": "^7.3",
  3498. "symfony/event-dispatcher": "^6.4|^7.0",
  3499. "symfony/filesystem": "^7.1",
  3500. "symfony/finder": "^6.4|^7.0",
  3501. "symfony/http-foundation": "^7.3",
  3502. "symfony/http-kernel": "^7.2",
  3503. "symfony/polyfill-mbstring": "~1.0",
  3504. "symfony/routing": "^6.4|^7.0"
  3505. },
  3506. "conflict": {
  3507. "doctrine/persistence": "<1.3",
  3508. "phpdocumentor/reflection-docblock": "<3.2.2",
  3509. "phpdocumentor/type-resolver": "<1.4.0",
  3510. "symfony/asset": "<6.4",
  3511. "symfony/asset-mapper": "<6.4",
  3512. "symfony/clock": "<6.4",
  3513. "symfony/console": "<6.4",
  3514. "symfony/dom-crawler": "<6.4",
  3515. "symfony/dotenv": "<6.4",
  3516. "symfony/form": "<6.4",
  3517. "symfony/http-client": "<6.4",
  3518. "symfony/json-streamer": ">=7.4",
  3519. "symfony/lock": "<6.4",
  3520. "symfony/mailer": "<6.4",
  3521. "symfony/messenger": "<6.4",
  3522. "symfony/mime": "<6.4",
  3523. "symfony/object-mapper": ">=7.4",
  3524. "symfony/property-access": "<6.4",
  3525. "symfony/property-info": "<6.4",
  3526. "symfony/runtime": "<6.4.13|>=7.0,<7.1.6",
  3527. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  3528. "symfony/security-core": "<6.4",
  3529. "symfony/security-csrf": "<7.2",
  3530. "symfony/serializer": "<7.2.5",
  3531. "symfony/stopwatch": "<6.4",
  3532. "symfony/translation": "<7.3",
  3533. "symfony/twig-bridge": "<6.4",
  3534. "symfony/twig-bundle": "<6.4",
  3535. "symfony/validator": "<6.4",
  3536. "symfony/web-profiler-bundle": "<6.4",
  3537. "symfony/webhook": "<7.2",
  3538. "symfony/workflow": "<7.3.0-beta2"
  3539. },
  3540. "require-dev": {
  3541. "doctrine/persistence": "^1.3|^2|^3",
  3542. "dragonmantank/cron-expression": "^3.1",
  3543. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3544. "seld/jsonlint": "^1.10",
  3545. "symfony/asset": "^6.4|^7.0",
  3546. "symfony/asset-mapper": "^6.4|^7.0",
  3547. "symfony/browser-kit": "^6.4|^7.0",
  3548. "symfony/clock": "^6.4|^7.0",
  3549. "symfony/console": "^6.4|^7.0",
  3550. "symfony/css-selector": "^6.4|^7.0",
  3551. "symfony/dom-crawler": "^6.4|^7.0",
  3552. "symfony/dotenv": "^6.4|^7.0",
  3553. "symfony/expression-language": "^6.4|^7.0",
  3554. "symfony/form": "^6.4|^7.0",
  3555. "symfony/html-sanitizer": "^6.4|^7.0",
  3556. "symfony/http-client": "^6.4|^7.0",
  3557. "symfony/json-streamer": "7.3.*",
  3558. "symfony/lock": "^6.4|^7.0",
  3559. "symfony/mailer": "^6.4|^7.0",
  3560. "symfony/messenger": "^6.4|^7.0",
  3561. "symfony/mime": "^6.4|^7.0",
  3562. "symfony/notifier": "^6.4|^7.0",
  3563. "symfony/object-mapper": "^v7.3.0-beta2",
  3564. "symfony/polyfill-intl-icu": "~1.0",
  3565. "symfony/process": "^6.4|^7.0",
  3566. "symfony/property-info": "^6.4|^7.0",
  3567. "symfony/rate-limiter": "^6.4|^7.0",
  3568. "symfony/scheduler": "^6.4.4|^7.0.4",
  3569. "symfony/security-bundle": "^6.4|^7.0",
  3570. "symfony/semaphore": "^6.4|^7.0",
  3571. "symfony/serializer": "^7.2.5",
  3572. "symfony/stopwatch": "^6.4|^7.0",
  3573. "symfony/string": "^6.4|^7.0",
  3574. "symfony/translation": "^7.3",
  3575. "symfony/twig-bundle": "^6.4|^7.0",
  3576. "symfony/type-info": "^7.1",
  3577. "symfony/uid": "^6.4|^7.0",
  3578. "symfony/validator": "^6.4|^7.0",
  3579. "symfony/web-link": "^6.4|^7.0",
  3580. "symfony/webhook": "^7.2",
  3581. "symfony/workflow": "^7.3",
  3582. "symfony/yaml": "^6.4|^7.0",
  3583. "twig/twig": "^3.12"
  3584. },
  3585. "type": "symfony-bundle",
  3586. "autoload": {
  3587. "psr-4": {
  3588. "Symfony\\Bundle\\FrameworkBundle\\": ""
  3589. },
  3590. "exclude-from-classmap": [
  3591. "/Tests/"
  3592. ]
  3593. },
  3594. "notification-url": "https://packagist.org/downloads/",
  3595. "license": [
  3596. "MIT"
  3597. ],
  3598. "authors": [
  3599. {
  3600. "name": "Fabien Potencier",
  3601. "email": "fabien@symfony.com"
  3602. },
  3603. {
  3604. "name": "Symfony Community",
  3605. "homepage": "https://symfony.com/contributors"
  3606. }
  3607. ],
  3608. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  3609. "homepage": "https://symfony.com",
  3610. "support": {
  3611. "source": "https://github.com/symfony/framework-bundle/tree/v7.3.1"
  3612. },
  3613. "funding": [
  3614. {
  3615. "url": "https://symfony.com/sponsor",
  3616. "type": "custom"
  3617. },
  3618. {
  3619. "url": "https://github.com/fabpot",
  3620. "type": "github"
  3621. },
  3622. {
  3623. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3624. "type": "tidelift"
  3625. }
  3626. ],
  3627. "time": "2025-06-27T19:55:54+00:00"
  3628. },
  3629. {
  3630. "name": "symfony/http-client",
  3631. "version": "v7.3.1",
  3632. "source": {
  3633. "type": "git",
  3634. "url": "https://github.com/symfony/http-client.git",
  3635. "reference": "4403d87a2c16f33345dca93407a8714ee8c05a64"
  3636. },
  3637. "dist": {
  3638. "type": "zip",
  3639. "url": "https://api.github.com/repos/symfony/http-client/zipball/4403d87a2c16f33345dca93407a8714ee8c05a64",
  3640. "reference": "4403d87a2c16f33345dca93407a8714ee8c05a64",
  3641. "shasum": ""
  3642. },
  3643. "require": {
  3644. "php": ">=8.2",
  3645. "psr/log": "^1|^2|^3",
  3646. "symfony/deprecation-contracts": "^2.5|^3",
  3647. "symfony/http-client-contracts": "~3.4.4|^3.5.2",
  3648. "symfony/service-contracts": "^2.5|^3"
  3649. },
  3650. "conflict": {
  3651. "amphp/amp": "<2.5",
  3652. "amphp/socket": "<1.1",
  3653. "php-http/discovery": "<1.15",
  3654. "symfony/http-foundation": "<6.4"
  3655. },
  3656. "provide": {
  3657. "php-http/async-client-implementation": "*",
  3658. "php-http/client-implementation": "*",
  3659. "psr/http-client-implementation": "1.0",
  3660. "symfony/http-client-implementation": "3.0"
  3661. },
  3662. "require-dev": {
  3663. "amphp/http-client": "^4.2.1|^5.0",
  3664. "amphp/http-tunnel": "^1.0|^2.0",
  3665. "guzzlehttp/promises": "^1.4|^2.0",
  3666. "nyholm/psr7": "^1.0",
  3667. "php-http/httplug": "^1.0|^2.0",
  3668. "psr/http-client": "^1.0",
  3669. "symfony/amphp-http-client-meta": "^1.0|^2.0",
  3670. "symfony/dependency-injection": "^6.4|^7.0",
  3671. "symfony/http-kernel": "^6.4|^7.0",
  3672. "symfony/messenger": "^6.4|^7.0",
  3673. "symfony/process": "^6.4|^7.0",
  3674. "symfony/rate-limiter": "^6.4|^7.0",
  3675. "symfony/stopwatch": "^6.4|^7.0"
  3676. },
  3677. "type": "library",
  3678. "autoload": {
  3679. "psr-4": {
  3680. "Symfony\\Component\\HttpClient\\": ""
  3681. },
  3682. "exclude-from-classmap": [
  3683. "/Tests/"
  3684. ]
  3685. },
  3686. "notification-url": "https://packagist.org/downloads/",
  3687. "license": [
  3688. "MIT"
  3689. ],
  3690. "authors": [
  3691. {
  3692. "name": "Nicolas Grekas",
  3693. "email": "p@tchwork.com"
  3694. },
  3695. {
  3696. "name": "Symfony Community",
  3697. "homepage": "https://symfony.com/contributors"
  3698. }
  3699. ],
  3700. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  3701. "homepage": "https://symfony.com",
  3702. "keywords": [
  3703. "http"
  3704. ],
  3705. "support": {
  3706. "source": "https://github.com/symfony/http-client/tree/v7.3.1"
  3707. },
  3708. "funding": [
  3709. {
  3710. "url": "https://symfony.com/sponsor",
  3711. "type": "custom"
  3712. },
  3713. {
  3714. "url": "https://github.com/fabpot",
  3715. "type": "github"
  3716. },
  3717. {
  3718. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3719. "type": "tidelift"
  3720. }
  3721. ],
  3722. "time": "2025-06-28T07:58:39+00:00"
  3723. },
  3724. {
  3725. "name": "symfony/http-client-contracts",
  3726. "version": "v3.6.0",
  3727. "source": {
  3728. "type": "git",
  3729. "url": "https://github.com/symfony/http-client-contracts.git",
  3730. "reference": "75d7043853a42837e68111812f4d964b01e5101c"
  3731. },
  3732. "dist": {
  3733. "type": "zip",
  3734. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/75d7043853a42837e68111812f4d964b01e5101c",
  3735. "reference": "75d7043853a42837e68111812f4d964b01e5101c",
  3736. "shasum": ""
  3737. },
  3738. "require": {
  3739. "php": ">=8.1"
  3740. },
  3741. "type": "library",
  3742. "extra": {
  3743. "thanks": {
  3744. "url": "https://github.com/symfony/contracts",
  3745. "name": "symfony/contracts"
  3746. },
  3747. "branch-alias": {
  3748. "dev-main": "3.6-dev"
  3749. }
  3750. },
  3751. "autoload": {
  3752. "psr-4": {
  3753. "Symfony\\Contracts\\HttpClient\\": ""
  3754. },
  3755. "exclude-from-classmap": [
  3756. "/Test/"
  3757. ]
  3758. },
  3759. "notification-url": "https://packagist.org/downloads/",
  3760. "license": [
  3761. "MIT"
  3762. ],
  3763. "authors": [
  3764. {
  3765. "name": "Nicolas Grekas",
  3766. "email": "p@tchwork.com"
  3767. },
  3768. {
  3769. "name": "Symfony Community",
  3770. "homepage": "https://symfony.com/contributors"
  3771. }
  3772. ],
  3773. "description": "Generic abstractions related to HTTP clients",
  3774. "homepage": "https://symfony.com",
  3775. "keywords": [
  3776. "abstractions",
  3777. "contracts",
  3778. "decoupling",
  3779. "interfaces",
  3780. "interoperability",
  3781. "standards"
  3782. ],
  3783. "support": {
  3784. "source": "https://github.com/symfony/http-client-contracts/tree/v3.6.0"
  3785. },
  3786. "funding": [
  3787. {
  3788. "url": "https://symfony.com/sponsor",
  3789. "type": "custom"
  3790. },
  3791. {
  3792. "url": "https://github.com/fabpot",
  3793. "type": "github"
  3794. },
  3795. {
  3796. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3797. "type": "tidelift"
  3798. }
  3799. ],
  3800. "time": "2025-04-29T11:18:49+00:00"
  3801. },
  3802. {
  3803. "name": "symfony/http-foundation",
  3804. "version": "v7.3.1",
  3805. "source": {
  3806. "type": "git",
  3807. "url": "https://github.com/symfony/http-foundation.git",
  3808. "reference": "23dd60256610c86a3414575b70c596e5deff6ed9"
  3809. },
  3810. "dist": {
  3811. "type": "zip",
  3812. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/23dd60256610c86a3414575b70c596e5deff6ed9",
  3813. "reference": "23dd60256610c86a3414575b70c596e5deff6ed9",
  3814. "shasum": ""
  3815. },
  3816. "require": {
  3817. "php": ">=8.2",
  3818. "symfony/deprecation-contracts": "^2.5|^3.0",
  3819. "symfony/polyfill-mbstring": "~1.1",
  3820. "symfony/polyfill-php83": "^1.27"
  3821. },
  3822. "conflict": {
  3823. "doctrine/dbal": "<3.6",
  3824. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  3825. },
  3826. "require-dev": {
  3827. "doctrine/dbal": "^3.6|^4",
  3828. "predis/predis": "^1.1|^2.0",
  3829. "symfony/cache": "^6.4.12|^7.1.5",
  3830. "symfony/clock": "^6.4|^7.0",
  3831. "symfony/dependency-injection": "^6.4|^7.0",
  3832. "symfony/expression-language": "^6.4|^7.0",
  3833. "symfony/http-kernel": "^6.4|^7.0",
  3834. "symfony/mime": "^6.4|^7.0",
  3835. "symfony/rate-limiter": "^6.4|^7.0"
  3836. },
  3837. "type": "library",
  3838. "autoload": {
  3839. "psr-4": {
  3840. "Symfony\\Component\\HttpFoundation\\": ""
  3841. },
  3842. "exclude-from-classmap": [
  3843. "/Tests/"
  3844. ]
  3845. },
  3846. "notification-url": "https://packagist.org/downloads/",
  3847. "license": [
  3848. "MIT"
  3849. ],
  3850. "authors": [
  3851. {
  3852. "name": "Fabien Potencier",
  3853. "email": "fabien@symfony.com"
  3854. },
  3855. {
  3856. "name": "Symfony Community",
  3857. "homepage": "https://symfony.com/contributors"
  3858. }
  3859. ],
  3860. "description": "Defines an object-oriented layer for the HTTP specification",
  3861. "homepage": "https://symfony.com",
  3862. "support": {
  3863. "source": "https://github.com/symfony/http-foundation/tree/v7.3.1"
  3864. },
  3865. "funding": [
  3866. {
  3867. "url": "https://symfony.com/sponsor",
  3868. "type": "custom"
  3869. },
  3870. {
  3871. "url": "https://github.com/fabpot",
  3872. "type": "github"
  3873. },
  3874. {
  3875. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3876. "type": "tidelift"
  3877. }
  3878. ],
  3879. "time": "2025-06-23T15:07:14+00:00"
  3880. },
  3881. {
  3882. "name": "symfony/http-kernel",
  3883. "version": "v7.3.1",
  3884. "source": {
  3885. "type": "git",
  3886. "url": "https://github.com/symfony/http-kernel.git",
  3887. "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831"
  3888. },
  3889. "dist": {
  3890. "type": "zip",
  3891. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1644879a66e4aa29c36fe33dfa6c54b450ce1831",
  3892. "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831",
  3893. "shasum": ""
  3894. },
  3895. "require": {
  3896. "php": ">=8.2",
  3897. "psr/log": "^1|^2|^3",
  3898. "symfony/deprecation-contracts": "^2.5|^3",
  3899. "symfony/error-handler": "^6.4|^7.0",
  3900. "symfony/event-dispatcher": "^7.3",
  3901. "symfony/http-foundation": "^7.3",
  3902. "symfony/polyfill-ctype": "^1.8"
  3903. },
  3904. "conflict": {
  3905. "symfony/browser-kit": "<6.4",
  3906. "symfony/cache": "<6.4",
  3907. "symfony/config": "<6.4",
  3908. "symfony/console": "<6.4",
  3909. "symfony/dependency-injection": "<6.4",
  3910. "symfony/doctrine-bridge": "<6.4",
  3911. "symfony/form": "<6.4",
  3912. "symfony/http-client": "<6.4",
  3913. "symfony/http-client-contracts": "<2.5",
  3914. "symfony/mailer": "<6.4",
  3915. "symfony/messenger": "<6.4",
  3916. "symfony/translation": "<6.4",
  3917. "symfony/translation-contracts": "<2.5",
  3918. "symfony/twig-bridge": "<6.4",
  3919. "symfony/validator": "<6.4",
  3920. "symfony/var-dumper": "<6.4",
  3921. "twig/twig": "<3.12"
  3922. },
  3923. "provide": {
  3924. "psr/log-implementation": "1.0|2.0|3.0"
  3925. },
  3926. "require-dev": {
  3927. "psr/cache": "^1.0|^2.0|^3.0",
  3928. "symfony/browser-kit": "^6.4|^7.0",
  3929. "symfony/clock": "^6.4|^7.0",
  3930. "symfony/config": "^6.4|^7.0",
  3931. "symfony/console": "^6.4|^7.0",
  3932. "symfony/css-selector": "^6.4|^7.0",
  3933. "symfony/dependency-injection": "^6.4|^7.0",
  3934. "symfony/dom-crawler": "^6.4|^7.0",
  3935. "symfony/expression-language": "^6.4|^7.0",
  3936. "symfony/finder": "^6.4|^7.0",
  3937. "symfony/http-client-contracts": "^2.5|^3",
  3938. "symfony/process": "^6.4|^7.0",
  3939. "symfony/property-access": "^7.1",
  3940. "symfony/routing": "^6.4|^7.0",
  3941. "symfony/serializer": "^7.1",
  3942. "symfony/stopwatch": "^6.4|^7.0",
  3943. "symfony/translation": "^6.4|^7.0",
  3944. "symfony/translation-contracts": "^2.5|^3",
  3945. "symfony/uid": "^6.4|^7.0",
  3946. "symfony/validator": "^6.4|^7.0",
  3947. "symfony/var-dumper": "^6.4|^7.0",
  3948. "symfony/var-exporter": "^6.4|^7.0",
  3949. "twig/twig": "^3.12"
  3950. },
  3951. "type": "library",
  3952. "autoload": {
  3953. "psr-4": {
  3954. "Symfony\\Component\\HttpKernel\\": ""
  3955. },
  3956. "exclude-from-classmap": [
  3957. "/Tests/"
  3958. ]
  3959. },
  3960. "notification-url": "https://packagist.org/downloads/",
  3961. "license": [
  3962. "MIT"
  3963. ],
  3964. "authors": [
  3965. {
  3966. "name": "Fabien Potencier",
  3967. "email": "fabien@symfony.com"
  3968. },
  3969. {
  3970. "name": "Symfony Community",
  3971. "homepage": "https://symfony.com/contributors"
  3972. }
  3973. ],
  3974. "description": "Provides a structured process for converting a Request into a Response",
  3975. "homepage": "https://symfony.com",
  3976. "support": {
  3977. "source": "https://github.com/symfony/http-kernel/tree/v7.3.1"
  3978. },
  3979. "funding": [
  3980. {
  3981. "url": "https://symfony.com/sponsor",
  3982. "type": "custom"
  3983. },
  3984. {
  3985. "url": "https://github.com/fabpot",
  3986. "type": "github"
  3987. },
  3988. {
  3989. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3990. "type": "tidelift"
  3991. }
  3992. ],
  3993. "time": "2025-06-28T08:24:55+00:00"
  3994. },
  3995. {
  3996. "name": "symfony/intl",
  3997. "version": "v7.3.1",
  3998. "source": {
  3999. "type": "git",
  4000. "url": "https://github.com/symfony/intl.git",
  4001. "reference": "bd50940329ac1cfc4af0491cc4468f477d967e45"
  4002. },
  4003. "dist": {
  4004. "type": "zip",
  4005. "url": "https://api.github.com/repos/symfony/intl/zipball/bd50940329ac1cfc4af0491cc4468f477d967e45",
  4006. "reference": "bd50940329ac1cfc4af0491cc4468f477d967e45",
  4007. "shasum": ""
  4008. },
  4009. "require": {
  4010. "php": ">=8.2",
  4011. "symfony/deprecation-contracts": "^2.5|^3"
  4012. },
  4013. "conflict": {
  4014. "symfony/string": "<7.1"
  4015. },
  4016. "require-dev": {
  4017. "symfony/filesystem": "^6.4|^7.0",
  4018. "symfony/var-exporter": "^6.4|^7.0"
  4019. },
  4020. "type": "library",
  4021. "autoload": {
  4022. "psr-4": {
  4023. "Symfony\\Component\\Intl\\": ""
  4024. },
  4025. "exclude-from-classmap": [
  4026. "/Tests/",
  4027. "/Resources/data/"
  4028. ]
  4029. },
  4030. "notification-url": "https://packagist.org/downloads/",
  4031. "license": [
  4032. "MIT"
  4033. ],
  4034. "authors": [
  4035. {
  4036. "name": "Bernhard Schussek",
  4037. "email": "bschussek@gmail.com"
  4038. },
  4039. {
  4040. "name": "Eriksen Costa",
  4041. "email": "eriksen.costa@infranology.com.br"
  4042. },
  4043. {
  4044. "name": "Igor Wiedler",
  4045. "email": "igor@wiedler.ch"
  4046. },
  4047. {
  4048. "name": "Symfony Community",
  4049. "homepage": "https://symfony.com/contributors"
  4050. }
  4051. ],
  4052. "description": "Provides access to the localization data of the ICU library",
  4053. "homepage": "https://symfony.com",
  4054. "keywords": [
  4055. "i18n",
  4056. "icu",
  4057. "internationalization",
  4058. "intl",
  4059. "l10n",
  4060. "localization"
  4061. ],
  4062. "support": {
  4063. "source": "https://github.com/symfony/intl/tree/v7.3.1"
  4064. },
  4065. "funding": [
  4066. {
  4067. "url": "https://symfony.com/sponsor",
  4068. "type": "custom"
  4069. },
  4070. {
  4071. "url": "https://github.com/fabpot",
  4072. "type": "github"
  4073. },
  4074. {
  4075. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4076. "type": "tidelift"
  4077. }
  4078. ],
  4079. "time": "2025-06-06T16:10:07+00:00"
  4080. },
  4081. {
  4082. "name": "symfony/mailer",
  4083. "version": "v7.3.1",
  4084. "source": {
  4085. "type": "git",
  4086. "url": "https://github.com/symfony/mailer.git",
  4087. "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368"
  4088. },
  4089. "dist": {
  4090. "type": "zip",
  4091. "url": "https://api.github.com/repos/symfony/mailer/zipball/b5db5105b290bdbea5ab27b89c69effcf1cb3368",
  4092. "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368",
  4093. "shasum": ""
  4094. },
  4095. "require": {
  4096. "egulias/email-validator": "^2.1.10|^3|^4",
  4097. "php": ">=8.2",
  4098. "psr/event-dispatcher": "^1",
  4099. "psr/log": "^1|^2|^3",
  4100. "symfony/event-dispatcher": "^6.4|^7.0",
  4101. "symfony/mime": "^7.2",
  4102. "symfony/service-contracts": "^2.5|^3"
  4103. },
  4104. "conflict": {
  4105. "symfony/http-client-contracts": "<2.5",
  4106. "symfony/http-kernel": "<6.4",
  4107. "symfony/messenger": "<6.4",
  4108. "symfony/mime": "<6.4",
  4109. "symfony/twig-bridge": "<6.4"
  4110. },
  4111. "require-dev": {
  4112. "symfony/console": "^6.4|^7.0",
  4113. "symfony/http-client": "^6.4|^7.0",
  4114. "symfony/messenger": "^6.4|^7.0",
  4115. "symfony/twig-bridge": "^6.4|^7.0"
  4116. },
  4117. "type": "library",
  4118. "autoload": {
  4119. "psr-4": {
  4120. "Symfony\\Component\\Mailer\\": ""
  4121. },
  4122. "exclude-from-classmap": [
  4123. "/Tests/"
  4124. ]
  4125. },
  4126. "notification-url": "https://packagist.org/downloads/",
  4127. "license": [
  4128. "MIT"
  4129. ],
  4130. "authors": [
  4131. {
  4132. "name": "Fabien Potencier",
  4133. "email": "fabien@symfony.com"
  4134. },
  4135. {
  4136. "name": "Symfony Community",
  4137. "homepage": "https://symfony.com/contributors"
  4138. }
  4139. ],
  4140. "description": "Helps sending emails",
  4141. "homepage": "https://symfony.com",
  4142. "support": {
  4143. "source": "https://github.com/symfony/mailer/tree/v7.3.1"
  4144. },
  4145. "funding": [
  4146. {
  4147. "url": "https://symfony.com/sponsor",
  4148. "type": "custom"
  4149. },
  4150. {
  4151. "url": "https://github.com/fabpot",
  4152. "type": "github"
  4153. },
  4154. {
  4155. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4156. "type": "tidelift"
  4157. }
  4158. ],
  4159. "time": "2025-06-27T19:55:54+00:00"
  4160. },
  4161. {
  4162. "name": "symfony/messenger",
  4163. "version": "v7.3.1",
  4164. "source": {
  4165. "type": "git",
  4166. "url": "https://github.com/symfony/messenger.git",
  4167. "reference": "716c89b86ce58c4946d436d862694971c999d1aa"
  4168. },
  4169. "dist": {
  4170. "type": "zip",
  4171. "url": "https://api.github.com/repos/symfony/messenger/zipball/716c89b86ce58c4946d436d862694971c999d1aa",
  4172. "reference": "716c89b86ce58c4946d436d862694971c999d1aa",
  4173. "shasum": ""
  4174. },
  4175. "require": {
  4176. "php": ">=8.2",
  4177. "psr/log": "^1|^2|^3",
  4178. "symfony/clock": "^6.4|^7.0",
  4179. "symfony/deprecation-contracts": "^2.5|^3"
  4180. },
  4181. "conflict": {
  4182. "symfony/console": "<7.2",
  4183. "symfony/event-dispatcher": "<6.4",
  4184. "symfony/event-dispatcher-contracts": "<2.5",
  4185. "symfony/framework-bundle": "<6.4",
  4186. "symfony/http-kernel": "<6.4",
  4187. "symfony/lock": "<6.4",
  4188. "symfony/serializer": "<6.4"
  4189. },
  4190. "require-dev": {
  4191. "psr/cache": "^1.0|^2.0|^3.0",
  4192. "symfony/console": "^7.2",
  4193. "symfony/dependency-injection": "^6.4|^7.0",
  4194. "symfony/event-dispatcher": "^6.4|^7.0",
  4195. "symfony/http-kernel": "^6.4|^7.0",
  4196. "symfony/lock": "^6.4|^7.0",
  4197. "symfony/process": "^6.4|^7.0",
  4198. "symfony/property-access": "^6.4|^7.0",
  4199. "symfony/rate-limiter": "^6.4|^7.0",
  4200. "symfony/routing": "^6.4|^7.0",
  4201. "symfony/serializer": "^6.4|^7.0",
  4202. "symfony/service-contracts": "^2.5|^3",
  4203. "symfony/stopwatch": "^6.4|^7.0",
  4204. "symfony/validator": "^6.4|^7.0"
  4205. },
  4206. "type": "library",
  4207. "autoload": {
  4208. "psr-4": {
  4209. "Symfony\\Component\\Messenger\\": ""
  4210. },
  4211. "exclude-from-classmap": [
  4212. "/Tests/"
  4213. ]
  4214. },
  4215. "notification-url": "https://packagist.org/downloads/",
  4216. "license": [
  4217. "MIT"
  4218. ],
  4219. "authors": [
  4220. {
  4221. "name": "Samuel Roze",
  4222. "email": "samuel.roze@gmail.com"
  4223. },
  4224. {
  4225. "name": "Symfony Community",
  4226. "homepage": "https://symfony.com/contributors"
  4227. }
  4228. ],
  4229. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  4230. "homepage": "https://symfony.com",
  4231. "support": {
  4232. "source": "https://github.com/symfony/messenger/tree/v7.3.1"
  4233. },
  4234. "funding": [
  4235. {
  4236. "url": "https://symfony.com/sponsor",
  4237. "type": "custom"
  4238. },
  4239. {
  4240. "url": "https://github.com/fabpot",
  4241. "type": "github"
  4242. },
  4243. {
  4244. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4245. "type": "tidelift"
  4246. }
  4247. ],
  4248. "time": "2025-06-27T19:55:54+00:00"
  4249. },
  4250. {
  4251. "name": "symfony/mime",
  4252. "version": "v7.3.0",
  4253. "source": {
  4254. "type": "git",
  4255. "url": "https://github.com/symfony/mime.git",
  4256. "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9"
  4257. },
  4258. "dist": {
  4259. "type": "zip",
  4260. "url": "https://api.github.com/repos/symfony/mime/zipball/0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
  4261. "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
  4262. "shasum": ""
  4263. },
  4264. "require": {
  4265. "php": ">=8.2",
  4266. "symfony/polyfill-intl-idn": "^1.10",
  4267. "symfony/polyfill-mbstring": "^1.0"
  4268. },
  4269. "conflict": {
  4270. "egulias/email-validator": "~3.0.0",
  4271. "phpdocumentor/reflection-docblock": "<3.2.2",
  4272. "phpdocumentor/type-resolver": "<1.4.0",
  4273. "symfony/mailer": "<6.4",
  4274. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  4275. },
  4276. "require-dev": {
  4277. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4278. "league/html-to-markdown": "^5.0",
  4279. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4280. "symfony/dependency-injection": "^6.4|^7.0",
  4281. "symfony/process": "^6.4|^7.0",
  4282. "symfony/property-access": "^6.4|^7.0",
  4283. "symfony/property-info": "^6.4|^7.0",
  4284. "symfony/serializer": "^6.4.3|^7.0.3"
  4285. },
  4286. "type": "library",
  4287. "autoload": {
  4288. "psr-4": {
  4289. "Symfony\\Component\\Mime\\": ""
  4290. },
  4291. "exclude-from-classmap": [
  4292. "/Tests/"
  4293. ]
  4294. },
  4295. "notification-url": "https://packagist.org/downloads/",
  4296. "license": [
  4297. "MIT"
  4298. ],
  4299. "authors": [
  4300. {
  4301. "name": "Fabien Potencier",
  4302. "email": "fabien@symfony.com"
  4303. },
  4304. {
  4305. "name": "Symfony Community",
  4306. "homepage": "https://symfony.com/contributors"
  4307. }
  4308. ],
  4309. "description": "Allows manipulating MIME messages",
  4310. "homepage": "https://symfony.com",
  4311. "keywords": [
  4312. "mime",
  4313. "mime-type"
  4314. ],
  4315. "support": {
  4316. "source": "https://github.com/symfony/mime/tree/v7.3.0"
  4317. },
  4318. "funding": [
  4319. {
  4320. "url": "https://symfony.com/sponsor",
  4321. "type": "custom"
  4322. },
  4323. {
  4324. "url": "https://github.com/fabpot",
  4325. "type": "github"
  4326. },
  4327. {
  4328. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4329. "type": "tidelift"
  4330. }
  4331. ],
  4332. "time": "2025-02-19T08:51:26+00:00"
  4333. },
  4334. {
  4335. "name": "symfony/monolog-bridge",
  4336. "version": "v7.3.0",
  4337. "source": {
  4338. "type": "git",
  4339. "url": "https://github.com/symfony/monolog-bridge.git",
  4340. "reference": "1b188c8abbbef25b111da878797514b7a8d33990"
  4341. },
  4342. "dist": {
  4343. "type": "zip",
  4344. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/1b188c8abbbef25b111da878797514b7a8d33990",
  4345. "reference": "1b188c8abbbef25b111da878797514b7a8d33990",
  4346. "shasum": ""
  4347. },
  4348. "require": {
  4349. "monolog/monolog": "^3",
  4350. "php": ">=8.2",
  4351. "symfony/http-kernel": "^6.4|^7.0",
  4352. "symfony/service-contracts": "^2.5|^3"
  4353. },
  4354. "conflict": {
  4355. "symfony/console": "<6.4",
  4356. "symfony/http-foundation": "<6.4",
  4357. "symfony/security-core": "<6.4"
  4358. },
  4359. "require-dev": {
  4360. "symfony/console": "^6.4|^7.0",
  4361. "symfony/http-client": "^6.4|^7.0",
  4362. "symfony/mailer": "^6.4|^7.0",
  4363. "symfony/messenger": "^6.4|^7.0",
  4364. "symfony/mime": "^6.4|^7.0",
  4365. "symfony/security-core": "^6.4|^7.0",
  4366. "symfony/var-dumper": "^6.4|^7.0"
  4367. },
  4368. "type": "symfony-bridge",
  4369. "autoload": {
  4370. "psr-4": {
  4371. "Symfony\\Bridge\\Monolog\\": ""
  4372. },
  4373. "exclude-from-classmap": [
  4374. "/Tests/"
  4375. ]
  4376. },
  4377. "notification-url": "https://packagist.org/downloads/",
  4378. "license": [
  4379. "MIT"
  4380. ],
  4381. "authors": [
  4382. {
  4383. "name": "Fabien Potencier",
  4384. "email": "fabien@symfony.com"
  4385. },
  4386. {
  4387. "name": "Symfony Community",
  4388. "homepage": "https://symfony.com/contributors"
  4389. }
  4390. ],
  4391. "description": "Provides integration for Monolog with various Symfony components",
  4392. "homepage": "https://symfony.com",
  4393. "support": {
  4394. "source": "https://github.com/symfony/monolog-bridge/tree/v7.3.0"
  4395. },
  4396. "funding": [
  4397. {
  4398. "url": "https://symfony.com/sponsor",
  4399. "type": "custom"
  4400. },
  4401. {
  4402. "url": "https://github.com/fabpot",
  4403. "type": "github"
  4404. },
  4405. {
  4406. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4407. "type": "tidelift"
  4408. }
  4409. ],
  4410. "time": "2025-03-21T12:17:46+00:00"
  4411. },
  4412. {
  4413. "name": "symfony/monolog-bundle",
  4414. "version": "v3.10.0",
  4415. "source": {
  4416. "type": "git",
  4417. "url": "https://github.com/symfony/monolog-bundle.git",
  4418. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  4419. },
  4420. "dist": {
  4421. "type": "zip",
  4422. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  4423. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  4424. "shasum": ""
  4425. },
  4426. "require": {
  4427. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  4428. "php": ">=7.2.5",
  4429. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  4430. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  4431. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  4432. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  4433. },
  4434. "require-dev": {
  4435. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  4436. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  4437. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  4438. },
  4439. "type": "symfony-bundle",
  4440. "extra": {
  4441. "branch-alias": {
  4442. "dev-master": "3.x-dev"
  4443. }
  4444. },
  4445. "autoload": {
  4446. "psr-4": {
  4447. "Symfony\\Bundle\\MonologBundle\\": ""
  4448. },
  4449. "exclude-from-classmap": [
  4450. "/Tests/"
  4451. ]
  4452. },
  4453. "notification-url": "https://packagist.org/downloads/",
  4454. "license": [
  4455. "MIT"
  4456. ],
  4457. "authors": [
  4458. {
  4459. "name": "Fabien Potencier",
  4460. "email": "fabien@symfony.com"
  4461. },
  4462. {
  4463. "name": "Symfony Community",
  4464. "homepage": "https://symfony.com/contributors"
  4465. }
  4466. ],
  4467. "description": "Symfony MonologBundle",
  4468. "homepage": "https://symfony.com",
  4469. "keywords": [
  4470. "log",
  4471. "logging"
  4472. ],
  4473. "support": {
  4474. "issues": "https://github.com/symfony/monolog-bundle/issues",
  4475. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  4476. },
  4477. "funding": [
  4478. {
  4479. "url": "https://symfony.com/sponsor",
  4480. "type": "custom"
  4481. },
  4482. {
  4483. "url": "https://github.com/fabpot",
  4484. "type": "github"
  4485. },
  4486. {
  4487. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4488. "type": "tidelift"
  4489. }
  4490. ],
  4491. "time": "2023-11-06T17:08:13+00:00"
  4492. },
  4493. {
  4494. "name": "symfony/notifier",
  4495. "version": "v7.3.0",
  4496. "source": {
  4497. "type": "git",
  4498. "url": "https://github.com/symfony/notifier.git",
  4499. "reference": "9e68a3266c8b0381f8756022b1c1ba3c0264416e"
  4500. },
  4501. "dist": {
  4502. "type": "zip",
  4503. "url": "https://api.github.com/repos/symfony/notifier/zipball/9e68a3266c8b0381f8756022b1c1ba3c0264416e",
  4504. "reference": "9e68a3266c8b0381f8756022b1c1ba3c0264416e",
  4505. "shasum": ""
  4506. },
  4507. "require": {
  4508. "php": ">=8.2",
  4509. "psr/log": "^1|^2|^3"
  4510. },
  4511. "conflict": {
  4512. "symfony/event-dispatcher": "<6.4",
  4513. "symfony/event-dispatcher-contracts": "<2.5",
  4514. "symfony/http-client-contracts": "<2.5",
  4515. "symfony/http-kernel": "<6.4"
  4516. },
  4517. "require-dev": {
  4518. "symfony/event-dispatcher-contracts": "^2.5|^3",
  4519. "symfony/http-client-contracts": "^2.5|^3",
  4520. "symfony/http-foundation": "^6.4|^7.0",
  4521. "symfony/messenger": "^6.4|^7.0"
  4522. },
  4523. "type": "library",
  4524. "autoload": {
  4525. "psr-4": {
  4526. "Symfony\\Component\\Notifier\\": ""
  4527. },
  4528. "exclude-from-classmap": [
  4529. "/Tests/"
  4530. ]
  4531. },
  4532. "notification-url": "https://packagist.org/downloads/",
  4533. "license": [
  4534. "MIT"
  4535. ],
  4536. "authors": [
  4537. {
  4538. "name": "Fabien Potencier",
  4539. "email": "fabien@symfony.com"
  4540. },
  4541. {
  4542. "name": "Symfony Community",
  4543. "homepage": "https://symfony.com/contributors"
  4544. }
  4545. ],
  4546. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  4547. "homepage": "https://symfony.com",
  4548. "keywords": [
  4549. "notification",
  4550. "notifier"
  4551. ],
  4552. "support": {
  4553. "source": "https://github.com/symfony/notifier/tree/v7.3.0"
  4554. },
  4555. "funding": [
  4556. {
  4557. "url": "https://symfony.com/sponsor",
  4558. "type": "custom"
  4559. },
  4560. {
  4561. "url": "https://github.com/fabpot",
  4562. "type": "github"
  4563. },
  4564. {
  4565. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4566. "type": "tidelift"
  4567. }
  4568. ],
  4569. "time": "2025-05-01T12:12:53+00:00"
  4570. },
  4571. {
  4572. "name": "symfony/options-resolver",
  4573. "version": "v7.3.0",
  4574. "source": {
  4575. "type": "git",
  4576. "url": "https://github.com/symfony/options-resolver.git",
  4577. "reference": "afb9a8038025e5dbc657378bfab9198d75f10fca"
  4578. },
  4579. "dist": {
  4580. "type": "zip",
  4581. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/afb9a8038025e5dbc657378bfab9198d75f10fca",
  4582. "reference": "afb9a8038025e5dbc657378bfab9198d75f10fca",
  4583. "shasum": ""
  4584. },
  4585. "require": {
  4586. "php": ">=8.2",
  4587. "symfony/deprecation-contracts": "^2.5|^3"
  4588. },
  4589. "type": "library",
  4590. "autoload": {
  4591. "psr-4": {
  4592. "Symfony\\Component\\OptionsResolver\\": ""
  4593. },
  4594. "exclude-from-classmap": [
  4595. "/Tests/"
  4596. ]
  4597. },
  4598. "notification-url": "https://packagist.org/downloads/",
  4599. "license": [
  4600. "MIT"
  4601. ],
  4602. "authors": [
  4603. {
  4604. "name": "Fabien Potencier",
  4605. "email": "fabien@symfony.com"
  4606. },
  4607. {
  4608. "name": "Symfony Community",
  4609. "homepage": "https://symfony.com/contributors"
  4610. }
  4611. ],
  4612. "description": "Provides an improved replacement for the array_replace PHP function",
  4613. "homepage": "https://symfony.com",
  4614. "keywords": [
  4615. "config",
  4616. "configuration",
  4617. "options"
  4618. ],
  4619. "support": {
  4620. "source": "https://github.com/symfony/options-resolver/tree/v7.3.0"
  4621. },
  4622. "funding": [
  4623. {
  4624. "url": "https://symfony.com/sponsor",
  4625. "type": "custom"
  4626. },
  4627. {
  4628. "url": "https://github.com/fabpot",
  4629. "type": "github"
  4630. },
  4631. {
  4632. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4633. "type": "tidelift"
  4634. }
  4635. ],
  4636. "time": "2025-04-04T13:12:05+00:00"
  4637. },
  4638. {
  4639. "name": "symfony/password-hasher",
  4640. "version": "v7.3.0",
  4641. "source": {
  4642. "type": "git",
  4643. "url": "https://github.com/symfony/password-hasher.git",
  4644. "reference": "31fbe66af859582a20b803f38be96be8accdf2c3"
  4645. },
  4646. "dist": {
  4647. "type": "zip",
  4648. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/31fbe66af859582a20b803f38be96be8accdf2c3",
  4649. "reference": "31fbe66af859582a20b803f38be96be8accdf2c3",
  4650. "shasum": ""
  4651. },
  4652. "require": {
  4653. "php": ">=8.2"
  4654. },
  4655. "conflict": {
  4656. "symfony/security-core": "<6.4"
  4657. },
  4658. "require-dev": {
  4659. "symfony/console": "^6.4|^7.0",
  4660. "symfony/security-core": "^6.4|^7.0"
  4661. },
  4662. "type": "library",
  4663. "autoload": {
  4664. "psr-4": {
  4665. "Symfony\\Component\\PasswordHasher\\": ""
  4666. },
  4667. "exclude-from-classmap": [
  4668. "/Tests/"
  4669. ]
  4670. },
  4671. "notification-url": "https://packagist.org/downloads/",
  4672. "license": [
  4673. "MIT"
  4674. ],
  4675. "authors": [
  4676. {
  4677. "name": "Robin Chalas",
  4678. "email": "robin.chalas@gmail.com"
  4679. },
  4680. {
  4681. "name": "Symfony Community",
  4682. "homepage": "https://symfony.com/contributors"
  4683. }
  4684. ],
  4685. "description": "Provides password hashing utilities",
  4686. "homepage": "https://symfony.com",
  4687. "keywords": [
  4688. "hashing",
  4689. "password"
  4690. ],
  4691. "support": {
  4692. "source": "https://github.com/symfony/password-hasher/tree/v7.3.0"
  4693. },
  4694. "funding": [
  4695. {
  4696. "url": "https://symfony.com/sponsor",
  4697. "type": "custom"
  4698. },
  4699. {
  4700. "url": "https://github.com/fabpot",
  4701. "type": "github"
  4702. },
  4703. {
  4704. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4705. "type": "tidelift"
  4706. }
  4707. ],
  4708. "time": "2025-02-04T08:22:58+00:00"
  4709. },
  4710. {
  4711. "name": "symfony/polyfill-intl-grapheme",
  4712. "version": "v1.32.0",
  4713. "source": {
  4714. "type": "git",
  4715. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4716. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  4717. },
  4718. "dist": {
  4719. "type": "zip",
  4720. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  4721. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  4722. "shasum": ""
  4723. },
  4724. "require": {
  4725. "php": ">=7.2"
  4726. },
  4727. "suggest": {
  4728. "ext-intl": "For best performance"
  4729. },
  4730. "type": "library",
  4731. "extra": {
  4732. "thanks": {
  4733. "url": "https://github.com/symfony/polyfill",
  4734. "name": "symfony/polyfill"
  4735. }
  4736. },
  4737. "autoload": {
  4738. "files": [
  4739. "bootstrap.php"
  4740. ],
  4741. "psr-4": {
  4742. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4743. }
  4744. },
  4745. "notification-url": "https://packagist.org/downloads/",
  4746. "license": [
  4747. "MIT"
  4748. ],
  4749. "authors": [
  4750. {
  4751. "name": "Nicolas Grekas",
  4752. "email": "p@tchwork.com"
  4753. },
  4754. {
  4755. "name": "Symfony Community",
  4756. "homepage": "https://symfony.com/contributors"
  4757. }
  4758. ],
  4759. "description": "Symfony polyfill for intl's grapheme_* functions",
  4760. "homepage": "https://symfony.com",
  4761. "keywords": [
  4762. "compatibility",
  4763. "grapheme",
  4764. "intl",
  4765. "polyfill",
  4766. "portable",
  4767. "shim"
  4768. ],
  4769. "support": {
  4770. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
  4771. },
  4772. "funding": [
  4773. {
  4774. "url": "https://symfony.com/sponsor",
  4775. "type": "custom"
  4776. },
  4777. {
  4778. "url": "https://github.com/fabpot",
  4779. "type": "github"
  4780. },
  4781. {
  4782. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4783. "type": "tidelift"
  4784. }
  4785. ],
  4786. "time": "2024-09-09T11:45:10+00:00"
  4787. },
  4788. {
  4789. "name": "symfony/polyfill-intl-icu",
  4790. "version": "v1.32.0",
  4791. "source": {
  4792. "type": "git",
  4793. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  4794. "reference": "763d2a91fea5681509ca01acbc1c5e450d127811"
  4795. },
  4796. "dist": {
  4797. "type": "zip",
  4798. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/763d2a91fea5681509ca01acbc1c5e450d127811",
  4799. "reference": "763d2a91fea5681509ca01acbc1c5e450d127811",
  4800. "shasum": ""
  4801. },
  4802. "require": {
  4803. "php": ">=7.2"
  4804. },
  4805. "suggest": {
  4806. "ext-intl": "For best performance and support of other locales than \"en\""
  4807. },
  4808. "type": "library",
  4809. "extra": {
  4810. "thanks": {
  4811. "url": "https://github.com/symfony/polyfill",
  4812. "name": "symfony/polyfill"
  4813. }
  4814. },
  4815. "autoload": {
  4816. "files": [
  4817. "bootstrap.php"
  4818. ],
  4819. "psr-4": {
  4820. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  4821. },
  4822. "classmap": [
  4823. "Resources/stubs"
  4824. ],
  4825. "exclude-from-classmap": [
  4826. "/Tests/"
  4827. ]
  4828. },
  4829. "notification-url": "https://packagist.org/downloads/",
  4830. "license": [
  4831. "MIT"
  4832. ],
  4833. "authors": [
  4834. {
  4835. "name": "Nicolas Grekas",
  4836. "email": "p@tchwork.com"
  4837. },
  4838. {
  4839. "name": "Symfony Community",
  4840. "homepage": "https://symfony.com/contributors"
  4841. }
  4842. ],
  4843. "description": "Symfony polyfill for intl's ICU-related data and classes",
  4844. "homepage": "https://symfony.com",
  4845. "keywords": [
  4846. "compatibility",
  4847. "icu",
  4848. "intl",
  4849. "polyfill",
  4850. "portable",
  4851. "shim"
  4852. ],
  4853. "support": {
  4854. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.32.0"
  4855. },
  4856. "funding": [
  4857. {
  4858. "url": "https://symfony.com/sponsor",
  4859. "type": "custom"
  4860. },
  4861. {
  4862. "url": "https://github.com/fabpot",
  4863. "type": "github"
  4864. },
  4865. {
  4866. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4867. "type": "tidelift"
  4868. }
  4869. ],
  4870. "time": "2024-12-21T18:38:29+00:00"
  4871. },
  4872. {
  4873. "name": "symfony/polyfill-intl-idn",
  4874. "version": "v1.32.0",
  4875. "source": {
  4876. "type": "git",
  4877. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4878. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  4879. },
  4880. "dist": {
  4881. "type": "zip",
  4882. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  4883. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  4884. "shasum": ""
  4885. },
  4886. "require": {
  4887. "php": ">=7.2",
  4888. "symfony/polyfill-intl-normalizer": "^1.10"
  4889. },
  4890. "suggest": {
  4891. "ext-intl": "For best performance"
  4892. },
  4893. "type": "library",
  4894. "extra": {
  4895. "thanks": {
  4896. "url": "https://github.com/symfony/polyfill",
  4897. "name": "symfony/polyfill"
  4898. }
  4899. },
  4900. "autoload": {
  4901. "files": [
  4902. "bootstrap.php"
  4903. ],
  4904. "psr-4": {
  4905. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4906. }
  4907. },
  4908. "notification-url": "https://packagist.org/downloads/",
  4909. "license": [
  4910. "MIT"
  4911. ],
  4912. "authors": [
  4913. {
  4914. "name": "Laurent Bassin",
  4915. "email": "laurent@bassin.info"
  4916. },
  4917. {
  4918. "name": "Trevor Rowbotham",
  4919. "email": "trevor.rowbotham@pm.me"
  4920. },
  4921. {
  4922. "name": "Symfony Community",
  4923. "homepage": "https://symfony.com/contributors"
  4924. }
  4925. ],
  4926. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4927. "homepage": "https://symfony.com",
  4928. "keywords": [
  4929. "compatibility",
  4930. "idn",
  4931. "intl",
  4932. "polyfill",
  4933. "portable",
  4934. "shim"
  4935. ],
  4936. "support": {
  4937. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  4938. },
  4939. "funding": [
  4940. {
  4941. "url": "https://symfony.com/sponsor",
  4942. "type": "custom"
  4943. },
  4944. {
  4945. "url": "https://github.com/fabpot",
  4946. "type": "github"
  4947. },
  4948. {
  4949. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4950. "type": "tidelift"
  4951. }
  4952. ],
  4953. "time": "2024-09-10T14:38:51+00:00"
  4954. },
  4955. {
  4956. "name": "symfony/polyfill-intl-normalizer",
  4957. "version": "v1.32.0",
  4958. "source": {
  4959. "type": "git",
  4960. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4961. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  4962. },
  4963. "dist": {
  4964. "type": "zip",
  4965. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  4966. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  4967. "shasum": ""
  4968. },
  4969. "require": {
  4970. "php": ">=7.2"
  4971. },
  4972. "suggest": {
  4973. "ext-intl": "For best performance"
  4974. },
  4975. "type": "library",
  4976. "extra": {
  4977. "thanks": {
  4978. "url": "https://github.com/symfony/polyfill",
  4979. "name": "symfony/polyfill"
  4980. }
  4981. },
  4982. "autoload": {
  4983. "files": [
  4984. "bootstrap.php"
  4985. ],
  4986. "psr-4": {
  4987. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4988. },
  4989. "classmap": [
  4990. "Resources/stubs"
  4991. ]
  4992. },
  4993. "notification-url": "https://packagist.org/downloads/",
  4994. "license": [
  4995. "MIT"
  4996. ],
  4997. "authors": [
  4998. {
  4999. "name": "Nicolas Grekas",
  5000. "email": "p@tchwork.com"
  5001. },
  5002. {
  5003. "name": "Symfony Community",
  5004. "homepage": "https://symfony.com/contributors"
  5005. }
  5006. ],
  5007. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5008. "homepage": "https://symfony.com",
  5009. "keywords": [
  5010. "compatibility",
  5011. "intl",
  5012. "normalizer",
  5013. "polyfill",
  5014. "portable",
  5015. "shim"
  5016. ],
  5017. "support": {
  5018. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  5019. },
  5020. "funding": [
  5021. {
  5022. "url": "https://symfony.com/sponsor",
  5023. "type": "custom"
  5024. },
  5025. {
  5026. "url": "https://github.com/fabpot",
  5027. "type": "github"
  5028. },
  5029. {
  5030. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5031. "type": "tidelift"
  5032. }
  5033. ],
  5034. "time": "2024-09-09T11:45:10+00:00"
  5035. },
  5036. {
  5037. "name": "symfony/polyfill-mbstring",
  5038. "version": "v1.32.0",
  5039. "source": {
  5040. "type": "git",
  5041. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5042. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  5043. },
  5044. "dist": {
  5045. "type": "zip",
  5046. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  5047. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  5048. "shasum": ""
  5049. },
  5050. "require": {
  5051. "ext-iconv": "*",
  5052. "php": ">=7.2"
  5053. },
  5054. "provide": {
  5055. "ext-mbstring": "*"
  5056. },
  5057. "suggest": {
  5058. "ext-mbstring": "For best performance"
  5059. },
  5060. "type": "library",
  5061. "extra": {
  5062. "thanks": {
  5063. "url": "https://github.com/symfony/polyfill",
  5064. "name": "symfony/polyfill"
  5065. }
  5066. },
  5067. "autoload": {
  5068. "files": [
  5069. "bootstrap.php"
  5070. ],
  5071. "psr-4": {
  5072. "Symfony\\Polyfill\\Mbstring\\": ""
  5073. }
  5074. },
  5075. "notification-url": "https://packagist.org/downloads/",
  5076. "license": [
  5077. "MIT"
  5078. ],
  5079. "authors": [
  5080. {
  5081. "name": "Nicolas Grekas",
  5082. "email": "p@tchwork.com"
  5083. },
  5084. {
  5085. "name": "Symfony Community",
  5086. "homepage": "https://symfony.com/contributors"
  5087. }
  5088. ],
  5089. "description": "Symfony polyfill for the Mbstring extension",
  5090. "homepage": "https://symfony.com",
  5091. "keywords": [
  5092. "compatibility",
  5093. "mbstring",
  5094. "polyfill",
  5095. "portable",
  5096. "shim"
  5097. ],
  5098. "support": {
  5099. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  5100. },
  5101. "funding": [
  5102. {
  5103. "url": "https://symfony.com/sponsor",
  5104. "type": "custom"
  5105. },
  5106. {
  5107. "url": "https://github.com/fabpot",
  5108. "type": "github"
  5109. },
  5110. {
  5111. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5112. "type": "tidelift"
  5113. }
  5114. ],
  5115. "time": "2024-12-23T08:48:59+00:00"
  5116. },
  5117. {
  5118. "name": "symfony/polyfill-php83",
  5119. "version": "v1.32.0",
  5120. "source": {
  5121. "type": "git",
  5122. "url": "https://github.com/symfony/polyfill-php83.git",
  5123. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  5124. },
  5125. "dist": {
  5126. "type": "zip",
  5127. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  5128. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  5129. "shasum": ""
  5130. },
  5131. "require": {
  5132. "php": ">=7.2"
  5133. },
  5134. "type": "library",
  5135. "extra": {
  5136. "thanks": {
  5137. "url": "https://github.com/symfony/polyfill",
  5138. "name": "symfony/polyfill"
  5139. }
  5140. },
  5141. "autoload": {
  5142. "files": [
  5143. "bootstrap.php"
  5144. ],
  5145. "psr-4": {
  5146. "Symfony\\Polyfill\\Php83\\": ""
  5147. },
  5148. "classmap": [
  5149. "Resources/stubs"
  5150. ]
  5151. },
  5152. "notification-url": "https://packagist.org/downloads/",
  5153. "license": [
  5154. "MIT"
  5155. ],
  5156. "authors": [
  5157. {
  5158. "name": "Nicolas Grekas",
  5159. "email": "p@tchwork.com"
  5160. },
  5161. {
  5162. "name": "Symfony Community",
  5163. "homepage": "https://symfony.com/contributors"
  5164. }
  5165. ],
  5166. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5167. "homepage": "https://symfony.com",
  5168. "keywords": [
  5169. "compatibility",
  5170. "polyfill",
  5171. "portable",
  5172. "shim"
  5173. ],
  5174. "support": {
  5175. "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0"
  5176. },
  5177. "funding": [
  5178. {
  5179. "url": "https://symfony.com/sponsor",
  5180. "type": "custom"
  5181. },
  5182. {
  5183. "url": "https://github.com/fabpot",
  5184. "type": "github"
  5185. },
  5186. {
  5187. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5188. "type": "tidelift"
  5189. }
  5190. ],
  5191. "time": "2024-09-09T11:45:10+00:00"
  5192. },
  5193. {
  5194. "name": "symfony/polyfill-php84",
  5195. "version": "v1.32.0",
  5196. "source": {
  5197. "type": "git",
  5198. "url": "https://github.com/symfony/polyfill-php84.git",
  5199. "reference": "000df7860439609837bbe28670b0be15783b7fbf"
  5200. },
  5201. "dist": {
  5202. "type": "zip",
  5203. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/000df7860439609837bbe28670b0be15783b7fbf",
  5204. "reference": "000df7860439609837bbe28670b0be15783b7fbf",
  5205. "shasum": ""
  5206. },
  5207. "require": {
  5208. "php": ">=7.2"
  5209. },
  5210. "type": "library",
  5211. "extra": {
  5212. "thanks": {
  5213. "url": "https://github.com/symfony/polyfill",
  5214. "name": "symfony/polyfill"
  5215. }
  5216. },
  5217. "autoload": {
  5218. "files": [
  5219. "bootstrap.php"
  5220. ],
  5221. "psr-4": {
  5222. "Symfony\\Polyfill\\Php84\\": ""
  5223. },
  5224. "classmap": [
  5225. "Resources/stubs"
  5226. ]
  5227. },
  5228. "notification-url": "https://packagist.org/downloads/",
  5229. "license": [
  5230. "MIT"
  5231. ],
  5232. "authors": [
  5233. {
  5234. "name": "Nicolas Grekas",
  5235. "email": "p@tchwork.com"
  5236. },
  5237. {
  5238. "name": "Symfony Community",
  5239. "homepage": "https://symfony.com/contributors"
  5240. }
  5241. ],
  5242. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  5243. "homepage": "https://symfony.com",
  5244. "keywords": [
  5245. "compatibility",
  5246. "polyfill",
  5247. "portable",
  5248. "shim"
  5249. ],
  5250. "support": {
  5251. "source": "https://github.com/symfony/polyfill-php84/tree/v1.32.0"
  5252. },
  5253. "funding": [
  5254. {
  5255. "url": "https://symfony.com/sponsor",
  5256. "type": "custom"
  5257. },
  5258. {
  5259. "url": "https://github.com/fabpot",
  5260. "type": "github"
  5261. },
  5262. {
  5263. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5264. "type": "tidelift"
  5265. }
  5266. ],
  5267. "time": "2025-02-20T12:04:08+00:00"
  5268. },
  5269. {
  5270. "name": "symfony/process",
  5271. "version": "v7.3.0",
  5272. "source": {
  5273. "type": "git",
  5274. "url": "https://github.com/symfony/process.git",
  5275. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af"
  5276. },
  5277. "dist": {
  5278. "type": "zip",
  5279. "url": "https://api.github.com/repos/symfony/process/zipball/40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  5280. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  5281. "shasum": ""
  5282. },
  5283. "require": {
  5284. "php": ">=8.2"
  5285. },
  5286. "type": "library",
  5287. "autoload": {
  5288. "psr-4": {
  5289. "Symfony\\Component\\Process\\": ""
  5290. },
  5291. "exclude-from-classmap": [
  5292. "/Tests/"
  5293. ]
  5294. },
  5295. "notification-url": "https://packagist.org/downloads/",
  5296. "license": [
  5297. "MIT"
  5298. ],
  5299. "authors": [
  5300. {
  5301. "name": "Fabien Potencier",
  5302. "email": "fabien@symfony.com"
  5303. },
  5304. {
  5305. "name": "Symfony Community",
  5306. "homepage": "https://symfony.com/contributors"
  5307. }
  5308. ],
  5309. "description": "Executes commands in sub-processes",
  5310. "homepage": "https://symfony.com",
  5311. "support": {
  5312. "source": "https://github.com/symfony/process/tree/v7.3.0"
  5313. },
  5314. "funding": [
  5315. {
  5316. "url": "https://symfony.com/sponsor",
  5317. "type": "custom"
  5318. },
  5319. {
  5320. "url": "https://github.com/fabpot",
  5321. "type": "github"
  5322. },
  5323. {
  5324. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5325. "type": "tidelift"
  5326. }
  5327. ],
  5328. "time": "2025-04-17T09:11:12+00:00"
  5329. },
  5330. {
  5331. "name": "symfony/property-access",
  5332. "version": "v7.3.1",
  5333. "source": {
  5334. "type": "git",
  5335. "url": "https://github.com/symfony/property-access.git",
  5336. "reference": "518d15c8cca726ebe665dcd7154074584cf862e8"
  5337. },
  5338. "dist": {
  5339. "type": "zip",
  5340. "url": "https://api.github.com/repos/symfony/property-access/zipball/518d15c8cca726ebe665dcd7154074584cf862e8",
  5341. "reference": "518d15c8cca726ebe665dcd7154074584cf862e8",
  5342. "shasum": ""
  5343. },
  5344. "require": {
  5345. "php": ">=8.2",
  5346. "symfony/property-info": "^6.4|^7.0"
  5347. },
  5348. "require-dev": {
  5349. "symfony/cache": "^6.4|^7.0"
  5350. },
  5351. "type": "library",
  5352. "autoload": {
  5353. "psr-4": {
  5354. "Symfony\\Component\\PropertyAccess\\": ""
  5355. },
  5356. "exclude-from-classmap": [
  5357. "/Tests/"
  5358. ]
  5359. },
  5360. "notification-url": "https://packagist.org/downloads/",
  5361. "license": [
  5362. "MIT"
  5363. ],
  5364. "authors": [
  5365. {
  5366. "name": "Fabien Potencier",
  5367. "email": "fabien@symfony.com"
  5368. },
  5369. {
  5370. "name": "Symfony Community",
  5371. "homepage": "https://symfony.com/contributors"
  5372. }
  5373. ],
  5374. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  5375. "homepage": "https://symfony.com",
  5376. "keywords": [
  5377. "access",
  5378. "array",
  5379. "extraction",
  5380. "index",
  5381. "injection",
  5382. "object",
  5383. "property",
  5384. "property-path",
  5385. "reflection"
  5386. ],
  5387. "support": {
  5388. "source": "https://github.com/symfony/property-access/tree/v7.3.1"
  5389. },
  5390. "funding": [
  5391. {
  5392. "url": "https://symfony.com/sponsor",
  5393. "type": "custom"
  5394. },
  5395. {
  5396. "url": "https://github.com/fabpot",
  5397. "type": "github"
  5398. },
  5399. {
  5400. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5401. "type": "tidelift"
  5402. }
  5403. ],
  5404. "time": "2025-06-24T04:04:43+00:00"
  5405. },
  5406. {
  5407. "name": "symfony/property-info",
  5408. "version": "v7.3.1",
  5409. "source": {
  5410. "type": "git",
  5411. "url": "https://github.com/symfony/property-info.git",
  5412. "reference": "90586acbf2a6dd13bee4f09f09111c8bd4773970"
  5413. },
  5414. "dist": {
  5415. "type": "zip",
  5416. "url": "https://api.github.com/repos/symfony/property-info/zipball/90586acbf2a6dd13bee4f09f09111c8bd4773970",
  5417. "reference": "90586acbf2a6dd13bee4f09f09111c8bd4773970",
  5418. "shasum": ""
  5419. },
  5420. "require": {
  5421. "php": ">=8.2",
  5422. "symfony/deprecation-contracts": "^2.5|^3",
  5423. "symfony/string": "^6.4|^7.0",
  5424. "symfony/type-info": "~7.2.8|^7.3.1"
  5425. },
  5426. "conflict": {
  5427. "phpdocumentor/reflection-docblock": "<5.2",
  5428. "phpdocumentor/type-resolver": "<1.5.1",
  5429. "symfony/cache": "<6.4",
  5430. "symfony/dependency-injection": "<6.4",
  5431. "symfony/serializer": "<6.4"
  5432. },
  5433. "require-dev": {
  5434. "phpdocumentor/reflection-docblock": "^5.2",
  5435. "phpstan/phpdoc-parser": "^1.0|^2.0",
  5436. "symfony/cache": "^6.4|^7.0",
  5437. "symfony/dependency-injection": "^6.4|^7.0",
  5438. "symfony/serializer": "^6.4|^7.0"
  5439. },
  5440. "type": "library",
  5441. "autoload": {
  5442. "psr-4": {
  5443. "Symfony\\Component\\PropertyInfo\\": ""
  5444. },
  5445. "exclude-from-classmap": [
  5446. "/Tests/"
  5447. ]
  5448. },
  5449. "notification-url": "https://packagist.org/downloads/",
  5450. "license": [
  5451. "MIT"
  5452. ],
  5453. "authors": [
  5454. {
  5455. "name": "Kévin Dunglas",
  5456. "email": "dunglas@gmail.com"
  5457. },
  5458. {
  5459. "name": "Symfony Community",
  5460. "homepage": "https://symfony.com/contributors"
  5461. }
  5462. ],
  5463. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  5464. "homepage": "https://symfony.com",
  5465. "keywords": [
  5466. "doctrine",
  5467. "phpdoc",
  5468. "property",
  5469. "symfony",
  5470. "type",
  5471. "validator"
  5472. ],
  5473. "support": {
  5474. "source": "https://github.com/symfony/property-info/tree/v7.3.1"
  5475. },
  5476. "funding": [
  5477. {
  5478. "url": "https://symfony.com/sponsor",
  5479. "type": "custom"
  5480. },
  5481. {
  5482. "url": "https://github.com/fabpot",
  5483. "type": "github"
  5484. },
  5485. {
  5486. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5487. "type": "tidelift"
  5488. }
  5489. ],
  5490. "time": "2025-06-27T19:55:54+00:00"
  5491. },
  5492. {
  5493. "name": "symfony/routing",
  5494. "version": "v7.3.0",
  5495. "source": {
  5496. "type": "git",
  5497. "url": "https://github.com/symfony/routing.git",
  5498. "reference": "8e213820c5fea844ecea29203d2a308019007c15"
  5499. },
  5500. "dist": {
  5501. "type": "zip",
  5502. "url": "https://api.github.com/repos/symfony/routing/zipball/8e213820c5fea844ecea29203d2a308019007c15",
  5503. "reference": "8e213820c5fea844ecea29203d2a308019007c15",
  5504. "shasum": ""
  5505. },
  5506. "require": {
  5507. "php": ">=8.2",
  5508. "symfony/deprecation-contracts": "^2.5|^3"
  5509. },
  5510. "conflict": {
  5511. "symfony/config": "<6.4",
  5512. "symfony/dependency-injection": "<6.4",
  5513. "symfony/yaml": "<6.4"
  5514. },
  5515. "require-dev": {
  5516. "psr/log": "^1|^2|^3",
  5517. "symfony/config": "^6.4|^7.0",
  5518. "symfony/dependency-injection": "^6.4|^7.0",
  5519. "symfony/expression-language": "^6.4|^7.0",
  5520. "symfony/http-foundation": "^6.4|^7.0",
  5521. "symfony/yaml": "^6.4|^7.0"
  5522. },
  5523. "type": "library",
  5524. "autoload": {
  5525. "psr-4": {
  5526. "Symfony\\Component\\Routing\\": ""
  5527. },
  5528. "exclude-from-classmap": [
  5529. "/Tests/"
  5530. ]
  5531. },
  5532. "notification-url": "https://packagist.org/downloads/",
  5533. "license": [
  5534. "MIT"
  5535. ],
  5536. "authors": [
  5537. {
  5538. "name": "Fabien Potencier",
  5539. "email": "fabien@symfony.com"
  5540. },
  5541. {
  5542. "name": "Symfony Community",
  5543. "homepage": "https://symfony.com/contributors"
  5544. }
  5545. ],
  5546. "description": "Maps an HTTP request to a set of configuration variables",
  5547. "homepage": "https://symfony.com",
  5548. "keywords": [
  5549. "router",
  5550. "routing",
  5551. "uri",
  5552. "url"
  5553. ],
  5554. "support": {
  5555. "source": "https://github.com/symfony/routing/tree/v7.3.0"
  5556. },
  5557. "funding": [
  5558. {
  5559. "url": "https://symfony.com/sponsor",
  5560. "type": "custom"
  5561. },
  5562. {
  5563. "url": "https://github.com/fabpot",
  5564. "type": "github"
  5565. },
  5566. {
  5567. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5568. "type": "tidelift"
  5569. }
  5570. ],
  5571. "time": "2025-05-24T20:43:28+00:00"
  5572. },
  5573. {
  5574. "name": "symfony/runtime",
  5575. "version": "v7.3.1",
  5576. "source": {
  5577. "type": "git",
  5578. "url": "https://github.com/symfony/runtime.git",
  5579. "reference": "9516056d432f8acdac9458eb41b80097da7a05c9"
  5580. },
  5581. "dist": {
  5582. "type": "zip",
  5583. "url": "https://api.github.com/repos/symfony/runtime/zipball/9516056d432f8acdac9458eb41b80097da7a05c9",
  5584. "reference": "9516056d432f8acdac9458eb41b80097da7a05c9",
  5585. "shasum": ""
  5586. },
  5587. "require": {
  5588. "composer-plugin-api": "^1.0|^2.0",
  5589. "php": ">=8.2"
  5590. },
  5591. "conflict": {
  5592. "symfony/dotenv": "<6.4"
  5593. },
  5594. "require-dev": {
  5595. "composer/composer": "^2.6",
  5596. "symfony/console": "^6.4|^7.0",
  5597. "symfony/dotenv": "^6.4|^7.0",
  5598. "symfony/http-foundation": "^6.4|^7.0",
  5599. "symfony/http-kernel": "^6.4|^7.0"
  5600. },
  5601. "type": "composer-plugin",
  5602. "extra": {
  5603. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  5604. },
  5605. "autoload": {
  5606. "psr-4": {
  5607. "Symfony\\Component\\Runtime\\": "",
  5608. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  5609. },
  5610. "exclude-from-classmap": [
  5611. "/Tests/"
  5612. ]
  5613. },
  5614. "notification-url": "https://packagist.org/downloads/",
  5615. "license": [
  5616. "MIT"
  5617. ],
  5618. "authors": [
  5619. {
  5620. "name": "Nicolas Grekas",
  5621. "email": "p@tchwork.com"
  5622. },
  5623. {
  5624. "name": "Symfony Community",
  5625. "homepage": "https://symfony.com/contributors"
  5626. }
  5627. ],
  5628. "description": "Enables decoupling PHP applications from global state",
  5629. "homepage": "https://symfony.com",
  5630. "keywords": [
  5631. "runtime"
  5632. ],
  5633. "support": {
  5634. "source": "https://github.com/symfony/runtime/tree/v7.3.1"
  5635. },
  5636. "funding": [
  5637. {
  5638. "url": "https://symfony.com/sponsor",
  5639. "type": "custom"
  5640. },
  5641. {
  5642. "url": "https://github.com/fabpot",
  5643. "type": "github"
  5644. },
  5645. {
  5646. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5647. "type": "tidelift"
  5648. }
  5649. ],
  5650. "time": "2025-06-13T07:48:40+00:00"
  5651. },
  5652. {
  5653. "name": "symfony/security-bundle",
  5654. "version": "v7.3.1",
  5655. "source": {
  5656. "type": "git",
  5657. "url": "https://github.com/symfony/security-bundle.git",
  5658. "reference": "428a281fd66c8358adc2259c8578e6d81fbb7079"
  5659. },
  5660. "dist": {
  5661. "type": "zip",
  5662. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/428a281fd66c8358adc2259c8578e6d81fbb7079",
  5663. "reference": "428a281fd66c8358adc2259c8578e6d81fbb7079",
  5664. "shasum": ""
  5665. },
  5666. "require": {
  5667. "composer-runtime-api": ">=2.1",
  5668. "ext-xml": "*",
  5669. "php": ">=8.2",
  5670. "symfony/clock": "^6.4|^7.0",
  5671. "symfony/config": "^7.3",
  5672. "symfony/dependency-injection": "^6.4.11|^7.1.4",
  5673. "symfony/event-dispatcher": "^6.4|^7.0",
  5674. "symfony/http-foundation": "^6.4|^7.0",
  5675. "symfony/http-kernel": "^6.4|^7.0",
  5676. "symfony/password-hasher": "^6.4|^7.0",
  5677. "symfony/security-core": "^7.3",
  5678. "symfony/security-csrf": "^6.4|^7.0",
  5679. "symfony/security-http": "^7.3",
  5680. "symfony/service-contracts": "^2.5|^3"
  5681. },
  5682. "conflict": {
  5683. "symfony/browser-kit": "<6.4",
  5684. "symfony/console": "<6.4",
  5685. "symfony/framework-bundle": "<6.4",
  5686. "symfony/http-client": "<6.4",
  5687. "symfony/ldap": "<6.4",
  5688. "symfony/serializer": "<6.4",
  5689. "symfony/twig-bundle": "<6.4",
  5690. "symfony/validator": "<6.4"
  5691. },
  5692. "require-dev": {
  5693. "symfony/asset": "^6.4|^7.0",
  5694. "symfony/browser-kit": "^6.4|^7.0",
  5695. "symfony/console": "^6.4|^7.0",
  5696. "symfony/css-selector": "^6.4|^7.0",
  5697. "symfony/dom-crawler": "^6.4|^7.0",
  5698. "symfony/expression-language": "^6.4|^7.0",
  5699. "symfony/form": "^6.4|^7.0",
  5700. "symfony/framework-bundle": "^6.4|^7.0",
  5701. "symfony/http-client": "^6.4|^7.0",
  5702. "symfony/ldap": "^6.4|^7.0",
  5703. "symfony/process": "^6.4|^7.0",
  5704. "symfony/rate-limiter": "^6.4|^7.0",
  5705. "symfony/serializer": "^6.4|^7.0",
  5706. "symfony/translation": "^6.4|^7.0",
  5707. "symfony/twig-bridge": "^6.4|^7.0",
  5708. "symfony/twig-bundle": "^6.4|^7.0",
  5709. "symfony/validator": "^6.4|^7.0",
  5710. "symfony/yaml": "^6.4|^7.0",
  5711. "twig/twig": "^3.12",
  5712. "web-token/jwt-library": "^3.3.2|^4.0"
  5713. },
  5714. "type": "symfony-bundle",
  5715. "autoload": {
  5716. "psr-4": {
  5717. "Symfony\\Bundle\\SecurityBundle\\": ""
  5718. },
  5719. "exclude-from-classmap": [
  5720. "/Tests/"
  5721. ]
  5722. },
  5723. "notification-url": "https://packagist.org/downloads/",
  5724. "license": [
  5725. "MIT"
  5726. ],
  5727. "authors": [
  5728. {
  5729. "name": "Fabien Potencier",
  5730. "email": "fabien@symfony.com"
  5731. },
  5732. {
  5733. "name": "Symfony Community",
  5734. "homepage": "https://symfony.com/contributors"
  5735. }
  5736. ],
  5737. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  5738. "homepage": "https://symfony.com",
  5739. "support": {
  5740. "source": "https://github.com/symfony/security-bundle/tree/v7.3.1"
  5741. },
  5742. "funding": [
  5743. {
  5744. "url": "https://symfony.com/sponsor",
  5745. "type": "custom"
  5746. },
  5747. {
  5748. "url": "https://github.com/fabpot",
  5749. "type": "github"
  5750. },
  5751. {
  5752. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5753. "type": "tidelift"
  5754. }
  5755. ],
  5756. "time": "2025-06-24T04:04:43+00:00"
  5757. },
  5758. {
  5759. "name": "symfony/security-core",
  5760. "version": "v7.3.1",
  5761. "source": {
  5762. "type": "git",
  5763. "url": "https://github.com/symfony/security-core.git",
  5764. "reference": "fafab1003a31e51506e1a0a83e81c072211d81ba"
  5765. },
  5766. "dist": {
  5767. "type": "zip",
  5768. "url": "https://api.github.com/repos/symfony/security-core/zipball/fafab1003a31e51506e1a0a83e81c072211d81ba",
  5769. "reference": "fafab1003a31e51506e1a0a83e81c072211d81ba",
  5770. "shasum": ""
  5771. },
  5772. "require": {
  5773. "php": ">=8.2",
  5774. "symfony/deprecation-contracts": "^2.5|^3",
  5775. "symfony/event-dispatcher-contracts": "^2.5|^3",
  5776. "symfony/password-hasher": "^6.4|^7.0",
  5777. "symfony/service-contracts": "^2.5|^3"
  5778. },
  5779. "conflict": {
  5780. "symfony/dependency-injection": "<6.4",
  5781. "symfony/event-dispatcher": "<6.4",
  5782. "symfony/http-foundation": "<6.4",
  5783. "symfony/ldap": "<6.4",
  5784. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  5785. "symfony/validator": "<6.4"
  5786. },
  5787. "require-dev": {
  5788. "psr/cache": "^1.0|^2.0|^3.0",
  5789. "psr/container": "^1.1|^2.0",
  5790. "psr/log": "^1|^2|^3",
  5791. "symfony/cache": "^6.4|^7.0",
  5792. "symfony/dependency-injection": "^6.4|^7.0",
  5793. "symfony/event-dispatcher": "^6.4|^7.0",
  5794. "symfony/expression-language": "^6.4|^7.0",
  5795. "symfony/http-foundation": "^6.4|^7.0",
  5796. "symfony/ldap": "^6.4|^7.0",
  5797. "symfony/string": "^6.4|^7.0",
  5798. "symfony/translation": "^6.4.3|^7.0.3",
  5799. "symfony/validator": "^6.4|^7.0"
  5800. },
  5801. "type": "library",
  5802. "autoload": {
  5803. "psr-4": {
  5804. "Symfony\\Component\\Security\\Core\\": ""
  5805. },
  5806. "exclude-from-classmap": [
  5807. "/Tests/"
  5808. ]
  5809. },
  5810. "notification-url": "https://packagist.org/downloads/",
  5811. "license": [
  5812. "MIT"
  5813. ],
  5814. "authors": [
  5815. {
  5816. "name": "Fabien Potencier",
  5817. "email": "fabien@symfony.com"
  5818. },
  5819. {
  5820. "name": "Symfony Community",
  5821. "homepage": "https://symfony.com/contributors"
  5822. }
  5823. ],
  5824. "description": "Symfony Security Component - Core Library",
  5825. "homepage": "https://symfony.com",
  5826. "support": {
  5827. "source": "https://github.com/symfony/security-core/tree/v7.3.1"
  5828. },
  5829. "funding": [
  5830. {
  5831. "url": "https://symfony.com/sponsor",
  5832. "type": "custom"
  5833. },
  5834. {
  5835. "url": "https://github.com/fabpot",
  5836. "type": "github"
  5837. },
  5838. {
  5839. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5840. "type": "tidelift"
  5841. }
  5842. ],
  5843. "time": "2025-06-23T07:28:50+00:00"
  5844. },
  5845. {
  5846. "name": "symfony/security-csrf",
  5847. "version": "v7.3.0",
  5848. "source": {
  5849. "type": "git",
  5850. "url": "https://github.com/symfony/security-csrf.git",
  5851. "reference": "2b4b0c46c901729e4e90719eacd980381f53e0a3"
  5852. },
  5853. "dist": {
  5854. "type": "zip",
  5855. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/2b4b0c46c901729e4e90719eacd980381f53e0a3",
  5856. "reference": "2b4b0c46c901729e4e90719eacd980381f53e0a3",
  5857. "shasum": ""
  5858. },
  5859. "require": {
  5860. "php": ">=8.2",
  5861. "symfony/security-core": "^6.4|^7.0"
  5862. },
  5863. "conflict": {
  5864. "symfony/http-foundation": "<6.4"
  5865. },
  5866. "require-dev": {
  5867. "psr/log": "^1|^2|^3",
  5868. "symfony/http-foundation": "^6.4|^7.0",
  5869. "symfony/http-kernel": "^6.4|^7.0"
  5870. },
  5871. "type": "library",
  5872. "autoload": {
  5873. "psr-4": {
  5874. "Symfony\\Component\\Security\\Csrf\\": ""
  5875. },
  5876. "exclude-from-classmap": [
  5877. "/Tests/"
  5878. ]
  5879. },
  5880. "notification-url": "https://packagist.org/downloads/",
  5881. "license": [
  5882. "MIT"
  5883. ],
  5884. "authors": [
  5885. {
  5886. "name": "Fabien Potencier",
  5887. "email": "fabien@symfony.com"
  5888. },
  5889. {
  5890. "name": "Symfony Community",
  5891. "homepage": "https://symfony.com/contributors"
  5892. }
  5893. ],
  5894. "description": "Symfony Security Component - CSRF Library",
  5895. "homepage": "https://symfony.com",
  5896. "support": {
  5897. "source": "https://github.com/symfony/security-csrf/tree/v7.3.0"
  5898. },
  5899. "funding": [
  5900. {
  5901. "url": "https://symfony.com/sponsor",
  5902. "type": "custom"
  5903. },
  5904. {
  5905. "url": "https://github.com/fabpot",
  5906. "type": "github"
  5907. },
  5908. {
  5909. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5910. "type": "tidelift"
  5911. }
  5912. ],
  5913. "time": "2025-01-02T18:42:10+00:00"
  5914. },
  5915. {
  5916. "name": "symfony/security-http",
  5917. "version": "v7.3.1",
  5918. "source": {
  5919. "type": "git",
  5920. "url": "https://github.com/symfony/security-http.git",
  5921. "reference": "b7182ed0fd2359297f78ff6d407265168255ea84"
  5922. },
  5923. "dist": {
  5924. "type": "zip",
  5925. "url": "https://api.github.com/repos/symfony/security-http/zipball/b7182ed0fd2359297f78ff6d407265168255ea84",
  5926. "reference": "b7182ed0fd2359297f78ff6d407265168255ea84",
  5927. "shasum": ""
  5928. },
  5929. "require": {
  5930. "php": ">=8.2",
  5931. "symfony/deprecation-contracts": "^2.5|^3",
  5932. "symfony/http-foundation": "^6.4|^7.0",
  5933. "symfony/http-kernel": "^6.4|^7.0",
  5934. "symfony/polyfill-mbstring": "~1.0",
  5935. "symfony/property-access": "^6.4|^7.0",
  5936. "symfony/security-core": "^7.3",
  5937. "symfony/service-contracts": "^2.5|^3"
  5938. },
  5939. "conflict": {
  5940. "symfony/clock": "<6.4",
  5941. "symfony/event-dispatcher": "<6.4",
  5942. "symfony/http-client-contracts": "<3.0",
  5943. "symfony/security-bundle": "<6.4",
  5944. "symfony/security-csrf": "<6.4"
  5945. },
  5946. "require-dev": {
  5947. "psr/log": "^1|^2|^3",
  5948. "symfony/cache": "^6.4|^7.0",
  5949. "symfony/clock": "^6.4|^7.0",
  5950. "symfony/expression-language": "^6.4|^7.0",
  5951. "symfony/http-client": "^6.4|^7.0",
  5952. "symfony/http-client-contracts": "^3.0",
  5953. "symfony/rate-limiter": "^6.4|^7.0",
  5954. "symfony/routing": "^6.4|^7.0",
  5955. "symfony/security-csrf": "^6.4|^7.0",
  5956. "symfony/translation": "^6.4|^7.0",
  5957. "web-token/jwt-library": "^3.3.2|^4.0"
  5958. },
  5959. "type": "library",
  5960. "autoload": {
  5961. "psr-4": {
  5962. "Symfony\\Component\\Security\\Http\\": ""
  5963. },
  5964. "exclude-from-classmap": [
  5965. "/Tests/"
  5966. ]
  5967. },
  5968. "notification-url": "https://packagist.org/downloads/",
  5969. "license": [
  5970. "MIT"
  5971. ],
  5972. "authors": [
  5973. {
  5974. "name": "Fabien Potencier",
  5975. "email": "fabien@symfony.com"
  5976. },
  5977. {
  5978. "name": "Symfony Community",
  5979. "homepage": "https://symfony.com/contributors"
  5980. }
  5981. ],
  5982. "description": "Symfony Security Component - HTTP Integration",
  5983. "homepage": "https://symfony.com",
  5984. "support": {
  5985. "source": "https://github.com/symfony/security-http/tree/v7.3.1"
  5986. },
  5987. "funding": [
  5988. {
  5989. "url": "https://symfony.com/sponsor",
  5990. "type": "custom"
  5991. },
  5992. {
  5993. "url": "https://github.com/fabpot",
  5994. "type": "github"
  5995. },
  5996. {
  5997. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5998. "type": "tidelift"
  5999. }
  6000. ],
  6001. "time": "2025-06-24T04:04:43+00:00"
  6002. },
  6003. {
  6004. "name": "symfony/serializer",
  6005. "version": "v7.3.1",
  6006. "source": {
  6007. "type": "git",
  6008. "url": "https://github.com/symfony/serializer.git",
  6009. "reference": "feaf837cedbbc8287986602223175d3fd639922d"
  6010. },
  6011. "dist": {
  6012. "type": "zip",
  6013. "url": "https://api.github.com/repos/symfony/serializer/zipball/feaf837cedbbc8287986602223175d3fd639922d",
  6014. "reference": "feaf837cedbbc8287986602223175d3fd639922d",
  6015. "shasum": ""
  6016. },
  6017. "require": {
  6018. "php": ">=8.2",
  6019. "symfony/deprecation-contracts": "^2.5|^3",
  6020. "symfony/polyfill-ctype": "~1.8"
  6021. },
  6022. "conflict": {
  6023. "phpdocumentor/reflection-docblock": "<3.2.2",
  6024. "phpdocumentor/type-resolver": "<1.4.0",
  6025. "symfony/dependency-injection": "<6.4",
  6026. "symfony/property-access": "<6.4",
  6027. "symfony/property-info": "<6.4",
  6028. "symfony/uid": "<6.4",
  6029. "symfony/validator": "<6.4",
  6030. "symfony/yaml": "<6.4"
  6031. },
  6032. "require-dev": {
  6033. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6034. "phpstan/phpdoc-parser": "^1.0|^2.0",
  6035. "seld/jsonlint": "^1.10",
  6036. "symfony/cache": "^6.4|^7.0",
  6037. "symfony/config": "^6.4|^7.0",
  6038. "symfony/console": "^6.4|^7.0",
  6039. "symfony/dependency-injection": "^7.2",
  6040. "symfony/error-handler": "^6.4|^7.0",
  6041. "symfony/filesystem": "^6.4|^7.0",
  6042. "symfony/form": "^6.4|^7.0",
  6043. "symfony/http-foundation": "^6.4|^7.0",
  6044. "symfony/http-kernel": "^6.4|^7.0",
  6045. "symfony/messenger": "^6.4|^7.0",
  6046. "symfony/mime": "^6.4|^7.0",
  6047. "symfony/property-access": "^6.4|^7.0",
  6048. "symfony/property-info": "^6.4|^7.0",
  6049. "symfony/translation-contracts": "^2.5|^3",
  6050. "symfony/type-info": "^7.1",
  6051. "symfony/uid": "^6.4|^7.0",
  6052. "symfony/validator": "^6.4|^7.0",
  6053. "symfony/var-dumper": "^6.4|^7.0",
  6054. "symfony/var-exporter": "^6.4|^7.0",
  6055. "symfony/yaml": "^6.4|^7.0"
  6056. },
  6057. "type": "library",
  6058. "autoload": {
  6059. "psr-4": {
  6060. "Symfony\\Component\\Serializer\\": ""
  6061. },
  6062. "exclude-from-classmap": [
  6063. "/Tests/"
  6064. ]
  6065. },
  6066. "notification-url": "https://packagist.org/downloads/",
  6067. "license": [
  6068. "MIT"
  6069. ],
  6070. "authors": [
  6071. {
  6072. "name": "Fabien Potencier",
  6073. "email": "fabien@symfony.com"
  6074. },
  6075. {
  6076. "name": "Symfony Community",
  6077. "homepage": "https://symfony.com/contributors"
  6078. }
  6079. ],
  6080. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6081. "homepage": "https://symfony.com",
  6082. "support": {
  6083. "source": "https://github.com/symfony/serializer/tree/v7.3.1"
  6084. },
  6085. "funding": [
  6086. {
  6087. "url": "https://symfony.com/sponsor",
  6088. "type": "custom"
  6089. },
  6090. {
  6091. "url": "https://github.com/fabpot",
  6092. "type": "github"
  6093. },
  6094. {
  6095. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6096. "type": "tidelift"
  6097. }
  6098. ],
  6099. "time": "2025-06-27T19:55:54+00:00"
  6100. },
  6101. {
  6102. "name": "symfony/service-contracts",
  6103. "version": "v3.6.0",
  6104. "source": {
  6105. "type": "git",
  6106. "url": "https://github.com/symfony/service-contracts.git",
  6107. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
  6108. },
  6109. "dist": {
  6110. "type": "zip",
  6111. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  6112. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  6113. "shasum": ""
  6114. },
  6115. "require": {
  6116. "php": ">=8.1",
  6117. "psr/container": "^1.1|^2.0",
  6118. "symfony/deprecation-contracts": "^2.5|^3"
  6119. },
  6120. "conflict": {
  6121. "ext-psr": "<1.1|>=2"
  6122. },
  6123. "type": "library",
  6124. "extra": {
  6125. "thanks": {
  6126. "url": "https://github.com/symfony/contracts",
  6127. "name": "symfony/contracts"
  6128. },
  6129. "branch-alias": {
  6130. "dev-main": "3.6-dev"
  6131. }
  6132. },
  6133. "autoload": {
  6134. "psr-4": {
  6135. "Symfony\\Contracts\\Service\\": ""
  6136. },
  6137. "exclude-from-classmap": [
  6138. "/Test/"
  6139. ]
  6140. },
  6141. "notification-url": "https://packagist.org/downloads/",
  6142. "license": [
  6143. "MIT"
  6144. ],
  6145. "authors": [
  6146. {
  6147. "name": "Nicolas Grekas",
  6148. "email": "p@tchwork.com"
  6149. },
  6150. {
  6151. "name": "Symfony Community",
  6152. "homepage": "https://symfony.com/contributors"
  6153. }
  6154. ],
  6155. "description": "Generic abstractions related to writing services",
  6156. "homepage": "https://symfony.com",
  6157. "keywords": [
  6158. "abstractions",
  6159. "contracts",
  6160. "decoupling",
  6161. "interfaces",
  6162. "interoperability",
  6163. "standards"
  6164. ],
  6165. "support": {
  6166. "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
  6167. },
  6168. "funding": [
  6169. {
  6170. "url": "https://symfony.com/sponsor",
  6171. "type": "custom"
  6172. },
  6173. {
  6174. "url": "https://github.com/fabpot",
  6175. "type": "github"
  6176. },
  6177. {
  6178. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6179. "type": "tidelift"
  6180. }
  6181. ],
  6182. "time": "2025-04-25T09:37:31+00:00"
  6183. },
  6184. {
  6185. "name": "symfony/stimulus-bundle",
  6186. "version": "v2.27.0",
  6187. "source": {
  6188. "type": "git",
  6189. "url": "https://github.com/symfony/stimulus-bundle.git",
  6190. "reference": "defaeb91bd366f9f43dbe54dbdfd9bc3c4138814"
  6191. },
  6192. "dist": {
  6193. "type": "zip",
  6194. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/defaeb91bd366f9f43dbe54dbdfd9bc3c4138814",
  6195. "reference": "defaeb91bd366f9f43dbe54dbdfd9bc3c4138814",
  6196. "shasum": ""
  6197. },
  6198. "require": {
  6199. "php": ">=8.1",
  6200. "symfony/config": "^5.4|^6.0|^7.0",
  6201. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6202. "symfony/deprecation-contracts": "^2.0|^3.0",
  6203. "symfony/finder": "^5.4|^6.0|^7.0",
  6204. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6205. "twig/twig": "^2.15.3|^3.8"
  6206. },
  6207. "require-dev": {
  6208. "symfony/asset-mapper": "^6.3|^7.0",
  6209. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  6210. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  6211. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  6212. "zenstruck/browser": "^1.4"
  6213. },
  6214. "type": "symfony-bundle",
  6215. "autoload": {
  6216. "psr-4": {
  6217. "Symfony\\UX\\StimulusBundle\\": "src"
  6218. }
  6219. },
  6220. "notification-url": "https://packagist.org/downloads/",
  6221. "license": [
  6222. "MIT"
  6223. ],
  6224. "authors": [
  6225. {
  6226. "name": "Symfony Community",
  6227. "homepage": "https://symfony.com/contributors"
  6228. }
  6229. ],
  6230. "description": "Integration with your Symfony app & Stimulus!",
  6231. "keywords": [
  6232. "symfony-ux"
  6233. ],
  6234. "support": {
  6235. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.27.0"
  6236. },
  6237. "funding": [
  6238. {
  6239. "url": "https://symfony.com/sponsor",
  6240. "type": "custom"
  6241. },
  6242. {
  6243. "url": "https://github.com/fabpot",
  6244. "type": "github"
  6245. },
  6246. {
  6247. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6248. "type": "tidelift"
  6249. }
  6250. ],
  6251. "time": "2025-06-22T19:07:55+00:00"
  6252. },
  6253. {
  6254. "name": "symfony/stopwatch",
  6255. "version": "v7.3.0",
  6256. "source": {
  6257. "type": "git",
  6258. "url": "https://github.com/symfony/stopwatch.git",
  6259. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd"
  6260. },
  6261. "dist": {
  6262. "type": "zip",
  6263. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  6264. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  6265. "shasum": ""
  6266. },
  6267. "require": {
  6268. "php": ">=8.2",
  6269. "symfony/service-contracts": "^2.5|^3"
  6270. },
  6271. "type": "library",
  6272. "autoload": {
  6273. "psr-4": {
  6274. "Symfony\\Component\\Stopwatch\\": ""
  6275. },
  6276. "exclude-from-classmap": [
  6277. "/Tests/"
  6278. ]
  6279. },
  6280. "notification-url": "https://packagist.org/downloads/",
  6281. "license": [
  6282. "MIT"
  6283. ],
  6284. "authors": [
  6285. {
  6286. "name": "Fabien Potencier",
  6287. "email": "fabien@symfony.com"
  6288. },
  6289. {
  6290. "name": "Symfony Community",
  6291. "homepage": "https://symfony.com/contributors"
  6292. }
  6293. ],
  6294. "description": "Provides a way to profile code",
  6295. "homepage": "https://symfony.com",
  6296. "support": {
  6297. "source": "https://github.com/symfony/stopwatch/tree/v7.3.0"
  6298. },
  6299. "funding": [
  6300. {
  6301. "url": "https://symfony.com/sponsor",
  6302. "type": "custom"
  6303. },
  6304. {
  6305. "url": "https://github.com/fabpot",
  6306. "type": "github"
  6307. },
  6308. {
  6309. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6310. "type": "tidelift"
  6311. }
  6312. ],
  6313. "time": "2025-02-24T10:49:57+00:00"
  6314. },
  6315. {
  6316. "name": "symfony/string",
  6317. "version": "v7.3.0",
  6318. "source": {
  6319. "type": "git",
  6320. "url": "https://github.com/symfony/string.git",
  6321. "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125"
  6322. },
  6323. "dist": {
  6324. "type": "zip",
  6325. "url": "https://api.github.com/repos/symfony/string/zipball/f3570b8c61ca887a9e2938e85cb6458515d2b125",
  6326. "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125",
  6327. "shasum": ""
  6328. },
  6329. "require": {
  6330. "php": ">=8.2",
  6331. "symfony/polyfill-ctype": "~1.8",
  6332. "symfony/polyfill-intl-grapheme": "~1.0",
  6333. "symfony/polyfill-intl-normalizer": "~1.0",
  6334. "symfony/polyfill-mbstring": "~1.0"
  6335. },
  6336. "conflict": {
  6337. "symfony/translation-contracts": "<2.5"
  6338. },
  6339. "require-dev": {
  6340. "symfony/emoji": "^7.1",
  6341. "symfony/error-handler": "^6.4|^7.0",
  6342. "symfony/http-client": "^6.4|^7.0",
  6343. "symfony/intl": "^6.4|^7.0",
  6344. "symfony/translation-contracts": "^2.5|^3.0",
  6345. "symfony/var-exporter": "^6.4|^7.0"
  6346. },
  6347. "type": "library",
  6348. "autoload": {
  6349. "files": [
  6350. "Resources/functions.php"
  6351. ],
  6352. "psr-4": {
  6353. "Symfony\\Component\\String\\": ""
  6354. },
  6355. "exclude-from-classmap": [
  6356. "/Tests/"
  6357. ]
  6358. },
  6359. "notification-url": "https://packagist.org/downloads/",
  6360. "license": [
  6361. "MIT"
  6362. ],
  6363. "authors": [
  6364. {
  6365. "name": "Nicolas Grekas",
  6366. "email": "p@tchwork.com"
  6367. },
  6368. {
  6369. "name": "Symfony Community",
  6370. "homepage": "https://symfony.com/contributors"
  6371. }
  6372. ],
  6373. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6374. "homepage": "https://symfony.com",
  6375. "keywords": [
  6376. "grapheme",
  6377. "i18n",
  6378. "string",
  6379. "unicode",
  6380. "utf-8",
  6381. "utf8"
  6382. ],
  6383. "support": {
  6384. "source": "https://github.com/symfony/string/tree/v7.3.0"
  6385. },
  6386. "funding": [
  6387. {
  6388. "url": "https://symfony.com/sponsor",
  6389. "type": "custom"
  6390. },
  6391. {
  6392. "url": "https://github.com/fabpot",
  6393. "type": "github"
  6394. },
  6395. {
  6396. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6397. "type": "tidelift"
  6398. }
  6399. ],
  6400. "time": "2025-04-20T20:19:01+00:00"
  6401. },
  6402. {
  6403. "name": "symfony/translation",
  6404. "version": "v7.3.1",
  6405. "source": {
  6406. "type": "git",
  6407. "url": "https://github.com/symfony/translation.git",
  6408. "reference": "241d5ac4910d256660238a7ecf250deba4c73063"
  6409. },
  6410. "dist": {
  6411. "type": "zip",
  6412. "url": "https://api.github.com/repos/symfony/translation/zipball/241d5ac4910d256660238a7ecf250deba4c73063",
  6413. "reference": "241d5ac4910d256660238a7ecf250deba4c73063",
  6414. "shasum": ""
  6415. },
  6416. "require": {
  6417. "php": ">=8.2",
  6418. "symfony/deprecation-contracts": "^2.5|^3",
  6419. "symfony/polyfill-mbstring": "~1.0",
  6420. "symfony/translation-contracts": "^2.5|^3.0"
  6421. },
  6422. "conflict": {
  6423. "nikic/php-parser": "<5.0",
  6424. "symfony/config": "<6.4",
  6425. "symfony/console": "<6.4",
  6426. "symfony/dependency-injection": "<6.4",
  6427. "symfony/http-client-contracts": "<2.5",
  6428. "symfony/http-kernel": "<6.4",
  6429. "symfony/service-contracts": "<2.5",
  6430. "symfony/twig-bundle": "<6.4",
  6431. "symfony/yaml": "<6.4"
  6432. },
  6433. "provide": {
  6434. "symfony/translation-implementation": "2.3|3.0"
  6435. },
  6436. "require-dev": {
  6437. "nikic/php-parser": "^5.0",
  6438. "psr/log": "^1|^2|^3",
  6439. "symfony/config": "^6.4|^7.0",
  6440. "symfony/console": "^6.4|^7.0",
  6441. "symfony/dependency-injection": "^6.4|^7.0",
  6442. "symfony/finder": "^6.4|^7.0",
  6443. "symfony/http-client-contracts": "^2.5|^3.0",
  6444. "symfony/http-kernel": "^6.4|^7.0",
  6445. "symfony/intl": "^6.4|^7.0",
  6446. "symfony/polyfill-intl-icu": "^1.21",
  6447. "symfony/routing": "^6.4|^7.0",
  6448. "symfony/service-contracts": "^2.5|^3",
  6449. "symfony/yaml": "^6.4|^7.0"
  6450. },
  6451. "type": "library",
  6452. "autoload": {
  6453. "files": [
  6454. "Resources/functions.php"
  6455. ],
  6456. "psr-4": {
  6457. "Symfony\\Component\\Translation\\": ""
  6458. },
  6459. "exclude-from-classmap": [
  6460. "/Tests/"
  6461. ]
  6462. },
  6463. "notification-url": "https://packagist.org/downloads/",
  6464. "license": [
  6465. "MIT"
  6466. ],
  6467. "authors": [
  6468. {
  6469. "name": "Fabien Potencier",
  6470. "email": "fabien@symfony.com"
  6471. },
  6472. {
  6473. "name": "Symfony Community",
  6474. "homepage": "https://symfony.com/contributors"
  6475. }
  6476. ],
  6477. "description": "Provides tools to internationalize your application",
  6478. "homepage": "https://symfony.com",
  6479. "support": {
  6480. "source": "https://github.com/symfony/translation/tree/v7.3.1"
  6481. },
  6482. "funding": [
  6483. {
  6484. "url": "https://symfony.com/sponsor",
  6485. "type": "custom"
  6486. },
  6487. {
  6488. "url": "https://github.com/fabpot",
  6489. "type": "github"
  6490. },
  6491. {
  6492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6493. "type": "tidelift"
  6494. }
  6495. ],
  6496. "time": "2025-06-27T19:55:54+00:00"
  6497. },
  6498. {
  6499. "name": "symfony/translation-contracts",
  6500. "version": "v3.6.0",
  6501. "source": {
  6502. "type": "git",
  6503. "url": "https://github.com/symfony/translation-contracts.git",
  6504. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
  6505. },
  6506. "dist": {
  6507. "type": "zip",
  6508. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  6509. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  6510. "shasum": ""
  6511. },
  6512. "require": {
  6513. "php": ">=8.1"
  6514. },
  6515. "type": "library",
  6516. "extra": {
  6517. "thanks": {
  6518. "url": "https://github.com/symfony/contracts",
  6519. "name": "symfony/contracts"
  6520. },
  6521. "branch-alias": {
  6522. "dev-main": "3.6-dev"
  6523. }
  6524. },
  6525. "autoload": {
  6526. "psr-4": {
  6527. "Symfony\\Contracts\\Translation\\": ""
  6528. },
  6529. "exclude-from-classmap": [
  6530. "/Test/"
  6531. ]
  6532. },
  6533. "notification-url": "https://packagist.org/downloads/",
  6534. "license": [
  6535. "MIT"
  6536. ],
  6537. "authors": [
  6538. {
  6539. "name": "Nicolas Grekas",
  6540. "email": "p@tchwork.com"
  6541. },
  6542. {
  6543. "name": "Symfony Community",
  6544. "homepage": "https://symfony.com/contributors"
  6545. }
  6546. ],
  6547. "description": "Generic abstractions related to translation",
  6548. "homepage": "https://symfony.com",
  6549. "keywords": [
  6550. "abstractions",
  6551. "contracts",
  6552. "decoupling",
  6553. "interfaces",
  6554. "interoperability",
  6555. "standards"
  6556. ],
  6557. "support": {
  6558. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
  6559. },
  6560. "funding": [
  6561. {
  6562. "url": "https://symfony.com/sponsor",
  6563. "type": "custom"
  6564. },
  6565. {
  6566. "url": "https://github.com/fabpot",
  6567. "type": "github"
  6568. },
  6569. {
  6570. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6571. "type": "tidelift"
  6572. }
  6573. ],
  6574. "time": "2024-09-27T08:32:26+00:00"
  6575. },
  6576. {
  6577. "name": "symfony/twig-bridge",
  6578. "version": "v7.3.0",
  6579. "source": {
  6580. "type": "git",
  6581. "url": "https://github.com/symfony/twig-bridge.git",
  6582. "reference": "082eb15d8a4f9afee0acc4709fbe3aaf26d48891"
  6583. },
  6584. "dist": {
  6585. "type": "zip",
  6586. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/082eb15d8a4f9afee0acc4709fbe3aaf26d48891",
  6587. "reference": "082eb15d8a4f9afee0acc4709fbe3aaf26d48891",
  6588. "shasum": ""
  6589. },
  6590. "require": {
  6591. "php": ">=8.2",
  6592. "symfony/deprecation-contracts": "^2.5|^3",
  6593. "symfony/translation-contracts": "^2.5|^3",
  6594. "twig/twig": "^3.21"
  6595. },
  6596. "conflict": {
  6597. "phpdocumentor/reflection-docblock": "<3.2.2",
  6598. "phpdocumentor/type-resolver": "<1.4.0",
  6599. "symfony/console": "<6.4",
  6600. "symfony/form": "<6.4",
  6601. "symfony/http-foundation": "<6.4",
  6602. "symfony/http-kernel": "<6.4",
  6603. "symfony/mime": "<6.4",
  6604. "symfony/serializer": "<6.4",
  6605. "symfony/translation": "<6.4",
  6606. "symfony/workflow": "<6.4"
  6607. },
  6608. "require-dev": {
  6609. "egulias/email-validator": "^2.1.10|^3|^4",
  6610. "league/html-to-markdown": "^5.0",
  6611. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6612. "symfony/asset": "^6.4|^7.0",
  6613. "symfony/asset-mapper": "^6.4|^7.0",
  6614. "symfony/console": "^6.4|^7.0",
  6615. "symfony/dependency-injection": "^6.4|^7.0",
  6616. "symfony/emoji": "^7.1",
  6617. "symfony/expression-language": "^6.4|^7.0",
  6618. "symfony/finder": "^6.4|^7.0",
  6619. "symfony/form": "^6.4.20|^7.2.5",
  6620. "symfony/html-sanitizer": "^6.4|^7.0",
  6621. "symfony/http-foundation": "^7.3",
  6622. "symfony/http-kernel": "^6.4|^7.0",
  6623. "symfony/intl": "^6.4|^7.0",
  6624. "symfony/mime": "^6.4|^7.0",
  6625. "symfony/polyfill-intl-icu": "~1.0",
  6626. "symfony/property-info": "^6.4|^7.0",
  6627. "symfony/routing": "^6.4|^7.0",
  6628. "symfony/security-acl": "^2.8|^3.0",
  6629. "symfony/security-core": "^6.4|^7.0",
  6630. "symfony/security-csrf": "^6.4|^7.0",
  6631. "symfony/security-http": "^6.4|^7.0",
  6632. "symfony/serializer": "^6.4.3|^7.0.3",
  6633. "symfony/stopwatch": "^6.4|^7.0",
  6634. "symfony/translation": "^6.4|^7.0",
  6635. "symfony/validator": "^6.4|^7.0",
  6636. "symfony/web-link": "^6.4|^7.0",
  6637. "symfony/workflow": "^6.4|^7.0",
  6638. "symfony/yaml": "^6.4|^7.0",
  6639. "twig/cssinliner-extra": "^3",
  6640. "twig/inky-extra": "^3",
  6641. "twig/markdown-extra": "^3"
  6642. },
  6643. "type": "symfony-bridge",
  6644. "autoload": {
  6645. "psr-4": {
  6646. "Symfony\\Bridge\\Twig\\": ""
  6647. },
  6648. "exclude-from-classmap": [
  6649. "/Tests/"
  6650. ]
  6651. },
  6652. "notification-url": "https://packagist.org/downloads/",
  6653. "license": [
  6654. "MIT"
  6655. ],
  6656. "authors": [
  6657. {
  6658. "name": "Fabien Potencier",
  6659. "email": "fabien@symfony.com"
  6660. },
  6661. {
  6662. "name": "Symfony Community",
  6663. "homepage": "https://symfony.com/contributors"
  6664. }
  6665. ],
  6666. "description": "Provides integration for Twig with various Symfony components",
  6667. "homepage": "https://symfony.com",
  6668. "support": {
  6669. "source": "https://github.com/symfony/twig-bridge/tree/v7.3.0"
  6670. },
  6671. "funding": [
  6672. {
  6673. "url": "https://symfony.com/sponsor",
  6674. "type": "custom"
  6675. },
  6676. {
  6677. "url": "https://github.com/fabpot",
  6678. "type": "github"
  6679. },
  6680. {
  6681. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6682. "type": "tidelift"
  6683. }
  6684. ],
  6685. "time": "2025-05-19T13:28:56+00:00"
  6686. },
  6687. {
  6688. "name": "symfony/twig-bundle",
  6689. "version": "v7.3.1",
  6690. "source": {
  6691. "type": "git",
  6692. "url": "https://github.com/symfony/twig-bundle.git",
  6693. "reference": "bc23c11d9716fc2261ee26a32e654b0e8b1b1896"
  6694. },
  6695. "dist": {
  6696. "type": "zip",
  6697. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/bc23c11d9716fc2261ee26a32e654b0e8b1b1896",
  6698. "reference": "bc23c11d9716fc2261ee26a32e654b0e8b1b1896",
  6699. "shasum": ""
  6700. },
  6701. "require": {
  6702. "composer-runtime-api": ">=2.1",
  6703. "php": ">=8.2",
  6704. "symfony/config": "^7.3",
  6705. "symfony/dependency-injection": "^6.4|^7.0",
  6706. "symfony/http-foundation": "^6.4|^7.0",
  6707. "symfony/http-kernel": "^6.4|^7.0",
  6708. "symfony/twig-bridge": "^7.3",
  6709. "twig/twig": "^3.12"
  6710. },
  6711. "conflict": {
  6712. "symfony/framework-bundle": "<6.4",
  6713. "symfony/translation": "<6.4"
  6714. },
  6715. "require-dev": {
  6716. "symfony/asset": "^6.4|^7.0",
  6717. "symfony/expression-language": "^6.4|^7.0",
  6718. "symfony/finder": "^6.4|^7.0",
  6719. "symfony/form": "^6.4|^7.0",
  6720. "symfony/framework-bundle": "^6.4|^7.0",
  6721. "symfony/routing": "^6.4|^7.0",
  6722. "symfony/stopwatch": "^6.4|^7.0",
  6723. "symfony/translation": "^6.4|^7.0",
  6724. "symfony/web-link": "^6.4|^7.0",
  6725. "symfony/yaml": "^6.4|^7.0"
  6726. },
  6727. "type": "symfony-bundle",
  6728. "autoload": {
  6729. "psr-4": {
  6730. "Symfony\\Bundle\\TwigBundle\\": ""
  6731. },
  6732. "exclude-from-classmap": [
  6733. "/Tests/"
  6734. ]
  6735. },
  6736. "notification-url": "https://packagist.org/downloads/",
  6737. "license": [
  6738. "MIT"
  6739. ],
  6740. "authors": [
  6741. {
  6742. "name": "Fabien Potencier",
  6743. "email": "fabien@symfony.com"
  6744. },
  6745. {
  6746. "name": "Symfony Community",
  6747. "homepage": "https://symfony.com/contributors"
  6748. }
  6749. ],
  6750. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  6751. "homepage": "https://symfony.com",
  6752. "support": {
  6753. "source": "https://github.com/symfony/twig-bundle/tree/v7.3.1"
  6754. },
  6755. "funding": [
  6756. {
  6757. "url": "https://symfony.com/sponsor",
  6758. "type": "custom"
  6759. },
  6760. {
  6761. "url": "https://github.com/fabpot",
  6762. "type": "github"
  6763. },
  6764. {
  6765. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6766. "type": "tidelift"
  6767. }
  6768. ],
  6769. "time": "2025-06-24T04:04:43+00:00"
  6770. },
  6771. {
  6772. "name": "symfony/type-info",
  6773. "version": "v7.3.1",
  6774. "source": {
  6775. "type": "git",
  6776. "url": "https://github.com/symfony/type-info.git",
  6777. "reference": "5fa6e25e4195e73ce9e457b521ac5e61ec271150"
  6778. },
  6779. "dist": {
  6780. "type": "zip",
  6781. "url": "https://api.github.com/repos/symfony/type-info/zipball/5fa6e25e4195e73ce9e457b521ac5e61ec271150",
  6782. "reference": "5fa6e25e4195e73ce9e457b521ac5e61ec271150",
  6783. "shasum": ""
  6784. },
  6785. "require": {
  6786. "php": ">=8.2",
  6787. "psr/container": "^1.1|^2.0",
  6788. "symfony/deprecation-contracts": "^2.5|^3"
  6789. },
  6790. "conflict": {
  6791. "phpstan/phpdoc-parser": "<1.30"
  6792. },
  6793. "require-dev": {
  6794. "phpstan/phpdoc-parser": "^1.30|^2.0"
  6795. },
  6796. "type": "library",
  6797. "autoload": {
  6798. "psr-4": {
  6799. "Symfony\\Component\\TypeInfo\\": ""
  6800. },
  6801. "exclude-from-classmap": [
  6802. "/Tests/"
  6803. ]
  6804. },
  6805. "notification-url": "https://packagist.org/downloads/",
  6806. "license": [
  6807. "MIT"
  6808. ],
  6809. "authors": [
  6810. {
  6811. "name": "Mathias Arlaud",
  6812. "email": "mathias.arlaud@gmail.com"
  6813. },
  6814. {
  6815. "name": "Baptiste LEDUC",
  6816. "email": "baptiste.leduc@gmail.com"
  6817. },
  6818. {
  6819. "name": "Symfony Community",
  6820. "homepage": "https://symfony.com/contributors"
  6821. }
  6822. ],
  6823. "description": "Extracts PHP types information.",
  6824. "homepage": "https://symfony.com",
  6825. "keywords": [
  6826. "PHPStan",
  6827. "phpdoc",
  6828. "symfony",
  6829. "type"
  6830. ],
  6831. "support": {
  6832. "source": "https://github.com/symfony/type-info/tree/v7.3.1"
  6833. },
  6834. "funding": [
  6835. {
  6836. "url": "https://symfony.com/sponsor",
  6837. "type": "custom"
  6838. },
  6839. {
  6840. "url": "https://github.com/fabpot",
  6841. "type": "github"
  6842. },
  6843. {
  6844. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6845. "type": "tidelift"
  6846. }
  6847. ],
  6848. "time": "2025-06-27T19:55:54+00:00"
  6849. },
  6850. {
  6851. "name": "symfony/ux-turbo",
  6852. "version": "v2.27.0",
  6853. "source": {
  6854. "type": "git",
  6855. "url": "https://github.com/symfony/ux-turbo.git",
  6856. "reference": "b9ce9b30a9cf9bbd090c7ad290bdaf84a0e100b2"
  6857. },
  6858. "dist": {
  6859. "type": "zip",
  6860. "url": "https://api.github.com/repos/symfony/ux-turbo/zipball/b9ce9b30a9cf9bbd090c7ad290bdaf84a0e100b2",
  6861. "reference": "b9ce9b30a9cf9bbd090c7ad290bdaf84a0e100b2",
  6862. "shasum": ""
  6863. },
  6864. "require": {
  6865. "php": ">=8.1",
  6866. "symfony/stimulus-bundle": "^2.9.1"
  6867. },
  6868. "conflict": {
  6869. "symfony/flex": "<1.13"
  6870. },
  6871. "require-dev": {
  6872. "dbrekelmans/bdi": "dev-main",
  6873. "doctrine/doctrine-bundle": "^2.4.3",
  6874. "doctrine/orm": "^2.8 | 3.0",
  6875. "php-webdriver/webdriver": "^1.15",
  6876. "phpstan/phpstan": "^2.1.17",
  6877. "symfony/asset-mapper": "^6.4|^7.0",
  6878. "symfony/debug-bundle": "^5.4|^6.0|^7.0",
  6879. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6880. "symfony/form": "^5.4|^6.0|^7.0",
  6881. "symfony/framework-bundle": "^6.4|^7.0",
  6882. "symfony/mercure-bundle": "^0.3.7",
  6883. "symfony/messenger": "^5.4|^6.0|^7.0",
  6884. "symfony/panther": "^2.2",
  6885. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  6886. "symfony/process": "^5.4|6.3.*|^7.0",
  6887. "symfony/property-access": "^5.4|^6.0|^7.0",
  6888. "symfony/security-core": "^5.4|^6.0|^7.0",
  6889. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6890. "symfony/twig-bundle": "^6.4|^7.0",
  6891. "symfony/ux-twig-component": "^2.21",
  6892. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
  6893. },
  6894. "type": "symfony-bundle",
  6895. "extra": {
  6896. "thanks": {
  6897. "url": "https://github.com/symfony/ux",
  6898. "name": "symfony/ux"
  6899. }
  6900. },
  6901. "autoload": {
  6902. "psr-4": {
  6903. "Symfony\\UX\\Turbo\\": "src/"
  6904. }
  6905. },
  6906. "notification-url": "https://packagist.org/downloads/",
  6907. "license": [
  6908. "MIT"
  6909. ],
  6910. "authors": [
  6911. {
  6912. "name": "Kévin Dunglas",
  6913. "email": "kevin@dunglas.fr"
  6914. },
  6915. {
  6916. "name": "Symfony Community",
  6917. "homepage": "https://symfony.com/contributors"
  6918. }
  6919. ],
  6920. "description": "Hotwire Turbo integration for Symfony",
  6921. "homepage": "https://symfony.com",
  6922. "keywords": [
  6923. "hotwire",
  6924. "javascript",
  6925. "mercure",
  6926. "symfony-ux",
  6927. "turbo",
  6928. "turbo-stream"
  6929. ],
  6930. "support": {
  6931. "source": "https://github.com/symfony/ux-turbo/tree/v2.27.0"
  6932. },
  6933. "funding": [
  6934. {
  6935. "url": "https://symfony.com/sponsor",
  6936. "type": "custom"
  6937. },
  6938. {
  6939. "url": "https://github.com/fabpot",
  6940. "type": "github"
  6941. },
  6942. {
  6943. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6944. "type": "tidelift"
  6945. }
  6946. ],
  6947. "time": "2025-06-06T20:27:21+00:00"
  6948. },
  6949. {
  6950. "name": "symfony/validator",
  6951. "version": "v7.3.1",
  6952. "source": {
  6953. "type": "git",
  6954. "url": "https://github.com/symfony/validator.git",
  6955. "reference": "e2f2497c869fc57446f735fbf00cff4de32ae8c3"
  6956. },
  6957. "dist": {
  6958. "type": "zip",
  6959. "url": "https://api.github.com/repos/symfony/validator/zipball/e2f2497c869fc57446f735fbf00cff4de32ae8c3",
  6960. "reference": "e2f2497c869fc57446f735fbf00cff4de32ae8c3",
  6961. "shasum": ""
  6962. },
  6963. "require": {
  6964. "php": ">=8.2",
  6965. "symfony/deprecation-contracts": "^2.5|^3",
  6966. "symfony/polyfill-ctype": "~1.8",
  6967. "symfony/polyfill-mbstring": "~1.0",
  6968. "symfony/polyfill-php83": "^1.27",
  6969. "symfony/translation-contracts": "^2.5|^3"
  6970. },
  6971. "conflict": {
  6972. "doctrine/lexer": "<1.1",
  6973. "symfony/dependency-injection": "<6.4",
  6974. "symfony/doctrine-bridge": "<7.0",
  6975. "symfony/expression-language": "<6.4",
  6976. "symfony/http-kernel": "<6.4",
  6977. "symfony/intl": "<6.4",
  6978. "symfony/property-info": "<6.4",
  6979. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  6980. "symfony/yaml": "<6.4"
  6981. },
  6982. "require-dev": {
  6983. "egulias/email-validator": "^2.1.10|^3|^4",
  6984. "symfony/cache": "^6.4|^7.0",
  6985. "symfony/config": "^6.4|^7.0",
  6986. "symfony/console": "^6.4|^7.0",
  6987. "symfony/dependency-injection": "^6.4|^7.0",
  6988. "symfony/expression-language": "^6.4|^7.0",
  6989. "symfony/finder": "^6.4|^7.0",
  6990. "symfony/http-client": "^6.4|^7.0",
  6991. "symfony/http-foundation": "^6.4|^7.0",
  6992. "symfony/http-kernel": "^6.4|^7.0",
  6993. "symfony/intl": "^6.4|^7.0",
  6994. "symfony/mime": "^6.4|^7.0",
  6995. "symfony/property-access": "^6.4|^7.0",
  6996. "symfony/property-info": "^6.4|^7.0",
  6997. "symfony/string": "^6.4|^7.0",
  6998. "symfony/translation": "^6.4.3|^7.0.3",
  6999. "symfony/type-info": "^7.1",
  7000. "symfony/yaml": "^6.4|^7.0"
  7001. },
  7002. "type": "library",
  7003. "autoload": {
  7004. "psr-4": {
  7005. "Symfony\\Component\\Validator\\": ""
  7006. },
  7007. "exclude-from-classmap": [
  7008. "/Tests/",
  7009. "/Resources/bin/"
  7010. ]
  7011. },
  7012. "notification-url": "https://packagist.org/downloads/",
  7013. "license": [
  7014. "MIT"
  7015. ],
  7016. "authors": [
  7017. {
  7018. "name": "Fabien Potencier",
  7019. "email": "fabien@symfony.com"
  7020. },
  7021. {
  7022. "name": "Symfony Community",
  7023. "homepage": "https://symfony.com/contributors"
  7024. }
  7025. ],
  7026. "description": "Provides tools to validate values",
  7027. "homepage": "https://symfony.com",
  7028. "support": {
  7029. "source": "https://github.com/symfony/validator/tree/v7.3.1"
  7030. },
  7031. "funding": [
  7032. {
  7033. "url": "https://symfony.com/sponsor",
  7034. "type": "custom"
  7035. },
  7036. {
  7037. "url": "https://github.com/fabpot",
  7038. "type": "github"
  7039. },
  7040. {
  7041. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7042. "type": "tidelift"
  7043. }
  7044. ],
  7045. "time": "2025-06-26T13:22:23+00:00"
  7046. },
  7047. {
  7048. "name": "symfony/var-dumper",
  7049. "version": "v7.3.1",
  7050. "source": {
  7051. "type": "git",
  7052. "url": "https://github.com/symfony/var-dumper.git",
  7053. "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42"
  7054. },
  7055. "dist": {
  7056. "type": "zip",
  7057. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6e209fbe5f5a7b6043baba46fe5735a4b85d0d42",
  7058. "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42",
  7059. "shasum": ""
  7060. },
  7061. "require": {
  7062. "php": ">=8.2",
  7063. "symfony/deprecation-contracts": "^2.5|^3",
  7064. "symfony/polyfill-mbstring": "~1.0"
  7065. },
  7066. "conflict": {
  7067. "symfony/console": "<6.4"
  7068. },
  7069. "require-dev": {
  7070. "ext-iconv": "*",
  7071. "symfony/console": "^6.4|^7.0",
  7072. "symfony/http-kernel": "^6.4|^7.0",
  7073. "symfony/process": "^6.4|^7.0",
  7074. "symfony/uid": "^6.4|^7.0",
  7075. "twig/twig": "^3.12"
  7076. },
  7077. "bin": [
  7078. "Resources/bin/var-dump-server"
  7079. ],
  7080. "type": "library",
  7081. "autoload": {
  7082. "files": [
  7083. "Resources/functions/dump.php"
  7084. ],
  7085. "psr-4": {
  7086. "Symfony\\Component\\VarDumper\\": ""
  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": "Nicolas Grekas",
  7099. "email": "p@tchwork.com"
  7100. },
  7101. {
  7102. "name": "Symfony Community",
  7103. "homepage": "https://symfony.com/contributors"
  7104. }
  7105. ],
  7106. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7107. "homepage": "https://symfony.com",
  7108. "keywords": [
  7109. "debug",
  7110. "dump"
  7111. ],
  7112. "support": {
  7113. "source": "https://github.com/symfony/var-dumper/tree/v7.3.1"
  7114. },
  7115. "funding": [
  7116. {
  7117. "url": "https://symfony.com/sponsor",
  7118. "type": "custom"
  7119. },
  7120. {
  7121. "url": "https://github.com/fabpot",
  7122. "type": "github"
  7123. },
  7124. {
  7125. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7126. "type": "tidelift"
  7127. }
  7128. ],
  7129. "time": "2025-06-27T19:55:54+00:00"
  7130. },
  7131. {
  7132. "name": "symfony/var-exporter",
  7133. "version": "v7.3.0",
  7134. "source": {
  7135. "type": "git",
  7136. "url": "https://github.com/symfony/var-exporter.git",
  7137. "reference": "c9a1168891b5aaadfd6332ef44393330b3498c4c"
  7138. },
  7139. "dist": {
  7140. "type": "zip",
  7141. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/c9a1168891b5aaadfd6332ef44393330b3498c4c",
  7142. "reference": "c9a1168891b5aaadfd6332ef44393330b3498c4c",
  7143. "shasum": ""
  7144. },
  7145. "require": {
  7146. "php": ">=8.2",
  7147. "symfony/deprecation-contracts": "^2.5|^3"
  7148. },
  7149. "require-dev": {
  7150. "symfony/property-access": "^6.4|^7.0",
  7151. "symfony/serializer": "^6.4|^7.0",
  7152. "symfony/var-dumper": "^6.4|^7.0"
  7153. },
  7154. "type": "library",
  7155. "autoload": {
  7156. "psr-4": {
  7157. "Symfony\\Component\\VarExporter\\": ""
  7158. },
  7159. "exclude-from-classmap": [
  7160. "/Tests/"
  7161. ]
  7162. },
  7163. "notification-url": "https://packagist.org/downloads/",
  7164. "license": [
  7165. "MIT"
  7166. ],
  7167. "authors": [
  7168. {
  7169. "name": "Nicolas Grekas",
  7170. "email": "p@tchwork.com"
  7171. },
  7172. {
  7173. "name": "Symfony Community",
  7174. "homepage": "https://symfony.com/contributors"
  7175. }
  7176. ],
  7177. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7178. "homepage": "https://symfony.com",
  7179. "keywords": [
  7180. "clone",
  7181. "construct",
  7182. "export",
  7183. "hydrate",
  7184. "instantiate",
  7185. "lazy-loading",
  7186. "proxy",
  7187. "serialize"
  7188. ],
  7189. "support": {
  7190. "source": "https://github.com/symfony/var-exporter/tree/v7.3.0"
  7191. },
  7192. "funding": [
  7193. {
  7194. "url": "https://symfony.com/sponsor",
  7195. "type": "custom"
  7196. },
  7197. {
  7198. "url": "https://github.com/fabpot",
  7199. "type": "github"
  7200. },
  7201. {
  7202. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7203. "type": "tidelift"
  7204. }
  7205. ],
  7206. "time": "2025-05-15T09:04:05+00:00"
  7207. },
  7208. {
  7209. "name": "symfony/web-link",
  7210. "version": "v7.3.0",
  7211. "source": {
  7212. "type": "git",
  7213. "url": "https://github.com/symfony/web-link.git",
  7214. "reference": "7697f74fce67555665339423ce453cc8216a98ff"
  7215. },
  7216. "dist": {
  7217. "type": "zip",
  7218. "url": "https://api.github.com/repos/symfony/web-link/zipball/7697f74fce67555665339423ce453cc8216a98ff",
  7219. "reference": "7697f74fce67555665339423ce453cc8216a98ff",
  7220. "shasum": ""
  7221. },
  7222. "require": {
  7223. "php": ">=8.2",
  7224. "psr/link": "^1.1|^2.0"
  7225. },
  7226. "conflict": {
  7227. "symfony/http-kernel": "<6.4"
  7228. },
  7229. "provide": {
  7230. "psr/link-implementation": "1.0|2.0"
  7231. },
  7232. "require-dev": {
  7233. "symfony/http-kernel": "^6.4|^7.0"
  7234. },
  7235. "type": "library",
  7236. "autoload": {
  7237. "psr-4": {
  7238. "Symfony\\Component\\WebLink\\": ""
  7239. },
  7240. "exclude-from-classmap": [
  7241. "/Tests/"
  7242. ]
  7243. },
  7244. "notification-url": "https://packagist.org/downloads/",
  7245. "license": [
  7246. "MIT"
  7247. ],
  7248. "authors": [
  7249. {
  7250. "name": "Kévin Dunglas",
  7251. "email": "dunglas@gmail.com"
  7252. },
  7253. {
  7254. "name": "Symfony Community",
  7255. "homepage": "https://symfony.com/contributors"
  7256. }
  7257. ],
  7258. "description": "Manages links between resources",
  7259. "homepage": "https://symfony.com",
  7260. "keywords": [
  7261. "dns-prefetch",
  7262. "http",
  7263. "http2",
  7264. "link",
  7265. "performance",
  7266. "prefetch",
  7267. "preload",
  7268. "prerender",
  7269. "psr13",
  7270. "push"
  7271. ],
  7272. "support": {
  7273. "source": "https://github.com/symfony/web-link/tree/v7.3.0"
  7274. },
  7275. "funding": [
  7276. {
  7277. "url": "https://symfony.com/sponsor",
  7278. "type": "custom"
  7279. },
  7280. {
  7281. "url": "https://github.com/fabpot",
  7282. "type": "github"
  7283. },
  7284. {
  7285. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7286. "type": "tidelift"
  7287. }
  7288. ],
  7289. "time": "2025-05-19T13:28:18+00:00"
  7290. },
  7291. {
  7292. "name": "symfony/yaml",
  7293. "version": "v7.3.1",
  7294. "source": {
  7295. "type": "git",
  7296. "url": "https://github.com/symfony/yaml.git",
  7297. "reference": "0c3555045a46ab3cd4cc5a69d161225195230edb"
  7298. },
  7299. "dist": {
  7300. "type": "zip",
  7301. "url": "https://api.github.com/repos/symfony/yaml/zipball/0c3555045a46ab3cd4cc5a69d161225195230edb",
  7302. "reference": "0c3555045a46ab3cd4cc5a69d161225195230edb",
  7303. "shasum": ""
  7304. },
  7305. "require": {
  7306. "php": ">=8.2",
  7307. "symfony/deprecation-contracts": "^2.5|^3.0",
  7308. "symfony/polyfill-ctype": "^1.8"
  7309. },
  7310. "conflict": {
  7311. "symfony/console": "<6.4"
  7312. },
  7313. "require-dev": {
  7314. "symfony/console": "^6.4|^7.0"
  7315. },
  7316. "bin": [
  7317. "Resources/bin/yaml-lint"
  7318. ],
  7319. "type": "library",
  7320. "autoload": {
  7321. "psr-4": {
  7322. "Symfony\\Component\\Yaml\\": ""
  7323. },
  7324. "exclude-from-classmap": [
  7325. "/Tests/"
  7326. ]
  7327. },
  7328. "notification-url": "https://packagist.org/downloads/",
  7329. "license": [
  7330. "MIT"
  7331. ],
  7332. "authors": [
  7333. {
  7334. "name": "Fabien Potencier",
  7335. "email": "fabien@symfony.com"
  7336. },
  7337. {
  7338. "name": "Symfony Community",
  7339. "homepage": "https://symfony.com/contributors"
  7340. }
  7341. ],
  7342. "description": "Loads and dumps YAML files",
  7343. "homepage": "https://symfony.com",
  7344. "support": {
  7345. "source": "https://github.com/symfony/yaml/tree/v7.3.1"
  7346. },
  7347. "funding": [
  7348. {
  7349. "url": "https://symfony.com/sponsor",
  7350. "type": "custom"
  7351. },
  7352. {
  7353. "url": "https://github.com/fabpot",
  7354. "type": "github"
  7355. },
  7356. {
  7357. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7358. "type": "tidelift"
  7359. }
  7360. ],
  7361. "time": "2025-06-03T06:57:57+00:00"
  7362. },
  7363. {
  7364. "name": "twig/extra-bundle",
  7365. "version": "v3.21.0",
  7366. "source": {
  7367. "type": "git",
  7368. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  7369. "reference": "62d1cf47a1aa009cbd07b21045b97d3d5cb79896"
  7370. },
  7371. "dist": {
  7372. "type": "zip",
  7373. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/62d1cf47a1aa009cbd07b21045b97d3d5cb79896",
  7374. "reference": "62d1cf47a1aa009cbd07b21045b97d3d5cb79896",
  7375. "shasum": ""
  7376. },
  7377. "require": {
  7378. "php": ">=8.1.0",
  7379. "symfony/framework-bundle": "^5.4|^6.4|^7.0",
  7380. "symfony/twig-bundle": "^5.4|^6.4|^7.0",
  7381. "twig/twig": "^3.2|^4.0"
  7382. },
  7383. "require-dev": {
  7384. "league/commonmark": "^1.0|^2.0",
  7385. "symfony/phpunit-bridge": "^6.4|^7.0",
  7386. "twig/cache-extra": "^3.0",
  7387. "twig/cssinliner-extra": "^3.0",
  7388. "twig/html-extra": "^3.0",
  7389. "twig/inky-extra": "^3.0",
  7390. "twig/intl-extra": "^3.0",
  7391. "twig/markdown-extra": "^3.0",
  7392. "twig/string-extra": "^3.0"
  7393. },
  7394. "type": "symfony-bundle",
  7395. "autoload": {
  7396. "psr-4": {
  7397. "Twig\\Extra\\TwigExtraBundle\\": ""
  7398. },
  7399. "exclude-from-classmap": [
  7400. "/Tests/"
  7401. ]
  7402. },
  7403. "notification-url": "https://packagist.org/downloads/",
  7404. "license": [
  7405. "MIT"
  7406. ],
  7407. "authors": [
  7408. {
  7409. "name": "Fabien Potencier",
  7410. "email": "fabien@symfony.com",
  7411. "homepage": "http://fabien.potencier.org",
  7412. "role": "Lead Developer"
  7413. }
  7414. ],
  7415. "description": "A Symfony bundle for extra Twig extensions",
  7416. "homepage": "https://twig.symfony.com",
  7417. "keywords": [
  7418. "bundle",
  7419. "extra",
  7420. "twig"
  7421. ],
  7422. "support": {
  7423. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.21.0"
  7424. },
  7425. "funding": [
  7426. {
  7427. "url": "https://github.com/fabpot",
  7428. "type": "github"
  7429. },
  7430. {
  7431. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7432. "type": "tidelift"
  7433. }
  7434. ],
  7435. "time": "2025-02-19T14:29:33+00:00"
  7436. },
  7437. {
  7438. "name": "twig/twig",
  7439. "version": "v3.21.1",
  7440. "source": {
  7441. "type": "git",
  7442. "url": "https://github.com/twigphp/Twig.git",
  7443. "reference": "285123877d4dd97dd7c11842ac5fb7e86e60d81d"
  7444. },
  7445. "dist": {
  7446. "type": "zip",
  7447. "url": "https://api.github.com/repos/twigphp/Twig/zipball/285123877d4dd97dd7c11842ac5fb7e86e60d81d",
  7448. "reference": "285123877d4dd97dd7c11842ac5fb7e86e60d81d",
  7449. "shasum": ""
  7450. },
  7451. "require": {
  7452. "php": ">=8.1.0",
  7453. "symfony/deprecation-contracts": "^2.5|^3",
  7454. "symfony/polyfill-ctype": "^1.8",
  7455. "symfony/polyfill-mbstring": "^1.3"
  7456. },
  7457. "require-dev": {
  7458. "phpstan/phpstan": "^2.0",
  7459. "psr/container": "^1.0|^2.0",
  7460. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  7461. },
  7462. "type": "library",
  7463. "autoload": {
  7464. "files": [
  7465. "src/Resources/core.php",
  7466. "src/Resources/debug.php",
  7467. "src/Resources/escaper.php",
  7468. "src/Resources/string_loader.php"
  7469. ],
  7470. "psr-4": {
  7471. "Twig\\": "src/"
  7472. }
  7473. },
  7474. "notification-url": "https://packagist.org/downloads/",
  7475. "license": [
  7476. "BSD-3-Clause"
  7477. ],
  7478. "authors": [
  7479. {
  7480. "name": "Fabien Potencier",
  7481. "email": "fabien@symfony.com",
  7482. "homepage": "http://fabien.potencier.org",
  7483. "role": "Lead Developer"
  7484. },
  7485. {
  7486. "name": "Twig Team",
  7487. "role": "Contributors"
  7488. },
  7489. {
  7490. "name": "Armin Ronacher",
  7491. "email": "armin.ronacher@active-4.com",
  7492. "role": "Project Founder"
  7493. }
  7494. ],
  7495. "description": "Twig, the flexible, fast, and secure template language for PHP",
  7496. "homepage": "https://twig.symfony.com",
  7497. "keywords": [
  7498. "templating"
  7499. ],
  7500. "support": {
  7501. "issues": "https://github.com/twigphp/Twig/issues",
  7502. "source": "https://github.com/twigphp/Twig/tree/v3.21.1"
  7503. },
  7504. "funding": [
  7505. {
  7506. "url": "https://github.com/fabpot",
  7507. "type": "github"
  7508. },
  7509. {
  7510. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7511. "type": "tidelift"
  7512. }
  7513. ],
  7514. "time": "2025-05-03T07:21:55+00:00"
  7515. },
  7516. {
  7517. "name": "webmozart/assert",
  7518. "version": "1.11.0",
  7519. "source": {
  7520. "type": "git",
  7521. "url": "https://github.com/webmozarts/assert.git",
  7522. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7523. },
  7524. "dist": {
  7525. "type": "zip",
  7526. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7527. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7528. "shasum": ""
  7529. },
  7530. "require": {
  7531. "ext-ctype": "*",
  7532. "php": "^7.2 || ^8.0"
  7533. },
  7534. "conflict": {
  7535. "phpstan/phpstan": "<0.12.20",
  7536. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7537. },
  7538. "require-dev": {
  7539. "phpunit/phpunit": "^8.5.13"
  7540. },
  7541. "type": "library",
  7542. "extra": {
  7543. "branch-alias": {
  7544. "dev-master": "1.10-dev"
  7545. }
  7546. },
  7547. "autoload": {
  7548. "psr-4": {
  7549. "Webmozart\\Assert\\": "src/"
  7550. }
  7551. },
  7552. "notification-url": "https://packagist.org/downloads/",
  7553. "license": [
  7554. "MIT"
  7555. ],
  7556. "authors": [
  7557. {
  7558. "name": "Bernhard Schussek",
  7559. "email": "bschussek@gmail.com"
  7560. }
  7561. ],
  7562. "description": "Assertions to validate method input/output with nice error messages.",
  7563. "keywords": [
  7564. "assert",
  7565. "check",
  7566. "validate"
  7567. ],
  7568. "support": {
  7569. "issues": "https://github.com/webmozarts/assert/issues",
  7570. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7571. },
  7572. "time": "2022-06-03T18:03:27+00:00"
  7573. }
  7574. ],
  7575. "packages-dev": [
  7576. {
  7577. "name": "masterminds/html5",
  7578. "version": "2.9.0",
  7579. "source": {
  7580. "type": "git",
  7581. "url": "https://github.com/Masterminds/html5-php.git",
  7582. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  7583. },
  7584. "dist": {
  7585. "type": "zip",
  7586. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  7587. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  7588. "shasum": ""
  7589. },
  7590. "require": {
  7591. "ext-dom": "*",
  7592. "php": ">=5.3.0"
  7593. },
  7594. "require-dev": {
  7595. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  7596. },
  7597. "type": "library",
  7598. "extra": {
  7599. "branch-alias": {
  7600. "dev-master": "2.7-dev"
  7601. }
  7602. },
  7603. "autoload": {
  7604. "psr-4": {
  7605. "Masterminds\\": "src"
  7606. }
  7607. },
  7608. "notification-url": "https://packagist.org/downloads/",
  7609. "license": [
  7610. "MIT"
  7611. ],
  7612. "authors": [
  7613. {
  7614. "name": "Matt Butcher",
  7615. "email": "technosophos@gmail.com"
  7616. },
  7617. {
  7618. "name": "Matt Farina",
  7619. "email": "matt@mattfarina.com"
  7620. },
  7621. {
  7622. "name": "Asmir Mustafic",
  7623. "email": "goetas@gmail.com"
  7624. }
  7625. ],
  7626. "description": "An HTML5 parser and serializer.",
  7627. "homepage": "http://masterminds.github.io/html5-php",
  7628. "keywords": [
  7629. "HTML5",
  7630. "dom",
  7631. "html",
  7632. "parser",
  7633. "querypath",
  7634. "serializer",
  7635. "xml"
  7636. ],
  7637. "support": {
  7638. "issues": "https://github.com/Masterminds/html5-php/issues",
  7639. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  7640. },
  7641. "time": "2024-03-31T07:05:07+00:00"
  7642. },
  7643. {
  7644. "name": "myclabs/deep-copy",
  7645. "version": "1.13.3",
  7646. "source": {
  7647. "type": "git",
  7648. "url": "https://github.com/myclabs/DeepCopy.git",
  7649. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
  7650. },
  7651. "dist": {
  7652. "type": "zip",
  7653. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
  7654. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
  7655. "shasum": ""
  7656. },
  7657. "require": {
  7658. "php": "^7.1 || ^8.0"
  7659. },
  7660. "conflict": {
  7661. "doctrine/collections": "<1.6.8",
  7662. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  7663. },
  7664. "require-dev": {
  7665. "doctrine/collections": "^1.6.8",
  7666. "doctrine/common": "^2.13.3 || ^3.2.2",
  7667. "phpspec/prophecy": "^1.10",
  7668. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7669. },
  7670. "type": "library",
  7671. "autoload": {
  7672. "files": [
  7673. "src/DeepCopy/deep_copy.php"
  7674. ],
  7675. "psr-4": {
  7676. "DeepCopy\\": "src/DeepCopy/"
  7677. }
  7678. },
  7679. "notification-url": "https://packagist.org/downloads/",
  7680. "license": [
  7681. "MIT"
  7682. ],
  7683. "description": "Create deep copies (clones) of your objects",
  7684. "keywords": [
  7685. "clone",
  7686. "copy",
  7687. "duplicate",
  7688. "object",
  7689. "object graph"
  7690. ],
  7691. "support": {
  7692. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7693. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
  7694. },
  7695. "funding": [
  7696. {
  7697. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7698. "type": "tidelift"
  7699. }
  7700. ],
  7701. "time": "2025-07-05T12:25:42+00:00"
  7702. },
  7703. {
  7704. "name": "nikic/php-parser",
  7705. "version": "v5.5.0",
  7706. "source": {
  7707. "type": "git",
  7708. "url": "https://github.com/nikic/PHP-Parser.git",
  7709. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9"
  7710. },
  7711. "dist": {
  7712. "type": "zip",
  7713. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/ae59794362fe85e051a58ad36b289443f57be7a9",
  7714. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9",
  7715. "shasum": ""
  7716. },
  7717. "require": {
  7718. "ext-ctype": "*",
  7719. "ext-json": "*",
  7720. "ext-tokenizer": "*",
  7721. "php": ">=7.4"
  7722. },
  7723. "require-dev": {
  7724. "ircmaxell/php-yacc": "^0.0.7",
  7725. "phpunit/phpunit": "^9.0"
  7726. },
  7727. "bin": [
  7728. "bin/php-parse"
  7729. ],
  7730. "type": "library",
  7731. "extra": {
  7732. "branch-alias": {
  7733. "dev-master": "5.0-dev"
  7734. }
  7735. },
  7736. "autoload": {
  7737. "psr-4": {
  7738. "PhpParser\\": "lib/PhpParser"
  7739. }
  7740. },
  7741. "notification-url": "https://packagist.org/downloads/",
  7742. "license": [
  7743. "BSD-3-Clause"
  7744. ],
  7745. "authors": [
  7746. {
  7747. "name": "Nikita Popov"
  7748. }
  7749. ],
  7750. "description": "A PHP parser written in PHP",
  7751. "keywords": [
  7752. "parser",
  7753. "php"
  7754. ],
  7755. "support": {
  7756. "issues": "https://github.com/nikic/PHP-Parser/issues",
  7757. "source": "https://github.com/nikic/PHP-Parser/tree/v5.5.0"
  7758. },
  7759. "time": "2025-05-31T08:24:38+00:00"
  7760. },
  7761. {
  7762. "name": "phar-io/manifest",
  7763. "version": "2.0.4",
  7764. "source": {
  7765. "type": "git",
  7766. "url": "https://github.com/phar-io/manifest.git",
  7767. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7768. },
  7769. "dist": {
  7770. "type": "zip",
  7771. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7772. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7773. "shasum": ""
  7774. },
  7775. "require": {
  7776. "ext-dom": "*",
  7777. "ext-libxml": "*",
  7778. "ext-phar": "*",
  7779. "ext-xmlwriter": "*",
  7780. "phar-io/version": "^3.0.1",
  7781. "php": "^7.2 || ^8.0"
  7782. },
  7783. "type": "library",
  7784. "extra": {
  7785. "branch-alias": {
  7786. "dev-master": "2.0.x-dev"
  7787. }
  7788. },
  7789. "autoload": {
  7790. "classmap": [
  7791. "src/"
  7792. ]
  7793. },
  7794. "notification-url": "https://packagist.org/downloads/",
  7795. "license": [
  7796. "BSD-3-Clause"
  7797. ],
  7798. "authors": [
  7799. {
  7800. "name": "Arne Blankerts",
  7801. "email": "arne@blankerts.de",
  7802. "role": "Developer"
  7803. },
  7804. {
  7805. "name": "Sebastian Heuer",
  7806. "email": "sebastian@phpeople.de",
  7807. "role": "Developer"
  7808. },
  7809. {
  7810. "name": "Sebastian Bergmann",
  7811. "email": "sebastian@phpunit.de",
  7812. "role": "Developer"
  7813. }
  7814. ],
  7815. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7816. "support": {
  7817. "issues": "https://github.com/phar-io/manifest/issues",
  7818. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7819. },
  7820. "funding": [
  7821. {
  7822. "url": "https://github.com/theseer",
  7823. "type": "github"
  7824. }
  7825. ],
  7826. "time": "2024-03-03T12:33:53+00:00"
  7827. },
  7828. {
  7829. "name": "phar-io/version",
  7830. "version": "3.2.1",
  7831. "source": {
  7832. "type": "git",
  7833. "url": "https://github.com/phar-io/version.git",
  7834. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7835. },
  7836. "dist": {
  7837. "type": "zip",
  7838. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7839. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7840. "shasum": ""
  7841. },
  7842. "require": {
  7843. "php": "^7.2 || ^8.0"
  7844. },
  7845. "type": "library",
  7846. "autoload": {
  7847. "classmap": [
  7848. "src/"
  7849. ]
  7850. },
  7851. "notification-url": "https://packagist.org/downloads/",
  7852. "license": [
  7853. "BSD-3-Clause"
  7854. ],
  7855. "authors": [
  7856. {
  7857. "name": "Arne Blankerts",
  7858. "email": "arne@blankerts.de",
  7859. "role": "Developer"
  7860. },
  7861. {
  7862. "name": "Sebastian Heuer",
  7863. "email": "sebastian@phpeople.de",
  7864. "role": "Developer"
  7865. },
  7866. {
  7867. "name": "Sebastian Bergmann",
  7868. "email": "sebastian@phpunit.de",
  7869. "role": "Developer"
  7870. }
  7871. ],
  7872. "description": "Library for handling version information and constraints",
  7873. "support": {
  7874. "issues": "https://github.com/phar-io/version/issues",
  7875. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7876. },
  7877. "time": "2022-02-21T01:04:05+00:00"
  7878. },
  7879. {
  7880. "name": "phpunit/php-code-coverage",
  7881. "version": "12.3.1",
  7882. "source": {
  7883. "type": "git",
  7884. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7885. "reference": "ddec29dfc128eba9c204389960f2063f3b7fa170"
  7886. },
  7887. "dist": {
  7888. "type": "zip",
  7889. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ddec29dfc128eba9c204389960f2063f3b7fa170",
  7890. "reference": "ddec29dfc128eba9c204389960f2063f3b7fa170",
  7891. "shasum": ""
  7892. },
  7893. "require": {
  7894. "ext-dom": "*",
  7895. "ext-libxml": "*",
  7896. "ext-xmlwriter": "*",
  7897. "nikic/php-parser": "^5.4.0",
  7898. "php": ">=8.3",
  7899. "phpunit/php-file-iterator": "^6.0",
  7900. "phpunit/php-text-template": "^5.0",
  7901. "sebastian/complexity": "^5.0",
  7902. "sebastian/environment": "^8.0",
  7903. "sebastian/lines-of-code": "^4.0",
  7904. "sebastian/version": "^6.0",
  7905. "theseer/tokenizer": "^1.2.3"
  7906. },
  7907. "require-dev": {
  7908. "phpunit/phpunit": "^12.1"
  7909. },
  7910. "suggest": {
  7911. "ext-pcov": "PHP extension that provides line coverage",
  7912. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7913. },
  7914. "type": "library",
  7915. "extra": {
  7916. "branch-alias": {
  7917. "dev-main": "12.3.x-dev"
  7918. }
  7919. },
  7920. "autoload": {
  7921. "classmap": [
  7922. "src/"
  7923. ]
  7924. },
  7925. "notification-url": "https://packagist.org/downloads/",
  7926. "license": [
  7927. "BSD-3-Clause"
  7928. ],
  7929. "authors": [
  7930. {
  7931. "name": "Sebastian Bergmann",
  7932. "email": "sebastian@phpunit.de",
  7933. "role": "lead"
  7934. }
  7935. ],
  7936. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7937. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7938. "keywords": [
  7939. "coverage",
  7940. "testing",
  7941. "xunit"
  7942. ],
  7943. "support": {
  7944. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7945. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  7946. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/12.3.1"
  7947. },
  7948. "funding": [
  7949. {
  7950. "url": "https://github.com/sebastianbergmann",
  7951. "type": "github"
  7952. },
  7953. {
  7954. "url": "https://liberapay.com/sebastianbergmann",
  7955. "type": "liberapay"
  7956. },
  7957. {
  7958. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  7959. "type": "thanks_dev"
  7960. },
  7961. {
  7962. "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage",
  7963. "type": "tidelift"
  7964. }
  7965. ],
  7966. "time": "2025-06-18T08:58:13+00:00"
  7967. },
  7968. {
  7969. "name": "phpunit/php-file-iterator",
  7970. "version": "6.0.0",
  7971. "source": {
  7972. "type": "git",
  7973. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7974. "reference": "961bc913d42fe24a257bfff826a5068079ac7782"
  7975. },
  7976. "dist": {
  7977. "type": "zip",
  7978. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/961bc913d42fe24a257bfff826a5068079ac7782",
  7979. "reference": "961bc913d42fe24a257bfff826a5068079ac7782",
  7980. "shasum": ""
  7981. },
  7982. "require": {
  7983. "php": ">=8.3"
  7984. },
  7985. "require-dev": {
  7986. "phpunit/phpunit": "^12.0"
  7987. },
  7988. "type": "library",
  7989. "extra": {
  7990. "branch-alias": {
  7991. "dev-main": "6.0-dev"
  7992. }
  7993. },
  7994. "autoload": {
  7995. "classmap": [
  7996. "src/"
  7997. ]
  7998. },
  7999. "notification-url": "https://packagist.org/downloads/",
  8000. "license": [
  8001. "BSD-3-Clause"
  8002. ],
  8003. "authors": [
  8004. {
  8005. "name": "Sebastian Bergmann",
  8006. "email": "sebastian@phpunit.de",
  8007. "role": "lead"
  8008. }
  8009. ],
  8010. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8011. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8012. "keywords": [
  8013. "filesystem",
  8014. "iterator"
  8015. ],
  8016. "support": {
  8017. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8018. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8019. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/6.0.0"
  8020. },
  8021. "funding": [
  8022. {
  8023. "url": "https://github.com/sebastianbergmann",
  8024. "type": "github"
  8025. }
  8026. ],
  8027. "time": "2025-02-07T04:58:37+00:00"
  8028. },
  8029. {
  8030. "name": "phpunit/php-invoker",
  8031. "version": "6.0.0",
  8032. "source": {
  8033. "type": "git",
  8034. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8035. "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406"
  8036. },
  8037. "dist": {
  8038. "type": "zip",
  8039. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/12b54e689b07a25a9b41e57736dfab6ec9ae5406",
  8040. "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406",
  8041. "shasum": ""
  8042. },
  8043. "require": {
  8044. "php": ">=8.3"
  8045. },
  8046. "require-dev": {
  8047. "ext-pcntl": "*",
  8048. "phpunit/phpunit": "^12.0"
  8049. },
  8050. "suggest": {
  8051. "ext-pcntl": "*"
  8052. },
  8053. "type": "library",
  8054. "extra": {
  8055. "branch-alias": {
  8056. "dev-main": "6.0-dev"
  8057. }
  8058. },
  8059. "autoload": {
  8060. "classmap": [
  8061. "src/"
  8062. ]
  8063. },
  8064. "notification-url": "https://packagist.org/downloads/",
  8065. "license": [
  8066. "BSD-3-Clause"
  8067. ],
  8068. "authors": [
  8069. {
  8070. "name": "Sebastian Bergmann",
  8071. "email": "sebastian@phpunit.de",
  8072. "role": "lead"
  8073. }
  8074. ],
  8075. "description": "Invoke callables with a timeout",
  8076. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8077. "keywords": [
  8078. "process"
  8079. ],
  8080. "support": {
  8081. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8082. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  8083. "source": "https://github.com/sebastianbergmann/php-invoker/tree/6.0.0"
  8084. },
  8085. "funding": [
  8086. {
  8087. "url": "https://github.com/sebastianbergmann",
  8088. "type": "github"
  8089. }
  8090. ],
  8091. "time": "2025-02-07T04:58:58+00:00"
  8092. },
  8093. {
  8094. "name": "phpunit/php-text-template",
  8095. "version": "5.0.0",
  8096. "source": {
  8097. "type": "git",
  8098. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8099. "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53"
  8100. },
  8101. "dist": {
  8102. "type": "zip",
  8103. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/e1367a453f0eda562eedb4f659e13aa900d66c53",
  8104. "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53",
  8105. "shasum": ""
  8106. },
  8107. "require": {
  8108. "php": ">=8.3"
  8109. },
  8110. "require-dev": {
  8111. "phpunit/phpunit": "^12.0"
  8112. },
  8113. "type": "library",
  8114. "extra": {
  8115. "branch-alias": {
  8116. "dev-main": "5.0-dev"
  8117. }
  8118. },
  8119. "autoload": {
  8120. "classmap": [
  8121. "src/"
  8122. ]
  8123. },
  8124. "notification-url": "https://packagist.org/downloads/",
  8125. "license": [
  8126. "BSD-3-Clause"
  8127. ],
  8128. "authors": [
  8129. {
  8130. "name": "Sebastian Bergmann",
  8131. "email": "sebastian@phpunit.de",
  8132. "role": "lead"
  8133. }
  8134. ],
  8135. "description": "Simple template engine.",
  8136. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8137. "keywords": [
  8138. "template"
  8139. ],
  8140. "support": {
  8141. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8142. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8143. "source": "https://github.com/sebastianbergmann/php-text-template/tree/5.0.0"
  8144. },
  8145. "funding": [
  8146. {
  8147. "url": "https://github.com/sebastianbergmann",
  8148. "type": "github"
  8149. }
  8150. ],
  8151. "time": "2025-02-07T04:59:16+00:00"
  8152. },
  8153. {
  8154. "name": "phpunit/php-timer",
  8155. "version": "8.0.0",
  8156. "source": {
  8157. "type": "git",
  8158. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8159. "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc"
  8160. },
  8161. "dist": {
  8162. "type": "zip",
  8163. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc",
  8164. "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc",
  8165. "shasum": ""
  8166. },
  8167. "require": {
  8168. "php": ">=8.3"
  8169. },
  8170. "require-dev": {
  8171. "phpunit/phpunit": "^12.0"
  8172. },
  8173. "type": "library",
  8174. "extra": {
  8175. "branch-alias": {
  8176. "dev-main": "8.0-dev"
  8177. }
  8178. },
  8179. "autoload": {
  8180. "classmap": [
  8181. "src/"
  8182. ]
  8183. },
  8184. "notification-url": "https://packagist.org/downloads/",
  8185. "license": [
  8186. "BSD-3-Clause"
  8187. ],
  8188. "authors": [
  8189. {
  8190. "name": "Sebastian Bergmann",
  8191. "email": "sebastian@phpunit.de",
  8192. "role": "lead"
  8193. }
  8194. ],
  8195. "description": "Utility class for timing",
  8196. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8197. "keywords": [
  8198. "timer"
  8199. ],
  8200. "support": {
  8201. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8202. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  8203. "source": "https://github.com/sebastianbergmann/php-timer/tree/8.0.0"
  8204. },
  8205. "funding": [
  8206. {
  8207. "url": "https://github.com/sebastianbergmann",
  8208. "type": "github"
  8209. }
  8210. ],
  8211. "time": "2025-02-07T04:59:38+00:00"
  8212. },
  8213. {
  8214. "name": "phpunit/phpunit",
  8215. "version": "12.2.7",
  8216. "source": {
  8217. "type": "git",
  8218. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8219. "reference": "8b1348b254e5959acaf1539c6bd790515fb49414"
  8220. },
  8221. "dist": {
  8222. "type": "zip",
  8223. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8b1348b254e5959acaf1539c6bd790515fb49414",
  8224. "reference": "8b1348b254e5959acaf1539c6bd790515fb49414",
  8225. "shasum": ""
  8226. },
  8227. "require": {
  8228. "ext-dom": "*",
  8229. "ext-json": "*",
  8230. "ext-libxml": "*",
  8231. "ext-mbstring": "*",
  8232. "ext-xml": "*",
  8233. "ext-xmlwriter": "*",
  8234. "myclabs/deep-copy": "^1.13.3",
  8235. "phar-io/manifest": "^2.0.4",
  8236. "phar-io/version": "^3.2.1",
  8237. "php": ">=8.3",
  8238. "phpunit/php-code-coverage": "^12.3.1",
  8239. "phpunit/php-file-iterator": "^6.0.0",
  8240. "phpunit/php-invoker": "^6.0.0",
  8241. "phpunit/php-text-template": "^5.0.0",
  8242. "phpunit/php-timer": "^8.0.0",
  8243. "sebastian/cli-parser": "^4.0.0",
  8244. "sebastian/comparator": "^7.1.0",
  8245. "sebastian/diff": "^7.0.0",
  8246. "sebastian/environment": "^8.0.2",
  8247. "sebastian/exporter": "^7.0.0",
  8248. "sebastian/global-state": "^8.0.0",
  8249. "sebastian/object-enumerator": "^7.0.0",
  8250. "sebastian/type": "^6.0.2",
  8251. "sebastian/version": "^6.0.0",
  8252. "staabm/side-effects-detector": "^1.0.5"
  8253. },
  8254. "bin": [
  8255. "phpunit"
  8256. ],
  8257. "type": "library",
  8258. "extra": {
  8259. "branch-alias": {
  8260. "dev-main": "12.2-dev"
  8261. }
  8262. },
  8263. "autoload": {
  8264. "files": [
  8265. "src/Framework/Assert/Functions.php"
  8266. ],
  8267. "classmap": [
  8268. "src/"
  8269. ]
  8270. },
  8271. "notification-url": "https://packagist.org/downloads/",
  8272. "license": [
  8273. "BSD-3-Clause"
  8274. ],
  8275. "authors": [
  8276. {
  8277. "name": "Sebastian Bergmann",
  8278. "email": "sebastian@phpunit.de",
  8279. "role": "lead"
  8280. }
  8281. ],
  8282. "description": "The PHP Unit Testing framework.",
  8283. "homepage": "https://phpunit.de/",
  8284. "keywords": [
  8285. "phpunit",
  8286. "testing",
  8287. "xunit"
  8288. ],
  8289. "support": {
  8290. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8291. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8292. "source": "https://github.com/sebastianbergmann/phpunit/tree/12.2.7"
  8293. },
  8294. "funding": [
  8295. {
  8296. "url": "https://phpunit.de/sponsors.html",
  8297. "type": "custom"
  8298. },
  8299. {
  8300. "url": "https://github.com/sebastianbergmann",
  8301. "type": "github"
  8302. },
  8303. {
  8304. "url": "https://liberapay.com/sebastianbergmann",
  8305. "type": "liberapay"
  8306. },
  8307. {
  8308. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  8309. "type": "thanks_dev"
  8310. },
  8311. {
  8312. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8313. "type": "tidelift"
  8314. }
  8315. ],
  8316. "time": "2025-07-11T04:11:13+00:00"
  8317. },
  8318. {
  8319. "name": "sebastian/cli-parser",
  8320. "version": "4.0.0",
  8321. "source": {
  8322. "type": "git",
  8323. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8324. "reference": "6d584c727d9114bcdc14c86711cd1cad51778e7c"
  8325. },
  8326. "dist": {
  8327. "type": "zip",
  8328. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/6d584c727d9114bcdc14c86711cd1cad51778e7c",
  8329. "reference": "6d584c727d9114bcdc14c86711cd1cad51778e7c",
  8330. "shasum": ""
  8331. },
  8332. "require": {
  8333. "php": ">=8.3"
  8334. },
  8335. "require-dev": {
  8336. "phpunit/phpunit": "^12.0"
  8337. },
  8338. "type": "library",
  8339. "extra": {
  8340. "branch-alias": {
  8341. "dev-main": "4.0-dev"
  8342. }
  8343. },
  8344. "autoload": {
  8345. "classmap": [
  8346. "src/"
  8347. ]
  8348. },
  8349. "notification-url": "https://packagist.org/downloads/",
  8350. "license": [
  8351. "BSD-3-Clause"
  8352. ],
  8353. "authors": [
  8354. {
  8355. "name": "Sebastian Bergmann",
  8356. "email": "sebastian@phpunit.de",
  8357. "role": "lead"
  8358. }
  8359. ],
  8360. "description": "Library for parsing CLI options",
  8361. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8362. "support": {
  8363. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8364. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  8365. "source": "https://github.com/sebastianbergmann/cli-parser/tree/4.0.0"
  8366. },
  8367. "funding": [
  8368. {
  8369. "url": "https://github.com/sebastianbergmann",
  8370. "type": "github"
  8371. }
  8372. ],
  8373. "time": "2025-02-07T04:53:50+00:00"
  8374. },
  8375. {
  8376. "name": "sebastian/comparator",
  8377. "version": "7.1.0",
  8378. "source": {
  8379. "type": "git",
  8380. "url": "https://github.com/sebastianbergmann/comparator.git",
  8381. "reference": "03d905327dccc0851c9a08d6a979dfc683826b6f"
  8382. },
  8383. "dist": {
  8384. "type": "zip",
  8385. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/03d905327dccc0851c9a08d6a979dfc683826b6f",
  8386. "reference": "03d905327dccc0851c9a08d6a979dfc683826b6f",
  8387. "shasum": ""
  8388. },
  8389. "require": {
  8390. "ext-dom": "*",
  8391. "ext-mbstring": "*",
  8392. "php": ">=8.3",
  8393. "sebastian/diff": "^7.0",
  8394. "sebastian/exporter": "^7.0"
  8395. },
  8396. "require-dev": {
  8397. "phpunit/phpunit": "^12.2"
  8398. },
  8399. "suggest": {
  8400. "ext-bcmath": "For comparing BcMath\\Number objects"
  8401. },
  8402. "type": "library",
  8403. "extra": {
  8404. "branch-alias": {
  8405. "dev-main": "7.1-dev"
  8406. }
  8407. },
  8408. "autoload": {
  8409. "classmap": [
  8410. "src/"
  8411. ]
  8412. },
  8413. "notification-url": "https://packagist.org/downloads/",
  8414. "license": [
  8415. "BSD-3-Clause"
  8416. ],
  8417. "authors": [
  8418. {
  8419. "name": "Sebastian Bergmann",
  8420. "email": "sebastian@phpunit.de"
  8421. },
  8422. {
  8423. "name": "Jeff Welch",
  8424. "email": "whatthejeff@gmail.com"
  8425. },
  8426. {
  8427. "name": "Volker Dusch",
  8428. "email": "github@wallbash.com"
  8429. },
  8430. {
  8431. "name": "Bernhard Schussek",
  8432. "email": "bschussek@2bepublished.at"
  8433. }
  8434. ],
  8435. "description": "Provides the functionality to compare PHP values for equality",
  8436. "homepage": "https://github.com/sebastianbergmann/comparator",
  8437. "keywords": [
  8438. "comparator",
  8439. "compare",
  8440. "equality"
  8441. ],
  8442. "support": {
  8443. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8444. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  8445. "source": "https://github.com/sebastianbergmann/comparator/tree/7.1.0"
  8446. },
  8447. "funding": [
  8448. {
  8449. "url": "https://github.com/sebastianbergmann",
  8450. "type": "github"
  8451. },
  8452. {
  8453. "url": "https://liberapay.com/sebastianbergmann",
  8454. "type": "liberapay"
  8455. },
  8456. {
  8457. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  8458. "type": "thanks_dev"
  8459. },
  8460. {
  8461. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  8462. "type": "tidelift"
  8463. }
  8464. ],
  8465. "time": "2025-06-17T07:41:58+00:00"
  8466. },
  8467. {
  8468. "name": "sebastian/complexity",
  8469. "version": "5.0.0",
  8470. "source": {
  8471. "type": "git",
  8472. "url": "https://github.com/sebastianbergmann/complexity.git",
  8473. "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb"
  8474. },
  8475. "dist": {
  8476. "type": "zip",
  8477. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/bad4316aba5303d0221f43f8cee37eb58d384bbb",
  8478. "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb",
  8479. "shasum": ""
  8480. },
  8481. "require": {
  8482. "nikic/php-parser": "^5.0",
  8483. "php": ">=8.3"
  8484. },
  8485. "require-dev": {
  8486. "phpunit/phpunit": "^12.0"
  8487. },
  8488. "type": "library",
  8489. "extra": {
  8490. "branch-alias": {
  8491. "dev-main": "5.0-dev"
  8492. }
  8493. },
  8494. "autoload": {
  8495. "classmap": [
  8496. "src/"
  8497. ]
  8498. },
  8499. "notification-url": "https://packagist.org/downloads/",
  8500. "license": [
  8501. "BSD-3-Clause"
  8502. ],
  8503. "authors": [
  8504. {
  8505. "name": "Sebastian Bergmann",
  8506. "email": "sebastian@phpunit.de",
  8507. "role": "lead"
  8508. }
  8509. ],
  8510. "description": "Library for calculating the complexity of PHP code units",
  8511. "homepage": "https://github.com/sebastianbergmann/complexity",
  8512. "support": {
  8513. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8514. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  8515. "source": "https://github.com/sebastianbergmann/complexity/tree/5.0.0"
  8516. },
  8517. "funding": [
  8518. {
  8519. "url": "https://github.com/sebastianbergmann",
  8520. "type": "github"
  8521. }
  8522. ],
  8523. "time": "2025-02-07T04:55:25+00:00"
  8524. },
  8525. {
  8526. "name": "sebastian/diff",
  8527. "version": "7.0.0",
  8528. "source": {
  8529. "type": "git",
  8530. "url": "https://github.com/sebastianbergmann/diff.git",
  8531. "reference": "7ab1ea946c012266ca32390913653d844ecd085f"
  8532. },
  8533. "dist": {
  8534. "type": "zip",
  8535. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7ab1ea946c012266ca32390913653d844ecd085f",
  8536. "reference": "7ab1ea946c012266ca32390913653d844ecd085f",
  8537. "shasum": ""
  8538. },
  8539. "require": {
  8540. "php": ">=8.3"
  8541. },
  8542. "require-dev": {
  8543. "phpunit/phpunit": "^12.0",
  8544. "symfony/process": "^7.2"
  8545. },
  8546. "type": "library",
  8547. "extra": {
  8548. "branch-alias": {
  8549. "dev-main": "7.0-dev"
  8550. }
  8551. },
  8552. "autoload": {
  8553. "classmap": [
  8554. "src/"
  8555. ]
  8556. },
  8557. "notification-url": "https://packagist.org/downloads/",
  8558. "license": [
  8559. "BSD-3-Clause"
  8560. ],
  8561. "authors": [
  8562. {
  8563. "name": "Sebastian Bergmann",
  8564. "email": "sebastian@phpunit.de"
  8565. },
  8566. {
  8567. "name": "Kore Nordmann",
  8568. "email": "mail@kore-nordmann.de"
  8569. }
  8570. ],
  8571. "description": "Diff implementation",
  8572. "homepage": "https://github.com/sebastianbergmann/diff",
  8573. "keywords": [
  8574. "diff",
  8575. "udiff",
  8576. "unidiff",
  8577. "unified diff"
  8578. ],
  8579. "support": {
  8580. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8581. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  8582. "source": "https://github.com/sebastianbergmann/diff/tree/7.0.0"
  8583. },
  8584. "funding": [
  8585. {
  8586. "url": "https://github.com/sebastianbergmann",
  8587. "type": "github"
  8588. }
  8589. ],
  8590. "time": "2025-02-07T04:55:46+00:00"
  8591. },
  8592. {
  8593. "name": "sebastian/environment",
  8594. "version": "8.0.2",
  8595. "source": {
  8596. "type": "git",
  8597. "url": "https://github.com/sebastianbergmann/environment.git",
  8598. "reference": "d364b9e5d0d3b18a2573351a1786fbf96b7e0792"
  8599. },
  8600. "dist": {
  8601. "type": "zip",
  8602. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d364b9e5d0d3b18a2573351a1786fbf96b7e0792",
  8603. "reference": "d364b9e5d0d3b18a2573351a1786fbf96b7e0792",
  8604. "shasum": ""
  8605. },
  8606. "require": {
  8607. "php": ">=8.3"
  8608. },
  8609. "require-dev": {
  8610. "phpunit/phpunit": "^12.0"
  8611. },
  8612. "suggest": {
  8613. "ext-posix": "*"
  8614. },
  8615. "type": "library",
  8616. "extra": {
  8617. "branch-alias": {
  8618. "dev-main": "8.0-dev"
  8619. }
  8620. },
  8621. "autoload": {
  8622. "classmap": [
  8623. "src/"
  8624. ]
  8625. },
  8626. "notification-url": "https://packagist.org/downloads/",
  8627. "license": [
  8628. "BSD-3-Clause"
  8629. ],
  8630. "authors": [
  8631. {
  8632. "name": "Sebastian Bergmann",
  8633. "email": "sebastian@phpunit.de"
  8634. }
  8635. ],
  8636. "description": "Provides functionality to handle HHVM/PHP environments",
  8637. "homepage": "https://github.com/sebastianbergmann/environment",
  8638. "keywords": [
  8639. "Xdebug",
  8640. "environment",
  8641. "hhvm"
  8642. ],
  8643. "support": {
  8644. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8645. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  8646. "source": "https://github.com/sebastianbergmann/environment/tree/8.0.2"
  8647. },
  8648. "funding": [
  8649. {
  8650. "url": "https://github.com/sebastianbergmann",
  8651. "type": "github"
  8652. },
  8653. {
  8654. "url": "https://liberapay.com/sebastianbergmann",
  8655. "type": "liberapay"
  8656. },
  8657. {
  8658. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  8659. "type": "thanks_dev"
  8660. },
  8661. {
  8662. "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
  8663. "type": "tidelift"
  8664. }
  8665. ],
  8666. "time": "2025-05-21T15:05:44+00:00"
  8667. },
  8668. {
  8669. "name": "sebastian/exporter",
  8670. "version": "7.0.0",
  8671. "source": {
  8672. "type": "git",
  8673. "url": "https://github.com/sebastianbergmann/exporter.git",
  8674. "reference": "76432aafc58d50691a00d86d0632f1217a47b688"
  8675. },
  8676. "dist": {
  8677. "type": "zip",
  8678. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/76432aafc58d50691a00d86d0632f1217a47b688",
  8679. "reference": "76432aafc58d50691a00d86d0632f1217a47b688",
  8680. "shasum": ""
  8681. },
  8682. "require": {
  8683. "ext-mbstring": "*",
  8684. "php": ">=8.3",
  8685. "sebastian/recursion-context": "^7.0"
  8686. },
  8687. "require-dev": {
  8688. "phpunit/phpunit": "^12.0"
  8689. },
  8690. "type": "library",
  8691. "extra": {
  8692. "branch-alias": {
  8693. "dev-main": "7.0-dev"
  8694. }
  8695. },
  8696. "autoload": {
  8697. "classmap": [
  8698. "src/"
  8699. ]
  8700. },
  8701. "notification-url": "https://packagist.org/downloads/",
  8702. "license": [
  8703. "BSD-3-Clause"
  8704. ],
  8705. "authors": [
  8706. {
  8707. "name": "Sebastian Bergmann",
  8708. "email": "sebastian@phpunit.de"
  8709. },
  8710. {
  8711. "name": "Jeff Welch",
  8712. "email": "whatthejeff@gmail.com"
  8713. },
  8714. {
  8715. "name": "Volker Dusch",
  8716. "email": "github@wallbash.com"
  8717. },
  8718. {
  8719. "name": "Adam Harvey",
  8720. "email": "aharvey@php.net"
  8721. },
  8722. {
  8723. "name": "Bernhard Schussek",
  8724. "email": "bschussek@gmail.com"
  8725. }
  8726. ],
  8727. "description": "Provides the functionality to export PHP variables for visualization",
  8728. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  8729. "keywords": [
  8730. "export",
  8731. "exporter"
  8732. ],
  8733. "support": {
  8734. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  8735. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  8736. "source": "https://github.com/sebastianbergmann/exporter/tree/7.0.0"
  8737. },
  8738. "funding": [
  8739. {
  8740. "url": "https://github.com/sebastianbergmann",
  8741. "type": "github"
  8742. }
  8743. ],
  8744. "time": "2025-02-07T04:56:42+00:00"
  8745. },
  8746. {
  8747. "name": "sebastian/global-state",
  8748. "version": "8.0.0",
  8749. "source": {
  8750. "type": "git",
  8751. "url": "https://github.com/sebastianbergmann/global-state.git",
  8752. "reference": "570a2aeb26d40f057af686d63c4e99b075fb6cbc"
  8753. },
  8754. "dist": {
  8755. "type": "zip",
  8756. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/570a2aeb26d40f057af686d63c4e99b075fb6cbc",
  8757. "reference": "570a2aeb26d40f057af686d63c4e99b075fb6cbc",
  8758. "shasum": ""
  8759. },
  8760. "require": {
  8761. "php": ">=8.3",
  8762. "sebastian/object-reflector": "^5.0",
  8763. "sebastian/recursion-context": "^7.0"
  8764. },
  8765. "require-dev": {
  8766. "ext-dom": "*",
  8767. "phpunit/phpunit": "^12.0"
  8768. },
  8769. "type": "library",
  8770. "extra": {
  8771. "branch-alias": {
  8772. "dev-main": "8.0-dev"
  8773. }
  8774. },
  8775. "autoload": {
  8776. "classmap": [
  8777. "src/"
  8778. ]
  8779. },
  8780. "notification-url": "https://packagist.org/downloads/",
  8781. "license": [
  8782. "BSD-3-Clause"
  8783. ],
  8784. "authors": [
  8785. {
  8786. "name": "Sebastian Bergmann",
  8787. "email": "sebastian@phpunit.de"
  8788. }
  8789. ],
  8790. "description": "Snapshotting of global state",
  8791. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  8792. "keywords": [
  8793. "global state"
  8794. ],
  8795. "support": {
  8796. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  8797. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  8798. "source": "https://github.com/sebastianbergmann/global-state/tree/8.0.0"
  8799. },
  8800. "funding": [
  8801. {
  8802. "url": "https://github.com/sebastianbergmann",
  8803. "type": "github"
  8804. }
  8805. ],
  8806. "time": "2025-02-07T04:56:59+00:00"
  8807. },
  8808. {
  8809. "name": "sebastian/lines-of-code",
  8810. "version": "4.0.0",
  8811. "source": {
  8812. "type": "git",
  8813. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  8814. "reference": "97ffee3bcfb5805568d6af7f0f893678fc076d2f"
  8815. },
  8816. "dist": {
  8817. "type": "zip",
  8818. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/97ffee3bcfb5805568d6af7f0f893678fc076d2f",
  8819. "reference": "97ffee3bcfb5805568d6af7f0f893678fc076d2f",
  8820. "shasum": ""
  8821. },
  8822. "require": {
  8823. "nikic/php-parser": "^5.0",
  8824. "php": ">=8.3"
  8825. },
  8826. "require-dev": {
  8827. "phpunit/phpunit": "^12.0"
  8828. },
  8829. "type": "library",
  8830. "extra": {
  8831. "branch-alias": {
  8832. "dev-main": "4.0-dev"
  8833. }
  8834. },
  8835. "autoload": {
  8836. "classmap": [
  8837. "src/"
  8838. ]
  8839. },
  8840. "notification-url": "https://packagist.org/downloads/",
  8841. "license": [
  8842. "BSD-3-Clause"
  8843. ],
  8844. "authors": [
  8845. {
  8846. "name": "Sebastian Bergmann",
  8847. "email": "sebastian@phpunit.de",
  8848. "role": "lead"
  8849. }
  8850. ],
  8851. "description": "Library for counting the lines of code in PHP source code",
  8852. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  8853. "support": {
  8854. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  8855. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  8856. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/4.0.0"
  8857. },
  8858. "funding": [
  8859. {
  8860. "url": "https://github.com/sebastianbergmann",
  8861. "type": "github"
  8862. }
  8863. ],
  8864. "time": "2025-02-07T04:57:28+00:00"
  8865. },
  8866. {
  8867. "name": "sebastian/object-enumerator",
  8868. "version": "7.0.0",
  8869. "source": {
  8870. "type": "git",
  8871. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8872. "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894"
  8873. },
  8874. "dist": {
  8875. "type": "zip",
  8876. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1effe8e9b8e068e9ae228e542d5d11b5d16db894",
  8877. "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894",
  8878. "shasum": ""
  8879. },
  8880. "require": {
  8881. "php": ">=8.3",
  8882. "sebastian/object-reflector": "^5.0",
  8883. "sebastian/recursion-context": "^7.0"
  8884. },
  8885. "require-dev": {
  8886. "phpunit/phpunit": "^12.0"
  8887. },
  8888. "type": "library",
  8889. "extra": {
  8890. "branch-alias": {
  8891. "dev-main": "7.0-dev"
  8892. }
  8893. },
  8894. "autoload": {
  8895. "classmap": [
  8896. "src/"
  8897. ]
  8898. },
  8899. "notification-url": "https://packagist.org/downloads/",
  8900. "license": [
  8901. "BSD-3-Clause"
  8902. ],
  8903. "authors": [
  8904. {
  8905. "name": "Sebastian Bergmann",
  8906. "email": "sebastian@phpunit.de"
  8907. }
  8908. ],
  8909. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8910. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8911. "support": {
  8912. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  8913. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  8914. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/7.0.0"
  8915. },
  8916. "funding": [
  8917. {
  8918. "url": "https://github.com/sebastianbergmann",
  8919. "type": "github"
  8920. }
  8921. ],
  8922. "time": "2025-02-07T04:57:48+00:00"
  8923. },
  8924. {
  8925. "name": "sebastian/object-reflector",
  8926. "version": "5.0.0",
  8927. "source": {
  8928. "type": "git",
  8929. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8930. "reference": "4bfa827c969c98be1e527abd576533293c634f6a"
  8931. },
  8932. "dist": {
  8933. "type": "zip",
  8934. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/4bfa827c969c98be1e527abd576533293c634f6a",
  8935. "reference": "4bfa827c969c98be1e527abd576533293c634f6a",
  8936. "shasum": ""
  8937. },
  8938. "require": {
  8939. "php": ">=8.3"
  8940. },
  8941. "require-dev": {
  8942. "phpunit/phpunit": "^12.0"
  8943. },
  8944. "type": "library",
  8945. "extra": {
  8946. "branch-alias": {
  8947. "dev-main": "5.0-dev"
  8948. }
  8949. },
  8950. "autoload": {
  8951. "classmap": [
  8952. "src/"
  8953. ]
  8954. },
  8955. "notification-url": "https://packagist.org/downloads/",
  8956. "license": [
  8957. "BSD-3-Clause"
  8958. ],
  8959. "authors": [
  8960. {
  8961. "name": "Sebastian Bergmann",
  8962. "email": "sebastian@phpunit.de"
  8963. }
  8964. ],
  8965. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8966. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8967. "support": {
  8968. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  8969. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  8970. "source": "https://github.com/sebastianbergmann/object-reflector/tree/5.0.0"
  8971. },
  8972. "funding": [
  8973. {
  8974. "url": "https://github.com/sebastianbergmann",
  8975. "type": "github"
  8976. }
  8977. ],
  8978. "time": "2025-02-07T04:58:17+00:00"
  8979. },
  8980. {
  8981. "name": "sebastian/recursion-context",
  8982. "version": "7.0.0",
  8983. "source": {
  8984. "type": "git",
  8985. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8986. "reference": "c405ae3a63e01b32eb71577f8ec1604e39858a7c"
  8987. },
  8988. "dist": {
  8989. "type": "zip",
  8990. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/c405ae3a63e01b32eb71577f8ec1604e39858a7c",
  8991. "reference": "c405ae3a63e01b32eb71577f8ec1604e39858a7c",
  8992. "shasum": ""
  8993. },
  8994. "require": {
  8995. "php": ">=8.3"
  8996. },
  8997. "require-dev": {
  8998. "phpunit/phpunit": "^12.0"
  8999. },
  9000. "type": "library",
  9001. "extra": {
  9002. "branch-alias": {
  9003. "dev-main": "7.0-dev"
  9004. }
  9005. },
  9006. "autoload": {
  9007. "classmap": [
  9008. "src/"
  9009. ]
  9010. },
  9011. "notification-url": "https://packagist.org/downloads/",
  9012. "license": [
  9013. "BSD-3-Clause"
  9014. ],
  9015. "authors": [
  9016. {
  9017. "name": "Sebastian Bergmann",
  9018. "email": "sebastian@phpunit.de"
  9019. },
  9020. {
  9021. "name": "Jeff Welch",
  9022. "email": "whatthejeff@gmail.com"
  9023. },
  9024. {
  9025. "name": "Adam Harvey",
  9026. "email": "aharvey@php.net"
  9027. }
  9028. ],
  9029. "description": "Provides functionality to recursively process PHP variables",
  9030. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9031. "support": {
  9032. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9033. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  9034. "source": "https://github.com/sebastianbergmann/recursion-context/tree/7.0.0"
  9035. },
  9036. "funding": [
  9037. {
  9038. "url": "https://github.com/sebastianbergmann",
  9039. "type": "github"
  9040. }
  9041. ],
  9042. "time": "2025-02-07T05:00:01+00:00"
  9043. },
  9044. {
  9045. "name": "sebastian/type",
  9046. "version": "6.0.2",
  9047. "source": {
  9048. "type": "git",
  9049. "url": "https://github.com/sebastianbergmann/type.git",
  9050. "reference": "1d7cd6e514384c36d7a390347f57c385d4be6069"
  9051. },
  9052. "dist": {
  9053. "type": "zip",
  9054. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/1d7cd6e514384c36d7a390347f57c385d4be6069",
  9055. "reference": "1d7cd6e514384c36d7a390347f57c385d4be6069",
  9056. "shasum": ""
  9057. },
  9058. "require": {
  9059. "php": ">=8.3"
  9060. },
  9061. "require-dev": {
  9062. "phpunit/phpunit": "^12.0"
  9063. },
  9064. "type": "library",
  9065. "extra": {
  9066. "branch-alias": {
  9067. "dev-main": "6.0-dev"
  9068. }
  9069. },
  9070. "autoload": {
  9071. "classmap": [
  9072. "src/"
  9073. ]
  9074. },
  9075. "notification-url": "https://packagist.org/downloads/",
  9076. "license": [
  9077. "BSD-3-Clause"
  9078. ],
  9079. "authors": [
  9080. {
  9081. "name": "Sebastian Bergmann",
  9082. "email": "sebastian@phpunit.de",
  9083. "role": "lead"
  9084. }
  9085. ],
  9086. "description": "Collection of value objects that represent the types of the PHP type system",
  9087. "homepage": "https://github.com/sebastianbergmann/type",
  9088. "support": {
  9089. "issues": "https://github.com/sebastianbergmann/type/issues",
  9090. "security": "https://github.com/sebastianbergmann/type/security/policy",
  9091. "source": "https://github.com/sebastianbergmann/type/tree/6.0.2"
  9092. },
  9093. "funding": [
  9094. {
  9095. "url": "https://github.com/sebastianbergmann",
  9096. "type": "github"
  9097. }
  9098. ],
  9099. "time": "2025-03-18T13:37:31+00:00"
  9100. },
  9101. {
  9102. "name": "sebastian/version",
  9103. "version": "6.0.0",
  9104. "source": {
  9105. "type": "git",
  9106. "url": "https://github.com/sebastianbergmann/version.git",
  9107. "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c"
  9108. },
  9109. "dist": {
  9110. "type": "zip",
  9111. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/3e6ccf7657d4f0a59200564b08cead899313b53c",
  9112. "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c",
  9113. "shasum": ""
  9114. },
  9115. "require": {
  9116. "php": ">=8.3"
  9117. },
  9118. "type": "library",
  9119. "extra": {
  9120. "branch-alias": {
  9121. "dev-main": "6.0-dev"
  9122. }
  9123. },
  9124. "autoload": {
  9125. "classmap": [
  9126. "src/"
  9127. ]
  9128. },
  9129. "notification-url": "https://packagist.org/downloads/",
  9130. "license": [
  9131. "BSD-3-Clause"
  9132. ],
  9133. "authors": [
  9134. {
  9135. "name": "Sebastian Bergmann",
  9136. "email": "sebastian@phpunit.de",
  9137. "role": "lead"
  9138. }
  9139. ],
  9140. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9141. "homepage": "https://github.com/sebastianbergmann/version",
  9142. "support": {
  9143. "issues": "https://github.com/sebastianbergmann/version/issues",
  9144. "security": "https://github.com/sebastianbergmann/version/security/policy",
  9145. "source": "https://github.com/sebastianbergmann/version/tree/6.0.0"
  9146. },
  9147. "funding": [
  9148. {
  9149. "url": "https://github.com/sebastianbergmann",
  9150. "type": "github"
  9151. }
  9152. ],
  9153. "time": "2025-02-07T05:00:38+00:00"
  9154. },
  9155. {
  9156. "name": "staabm/side-effects-detector",
  9157. "version": "1.0.5",
  9158. "source": {
  9159. "type": "git",
  9160. "url": "https://github.com/staabm/side-effects-detector.git",
  9161. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  9162. },
  9163. "dist": {
  9164. "type": "zip",
  9165. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  9166. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  9167. "shasum": ""
  9168. },
  9169. "require": {
  9170. "ext-tokenizer": "*",
  9171. "php": "^7.4 || ^8.0"
  9172. },
  9173. "require-dev": {
  9174. "phpstan/extension-installer": "^1.4.3",
  9175. "phpstan/phpstan": "^1.12.6",
  9176. "phpunit/phpunit": "^9.6.21",
  9177. "symfony/var-dumper": "^5.4.43",
  9178. "tomasvotruba/type-coverage": "1.0.0",
  9179. "tomasvotruba/unused-public": "1.0.0"
  9180. },
  9181. "type": "library",
  9182. "autoload": {
  9183. "classmap": [
  9184. "lib/"
  9185. ]
  9186. },
  9187. "notification-url": "https://packagist.org/downloads/",
  9188. "license": [
  9189. "MIT"
  9190. ],
  9191. "description": "A static analysis tool to detect side effects in PHP code",
  9192. "keywords": [
  9193. "static analysis"
  9194. ],
  9195. "support": {
  9196. "issues": "https://github.com/staabm/side-effects-detector/issues",
  9197. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  9198. },
  9199. "funding": [
  9200. {
  9201. "url": "https://github.com/staabm",
  9202. "type": "github"
  9203. }
  9204. ],
  9205. "time": "2024-10-20T05:08:20+00:00"
  9206. },
  9207. {
  9208. "name": "symfony/browser-kit",
  9209. "version": "v7.3.0",
  9210. "source": {
  9211. "type": "git",
  9212. "url": "https://github.com/symfony/browser-kit.git",
  9213. "reference": "5384291845e74fd7d54f3d925c4a86ce12336593"
  9214. },
  9215. "dist": {
  9216. "type": "zip",
  9217. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/5384291845e74fd7d54f3d925c4a86ce12336593",
  9218. "reference": "5384291845e74fd7d54f3d925c4a86ce12336593",
  9219. "shasum": ""
  9220. },
  9221. "require": {
  9222. "php": ">=8.2",
  9223. "symfony/dom-crawler": "^6.4|^7.0"
  9224. },
  9225. "require-dev": {
  9226. "symfony/css-selector": "^6.4|^7.0",
  9227. "symfony/http-client": "^6.4|^7.0",
  9228. "symfony/mime": "^6.4|^7.0",
  9229. "symfony/process": "^6.4|^7.0"
  9230. },
  9231. "type": "library",
  9232. "autoload": {
  9233. "psr-4": {
  9234. "Symfony\\Component\\BrowserKit\\": ""
  9235. },
  9236. "exclude-from-classmap": [
  9237. "/Tests/"
  9238. ]
  9239. },
  9240. "notification-url": "https://packagist.org/downloads/",
  9241. "license": [
  9242. "MIT"
  9243. ],
  9244. "authors": [
  9245. {
  9246. "name": "Fabien Potencier",
  9247. "email": "fabien@symfony.com"
  9248. },
  9249. {
  9250. "name": "Symfony Community",
  9251. "homepage": "https://symfony.com/contributors"
  9252. }
  9253. ],
  9254. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  9255. "homepage": "https://symfony.com",
  9256. "support": {
  9257. "source": "https://github.com/symfony/browser-kit/tree/v7.3.0"
  9258. },
  9259. "funding": [
  9260. {
  9261. "url": "https://symfony.com/sponsor",
  9262. "type": "custom"
  9263. },
  9264. {
  9265. "url": "https://github.com/fabpot",
  9266. "type": "github"
  9267. },
  9268. {
  9269. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9270. "type": "tidelift"
  9271. }
  9272. ],
  9273. "time": "2025-03-05T10:15:41+00:00"
  9274. },
  9275. {
  9276. "name": "symfony/css-selector",
  9277. "version": "v7.3.0",
  9278. "source": {
  9279. "type": "git",
  9280. "url": "https://github.com/symfony/css-selector.git",
  9281. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  9282. },
  9283. "dist": {
  9284. "type": "zip",
  9285. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  9286. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  9287. "shasum": ""
  9288. },
  9289. "require": {
  9290. "php": ">=8.2"
  9291. },
  9292. "type": "library",
  9293. "autoload": {
  9294. "psr-4": {
  9295. "Symfony\\Component\\CssSelector\\": ""
  9296. },
  9297. "exclude-from-classmap": [
  9298. "/Tests/"
  9299. ]
  9300. },
  9301. "notification-url": "https://packagist.org/downloads/",
  9302. "license": [
  9303. "MIT"
  9304. ],
  9305. "authors": [
  9306. {
  9307. "name": "Fabien Potencier",
  9308. "email": "fabien@symfony.com"
  9309. },
  9310. {
  9311. "name": "Jean-François Simon",
  9312. "email": "jeanfrancois.simon@sensiolabs.com"
  9313. },
  9314. {
  9315. "name": "Symfony Community",
  9316. "homepage": "https://symfony.com/contributors"
  9317. }
  9318. ],
  9319. "description": "Converts CSS selectors to XPath expressions",
  9320. "homepage": "https://symfony.com",
  9321. "support": {
  9322. "source": "https://github.com/symfony/css-selector/tree/v7.3.0"
  9323. },
  9324. "funding": [
  9325. {
  9326. "url": "https://symfony.com/sponsor",
  9327. "type": "custom"
  9328. },
  9329. {
  9330. "url": "https://github.com/fabpot",
  9331. "type": "github"
  9332. },
  9333. {
  9334. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9335. "type": "tidelift"
  9336. }
  9337. ],
  9338. "time": "2024-09-25T14:21:43+00:00"
  9339. },
  9340. {
  9341. "name": "symfony/debug-bundle",
  9342. "version": "v7.3.0",
  9343. "source": {
  9344. "type": "git",
  9345. "url": "https://github.com/symfony/debug-bundle.git",
  9346. "reference": "781acc90f31f5fe18915f9276890864ebbbe3da8"
  9347. },
  9348. "dist": {
  9349. "type": "zip",
  9350. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/781acc90f31f5fe18915f9276890864ebbbe3da8",
  9351. "reference": "781acc90f31f5fe18915f9276890864ebbbe3da8",
  9352. "shasum": ""
  9353. },
  9354. "require": {
  9355. "composer-runtime-api": ">=2.1",
  9356. "ext-xml": "*",
  9357. "php": ">=8.2",
  9358. "symfony/config": "^7.3",
  9359. "symfony/dependency-injection": "^6.4|^7.0",
  9360. "symfony/http-kernel": "^6.4|^7.0",
  9361. "symfony/twig-bridge": "^6.4|^7.0",
  9362. "symfony/var-dumper": "^6.4|^7.0"
  9363. },
  9364. "require-dev": {
  9365. "symfony/web-profiler-bundle": "^6.4|^7.0"
  9366. },
  9367. "type": "symfony-bundle",
  9368. "autoload": {
  9369. "psr-4": {
  9370. "Symfony\\Bundle\\DebugBundle\\": ""
  9371. },
  9372. "exclude-from-classmap": [
  9373. "/Tests/"
  9374. ]
  9375. },
  9376. "notification-url": "https://packagist.org/downloads/",
  9377. "license": [
  9378. "MIT"
  9379. ],
  9380. "authors": [
  9381. {
  9382. "name": "Fabien Potencier",
  9383. "email": "fabien@symfony.com"
  9384. },
  9385. {
  9386. "name": "Symfony Community",
  9387. "homepage": "https://symfony.com/contributors"
  9388. }
  9389. ],
  9390. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  9391. "homepage": "https://symfony.com",
  9392. "support": {
  9393. "source": "https://github.com/symfony/debug-bundle/tree/v7.3.0"
  9394. },
  9395. "funding": [
  9396. {
  9397. "url": "https://symfony.com/sponsor",
  9398. "type": "custom"
  9399. },
  9400. {
  9401. "url": "https://github.com/fabpot",
  9402. "type": "github"
  9403. },
  9404. {
  9405. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9406. "type": "tidelift"
  9407. }
  9408. ],
  9409. "time": "2025-05-04T13:21:13+00:00"
  9410. },
  9411. {
  9412. "name": "symfony/dom-crawler",
  9413. "version": "v7.3.1",
  9414. "source": {
  9415. "type": "git",
  9416. "url": "https://github.com/symfony/dom-crawler.git",
  9417. "reference": "8b2ee2e06ab99fa5f067b6699296d4e35c156bb9"
  9418. },
  9419. "dist": {
  9420. "type": "zip",
  9421. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/8b2ee2e06ab99fa5f067b6699296d4e35c156bb9",
  9422. "reference": "8b2ee2e06ab99fa5f067b6699296d4e35c156bb9",
  9423. "shasum": ""
  9424. },
  9425. "require": {
  9426. "masterminds/html5": "^2.6",
  9427. "php": ">=8.2",
  9428. "symfony/polyfill-ctype": "~1.8",
  9429. "symfony/polyfill-mbstring": "~1.0"
  9430. },
  9431. "require-dev": {
  9432. "symfony/css-selector": "^6.4|^7.0"
  9433. },
  9434. "type": "library",
  9435. "autoload": {
  9436. "psr-4": {
  9437. "Symfony\\Component\\DomCrawler\\": ""
  9438. },
  9439. "exclude-from-classmap": [
  9440. "/Tests/"
  9441. ]
  9442. },
  9443. "notification-url": "https://packagist.org/downloads/",
  9444. "license": [
  9445. "MIT"
  9446. ],
  9447. "authors": [
  9448. {
  9449. "name": "Fabien Potencier",
  9450. "email": "fabien@symfony.com"
  9451. },
  9452. {
  9453. "name": "Symfony Community",
  9454. "homepage": "https://symfony.com/contributors"
  9455. }
  9456. ],
  9457. "description": "Eases DOM navigation for HTML and XML documents",
  9458. "homepage": "https://symfony.com",
  9459. "support": {
  9460. "source": "https://github.com/symfony/dom-crawler/tree/v7.3.1"
  9461. },
  9462. "funding": [
  9463. {
  9464. "url": "https://symfony.com/sponsor",
  9465. "type": "custom"
  9466. },
  9467. {
  9468. "url": "https://github.com/fabpot",
  9469. "type": "github"
  9470. },
  9471. {
  9472. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9473. "type": "tidelift"
  9474. }
  9475. ],
  9476. "time": "2025-06-15T10:07:06+00:00"
  9477. },
  9478. {
  9479. "name": "symfony/maker-bundle",
  9480. "version": "v1.64.0",
  9481. "source": {
  9482. "type": "git",
  9483. "url": "https://github.com/symfony/maker-bundle.git",
  9484. "reference": "c86da84640b0586e92aee2b276ee3638ef2f425a"
  9485. },
  9486. "dist": {
  9487. "type": "zip",
  9488. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/c86da84640b0586e92aee2b276ee3638ef2f425a",
  9489. "reference": "c86da84640b0586e92aee2b276ee3638ef2f425a",
  9490. "shasum": ""
  9491. },
  9492. "require": {
  9493. "doctrine/inflector": "^2.0",
  9494. "nikic/php-parser": "^5.0",
  9495. "php": ">=8.1",
  9496. "symfony/config": "^6.4|^7.0",
  9497. "symfony/console": "^6.4|^7.0",
  9498. "symfony/dependency-injection": "^6.4|^7.0",
  9499. "symfony/deprecation-contracts": "^2.2|^3",
  9500. "symfony/filesystem": "^6.4|^7.0",
  9501. "symfony/finder": "^6.4|^7.0",
  9502. "symfony/framework-bundle": "^6.4|^7.0",
  9503. "symfony/http-kernel": "^6.4|^7.0",
  9504. "symfony/process": "^6.4|^7.0"
  9505. },
  9506. "conflict": {
  9507. "doctrine/doctrine-bundle": "<2.10",
  9508. "doctrine/orm": "<2.15"
  9509. },
  9510. "require-dev": {
  9511. "composer/semver": "^3.0",
  9512. "doctrine/doctrine-bundle": "^2.5.0",
  9513. "doctrine/orm": "^2.15|^3",
  9514. "symfony/http-client": "^6.4|^7.0",
  9515. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  9516. "symfony/security-core": "^6.4|^7.0",
  9517. "symfony/security-http": "^6.4|^7.0",
  9518. "symfony/yaml": "^6.4|^7.0",
  9519. "twig/twig": "^3.0|^4.x-dev"
  9520. },
  9521. "type": "symfony-bundle",
  9522. "extra": {
  9523. "branch-alias": {
  9524. "dev-main": "1.x-dev"
  9525. }
  9526. },
  9527. "autoload": {
  9528. "psr-4": {
  9529. "Symfony\\Bundle\\MakerBundle\\": "src/"
  9530. }
  9531. },
  9532. "notification-url": "https://packagist.org/downloads/",
  9533. "license": [
  9534. "MIT"
  9535. ],
  9536. "authors": [
  9537. {
  9538. "name": "Symfony Community",
  9539. "homepage": "https://symfony.com/contributors"
  9540. }
  9541. ],
  9542. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  9543. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  9544. "keywords": [
  9545. "code generator",
  9546. "dev",
  9547. "generator",
  9548. "scaffold",
  9549. "scaffolding"
  9550. ],
  9551. "support": {
  9552. "issues": "https://github.com/symfony/maker-bundle/issues",
  9553. "source": "https://github.com/symfony/maker-bundle/tree/v1.64.0"
  9554. },
  9555. "funding": [
  9556. {
  9557. "url": "https://symfony.com/sponsor",
  9558. "type": "custom"
  9559. },
  9560. {
  9561. "url": "https://github.com/fabpot",
  9562. "type": "github"
  9563. },
  9564. {
  9565. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9566. "type": "tidelift"
  9567. }
  9568. ],
  9569. "time": "2025-06-23T16:12:08+00:00"
  9570. },
  9571. {
  9572. "name": "symfony/web-profiler-bundle",
  9573. "version": "v7.3.1",
  9574. "source": {
  9575. "type": "git",
  9576. "url": "https://github.com/symfony/web-profiler-bundle.git",
  9577. "reference": "47c994d8f08817122ffb48bf2ea4fb97b7e00d51"
  9578. },
  9579. "dist": {
  9580. "type": "zip",
  9581. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/47c994d8f08817122ffb48bf2ea4fb97b7e00d51",
  9582. "reference": "47c994d8f08817122ffb48bf2ea4fb97b7e00d51",
  9583. "shasum": ""
  9584. },
  9585. "require": {
  9586. "composer-runtime-api": ">=2.1",
  9587. "php": ">=8.2",
  9588. "symfony/config": "^7.3",
  9589. "symfony/deprecation-contracts": "^2.5|^3",
  9590. "symfony/framework-bundle": "^6.4|^7.0",
  9591. "symfony/http-kernel": "^6.4|^7.0",
  9592. "symfony/routing": "^6.4|^7.0",
  9593. "symfony/twig-bundle": "^6.4|^7.0",
  9594. "twig/twig": "^3.12"
  9595. },
  9596. "conflict": {
  9597. "symfony/form": "<6.4",
  9598. "symfony/mailer": "<6.4",
  9599. "symfony/messenger": "<6.4",
  9600. "symfony/serializer": "<7.2",
  9601. "symfony/workflow": "<7.3"
  9602. },
  9603. "require-dev": {
  9604. "symfony/browser-kit": "^6.4|^7.0",
  9605. "symfony/console": "^6.4|^7.0",
  9606. "symfony/css-selector": "^6.4|^7.0",
  9607. "symfony/stopwatch": "^6.4|^7.0"
  9608. },
  9609. "type": "symfony-bundle",
  9610. "autoload": {
  9611. "psr-4": {
  9612. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  9613. },
  9614. "exclude-from-classmap": [
  9615. "/Tests/"
  9616. ]
  9617. },
  9618. "notification-url": "https://packagist.org/downloads/",
  9619. "license": [
  9620. "MIT"
  9621. ],
  9622. "authors": [
  9623. {
  9624. "name": "Fabien Potencier",
  9625. "email": "fabien@symfony.com"
  9626. },
  9627. {
  9628. "name": "Symfony Community",
  9629. "homepage": "https://symfony.com/contributors"
  9630. }
  9631. ],
  9632. "description": "Provides a development tool that gives detailed information about the execution of any request",
  9633. "homepage": "https://symfony.com",
  9634. "keywords": [
  9635. "dev"
  9636. ],
  9637. "support": {
  9638. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.3.1"
  9639. },
  9640. "funding": [
  9641. {
  9642. "url": "https://symfony.com/sponsor",
  9643. "type": "custom"
  9644. },
  9645. {
  9646. "url": "https://github.com/fabpot",
  9647. "type": "github"
  9648. },
  9649. {
  9650. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9651. "type": "tidelift"
  9652. }
  9653. ],
  9654. "time": "2025-06-05T09:30:41+00:00"
  9655. },
  9656. {
  9657. "name": "theseer/tokenizer",
  9658. "version": "1.2.3",
  9659. "source": {
  9660. "type": "git",
  9661. "url": "https://github.com/theseer/tokenizer.git",
  9662. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  9663. },
  9664. "dist": {
  9665. "type": "zip",
  9666. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9667. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9668. "shasum": ""
  9669. },
  9670. "require": {
  9671. "ext-dom": "*",
  9672. "ext-tokenizer": "*",
  9673. "ext-xmlwriter": "*",
  9674. "php": "^7.2 || ^8.0"
  9675. },
  9676. "type": "library",
  9677. "autoload": {
  9678. "classmap": [
  9679. "src/"
  9680. ]
  9681. },
  9682. "notification-url": "https://packagist.org/downloads/",
  9683. "license": [
  9684. "BSD-3-Clause"
  9685. ],
  9686. "authors": [
  9687. {
  9688. "name": "Arne Blankerts",
  9689. "email": "arne@blankerts.de",
  9690. "role": "Developer"
  9691. }
  9692. ],
  9693. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9694. "support": {
  9695. "issues": "https://github.com/theseer/tokenizer/issues",
  9696. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  9697. },
  9698. "funding": [
  9699. {
  9700. "url": "https://github.com/theseer",
  9701. "type": "github"
  9702. }
  9703. ],
  9704. "time": "2024-03-03T12:36:25+00:00"
  9705. }
  9706. ],
  9707. "aliases": [],
  9708. "minimum-stability": "stable",
  9709. "stability-flags": {},
  9710. "prefer-stable": true,
  9711. "prefer-lowest": false,
  9712. "platform": {
  9713. "php": ">=8.2",
  9714. "ext-ctype": "*",
  9715. "ext-iconv": "*"
  9716. },
  9717. "platform-dev": {},
  9718. "plugin-api-version": "2.6.0"
  9719. }