composer.lock 383 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546
  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": "8d5c310c71ca5fd01478f5947cfe1903",
  8. "packages": [
  9. {
  10. "name": "composer/semver",
  11. "version": "3.4.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/composer/semver.git",
  15. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  20. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^5.3.2 || ^7.0 || ^8.0"
  25. },
  26. "require-dev": {
  27. "phpstan/phpstan": "^1.11",
  28. "symfony/phpunit-bridge": "^3 || ^7"
  29. },
  30. "type": "library",
  31. "extra": {
  32. "branch-alias": {
  33. "dev-main": "3.x-dev"
  34. }
  35. },
  36. "autoload": {
  37. "psr-4": {
  38. "Composer\\Semver\\": "src"
  39. }
  40. },
  41. "notification-url": "https://packagist.org/downloads/",
  42. "license": [
  43. "MIT"
  44. ],
  45. "authors": [
  46. {
  47. "name": "Nils Adermann",
  48. "email": "naderman@naderman.de",
  49. "homepage": "http://www.naderman.de"
  50. },
  51. {
  52. "name": "Jordi Boggiano",
  53. "email": "j.boggiano@seld.be",
  54. "homepage": "http://seld.be"
  55. },
  56. {
  57. "name": "Rob Bast",
  58. "email": "rob.bast@gmail.com",
  59. "homepage": "http://robbast.nl"
  60. }
  61. ],
  62. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  63. "keywords": [
  64. "semantic",
  65. "semver",
  66. "validation",
  67. "versioning"
  68. ],
  69. "support": {
  70. "irc": "ircs://irc.libera.chat:6697/composer",
  71. "issues": "https://github.com/composer/semver/issues",
  72. "source": "https://github.com/composer/semver/tree/3.4.3"
  73. },
  74. "funding": [
  75. {
  76. "url": "https://packagist.com",
  77. "type": "custom"
  78. },
  79. {
  80. "url": "https://github.com/composer",
  81. "type": "github"
  82. },
  83. {
  84. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  85. "type": "tidelift"
  86. }
  87. ],
  88. "time": "2024-09-19T14:15:21+00:00"
  89. },
  90. {
  91. "name": "doctrine/collections",
  92. "version": "2.3.0",
  93. "source": {
  94. "type": "git",
  95. "url": "https://github.com/doctrine/collections.git",
  96. "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d"
  97. },
  98. "dist": {
  99. "type": "zip",
  100. "url": "https://api.github.com/repos/doctrine/collections/zipball/2eb07e5953eed811ce1b309a7478a3b236f2273d",
  101. "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d",
  102. "shasum": ""
  103. },
  104. "require": {
  105. "doctrine/deprecations": "^1",
  106. "php": "^8.1",
  107. "symfony/polyfill-php84": "^1.30"
  108. },
  109. "require-dev": {
  110. "doctrine/coding-standard": "^12",
  111. "ext-json": "*",
  112. "phpstan/phpstan": "^1.8",
  113. "phpstan/phpstan-phpunit": "^1.0",
  114. "phpunit/phpunit": "^10.5"
  115. },
  116. "type": "library",
  117. "autoload": {
  118. "psr-4": {
  119. "Doctrine\\Common\\Collections\\": "src"
  120. }
  121. },
  122. "notification-url": "https://packagist.org/downloads/",
  123. "license": [
  124. "MIT"
  125. ],
  126. "authors": [
  127. {
  128. "name": "Guilherme Blanco",
  129. "email": "guilhermeblanco@gmail.com"
  130. },
  131. {
  132. "name": "Roman Borschel",
  133. "email": "roman@code-factory.org"
  134. },
  135. {
  136. "name": "Benjamin Eberlei",
  137. "email": "kontakt@beberlei.de"
  138. },
  139. {
  140. "name": "Jonathan Wage",
  141. "email": "jonwage@gmail.com"
  142. },
  143. {
  144. "name": "Johannes Schmitt",
  145. "email": "schmittjoh@gmail.com"
  146. }
  147. ],
  148. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  149. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  150. "keywords": [
  151. "array",
  152. "collections",
  153. "iterators",
  154. "php"
  155. ],
  156. "support": {
  157. "issues": "https://github.com/doctrine/collections/issues",
  158. "source": "https://github.com/doctrine/collections/tree/2.3.0"
  159. },
  160. "funding": [
  161. {
  162. "url": "https://www.doctrine-project.org/sponsorship.html",
  163. "type": "custom"
  164. },
  165. {
  166. "url": "https://www.patreon.com/phpdoctrine",
  167. "type": "patreon"
  168. },
  169. {
  170. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  171. "type": "tidelift"
  172. }
  173. ],
  174. "time": "2025-03-22T10:17:19+00:00"
  175. },
  176. {
  177. "name": "doctrine/dbal",
  178. "version": "3.10.0",
  179. "source": {
  180. "type": "git",
  181. "url": "https://github.com/doctrine/dbal.git",
  182. "reference": "1cf840d696373ea0d58ad0a8875c0fadcfc67214"
  183. },
  184. "dist": {
  185. "type": "zip",
  186. "url": "https://api.github.com/repos/doctrine/dbal/zipball/1cf840d696373ea0d58ad0a8875c0fadcfc67214",
  187. "reference": "1cf840d696373ea0d58ad0a8875c0fadcfc67214",
  188. "shasum": ""
  189. },
  190. "require": {
  191. "composer-runtime-api": "^2",
  192. "doctrine/deprecations": "^0.5.3|^1",
  193. "doctrine/event-manager": "^1|^2",
  194. "php": "^7.4 || ^8.0",
  195. "psr/cache": "^1|^2|^3",
  196. "psr/log": "^1|^2|^3"
  197. },
  198. "conflict": {
  199. "doctrine/cache": "< 1.11"
  200. },
  201. "require-dev": {
  202. "doctrine/cache": "^1.11|^2.0",
  203. "doctrine/coding-standard": "13.0.0",
  204. "fig/log-test": "^1",
  205. "jetbrains/phpstorm-stubs": "2023.1",
  206. "phpstan/phpstan": "2.1.17",
  207. "phpstan/phpstan-strict-rules": "^2",
  208. "phpunit/phpunit": "9.6.23",
  209. "slevomat/coding-standard": "8.16.2",
  210. "squizlabs/php_codesniffer": "3.13.1",
  211. "symfony/cache": "^5.4|^6.0|^7.0",
  212. "symfony/console": "^4.4|^5.4|^6.0|^7.0"
  213. },
  214. "suggest": {
  215. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  216. },
  217. "bin": [
  218. "bin/doctrine-dbal"
  219. ],
  220. "type": "library",
  221. "autoload": {
  222. "psr-4": {
  223. "Doctrine\\DBAL\\": "src"
  224. }
  225. },
  226. "notification-url": "https://packagist.org/downloads/",
  227. "license": [
  228. "MIT"
  229. ],
  230. "authors": [
  231. {
  232. "name": "Guilherme Blanco",
  233. "email": "guilhermeblanco@gmail.com"
  234. },
  235. {
  236. "name": "Roman Borschel",
  237. "email": "roman@code-factory.org"
  238. },
  239. {
  240. "name": "Benjamin Eberlei",
  241. "email": "kontakt@beberlei.de"
  242. },
  243. {
  244. "name": "Jonathan Wage",
  245. "email": "jonwage@gmail.com"
  246. }
  247. ],
  248. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  249. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  250. "keywords": [
  251. "abstraction",
  252. "database",
  253. "db2",
  254. "dbal",
  255. "mariadb",
  256. "mssql",
  257. "mysql",
  258. "oci8",
  259. "oracle",
  260. "pdo",
  261. "pgsql",
  262. "postgresql",
  263. "queryobject",
  264. "sasql",
  265. "sql",
  266. "sqlite",
  267. "sqlserver",
  268. "sqlsrv"
  269. ],
  270. "support": {
  271. "issues": "https://github.com/doctrine/dbal/issues",
  272. "source": "https://github.com/doctrine/dbal/tree/3.10.0"
  273. },
  274. "funding": [
  275. {
  276. "url": "https://www.doctrine-project.org/sponsorship.html",
  277. "type": "custom"
  278. },
  279. {
  280. "url": "https://www.patreon.com/phpdoctrine",
  281. "type": "patreon"
  282. },
  283. {
  284. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  285. "type": "tidelift"
  286. }
  287. ],
  288. "time": "2025-07-10T21:11:04+00:00"
  289. },
  290. {
  291. "name": "doctrine/deprecations",
  292. "version": "1.1.5",
  293. "source": {
  294. "type": "git",
  295. "url": "https://github.com/doctrine/deprecations.git",
  296. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
  297. },
  298. "dist": {
  299. "type": "zip",
  300. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  301. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  302. "shasum": ""
  303. },
  304. "require": {
  305. "php": "^7.1 || ^8.0"
  306. },
  307. "conflict": {
  308. "phpunit/phpunit": "<=7.5 || >=13"
  309. },
  310. "require-dev": {
  311. "doctrine/coding-standard": "^9 || ^12 || ^13",
  312. "phpstan/phpstan": "1.4.10 || 2.1.11",
  313. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  314. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
  315. "psr/log": "^1 || ^2 || ^3"
  316. },
  317. "suggest": {
  318. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  319. },
  320. "type": "library",
  321. "autoload": {
  322. "psr-4": {
  323. "Doctrine\\Deprecations\\": "src"
  324. }
  325. },
  326. "notification-url": "https://packagist.org/downloads/",
  327. "license": [
  328. "MIT"
  329. ],
  330. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  331. "homepage": "https://www.doctrine-project.org/",
  332. "support": {
  333. "issues": "https://github.com/doctrine/deprecations/issues",
  334. "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
  335. },
  336. "time": "2025-04-07T20:06:18+00:00"
  337. },
  338. {
  339. "name": "doctrine/doctrine-bundle",
  340. "version": "2.15.0",
  341. "source": {
  342. "type": "git",
  343. "url": "https://github.com/doctrine/DoctrineBundle.git",
  344. "reference": "d88294521a1bca943240adca65fa19ca8a7288c6"
  345. },
  346. "dist": {
  347. "type": "zip",
  348. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/d88294521a1bca943240adca65fa19ca8a7288c6",
  349. "reference": "d88294521a1bca943240adca65fa19ca8a7288c6",
  350. "shasum": ""
  351. },
  352. "require": {
  353. "doctrine/dbal": "^3.7.0 || ^4.0",
  354. "doctrine/persistence": "^3.1 || ^4",
  355. "doctrine/sql-formatter": "^1.0.1",
  356. "php": "^8.1",
  357. "symfony/cache": "^6.4 || ^7.0",
  358. "symfony/config": "^6.4 || ^7.0",
  359. "symfony/console": "^6.4 || ^7.0",
  360. "symfony/dependency-injection": "^6.4 || ^7.0",
  361. "symfony/deprecation-contracts": "^2.1 || ^3",
  362. "symfony/doctrine-bridge": "^6.4.3 || ^7.0.3",
  363. "symfony/framework-bundle": "^6.4 || ^7.0",
  364. "symfony/service-contracts": "^2.5 || ^3"
  365. },
  366. "conflict": {
  367. "doctrine/annotations": ">=3.0",
  368. "doctrine/cache": "< 1.11",
  369. "doctrine/orm": "<2.17 || >=4.0",
  370. "symfony/var-exporter": "< 6.4.1 || 7.0.0",
  371. "twig/twig": "<2.13 || >=3.0 <3.0.4"
  372. },
  373. "require-dev": {
  374. "doctrine/annotations": "^1 || ^2",
  375. "doctrine/cache": "^1.11 || ^2.0",
  376. "doctrine/coding-standard": "^13",
  377. "doctrine/deprecations": "^1.0",
  378. "doctrine/orm": "^2.17 || ^3.1",
  379. "friendsofphp/proxy-manager-lts": "^1.0",
  380. "phpstan/phpstan": "2.1.1",
  381. "phpstan/phpstan-phpunit": "2.0.3",
  382. "phpstan/phpstan-strict-rules": "^2",
  383. "phpunit/phpunit": "^9.6.22",
  384. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  385. "symfony/doctrine-messenger": "^6.4 || ^7.0",
  386. "symfony/messenger": "^6.4 || ^7.0",
  387. "symfony/phpunit-bridge": "^7.2",
  388. "symfony/property-info": "^6.4 || ^7.0",
  389. "symfony/security-bundle": "^6.4 || ^7.0",
  390. "symfony/stopwatch": "^6.4 || ^7.0",
  391. "symfony/string": "^6.4 || ^7.0",
  392. "symfony/twig-bridge": "^6.4 || ^7.0",
  393. "symfony/validator": "^6.4 || ^7.0",
  394. "symfony/var-exporter": "^6.4.1 || ^7.0.1",
  395. "symfony/web-profiler-bundle": "^6.4 || ^7.0",
  396. "symfony/yaml": "^6.4 || ^7.0",
  397. "twig/twig": "^2.13 || ^3.0.4"
  398. },
  399. "suggest": {
  400. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  401. "ext-pdo": "*",
  402. "symfony/web-profiler-bundle": "To use the data collector."
  403. },
  404. "type": "symfony-bundle",
  405. "autoload": {
  406. "psr-4": {
  407. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  408. }
  409. },
  410. "notification-url": "https://packagist.org/downloads/",
  411. "license": [
  412. "MIT"
  413. ],
  414. "authors": [
  415. {
  416. "name": "Fabien Potencier",
  417. "email": "fabien@symfony.com"
  418. },
  419. {
  420. "name": "Benjamin Eberlei",
  421. "email": "kontakt@beberlei.de"
  422. },
  423. {
  424. "name": "Symfony Community",
  425. "homepage": "https://symfony.com/contributors"
  426. },
  427. {
  428. "name": "Doctrine Project",
  429. "homepage": "https://www.doctrine-project.org/"
  430. }
  431. ],
  432. "description": "Symfony DoctrineBundle",
  433. "homepage": "https://www.doctrine-project.org",
  434. "keywords": [
  435. "database",
  436. "dbal",
  437. "orm",
  438. "persistence"
  439. ],
  440. "support": {
  441. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  442. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.15.0"
  443. },
  444. "funding": [
  445. {
  446. "url": "https://www.doctrine-project.org/sponsorship.html",
  447. "type": "custom"
  448. },
  449. {
  450. "url": "https://www.patreon.com/phpdoctrine",
  451. "type": "patreon"
  452. },
  453. {
  454. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  455. "type": "tidelift"
  456. }
  457. ],
  458. "time": "2025-06-16T19:53:58+00:00"
  459. },
  460. {
  461. "name": "doctrine/doctrine-migrations-bundle",
  462. "version": "3.4.2",
  463. "source": {
  464. "type": "git",
  465. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  466. "reference": "5a6ac7120c2924c4c070a869d08b11ccf9e277b9"
  467. },
  468. "dist": {
  469. "type": "zip",
  470. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/5a6ac7120c2924c4c070a869d08b11ccf9e277b9",
  471. "reference": "5a6ac7120c2924c4c070a869d08b11ccf9e277b9",
  472. "shasum": ""
  473. },
  474. "require": {
  475. "doctrine/doctrine-bundle": "^2.4",
  476. "doctrine/migrations": "^3.2",
  477. "php": "^7.2 || ^8.0",
  478. "symfony/deprecation-contracts": "^2.1 || ^3",
  479. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  480. },
  481. "require-dev": {
  482. "composer/semver": "^3.0",
  483. "doctrine/coding-standard": "^12",
  484. "doctrine/orm": "^2.6 || ^3",
  485. "phpstan/phpstan": "^1.4 || ^2",
  486. "phpstan/phpstan-deprecation-rules": "^1 || ^2",
  487. "phpstan/phpstan-phpunit": "^1 || ^2",
  488. "phpstan/phpstan-strict-rules": "^1.1 || ^2",
  489. "phpstan/phpstan-symfony": "^1.3 || ^2",
  490. "phpunit/phpunit": "^8.5 || ^9.5",
  491. "symfony/phpunit-bridge": "^6.3 || ^7",
  492. "symfony/var-exporter": "^5.4 || ^6 || ^7"
  493. },
  494. "type": "symfony-bundle",
  495. "autoload": {
  496. "psr-4": {
  497. "Doctrine\\Bundle\\MigrationsBundle\\": "src"
  498. }
  499. },
  500. "notification-url": "https://packagist.org/downloads/",
  501. "license": [
  502. "MIT"
  503. ],
  504. "authors": [
  505. {
  506. "name": "Fabien Potencier",
  507. "email": "fabien@symfony.com"
  508. },
  509. {
  510. "name": "Doctrine Project",
  511. "homepage": "https://www.doctrine-project.org"
  512. },
  513. {
  514. "name": "Symfony Community",
  515. "homepage": "https://symfony.com/contributors"
  516. }
  517. ],
  518. "description": "Symfony DoctrineMigrationsBundle",
  519. "homepage": "https://www.doctrine-project.org",
  520. "keywords": [
  521. "dbal",
  522. "migrations",
  523. "schema"
  524. ],
  525. "support": {
  526. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  527. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.4.2"
  528. },
  529. "funding": [
  530. {
  531. "url": "https://www.doctrine-project.org/sponsorship.html",
  532. "type": "custom"
  533. },
  534. {
  535. "url": "https://www.patreon.com/phpdoctrine",
  536. "type": "patreon"
  537. },
  538. {
  539. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  540. "type": "tidelift"
  541. }
  542. ],
  543. "time": "2025-03-11T17:36:26+00:00"
  544. },
  545. {
  546. "name": "doctrine/event-manager",
  547. "version": "2.0.1",
  548. "source": {
  549. "type": "git",
  550. "url": "https://github.com/doctrine/event-manager.git",
  551. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  552. },
  553. "dist": {
  554. "type": "zip",
  555. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  556. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  557. "shasum": ""
  558. },
  559. "require": {
  560. "php": "^8.1"
  561. },
  562. "conflict": {
  563. "doctrine/common": "<2.9"
  564. },
  565. "require-dev": {
  566. "doctrine/coding-standard": "^12",
  567. "phpstan/phpstan": "^1.8.8",
  568. "phpunit/phpunit": "^10.5",
  569. "vimeo/psalm": "^5.24"
  570. },
  571. "type": "library",
  572. "autoload": {
  573. "psr-4": {
  574. "Doctrine\\Common\\": "src"
  575. }
  576. },
  577. "notification-url": "https://packagist.org/downloads/",
  578. "license": [
  579. "MIT"
  580. ],
  581. "authors": [
  582. {
  583. "name": "Guilherme Blanco",
  584. "email": "guilhermeblanco@gmail.com"
  585. },
  586. {
  587. "name": "Roman Borschel",
  588. "email": "roman@code-factory.org"
  589. },
  590. {
  591. "name": "Benjamin Eberlei",
  592. "email": "kontakt@beberlei.de"
  593. },
  594. {
  595. "name": "Jonathan Wage",
  596. "email": "jonwage@gmail.com"
  597. },
  598. {
  599. "name": "Johannes Schmitt",
  600. "email": "schmittjoh@gmail.com"
  601. },
  602. {
  603. "name": "Marco Pivetta",
  604. "email": "ocramius@gmail.com"
  605. }
  606. ],
  607. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  608. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  609. "keywords": [
  610. "event",
  611. "event dispatcher",
  612. "event manager",
  613. "event system",
  614. "events"
  615. ],
  616. "support": {
  617. "issues": "https://github.com/doctrine/event-manager/issues",
  618. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  619. },
  620. "funding": [
  621. {
  622. "url": "https://www.doctrine-project.org/sponsorship.html",
  623. "type": "custom"
  624. },
  625. {
  626. "url": "https://www.patreon.com/phpdoctrine",
  627. "type": "patreon"
  628. },
  629. {
  630. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  631. "type": "tidelift"
  632. }
  633. ],
  634. "time": "2024-05-22T20:47:39+00:00"
  635. },
  636. {
  637. "name": "doctrine/inflector",
  638. "version": "2.0.10",
  639. "source": {
  640. "type": "git",
  641. "url": "https://github.com/doctrine/inflector.git",
  642. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  643. },
  644. "dist": {
  645. "type": "zip",
  646. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  647. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  648. "shasum": ""
  649. },
  650. "require": {
  651. "php": "^7.2 || ^8.0"
  652. },
  653. "require-dev": {
  654. "doctrine/coding-standard": "^11.0",
  655. "phpstan/phpstan": "^1.8",
  656. "phpstan/phpstan-phpunit": "^1.1",
  657. "phpstan/phpstan-strict-rules": "^1.3",
  658. "phpunit/phpunit": "^8.5 || ^9.5",
  659. "vimeo/psalm": "^4.25 || ^5.4"
  660. },
  661. "type": "library",
  662. "autoload": {
  663. "psr-4": {
  664. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  665. }
  666. },
  667. "notification-url": "https://packagist.org/downloads/",
  668. "license": [
  669. "MIT"
  670. ],
  671. "authors": [
  672. {
  673. "name": "Guilherme Blanco",
  674. "email": "guilhermeblanco@gmail.com"
  675. },
  676. {
  677. "name": "Roman Borschel",
  678. "email": "roman@code-factory.org"
  679. },
  680. {
  681. "name": "Benjamin Eberlei",
  682. "email": "kontakt@beberlei.de"
  683. },
  684. {
  685. "name": "Jonathan Wage",
  686. "email": "jonwage@gmail.com"
  687. },
  688. {
  689. "name": "Johannes Schmitt",
  690. "email": "schmittjoh@gmail.com"
  691. }
  692. ],
  693. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  694. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  695. "keywords": [
  696. "inflection",
  697. "inflector",
  698. "lowercase",
  699. "manipulation",
  700. "php",
  701. "plural",
  702. "singular",
  703. "strings",
  704. "uppercase",
  705. "words"
  706. ],
  707. "support": {
  708. "issues": "https://github.com/doctrine/inflector/issues",
  709. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  710. },
  711. "funding": [
  712. {
  713. "url": "https://www.doctrine-project.org/sponsorship.html",
  714. "type": "custom"
  715. },
  716. {
  717. "url": "https://www.patreon.com/phpdoctrine",
  718. "type": "patreon"
  719. },
  720. {
  721. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  722. "type": "tidelift"
  723. }
  724. ],
  725. "time": "2024-02-18T20:23:39+00:00"
  726. },
  727. {
  728. "name": "doctrine/instantiator",
  729. "version": "2.0.0",
  730. "source": {
  731. "type": "git",
  732. "url": "https://github.com/doctrine/instantiator.git",
  733. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  734. },
  735. "dist": {
  736. "type": "zip",
  737. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  738. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  739. "shasum": ""
  740. },
  741. "require": {
  742. "php": "^8.1"
  743. },
  744. "require-dev": {
  745. "doctrine/coding-standard": "^11",
  746. "ext-pdo": "*",
  747. "ext-phar": "*",
  748. "phpbench/phpbench": "^1.2",
  749. "phpstan/phpstan": "^1.9.4",
  750. "phpstan/phpstan-phpunit": "^1.3",
  751. "phpunit/phpunit": "^9.5.27",
  752. "vimeo/psalm": "^5.4"
  753. },
  754. "type": "library",
  755. "autoload": {
  756. "psr-4": {
  757. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  758. }
  759. },
  760. "notification-url": "https://packagist.org/downloads/",
  761. "license": [
  762. "MIT"
  763. ],
  764. "authors": [
  765. {
  766. "name": "Marco Pivetta",
  767. "email": "ocramius@gmail.com",
  768. "homepage": "https://ocramius.github.io/"
  769. }
  770. ],
  771. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  772. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  773. "keywords": [
  774. "constructor",
  775. "instantiate"
  776. ],
  777. "support": {
  778. "issues": "https://github.com/doctrine/instantiator/issues",
  779. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  780. },
  781. "funding": [
  782. {
  783. "url": "https://www.doctrine-project.org/sponsorship.html",
  784. "type": "custom"
  785. },
  786. {
  787. "url": "https://www.patreon.com/phpdoctrine",
  788. "type": "patreon"
  789. },
  790. {
  791. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  792. "type": "tidelift"
  793. }
  794. ],
  795. "time": "2022-12-30T00:23:10+00:00"
  796. },
  797. {
  798. "name": "doctrine/lexer",
  799. "version": "3.0.1",
  800. "source": {
  801. "type": "git",
  802. "url": "https://github.com/doctrine/lexer.git",
  803. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  804. },
  805. "dist": {
  806. "type": "zip",
  807. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  808. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  809. "shasum": ""
  810. },
  811. "require": {
  812. "php": "^8.1"
  813. },
  814. "require-dev": {
  815. "doctrine/coding-standard": "^12",
  816. "phpstan/phpstan": "^1.10",
  817. "phpunit/phpunit": "^10.5",
  818. "psalm/plugin-phpunit": "^0.18.3",
  819. "vimeo/psalm": "^5.21"
  820. },
  821. "type": "library",
  822. "autoload": {
  823. "psr-4": {
  824. "Doctrine\\Common\\Lexer\\": "src"
  825. }
  826. },
  827. "notification-url": "https://packagist.org/downloads/",
  828. "license": [
  829. "MIT"
  830. ],
  831. "authors": [
  832. {
  833. "name": "Guilherme Blanco",
  834. "email": "guilhermeblanco@gmail.com"
  835. },
  836. {
  837. "name": "Roman Borschel",
  838. "email": "roman@code-factory.org"
  839. },
  840. {
  841. "name": "Johannes Schmitt",
  842. "email": "schmittjoh@gmail.com"
  843. }
  844. ],
  845. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  846. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  847. "keywords": [
  848. "annotations",
  849. "docblock",
  850. "lexer",
  851. "parser",
  852. "php"
  853. ],
  854. "support": {
  855. "issues": "https://github.com/doctrine/lexer/issues",
  856. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  857. },
  858. "funding": [
  859. {
  860. "url": "https://www.doctrine-project.org/sponsorship.html",
  861. "type": "custom"
  862. },
  863. {
  864. "url": "https://www.patreon.com/phpdoctrine",
  865. "type": "patreon"
  866. },
  867. {
  868. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  869. "type": "tidelift"
  870. }
  871. ],
  872. "time": "2024-02-05T11:56:58+00:00"
  873. },
  874. {
  875. "name": "doctrine/migrations",
  876. "version": "3.9.1",
  877. "source": {
  878. "type": "git",
  879. "url": "https://github.com/doctrine/migrations.git",
  880. "reference": "0f1e0c960ac29866d648a4f50142a74fe1cb6999"
  881. },
  882. "dist": {
  883. "type": "zip",
  884. "url": "https://api.github.com/repos/doctrine/migrations/zipball/0f1e0c960ac29866d648a4f50142a74fe1cb6999",
  885. "reference": "0f1e0c960ac29866d648a4f50142a74fe1cb6999",
  886. "shasum": ""
  887. },
  888. "require": {
  889. "composer-runtime-api": "^2",
  890. "doctrine/dbal": "^3.6 || ^4",
  891. "doctrine/deprecations": "^0.5.3 || ^1",
  892. "doctrine/event-manager": "^1.2 || ^2.0",
  893. "php": "^8.1",
  894. "psr/log": "^1.1.3 || ^2 || ^3",
  895. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  896. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  897. "symfony/var-exporter": "^6.2 || ^7.0"
  898. },
  899. "conflict": {
  900. "doctrine/orm": "<2.12 || >=4"
  901. },
  902. "require-dev": {
  903. "doctrine/coding-standard": "^12",
  904. "doctrine/orm": "^2.13 || ^3",
  905. "doctrine/persistence": "^2 || ^3 || ^4",
  906. "doctrine/sql-formatter": "^1.0",
  907. "ext-pdo_sqlite": "*",
  908. "fig/log-test": "^1",
  909. "phpstan/phpstan": "^1.10",
  910. "phpstan/phpstan-deprecation-rules": "^1.1",
  911. "phpstan/phpstan-phpunit": "^1.3",
  912. "phpstan/phpstan-strict-rules": "^1.4",
  913. "phpstan/phpstan-symfony": "^1.3",
  914. "phpunit/phpunit": "^10.3",
  915. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  916. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  917. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  918. },
  919. "suggest": {
  920. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  921. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  922. },
  923. "bin": [
  924. "bin/doctrine-migrations"
  925. ],
  926. "type": "library",
  927. "autoload": {
  928. "psr-4": {
  929. "Doctrine\\Migrations\\": "src"
  930. }
  931. },
  932. "notification-url": "https://packagist.org/downloads/",
  933. "license": [
  934. "MIT"
  935. ],
  936. "authors": [
  937. {
  938. "name": "Benjamin Eberlei",
  939. "email": "kontakt@beberlei.de"
  940. },
  941. {
  942. "name": "Jonathan Wage",
  943. "email": "jonwage@gmail.com"
  944. },
  945. {
  946. "name": "Michael Simonson",
  947. "email": "contact@mikesimonson.com"
  948. }
  949. ],
  950. "description": "PHP Doctrine Migrations project offer additional functionality on top of the database abstraction layer (DBAL) for versioning your database schema and easily deploying changes to it. It is a very easy to use and a powerful tool.",
  951. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  952. "keywords": [
  953. "database",
  954. "dbal",
  955. "migrations"
  956. ],
  957. "support": {
  958. "issues": "https://github.com/doctrine/migrations/issues",
  959. "source": "https://github.com/doctrine/migrations/tree/3.9.1"
  960. },
  961. "funding": [
  962. {
  963. "url": "https://www.doctrine-project.org/sponsorship.html",
  964. "type": "custom"
  965. },
  966. {
  967. "url": "https://www.patreon.com/phpdoctrine",
  968. "type": "patreon"
  969. },
  970. {
  971. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  972. "type": "tidelift"
  973. }
  974. ],
  975. "time": "2025-06-27T07:19:23+00:00"
  976. },
  977. {
  978. "name": "doctrine/orm",
  979. "version": "3.5.0",
  980. "source": {
  981. "type": "git",
  982. "url": "https://github.com/doctrine/orm.git",
  983. "reference": "6deec3655ba3e8f15280aac11e264225854d2369"
  984. },
  985. "dist": {
  986. "type": "zip",
  987. "url": "https://api.github.com/repos/doctrine/orm/zipball/6deec3655ba3e8f15280aac11e264225854d2369",
  988. "reference": "6deec3655ba3e8f15280aac11e264225854d2369",
  989. "shasum": ""
  990. },
  991. "require": {
  992. "composer-runtime-api": "^2",
  993. "doctrine/collections": "^2.2",
  994. "doctrine/dbal": "^3.8.2 || ^4",
  995. "doctrine/deprecations": "^0.5.3 || ^1",
  996. "doctrine/event-manager": "^1.2 || ^2",
  997. "doctrine/inflector": "^1.4 || ^2.0",
  998. "doctrine/instantiator": "^1.3 || ^2",
  999. "doctrine/lexer": "^3",
  1000. "doctrine/persistence": "^3.3.1 || ^4",
  1001. "ext-ctype": "*",
  1002. "php": "^8.1",
  1003. "psr/cache": "^1 || ^2 || ^3",
  1004. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1005. "symfony/var-exporter": "^6.3.9 || ^7.0"
  1006. },
  1007. "require-dev": {
  1008. "doctrine/coding-standard": "^13.0",
  1009. "phpbench/phpbench": "^1.0",
  1010. "phpdocumentor/guides-cli": "^1.4",
  1011. "phpstan/extension-installer": "^1.4",
  1012. "phpstan/phpstan": "2.0.3",
  1013. "phpstan/phpstan-deprecation-rules": "^2",
  1014. "phpunit/phpunit": "^10.4.0",
  1015. "psr/log": "^1 || ^2 || ^3",
  1016. "squizlabs/php_codesniffer": "3.12.0",
  1017. "symfony/cache": "^5.4 || ^6.2 || ^7.0"
  1018. },
  1019. "suggest": {
  1020. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1021. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1022. },
  1023. "type": "library",
  1024. "autoload": {
  1025. "psr-4": {
  1026. "Doctrine\\ORM\\": "src"
  1027. }
  1028. },
  1029. "notification-url": "https://packagist.org/downloads/",
  1030. "license": [
  1031. "MIT"
  1032. ],
  1033. "authors": [
  1034. {
  1035. "name": "Guilherme Blanco",
  1036. "email": "guilhermeblanco@gmail.com"
  1037. },
  1038. {
  1039. "name": "Roman Borschel",
  1040. "email": "roman@code-factory.org"
  1041. },
  1042. {
  1043. "name": "Benjamin Eberlei",
  1044. "email": "kontakt@beberlei.de"
  1045. },
  1046. {
  1047. "name": "Jonathan Wage",
  1048. "email": "jonwage@gmail.com"
  1049. },
  1050. {
  1051. "name": "Marco Pivetta",
  1052. "email": "ocramius@gmail.com"
  1053. }
  1054. ],
  1055. "description": "Object-Relational-Mapper for PHP",
  1056. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1057. "keywords": [
  1058. "database",
  1059. "orm"
  1060. ],
  1061. "support": {
  1062. "issues": "https://github.com/doctrine/orm/issues",
  1063. "source": "https://github.com/doctrine/orm/tree/3.5.0"
  1064. },
  1065. "time": "2025-07-01T17:40:53+00:00"
  1066. },
  1067. {
  1068. "name": "doctrine/persistence",
  1069. "version": "4.0.0",
  1070. "source": {
  1071. "type": "git",
  1072. "url": "https://github.com/doctrine/persistence.git",
  1073. "reference": "45004aca79189474f113cbe3a53847c2115a55fa"
  1074. },
  1075. "dist": {
  1076. "type": "zip",
  1077. "url": "https://api.github.com/repos/doctrine/persistence/zipball/45004aca79189474f113cbe3a53847c2115a55fa",
  1078. "reference": "45004aca79189474f113cbe3a53847c2115a55fa",
  1079. "shasum": ""
  1080. },
  1081. "require": {
  1082. "doctrine/event-manager": "^1 || ^2",
  1083. "php": "^8.1",
  1084. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1085. },
  1086. "conflict": {
  1087. "doctrine/common": "<2.10"
  1088. },
  1089. "require-dev": {
  1090. "doctrine/coding-standard": "^12",
  1091. "phpstan/phpstan": "1.12.7",
  1092. "phpstan/phpstan-phpunit": "^1",
  1093. "phpstan/phpstan-strict-rules": "^1.1",
  1094. "phpunit/phpunit": "^9.6",
  1095. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1096. },
  1097. "type": "library",
  1098. "autoload": {
  1099. "psr-4": {
  1100. "Doctrine\\Persistence\\": "src/Persistence"
  1101. }
  1102. },
  1103. "notification-url": "https://packagist.org/downloads/",
  1104. "license": [
  1105. "MIT"
  1106. ],
  1107. "authors": [
  1108. {
  1109. "name": "Guilherme Blanco",
  1110. "email": "guilhermeblanco@gmail.com"
  1111. },
  1112. {
  1113. "name": "Roman Borschel",
  1114. "email": "roman@code-factory.org"
  1115. },
  1116. {
  1117. "name": "Benjamin Eberlei",
  1118. "email": "kontakt@beberlei.de"
  1119. },
  1120. {
  1121. "name": "Jonathan Wage",
  1122. "email": "jonwage@gmail.com"
  1123. },
  1124. {
  1125. "name": "Johannes Schmitt",
  1126. "email": "schmittjoh@gmail.com"
  1127. },
  1128. {
  1129. "name": "Marco Pivetta",
  1130. "email": "ocramius@gmail.com"
  1131. }
  1132. ],
  1133. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1134. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1135. "keywords": [
  1136. "mapper",
  1137. "object",
  1138. "odm",
  1139. "orm",
  1140. "persistence"
  1141. ],
  1142. "support": {
  1143. "issues": "https://github.com/doctrine/persistence/issues",
  1144. "source": "https://github.com/doctrine/persistence/tree/4.0.0"
  1145. },
  1146. "funding": [
  1147. {
  1148. "url": "https://www.doctrine-project.org/sponsorship.html",
  1149. "type": "custom"
  1150. },
  1151. {
  1152. "url": "https://www.patreon.com/phpdoctrine",
  1153. "type": "patreon"
  1154. },
  1155. {
  1156. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1157. "type": "tidelift"
  1158. }
  1159. ],
  1160. "time": "2024-11-01T21:49:07+00:00"
  1161. },
  1162. {
  1163. "name": "doctrine/sql-formatter",
  1164. "version": "1.5.2",
  1165. "source": {
  1166. "type": "git",
  1167. "url": "https://github.com/doctrine/sql-formatter.git",
  1168. "reference": "d6d00aba6fd2957fe5216fe2b7673e9985db20c8"
  1169. },
  1170. "dist": {
  1171. "type": "zip",
  1172. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/d6d00aba6fd2957fe5216fe2b7673e9985db20c8",
  1173. "reference": "d6d00aba6fd2957fe5216fe2b7673e9985db20c8",
  1174. "shasum": ""
  1175. },
  1176. "require": {
  1177. "php": "^8.1"
  1178. },
  1179. "require-dev": {
  1180. "doctrine/coding-standard": "^12",
  1181. "ergebnis/phpunit-slow-test-detector": "^2.14",
  1182. "phpstan/phpstan": "^1.10",
  1183. "phpunit/phpunit": "^10.5"
  1184. },
  1185. "bin": [
  1186. "bin/sql-formatter"
  1187. ],
  1188. "type": "library",
  1189. "autoload": {
  1190. "psr-4": {
  1191. "Doctrine\\SqlFormatter\\": "src"
  1192. }
  1193. },
  1194. "notification-url": "https://packagist.org/downloads/",
  1195. "license": [
  1196. "MIT"
  1197. ],
  1198. "authors": [
  1199. {
  1200. "name": "Jeremy Dorn",
  1201. "email": "jeremy@jeremydorn.com",
  1202. "homepage": "https://jeremydorn.com/"
  1203. }
  1204. ],
  1205. "description": "a PHP SQL highlighting library",
  1206. "homepage": "https://github.com/doctrine/sql-formatter/",
  1207. "keywords": [
  1208. "highlight",
  1209. "sql"
  1210. ],
  1211. "support": {
  1212. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1213. "source": "https://github.com/doctrine/sql-formatter/tree/1.5.2"
  1214. },
  1215. "time": "2025-01-24T11:45:48+00:00"
  1216. },
  1217. {
  1218. "name": "egulias/email-validator",
  1219. "version": "4.0.4",
  1220. "source": {
  1221. "type": "git",
  1222. "url": "https://github.com/egulias/EmailValidator.git",
  1223. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  1224. },
  1225. "dist": {
  1226. "type": "zip",
  1227. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1228. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1229. "shasum": ""
  1230. },
  1231. "require": {
  1232. "doctrine/lexer": "^2.0 || ^3.0",
  1233. "php": ">=8.1",
  1234. "symfony/polyfill-intl-idn": "^1.26"
  1235. },
  1236. "require-dev": {
  1237. "phpunit/phpunit": "^10.2",
  1238. "vimeo/psalm": "^5.12"
  1239. },
  1240. "suggest": {
  1241. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1242. },
  1243. "type": "library",
  1244. "extra": {
  1245. "branch-alias": {
  1246. "dev-master": "4.0.x-dev"
  1247. }
  1248. },
  1249. "autoload": {
  1250. "psr-4": {
  1251. "Egulias\\EmailValidator\\": "src"
  1252. }
  1253. },
  1254. "notification-url": "https://packagist.org/downloads/",
  1255. "license": [
  1256. "MIT"
  1257. ],
  1258. "authors": [
  1259. {
  1260. "name": "Eduardo Gulias Davis"
  1261. }
  1262. ],
  1263. "description": "A library for validating emails against several RFCs",
  1264. "homepage": "https://github.com/egulias/EmailValidator",
  1265. "keywords": [
  1266. "email",
  1267. "emailvalidation",
  1268. "emailvalidator",
  1269. "validation",
  1270. "validator"
  1271. ],
  1272. "support": {
  1273. "issues": "https://github.com/egulias/EmailValidator/issues",
  1274. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  1275. },
  1276. "funding": [
  1277. {
  1278. "url": "https://github.com/egulias",
  1279. "type": "github"
  1280. }
  1281. ],
  1282. "time": "2025-03-06T22:45:56+00:00"
  1283. },
  1284. {
  1285. "name": "giggsey/libphonenumber-for-php",
  1286. "version": "9.0.10",
  1287. "source": {
  1288. "type": "git",
  1289. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  1290. "reference": "727af7896f37194f7417def96b2140481668a28c"
  1291. },
  1292. "dist": {
  1293. "type": "zip",
  1294. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/727af7896f37194f7417def96b2140481668a28c",
  1295. "reference": "727af7896f37194f7417def96b2140481668a28c",
  1296. "shasum": ""
  1297. },
  1298. "require": {
  1299. "giggsey/locale": "^2.7",
  1300. "php": "^8.1",
  1301. "symfony/polyfill-mbstring": "^1.31"
  1302. },
  1303. "replace": {
  1304. "giggsey/libphonenumber-for-php-lite": "self.version"
  1305. },
  1306. "require-dev": {
  1307. "ext-dom": "*",
  1308. "friendsofphp/php-cs-fixer": "^3.71",
  1309. "infection/infection": "^0.28.0",
  1310. "nette/php-generator": "^4.1",
  1311. "php-coveralls/php-coveralls": "^2.7",
  1312. "phpstan/extension-installer": "^1.4.3",
  1313. "phpstan/phpstan": "^2.1.7",
  1314. "phpstan/phpstan-deprecation-rules": "^2.0.1",
  1315. "phpstan/phpstan-phpunit": "^2.0.4",
  1316. "phpstan/phpstan-strict-rules": "^2.0.3",
  1317. "phpunit/phpunit": "^10.5.45",
  1318. "symfony/console": "^6.4",
  1319. "symfony/filesystem": "^6.4",
  1320. "symfony/process": "^6.4"
  1321. },
  1322. "type": "library",
  1323. "extra": {
  1324. "branch-alias": {
  1325. "dev-master": "9.x-dev"
  1326. }
  1327. },
  1328. "autoload": {
  1329. "psr-4": {
  1330. "libphonenumber\\": "src/"
  1331. }
  1332. },
  1333. "notification-url": "https://packagist.org/downloads/",
  1334. "license": [
  1335. "Apache-2.0"
  1336. ],
  1337. "authors": [
  1338. {
  1339. "name": "Joshua Gigg",
  1340. "email": "giggsey@gmail.com",
  1341. "homepage": "https://giggsey.com/"
  1342. }
  1343. ],
  1344. "description": "A library for parsing, formatting, storing and validating international phone numbers, a PHP Port of Google's libphonenumber.",
  1345. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  1346. "keywords": [
  1347. "geocoding",
  1348. "geolocation",
  1349. "libphonenumber",
  1350. "mobile",
  1351. "phonenumber",
  1352. "validation"
  1353. ],
  1354. "support": {
  1355. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
  1356. "source": "https://github.com/giggsey/libphonenumber-for-php"
  1357. },
  1358. "time": "2025-07-18T06:47:04+00:00"
  1359. },
  1360. {
  1361. "name": "giggsey/locale",
  1362. "version": "2.8.0",
  1363. "source": {
  1364. "type": "git",
  1365. "url": "https://github.com/giggsey/Locale.git",
  1366. "reference": "1cd8b3ad2d43e04f4c2c6a240495af44780f809b"
  1367. },
  1368. "dist": {
  1369. "type": "zip",
  1370. "url": "https://api.github.com/repos/giggsey/Locale/zipball/1cd8b3ad2d43e04f4c2c6a240495af44780f809b",
  1371. "reference": "1cd8b3ad2d43e04f4c2c6a240495af44780f809b",
  1372. "shasum": ""
  1373. },
  1374. "require": {
  1375. "php": "^8.1"
  1376. },
  1377. "require-dev": {
  1378. "ext-json": "*",
  1379. "friendsofphp/php-cs-fixer": "^3.66",
  1380. "pear/pear-core-minimal": "^1.10",
  1381. "pear/pear_exception": "^1.0",
  1382. "pear/versioncontrol_git": "^0.5",
  1383. "phing/phing": "^2.17.4",
  1384. "php-coveralls/php-coveralls": "^2.7",
  1385. "phpunit/phpunit": "^10.5.45",
  1386. "symfony/console": "^6.4",
  1387. "symfony/filesystem": "6.4",
  1388. "symfony/finder": "^6.4",
  1389. "symfony/process": "^6.4",
  1390. "symfony/var-exporter": "^6.4"
  1391. },
  1392. "type": "library",
  1393. "autoload": {
  1394. "psr-4": {
  1395. "Giggsey\\Locale\\": "src/"
  1396. }
  1397. },
  1398. "notification-url": "https://packagist.org/downloads/",
  1399. "license": [
  1400. "MIT"
  1401. ],
  1402. "authors": [
  1403. {
  1404. "name": "Joshua Gigg",
  1405. "email": "giggsey@gmail.com",
  1406. "homepage": "https://giggsey.com/"
  1407. }
  1408. ],
  1409. "description": "Locale functions required by libphonenumber-for-php",
  1410. "support": {
  1411. "issues": "https://github.com/giggsey/Locale/issues",
  1412. "source": "https://github.com/giggsey/Locale/tree/2.8.0"
  1413. },
  1414. "time": "2025-03-20T14:25:27+00:00"
  1415. },
  1416. {
  1417. "name": "monolog/monolog",
  1418. "version": "3.9.0",
  1419. "source": {
  1420. "type": "git",
  1421. "url": "https://github.com/Seldaek/monolog.git",
  1422. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  1423. },
  1424. "dist": {
  1425. "type": "zip",
  1426. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  1427. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  1428. "shasum": ""
  1429. },
  1430. "require": {
  1431. "php": ">=8.1",
  1432. "psr/log": "^2.0 || ^3.0"
  1433. },
  1434. "provide": {
  1435. "psr/log-implementation": "3.0.0"
  1436. },
  1437. "require-dev": {
  1438. "aws/aws-sdk-php": "^3.0",
  1439. "doctrine/couchdb": "~1.0@dev",
  1440. "elasticsearch/elasticsearch": "^7 || ^8",
  1441. "ext-json": "*",
  1442. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  1443. "guzzlehttp/guzzle": "^7.4.5",
  1444. "guzzlehttp/psr7": "^2.2",
  1445. "mongodb/mongodb": "^1.8",
  1446. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1447. "php-console/php-console": "^3.1.8",
  1448. "phpstan/phpstan": "^2",
  1449. "phpstan/phpstan-deprecation-rules": "^2",
  1450. "phpstan/phpstan-strict-rules": "^2",
  1451. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  1452. "predis/predis": "^1.1 || ^2",
  1453. "rollbar/rollbar": "^4.0",
  1454. "ruflin/elastica": "^7 || ^8",
  1455. "symfony/mailer": "^5.4 || ^6",
  1456. "symfony/mime": "^5.4 || ^6"
  1457. },
  1458. "suggest": {
  1459. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1460. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1461. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1462. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1463. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1464. "ext-mbstring": "Allow to work properly with unicode symbols",
  1465. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1466. "ext-openssl": "Required to send log messages using SSL",
  1467. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1468. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1469. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1470. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1471. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1472. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1473. },
  1474. "type": "library",
  1475. "extra": {
  1476. "branch-alias": {
  1477. "dev-main": "3.x-dev"
  1478. }
  1479. },
  1480. "autoload": {
  1481. "psr-4": {
  1482. "Monolog\\": "src/Monolog"
  1483. }
  1484. },
  1485. "notification-url": "https://packagist.org/downloads/",
  1486. "license": [
  1487. "MIT"
  1488. ],
  1489. "authors": [
  1490. {
  1491. "name": "Jordi Boggiano",
  1492. "email": "j.boggiano@seld.be",
  1493. "homepage": "https://seld.be"
  1494. }
  1495. ],
  1496. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1497. "homepage": "https://github.com/Seldaek/monolog",
  1498. "keywords": [
  1499. "log",
  1500. "logging",
  1501. "psr-3"
  1502. ],
  1503. "support": {
  1504. "issues": "https://github.com/Seldaek/monolog/issues",
  1505. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  1506. },
  1507. "funding": [
  1508. {
  1509. "url": "https://github.com/Seldaek",
  1510. "type": "github"
  1511. },
  1512. {
  1513. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1514. "type": "tidelift"
  1515. }
  1516. ],
  1517. "time": "2025-03-24T10:02:05+00:00"
  1518. },
  1519. {
  1520. "name": "odolbeau/phone-number-bundle",
  1521. "version": "v4.2.0",
  1522. "source": {
  1523. "type": "git",
  1524. "url": "https://github.com/odolbeau/phone-number-bundle.git",
  1525. "reference": "0952c8d10a245d2e6d13263c97715679654cd7e4"
  1526. },
  1527. "dist": {
  1528. "type": "zip",
  1529. "url": "https://api.github.com/repos/odolbeau/phone-number-bundle/zipball/0952c8d10a245d2e6d13263c97715679654cd7e4",
  1530. "reference": "0952c8d10a245d2e6d13263c97715679654cd7e4",
  1531. "shasum": ""
  1532. },
  1533. "require": {
  1534. "giggsey/libphonenumber-for-php": "^9.0.2",
  1535. "php": ">=8.1",
  1536. "symfony/config": "^6.4 || ^7.2",
  1537. "symfony/deprecation-contracts": "^2.5|^3",
  1538. "symfony/framework-bundle": "^6.4 || ^7.2",
  1539. "symfony/intl": "^6.4 || ^7.2",
  1540. "symfony/polyfill-mbstring": "^1.28"
  1541. },
  1542. "replace": {
  1543. "misd/phone-number-bundle": "self.version"
  1544. },
  1545. "require-dev": {
  1546. "doctrine/doctrine-bundle": "^1.12|^2.0",
  1547. "phpspec/prophecy": "^1.20",
  1548. "phpspec/prophecy-phpunit": "^2.3",
  1549. "phpunit/phpunit": "^9.6.11",
  1550. "symfony/form": "^6.4 || ^7.2",
  1551. "symfony/phpunit-bridge": "^7.2",
  1552. "symfony/property-access": "^6.4 || ^7.2",
  1553. "symfony/serializer": "^6.4 || ^7.2",
  1554. "symfony/twig-bundle": "^6.4 || ^7.2",
  1555. "symfony/validator": "^6.4 || ^7.2"
  1556. },
  1557. "suggest": {
  1558. "doctrine/doctrine-bundle": "Add a DBAL mapping type",
  1559. "symfony/form": "Add a data transformer",
  1560. "symfony/property-access": "Choose a path in the validation constraint",
  1561. "symfony/serializer": "Serialize/deserialize phone numbers using Symfony library",
  1562. "symfony/twig-bundle": "Format phone numbers in Twig templates",
  1563. "symfony/validator": "Add a validation constraint"
  1564. },
  1565. "type": "symfony-bundle",
  1566. "extra": {
  1567. "branch-alias": {
  1568. "dev-master": "3.10.x-dev"
  1569. }
  1570. },
  1571. "autoload": {
  1572. "psr-4": {
  1573. "Misd\\PhoneNumberBundle\\": "src/"
  1574. }
  1575. },
  1576. "notification-url": "https://packagist.org/downloads/",
  1577. "license": [
  1578. "MIT"
  1579. ],
  1580. "description": "Integrates libphonenumber into your Symfony application",
  1581. "homepage": "https://github.com/odolbeau/phone-number-bundle",
  1582. "keywords": [
  1583. "bundle",
  1584. "libphonenumber",
  1585. "phone-number",
  1586. "phonenumber",
  1587. "telephone number"
  1588. ],
  1589. "support": {
  1590. "issues": "https://github.com/odolbeau/phone-number-bundle/issues",
  1591. "source": "https://github.com/odolbeau/phone-number-bundle/tree/v4.2.0"
  1592. },
  1593. "time": "2025-07-15T20:50:09+00:00"
  1594. },
  1595. {
  1596. "name": "omines/datatables-bundle",
  1597. "version": "0.10.2",
  1598. "source": {
  1599. "type": "git",
  1600. "url": "https://github.com/omines/datatables-bundle.git",
  1601. "reference": "9c5138697281d22a8c354d706e27ee09fc94ee11"
  1602. },
  1603. "dist": {
  1604. "type": "zip",
  1605. "url": "https://api.github.com/repos/omines/datatables-bundle/zipball/9c5138697281d22a8c354d706e27ee09fc94ee11",
  1606. "reference": "9c5138697281d22a8c354d706e27ee09fc94ee11",
  1607. "shasum": ""
  1608. },
  1609. "require": {
  1610. "php": ">=8.1",
  1611. "symfony/event-dispatcher": "^6.4|^7.1",
  1612. "symfony/framework-bundle": "^6.4|^7.1",
  1613. "symfony/options-resolver": "^6.4|^7.1",
  1614. "symfony/polyfill-mbstring": "^1.31.0",
  1615. "symfony/property-access": "^6.4|^7.1",
  1616. "symfony/translation": "^6.4|^7.1"
  1617. },
  1618. "conflict": {
  1619. "doctrine/orm": "^3.0 <3.3"
  1620. },
  1621. "require-dev": {
  1622. "doctrine/common": "^3.5.0",
  1623. "doctrine/doctrine-bundle": "^2.15.0",
  1624. "doctrine/orm": "^2.19.3|^3.4.1",
  1625. "doctrine/persistence": "^3.4.0|^4.0.0",
  1626. "ext-curl": "*",
  1627. "ext-json": "*",
  1628. "ext-mbstring": "*",
  1629. "ext-mongodb": "*",
  1630. "ext-pdo_sqlite": "*",
  1631. "ext-zip": "*",
  1632. "friendsofphp/php-cs-fixer": "^3.75.0",
  1633. "mongodb/mongodb": "^1.20.0|^2.1.0",
  1634. "ocramius/package-versions": "^2.10",
  1635. "openspout/openspout": "^4.30",
  1636. "phpoffice/phpspreadsheet": "^2.3.3|^3.9.2|^4.4.0",
  1637. "phpstan/extension-installer": "^1.4.3",
  1638. "phpstan/phpstan": "^2.1.17",
  1639. "phpstan/phpstan-doctrine": "^2.0.3",
  1640. "phpstan/phpstan-phpunit": "^2.0.6",
  1641. "phpstan/phpstan-symfony": "^2.0.6",
  1642. "phpunit/phpunit": "^10.5.38|^11.5.24",
  1643. "ruflin/elastica": "^7.3.2",
  1644. "symfony/browser-kit": "^6.4.13|^7.3",
  1645. "symfony/css-selector": "^6.4.13|^7.3",
  1646. "symfony/doctrine-bridge": "^6.4.13|^7.3",
  1647. "symfony/dom-crawler": "^6.4.13|^7.3",
  1648. "symfony/intl": "^6.4.13|^7.3",
  1649. "symfony/mime": "^6.4.13|^7.3",
  1650. "symfony/phpunit-bridge": "^7.3",
  1651. "symfony/twig-bundle": "^6.4|^7.3",
  1652. "symfony/var-dumper": "^6.4.13|^7.3",
  1653. "symfony/yaml": "^6.4.13|^7.3"
  1654. },
  1655. "suggest": {
  1656. "doctrine/doctrine-bundle": "For integrated access to Doctrine object managers",
  1657. "doctrine/orm": "For full automated integration with Doctrine entities",
  1658. "mongodb/mongodb": "For integration with MongoDB collections",
  1659. "openspout/openspout": "To use the OpenSpout Excel exporter",
  1660. "phpoffice/phpspreadsheet": "To export the data from DataTables to Excel",
  1661. "ruflin/elastica": "For integration with Elasticsearch indexes",
  1662. "symfony/twig-bundle": "To use default Twig based rendering and TwigColumn"
  1663. },
  1664. "type": "symfony-bundle",
  1665. "extra": {
  1666. "branch-alias": {
  1667. "dev-master": "0.10-dev"
  1668. }
  1669. },
  1670. "autoload": {
  1671. "psr-4": {
  1672. "Omines\\DataTablesBundle\\": "src/"
  1673. }
  1674. },
  1675. "notification-url": "https://packagist.org/downloads/",
  1676. "license": [
  1677. "MIT"
  1678. ],
  1679. "authors": [
  1680. {
  1681. "name": "Robbert Beesems",
  1682. "email": "robbert.beesems@omines.com",
  1683. "homepage": "https://www.omines.nl/"
  1684. },
  1685. {
  1686. "name": "Niels Keurentjes",
  1687. "email": "niels.keurentjes@omines.com",
  1688. "homepage": "https://www.omines.nl/"
  1689. }
  1690. ],
  1691. "description": "Symfony DataTables Bundle with native Doctrine ORM, Elastica and MongoDB support",
  1692. "keywords": [
  1693. "bundle",
  1694. "datatable",
  1695. "datatables",
  1696. "doctrine",
  1697. "elastica",
  1698. "jquery",
  1699. "mongodb",
  1700. "orm",
  1701. "symfony"
  1702. ],
  1703. "support": {
  1704. "issues": "https://github.com/omines/datatables-bundle/issues",
  1705. "source": "https://github.com/omines/datatables-bundle/tree/0.10.2"
  1706. },
  1707. "funding": [
  1708. {
  1709. "url": "https://github.com/curry684",
  1710. "type": "github"
  1711. }
  1712. ],
  1713. "time": "2025-06-23T13:27:47+00:00"
  1714. },
  1715. {
  1716. "name": "phpdocumentor/reflection-common",
  1717. "version": "2.2.0",
  1718. "source": {
  1719. "type": "git",
  1720. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1721. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  1722. },
  1723. "dist": {
  1724. "type": "zip",
  1725. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1726. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1727. "shasum": ""
  1728. },
  1729. "require": {
  1730. "php": "^7.2 || ^8.0"
  1731. },
  1732. "type": "library",
  1733. "extra": {
  1734. "branch-alias": {
  1735. "dev-2.x": "2.x-dev"
  1736. }
  1737. },
  1738. "autoload": {
  1739. "psr-4": {
  1740. "phpDocumentor\\Reflection\\": "src/"
  1741. }
  1742. },
  1743. "notification-url": "https://packagist.org/downloads/",
  1744. "license": [
  1745. "MIT"
  1746. ],
  1747. "authors": [
  1748. {
  1749. "name": "Jaap van Otterdijk",
  1750. "email": "opensource@ijaap.nl"
  1751. }
  1752. ],
  1753. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1754. "homepage": "http://www.phpdoc.org",
  1755. "keywords": [
  1756. "FQSEN",
  1757. "phpDocumentor",
  1758. "phpdoc",
  1759. "reflection",
  1760. "static analysis"
  1761. ],
  1762. "support": {
  1763. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  1764. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  1765. },
  1766. "time": "2020-06-27T09:03:43+00:00"
  1767. },
  1768. {
  1769. "name": "phpdocumentor/reflection-docblock",
  1770. "version": "5.6.2",
  1771. "source": {
  1772. "type": "git",
  1773. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1774. "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62"
  1775. },
  1776. "dist": {
  1777. "type": "zip",
  1778. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/92dde6a5919e34835c506ac8c523ef095a95ed62",
  1779. "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62",
  1780. "shasum": ""
  1781. },
  1782. "require": {
  1783. "doctrine/deprecations": "^1.1",
  1784. "ext-filter": "*",
  1785. "php": "^7.4 || ^8.0",
  1786. "phpdocumentor/reflection-common": "^2.2",
  1787. "phpdocumentor/type-resolver": "^1.7",
  1788. "phpstan/phpdoc-parser": "^1.7|^2.0",
  1789. "webmozart/assert": "^1.9.1"
  1790. },
  1791. "require-dev": {
  1792. "mockery/mockery": "~1.3.5 || ~1.6.0",
  1793. "phpstan/extension-installer": "^1.1",
  1794. "phpstan/phpstan": "^1.8",
  1795. "phpstan/phpstan-mockery": "^1.1",
  1796. "phpstan/phpstan-webmozart-assert": "^1.2",
  1797. "phpunit/phpunit": "^9.5",
  1798. "psalm/phar": "^5.26"
  1799. },
  1800. "type": "library",
  1801. "extra": {
  1802. "branch-alias": {
  1803. "dev-master": "5.x-dev"
  1804. }
  1805. },
  1806. "autoload": {
  1807. "psr-4": {
  1808. "phpDocumentor\\Reflection\\": "src"
  1809. }
  1810. },
  1811. "notification-url": "https://packagist.org/downloads/",
  1812. "license": [
  1813. "MIT"
  1814. ],
  1815. "authors": [
  1816. {
  1817. "name": "Mike van Riel",
  1818. "email": "me@mikevanriel.com"
  1819. },
  1820. {
  1821. "name": "Jaap van Otterdijk",
  1822. "email": "opensource@ijaap.nl"
  1823. }
  1824. ],
  1825. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1826. "support": {
  1827. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  1828. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.2"
  1829. },
  1830. "time": "2025-04-13T19:20:35+00:00"
  1831. },
  1832. {
  1833. "name": "phpdocumentor/type-resolver",
  1834. "version": "1.10.0",
  1835. "source": {
  1836. "type": "git",
  1837. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1838. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  1839. },
  1840. "dist": {
  1841. "type": "zip",
  1842. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  1843. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  1844. "shasum": ""
  1845. },
  1846. "require": {
  1847. "doctrine/deprecations": "^1.0",
  1848. "php": "^7.3 || ^8.0",
  1849. "phpdocumentor/reflection-common": "^2.0",
  1850. "phpstan/phpdoc-parser": "^1.18|^2.0"
  1851. },
  1852. "require-dev": {
  1853. "ext-tokenizer": "*",
  1854. "phpbench/phpbench": "^1.2",
  1855. "phpstan/extension-installer": "^1.1",
  1856. "phpstan/phpstan": "^1.8",
  1857. "phpstan/phpstan-phpunit": "^1.1",
  1858. "phpunit/phpunit": "^9.5",
  1859. "rector/rector": "^0.13.9",
  1860. "vimeo/psalm": "^4.25"
  1861. },
  1862. "type": "library",
  1863. "extra": {
  1864. "branch-alias": {
  1865. "dev-1.x": "1.x-dev"
  1866. }
  1867. },
  1868. "autoload": {
  1869. "psr-4": {
  1870. "phpDocumentor\\Reflection\\": "src"
  1871. }
  1872. },
  1873. "notification-url": "https://packagist.org/downloads/",
  1874. "license": [
  1875. "MIT"
  1876. ],
  1877. "authors": [
  1878. {
  1879. "name": "Mike van Riel",
  1880. "email": "me@mikevanriel.com"
  1881. }
  1882. ],
  1883. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  1884. "support": {
  1885. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  1886. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  1887. },
  1888. "time": "2024-11-09T15:12:26+00:00"
  1889. },
  1890. {
  1891. "name": "phpstan/phpdoc-parser",
  1892. "version": "2.2.0",
  1893. "source": {
  1894. "type": "git",
  1895. "url": "https://github.com/phpstan/phpdoc-parser.git",
  1896. "reference": "b9e61a61e39e02dd90944e9115241c7f7e76bfd8"
  1897. },
  1898. "dist": {
  1899. "type": "zip",
  1900. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/b9e61a61e39e02dd90944e9115241c7f7e76bfd8",
  1901. "reference": "b9e61a61e39e02dd90944e9115241c7f7e76bfd8",
  1902. "shasum": ""
  1903. },
  1904. "require": {
  1905. "php": "^7.4 || ^8.0"
  1906. },
  1907. "require-dev": {
  1908. "doctrine/annotations": "^2.0",
  1909. "nikic/php-parser": "^5.3.0",
  1910. "php-parallel-lint/php-parallel-lint": "^1.2",
  1911. "phpstan/extension-installer": "^1.0",
  1912. "phpstan/phpstan": "^2.0",
  1913. "phpstan/phpstan-phpunit": "^2.0",
  1914. "phpstan/phpstan-strict-rules": "^2.0",
  1915. "phpunit/phpunit": "^9.6",
  1916. "symfony/process": "^5.2"
  1917. },
  1918. "type": "library",
  1919. "autoload": {
  1920. "psr-4": {
  1921. "PHPStan\\PhpDocParser\\": [
  1922. "src/"
  1923. ]
  1924. }
  1925. },
  1926. "notification-url": "https://packagist.org/downloads/",
  1927. "license": [
  1928. "MIT"
  1929. ],
  1930. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  1931. "support": {
  1932. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  1933. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.2.0"
  1934. },
  1935. "time": "2025-07-13T07:04:09+00:00"
  1936. },
  1937. {
  1938. "name": "psr/cache",
  1939. "version": "3.0.0",
  1940. "source": {
  1941. "type": "git",
  1942. "url": "https://github.com/php-fig/cache.git",
  1943. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  1944. },
  1945. "dist": {
  1946. "type": "zip",
  1947. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1948. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1949. "shasum": ""
  1950. },
  1951. "require": {
  1952. "php": ">=8.0.0"
  1953. },
  1954. "type": "library",
  1955. "extra": {
  1956. "branch-alias": {
  1957. "dev-master": "1.0.x-dev"
  1958. }
  1959. },
  1960. "autoload": {
  1961. "psr-4": {
  1962. "Psr\\Cache\\": "src/"
  1963. }
  1964. },
  1965. "notification-url": "https://packagist.org/downloads/",
  1966. "license": [
  1967. "MIT"
  1968. ],
  1969. "authors": [
  1970. {
  1971. "name": "PHP-FIG",
  1972. "homepage": "https://www.php-fig.org/"
  1973. }
  1974. ],
  1975. "description": "Common interface for caching libraries",
  1976. "keywords": [
  1977. "cache",
  1978. "psr",
  1979. "psr-6"
  1980. ],
  1981. "support": {
  1982. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  1983. },
  1984. "time": "2021-02-03T23:26:27+00:00"
  1985. },
  1986. {
  1987. "name": "psr/clock",
  1988. "version": "1.0.0",
  1989. "source": {
  1990. "type": "git",
  1991. "url": "https://github.com/php-fig/clock.git",
  1992. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  1993. },
  1994. "dist": {
  1995. "type": "zip",
  1996. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1997. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1998. "shasum": ""
  1999. },
  2000. "require": {
  2001. "php": "^7.0 || ^8.0"
  2002. },
  2003. "type": "library",
  2004. "autoload": {
  2005. "psr-4": {
  2006. "Psr\\Clock\\": "src/"
  2007. }
  2008. },
  2009. "notification-url": "https://packagist.org/downloads/",
  2010. "license": [
  2011. "MIT"
  2012. ],
  2013. "authors": [
  2014. {
  2015. "name": "PHP-FIG",
  2016. "homepage": "https://www.php-fig.org/"
  2017. }
  2018. ],
  2019. "description": "Common interface for reading the clock.",
  2020. "homepage": "https://github.com/php-fig/clock",
  2021. "keywords": [
  2022. "clock",
  2023. "now",
  2024. "psr",
  2025. "psr-20",
  2026. "time"
  2027. ],
  2028. "support": {
  2029. "issues": "https://github.com/php-fig/clock/issues",
  2030. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2031. },
  2032. "time": "2022-11-25T14:36:26+00:00"
  2033. },
  2034. {
  2035. "name": "psr/container",
  2036. "version": "2.0.2",
  2037. "source": {
  2038. "type": "git",
  2039. "url": "https://github.com/php-fig/container.git",
  2040. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  2041. },
  2042. "dist": {
  2043. "type": "zip",
  2044. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2045. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  2046. "shasum": ""
  2047. },
  2048. "require": {
  2049. "php": ">=7.4.0"
  2050. },
  2051. "type": "library",
  2052. "extra": {
  2053. "branch-alias": {
  2054. "dev-master": "2.0.x-dev"
  2055. }
  2056. },
  2057. "autoload": {
  2058. "psr-4": {
  2059. "Psr\\Container\\": "src/"
  2060. }
  2061. },
  2062. "notification-url": "https://packagist.org/downloads/",
  2063. "license": [
  2064. "MIT"
  2065. ],
  2066. "authors": [
  2067. {
  2068. "name": "PHP-FIG",
  2069. "homepage": "https://www.php-fig.org/"
  2070. }
  2071. ],
  2072. "description": "Common Container Interface (PHP FIG PSR-11)",
  2073. "homepage": "https://github.com/php-fig/container",
  2074. "keywords": [
  2075. "PSR-11",
  2076. "container",
  2077. "container-interface",
  2078. "container-interop",
  2079. "psr"
  2080. ],
  2081. "support": {
  2082. "issues": "https://github.com/php-fig/container/issues",
  2083. "source": "https://github.com/php-fig/container/tree/2.0.2"
  2084. },
  2085. "time": "2021-11-05T16:47:00+00:00"
  2086. },
  2087. {
  2088. "name": "psr/event-dispatcher",
  2089. "version": "1.0.0",
  2090. "source": {
  2091. "type": "git",
  2092. "url": "https://github.com/php-fig/event-dispatcher.git",
  2093. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  2094. },
  2095. "dist": {
  2096. "type": "zip",
  2097. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2098. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  2099. "shasum": ""
  2100. },
  2101. "require": {
  2102. "php": ">=7.2.0"
  2103. },
  2104. "type": "library",
  2105. "extra": {
  2106. "branch-alias": {
  2107. "dev-master": "1.0.x-dev"
  2108. }
  2109. },
  2110. "autoload": {
  2111. "psr-4": {
  2112. "Psr\\EventDispatcher\\": "src/"
  2113. }
  2114. },
  2115. "notification-url": "https://packagist.org/downloads/",
  2116. "license": [
  2117. "MIT"
  2118. ],
  2119. "authors": [
  2120. {
  2121. "name": "PHP-FIG",
  2122. "homepage": "http://www.php-fig.org/"
  2123. }
  2124. ],
  2125. "description": "Standard interfaces for event handling.",
  2126. "keywords": [
  2127. "events",
  2128. "psr",
  2129. "psr-14"
  2130. ],
  2131. "support": {
  2132. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  2133. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  2134. },
  2135. "time": "2019-01-08T18:20:26+00:00"
  2136. },
  2137. {
  2138. "name": "psr/link",
  2139. "version": "2.0.1",
  2140. "source": {
  2141. "type": "git",
  2142. "url": "https://github.com/php-fig/link.git",
  2143. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  2144. },
  2145. "dist": {
  2146. "type": "zip",
  2147. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  2148. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  2149. "shasum": ""
  2150. },
  2151. "require": {
  2152. "php": ">=8.0.0"
  2153. },
  2154. "suggest": {
  2155. "fig/link-util": "Provides some useful PSR-13 utilities"
  2156. },
  2157. "type": "library",
  2158. "extra": {
  2159. "branch-alias": {
  2160. "dev-master": "2.0.x-dev"
  2161. }
  2162. },
  2163. "autoload": {
  2164. "psr-4": {
  2165. "Psr\\Link\\": "src/"
  2166. }
  2167. },
  2168. "notification-url": "https://packagist.org/downloads/",
  2169. "license": [
  2170. "MIT"
  2171. ],
  2172. "authors": [
  2173. {
  2174. "name": "PHP-FIG",
  2175. "homepage": "http://www.php-fig.org/"
  2176. }
  2177. ],
  2178. "description": "Common interfaces for HTTP links",
  2179. "homepage": "https://github.com/php-fig/link",
  2180. "keywords": [
  2181. "http",
  2182. "http-link",
  2183. "link",
  2184. "psr",
  2185. "psr-13",
  2186. "rest"
  2187. ],
  2188. "support": {
  2189. "source": "https://github.com/php-fig/link/tree/2.0.1"
  2190. },
  2191. "time": "2021-03-11T23:00:27+00:00"
  2192. },
  2193. {
  2194. "name": "psr/log",
  2195. "version": "3.0.2",
  2196. "source": {
  2197. "type": "git",
  2198. "url": "https://github.com/php-fig/log.git",
  2199. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  2200. },
  2201. "dist": {
  2202. "type": "zip",
  2203. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2204. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2205. "shasum": ""
  2206. },
  2207. "require": {
  2208. "php": ">=8.0.0"
  2209. },
  2210. "type": "library",
  2211. "extra": {
  2212. "branch-alias": {
  2213. "dev-master": "3.x-dev"
  2214. }
  2215. },
  2216. "autoload": {
  2217. "psr-4": {
  2218. "Psr\\Log\\": "src"
  2219. }
  2220. },
  2221. "notification-url": "https://packagist.org/downloads/",
  2222. "license": [
  2223. "MIT"
  2224. ],
  2225. "authors": [
  2226. {
  2227. "name": "PHP-FIG",
  2228. "homepage": "https://www.php-fig.org/"
  2229. }
  2230. ],
  2231. "description": "Common interface for logging libraries",
  2232. "homepage": "https://github.com/php-fig/log",
  2233. "keywords": [
  2234. "log",
  2235. "psr",
  2236. "psr-3"
  2237. ],
  2238. "support": {
  2239. "source": "https://github.com/php-fig/log/tree/3.0.2"
  2240. },
  2241. "time": "2024-09-11T13:17:53+00:00"
  2242. },
  2243. {
  2244. "name": "symfony/asset",
  2245. "version": "v7.3.0",
  2246. "source": {
  2247. "type": "git",
  2248. "url": "https://github.com/symfony/asset.git",
  2249. "reference": "56c4d9f759247c4e07d8549e3baf7493cb9c3e4b"
  2250. },
  2251. "dist": {
  2252. "type": "zip",
  2253. "url": "https://api.github.com/repos/symfony/asset/zipball/56c4d9f759247c4e07d8549e3baf7493cb9c3e4b",
  2254. "reference": "56c4d9f759247c4e07d8549e3baf7493cb9c3e4b",
  2255. "shasum": ""
  2256. },
  2257. "require": {
  2258. "php": ">=8.2"
  2259. },
  2260. "conflict": {
  2261. "symfony/http-foundation": "<6.4"
  2262. },
  2263. "require-dev": {
  2264. "symfony/http-client": "^6.4|^7.0",
  2265. "symfony/http-foundation": "^6.4|^7.0",
  2266. "symfony/http-kernel": "^6.4|^7.0"
  2267. },
  2268. "type": "library",
  2269. "autoload": {
  2270. "psr-4": {
  2271. "Symfony\\Component\\Asset\\": ""
  2272. },
  2273. "exclude-from-classmap": [
  2274. "/Tests/"
  2275. ]
  2276. },
  2277. "notification-url": "https://packagist.org/downloads/",
  2278. "license": [
  2279. "MIT"
  2280. ],
  2281. "authors": [
  2282. {
  2283. "name": "Fabien Potencier",
  2284. "email": "fabien@symfony.com"
  2285. },
  2286. {
  2287. "name": "Symfony Community",
  2288. "homepage": "https://symfony.com/contributors"
  2289. }
  2290. ],
  2291. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2292. "homepage": "https://symfony.com",
  2293. "support": {
  2294. "source": "https://github.com/symfony/asset/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": "2025-03-05T10:15:41+00:00"
  2311. },
  2312. {
  2313. "name": "symfony/asset-mapper",
  2314. "version": "v7.3.0",
  2315. "source": {
  2316. "type": "git",
  2317. "url": "https://github.com/symfony/asset-mapper.git",
  2318. "reference": "6516f38868b75c4902ea72a9fa44967628375ae7"
  2319. },
  2320. "dist": {
  2321. "type": "zip",
  2322. "url": "https://api.github.com/repos/symfony/asset-mapper/zipball/6516f38868b75c4902ea72a9fa44967628375ae7",
  2323. "reference": "6516f38868b75c4902ea72a9fa44967628375ae7",
  2324. "shasum": ""
  2325. },
  2326. "require": {
  2327. "composer/semver": "^3.0",
  2328. "php": ">=8.2",
  2329. "symfony/deprecation-contracts": "^2.1|^3",
  2330. "symfony/filesystem": "^7.1",
  2331. "symfony/http-client": "^6.4|^7.0"
  2332. },
  2333. "conflict": {
  2334. "symfony/framework-bundle": "<6.4"
  2335. },
  2336. "require-dev": {
  2337. "symfony/asset": "^6.4|^7.0",
  2338. "symfony/browser-kit": "^6.4|^7.0",
  2339. "symfony/console": "^6.4|^7.0",
  2340. "symfony/event-dispatcher-contracts": "^3.0",
  2341. "symfony/finder": "^6.4|^7.0",
  2342. "symfony/framework-bundle": "^6.4|^7.0",
  2343. "symfony/http-foundation": "^6.4|^7.0",
  2344. "symfony/http-kernel": "^6.4|^7.0",
  2345. "symfony/process": "^6.4|^7.0",
  2346. "symfony/web-link": "^6.4|^7.0"
  2347. },
  2348. "type": "library",
  2349. "autoload": {
  2350. "psr-4": {
  2351. "Symfony\\Component\\AssetMapper\\": ""
  2352. },
  2353. "exclude-from-classmap": [
  2354. "/Tests/"
  2355. ]
  2356. },
  2357. "notification-url": "https://packagist.org/downloads/",
  2358. "license": [
  2359. "MIT"
  2360. ],
  2361. "authors": [
  2362. {
  2363. "name": "Fabien Potencier",
  2364. "email": "fabien@symfony.com"
  2365. },
  2366. {
  2367. "name": "Symfony Community",
  2368. "homepage": "https://symfony.com/contributors"
  2369. }
  2370. ],
  2371. "description": "Maps directories of assets & makes them available in a public directory with versioned filenames.",
  2372. "homepage": "https://symfony.com",
  2373. "support": {
  2374. "source": "https://github.com/symfony/asset-mapper/tree/v7.3.0"
  2375. },
  2376. "funding": [
  2377. {
  2378. "url": "https://symfony.com/sponsor",
  2379. "type": "custom"
  2380. },
  2381. {
  2382. "url": "https://github.com/fabpot",
  2383. "type": "github"
  2384. },
  2385. {
  2386. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2387. "type": "tidelift"
  2388. }
  2389. ],
  2390. "time": "2025-05-24T14:05:12+00:00"
  2391. },
  2392. {
  2393. "name": "symfony/cache",
  2394. "version": "v7.3.1",
  2395. "source": {
  2396. "type": "git",
  2397. "url": "https://github.com/symfony/cache.git",
  2398. "reference": "a7c6caa9d6113cebfb3020b427bcb021ebfdfc9e"
  2399. },
  2400. "dist": {
  2401. "type": "zip",
  2402. "url": "https://api.github.com/repos/symfony/cache/zipball/a7c6caa9d6113cebfb3020b427bcb021ebfdfc9e",
  2403. "reference": "a7c6caa9d6113cebfb3020b427bcb021ebfdfc9e",
  2404. "shasum": ""
  2405. },
  2406. "require": {
  2407. "php": ">=8.2",
  2408. "psr/cache": "^2.0|^3.0",
  2409. "psr/log": "^1.1|^2|^3",
  2410. "symfony/cache-contracts": "^3.6",
  2411. "symfony/deprecation-contracts": "^2.5|^3.0",
  2412. "symfony/service-contracts": "^2.5|^3",
  2413. "symfony/var-exporter": "^6.4|^7.0"
  2414. },
  2415. "conflict": {
  2416. "doctrine/dbal": "<3.6",
  2417. "symfony/dependency-injection": "<6.4",
  2418. "symfony/http-kernel": "<6.4",
  2419. "symfony/var-dumper": "<6.4"
  2420. },
  2421. "provide": {
  2422. "psr/cache-implementation": "2.0|3.0",
  2423. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  2424. "symfony/cache-implementation": "1.1|2.0|3.0"
  2425. },
  2426. "require-dev": {
  2427. "cache/integration-tests": "dev-master",
  2428. "doctrine/dbal": "^3.6|^4",
  2429. "predis/predis": "^1.1|^2.0",
  2430. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2431. "symfony/clock": "^6.4|^7.0",
  2432. "symfony/config": "^6.4|^7.0",
  2433. "symfony/dependency-injection": "^6.4|^7.0",
  2434. "symfony/filesystem": "^6.4|^7.0",
  2435. "symfony/http-kernel": "^6.4|^7.0",
  2436. "symfony/messenger": "^6.4|^7.0",
  2437. "symfony/var-dumper": "^6.4|^7.0"
  2438. },
  2439. "type": "library",
  2440. "autoload": {
  2441. "psr-4": {
  2442. "Symfony\\Component\\Cache\\": ""
  2443. },
  2444. "classmap": [
  2445. "Traits/ValueWrapper.php"
  2446. ],
  2447. "exclude-from-classmap": [
  2448. "/Tests/"
  2449. ]
  2450. },
  2451. "notification-url": "https://packagist.org/downloads/",
  2452. "license": [
  2453. "MIT"
  2454. ],
  2455. "authors": [
  2456. {
  2457. "name": "Nicolas Grekas",
  2458. "email": "p@tchwork.com"
  2459. },
  2460. {
  2461. "name": "Symfony Community",
  2462. "homepage": "https://symfony.com/contributors"
  2463. }
  2464. ],
  2465. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2466. "homepage": "https://symfony.com",
  2467. "keywords": [
  2468. "caching",
  2469. "psr6"
  2470. ],
  2471. "support": {
  2472. "source": "https://github.com/symfony/cache/tree/v7.3.1"
  2473. },
  2474. "funding": [
  2475. {
  2476. "url": "https://symfony.com/sponsor",
  2477. "type": "custom"
  2478. },
  2479. {
  2480. "url": "https://github.com/fabpot",
  2481. "type": "github"
  2482. },
  2483. {
  2484. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2485. "type": "tidelift"
  2486. }
  2487. ],
  2488. "time": "2025-06-27T19:55:54+00:00"
  2489. },
  2490. {
  2491. "name": "symfony/cache-contracts",
  2492. "version": "v3.6.0",
  2493. "source": {
  2494. "type": "git",
  2495. "url": "https://github.com/symfony/cache-contracts.git",
  2496. "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868"
  2497. },
  2498. "dist": {
  2499. "type": "zip",
  2500. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/5d68a57d66910405e5c0b63d6f0af941e66fc868",
  2501. "reference": "5d68a57d66910405e5c0b63d6f0af941e66fc868",
  2502. "shasum": ""
  2503. },
  2504. "require": {
  2505. "php": ">=8.1",
  2506. "psr/cache": "^3.0"
  2507. },
  2508. "type": "library",
  2509. "extra": {
  2510. "thanks": {
  2511. "url": "https://github.com/symfony/contracts",
  2512. "name": "symfony/contracts"
  2513. },
  2514. "branch-alias": {
  2515. "dev-main": "3.6-dev"
  2516. }
  2517. },
  2518. "autoload": {
  2519. "psr-4": {
  2520. "Symfony\\Contracts\\Cache\\": ""
  2521. }
  2522. },
  2523. "notification-url": "https://packagist.org/downloads/",
  2524. "license": [
  2525. "MIT"
  2526. ],
  2527. "authors": [
  2528. {
  2529. "name": "Nicolas Grekas",
  2530. "email": "p@tchwork.com"
  2531. },
  2532. {
  2533. "name": "Symfony Community",
  2534. "homepage": "https://symfony.com/contributors"
  2535. }
  2536. ],
  2537. "description": "Generic abstractions related to caching",
  2538. "homepage": "https://symfony.com",
  2539. "keywords": [
  2540. "abstractions",
  2541. "contracts",
  2542. "decoupling",
  2543. "interfaces",
  2544. "interoperability",
  2545. "standards"
  2546. ],
  2547. "support": {
  2548. "source": "https://github.com/symfony/cache-contracts/tree/v3.6.0"
  2549. },
  2550. "funding": [
  2551. {
  2552. "url": "https://symfony.com/sponsor",
  2553. "type": "custom"
  2554. },
  2555. {
  2556. "url": "https://github.com/fabpot",
  2557. "type": "github"
  2558. },
  2559. {
  2560. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2561. "type": "tidelift"
  2562. }
  2563. ],
  2564. "time": "2025-03-13T15:25:07+00:00"
  2565. },
  2566. {
  2567. "name": "symfony/clock",
  2568. "version": "v7.3.0",
  2569. "source": {
  2570. "type": "git",
  2571. "url": "https://github.com/symfony/clock.git",
  2572. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24"
  2573. },
  2574. "dist": {
  2575. "type": "zip",
  2576. "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  2577. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  2578. "shasum": ""
  2579. },
  2580. "require": {
  2581. "php": ">=8.2",
  2582. "psr/clock": "^1.0",
  2583. "symfony/polyfill-php83": "^1.28"
  2584. },
  2585. "provide": {
  2586. "psr/clock-implementation": "1.0"
  2587. },
  2588. "type": "library",
  2589. "autoload": {
  2590. "files": [
  2591. "Resources/now.php"
  2592. ],
  2593. "psr-4": {
  2594. "Symfony\\Component\\Clock\\": ""
  2595. },
  2596. "exclude-from-classmap": [
  2597. "/Tests/"
  2598. ]
  2599. },
  2600. "notification-url": "https://packagist.org/downloads/",
  2601. "license": [
  2602. "MIT"
  2603. ],
  2604. "authors": [
  2605. {
  2606. "name": "Nicolas Grekas",
  2607. "email": "p@tchwork.com"
  2608. },
  2609. {
  2610. "name": "Symfony Community",
  2611. "homepage": "https://symfony.com/contributors"
  2612. }
  2613. ],
  2614. "description": "Decouples applications from the system clock",
  2615. "homepage": "https://symfony.com",
  2616. "keywords": [
  2617. "clock",
  2618. "psr20",
  2619. "time"
  2620. ],
  2621. "support": {
  2622. "source": "https://github.com/symfony/clock/tree/v7.3.0"
  2623. },
  2624. "funding": [
  2625. {
  2626. "url": "https://symfony.com/sponsor",
  2627. "type": "custom"
  2628. },
  2629. {
  2630. "url": "https://github.com/fabpot",
  2631. "type": "github"
  2632. },
  2633. {
  2634. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2635. "type": "tidelift"
  2636. }
  2637. ],
  2638. "time": "2024-09-25T14:21:43+00:00"
  2639. },
  2640. {
  2641. "name": "symfony/config",
  2642. "version": "v7.3.0",
  2643. "source": {
  2644. "type": "git",
  2645. "url": "https://github.com/symfony/config.git",
  2646. "reference": "ba62ae565f1327c2f6366726312ed828c85853bc"
  2647. },
  2648. "dist": {
  2649. "type": "zip",
  2650. "url": "https://api.github.com/repos/symfony/config/zipball/ba62ae565f1327c2f6366726312ed828c85853bc",
  2651. "reference": "ba62ae565f1327c2f6366726312ed828c85853bc",
  2652. "shasum": ""
  2653. },
  2654. "require": {
  2655. "php": ">=8.2",
  2656. "symfony/deprecation-contracts": "^2.5|^3",
  2657. "symfony/filesystem": "^7.1",
  2658. "symfony/polyfill-ctype": "~1.8"
  2659. },
  2660. "conflict": {
  2661. "symfony/finder": "<6.4",
  2662. "symfony/service-contracts": "<2.5"
  2663. },
  2664. "require-dev": {
  2665. "symfony/event-dispatcher": "^6.4|^7.0",
  2666. "symfony/finder": "^6.4|^7.0",
  2667. "symfony/messenger": "^6.4|^7.0",
  2668. "symfony/service-contracts": "^2.5|^3",
  2669. "symfony/yaml": "^6.4|^7.0"
  2670. },
  2671. "type": "library",
  2672. "autoload": {
  2673. "psr-4": {
  2674. "Symfony\\Component\\Config\\": ""
  2675. },
  2676. "exclude-from-classmap": [
  2677. "/Tests/"
  2678. ]
  2679. },
  2680. "notification-url": "https://packagist.org/downloads/",
  2681. "license": [
  2682. "MIT"
  2683. ],
  2684. "authors": [
  2685. {
  2686. "name": "Fabien Potencier",
  2687. "email": "fabien@symfony.com"
  2688. },
  2689. {
  2690. "name": "Symfony Community",
  2691. "homepage": "https://symfony.com/contributors"
  2692. }
  2693. ],
  2694. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  2695. "homepage": "https://symfony.com",
  2696. "support": {
  2697. "source": "https://github.com/symfony/config/tree/v7.3.0"
  2698. },
  2699. "funding": [
  2700. {
  2701. "url": "https://symfony.com/sponsor",
  2702. "type": "custom"
  2703. },
  2704. {
  2705. "url": "https://github.com/fabpot",
  2706. "type": "github"
  2707. },
  2708. {
  2709. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2710. "type": "tidelift"
  2711. }
  2712. ],
  2713. "time": "2025-05-15T09:04:05+00:00"
  2714. },
  2715. {
  2716. "name": "symfony/console",
  2717. "version": "v7.3.1",
  2718. "source": {
  2719. "type": "git",
  2720. "url": "https://github.com/symfony/console.git",
  2721. "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101"
  2722. },
  2723. "dist": {
  2724. "type": "zip",
  2725. "url": "https://api.github.com/repos/symfony/console/zipball/9e27aecde8f506ba0fd1d9989620c04a87697101",
  2726. "reference": "9e27aecde8f506ba0fd1d9989620c04a87697101",
  2727. "shasum": ""
  2728. },
  2729. "require": {
  2730. "php": ">=8.2",
  2731. "symfony/deprecation-contracts": "^2.5|^3",
  2732. "symfony/polyfill-mbstring": "~1.0",
  2733. "symfony/service-contracts": "^2.5|^3",
  2734. "symfony/string": "^7.2"
  2735. },
  2736. "conflict": {
  2737. "symfony/dependency-injection": "<6.4",
  2738. "symfony/dotenv": "<6.4",
  2739. "symfony/event-dispatcher": "<6.4",
  2740. "symfony/lock": "<6.4",
  2741. "symfony/process": "<6.4"
  2742. },
  2743. "provide": {
  2744. "psr/log-implementation": "1.0|2.0|3.0"
  2745. },
  2746. "require-dev": {
  2747. "psr/log": "^1|^2|^3",
  2748. "symfony/config": "^6.4|^7.0",
  2749. "symfony/dependency-injection": "^6.4|^7.0",
  2750. "symfony/event-dispatcher": "^6.4|^7.0",
  2751. "symfony/http-foundation": "^6.4|^7.0",
  2752. "symfony/http-kernel": "^6.4|^7.0",
  2753. "symfony/lock": "^6.4|^7.0",
  2754. "symfony/messenger": "^6.4|^7.0",
  2755. "symfony/process": "^6.4|^7.0",
  2756. "symfony/stopwatch": "^6.4|^7.0",
  2757. "symfony/var-dumper": "^6.4|^7.0"
  2758. },
  2759. "type": "library",
  2760. "autoload": {
  2761. "psr-4": {
  2762. "Symfony\\Component\\Console\\": ""
  2763. },
  2764. "exclude-from-classmap": [
  2765. "/Tests/"
  2766. ]
  2767. },
  2768. "notification-url": "https://packagist.org/downloads/",
  2769. "license": [
  2770. "MIT"
  2771. ],
  2772. "authors": [
  2773. {
  2774. "name": "Fabien Potencier",
  2775. "email": "fabien@symfony.com"
  2776. },
  2777. {
  2778. "name": "Symfony Community",
  2779. "homepage": "https://symfony.com/contributors"
  2780. }
  2781. ],
  2782. "description": "Eases the creation of beautiful and testable command line interfaces",
  2783. "homepage": "https://symfony.com",
  2784. "keywords": [
  2785. "cli",
  2786. "command-line",
  2787. "console",
  2788. "terminal"
  2789. ],
  2790. "support": {
  2791. "source": "https://github.com/symfony/console/tree/v7.3.1"
  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-06-27T19:55:54+00:00"
  2808. },
  2809. {
  2810. "name": "symfony/dependency-injection",
  2811. "version": "v7.3.1",
  2812. "source": {
  2813. "type": "git",
  2814. "url": "https://github.com/symfony/dependency-injection.git",
  2815. "reference": "8656c4848b48784c4bb8c4ae50d2b43f832cead8"
  2816. },
  2817. "dist": {
  2818. "type": "zip",
  2819. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/8656c4848b48784c4bb8c4ae50d2b43f832cead8",
  2820. "reference": "8656c4848b48784c4bb8c4ae50d2b43f832cead8",
  2821. "shasum": ""
  2822. },
  2823. "require": {
  2824. "php": ">=8.2",
  2825. "psr/container": "^1.1|^2.0",
  2826. "symfony/deprecation-contracts": "^2.5|^3",
  2827. "symfony/service-contracts": "^3.5",
  2828. "symfony/var-exporter": "^6.4.20|^7.2.5"
  2829. },
  2830. "conflict": {
  2831. "ext-psr": "<1.1|>=2",
  2832. "symfony/config": "<6.4",
  2833. "symfony/finder": "<6.4",
  2834. "symfony/yaml": "<6.4"
  2835. },
  2836. "provide": {
  2837. "psr/container-implementation": "1.1|2.0",
  2838. "symfony/service-implementation": "1.1|2.0|3.0"
  2839. },
  2840. "require-dev": {
  2841. "symfony/config": "^6.4|^7.0",
  2842. "symfony/expression-language": "^6.4|^7.0",
  2843. "symfony/yaml": "^6.4|^7.0"
  2844. },
  2845. "type": "library",
  2846. "autoload": {
  2847. "psr-4": {
  2848. "Symfony\\Component\\DependencyInjection\\": ""
  2849. },
  2850. "exclude-from-classmap": [
  2851. "/Tests/"
  2852. ]
  2853. },
  2854. "notification-url": "https://packagist.org/downloads/",
  2855. "license": [
  2856. "MIT"
  2857. ],
  2858. "authors": [
  2859. {
  2860. "name": "Fabien Potencier",
  2861. "email": "fabien@symfony.com"
  2862. },
  2863. {
  2864. "name": "Symfony Community",
  2865. "homepage": "https://symfony.com/contributors"
  2866. }
  2867. ],
  2868. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  2869. "homepage": "https://symfony.com",
  2870. "support": {
  2871. "source": "https://github.com/symfony/dependency-injection/tree/v7.3.1"
  2872. },
  2873. "funding": [
  2874. {
  2875. "url": "https://symfony.com/sponsor",
  2876. "type": "custom"
  2877. },
  2878. {
  2879. "url": "https://github.com/fabpot",
  2880. "type": "github"
  2881. },
  2882. {
  2883. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2884. "type": "tidelift"
  2885. }
  2886. ],
  2887. "time": "2025-06-24T04:04:43+00:00"
  2888. },
  2889. {
  2890. "name": "symfony/deprecation-contracts",
  2891. "version": "v3.6.0",
  2892. "source": {
  2893. "type": "git",
  2894. "url": "https://github.com/symfony/deprecation-contracts.git",
  2895. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  2896. },
  2897. "dist": {
  2898. "type": "zip",
  2899. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  2900. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  2901. "shasum": ""
  2902. },
  2903. "require": {
  2904. "php": ">=8.1"
  2905. },
  2906. "type": "library",
  2907. "extra": {
  2908. "thanks": {
  2909. "url": "https://github.com/symfony/contracts",
  2910. "name": "symfony/contracts"
  2911. },
  2912. "branch-alias": {
  2913. "dev-main": "3.6-dev"
  2914. }
  2915. },
  2916. "autoload": {
  2917. "files": [
  2918. "function.php"
  2919. ]
  2920. },
  2921. "notification-url": "https://packagist.org/downloads/",
  2922. "license": [
  2923. "MIT"
  2924. ],
  2925. "authors": [
  2926. {
  2927. "name": "Nicolas Grekas",
  2928. "email": "p@tchwork.com"
  2929. },
  2930. {
  2931. "name": "Symfony Community",
  2932. "homepage": "https://symfony.com/contributors"
  2933. }
  2934. ],
  2935. "description": "A generic function and convention to trigger deprecation notices",
  2936. "homepage": "https://symfony.com",
  2937. "support": {
  2938. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  2939. },
  2940. "funding": [
  2941. {
  2942. "url": "https://symfony.com/sponsor",
  2943. "type": "custom"
  2944. },
  2945. {
  2946. "url": "https://github.com/fabpot",
  2947. "type": "github"
  2948. },
  2949. {
  2950. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2951. "type": "tidelift"
  2952. }
  2953. ],
  2954. "time": "2024-09-25T14:21:43+00:00"
  2955. },
  2956. {
  2957. "name": "symfony/doctrine-bridge",
  2958. "version": "v7.3.1",
  2959. "source": {
  2960. "type": "git",
  2961. "url": "https://github.com/symfony/doctrine-bridge.git",
  2962. "reference": "6c0acb248c46452ae2c15752dc71e72f3335403f"
  2963. },
  2964. "dist": {
  2965. "type": "zip",
  2966. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/6c0acb248c46452ae2c15752dc71e72f3335403f",
  2967. "reference": "6c0acb248c46452ae2c15752dc71e72f3335403f",
  2968. "shasum": ""
  2969. },
  2970. "require": {
  2971. "doctrine/event-manager": "^2",
  2972. "doctrine/persistence": "^3.1|^4",
  2973. "php": ">=8.2",
  2974. "symfony/deprecation-contracts": "^2.5|^3",
  2975. "symfony/polyfill-ctype": "~1.8",
  2976. "symfony/polyfill-mbstring": "~1.0",
  2977. "symfony/service-contracts": "^2.5|^3"
  2978. },
  2979. "conflict": {
  2980. "doctrine/collections": "<1.8",
  2981. "doctrine/dbal": "<3.6",
  2982. "doctrine/lexer": "<1.1",
  2983. "doctrine/orm": "<2.15",
  2984. "symfony/cache": "<6.4",
  2985. "symfony/dependency-injection": "<6.4",
  2986. "symfony/form": "<6.4.6|>=7,<7.0.6",
  2987. "symfony/http-foundation": "<6.4",
  2988. "symfony/http-kernel": "<6.4",
  2989. "symfony/lock": "<6.4",
  2990. "symfony/messenger": "<6.4",
  2991. "symfony/property-info": "<6.4",
  2992. "symfony/security-bundle": "<6.4",
  2993. "symfony/security-core": "<6.4",
  2994. "symfony/validator": "<6.4"
  2995. },
  2996. "require-dev": {
  2997. "doctrine/collections": "^1.8|^2.0",
  2998. "doctrine/data-fixtures": "^1.1|^2",
  2999. "doctrine/dbal": "^3.6|^4",
  3000. "doctrine/orm": "^2.15|^3",
  3001. "psr/log": "^1|^2|^3",
  3002. "symfony/cache": "^6.4|^7.0",
  3003. "symfony/config": "^6.4|^7.0",
  3004. "symfony/dependency-injection": "^6.4|^7.0",
  3005. "symfony/doctrine-messenger": "^6.4|^7.0",
  3006. "symfony/expression-language": "^6.4|^7.0",
  3007. "symfony/form": "^6.4.6|^7.0.6",
  3008. "symfony/http-kernel": "^6.4|^7.0",
  3009. "symfony/lock": "^6.4|^7.0",
  3010. "symfony/messenger": "^6.4|^7.0",
  3011. "symfony/property-access": "^6.4|^7.0",
  3012. "symfony/property-info": "^6.4|^7.0",
  3013. "symfony/security-core": "^6.4|^7.0",
  3014. "symfony/stopwatch": "^6.4|^7.0",
  3015. "symfony/translation": "^6.4|^7.0",
  3016. "symfony/type-info": "^7.1",
  3017. "symfony/uid": "^6.4|^7.0",
  3018. "symfony/validator": "^6.4|^7.0",
  3019. "symfony/var-dumper": "^6.4|^7.0"
  3020. },
  3021. "type": "symfony-bridge",
  3022. "autoload": {
  3023. "psr-4": {
  3024. "Symfony\\Bridge\\Doctrine\\": ""
  3025. },
  3026. "exclude-from-classmap": [
  3027. "/Tests/"
  3028. ]
  3029. },
  3030. "notification-url": "https://packagist.org/downloads/",
  3031. "license": [
  3032. "MIT"
  3033. ],
  3034. "authors": [
  3035. {
  3036. "name": "Fabien Potencier",
  3037. "email": "fabien@symfony.com"
  3038. },
  3039. {
  3040. "name": "Symfony Community",
  3041. "homepage": "https://symfony.com/contributors"
  3042. }
  3043. ],
  3044. "description": "Provides integration for Doctrine with various Symfony components",
  3045. "homepage": "https://symfony.com",
  3046. "support": {
  3047. "source": "https://github.com/symfony/doctrine-bridge/tree/v7.3.1"
  3048. },
  3049. "funding": [
  3050. {
  3051. "url": "https://symfony.com/sponsor",
  3052. "type": "custom"
  3053. },
  3054. {
  3055. "url": "https://github.com/fabpot",
  3056. "type": "github"
  3057. },
  3058. {
  3059. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3060. "type": "tidelift"
  3061. }
  3062. ],
  3063. "time": "2025-06-26T13:02:59+00:00"
  3064. },
  3065. {
  3066. "name": "symfony/doctrine-messenger",
  3067. "version": "v7.3.0",
  3068. "source": {
  3069. "type": "git",
  3070. "url": "https://github.com/symfony/doctrine-messenger.git",
  3071. "reference": "099d9cd03f889c31c90d406fed07f25dc3732487"
  3072. },
  3073. "dist": {
  3074. "type": "zip",
  3075. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/099d9cd03f889c31c90d406fed07f25dc3732487",
  3076. "reference": "099d9cd03f889c31c90d406fed07f25dc3732487",
  3077. "shasum": ""
  3078. },
  3079. "require": {
  3080. "doctrine/dbal": "^3.6|^4",
  3081. "php": ">=8.2",
  3082. "symfony/messenger": "^7.2",
  3083. "symfony/service-contracts": "^2.5|^3"
  3084. },
  3085. "conflict": {
  3086. "doctrine/persistence": "<1.3"
  3087. },
  3088. "require-dev": {
  3089. "doctrine/persistence": "^1.3|^2|^3",
  3090. "symfony/property-access": "^6.4|^7.0",
  3091. "symfony/serializer": "^6.4|^7.0"
  3092. },
  3093. "type": "symfony-messenger-bridge",
  3094. "autoload": {
  3095. "psr-4": {
  3096. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  3097. },
  3098. "exclude-from-classmap": [
  3099. "/Tests/"
  3100. ]
  3101. },
  3102. "notification-url": "https://packagist.org/downloads/",
  3103. "license": [
  3104. "MIT"
  3105. ],
  3106. "authors": [
  3107. {
  3108. "name": "Fabien Potencier",
  3109. "email": "fabien@symfony.com"
  3110. },
  3111. {
  3112. "name": "Symfony Community",
  3113. "homepage": "https://symfony.com/contributors"
  3114. }
  3115. ],
  3116. "description": "Symfony Doctrine Messenger Bridge",
  3117. "homepage": "https://symfony.com",
  3118. "support": {
  3119. "source": "https://github.com/symfony/doctrine-messenger/tree/v7.3.0"
  3120. },
  3121. "funding": [
  3122. {
  3123. "url": "https://symfony.com/sponsor",
  3124. "type": "custom"
  3125. },
  3126. {
  3127. "url": "https://github.com/fabpot",
  3128. "type": "github"
  3129. },
  3130. {
  3131. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3132. "type": "tidelift"
  3133. }
  3134. ],
  3135. "time": "2025-03-26T11:30:13+00:00"
  3136. },
  3137. {
  3138. "name": "symfony/dotenv",
  3139. "version": "v7.3.0",
  3140. "source": {
  3141. "type": "git",
  3142. "url": "https://github.com/symfony/dotenv.git",
  3143. "reference": "28347a897771d0c28e99b75166dd2689099f3045"
  3144. },
  3145. "dist": {
  3146. "type": "zip",
  3147. "url": "https://api.github.com/repos/symfony/dotenv/zipball/28347a897771d0c28e99b75166dd2689099f3045",
  3148. "reference": "28347a897771d0c28e99b75166dd2689099f3045",
  3149. "shasum": ""
  3150. },
  3151. "require": {
  3152. "php": ">=8.2"
  3153. },
  3154. "conflict": {
  3155. "symfony/console": "<6.4",
  3156. "symfony/process": "<6.4"
  3157. },
  3158. "require-dev": {
  3159. "symfony/console": "^6.4|^7.0",
  3160. "symfony/process": "^6.4|^7.0"
  3161. },
  3162. "type": "library",
  3163. "autoload": {
  3164. "psr-4": {
  3165. "Symfony\\Component\\Dotenv\\": ""
  3166. },
  3167. "exclude-from-classmap": [
  3168. "/Tests/"
  3169. ]
  3170. },
  3171. "notification-url": "https://packagist.org/downloads/",
  3172. "license": [
  3173. "MIT"
  3174. ],
  3175. "authors": [
  3176. {
  3177. "name": "Fabien Potencier",
  3178. "email": "fabien@symfony.com"
  3179. },
  3180. {
  3181. "name": "Symfony Community",
  3182. "homepage": "https://symfony.com/contributors"
  3183. }
  3184. ],
  3185. "description": "Registers environment variables from a .env file",
  3186. "homepage": "https://symfony.com",
  3187. "keywords": [
  3188. "dotenv",
  3189. "env",
  3190. "environment"
  3191. ],
  3192. "support": {
  3193. "source": "https://github.com/symfony/dotenv/tree/v7.3.0"
  3194. },
  3195. "funding": [
  3196. {
  3197. "url": "https://symfony.com/sponsor",
  3198. "type": "custom"
  3199. },
  3200. {
  3201. "url": "https://github.com/fabpot",
  3202. "type": "github"
  3203. },
  3204. {
  3205. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3206. "type": "tidelift"
  3207. }
  3208. ],
  3209. "time": "2024-11-27T11:18:42+00:00"
  3210. },
  3211. {
  3212. "name": "symfony/error-handler",
  3213. "version": "v7.3.1",
  3214. "source": {
  3215. "type": "git",
  3216. "url": "https://github.com/symfony/error-handler.git",
  3217. "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235"
  3218. },
  3219. "dist": {
  3220. "type": "zip",
  3221. "url": "https://api.github.com/repos/symfony/error-handler/zipball/35b55b166f6752d6aaf21aa042fc5ed280fce235",
  3222. "reference": "35b55b166f6752d6aaf21aa042fc5ed280fce235",
  3223. "shasum": ""
  3224. },
  3225. "require": {
  3226. "php": ">=8.2",
  3227. "psr/log": "^1|^2|^3",
  3228. "symfony/var-dumper": "^6.4|^7.0"
  3229. },
  3230. "conflict": {
  3231. "symfony/deprecation-contracts": "<2.5",
  3232. "symfony/http-kernel": "<6.4"
  3233. },
  3234. "require-dev": {
  3235. "symfony/console": "^6.4|^7.0",
  3236. "symfony/deprecation-contracts": "^2.5|^3",
  3237. "symfony/http-kernel": "^6.4|^7.0",
  3238. "symfony/serializer": "^6.4|^7.0",
  3239. "symfony/webpack-encore-bundle": "^1.0|^2.0"
  3240. },
  3241. "bin": [
  3242. "Resources/bin/patch-type-declarations"
  3243. ],
  3244. "type": "library",
  3245. "autoload": {
  3246. "psr-4": {
  3247. "Symfony\\Component\\ErrorHandler\\": ""
  3248. },
  3249. "exclude-from-classmap": [
  3250. "/Tests/"
  3251. ]
  3252. },
  3253. "notification-url": "https://packagist.org/downloads/",
  3254. "license": [
  3255. "MIT"
  3256. ],
  3257. "authors": [
  3258. {
  3259. "name": "Fabien Potencier",
  3260. "email": "fabien@symfony.com"
  3261. },
  3262. {
  3263. "name": "Symfony Community",
  3264. "homepage": "https://symfony.com/contributors"
  3265. }
  3266. ],
  3267. "description": "Provides tools to manage errors and ease debugging PHP code",
  3268. "homepage": "https://symfony.com",
  3269. "support": {
  3270. "source": "https://github.com/symfony/error-handler/tree/v7.3.1"
  3271. },
  3272. "funding": [
  3273. {
  3274. "url": "https://symfony.com/sponsor",
  3275. "type": "custom"
  3276. },
  3277. {
  3278. "url": "https://github.com/fabpot",
  3279. "type": "github"
  3280. },
  3281. {
  3282. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3283. "type": "tidelift"
  3284. }
  3285. ],
  3286. "time": "2025-06-13T07:48:40+00:00"
  3287. },
  3288. {
  3289. "name": "symfony/event-dispatcher",
  3290. "version": "v7.3.0",
  3291. "source": {
  3292. "type": "git",
  3293. "url": "https://github.com/symfony/event-dispatcher.git",
  3294. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d"
  3295. },
  3296. "dist": {
  3297. "type": "zip",
  3298. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/497f73ac996a598c92409b44ac43b6690c4f666d",
  3299. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d",
  3300. "shasum": ""
  3301. },
  3302. "require": {
  3303. "php": ">=8.2",
  3304. "symfony/event-dispatcher-contracts": "^2.5|^3"
  3305. },
  3306. "conflict": {
  3307. "symfony/dependency-injection": "<6.4",
  3308. "symfony/service-contracts": "<2.5"
  3309. },
  3310. "provide": {
  3311. "psr/event-dispatcher-implementation": "1.0",
  3312. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3313. },
  3314. "require-dev": {
  3315. "psr/log": "^1|^2|^3",
  3316. "symfony/config": "^6.4|^7.0",
  3317. "symfony/dependency-injection": "^6.4|^7.0",
  3318. "symfony/error-handler": "^6.4|^7.0",
  3319. "symfony/expression-language": "^6.4|^7.0",
  3320. "symfony/http-foundation": "^6.4|^7.0",
  3321. "symfony/service-contracts": "^2.5|^3",
  3322. "symfony/stopwatch": "^6.4|^7.0"
  3323. },
  3324. "type": "library",
  3325. "autoload": {
  3326. "psr-4": {
  3327. "Symfony\\Component\\EventDispatcher\\": ""
  3328. },
  3329. "exclude-from-classmap": [
  3330. "/Tests/"
  3331. ]
  3332. },
  3333. "notification-url": "https://packagist.org/downloads/",
  3334. "license": [
  3335. "MIT"
  3336. ],
  3337. "authors": [
  3338. {
  3339. "name": "Fabien Potencier",
  3340. "email": "fabien@symfony.com"
  3341. },
  3342. {
  3343. "name": "Symfony Community",
  3344. "homepage": "https://symfony.com/contributors"
  3345. }
  3346. ],
  3347. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3348. "homepage": "https://symfony.com",
  3349. "support": {
  3350. "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.0"
  3351. },
  3352. "funding": [
  3353. {
  3354. "url": "https://symfony.com/sponsor",
  3355. "type": "custom"
  3356. },
  3357. {
  3358. "url": "https://github.com/fabpot",
  3359. "type": "github"
  3360. },
  3361. {
  3362. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3363. "type": "tidelift"
  3364. }
  3365. ],
  3366. "time": "2025-04-22T09:11:45+00:00"
  3367. },
  3368. {
  3369. "name": "symfony/event-dispatcher-contracts",
  3370. "version": "v3.6.0",
  3371. "source": {
  3372. "type": "git",
  3373. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3374. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  3375. },
  3376. "dist": {
  3377. "type": "zip",
  3378. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  3379. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  3380. "shasum": ""
  3381. },
  3382. "require": {
  3383. "php": ">=8.1",
  3384. "psr/event-dispatcher": "^1"
  3385. },
  3386. "type": "library",
  3387. "extra": {
  3388. "thanks": {
  3389. "url": "https://github.com/symfony/contracts",
  3390. "name": "symfony/contracts"
  3391. },
  3392. "branch-alias": {
  3393. "dev-main": "3.6-dev"
  3394. }
  3395. },
  3396. "autoload": {
  3397. "psr-4": {
  3398. "Symfony\\Contracts\\EventDispatcher\\": ""
  3399. }
  3400. },
  3401. "notification-url": "https://packagist.org/downloads/",
  3402. "license": [
  3403. "MIT"
  3404. ],
  3405. "authors": [
  3406. {
  3407. "name": "Nicolas Grekas",
  3408. "email": "p@tchwork.com"
  3409. },
  3410. {
  3411. "name": "Symfony Community",
  3412. "homepage": "https://symfony.com/contributors"
  3413. }
  3414. ],
  3415. "description": "Generic abstractions related to dispatching event",
  3416. "homepage": "https://symfony.com",
  3417. "keywords": [
  3418. "abstractions",
  3419. "contracts",
  3420. "decoupling",
  3421. "interfaces",
  3422. "interoperability",
  3423. "standards"
  3424. ],
  3425. "support": {
  3426. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  3427. },
  3428. "funding": [
  3429. {
  3430. "url": "https://symfony.com/sponsor",
  3431. "type": "custom"
  3432. },
  3433. {
  3434. "url": "https://github.com/fabpot",
  3435. "type": "github"
  3436. },
  3437. {
  3438. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3439. "type": "tidelift"
  3440. }
  3441. ],
  3442. "time": "2024-09-25T14:21:43+00:00"
  3443. },
  3444. {
  3445. "name": "symfony/expression-language",
  3446. "version": "v7.3.0",
  3447. "source": {
  3448. "type": "git",
  3449. "url": "https://github.com/symfony/expression-language.git",
  3450. "reference": "26f4884a455e755e630a5fc372df124a3578da2e"
  3451. },
  3452. "dist": {
  3453. "type": "zip",
  3454. "url": "https://api.github.com/repos/symfony/expression-language/zipball/26f4884a455e755e630a5fc372df124a3578da2e",
  3455. "reference": "26f4884a455e755e630a5fc372df124a3578da2e",
  3456. "shasum": ""
  3457. },
  3458. "require": {
  3459. "php": ">=8.2",
  3460. "symfony/cache": "^6.4|^7.0",
  3461. "symfony/deprecation-contracts": "^2.5|^3",
  3462. "symfony/service-contracts": "^2.5|^3"
  3463. },
  3464. "type": "library",
  3465. "autoload": {
  3466. "psr-4": {
  3467. "Symfony\\Component\\ExpressionLanguage\\": ""
  3468. },
  3469. "exclude-from-classmap": [
  3470. "/Tests/"
  3471. ]
  3472. },
  3473. "notification-url": "https://packagist.org/downloads/",
  3474. "license": [
  3475. "MIT"
  3476. ],
  3477. "authors": [
  3478. {
  3479. "name": "Fabien Potencier",
  3480. "email": "fabien@symfony.com"
  3481. },
  3482. {
  3483. "name": "Symfony Community",
  3484. "homepage": "https://symfony.com/contributors"
  3485. }
  3486. ],
  3487. "description": "Provides an engine that can compile and evaluate expressions",
  3488. "homepage": "https://symfony.com",
  3489. "support": {
  3490. "source": "https://github.com/symfony/expression-language/tree/v7.3.0"
  3491. },
  3492. "funding": [
  3493. {
  3494. "url": "https://symfony.com/sponsor",
  3495. "type": "custom"
  3496. },
  3497. {
  3498. "url": "https://github.com/fabpot",
  3499. "type": "github"
  3500. },
  3501. {
  3502. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3503. "type": "tidelift"
  3504. }
  3505. ],
  3506. "time": "2024-10-15T11:52:45+00:00"
  3507. },
  3508. {
  3509. "name": "symfony/filesystem",
  3510. "version": "v7.3.0",
  3511. "source": {
  3512. "type": "git",
  3513. "url": "https://github.com/symfony/filesystem.git",
  3514. "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb"
  3515. },
  3516. "dist": {
  3517. "type": "zip",
  3518. "url": "https://api.github.com/repos/symfony/filesystem/zipball/b8dce482de9d7c9fe2891155035a7248ab5c7fdb",
  3519. "reference": "b8dce482de9d7c9fe2891155035a7248ab5c7fdb",
  3520. "shasum": ""
  3521. },
  3522. "require": {
  3523. "php": ">=8.2",
  3524. "symfony/polyfill-ctype": "~1.8",
  3525. "symfony/polyfill-mbstring": "~1.8"
  3526. },
  3527. "require-dev": {
  3528. "symfony/process": "^6.4|^7.0"
  3529. },
  3530. "type": "library",
  3531. "autoload": {
  3532. "psr-4": {
  3533. "Symfony\\Component\\Filesystem\\": ""
  3534. },
  3535. "exclude-from-classmap": [
  3536. "/Tests/"
  3537. ]
  3538. },
  3539. "notification-url": "https://packagist.org/downloads/",
  3540. "license": [
  3541. "MIT"
  3542. ],
  3543. "authors": [
  3544. {
  3545. "name": "Fabien Potencier",
  3546. "email": "fabien@symfony.com"
  3547. },
  3548. {
  3549. "name": "Symfony Community",
  3550. "homepage": "https://symfony.com/contributors"
  3551. }
  3552. ],
  3553. "description": "Provides basic utilities for the filesystem",
  3554. "homepage": "https://symfony.com",
  3555. "support": {
  3556. "source": "https://github.com/symfony/filesystem/tree/v7.3.0"
  3557. },
  3558. "funding": [
  3559. {
  3560. "url": "https://symfony.com/sponsor",
  3561. "type": "custom"
  3562. },
  3563. {
  3564. "url": "https://github.com/fabpot",
  3565. "type": "github"
  3566. },
  3567. {
  3568. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3569. "type": "tidelift"
  3570. }
  3571. ],
  3572. "time": "2024-10-25T15:15:23+00:00"
  3573. },
  3574. {
  3575. "name": "symfony/finder",
  3576. "version": "v7.3.0",
  3577. "source": {
  3578. "type": "git",
  3579. "url": "https://github.com/symfony/finder.git",
  3580. "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d"
  3581. },
  3582. "dist": {
  3583. "type": "zip",
  3584. "url": "https://api.github.com/repos/symfony/finder/zipball/ec2344cf77a48253bbca6939aa3d2477773ea63d",
  3585. "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d",
  3586. "shasum": ""
  3587. },
  3588. "require": {
  3589. "php": ">=8.2"
  3590. },
  3591. "require-dev": {
  3592. "symfony/filesystem": "^6.4|^7.0"
  3593. },
  3594. "type": "library",
  3595. "autoload": {
  3596. "psr-4": {
  3597. "Symfony\\Component\\Finder\\": ""
  3598. },
  3599. "exclude-from-classmap": [
  3600. "/Tests/"
  3601. ]
  3602. },
  3603. "notification-url": "https://packagist.org/downloads/",
  3604. "license": [
  3605. "MIT"
  3606. ],
  3607. "authors": [
  3608. {
  3609. "name": "Fabien Potencier",
  3610. "email": "fabien@symfony.com"
  3611. },
  3612. {
  3613. "name": "Symfony Community",
  3614. "homepage": "https://symfony.com/contributors"
  3615. }
  3616. ],
  3617. "description": "Finds files and directories via an intuitive fluent interface",
  3618. "homepage": "https://symfony.com",
  3619. "support": {
  3620. "source": "https://github.com/symfony/finder/tree/v7.3.0"
  3621. },
  3622. "funding": [
  3623. {
  3624. "url": "https://symfony.com/sponsor",
  3625. "type": "custom"
  3626. },
  3627. {
  3628. "url": "https://github.com/fabpot",
  3629. "type": "github"
  3630. },
  3631. {
  3632. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3633. "type": "tidelift"
  3634. }
  3635. ],
  3636. "time": "2024-12-30T19:00:26+00:00"
  3637. },
  3638. {
  3639. "name": "symfony/flex",
  3640. "version": "v2.8.1",
  3641. "source": {
  3642. "type": "git",
  3643. "url": "https://github.com/symfony/flex.git",
  3644. "reference": "423c36e369361003dc31ef11c5f15fb589e52c01"
  3645. },
  3646. "dist": {
  3647. "type": "zip",
  3648. "url": "https://api.github.com/repos/symfony/flex/zipball/423c36e369361003dc31ef11c5f15fb589e52c01",
  3649. "reference": "423c36e369361003dc31ef11c5f15fb589e52c01",
  3650. "shasum": ""
  3651. },
  3652. "require": {
  3653. "composer-plugin-api": "^2.1",
  3654. "php": ">=8.0"
  3655. },
  3656. "conflict": {
  3657. "composer/semver": "<1.7.2"
  3658. },
  3659. "require-dev": {
  3660. "composer/composer": "^2.1",
  3661. "symfony/dotenv": "^5.4|^6.0",
  3662. "symfony/filesystem": "^5.4|^6.0",
  3663. "symfony/phpunit-bridge": "^5.4|^6.0",
  3664. "symfony/process": "^5.4|^6.0"
  3665. },
  3666. "type": "composer-plugin",
  3667. "extra": {
  3668. "class": "Symfony\\Flex\\Flex"
  3669. },
  3670. "autoload": {
  3671. "psr-4": {
  3672. "Symfony\\Flex\\": "src"
  3673. }
  3674. },
  3675. "notification-url": "https://packagist.org/downloads/",
  3676. "license": [
  3677. "MIT"
  3678. ],
  3679. "authors": [
  3680. {
  3681. "name": "Fabien Potencier",
  3682. "email": "fabien.potencier@gmail.com"
  3683. }
  3684. ],
  3685. "description": "Composer plugin for Symfony",
  3686. "support": {
  3687. "issues": "https://github.com/symfony/flex/issues",
  3688. "source": "https://github.com/symfony/flex/tree/v2.8.1"
  3689. },
  3690. "funding": [
  3691. {
  3692. "url": "https://symfony.com/sponsor",
  3693. "type": "custom"
  3694. },
  3695. {
  3696. "url": "https://github.com/fabpot",
  3697. "type": "github"
  3698. },
  3699. {
  3700. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3701. "type": "tidelift"
  3702. }
  3703. ],
  3704. "time": "2025-07-05T07:45:19+00:00"
  3705. },
  3706. {
  3707. "name": "symfony/form",
  3708. "version": "v7.3.1",
  3709. "source": {
  3710. "type": "git",
  3711. "url": "https://github.com/symfony/form.git",
  3712. "reference": "e06b02dd21b33b0cd7bb942c7e446ef7b22a2a5a"
  3713. },
  3714. "dist": {
  3715. "type": "zip",
  3716. "url": "https://api.github.com/repos/symfony/form/zipball/e06b02dd21b33b0cd7bb942c7e446ef7b22a2a5a",
  3717. "reference": "e06b02dd21b33b0cd7bb942c7e446ef7b22a2a5a",
  3718. "shasum": ""
  3719. },
  3720. "require": {
  3721. "php": ">=8.2",
  3722. "symfony/deprecation-contracts": "^2.5|^3",
  3723. "symfony/event-dispatcher": "^6.4|^7.0",
  3724. "symfony/options-resolver": "^7.3",
  3725. "symfony/polyfill-ctype": "~1.8",
  3726. "symfony/polyfill-intl-icu": "^1.21",
  3727. "symfony/polyfill-mbstring": "~1.0",
  3728. "symfony/property-access": "^6.4|^7.0",
  3729. "symfony/service-contracts": "^2.5|^3"
  3730. },
  3731. "conflict": {
  3732. "symfony/console": "<6.4",
  3733. "symfony/dependency-injection": "<6.4",
  3734. "symfony/doctrine-bridge": "<6.4",
  3735. "symfony/error-handler": "<6.4",
  3736. "symfony/framework-bundle": "<6.4",
  3737. "symfony/http-kernel": "<6.4",
  3738. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  3739. "symfony/translation-contracts": "<2.5",
  3740. "symfony/twig-bridge": "<6.4"
  3741. },
  3742. "require-dev": {
  3743. "doctrine/collections": "^1.0|^2.0",
  3744. "symfony/config": "^6.4|^7.0",
  3745. "symfony/console": "^6.4|^7.0",
  3746. "symfony/dependency-injection": "^6.4|^7.0",
  3747. "symfony/expression-language": "^6.4|^7.0",
  3748. "symfony/html-sanitizer": "^6.4|^7.0",
  3749. "symfony/http-foundation": "^6.4|^7.0",
  3750. "symfony/http-kernel": "^6.4|^7.0",
  3751. "symfony/intl": "^6.4|^7.0",
  3752. "symfony/security-core": "^6.4|^7.0",
  3753. "symfony/security-csrf": "^6.4|^7.0",
  3754. "symfony/translation": "^6.4.3|^7.0.3",
  3755. "symfony/uid": "^6.4|^7.0",
  3756. "symfony/validator": "^6.4|^7.0",
  3757. "symfony/var-dumper": "^6.4|^7.0"
  3758. },
  3759. "type": "library",
  3760. "autoload": {
  3761. "psr-4": {
  3762. "Symfony\\Component\\Form\\": ""
  3763. },
  3764. "exclude-from-classmap": [
  3765. "/Tests/"
  3766. ]
  3767. },
  3768. "notification-url": "https://packagist.org/downloads/",
  3769. "license": [
  3770. "MIT"
  3771. ],
  3772. "authors": [
  3773. {
  3774. "name": "Fabien Potencier",
  3775. "email": "fabien@symfony.com"
  3776. },
  3777. {
  3778. "name": "Symfony Community",
  3779. "homepage": "https://symfony.com/contributors"
  3780. }
  3781. ],
  3782. "description": "Allows to easily create, process and reuse HTML forms",
  3783. "homepage": "https://symfony.com",
  3784. "support": {
  3785. "source": "https://github.com/symfony/form/tree/v7.3.1"
  3786. },
  3787. "funding": [
  3788. {
  3789. "url": "https://symfony.com/sponsor",
  3790. "type": "custom"
  3791. },
  3792. {
  3793. "url": "https://github.com/fabpot",
  3794. "type": "github"
  3795. },
  3796. {
  3797. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3798. "type": "tidelift"
  3799. }
  3800. ],
  3801. "time": "2025-06-13T07:48:40+00:00"
  3802. },
  3803. {
  3804. "name": "symfony/framework-bundle",
  3805. "version": "v7.3.1",
  3806. "source": {
  3807. "type": "git",
  3808. "url": "https://github.com/symfony/framework-bundle.git",
  3809. "reference": "91905f22f26aa350a33b3b9690bdf94976b0d0ab"
  3810. },
  3811. "dist": {
  3812. "type": "zip",
  3813. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/91905f22f26aa350a33b3b9690bdf94976b0d0ab",
  3814. "reference": "91905f22f26aa350a33b3b9690bdf94976b0d0ab",
  3815. "shasum": ""
  3816. },
  3817. "require": {
  3818. "composer-runtime-api": ">=2.1",
  3819. "ext-xml": "*",
  3820. "php": ">=8.2",
  3821. "symfony/cache": "^6.4|^7.0",
  3822. "symfony/config": "^7.3",
  3823. "symfony/dependency-injection": "^7.2",
  3824. "symfony/deprecation-contracts": "^2.5|^3",
  3825. "symfony/error-handler": "^7.3",
  3826. "symfony/event-dispatcher": "^6.4|^7.0",
  3827. "symfony/filesystem": "^7.1",
  3828. "symfony/finder": "^6.4|^7.0",
  3829. "symfony/http-foundation": "^7.3",
  3830. "symfony/http-kernel": "^7.2",
  3831. "symfony/polyfill-mbstring": "~1.0",
  3832. "symfony/routing": "^6.4|^7.0"
  3833. },
  3834. "conflict": {
  3835. "doctrine/persistence": "<1.3",
  3836. "phpdocumentor/reflection-docblock": "<3.2.2",
  3837. "phpdocumentor/type-resolver": "<1.4.0",
  3838. "symfony/asset": "<6.4",
  3839. "symfony/asset-mapper": "<6.4",
  3840. "symfony/clock": "<6.4",
  3841. "symfony/console": "<6.4",
  3842. "symfony/dom-crawler": "<6.4",
  3843. "symfony/dotenv": "<6.4",
  3844. "symfony/form": "<6.4",
  3845. "symfony/http-client": "<6.4",
  3846. "symfony/json-streamer": ">=7.4",
  3847. "symfony/lock": "<6.4",
  3848. "symfony/mailer": "<6.4",
  3849. "symfony/messenger": "<6.4",
  3850. "symfony/mime": "<6.4",
  3851. "symfony/object-mapper": ">=7.4",
  3852. "symfony/property-access": "<6.4",
  3853. "symfony/property-info": "<6.4",
  3854. "symfony/runtime": "<6.4.13|>=7.0,<7.1.6",
  3855. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  3856. "symfony/security-core": "<6.4",
  3857. "symfony/security-csrf": "<7.2",
  3858. "symfony/serializer": "<7.2.5",
  3859. "symfony/stopwatch": "<6.4",
  3860. "symfony/translation": "<7.3",
  3861. "symfony/twig-bridge": "<6.4",
  3862. "symfony/twig-bundle": "<6.4",
  3863. "symfony/validator": "<6.4",
  3864. "symfony/web-profiler-bundle": "<6.4",
  3865. "symfony/webhook": "<7.2",
  3866. "symfony/workflow": "<7.3.0-beta2"
  3867. },
  3868. "require-dev": {
  3869. "doctrine/persistence": "^1.3|^2|^3",
  3870. "dragonmantank/cron-expression": "^3.1",
  3871. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3872. "seld/jsonlint": "^1.10",
  3873. "symfony/asset": "^6.4|^7.0",
  3874. "symfony/asset-mapper": "^6.4|^7.0",
  3875. "symfony/browser-kit": "^6.4|^7.0",
  3876. "symfony/clock": "^6.4|^7.0",
  3877. "symfony/console": "^6.4|^7.0",
  3878. "symfony/css-selector": "^6.4|^7.0",
  3879. "symfony/dom-crawler": "^6.4|^7.0",
  3880. "symfony/dotenv": "^6.4|^7.0",
  3881. "symfony/expression-language": "^6.4|^7.0",
  3882. "symfony/form": "^6.4|^7.0",
  3883. "symfony/html-sanitizer": "^6.4|^7.0",
  3884. "symfony/http-client": "^6.4|^7.0",
  3885. "symfony/json-streamer": "7.3.*",
  3886. "symfony/lock": "^6.4|^7.0",
  3887. "symfony/mailer": "^6.4|^7.0",
  3888. "symfony/messenger": "^6.4|^7.0",
  3889. "symfony/mime": "^6.4|^7.0",
  3890. "symfony/notifier": "^6.4|^7.0",
  3891. "symfony/object-mapper": "^v7.3.0-beta2",
  3892. "symfony/polyfill-intl-icu": "~1.0",
  3893. "symfony/process": "^6.4|^7.0",
  3894. "symfony/property-info": "^6.4|^7.0",
  3895. "symfony/rate-limiter": "^6.4|^7.0",
  3896. "symfony/scheduler": "^6.4.4|^7.0.4",
  3897. "symfony/security-bundle": "^6.4|^7.0",
  3898. "symfony/semaphore": "^6.4|^7.0",
  3899. "symfony/serializer": "^7.2.5",
  3900. "symfony/stopwatch": "^6.4|^7.0",
  3901. "symfony/string": "^6.4|^7.0",
  3902. "symfony/translation": "^7.3",
  3903. "symfony/twig-bundle": "^6.4|^7.0",
  3904. "symfony/type-info": "^7.1",
  3905. "symfony/uid": "^6.4|^7.0",
  3906. "symfony/validator": "^6.4|^7.0",
  3907. "symfony/web-link": "^6.4|^7.0",
  3908. "symfony/webhook": "^7.2",
  3909. "symfony/workflow": "^7.3",
  3910. "symfony/yaml": "^6.4|^7.0",
  3911. "twig/twig": "^3.12"
  3912. },
  3913. "type": "symfony-bundle",
  3914. "autoload": {
  3915. "psr-4": {
  3916. "Symfony\\Bundle\\FrameworkBundle\\": ""
  3917. },
  3918. "exclude-from-classmap": [
  3919. "/Tests/"
  3920. ]
  3921. },
  3922. "notification-url": "https://packagist.org/downloads/",
  3923. "license": [
  3924. "MIT"
  3925. ],
  3926. "authors": [
  3927. {
  3928. "name": "Fabien Potencier",
  3929. "email": "fabien@symfony.com"
  3930. },
  3931. {
  3932. "name": "Symfony Community",
  3933. "homepage": "https://symfony.com/contributors"
  3934. }
  3935. ],
  3936. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  3937. "homepage": "https://symfony.com",
  3938. "support": {
  3939. "source": "https://github.com/symfony/framework-bundle/tree/v7.3.1"
  3940. },
  3941. "funding": [
  3942. {
  3943. "url": "https://symfony.com/sponsor",
  3944. "type": "custom"
  3945. },
  3946. {
  3947. "url": "https://github.com/fabpot",
  3948. "type": "github"
  3949. },
  3950. {
  3951. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3952. "type": "tidelift"
  3953. }
  3954. ],
  3955. "time": "2025-06-27T19:55:54+00:00"
  3956. },
  3957. {
  3958. "name": "symfony/http-client",
  3959. "version": "v7.3.1",
  3960. "source": {
  3961. "type": "git",
  3962. "url": "https://github.com/symfony/http-client.git",
  3963. "reference": "4403d87a2c16f33345dca93407a8714ee8c05a64"
  3964. },
  3965. "dist": {
  3966. "type": "zip",
  3967. "url": "https://api.github.com/repos/symfony/http-client/zipball/4403d87a2c16f33345dca93407a8714ee8c05a64",
  3968. "reference": "4403d87a2c16f33345dca93407a8714ee8c05a64",
  3969. "shasum": ""
  3970. },
  3971. "require": {
  3972. "php": ">=8.2",
  3973. "psr/log": "^1|^2|^3",
  3974. "symfony/deprecation-contracts": "^2.5|^3",
  3975. "symfony/http-client-contracts": "~3.4.4|^3.5.2",
  3976. "symfony/service-contracts": "^2.5|^3"
  3977. },
  3978. "conflict": {
  3979. "amphp/amp": "<2.5",
  3980. "amphp/socket": "<1.1",
  3981. "php-http/discovery": "<1.15",
  3982. "symfony/http-foundation": "<6.4"
  3983. },
  3984. "provide": {
  3985. "php-http/async-client-implementation": "*",
  3986. "php-http/client-implementation": "*",
  3987. "psr/http-client-implementation": "1.0",
  3988. "symfony/http-client-implementation": "3.0"
  3989. },
  3990. "require-dev": {
  3991. "amphp/http-client": "^4.2.1|^5.0",
  3992. "amphp/http-tunnel": "^1.0|^2.0",
  3993. "guzzlehttp/promises": "^1.4|^2.0",
  3994. "nyholm/psr7": "^1.0",
  3995. "php-http/httplug": "^1.0|^2.0",
  3996. "psr/http-client": "^1.0",
  3997. "symfony/amphp-http-client-meta": "^1.0|^2.0",
  3998. "symfony/dependency-injection": "^6.4|^7.0",
  3999. "symfony/http-kernel": "^6.4|^7.0",
  4000. "symfony/messenger": "^6.4|^7.0",
  4001. "symfony/process": "^6.4|^7.0",
  4002. "symfony/rate-limiter": "^6.4|^7.0",
  4003. "symfony/stopwatch": "^6.4|^7.0"
  4004. },
  4005. "type": "library",
  4006. "autoload": {
  4007. "psr-4": {
  4008. "Symfony\\Component\\HttpClient\\": ""
  4009. },
  4010. "exclude-from-classmap": [
  4011. "/Tests/"
  4012. ]
  4013. },
  4014. "notification-url": "https://packagist.org/downloads/",
  4015. "license": [
  4016. "MIT"
  4017. ],
  4018. "authors": [
  4019. {
  4020. "name": "Nicolas Grekas",
  4021. "email": "p@tchwork.com"
  4022. },
  4023. {
  4024. "name": "Symfony Community",
  4025. "homepage": "https://symfony.com/contributors"
  4026. }
  4027. ],
  4028. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  4029. "homepage": "https://symfony.com",
  4030. "keywords": [
  4031. "http"
  4032. ],
  4033. "support": {
  4034. "source": "https://github.com/symfony/http-client/tree/v7.3.1"
  4035. },
  4036. "funding": [
  4037. {
  4038. "url": "https://symfony.com/sponsor",
  4039. "type": "custom"
  4040. },
  4041. {
  4042. "url": "https://github.com/fabpot",
  4043. "type": "github"
  4044. },
  4045. {
  4046. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4047. "type": "tidelift"
  4048. }
  4049. ],
  4050. "time": "2025-06-28T07:58:39+00:00"
  4051. },
  4052. {
  4053. "name": "symfony/http-client-contracts",
  4054. "version": "v3.6.0",
  4055. "source": {
  4056. "type": "git",
  4057. "url": "https://github.com/symfony/http-client-contracts.git",
  4058. "reference": "75d7043853a42837e68111812f4d964b01e5101c"
  4059. },
  4060. "dist": {
  4061. "type": "zip",
  4062. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/75d7043853a42837e68111812f4d964b01e5101c",
  4063. "reference": "75d7043853a42837e68111812f4d964b01e5101c",
  4064. "shasum": ""
  4065. },
  4066. "require": {
  4067. "php": ">=8.1"
  4068. },
  4069. "type": "library",
  4070. "extra": {
  4071. "thanks": {
  4072. "url": "https://github.com/symfony/contracts",
  4073. "name": "symfony/contracts"
  4074. },
  4075. "branch-alias": {
  4076. "dev-main": "3.6-dev"
  4077. }
  4078. },
  4079. "autoload": {
  4080. "psr-4": {
  4081. "Symfony\\Contracts\\HttpClient\\": ""
  4082. },
  4083. "exclude-from-classmap": [
  4084. "/Test/"
  4085. ]
  4086. },
  4087. "notification-url": "https://packagist.org/downloads/",
  4088. "license": [
  4089. "MIT"
  4090. ],
  4091. "authors": [
  4092. {
  4093. "name": "Nicolas Grekas",
  4094. "email": "p@tchwork.com"
  4095. },
  4096. {
  4097. "name": "Symfony Community",
  4098. "homepage": "https://symfony.com/contributors"
  4099. }
  4100. ],
  4101. "description": "Generic abstractions related to HTTP clients",
  4102. "homepage": "https://symfony.com",
  4103. "keywords": [
  4104. "abstractions",
  4105. "contracts",
  4106. "decoupling",
  4107. "interfaces",
  4108. "interoperability",
  4109. "standards"
  4110. ],
  4111. "support": {
  4112. "source": "https://github.com/symfony/http-client-contracts/tree/v3.6.0"
  4113. },
  4114. "funding": [
  4115. {
  4116. "url": "https://symfony.com/sponsor",
  4117. "type": "custom"
  4118. },
  4119. {
  4120. "url": "https://github.com/fabpot",
  4121. "type": "github"
  4122. },
  4123. {
  4124. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4125. "type": "tidelift"
  4126. }
  4127. ],
  4128. "time": "2025-04-29T11:18:49+00:00"
  4129. },
  4130. {
  4131. "name": "symfony/http-foundation",
  4132. "version": "v7.3.1",
  4133. "source": {
  4134. "type": "git",
  4135. "url": "https://github.com/symfony/http-foundation.git",
  4136. "reference": "23dd60256610c86a3414575b70c596e5deff6ed9"
  4137. },
  4138. "dist": {
  4139. "type": "zip",
  4140. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/23dd60256610c86a3414575b70c596e5deff6ed9",
  4141. "reference": "23dd60256610c86a3414575b70c596e5deff6ed9",
  4142. "shasum": ""
  4143. },
  4144. "require": {
  4145. "php": ">=8.2",
  4146. "symfony/deprecation-contracts": "^2.5|^3.0",
  4147. "symfony/polyfill-mbstring": "~1.1",
  4148. "symfony/polyfill-php83": "^1.27"
  4149. },
  4150. "conflict": {
  4151. "doctrine/dbal": "<3.6",
  4152. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  4153. },
  4154. "require-dev": {
  4155. "doctrine/dbal": "^3.6|^4",
  4156. "predis/predis": "^1.1|^2.0",
  4157. "symfony/cache": "^6.4.12|^7.1.5",
  4158. "symfony/clock": "^6.4|^7.0",
  4159. "symfony/dependency-injection": "^6.4|^7.0",
  4160. "symfony/expression-language": "^6.4|^7.0",
  4161. "symfony/http-kernel": "^6.4|^7.0",
  4162. "symfony/mime": "^6.4|^7.0",
  4163. "symfony/rate-limiter": "^6.4|^7.0"
  4164. },
  4165. "type": "library",
  4166. "autoload": {
  4167. "psr-4": {
  4168. "Symfony\\Component\\HttpFoundation\\": ""
  4169. },
  4170. "exclude-from-classmap": [
  4171. "/Tests/"
  4172. ]
  4173. },
  4174. "notification-url": "https://packagist.org/downloads/",
  4175. "license": [
  4176. "MIT"
  4177. ],
  4178. "authors": [
  4179. {
  4180. "name": "Fabien Potencier",
  4181. "email": "fabien@symfony.com"
  4182. },
  4183. {
  4184. "name": "Symfony Community",
  4185. "homepage": "https://symfony.com/contributors"
  4186. }
  4187. ],
  4188. "description": "Defines an object-oriented layer for the HTTP specification",
  4189. "homepage": "https://symfony.com",
  4190. "support": {
  4191. "source": "https://github.com/symfony/http-foundation/tree/v7.3.1"
  4192. },
  4193. "funding": [
  4194. {
  4195. "url": "https://symfony.com/sponsor",
  4196. "type": "custom"
  4197. },
  4198. {
  4199. "url": "https://github.com/fabpot",
  4200. "type": "github"
  4201. },
  4202. {
  4203. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4204. "type": "tidelift"
  4205. }
  4206. ],
  4207. "time": "2025-06-23T15:07:14+00:00"
  4208. },
  4209. {
  4210. "name": "symfony/http-kernel",
  4211. "version": "v7.3.1",
  4212. "source": {
  4213. "type": "git",
  4214. "url": "https://github.com/symfony/http-kernel.git",
  4215. "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831"
  4216. },
  4217. "dist": {
  4218. "type": "zip",
  4219. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1644879a66e4aa29c36fe33dfa6c54b450ce1831",
  4220. "reference": "1644879a66e4aa29c36fe33dfa6c54b450ce1831",
  4221. "shasum": ""
  4222. },
  4223. "require": {
  4224. "php": ">=8.2",
  4225. "psr/log": "^1|^2|^3",
  4226. "symfony/deprecation-contracts": "^2.5|^3",
  4227. "symfony/error-handler": "^6.4|^7.0",
  4228. "symfony/event-dispatcher": "^7.3",
  4229. "symfony/http-foundation": "^7.3",
  4230. "symfony/polyfill-ctype": "^1.8"
  4231. },
  4232. "conflict": {
  4233. "symfony/browser-kit": "<6.4",
  4234. "symfony/cache": "<6.4",
  4235. "symfony/config": "<6.4",
  4236. "symfony/console": "<6.4",
  4237. "symfony/dependency-injection": "<6.4",
  4238. "symfony/doctrine-bridge": "<6.4",
  4239. "symfony/form": "<6.4",
  4240. "symfony/http-client": "<6.4",
  4241. "symfony/http-client-contracts": "<2.5",
  4242. "symfony/mailer": "<6.4",
  4243. "symfony/messenger": "<6.4",
  4244. "symfony/translation": "<6.4",
  4245. "symfony/translation-contracts": "<2.5",
  4246. "symfony/twig-bridge": "<6.4",
  4247. "symfony/validator": "<6.4",
  4248. "symfony/var-dumper": "<6.4",
  4249. "twig/twig": "<3.12"
  4250. },
  4251. "provide": {
  4252. "psr/log-implementation": "1.0|2.0|3.0"
  4253. },
  4254. "require-dev": {
  4255. "psr/cache": "^1.0|^2.0|^3.0",
  4256. "symfony/browser-kit": "^6.4|^7.0",
  4257. "symfony/clock": "^6.4|^7.0",
  4258. "symfony/config": "^6.4|^7.0",
  4259. "symfony/console": "^6.4|^7.0",
  4260. "symfony/css-selector": "^6.4|^7.0",
  4261. "symfony/dependency-injection": "^6.4|^7.0",
  4262. "symfony/dom-crawler": "^6.4|^7.0",
  4263. "symfony/expression-language": "^6.4|^7.0",
  4264. "symfony/finder": "^6.4|^7.0",
  4265. "symfony/http-client-contracts": "^2.5|^3",
  4266. "symfony/process": "^6.4|^7.0",
  4267. "symfony/property-access": "^7.1",
  4268. "symfony/routing": "^6.4|^7.0",
  4269. "symfony/serializer": "^7.1",
  4270. "symfony/stopwatch": "^6.4|^7.0",
  4271. "symfony/translation": "^6.4|^7.0",
  4272. "symfony/translation-contracts": "^2.5|^3",
  4273. "symfony/uid": "^6.4|^7.0",
  4274. "symfony/validator": "^6.4|^7.0",
  4275. "symfony/var-dumper": "^6.4|^7.0",
  4276. "symfony/var-exporter": "^6.4|^7.0",
  4277. "twig/twig": "^3.12"
  4278. },
  4279. "type": "library",
  4280. "autoload": {
  4281. "psr-4": {
  4282. "Symfony\\Component\\HttpKernel\\": ""
  4283. },
  4284. "exclude-from-classmap": [
  4285. "/Tests/"
  4286. ]
  4287. },
  4288. "notification-url": "https://packagist.org/downloads/",
  4289. "license": [
  4290. "MIT"
  4291. ],
  4292. "authors": [
  4293. {
  4294. "name": "Fabien Potencier",
  4295. "email": "fabien@symfony.com"
  4296. },
  4297. {
  4298. "name": "Symfony Community",
  4299. "homepage": "https://symfony.com/contributors"
  4300. }
  4301. ],
  4302. "description": "Provides a structured process for converting a Request into a Response",
  4303. "homepage": "https://symfony.com",
  4304. "support": {
  4305. "source": "https://github.com/symfony/http-kernel/tree/v7.3.1"
  4306. },
  4307. "funding": [
  4308. {
  4309. "url": "https://symfony.com/sponsor",
  4310. "type": "custom"
  4311. },
  4312. {
  4313. "url": "https://github.com/fabpot",
  4314. "type": "github"
  4315. },
  4316. {
  4317. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4318. "type": "tidelift"
  4319. }
  4320. ],
  4321. "time": "2025-06-28T08:24:55+00:00"
  4322. },
  4323. {
  4324. "name": "symfony/intl",
  4325. "version": "v7.3.1",
  4326. "source": {
  4327. "type": "git",
  4328. "url": "https://github.com/symfony/intl.git",
  4329. "reference": "bd50940329ac1cfc4af0491cc4468f477d967e45"
  4330. },
  4331. "dist": {
  4332. "type": "zip",
  4333. "url": "https://api.github.com/repos/symfony/intl/zipball/bd50940329ac1cfc4af0491cc4468f477d967e45",
  4334. "reference": "bd50940329ac1cfc4af0491cc4468f477d967e45",
  4335. "shasum": ""
  4336. },
  4337. "require": {
  4338. "php": ">=8.2",
  4339. "symfony/deprecation-contracts": "^2.5|^3"
  4340. },
  4341. "conflict": {
  4342. "symfony/string": "<7.1"
  4343. },
  4344. "require-dev": {
  4345. "symfony/filesystem": "^6.4|^7.0",
  4346. "symfony/var-exporter": "^6.4|^7.0"
  4347. },
  4348. "type": "library",
  4349. "autoload": {
  4350. "psr-4": {
  4351. "Symfony\\Component\\Intl\\": ""
  4352. },
  4353. "exclude-from-classmap": [
  4354. "/Tests/",
  4355. "/Resources/data/"
  4356. ]
  4357. },
  4358. "notification-url": "https://packagist.org/downloads/",
  4359. "license": [
  4360. "MIT"
  4361. ],
  4362. "authors": [
  4363. {
  4364. "name": "Bernhard Schussek",
  4365. "email": "bschussek@gmail.com"
  4366. },
  4367. {
  4368. "name": "Eriksen Costa",
  4369. "email": "eriksen.costa@infranology.com.br"
  4370. },
  4371. {
  4372. "name": "Igor Wiedler",
  4373. "email": "igor@wiedler.ch"
  4374. },
  4375. {
  4376. "name": "Symfony Community",
  4377. "homepage": "https://symfony.com/contributors"
  4378. }
  4379. ],
  4380. "description": "Provides access to the localization data of the ICU library",
  4381. "homepage": "https://symfony.com",
  4382. "keywords": [
  4383. "i18n",
  4384. "icu",
  4385. "internationalization",
  4386. "intl",
  4387. "l10n",
  4388. "localization"
  4389. ],
  4390. "support": {
  4391. "source": "https://github.com/symfony/intl/tree/v7.3.1"
  4392. },
  4393. "funding": [
  4394. {
  4395. "url": "https://symfony.com/sponsor",
  4396. "type": "custom"
  4397. },
  4398. {
  4399. "url": "https://github.com/fabpot",
  4400. "type": "github"
  4401. },
  4402. {
  4403. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4404. "type": "tidelift"
  4405. }
  4406. ],
  4407. "time": "2025-06-06T16:10:07+00:00"
  4408. },
  4409. {
  4410. "name": "symfony/mailer",
  4411. "version": "v7.3.1",
  4412. "source": {
  4413. "type": "git",
  4414. "url": "https://github.com/symfony/mailer.git",
  4415. "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368"
  4416. },
  4417. "dist": {
  4418. "type": "zip",
  4419. "url": "https://api.github.com/repos/symfony/mailer/zipball/b5db5105b290bdbea5ab27b89c69effcf1cb3368",
  4420. "reference": "b5db5105b290bdbea5ab27b89c69effcf1cb3368",
  4421. "shasum": ""
  4422. },
  4423. "require": {
  4424. "egulias/email-validator": "^2.1.10|^3|^4",
  4425. "php": ">=8.2",
  4426. "psr/event-dispatcher": "^1",
  4427. "psr/log": "^1|^2|^3",
  4428. "symfony/event-dispatcher": "^6.4|^7.0",
  4429. "symfony/mime": "^7.2",
  4430. "symfony/service-contracts": "^2.5|^3"
  4431. },
  4432. "conflict": {
  4433. "symfony/http-client-contracts": "<2.5",
  4434. "symfony/http-kernel": "<6.4",
  4435. "symfony/messenger": "<6.4",
  4436. "symfony/mime": "<6.4",
  4437. "symfony/twig-bridge": "<6.4"
  4438. },
  4439. "require-dev": {
  4440. "symfony/console": "^6.4|^7.0",
  4441. "symfony/http-client": "^6.4|^7.0",
  4442. "symfony/messenger": "^6.4|^7.0",
  4443. "symfony/twig-bridge": "^6.4|^7.0"
  4444. },
  4445. "type": "library",
  4446. "autoload": {
  4447. "psr-4": {
  4448. "Symfony\\Component\\Mailer\\": ""
  4449. },
  4450. "exclude-from-classmap": [
  4451. "/Tests/"
  4452. ]
  4453. },
  4454. "notification-url": "https://packagist.org/downloads/",
  4455. "license": [
  4456. "MIT"
  4457. ],
  4458. "authors": [
  4459. {
  4460. "name": "Fabien Potencier",
  4461. "email": "fabien@symfony.com"
  4462. },
  4463. {
  4464. "name": "Symfony Community",
  4465. "homepage": "https://symfony.com/contributors"
  4466. }
  4467. ],
  4468. "description": "Helps sending emails",
  4469. "homepage": "https://symfony.com",
  4470. "support": {
  4471. "source": "https://github.com/symfony/mailer/tree/v7.3.1"
  4472. },
  4473. "funding": [
  4474. {
  4475. "url": "https://symfony.com/sponsor",
  4476. "type": "custom"
  4477. },
  4478. {
  4479. "url": "https://github.com/fabpot",
  4480. "type": "github"
  4481. },
  4482. {
  4483. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4484. "type": "tidelift"
  4485. }
  4486. ],
  4487. "time": "2025-06-27T19:55:54+00:00"
  4488. },
  4489. {
  4490. "name": "symfony/messenger",
  4491. "version": "v7.3.1",
  4492. "source": {
  4493. "type": "git",
  4494. "url": "https://github.com/symfony/messenger.git",
  4495. "reference": "716c89b86ce58c4946d436d862694971c999d1aa"
  4496. },
  4497. "dist": {
  4498. "type": "zip",
  4499. "url": "https://api.github.com/repos/symfony/messenger/zipball/716c89b86ce58c4946d436d862694971c999d1aa",
  4500. "reference": "716c89b86ce58c4946d436d862694971c999d1aa",
  4501. "shasum": ""
  4502. },
  4503. "require": {
  4504. "php": ">=8.2",
  4505. "psr/log": "^1|^2|^3",
  4506. "symfony/clock": "^6.4|^7.0",
  4507. "symfony/deprecation-contracts": "^2.5|^3"
  4508. },
  4509. "conflict": {
  4510. "symfony/console": "<7.2",
  4511. "symfony/event-dispatcher": "<6.4",
  4512. "symfony/event-dispatcher-contracts": "<2.5",
  4513. "symfony/framework-bundle": "<6.4",
  4514. "symfony/http-kernel": "<6.4",
  4515. "symfony/lock": "<6.4",
  4516. "symfony/serializer": "<6.4"
  4517. },
  4518. "require-dev": {
  4519. "psr/cache": "^1.0|^2.0|^3.0",
  4520. "symfony/console": "^7.2",
  4521. "symfony/dependency-injection": "^6.4|^7.0",
  4522. "symfony/event-dispatcher": "^6.4|^7.0",
  4523. "symfony/http-kernel": "^6.4|^7.0",
  4524. "symfony/lock": "^6.4|^7.0",
  4525. "symfony/process": "^6.4|^7.0",
  4526. "symfony/property-access": "^6.4|^7.0",
  4527. "symfony/rate-limiter": "^6.4|^7.0",
  4528. "symfony/routing": "^6.4|^7.0",
  4529. "symfony/serializer": "^6.4|^7.0",
  4530. "symfony/service-contracts": "^2.5|^3",
  4531. "symfony/stopwatch": "^6.4|^7.0",
  4532. "symfony/validator": "^6.4|^7.0"
  4533. },
  4534. "type": "library",
  4535. "autoload": {
  4536. "psr-4": {
  4537. "Symfony\\Component\\Messenger\\": ""
  4538. },
  4539. "exclude-from-classmap": [
  4540. "/Tests/"
  4541. ]
  4542. },
  4543. "notification-url": "https://packagist.org/downloads/",
  4544. "license": [
  4545. "MIT"
  4546. ],
  4547. "authors": [
  4548. {
  4549. "name": "Samuel Roze",
  4550. "email": "samuel.roze@gmail.com"
  4551. },
  4552. {
  4553. "name": "Symfony Community",
  4554. "homepage": "https://symfony.com/contributors"
  4555. }
  4556. ],
  4557. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  4558. "homepage": "https://symfony.com",
  4559. "support": {
  4560. "source": "https://github.com/symfony/messenger/tree/v7.3.1"
  4561. },
  4562. "funding": [
  4563. {
  4564. "url": "https://symfony.com/sponsor",
  4565. "type": "custom"
  4566. },
  4567. {
  4568. "url": "https://github.com/fabpot",
  4569. "type": "github"
  4570. },
  4571. {
  4572. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4573. "type": "tidelift"
  4574. }
  4575. ],
  4576. "time": "2025-06-27T19:55:54+00:00"
  4577. },
  4578. {
  4579. "name": "symfony/mime",
  4580. "version": "v7.3.0",
  4581. "source": {
  4582. "type": "git",
  4583. "url": "https://github.com/symfony/mime.git",
  4584. "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9"
  4585. },
  4586. "dist": {
  4587. "type": "zip",
  4588. "url": "https://api.github.com/repos/symfony/mime/zipball/0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
  4589. "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
  4590. "shasum": ""
  4591. },
  4592. "require": {
  4593. "php": ">=8.2",
  4594. "symfony/polyfill-intl-idn": "^1.10",
  4595. "symfony/polyfill-mbstring": "^1.0"
  4596. },
  4597. "conflict": {
  4598. "egulias/email-validator": "~3.0.0",
  4599. "phpdocumentor/reflection-docblock": "<3.2.2",
  4600. "phpdocumentor/type-resolver": "<1.4.0",
  4601. "symfony/mailer": "<6.4",
  4602. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  4603. },
  4604. "require-dev": {
  4605. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4606. "league/html-to-markdown": "^5.0",
  4607. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4608. "symfony/dependency-injection": "^6.4|^7.0",
  4609. "symfony/process": "^6.4|^7.0",
  4610. "symfony/property-access": "^6.4|^7.0",
  4611. "symfony/property-info": "^6.4|^7.0",
  4612. "symfony/serializer": "^6.4.3|^7.0.3"
  4613. },
  4614. "type": "library",
  4615. "autoload": {
  4616. "psr-4": {
  4617. "Symfony\\Component\\Mime\\": ""
  4618. },
  4619. "exclude-from-classmap": [
  4620. "/Tests/"
  4621. ]
  4622. },
  4623. "notification-url": "https://packagist.org/downloads/",
  4624. "license": [
  4625. "MIT"
  4626. ],
  4627. "authors": [
  4628. {
  4629. "name": "Fabien Potencier",
  4630. "email": "fabien@symfony.com"
  4631. },
  4632. {
  4633. "name": "Symfony Community",
  4634. "homepage": "https://symfony.com/contributors"
  4635. }
  4636. ],
  4637. "description": "Allows manipulating MIME messages",
  4638. "homepage": "https://symfony.com",
  4639. "keywords": [
  4640. "mime",
  4641. "mime-type"
  4642. ],
  4643. "support": {
  4644. "source": "https://github.com/symfony/mime/tree/v7.3.0"
  4645. },
  4646. "funding": [
  4647. {
  4648. "url": "https://symfony.com/sponsor",
  4649. "type": "custom"
  4650. },
  4651. {
  4652. "url": "https://github.com/fabpot",
  4653. "type": "github"
  4654. },
  4655. {
  4656. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4657. "type": "tidelift"
  4658. }
  4659. ],
  4660. "time": "2025-02-19T08:51:26+00:00"
  4661. },
  4662. {
  4663. "name": "symfony/monolog-bridge",
  4664. "version": "v7.3.0",
  4665. "source": {
  4666. "type": "git",
  4667. "url": "https://github.com/symfony/monolog-bridge.git",
  4668. "reference": "1b188c8abbbef25b111da878797514b7a8d33990"
  4669. },
  4670. "dist": {
  4671. "type": "zip",
  4672. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/1b188c8abbbef25b111da878797514b7a8d33990",
  4673. "reference": "1b188c8abbbef25b111da878797514b7a8d33990",
  4674. "shasum": ""
  4675. },
  4676. "require": {
  4677. "monolog/monolog": "^3",
  4678. "php": ">=8.2",
  4679. "symfony/http-kernel": "^6.4|^7.0",
  4680. "symfony/service-contracts": "^2.5|^3"
  4681. },
  4682. "conflict": {
  4683. "symfony/console": "<6.4",
  4684. "symfony/http-foundation": "<6.4",
  4685. "symfony/security-core": "<6.4"
  4686. },
  4687. "require-dev": {
  4688. "symfony/console": "^6.4|^7.0",
  4689. "symfony/http-client": "^6.4|^7.0",
  4690. "symfony/mailer": "^6.4|^7.0",
  4691. "symfony/messenger": "^6.4|^7.0",
  4692. "symfony/mime": "^6.4|^7.0",
  4693. "symfony/security-core": "^6.4|^7.0",
  4694. "symfony/var-dumper": "^6.4|^7.0"
  4695. },
  4696. "type": "symfony-bridge",
  4697. "autoload": {
  4698. "psr-4": {
  4699. "Symfony\\Bridge\\Monolog\\": ""
  4700. },
  4701. "exclude-from-classmap": [
  4702. "/Tests/"
  4703. ]
  4704. },
  4705. "notification-url": "https://packagist.org/downloads/",
  4706. "license": [
  4707. "MIT"
  4708. ],
  4709. "authors": [
  4710. {
  4711. "name": "Fabien Potencier",
  4712. "email": "fabien@symfony.com"
  4713. },
  4714. {
  4715. "name": "Symfony Community",
  4716. "homepage": "https://symfony.com/contributors"
  4717. }
  4718. ],
  4719. "description": "Provides integration for Monolog with various Symfony components",
  4720. "homepage": "https://symfony.com",
  4721. "support": {
  4722. "source": "https://github.com/symfony/monolog-bridge/tree/v7.3.0"
  4723. },
  4724. "funding": [
  4725. {
  4726. "url": "https://symfony.com/sponsor",
  4727. "type": "custom"
  4728. },
  4729. {
  4730. "url": "https://github.com/fabpot",
  4731. "type": "github"
  4732. },
  4733. {
  4734. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4735. "type": "tidelift"
  4736. }
  4737. ],
  4738. "time": "2025-03-21T12:17:46+00:00"
  4739. },
  4740. {
  4741. "name": "symfony/monolog-bundle",
  4742. "version": "v3.10.0",
  4743. "source": {
  4744. "type": "git",
  4745. "url": "https://github.com/symfony/monolog-bundle.git",
  4746. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  4747. },
  4748. "dist": {
  4749. "type": "zip",
  4750. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  4751. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  4752. "shasum": ""
  4753. },
  4754. "require": {
  4755. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  4756. "php": ">=7.2.5",
  4757. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  4758. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  4759. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  4760. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  4761. },
  4762. "require-dev": {
  4763. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  4764. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  4765. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  4766. },
  4767. "type": "symfony-bundle",
  4768. "extra": {
  4769. "branch-alias": {
  4770. "dev-master": "3.x-dev"
  4771. }
  4772. },
  4773. "autoload": {
  4774. "psr-4": {
  4775. "Symfony\\Bundle\\MonologBundle\\": ""
  4776. },
  4777. "exclude-from-classmap": [
  4778. "/Tests/"
  4779. ]
  4780. },
  4781. "notification-url": "https://packagist.org/downloads/",
  4782. "license": [
  4783. "MIT"
  4784. ],
  4785. "authors": [
  4786. {
  4787. "name": "Fabien Potencier",
  4788. "email": "fabien@symfony.com"
  4789. },
  4790. {
  4791. "name": "Symfony Community",
  4792. "homepage": "https://symfony.com/contributors"
  4793. }
  4794. ],
  4795. "description": "Symfony MonologBundle",
  4796. "homepage": "https://symfony.com",
  4797. "keywords": [
  4798. "log",
  4799. "logging"
  4800. ],
  4801. "support": {
  4802. "issues": "https://github.com/symfony/monolog-bundle/issues",
  4803. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  4804. },
  4805. "funding": [
  4806. {
  4807. "url": "https://symfony.com/sponsor",
  4808. "type": "custom"
  4809. },
  4810. {
  4811. "url": "https://github.com/fabpot",
  4812. "type": "github"
  4813. },
  4814. {
  4815. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4816. "type": "tidelift"
  4817. }
  4818. ],
  4819. "time": "2023-11-06T17:08:13+00:00"
  4820. },
  4821. {
  4822. "name": "symfony/notifier",
  4823. "version": "v7.3.0",
  4824. "source": {
  4825. "type": "git",
  4826. "url": "https://github.com/symfony/notifier.git",
  4827. "reference": "9e68a3266c8b0381f8756022b1c1ba3c0264416e"
  4828. },
  4829. "dist": {
  4830. "type": "zip",
  4831. "url": "https://api.github.com/repos/symfony/notifier/zipball/9e68a3266c8b0381f8756022b1c1ba3c0264416e",
  4832. "reference": "9e68a3266c8b0381f8756022b1c1ba3c0264416e",
  4833. "shasum": ""
  4834. },
  4835. "require": {
  4836. "php": ">=8.2",
  4837. "psr/log": "^1|^2|^3"
  4838. },
  4839. "conflict": {
  4840. "symfony/event-dispatcher": "<6.4",
  4841. "symfony/event-dispatcher-contracts": "<2.5",
  4842. "symfony/http-client-contracts": "<2.5",
  4843. "symfony/http-kernel": "<6.4"
  4844. },
  4845. "require-dev": {
  4846. "symfony/event-dispatcher-contracts": "^2.5|^3",
  4847. "symfony/http-client-contracts": "^2.5|^3",
  4848. "symfony/http-foundation": "^6.4|^7.0",
  4849. "symfony/messenger": "^6.4|^7.0"
  4850. },
  4851. "type": "library",
  4852. "autoload": {
  4853. "psr-4": {
  4854. "Symfony\\Component\\Notifier\\": ""
  4855. },
  4856. "exclude-from-classmap": [
  4857. "/Tests/"
  4858. ]
  4859. },
  4860. "notification-url": "https://packagist.org/downloads/",
  4861. "license": [
  4862. "MIT"
  4863. ],
  4864. "authors": [
  4865. {
  4866. "name": "Fabien Potencier",
  4867. "email": "fabien@symfony.com"
  4868. },
  4869. {
  4870. "name": "Symfony Community",
  4871. "homepage": "https://symfony.com/contributors"
  4872. }
  4873. ],
  4874. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  4875. "homepage": "https://symfony.com",
  4876. "keywords": [
  4877. "notification",
  4878. "notifier"
  4879. ],
  4880. "support": {
  4881. "source": "https://github.com/symfony/notifier/tree/v7.3.0"
  4882. },
  4883. "funding": [
  4884. {
  4885. "url": "https://symfony.com/sponsor",
  4886. "type": "custom"
  4887. },
  4888. {
  4889. "url": "https://github.com/fabpot",
  4890. "type": "github"
  4891. },
  4892. {
  4893. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4894. "type": "tidelift"
  4895. }
  4896. ],
  4897. "time": "2025-05-01T12:12:53+00:00"
  4898. },
  4899. {
  4900. "name": "symfony/options-resolver",
  4901. "version": "v7.3.0",
  4902. "source": {
  4903. "type": "git",
  4904. "url": "https://github.com/symfony/options-resolver.git",
  4905. "reference": "afb9a8038025e5dbc657378bfab9198d75f10fca"
  4906. },
  4907. "dist": {
  4908. "type": "zip",
  4909. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/afb9a8038025e5dbc657378bfab9198d75f10fca",
  4910. "reference": "afb9a8038025e5dbc657378bfab9198d75f10fca",
  4911. "shasum": ""
  4912. },
  4913. "require": {
  4914. "php": ">=8.2",
  4915. "symfony/deprecation-contracts": "^2.5|^3"
  4916. },
  4917. "type": "library",
  4918. "autoload": {
  4919. "psr-4": {
  4920. "Symfony\\Component\\OptionsResolver\\": ""
  4921. },
  4922. "exclude-from-classmap": [
  4923. "/Tests/"
  4924. ]
  4925. },
  4926. "notification-url": "https://packagist.org/downloads/",
  4927. "license": [
  4928. "MIT"
  4929. ],
  4930. "authors": [
  4931. {
  4932. "name": "Fabien Potencier",
  4933. "email": "fabien@symfony.com"
  4934. },
  4935. {
  4936. "name": "Symfony Community",
  4937. "homepage": "https://symfony.com/contributors"
  4938. }
  4939. ],
  4940. "description": "Provides an improved replacement for the array_replace PHP function",
  4941. "homepage": "https://symfony.com",
  4942. "keywords": [
  4943. "config",
  4944. "configuration",
  4945. "options"
  4946. ],
  4947. "support": {
  4948. "source": "https://github.com/symfony/options-resolver/tree/v7.3.0"
  4949. },
  4950. "funding": [
  4951. {
  4952. "url": "https://symfony.com/sponsor",
  4953. "type": "custom"
  4954. },
  4955. {
  4956. "url": "https://github.com/fabpot",
  4957. "type": "github"
  4958. },
  4959. {
  4960. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4961. "type": "tidelift"
  4962. }
  4963. ],
  4964. "time": "2025-04-04T13:12:05+00:00"
  4965. },
  4966. {
  4967. "name": "symfony/password-hasher",
  4968. "version": "v7.3.0",
  4969. "source": {
  4970. "type": "git",
  4971. "url": "https://github.com/symfony/password-hasher.git",
  4972. "reference": "31fbe66af859582a20b803f38be96be8accdf2c3"
  4973. },
  4974. "dist": {
  4975. "type": "zip",
  4976. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/31fbe66af859582a20b803f38be96be8accdf2c3",
  4977. "reference": "31fbe66af859582a20b803f38be96be8accdf2c3",
  4978. "shasum": ""
  4979. },
  4980. "require": {
  4981. "php": ">=8.2"
  4982. },
  4983. "conflict": {
  4984. "symfony/security-core": "<6.4"
  4985. },
  4986. "require-dev": {
  4987. "symfony/console": "^6.4|^7.0",
  4988. "symfony/security-core": "^6.4|^7.0"
  4989. },
  4990. "type": "library",
  4991. "autoload": {
  4992. "psr-4": {
  4993. "Symfony\\Component\\PasswordHasher\\": ""
  4994. },
  4995. "exclude-from-classmap": [
  4996. "/Tests/"
  4997. ]
  4998. },
  4999. "notification-url": "https://packagist.org/downloads/",
  5000. "license": [
  5001. "MIT"
  5002. ],
  5003. "authors": [
  5004. {
  5005. "name": "Robin Chalas",
  5006. "email": "robin.chalas@gmail.com"
  5007. },
  5008. {
  5009. "name": "Symfony Community",
  5010. "homepage": "https://symfony.com/contributors"
  5011. }
  5012. ],
  5013. "description": "Provides password hashing utilities",
  5014. "homepage": "https://symfony.com",
  5015. "keywords": [
  5016. "hashing",
  5017. "password"
  5018. ],
  5019. "support": {
  5020. "source": "https://github.com/symfony/password-hasher/tree/v7.3.0"
  5021. },
  5022. "funding": [
  5023. {
  5024. "url": "https://symfony.com/sponsor",
  5025. "type": "custom"
  5026. },
  5027. {
  5028. "url": "https://github.com/fabpot",
  5029. "type": "github"
  5030. },
  5031. {
  5032. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5033. "type": "tidelift"
  5034. }
  5035. ],
  5036. "time": "2025-02-04T08:22:58+00:00"
  5037. },
  5038. {
  5039. "name": "symfony/polyfill-intl-grapheme",
  5040. "version": "v1.32.0",
  5041. "source": {
  5042. "type": "git",
  5043. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5044. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  5045. },
  5046. "dist": {
  5047. "type": "zip",
  5048. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5049. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5050. "shasum": ""
  5051. },
  5052. "require": {
  5053. "php": ">=7.2"
  5054. },
  5055. "suggest": {
  5056. "ext-intl": "For best performance"
  5057. },
  5058. "type": "library",
  5059. "extra": {
  5060. "thanks": {
  5061. "url": "https://github.com/symfony/polyfill",
  5062. "name": "symfony/polyfill"
  5063. }
  5064. },
  5065. "autoload": {
  5066. "files": [
  5067. "bootstrap.php"
  5068. ],
  5069. "psr-4": {
  5070. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5071. }
  5072. },
  5073. "notification-url": "https://packagist.org/downloads/",
  5074. "license": [
  5075. "MIT"
  5076. ],
  5077. "authors": [
  5078. {
  5079. "name": "Nicolas Grekas",
  5080. "email": "p@tchwork.com"
  5081. },
  5082. {
  5083. "name": "Symfony Community",
  5084. "homepage": "https://symfony.com/contributors"
  5085. }
  5086. ],
  5087. "description": "Symfony polyfill for intl's grapheme_* functions",
  5088. "homepage": "https://symfony.com",
  5089. "keywords": [
  5090. "compatibility",
  5091. "grapheme",
  5092. "intl",
  5093. "polyfill",
  5094. "portable",
  5095. "shim"
  5096. ],
  5097. "support": {
  5098. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
  5099. },
  5100. "funding": [
  5101. {
  5102. "url": "https://symfony.com/sponsor",
  5103. "type": "custom"
  5104. },
  5105. {
  5106. "url": "https://github.com/fabpot",
  5107. "type": "github"
  5108. },
  5109. {
  5110. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5111. "type": "tidelift"
  5112. }
  5113. ],
  5114. "time": "2024-09-09T11:45:10+00:00"
  5115. },
  5116. {
  5117. "name": "symfony/polyfill-intl-icu",
  5118. "version": "v1.32.0",
  5119. "source": {
  5120. "type": "git",
  5121. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  5122. "reference": "763d2a91fea5681509ca01acbc1c5e450d127811"
  5123. },
  5124. "dist": {
  5125. "type": "zip",
  5126. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/763d2a91fea5681509ca01acbc1c5e450d127811",
  5127. "reference": "763d2a91fea5681509ca01acbc1c5e450d127811",
  5128. "shasum": ""
  5129. },
  5130. "require": {
  5131. "php": ">=7.2"
  5132. },
  5133. "suggest": {
  5134. "ext-intl": "For best performance and support of other locales than \"en\""
  5135. },
  5136. "type": "library",
  5137. "extra": {
  5138. "thanks": {
  5139. "url": "https://github.com/symfony/polyfill",
  5140. "name": "symfony/polyfill"
  5141. }
  5142. },
  5143. "autoload": {
  5144. "files": [
  5145. "bootstrap.php"
  5146. ],
  5147. "psr-4": {
  5148. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  5149. },
  5150. "classmap": [
  5151. "Resources/stubs"
  5152. ],
  5153. "exclude-from-classmap": [
  5154. "/Tests/"
  5155. ]
  5156. },
  5157. "notification-url": "https://packagist.org/downloads/",
  5158. "license": [
  5159. "MIT"
  5160. ],
  5161. "authors": [
  5162. {
  5163. "name": "Nicolas Grekas",
  5164. "email": "p@tchwork.com"
  5165. },
  5166. {
  5167. "name": "Symfony Community",
  5168. "homepage": "https://symfony.com/contributors"
  5169. }
  5170. ],
  5171. "description": "Symfony polyfill for intl's ICU-related data and classes",
  5172. "homepage": "https://symfony.com",
  5173. "keywords": [
  5174. "compatibility",
  5175. "icu",
  5176. "intl",
  5177. "polyfill",
  5178. "portable",
  5179. "shim"
  5180. ],
  5181. "support": {
  5182. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.32.0"
  5183. },
  5184. "funding": [
  5185. {
  5186. "url": "https://symfony.com/sponsor",
  5187. "type": "custom"
  5188. },
  5189. {
  5190. "url": "https://github.com/fabpot",
  5191. "type": "github"
  5192. },
  5193. {
  5194. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5195. "type": "tidelift"
  5196. }
  5197. ],
  5198. "time": "2024-12-21T18:38:29+00:00"
  5199. },
  5200. {
  5201. "name": "symfony/polyfill-intl-idn",
  5202. "version": "v1.32.0",
  5203. "source": {
  5204. "type": "git",
  5205. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5206. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  5207. },
  5208. "dist": {
  5209. "type": "zip",
  5210. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  5211. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  5212. "shasum": ""
  5213. },
  5214. "require": {
  5215. "php": ">=7.2",
  5216. "symfony/polyfill-intl-normalizer": "^1.10"
  5217. },
  5218. "suggest": {
  5219. "ext-intl": "For best performance"
  5220. },
  5221. "type": "library",
  5222. "extra": {
  5223. "thanks": {
  5224. "url": "https://github.com/symfony/polyfill",
  5225. "name": "symfony/polyfill"
  5226. }
  5227. },
  5228. "autoload": {
  5229. "files": [
  5230. "bootstrap.php"
  5231. ],
  5232. "psr-4": {
  5233. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5234. }
  5235. },
  5236. "notification-url": "https://packagist.org/downloads/",
  5237. "license": [
  5238. "MIT"
  5239. ],
  5240. "authors": [
  5241. {
  5242. "name": "Laurent Bassin",
  5243. "email": "laurent@bassin.info"
  5244. },
  5245. {
  5246. "name": "Trevor Rowbotham",
  5247. "email": "trevor.rowbotham@pm.me"
  5248. },
  5249. {
  5250. "name": "Symfony Community",
  5251. "homepage": "https://symfony.com/contributors"
  5252. }
  5253. ],
  5254. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5255. "homepage": "https://symfony.com",
  5256. "keywords": [
  5257. "compatibility",
  5258. "idn",
  5259. "intl",
  5260. "polyfill",
  5261. "portable",
  5262. "shim"
  5263. ],
  5264. "support": {
  5265. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  5266. },
  5267. "funding": [
  5268. {
  5269. "url": "https://symfony.com/sponsor",
  5270. "type": "custom"
  5271. },
  5272. {
  5273. "url": "https://github.com/fabpot",
  5274. "type": "github"
  5275. },
  5276. {
  5277. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5278. "type": "tidelift"
  5279. }
  5280. ],
  5281. "time": "2024-09-10T14:38:51+00:00"
  5282. },
  5283. {
  5284. "name": "symfony/polyfill-intl-normalizer",
  5285. "version": "v1.32.0",
  5286. "source": {
  5287. "type": "git",
  5288. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5289. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  5290. },
  5291. "dist": {
  5292. "type": "zip",
  5293. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  5294. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  5295. "shasum": ""
  5296. },
  5297. "require": {
  5298. "php": ">=7.2"
  5299. },
  5300. "suggest": {
  5301. "ext-intl": "For best performance"
  5302. },
  5303. "type": "library",
  5304. "extra": {
  5305. "thanks": {
  5306. "url": "https://github.com/symfony/polyfill",
  5307. "name": "symfony/polyfill"
  5308. }
  5309. },
  5310. "autoload": {
  5311. "files": [
  5312. "bootstrap.php"
  5313. ],
  5314. "psr-4": {
  5315. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5316. },
  5317. "classmap": [
  5318. "Resources/stubs"
  5319. ]
  5320. },
  5321. "notification-url": "https://packagist.org/downloads/",
  5322. "license": [
  5323. "MIT"
  5324. ],
  5325. "authors": [
  5326. {
  5327. "name": "Nicolas Grekas",
  5328. "email": "p@tchwork.com"
  5329. },
  5330. {
  5331. "name": "Symfony Community",
  5332. "homepage": "https://symfony.com/contributors"
  5333. }
  5334. ],
  5335. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5336. "homepage": "https://symfony.com",
  5337. "keywords": [
  5338. "compatibility",
  5339. "intl",
  5340. "normalizer",
  5341. "polyfill",
  5342. "portable",
  5343. "shim"
  5344. ],
  5345. "support": {
  5346. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  5347. },
  5348. "funding": [
  5349. {
  5350. "url": "https://symfony.com/sponsor",
  5351. "type": "custom"
  5352. },
  5353. {
  5354. "url": "https://github.com/fabpot",
  5355. "type": "github"
  5356. },
  5357. {
  5358. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5359. "type": "tidelift"
  5360. }
  5361. ],
  5362. "time": "2024-09-09T11:45:10+00:00"
  5363. },
  5364. {
  5365. "name": "symfony/polyfill-mbstring",
  5366. "version": "v1.32.0",
  5367. "source": {
  5368. "type": "git",
  5369. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5370. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  5371. },
  5372. "dist": {
  5373. "type": "zip",
  5374. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  5375. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  5376. "shasum": ""
  5377. },
  5378. "require": {
  5379. "ext-iconv": "*",
  5380. "php": ">=7.2"
  5381. },
  5382. "provide": {
  5383. "ext-mbstring": "*"
  5384. },
  5385. "suggest": {
  5386. "ext-mbstring": "For best performance"
  5387. },
  5388. "type": "library",
  5389. "extra": {
  5390. "thanks": {
  5391. "url": "https://github.com/symfony/polyfill",
  5392. "name": "symfony/polyfill"
  5393. }
  5394. },
  5395. "autoload": {
  5396. "files": [
  5397. "bootstrap.php"
  5398. ],
  5399. "psr-4": {
  5400. "Symfony\\Polyfill\\Mbstring\\": ""
  5401. }
  5402. },
  5403. "notification-url": "https://packagist.org/downloads/",
  5404. "license": [
  5405. "MIT"
  5406. ],
  5407. "authors": [
  5408. {
  5409. "name": "Nicolas Grekas",
  5410. "email": "p@tchwork.com"
  5411. },
  5412. {
  5413. "name": "Symfony Community",
  5414. "homepage": "https://symfony.com/contributors"
  5415. }
  5416. ],
  5417. "description": "Symfony polyfill for the Mbstring extension",
  5418. "homepage": "https://symfony.com",
  5419. "keywords": [
  5420. "compatibility",
  5421. "mbstring",
  5422. "polyfill",
  5423. "portable",
  5424. "shim"
  5425. ],
  5426. "support": {
  5427. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  5428. },
  5429. "funding": [
  5430. {
  5431. "url": "https://symfony.com/sponsor",
  5432. "type": "custom"
  5433. },
  5434. {
  5435. "url": "https://github.com/fabpot",
  5436. "type": "github"
  5437. },
  5438. {
  5439. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5440. "type": "tidelift"
  5441. }
  5442. ],
  5443. "time": "2024-12-23T08:48:59+00:00"
  5444. },
  5445. {
  5446. "name": "symfony/polyfill-php83",
  5447. "version": "v1.32.0",
  5448. "source": {
  5449. "type": "git",
  5450. "url": "https://github.com/symfony/polyfill-php83.git",
  5451. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  5452. },
  5453. "dist": {
  5454. "type": "zip",
  5455. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  5456. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  5457. "shasum": ""
  5458. },
  5459. "require": {
  5460. "php": ">=7.2"
  5461. },
  5462. "type": "library",
  5463. "extra": {
  5464. "thanks": {
  5465. "url": "https://github.com/symfony/polyfill",
  5466. "name": "symfony/polyfill"
  5467. }
  5468. },
  5469. "autoload": {
  5470. "files": [
  5471. "bootstrap.php"
  5472. ],
  5473. "psr-4": {
  5474. "Symfony\\Polyfill\\Php83\\": ""
  5475. },
  5476. "classmap": [
  5477. "Resources/stubs"
  5478. ]
  5479. },
  5480. "notification-url": "https://packagist.org/downloads/",
  5481. "license": [
  5482. "MIT"
  5483. ],
  5484. "authors": [
  5485. {
  5486. "name": "Nicolas Grekas",
  5487. "email": "p@tchwork.com"
  5488. },
  5489. {
  5490. "name": "Symfony Community",
  5491. "homepage": "https://symfony.com/contributors"
  5492. }
  5493. ],
  5494. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5495. "homepage": "https://symfony.com",
  5496. "keywords": [
  5497. "compatibility",
  5498. "polyfill",
  5499. "portable",
  5500. "shim"
  5501. ],
  5502. "support": {
  5503. "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0"
  5504. },
  5505. "funding": [
  5506. {
  5507. "url": "https://symfony.com/sponsor",
  5508. "type": "custom"
  5509. },
  5510. {
  5511. "url": "https://github.com/fabpot",
  5512. "type": "github"
  5513. },
  5514. {
  5515. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5516. "type": "tidelift"
  5517. }
  5518. ],
  5519. "time": "2024-09-09T11:45:10+00:00"
  5520. },
  5521. {
  5522. "name": "symfony/polyfill-php84",
  5523. "version": "v1.32.0",
  5524. "source": {
  5525. "type": "git",
  5526. "url": "https://github.com/symfony/polyfill-php84.git",
  5527. "reference": "000df7860439609837bbe28670b0be15783b7fbf"
  5528. },
  5529. "dist": {
  5530. "type": "zip",
  5531. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/000df7860439609837bbe28670b0be15783b7fbf",
  5532. "reference": "000df7860439609837bbe28670b0be15783b7fbf",
  5533. "shasum": ""
  5534. },
  5535. "require": {
  5536. "php": ">=7.2"
  5537. },
  5538. "type": "library",
  5539. "extra": {
  5540. "thanks": {
  5541. "url": "https://github.com/symfony/polyfill",
  5542. "name": "symfony/polyfill"
  5543. }
  5544. },
  5545. "autoload": {
  5546. "files": [
  5547. "bootstrap.php"
  5548. ],
  5549. "psr-4": {
  5550. "Symfony\\Polyfill\\Php84\\": ""
  5551. },
  5552. "classmap": [
  5553. "Resources/stubs"
  5554. ]
  5555. },
  5556. "notification-url": "https://packagist.org/downloads/",
  5557. "license": [
  5558. "MIT"
  5559. ],
  5560. "authors": [
  5561. {
  5562. "name": "Nicolas Grekas",
  5563. "email": "p@tchwork.com"
  5564. },
  5565. {
  5566. "name": "Symfony Community",
  5567. "homepage": "https://symfony.com/contributors"
  5568. }
  5569. ],
  5570. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  5571. "homepage": "https://symfony.com",
  5572. "keywords": [
  5573. "compatibility",
  5574. "polyfill",
  5575. "portable",
  5576. "shim"
  5577. ],
  5578. "support": {
  5579. "source": "https://github.com/symfony/polyfill-php84/tree/v1.32.0"
  5580. },
  5581. "funding": [
  5582. {
  5583. "url": "https://symfony.com/sponsor",
  5584. "type": "custom"
  5585. },
  5586. {
  5587. "url": "https://github.com/fabpot",
  5588. "type": "github"
  5589. },
  5590. {
  5591. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5592. "type": "tidelift"
  5593. }
  5594. ],
  5595. "time": "2025-02-20T12:04:08+00:00"
  5596. },
  5597. {
  5598. "name": "symfony/polyfill-uuid",
  5599. "version": "v1.32.0",
  5600. "source": {
  5601. "type": "git",
  5602. "url": "https://github.com/symfony/polyfill-uuid.git",
  5603. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  5604. },
  5605. "dist": {
  5606. "type": "zip",
  5607. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  5608. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  5609. "shasum": ""
  5610. },
  5611. "require": {
  5612. "php": ">=7.2"
  5613. },
  5614. "provide": {
  5615. "ext-uuid": "*"
  5616. },
  5617. "suggest": {
  5618. "ext-uuid": "For best performance"
  5619. },
  5620. "type": "library",
  5621. "extra": {
  5622. "thanks": {
  5623. "url": "https://github.com/symfony/polyfill",
  5624. "name": "symfony/polyfill"
  5625. }
  5626. },
  5627. "autoload": {
  5628. "files": [
  5629. "bootstrap.php"
  5630. ],
  5631. "psr-4": {
  5632. "Symfony\\Polyfill\\Uuid\\": ""
  5633. }
  5634. },
  5635. "notification-url": "https://packagist.org/downloads/",
  5636. "license": [
  5637. "MIT"
  5638. ],
  5639. "authors": [
  5640. {
  5641. "name": "Grégoire Pineau",
  5642. "email": "lyrixx@lyrixx.info"
  5643. },
  5644. {
  5645. "name": "Symfony Community",
  5646. "homepage": "https://symfony.com/contributors"
  5647. }
  5648. ],
  5649. "description": "Symfony polyfill for uuid functions",
  5650. "homepage": "https://symfony.com",
  5651. "keywords": [
  5652. "compatibility",
  5653. "polyfill",
  5654. "portable",
  5655. "uuid"
  5656. ],
  5657. "support": {
  5658. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.32.0"
  5659. },
  5660. "funding": [
  5661. {
  5662. "url": "https://symfony.com/sponsor",
  5663. "type": "custom"
  5664. },
  5665. {
  5666. "url": "https://github.com/fabpot",
  5667. "type": "github"
  5668. },
  5669. {
  5670. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5671. "type": "tidelift"
  5672. }
  5673. ],
  5674. "time": "2024-09-09T11:45:10+00:00"
  5675. },
  5676. {
  5677. "name": "symfony/process",
  5678. "version": "v7.3.0",
  5679. "source": {
  5680. "type": "git",
  5681. "url": "https://github.com/symfony/process.git",
  5682. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af"
  5683. },
  5684. "dist": {
  5685. "type": "zip",
  5686. "url": "https://api.github.com/repos/symfony/process/zipball/40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  5687. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  5688. "shasum": ""
  5689. },
  5690. "require": {
  5691. "php": ">=8.2"
  5692. },
  5693. "type": "library",
  5694. "autoload": {
  5695. "psr-4": {
  5696. "Symfony\\Component\\Process\\": ""
  5697. },
  5698. "exclude-from-classmap": [
  5699. "/Tests/"
  5700. ]
  5701. },
  5702. "notification-url": "https://packagist.org/downloads/",
  5703. "license": [
  5704. "MIT"
  5705. ],
  5706. "authors": [
  5707. {
  5708. "name": "Fabien Potencier",
  5709. "email": "fabien@symfony.com"
  5710. },
  5711. {
  5712. "name": "Symfony Community",
  5713. "homepage": "https://symfony.com/contributors"
  5714. }
  5715. ],
  5716. "description": "Executes commands in sub-processes",
  5717. "homepage": "https://symfony.com",
  5718. "support": {
  5719. "source": "https://github.com/symfony/process/tree/v7.3.0"
  5720. },
  5721. "funding": [
  5722. {
  5723. "url": "https://symfony.com/sponsor",
  5724. "type": "custom"
  5725. },
  5726. {
  5727. "url": "https://github.com/fabpot",
  5728. "type": "github"
  5729. },
  5730. {
  5731. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5732. "type": "tidelift"
  5733. }
  5734. ],
  5735. "time": "2025-04-17T09:11:12+00:00"
  5736. },
  5737. {
  5738. "name": "symfony/property-access",
  5739. "version": "v7.3.1",
  5740. "source": {
  5741. "type": "git",
  5742. "url": "https://github.com/symfony/property-access.git",
  5743. "reference": "518d15c8cca726ebe665dcd7154074584cf862e8"
  5744. },
  5745. "dist": {
  5746. "type": "zip",
  5747. "url": "https://api.github.com/repos/symfony/property-access/zipball/518d15c8cca726ebe665dcd7154074584cf862e8",
  5748. "reference": "518d15c8cca726ebe665dcd7154074584cf862e8",
  5749. "shasum": ""
  5750. },
  5751. "require": {
  5752. "php": ">=8.2",
  5753. "symfony/property-info": "^6.4|^7.0"
  5754. },
  5755. "require-dev": {
  5756. "symfony/cache": "^6.4|^7.0"
  5757. },
  5758. "type": "library",
  5759. "autoload": {
  5760. "psr-4": {
  5761. "Symfony\\Component\\PropertyAccess\\": ""
  5762. },
  5763. "exclude-from-classmap": [
  5764. "/Tests/"
  5765. ]
  5766. },
  5767. "notification-url": "https://packagist.org/downloads/",
  5768. "license": [
  5769. "MIT"
  5770. ],
  5771. "authors": [
  5772. {
  5773. "name": "Fabien Potencier",
  5774. "email": "fabien@symfony.com"
  5775. },
  5776. {
  5777. "name": "Symfony Community",
  5778. "homepage": "https://symfony.com/contributors"
  5779. }
  5780. ],
  5781. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  5782. "homepage": "https://symfony.com",
  5783. "keywords": [
  5784. "access",
  5785. "array",
  5786. "extraction",
  5787. "index",
  5788. "injection",
  5789. "object",
  5790. "property",
  5791. "property-path",
  5792. "reflection"
  5793. ],
  5794. "support": {
  5795. "source": "https://github.com/symfony/property-access/tree/v7.3.1"
  5796. },
  5797. "funding": [
  5798. {
  5799. "url": "https://symfony.com/sponsor",
  5800. "type": "custom"
  5801. },
  5802. {
  5803. "url": "https://github.com/fabpot",
  5804. "type": "github"
  5805. },
  5806. {
  5807. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5808. "type": "tidelift"
  5809. }
  5810. ],
  5811. "time": "2025-06-24T04:04:43+00:00"
  5812. },
  5813. {
  5814. "name": "symfony/property-info",
  5815. "version": "v7.3.1",
  5816. "source": {
  5817. "type": "git",
  5818. "url": "https://github.com/symfony/property-info.git",
  5819. "reference": "90586acbf2a6dd13bee4f09f09111c8bd4773970"
  5820. },
  5821. "dist": {
  5822. "type": "zip",
  5823. "url": "https://api.github.com/repos/symfony/property-info/zipball/90586acbf2a6dd13bee4f09f09111c8bd4773970",
  5824. "reference": "90586acbf2a6dd13bee4f09f09111c8bd4773970",
  5825. "shasum": ""
  5826. },
  5827. "require": {
  5828. "php": ">=8.2",
  5829. "symfony/deprecation-contracts": "^2.5|^3",
  5830. "symfony/string": "^6.4|^7.0",
  5831. "symfony/type-info": "~7.2.8|^7.3.1"
  5832. },
  5833. "conflict": {
  5834. "phpdocumentor/reflection-docblock": "<5.2",
  5835. "phpdocumentor/type-resolver": "<1.5.1",
  5836. "symfony/cache": "<6.4",
  5837. "symfony/dependency-injection": "<6.4",
  5838. "symfony/serializer": "<6.4"
  5839. },
  5840. "require-dev": {
  5841. "phpdocumentor/reflection-docblock": "^5.2",
  5842. "phpstan/phpdoc-parser": "^1.0|^2.0",
  5843. "symfony/cache": "^6.4|^7.0",
  5844. "symfony/dependency-injection": "^6.4|^7.0",
  5845. "symfony/serializer": "^6.4|^7.0"
  5846. },
  5847. "type": "library",
  5848. "autoload": {
  5849. "psr-4": {
  5850. "Symfony\\Component\\PropertyInfo\\": ""
  5851. },
  5852. "exclude-from-classmap": [
  5853. "/Tests/"
  5854. ]
  5855. },
  5856. "notification-url": "https://packagist.org/downloads/",
  5857. "license": [
  5858. "MIT"
  5859. ],
  5860. "authors": [
  5861. {
  5862. "name": "Kévin Dunglas",
  5863. "email": "dunglas@gmail.com"
  5864. },
  5865. {
  5866. "name": "Symfony Community",
  5867. "homepage": "https://symfony.com/contributors"
  5868. }
  5869. ],
  5870. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  5871. "homepage": "https://symfony.com",
  5872. "keywords": [
  5873. "doctrine",
  5874. "phpdoc",
  5875. "property",
  5876. "symfony",
  5877. "type",
  5878. "validator"
  5879. ],
  5880. "support": {
  5881. "source": "https://github.com/symfony/property-info/tree/v7.3.1"
  5882. },
  5883. "funding": [
  5884. {
  5885. "url": "https://symfony.com/sponsor",
  5886. "type": "custom"
  5887. },
  5888. {
  5889. "url": "https://github.com/fabpot",
  5890. "type": "github"
  5891. },
  5892. {
  5893. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5894. "type": "tidelift"
  5895. }
  5896. ],
  5897. "time": "2025-06-27T19:55:54+00:00"
  5898. },
  5899. {
  5900. "name": "symfony/routing",
  5901. "version": "v7.3.0",
  5902. "source": {
  5903. "type": "git",
  5904. "url": "https://github.com/symfony/routing.git",
  5905. "reference": "8e213820c5fea844ecea29203d2a308019007c15"
  5906. },
  5907. "dist": {
  5908. "type": "zip",
  5909. "url": "https://api.github.com/repos/symfony/routing/zipball/8e213820c5fea844ecea29203d2a308019007c15",
  5910. "reference": "8e213820c5fea844ecea29203d2a308019007c15",
  5911. "shasum": ""
  5912. },
  5913. "require": {
  5914. "php": ">=8.2",
  5915. "symfony/deprecation-contracts": "^2.5|^3"
  5916. },
  5917. "conflict": {
  5918. "symfony/config": "<6.4",
  5919. "symfony/dependency-injection": "<6.4",
  5920. "symfony/yaml": "<6.4"
  5921. },
  5922. "require-dev": {
  5923. "psr/log": "^1|^2|^3",
  5924. "symfony/config": "^6.4|^7.0",
  5925. "symfony/dependency-injection": "^6.4|^7.0",
  5926. "symfony/expression-language": "^6.4|^7.0",
  5927. "symfony/http-foundation": "^6.4|^7.0",
  5928. "symfony/yaml": "^6.4|^7.0"
  5929. },
  5930. "type": "library",
  5931. "autoload": {
  5932. "psr-4": {
  5933. "Symfony\\Component\\Routing\\": ""
  5934. },
  5935. "exclude-from-classmap": [
  5936. "/Tests/"
  5937. ]
  5938. },
  5939. "notification-url": "https://packagist.org/downloads/",
  5940. "license": [
  5941. "MIT"
  5942. ],
  5943. "authors": [
  5944. {
  5945. "name": "Fabien Potencier",
  5946. "email": "fabien@symfony.com"
  5947. },
  5948. {
  5949. "name": "Symfony Community",
  5950. "homepage": "https://symfony.com/contributors"
  5951. }
  5952. ],
  5953. "description": "Maps an HTTP request to a set of configuration variables",
  5954. "homepage": "https://symfony.com",
  5955. "keywords": [
  5956. "router",
  5957. "routing",
  5958. "uri",
  5959. "url"
  5960. ],
  5961. "support": {
  5962. "source": "https://github.com/symfony/routing/tree/v7.3.0"
  5963. },
  5964. "funding": [
  5965. {
  5966. "url": "https://symfony.com/sponsor",
  5967. "type": "custom"
  5968. },
  5969. {
  5970. "url": "https://github.com/fabpot",
  5971. "type": "github"
  5972. },
  5973. {
  5974. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5975. "type": "tidelift"
  5976. }
  5977. ],
  5978. "time": "2025-05-24T20:43:28+00:00"
  5979. },
  5980. {
  5981. "name": "symfony/runtime",
  5982. "version": "v7.3.1",
  5983. "source": {
  5984. "type": "git",
  5985. "url": "https://github.com/symfony/runtime.git",
  5986. "reference": "9516056d432f8acdac9458eb41b80097da7a05c9"
  5987. },
  5988. "dist": {
  5989. "type": "zip",
  5990. "url": "https://api.github.com/repos/symfony/runtime/zipball/9516056d432f8acdac9458eb41b80097da7a05c9",
  5991. "reference": "9516056d432f8acdac9458eb41b80097da7a05c9",
  5992. "shasum": ""
  5993. },
  5994. "require": {
  5995. "composer-plugin-api": "^1.0|^2.0",
  5996. "php": ">=8.2"
  5997. },
  5998. "conflict": {
  5999. "symfony/dotenv": "<6.4"
  6000. },
  6001. "require-dev": {
  6002. "composer/composer": "^2.6",
  6003. "symfony/console": "^6.4|^7.0",
  6004. "symfony/dotenv": "^6.4|^7.0",
  6005. "symfony/http-foundation": "^6.4|^7.0",
  6006. "symfony/http-kernel": "^6.4|^7.0"
  6007. },
  6008. "type": "composer-plugin",
  6009. "extra": {
  6010. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  6011. },
  6012. "autoload": {
  6013. "psr-4": {
  6014. "Symfony\\Component\\Runtime\\": "",
  6015. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  6016. },
  6017. "exclude-from-classmap": [
  6018. "/Tests/"
  6019. ]
  6020. },
  6021. "notification-url": "https://packagist.org/downloads/",
  6022. "license": [
  6023. "MIT"
  6024. ],
  6025. "authors": [
  6026. {
  6027. "name": "Nicolas Grekas",
  6028. "email": "p@tchwork.com"
  6029. },
  6030. {
  6031. "name": "Symfony Community",
  6032. "homepage": "https://symfony.com/contributors"
  6033. }
  6034. ],
  6035. "description": "Enables decoupling PHP applications from global state",
  6036. "homepage": "https://symfony.com",
  6037. "keywords": [
  6038. "runtime"
  6039. ],
  6040. "support": {
  6041. "source": "https://github.com/symfony/runtime/tree/v7.3.1"
  6042. },
  6043. "funding": [
  6044. {
  6045. "url": "https://symfony.com/sponsor",
  6046. "type": "custom"
  6047. },
  6048. {
  6049. "url": "https://github.com/fabpot",
  6050. "type": "github"
  6051. },
  6052. {
  6053. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6054. "type": "tidelift"
  6055. }
  6056. ],
  6057. "time": "2025-06-13T07:48:40+00:00"
  6058. },
  6059. {
  6060. "name": "symfony/security-bundle",
  6061. "version": "v7.3.1",
  6062. "source": {
  6063. "type": "git",
  6064. "url": "https://github.com/symfony/security-bundle.git",
  6065. "reference": "428a281fd66c8358adc2259c8578e6d81fbb7079"
  6066. },
  6067. "dist": {
  6068. "type": "zip",
  6069. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/428a281fd66c8358adc2259c8578e6d81fbb7079",
  6070. "reference": "428a281fd66c8358adc2259c8578e6d81fbb7079",
  6071. "shasum": ""
  6072. },
  6073. "require": {
  6074. "composer-runtime-api": ">=2.1",
  6075. "ext-xml": "*",
  6076. "php": ">=8.2",
  6077. "symfony/clock": "^6.4|^7.0",
  6078. "symfony/config": "^7.3",
  6079. "symfony/dependency-injection": "^6.4.11|^7.1.4",
  6080. "symfony/event-dispatcher": "^6.4|^7.0",
  6081. "symfony/http-foundation": "^6.4|^7.0",
  6082. "symfony/http-kernel": "^6.4|^7.0",
  6083. "symfony/password-hasher": "^6.4|^7.0",
  6084. "symfony/security-core": "^7.3",
  6085. "symfony/security-csrf": "^6.4|^7.0",
  6086. "symfony/security-http": "^7.3",
  6087. "symfony/service-contracts": "^2.5|^3"
  6088. },
  6089. "conflict": {
  6090. "symfony/browser-kit": "<6.4",
  6091. "symfony/console": "<6.4",
  6092. "symfony/framework-bundle": "<6.4",
  6093. "symfony/http-client": "<6.4",
  6094. "symfony/ldap": "<6.4",
  6095. "symfony/serializer": "<6.4",
  6096. "symfony/twig-bundle": "<6.4",
  6097. "symfony/validator": "<6.4"
  6098. },
  6099. "require-dev": {
  6100. "symfony/asset": "^6.4|^7.0",
  6101. "symfony/browser-kit": "^6.4|^7.0",
  6102. "symfony/console": "^6.4|^7.0",
  6103. "symfony/css-selector": "^6.4|^7.0",
  6104. "symfony/dom-crawler": "^6.4|^7.0",
  6105. "symfony/expression-language": "^6.4|^7.0",
  6106. "symfony/form": "^6.4|^7.0",
  6107. "symfony/framework-bundle": "^6.4|^7.0",
  6108. "symfony/http-client": "^6.4|^7.0",
  6109. "symfony/ldap": "^6.4|^7.0",
  6110. "symfony/process": "^6.4|^7.0",
  6111. "symfony/rate-limiter": "^6.4|^7.0",
  6112. "symfony/serializer": "^6.4|^7.0",
  6113. "symfony/translation": "^6.4|^7.0",
  6114. "symfony/twig-bridge": "^6.4|^7.0",
  6115. "symfony/twig-bundle": "^6.4|^7.0",
  6116. "symfony/validator": "^6.4|^7.0",
  6117. "symfony/yaml": "^6.4|^7.0",
  6118. "twig/twig": "^3.12",
  6119. "web-token/jwt-library": "^3.3.2|^4.0"
  6120. },
  6121. "type": "symfony-bundle",
  6122. "autoload": {
  6123. "psr-4": {
  6124. "Symfony\\Bundle\\SecurityBundle\\": ""
  6125. },
  6126. "exclude-from-classmap": [
  6127. "/Tests/"
  6128. ]
  6129. },
  6130. "notification-url": "https://packagist.org/downloads/",
  6131. "license": [
  6132. "MIT"
  6133. ],
  6134. "authors": [
  6135. {
  6136. "name": "Fabien Potencier",
  6137. "email": "fabien@symfony.com"
  6138. },
  6139. {
  6140. "name": "Symfony Community",
  6141. "homepage": "https://symfony.com/contributors"
  6142. }
  6143. ],
  6144. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  6145. "homepage": "https://symfony.com",
  6146. "support": {
  6147. "source": "https://github.com/symfony/security-bundle/tree/v7.3.1"
  6148. },
  6149. "funding": [
  6150. {
  6151. "url": "https://symfony.com/sponsor",
  6152. "type": "custom"
  6153. },
  6154. {
  6155. "url": "https://github.com/fabpot",
  6156. "type": "github"
  6157. },
  6158. {
  6159. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6160. "type": "tidelift"
  6161. }
  6162. ],
  6163. "time": "2025-06-24T04:04:43+00:00"
  6164. },
  6165. {
  6166. "name": "symfony/security-core",
  6167. "version": "v7.3.1",
  6168. "source": {
  6169. "type": "git",
  6170. "url": "https://github.com/symfony/security-core.git",
  6171. "reference": "fafab1003a31e51506e1a0a83e81c072211d81ba"
  6172. },
  6173. "dist": {
  6174. "type": "zip",
  6175. "url": "https://api.github.com/repos/symfony/security-core/zipball/fafab1003a31e51506e1a0a83e81c072211d81ba",
  6176. "reference": "fafab1003a31e51506e1a0a83e81c072211d81ba",
  6177. "shasum": ""
  6178. },
  6179. "require": {
  6180. "php": ">=8.2",
  6181. "symfony/deprecation-contracts": "^2.5|^3",
  6182. "symfony/event-dispatcher-contracts": "^2.5|^3",
  6183. "symfony/password-hasher": "^6.4|^7.0",
  6184. "symfony/service-contracts": "^2.5|^3"
  6185. },
  6186. "conflict": {
  6187. "symfony/dependency-injection": "<6.4",
  6188. "symfony/event-dispatcher": "<6.4",
  6189. "symfony/http-foundation": "<6.4",
  6190. "symfony/ldap": "<6.4",
  6191. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  6192. "symfony/validator": "<6.4"
  6193. },
  6194. "require-dev": {
  6195. "psr/cache": "^1.0|^2.0|^3.0",
  6196. "psr/container": "^1.1|^2.0",
  6197. "psr/log": "^1|^2|^3",
  6198. "symfony/cache": "^6.4|^7.0",
  6199. "symfony/dependency-injection": "^6.4|^7.0",
  6200. "symfony/event-dispatcher": "^6.4|^7.0",
  6201. "symfony/expression-language": "^6.4|^7.0",
  6202. "symfony/http-foundation": "^6.4|^7.0",
  6203. "symfony/ldap": "^6.4|^7.0",
  6204. "symfony/string": "^6.4|^7.0",
  6205. "symfony/translation": "^6.4.3|^7.0.3",
  6206. "symfony/validator": "^6.4|^7.0"
  6207. },
  6208. "type": "library",
  6209. "autoload": {
  6210. "psr-4": {
  6211. "Symfony\\Component\\Security\\Core\\": ""
  6212. },
  6213. "exclude-from-classmap": [
  6214. "/Tests/"
  6215. ]
  6216. },
  6217. "notification-url": "https://packagist.org/downloads/",
  6218. "license": [
  6219. "MIT"
  6220. ],
  6221. "authors": [
  6222. {
  6223. "name": "Fabien Potencier",
  6224. "email": "fabien@symfony.com"
  6225. },
  6226. {
  6227. "name": "Symfony Community",
  6228. "homepage": "https://symfony.com/contributors"
  6229. }
  6230. ],
  6231. "description": "Symfony Security Component - Core Library",
  6232. "homepage": "https://symfony.com",
  6233. "support": {
  6234. "source": "https://github.com/symfony/security-core/tree/v7.3.1"
  6235. },
  6236. "funding": [
  6237. {
  6238. "url": "https://symfony.com/sponsor",
  6239. "type": "custom"
  6240. },
  6241. {
  6242. "url": "https://github.com/fabpot",
  6243. "type": "github"
  6244. },
  6245. {
  6246. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6247. "type": "tidelift"
  6248. }
  6249. ],
  6250. "time": "2025-06-23T07:28:50+00:00"
  6251. },
  6252. {
  6253. "name": "symfony/security-csrf",
  6254. "version": "v7.3.0",
  6255. "source": {
  6256. "type": "git",
  6257. "url": "https://github.com/symfony/security-csrf.git",
  6258. "reference": "2b4b0c46c901729e4e90719eacd980381f53e0a3"
  6259. },
  6260. "dist": {
  6261. "type": "zip",
  6262. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/2b4b0c46c901729e4e90719eacd980381f53e0a3",
  6263. "reference": "2b4b0c46c901729e4e90719eacd980381f53e0a3",
  6264. "shasum": ""
  6265. },
  6266. "require": {
  6267. "php": ">=8.2",
  6268. "symfony/security-core": "^6.4|^7.0"
  6269. },
  6270. "conflict": {
  6271. "symfony/http-foundation": "<6.4"
  6272. },
  6273. "require-dev": {
  6274. "psr/log": "^1|^2|^3",
  6275. "symfony/http-foundation": "^6.4|^7.0",
  6276. "symfony/http-kernel": "^6.4|^7.0"
  6277. },
  6278. "type": "library",
  6279. "autoload": {
  6280. "psr-4": {
  6281. "Symfony\\Component\\Security\\Csrf\\": ""
  6282. },
  6283. "exclude-from-classmap": [
  6284. "/Tests/"
  6285. ]
  6286. },
  6287. "notification-url": "https://packagist.org/downloads/",
  6288. "license": [
  6289. "MIT"
  6290. ],
  6291. "authors": [
  6292. {
  6293. "name": "Fabien Potencier",
  6294. "email": "fabien@symfony.com"
  6295. },
  6296. {
  6297. "name": "Symfony Community",
  6298. "homepage": "https://symfony.com/contributors"
  6299. }
  6300. ],
  6301. "description": "Symfony Security Component - CSRF Library",
  6302. "homepage": "https://symfony.com",
  6303. "support": {
  6304. "source": "https://github.com/symfony/security-csrf/tree/v7.3.0"
  6305. },
  6306. "funding": [
  6307. {
  6308. "url": "https://symfony.com/sponsor",
  6309. "type": "custom"
  6310. },
  6311. {
  6312. "url": "https://github.com/fabpot",
  6313. "type": "github"
  6314. },
  6315. {
  6316. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6317. "type": "tidelift"
  6318. }
  6319. ],
  6320. "time": "2025-01-02T18:42:10+00:00"
  6321. },
  6322. {
  6323. "name": "symfony/security-http",
  6324. "version": "v7.3.1",
  6325. "source": {
  6326. "type": "git",
  6327. "url": "https://github.com/symfony/security-http.git",
  6328. "reference": "b7182ed0fd2359297f78ff6d407265168255ea84"
  6329. },
  6330. "dist": {
  6331. "type": "zip",
  6332. "url": "https://api.github.com/repos/symfony/security-http/zipball/b7182ed0fd2359297f78ff6d407265168255ea84",
  6333. "reference": "b7182ed0fd2359297f78ff6d407265168255ea84",
  6334. "shasum": ""
  6335. },
  6336. "require": {
  6337. "php": ">=8.2",
  6338. "symfony/deprecation-contracts": "^2.5|^3",
  6339. "symfony/http-foundation": "^6.4|^7.0",
  6340. "symfony/http-kernel": "^6.4|^7.0",
  6341. "symfony/polyfill-mbstring": "~1.0",
  6342. "symfony/property-access": "^6.4|^7.0",
  6343. "symfony/security-core": "^7.3",
  6344. "symfony/service-contracts": "^2.5|^3"
  6345. },
  6346. "conflict": {
  6347. "symfony/clock": "<6.4",
  6348. "symfony/event-dispatcher": "<6.4",
  6349. "symfony/http-client-contracts": "<3.0",
  6350. "symfony/security-bundle": "<6.4",
  6351. "symfony/security-csrf": "<6.4"
  6352. },
  6353. "require-dev": {
  6354. "psr/log": "^1|^2|^3",
  6355. "symfony/cache": "^6.4|^7.0",
  6356. "symfony/clock": "^6.4|^7.0",
  6357. "symfony/expression-language": "^6.4|^7.0",
  6358. "symfony/http-client": "^6.4|^7.0",
  6359. "symfony/http-client-contracts": "^3.0",
  6360. "symfony/rate-limiter": "^6.4|^7.0",
  6361. "symfony/routing": "^6.4|^7.0",
  6362. "symfony/security-csrf": "^6.4|^7.0",
  6363. "symfony/translation": "^6.4|^7.0",
  6364. "web-token/jwt-library": "^3.3.2|^4.0"
  6365. },
  6366. "type": "library",
  6367. "autoload": {
  6368. "psr-4": {
  6369. "Symfony\\Component\\Security\\Http\\": ""
  6370. },
  6371. "exclude-from-classmap": [
  6372. "/Tests/"
  6373. ]
  6374. },
  6375. "notification-url": "https://packagist.org/downloads/",
  6376. "license": [
  6377. "MIT"
  6378. ],
  6379. "authors": [
  6380. {
  6381. "name": "Fabien Potencier",
  6382. "email": "fabien@symfony.com"
  6383. },
  6384. {
  6385. "name": "Symfony Community",
  6386. "homepage": "https://symfony.com/contributors"
  6387. }
  6388. ],
  6389. "description": "Symfony Security Component - HTTP Integration",
  6390. "homepage": "https://symfony.com",
  6391. "support": {
  6392. "source": "https://github.com/symfony/security-http/tree/v7.3.1"
  6393. },
  6394. "funding": [
  6395. {
  6396. "url": "https://symfony.com/sponsor",
  6397. "type": "custom"
  6398. },
  6399. {
  6400. "url": "https://github.com/fabpot",
  6401. "type": "github"
  6402. },
  6403. {
  6404. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6405. "type": "tidelift"
  6406. }
  6407. ],
  6408. "time": "2025-06-24T04:04:43+00:00"
  6409. },
  6410. {
  6411. "name": "symfony/serializer",
  6412. "version": "v7.3.1",
  6413. "source": {
  6414. "type": "git",
  6415. "url": "https://github.com/symfony/serializer.git",
  6416. "reference": "feaf837cedbbc8287986602223175d3fd639922d"
  6417. },
  6418. "dist": {
  6419. "type": "zip",
  6420. "url": "https://api.github.com/repos/symfony/serializer/zipball/feaf837cedbbc8287986602223175d3fd639922d",
  6421. "reference": "feaf837cedbbc8287986602223175d3fd639922d",
  6422. "shasum": ""
  6423. },
  6424. "require": {
  6425. "php": ">=8.2",
  6426. "symfony/deprecation-contracts": "^2.5|^3",
  6427. "symfony/polyfill-ctype": "~1.8"
  6428. },
  6429. "conflict": {
  6430. "phpdocumentor/reflection-docblock": "<3.2.2",
  6431. "phpdocumentor/type-resolver": "<1.4.0",
  6432. "symfony/dependency-injection": "<6.4",
  6433. "symfony/property-access": "<6.4",
  6434. "symfony/property-info": "<6.4",
  6435. "symfony/uid": "<6.4",
  6436. "symfony/validator": "<6.4",
  6437. "symfony/yaml": "<6.4"
  6438. },
  6439. "require-dev": {
  6440. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6441. "phpstan/phpdoc-parser": "^1.0|^2.0",
  6442. "seld/jsonlint": "^1.10",
  6443. "symfony/cache": "^6.4|^7.0",
  6444. "symfony/config": "^6.4|^7.0",
  6445. "symfony/console": "^6.4|^7.0",
  6446. "symfony/dependency-injection": "^7.2",
  6447. "symfony/error-handler": "^6.4|^7.0",
  6448. "symfony/filesystem": "^6.4|^7.0",
  6449. "symfony/form": "^6.4|^7.0",
  6450. "symfony/http-foundation": "^6.4|^7.0",
  6451. "symfony/http-kernel": "^6.4|^7.0",
  6452. "symfony/messenger": "^6.4|^7.0",
  6453. "symfony/mime": "^6.4|^7.0",
  6454. "symfony/property-access": "^6.4|^7.0",
  6455. "symfony/property-info": "^6.4|^7.0",
  6456. "symfony/translation-contracts": "^2.5|^3",
  6457. "symfony/type-info": "^7.1",
  6458. "symfony/uid": "^6.4|^7.0",
  6459. "symfony/validator": "^6.4|^7.0",
  6460. "symfony/var-dumper": "^6.4|^7.0",
  6461. "symfony/var-exporter": "^6.4|^7.0",
  6462. "symfony/yaml": "^6.4|^7.0"
  6463. },
  6464. "type": "library",
  6465. "autoload": {
  6466. "psr-4": {
  6467. "Symfony\\Component\\Serializer\\": ""
  6468. },
  6469. "exclude-from-classmap": [
  6470. "/Tests/"
  6471. ]
  6472. },
  6473. "notification-url": "https://packagist.org/downloads/",
  6474. "license": [
  6475. "MIT"
  6476. ],
  6477. "authors": [
  6478. {
  6479. "name": "Fabien Potencier",
  6480. "email": "fabien@symfony.com"
  6481. },
  6482. {
  6483. "name": "Symfony Community",
  6484. "homepage": "https://symfony.com/contributors"
  6485. }
  6486. ],
  6487. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6488. "homepage": "https://symfony.com",
  6489. "support": {
  6490. "source": "https://github.com/symfony/serializer/tree/v7.3.1"
  6491. },
  6492. "funding": [
  6493. {
  6494. "url": "https://symfony.com/sponsor",
  6495. "type": "custom"
  6496. },
  6497. {
  6498. "url": "https://github.com/fabpot",
  6499. "type": "github"
  6500. },
  6501. {
  6502. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6503. "type": "tidelift"
  6504. }
  6505. ],
  6506. "time": "2025-06-27T19:55:54+00:00"
  6507. },
  6508. {
  6509. "name": "symfony/service-contracts",
  6510. "version": "v3.6.0",
  6511. "source": {
  6512. "type": "git",
  6513. "url": "https://github.com/symfony/service-contracts.git",
  6514. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
  6515. },
  6516. "dist": {
  6517. "type": "zip",
  6518. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  6519. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  6520. "shasum": ""
  6521. },
  6522. "require": {
  6523. "php": ">=8.1",
  6524. "psr/container": "^1.1|^2.0",
  6525. "symfony/deprecation-contracts": "^2.5|^3"
  6526. },
  6527. "conflict": {
  6528. "ext-psr": "<1.1|>=2"
  6529. },
  6530. "type": "library",
  6531. "extra": {
  6532. "thanks": {
  6533. "url": "https://github.com/symfony/contracts",
  6534. "name": "symfony/contracts"
  6535. },
  6536. "branch-alias": {
  6537. "dev-main": "3.6-dev"
  6538. }
  6539. },
  6540. "autoload": {
  6541. "psr-4": {
  6542. "Symfony\\Contracts\\Service\\": ""
  6543. },
  6544. "exclude-from-classmap": [
  6545. "/Test/"
  6546. ]
  6547. },
  6548. "notification-url": "https://packagist.org/downloads/",
  6549. "license": [
  6550. "MIT"
  6551. ],
  6552. "authors": [
  6553. {
  6554. "name": "Nicolas Grekas",
  6555. "email": "p@tchwork.com"
  6556. },
  6557. {
  6558. "name": "Symfony Community",
  6559. "homepage": "https://symfony.com/contributors"
  6560. }
  6561. ],
  6562. "description": "Generic abstractions related to writing services",
  6563. "homepage": "https://symfony.com",
  6564. "keywords": [
  6565. "abstractions",
  6566. "contracts",
  6567. "decoupling",
  6568. "interfaces",
  6569. "interoperability",
  6570. "standards"
  6571. ],
  6572. "support": {
  6573. "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
  6574. },
  6575. "funding": [
  6576. {
  6577. "url": "https://symfony.com/sponsor",
  6578. "type": "custom"
  6579. },
  6580. {
  6581. "url": "https://github.com/fabpot",
  6582. "type": "github"
  6583. },
  6584. {
  6585. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6586. "type": "tidelift"
  6587. }
  6588. ],
  6589. "time": "2025-04-25T09:37:31+00:00"
  6590. },
  6591. {
  6592. "name": "symfony/stimulus-bundle",
  6593. "version": "v2.27.0",
  6594. "source": {
  6595. "type": "git",
  6596. "url": "https://github.com/symfony/stimulus-bundle.git",
  6597. "reference": "defaeb91bd366f9f43dbe54dbdfd9bc3c4138814"
  6598. },
  6599. "dist": {
  6600. "type": "zip",
  6601. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/defaeb91bd366f9f43dbe54dbdfd9bc3c4138814",
  6602. "reference": "defaeb91bd366f9f43dbe54dbdfd9bc3c4138814",
  6603. "shasum": ""
  6604. },
  6605. "require": {
  6606. "php": ">=8.1",
  6607. "symfony/config": "^5.4|^6.0|^7.0",
  6608. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6609. "symfony/deprecation-contracts": "^2.0|^3.0",
  6610. "symfony/finder": "^5.4|^6.0|^7.0",
  6611. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6612. "twig/twig": "^2.15.3|^3.8"
  6613. },
  6614. "require-dev": {
  6615. "symfony/asset-mapper": "^6.3|^7.0",
  6616. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  6617. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  6618. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  6619. "zenstruck/browser": "^1.4"
  6620. },
  6621. "type": "symfony-bundle",
  6622. "autoload": {
  6623. "psr-4": {
  6624. "Symfony\\UX\\StimulusBundle\\": "src"
  6625. }
  6626. },
  6627. "notification-url": "https://packagist.org/downloads/",
  6628. "license": [
  6629. "MIT"
  6630. ],
  6631. "authors": [
  6632. {
  6633. "name": "Symfony Community",
  6634. "homepage": "https://symfony.com/contributors"
  6635. }
  6636. ],
  6637. "description": "Integration with your Symfony app & Stimulus!",
  6638. "keywords": [
  6639. "symfony-ux"
  6640. ],
  6641. "support": {
  6642. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.27.0"
  6643. },
  6644. "funding": [
  6645. {
  6646. "url": "https://symfony.com/sponsor",
  6647. "type": "custom"
  6648. },
  6649. {
  6650. "url": "https://github.com/fabpot",
  6651. "type": "github"
  6652. },
  6653. {
  6654. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6655. "type": "tidelift"
  6656. }
  6657. ],
  6658. "time": "2025-06-22T19:07:55+00:00"
  6659. },
  6660. {
  6661. "name": "symfony/stopwatch",
  6662. "version": "v7.3.0",
  6663. "source": {
  6664. "type": "git",
  6665. "url": "https://github.com/symfony/stopwatch.git",
  6666. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd"
  6667. },
  6668. "dist": {
  6669. "type": "zip",
  6670. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  6671. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  6672. "shasum": ""
  6673. },
  6674. "require": {
  6675. "php": ">=8.2",
  6676. "symfony/service-contracts": "^2.5|^3"
  6677. },
  6678. "type": "library",
  6679. "autoload": {
  6680. "psr-4": {
  6681. "Symfony\\Component\\Stopwatch\\": ""
  6682. },
  6683. "exclude-from-classmap": [
  6684. "/Tests/"
  6685. ]
  6686. },
  6687. "notification-url": "https://packagist.org/downloads/",
  6688. "license": [
  6689. "MIT"
  6690. ],
  6691. "authors": [
  6692. {
  6693. "name": "Fabien Potencier",
  6694. "email": "fabien@symfony.com"
  6695. },
  6696. {
  6697. "name": "Symfony Community",
  6698. "homepage": "https://symfony.com/contributors"
  6699. }
  6700. ],
  6701. "description": "Provides a way to profile code",
  6702. "homepage": "https://symfony.com",
  6703. "support": {
  6704. "source": "https://github.com/symfony/stopwatch/tree/v7.3.0"
  6705. },
  6706. "funding": [
  6707. {
  6708. "url": "https://symfony.com/sponsor",
  6709. "type": "custom"
  6710. },
  6711. {
  6712. "url": "https://github.com/fabpot",
  6713. "type": "github"
  6714. },
  6715. {
  6716. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6717. "type": "tidelift"
  6718. }
  6719. ],
  6720. "time": "2025-02-24T10:49:57+00:00"
  6721. },
  6722. {
  6723. "name": "symfony/string",
  6724. "version": "v7.3.0",
  6725. "source": {
  6726. "type": "git",
  6727. "url": "https://github.com/symfony/string.git",
  6728. "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125"
  6729. },
  6730. "dist": {
  6731. "type": "zip",
  6732. "url": "https://api.github.com/repos/symfony/string/zipball/f3570b8c61ca887a9e2938e85cb6458515d2b125",
  6733. "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125",
  6734. "shasum": ""
  6735. },
  6736. "require": {
  6737. "php": ">=8.2",
  6738. "symfony/polyfill-ctype": "~1.8",
  6739. "symfony/polyfill-intl-grapheme": "~1.0",
  6740. "symfony/polyfill-intl-normalizer": "~1.0",
  6741. "symfony/polyfill-mbstring": "~1.0"
  6742. },
  6743. "conflict": {
  6744. "symfony/translation-contracts": "<2.5"
  6745. },
  6746. "require-dev": {
  6747. "symfony/emoji": "^7.1",
  6748. "symfony/error-handler": "^6.4|^7.0",
  6749. "symfony/http-client": "^6.4|^7.0",
  6750. "symfony/intl": "^6.4|^7.0",
  6751. "symfony/translation-contracts": "^2.5|^3.0",
  6752. "symfony/var-exporter": "^6.4|^7.0"
  6753. },
  6754. "type": "library",
  6755. "autoload": {
  6756. "files": [
  6757. "Resources/functions.php"
  6758. ],
  6759. "psr-4": {
  6760. "Symfony\\Component\\String\\": ""
  6761. },
  6762. "exclude-from-classmap": [
  6763. "/Tests/"
  6764. ]
  6765. },
  6766. "notification-url": "https://packagist.org/downloads/",
  6767. "license": [
  6768. "MIT"
  6769. ],
  6770. "authors": [
  6771. {
  6772. "name": "Nicolas Grekas",
  6773. "email": "p@tchwork.com"
  6774. },
  6775. {
  6776. "name": "Symfony Community",
  6777. "homepage": "https://symfony.com/contributors"
  6778. }
  6779. ],
  6780. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6781. "homepage": "https://symfony.com",
  6782. "keywords": [
  6783. "grapheme",
  6784. "i18n",
  6785. "string",
  6786. "unicode",
  6787. "utf-8",
  6788. "utf8"
  6789. ],
  6790. "support": {
  6791. "source": "https://github.com/symfony/string/tree/v7.3.0"
  6792. },
  6793. "funding": [
  6794. {
  6795. "url": "https://symfony.com/sponsor",
  6796. "type": "custom"
  6797. },
  6798. {
  6799. "url": "https://github.com/fabpot",
  6800. "type": "github"
  6801. },
  6802. {
  6803. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6804. "type": "tidelift"
  6805. }
  6806. ],
  6807. "time": "2025-04-20T20:19:01+00:00"
  6808. },
  6809. {
  6810. "name": "symfony/translation",
  6811. "version": "v7.3.1",
  6812. "source": {
  6813. "type": "git",
  6814. "url": "https://github.com/symfony/translation.git",
  6815. "reference": "241d5ac4910d256660238a7ecf250deba4c73063"
  6816. },
  6817. "dist": {
  6818. "type": "zip",
  6819. "url": "https://api.github.com/repos/symfony/translation/zipball/241d5ac4910d256660238a7ecf250deba4c73063",
  6820. "reference": "241d5ac4910d256660238a7ecf250deba4c73063",
  6821. "shasum": ""
  6822. },
  6823. "require": {
  6824. "php": ">=8.2",
  6825. "symfony/deprecation-contracts": "^2.5|^3",
  6826. "symfony/polyfill-mbstring": "~1.0",
  6827. "symfony/translation-contracts": "^2.5|^3.0"
  6828. },
  6829. "conflict": {
  6830. "nikic/php-parser": "<5.0",
  6831. "symfony/config": "<6.4",
  6832. "symfony/console": "<6.4",
  6833. "symfony/dependency-injection": "<6.4",
  6834. "symfony/http-client-contracts": "<2.5",
  6835. "symfony/http-kernel": "<6.4",
  6836. "symfony/service-contracts": "<2.5",
  6837. "symfony/twig-bundle": "<6.4",
  6838. "symfony/yaml": "<6.4"
  6839. },
  6840. "provide": {
  6841. "symfony/translation-implementation": "2.3|3.0"
  6842. },
  6843. "require-dev": {
  6844. "nikic/php-parser": "^5.0",
  6845. "psr/log": "^1|^2|^3",
  6846. "symfony/config": "^6.4|^7.0",
  6847. "symfony/console": "^6.4|^7.0",
  6848. "symfony/dependency-injection": "^6.4|^7.0",
  6849. "symfony/finder": "^6.4|^7.0",
  6850. "symfony/http-client-contracts": "^2.5|^3.0",
  6851. "symfony/http-kernel": "^6.4|^7.0",
  6852. "symfony/intl": "^6.4|^7.0",
  6853. "symfony/polyfill-intl-icu": "^1.21",
  6854. "symfony/routing": "^6.4|^7.0",
  6855. "symfony/service-contracts": "^2.5|^3",
  6856. "symfony/yaml": "^6.4|^7.0"
  6857. },
  6858. "type": "library",
  6859. "autoload": {
  6860. "files": [
  6861. "Resources/functions.php"
  6862. ],
  6863. "psr-4": {
  6864. "Symfony\\Component\\Translation\\": ""
  6865. },
  6866. "exclude-from-classmap": [
  6867. "/Tests/"
  6868. ]
  6869. },
  6870. "notification-url": "https://packagist.org/downloads/",
  6871. "license": [
  6872. "MIT"
  6873. ],
  6874. "authors": [
  6875. {
  6876. "name": "Fabien Potencier",
  6877. "email": "fabien@symfony.com"
  6878. },
  6879. {
  6880. "name": "Symfony Community",
  6881. "homepage": "https://symfony.com/contributors"
  6882. }
  6883. ],
  6884. "description": "Provides tools to internationalize your application",
  6885. "homepage": "https://symfony.com",
  6886. "support": {
  6887. "source": "https://github.com/symfony/translation/tree/v7.3.1"
  6888. },
  6889. "funding": [
  6890. {
  6891. "url": "https://symfony.com/sponsor",
  6892. "type": "custom"
  6893. },
  6894. {
  6895. "url": "https://github.com/fabpot",
  6896. "type": "github"
  6897. },
  6898. {
  6899. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6900. "type": "tidelift"
  6901. }
  6902. ],
  6903. "time": "2025-06-27T19:55:54+00:00"
  6904. },
  6905. {
  6906. "name": "symfony/translation-contracts",
  6907. "version": "v3.6.0",
  6908. "source": {
  6909. "type": "git",
  6910. "url": "https://github.com/symfony/translation-contracts.git",
  6911. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
  6912. },
  6913. "dist": {
  6914. "type": "zip",
  6915. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  6916. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  6917. "shasum": ""
  6918. },
  6919. "require": {
  6920. "php": ">=8.1"
  6921. },
  6922. "type": "library",
  6923. "extra": {
  6924. "thanks": {
  6925. "url": "https://github.com/symfony/contracts",
  6926. "name": "symfony/contracts"
  6927. },
  6928. "branch-alias": {
  6929. "dev-main": "3.6-dev"
  6930. }
  6931. },
  6932. "autoload": {
  6933. "psr-4": {
  6934. "Symfony\\Contracts\\Translation\\": ""
  6935. },
  6936. "exclude-from-classmap": [
  6937. "/Test/"
  6938. ]
  6939. },
  6940. "notification-url": "https://packagist.org/downloads/",
  6941. "license": [
  6942. "MIT"
  6943. ],
  6944. "authors": [
  6945. {
  6946. "name": "Nicolas Grekas",
  6947. "email": "p@tchwork.com"
  6948. },
  6949. {
  6950. "name": "Symfony Community",
  6951. "homepage": "https://symfony.com/contributors"
  6952. }
  6953. ],
  6954. "description": "Generic abstractions related to translation",
  6955. "homepage": "https://symfony.com",
  6956. "keywords": [
  6957. "abstractions",
  6958. "contracts",
  6959. "decoupling",
  6960. "interfaces",
  6961. "interoperability",
  6962. "standards"
  6963. ],
  6964. "support": {
  6965. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
  6966. },
  6967. "funding": [
  6968. {
  6969. "url": "https://symfony.com/sponsor",
  6970. "type": "custom"
  6971. },
  6972. {
  6973. "url": "https://github.com/fabpot",
  6974. "type": "github"
  6975. },
  6976. {
  6977. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6978. "type": "tidelift"
  6979. }
  6980. ],
  6981. "time": "2024-09-27T08:32:26+00:00"
  6982. },
  6983. {
  6984. "name": "symfony/twig-bridge",
  6985. "version": "v7.3.0",
  6986. "source": {
  6987. "type": "git",
  6988. "url": "https://github.com/symfony/twig-bridge.git",
  6989. "reference": "082eb15d8a4f9afee0acc4709fbe3aaf26d48891"
  6990. },
  6991. "dist": {
  6992. "type": "zip",
  6993. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/082eb15d8a4f9afee0acc4709fbe3aaf26d48891",
  6994. "reference": "082eb15d8a4f9afee0acc4709fbe3aaf26d48891",
  6995. "shasum": ""
  6996. },
  6997. "require": {
  6998. "php": ">=8.2",
  6999. "symfony/deprecation-contracts": "^2.5|^3",
  7000. "symfony/translation-contracts": "^2.5|^3",
  7001. "twig/twig": "^3.21"
  7002. },
  7003. "conflict": {
  7004. "phpdocumentor/reflection-docblock": "<3.2.2",
  7005. "phpdocumentor/type-resolver": "<1.4.0",
  7006. "symfony/console": "<6.4",
  7007. "symfony/form": "<6.4",
  7008. "symfony/http-foundation": "<6.4",
  7009. "symfony/http-kernel": "<6.4",
  7010. "symfony/mime": "<6.4",
  7011. "symfony/serializer": "<6.4",
  7012. "symfony/translation": "<6.4",
  7013. "symfony/workflow": "<6.4"
  7014. },
  7015. "require-dev": {
  7016. "egulias/email-validator": "^2.1.10|^3|^4",
  7017. "league/html-to-markdown": "^5.0",
  7018. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7019. "symfony/asset": "^6.4|^7.0",
  7020. "symfony/asset-mapper": "^6.4|^7.0",
  7021. "symfony/console": "^6.4|^7.0",
  7022. "symfony/dependency-injection": "^6.4|^7.0",
  7023. "symfony/emoji": "^7.1",
  7024. "symfony/expression-language": "^6.4|^7.0",
  7025. "symfony/finder": "^6.4|^7.0",
  7026. "symfony/form": "^6.4.20|^7.2.5",
  7027. "symfony/html-sanitizer": "^6.4|^7.0",
  7028. "symfony/http-foundation": "^7.3",
  7029. "symfony/http-kernel": "^6.4|^7.0",
  7030. "symfony/intl": "^6.4|^7.0",
  7031. "symfony/mime": "^6.4|^7.0",
  7032. "symfony/polyfill-intl-icu": "~1.0",
  7033. "symfony/property-info": "^6.4|^7.0",
  7034. "symfony/routing": "^6.4|^7.0",
  7035. "symfony/security-acl": "^2.8|^3.0",
  7036. "symfony/security-core": "^6.4|^7.0",
  7037. "symfony/security-csrf": "^6.4|^7.0",
  7038. "symfony/security-http": "^6.4|^7.0",
  7039. "symfony/serializer": "^6.4.3|^7.0.3",
  7040. "symfony/stopwatch": "^6.4|^7.0",
  7041. "symfony/translation": "^6.4|^7.0",
  7042. "symfony/validator": "^6.4|^7.0",
  7043. "symfony/web-link": "^6.4|^7.0",
  7044. "symfony/workflow": "^6.4|^7.0",
  7045. "symfony/yaml": "^6.4|^7.0",
  7046. "twig/cssinliner-extra": "^3",
  7047. "twig/inky-extra": "^3",
  7048. "twig/markdown-extra": "^3"
  7049. },
  7050. "type": "symfony-bridge",
  7051. "autoload": {
  7052. "psr-4": {
  7053. "Symfony\\Bridge\\Twig\\": ""
  7054. },
  7055. "exclude-from-classmap": [
  7056. "/Tests/"
  7057. ]
  7058. },
  7059. "notification-url": "https://packagist.org/downloads/",
  7060. "license": [
  7061. "MIT"
  7062. ],
  7063. "authors": [
  7064. {
  7065. "name": "Fabien Potencier",
  7066. "email": "fabien@symfony.com"
  7067. },
  7068. {
  7069. "name": "Symfony Community",
  7070. "homepage": "https://symfony.com/contributors"
  7071. }
  7072. ],
  7073. "description": "Provides integration for Twig with various Symfony components",
  7074. "homepage": "https://symfony.com",
  7075. "support": {
  7076. "source": "https://github.com/symfony/twig-bridge/tree/v7.3.0"
  7077. },
  7078. "funding": [
  7079. {
  7080. "url": "https://symfony.com/sponsor",
  7081. "type": "custom"
  7082. },
  7083. {
  7084. "url": "https://github.com/fabpot",
  7085. "type": "github"
  7086. },
  7087. {
  7088. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7089. "type": "tidelift"
  7090. }
  7091. ],
  7092. "time": "2025-05-19T13:28:56+00:00"
  7093. },
  7094. {
  7095. "name": "symfony/twig-bundle",
  7096. "version": "v7.3.1",
  7097. "source": {
  7098. "type": "git",
  7099. "url": "https://github.com/symfony/twig-bundle.git",
  7100. "reference": "bc23c11d9716fc2261ee26a32e654b0e8b1b1896"
  7101. },
  7102. "dist": {
  7103. "type": "zip",
  7104. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/bc23c11d9716fc2261ee26a32e654b0e8b1b1896",
  7105. "reference": "bc23c11d9716fc2261ee26a32e654b0e8b1b1896",
  7106. "shasum": ""
  7107. },
  7108. "require": {
  7109. "composer-runtime-api": ">=2.1",
  7110. "php": ">=8.2",
  7111. "symfony/config": "^7.3",
  7112. "symfony/dependency-injection": "^6.4|^7.0",
  7113. "symfony/http-foundation": "^6.4|^7.0",
  7114. "symfony/http-kernel": "^6.4|^7.0",
  7115. "symfony/twig-bridge": "^7.3",
  7116. "twig/twig": "^3.12"
  7117. },
  7118. "conflict": {
  7119. "symfony/framework-bundle": "<6.4",
  7120. "symfony/translation": "<6.4"
  7121. },
  7122. "require-dev": {
  7123. "symfony/asset": "^6.4|^7.0",
  7124. "symfony/expression-language": "^6.4|^7.0",
  7125. "symfony/finder": "^6.4|^7.0",
  7126. "symfony/form": "^6.4|^7.0",
  7127. "symfony/framework-bundle": "^6.4|^7.0",
  7128. "symfony/routing": "^6.4|^7.0",
  7129. "symfony/stopwatch": "^6.4|^7.0",
  7130. "symfony/translation": "^6.4|^7.0",
  7131. "symfony/web-link": "^6.4|^7.0",
  7132. "symfony/yaml": "^6.4|^7.0"
  7133. },
  7134. "type": "symfony-bundle",
  7135. "autoload": {
  7136. "psr-4": {
  7137. "Symfony\\Bundle\\TwigBundle\\": ""
  7138. },
  7139. "exclude-from-classmap": [
  7140. "/Tests/"
  7141. ]
  7142. },
  7143. "notification-url": "https://packagist.org/downloads/",
  7144. "license": [
  7145. "MIT"
  7146. ],
  7147. "authors": [
  7148. {
  7149. "name": "Fabien Potencier",
  7150. "email": "fabien@symfony.com"
  7151. },
  7152. {
  7153. "name": "Symfony Community",
  7154. "homepage": "https://symfony.com/contributors"
  7155. }
  7156. ],
  7157. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  7158. "homepage": "https://symfony.com",
  7159. "support": {
  7160. "source": "https://github.com/symfony/twig-bundle/tree/v7.3.1"
  7161. },
  7162. "funding": [
  7163. {
  7164. "url": "https://symfony.com/sponsor",
  7165. "type": "custom"
  7166. },
  7167. {
  7168. "url": "https://github.com/fabpot",
  7169. "type": "github"
  7170. },
  7171. {
  7172. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7173. "type": "tidelift"
  7174. }
  7175. ],
  7176. "time": "2025-06-24T04:04:43+00:00"
  7177. },
  7178. {
  7179. "name": "symfony/type-info",
  7180. "version": "v7.3.1",
  7181. "source": {
  7182. "type": "git",
  7183. "url": "https://github.com/symfony/type-info.git",
  7184. "reference": "5fa6e25e4195e73ce9e457b521ac5e61ec271150"
  7185. },
  7186. "dist": {
  7187. "type": "zip",
  7188. "url": "https://api.github.com/repos/symfony/type-info/zipball/5fa6e25e4195e73ce9e457b521ac5e61ec271150",
  7189. "reference": "5fa6e25e4195e73ce9e457b521ac5e61ec271150",
  7190. "shasum": ""
  7191. },
  7192. "require": {
  7193. "php": ">=8.2",
  7194. "psr/container": "^1.1|^2.0",
  7195. "symfony/deprecation-contracts": "^2.5|^3"
  7196. },
  7197. "conflict": {
  7198. "phpstan/phpdoc-parser": "<1.30"
  7199. },
  7200. "require-dev": {
  7201. "phpstan/phpdoc-parser": "^1.30|^2.0"
  7202. },
  7203. "type": "library",
  7204. "autoload": {
  7205. "psr-4": {
  7206. "Symfony\\Component\\TypeInfo\\": ""
  7207. },
  7208. "exclude-from-classmap": [
  7209. "/Tests/"
  7210. ]
  7211. },
  7212. "notification-url": "https://packagist.org/downloads/",
  7213. "license": [
  7214. "MIT"
  7215. ],
  7216. "authors": [
  7217. {
  7218. "name": "Mathias Arlaud",
  7219. "email": "mathias.arlaud@gmail.com"
  7220. },
  7221. {
  7222. "name": "Baptiste LEDUC",
  7223. "email": "baptiste.leduc@gmail.com"
  7224. },
  7225. {
  7226. "name": "Symfony Community",
  7227. "homepage": "https://symfony.com/contributors"
  7228. }
  7229. ],
  7230. "description": "Extracts PHP types information.",
  7231. "homepage": "https://symfony.com",
  7232. "keywords": [
  7233. "PHPStan",
  7234. "phpdoc",
  7235. "symfony",
  7236. "type"
  7237. ],
  7238. "support": {
  7239. "source": "https://github.com/symfony/type-info/tree/v7.3.1"
  7240. },
  7241. "funding": [
  7242. {
  7243. "url": "https://symfony.com/sponsor",
  7244. "type": "custom"
  7245. },
  7246. {
  7247. "url": "https://github.com/fabpot",
  7248. "type": "github"
  7249. },
  7250. {
  7251. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7252. "type": "tidelift"
  7253. }
  7254. ],
  7255. "time": "2025-06-27T19:55:54+00:00"
  7256. },
  7257. {
  7258. "name": "symfony/uid",
  7259. "version": "v7.3.1",
  7260. "source": {
  7261. "type": "git",
  7262. "url": "https://github.com/symfony/uid.git",
  7263. "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb"
  7264. },
  7265. "dist": {
  7266. "type": "zip",
  7267. "url": "https://api.github.com/repos/symfony/uid/zipball/a69f69f3159b852651a6bf45a9fdd149520525bb",
  7268. "reference": "a69f69f3159b852651a6bf45a9fdd149520525bb",
  7269. "shasum": ""
  7270. },
  7271. "require": {
  7272. "php": ">=8.2",
  7273. "symfony/polyfill-uuid": "^1.15"
  7274. },
  7275. "require-dev": {
  7276. "symfony/console": "^6.4|^7.0"
  7277. },
  7278. "type": "library",
  7279. "autoload": {
  7280. "psr-4": {
  7281. "Symfony\\Component\\Uid\\": ""
  7282. },
  7283. "exclude-from-classmap": [
  7284. "/Tests/"
  7285. ]
  7286. },
  7287. "notification-url": "https://packagist.org/downloads/",
  7288. "license": [
  7289. "MIT"
  7290. ],
  7291. "authors": [
  7292. {
  7293. "name": "Grégoire Pineau",
  7294. "email": "lyrixx@lyrixx.info"
  7295. },
  7296. {
  7297. "name": "Nicolas Grekas",
  7298. "email": "p@tchwork.com"
  7299. },
  7300. {
  7301. "name": "Symfony Community",
  7302. "homepage": "https://symfony.com/contributors"
  7303. }
  7304. ],
  7305. "description": "Provides an object-oriented API to generate and represent UIDs",
  7306. "homepage": "https://symfony.com",
  7307. "keywords": [
  7308. "UID",
  7309. "ulid",
  7310. "uuid"
  7311. ],
  7312. "support": {
  7313. "source": "https://github.com/symfony/uid/tree/v7.3.1"
  7314. },
  7315. "funding": [
  7316. {
  7317. "url": "https://symfony.com/sponsor",
  7318. "type": "custom"
  7319. },
  7320. {
  7321. "url": "https://github.com/fabpot",
  7322. "type": "github"
  7323. },
  7324. {
  7325. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7326. "type": "tidelift"
  7327. }
  7328. ],
  7329. "time": "2025-06-27T19:55:54+00:00"
  7330. },
  7331. {
  7332. "name": "symfony/ux-icons",
  7333. "version": "v2.27.0",
  7334. "source": {
  7335. "type": "git",
  7336. "url": "https://github.com/symfony/ux-icons.git",
  7337. "reference": "af6d09779e786717c6e3b5a8a004e8c18ce3ef00"
  7338. },
  7339. "dist": {
  7340. "type": "zip",
  7341. "url": "https://api.github.com/repos/symfony/ux-icons/zipball/af6d09779e786717c6e3b5a8a004e8c18ce3ef00",
  7342. "reference": "af6d09779e786717c6e3b5a8a004e8c18ce3ef00",
  7343. "shasum": ""
  7344. },
  7345. "require": {
  7346. "php": ">=8.1",
  7347. "symfony/framework-bundle": "^6.4|^7.0",
  7348. "symfony/twig-bundle": "^6.4|^7.0"
  7349. },
  7350. "conflict": {
  7351. "symfony/flex": "<1.13",
  7352. "symfony/ux-twig-component": "<2.21"
  7353. },
  7354. "require-dev": {
  7355. "psr/log": "^2|^3",
  7356. "symfony/asset-mapper": "^6.4|^7.0",
  7357. "symfony/console": "^6.4|^7.0",
  7358. "symfony/http-client": "6.4|^7.0",
  7359. "symfony/phpunit-bridge": "^6.3|^7.0",
  7360. "symfony/ux-twig-component": "^2.14",
  7361. "zenstruck/console-test": "^1.5"
  7362. },
  7363. "type": "symfony-bundle",
  7364. "extra": {
  7365. "thanks": {
  7366. "url": "https://github.com/symfony/ux",
  7367. "name": "symfony/ux"
  7368. }
  7369. },
  7370. "autoload": {
  7371. "psr-4": {
  7372. "Symfony\\UX\\Icons\\": "src/"
  7373. }
  7374. },
  7375. "notification-url": "https://packagist.org/downloads/",
  7376. "license": [
  7377. "MIT"
  7378. ],
  7379. "authors": [
  7380. {
  7381. "name": "Kevin Bond",
  7382. "email": "kevinbond@gmail.com"
  7383. },
  7384. {
  7385. "name": "Simon André",
  7386. "email": "smn.andre@gmail.com"
  7387. },
  7388. {
  7389. "name": "Symfony Community",
  7390. "homepage": "https://symfony.com/contributors"
  7391. }
  7392. ],
  7393. "description": "Renders local and remote SVG icons in your Twig templates.",
  7394. "homepage": "https://symfony.com",
  7395. "keywords": [
  7396. "icons",
  7397. "svg",
  7398. "symfony-ux",
  7399. "twig"
  7400. ],
  7401. "support": {
  7402. "source": "https://github.com/symfony/ux-icons/tree/v2.27.0"
  7403. },
  7404. "funding": [
  7405. {
  7406. "url": "https://symfony.com/sponsor",
  7407. "type": "custom"
  7408. },
  7409. {
  7410. "url": "https://github.com/fabpot",
  7411. "type": "github"
  7412. },
  7413. {
  7414. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7415. "type": "tidelift"
  7416. }
  7417. ],
  7418. "time": "2025-06-17T06:15:15+00:00"
  7419. },
  7420. {
  7421. "name": "symfony/ux-toggle-password",
  7422. "version": "v2.27.0",
  7423. "source": {
  7424. "type": "git",
  7425. "url": "https://github.com/symfony/ux-toggle-password.git",
  7426. "reference": "9753f554d00e0f86f44726165f9af6e6513086b7"
  7427. },
  7428. "dist": {
  7429. "type": "zip",
  7430. "url": "https://api.github.com/repos/symfony/ux-toggle-password/zipball/9753f554d00e0f86f44726165f9af6e6513086b7",
  7431. "reference": "9753f554d00e0f86f44726165f9af6e6513086b7",
  7432. "shasum": ""
  7433. },
  7434. "require": {
  7435. "php": ">=8.1",
  7436. "symfony/config": "^5.4|^6.0|^7.0",
  7437. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7438. "symfony/form": "^5.4|^6.0|^7.0",
  7439. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7440. "symfony/options-resolver": "^5.4|^6.0|^7.0",
  7441. "symfony/translation": "^5.4|^6.0|^7.0"
  7442. },
  7443. "require-dev": {
  7444. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  7445. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  7446. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  7447. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  7448. "twig/twig": "^2.14.7|^3.0.4"
  7449. },
  7450. "type": "symfony-bundle",
  7451. "extra": {
  7452. "thanks": {
  7453. "url": "https://github.com/symfony/ux",
  7454. "name": "symfony/ux"
  7455. }
  7456. },
  7457. "autoload": {
  7458. "psr-4": {
  7459. "Symfony\\UX\\TogglePassword\\": "src/"
  7460. }
  7461. },
  7462. "notification-url": "https://packagist.org/downloads/",
  7463. "license": [
  7464. "MIT"
  7465. ],
  7466. "authors": [
  7467. {
  7468. "name": "Félix Eymonot",
  7469. "email": "felix.eymonot@alximy.io"
  7470. },
  7471. {
  7472. "name": "Symfony Community",
  7473. "homepage": "https://symfony.com/contributors"
  7474. }
  7475. ],
  7476. "description": "Toggle visibility of password inputs for Symfony Forms",
  7477. "homepage": "https://symfony.com",
  7478. "keywords": [
  7479. "symfony-ux"
  7480. ],
  7481. "support": {
  7482. "source": "https://github.com/symfony/ux-toggle-password/tree/v2.27.0"
  7483. },
  7484. "funding": [
  7485. {
  7486. "url": "https://symfony.com/sponsor",
  7487. "type": "custom"
  7488. },
  7489. {
  7490. "url": "https://github.com/fabpot",
  7491. "type": "github"
  7492. },
  7493. {
  7494. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7495. "type": "tidelift"
  7496. }
  7497. ],
  7498. "time": "2025-06-06T20:27:21+00:00"
  7499. },
  7500. {
  7501. "name": "symfony/ux-turbo",
  7502. "version": "v2.27.0",
  7503. "source": {
  7504. "type": "git",
  7505. "url": "https://github.com/symfony/ux-turbo.git",
  7506. "reference": "b9ce9b30a9cf9bbd090c7ad290bdaf84a0e100b2"
  7507. },
  7508. "dist": {
  7509. "type": "zip",
  7510. "url": "https://api.github.com/repos/symfony/ux-turbo/zipball/b9ce9b30a9cf9bbd090c7ad290bdaf84a0e100b2",
  7511. "reference": "b9ce9b30a9cf9bbd090c7ad290bdaf84a0e100b2",
  7512. "shasum": ""
  7513. },
  7514. "require": {
  7515. "php": ">=8.1",
  7516. "symfony/stimulus-bundle": "^2.9.1"
  7517. },
  7518. "conflict": {
  7519. "symfony/flex": "<1.13"
  7520. },
  7521. "require-dev": {
  7522. "dbrekelmans/bdi": "dev-main",
  7523. "doctrine/doctrine-bundle": "^2.4.3",
  7524. "doctrine/orm": "^2.8 | 3.0",
  7525. "php-webdriver/webdriver": "^1.15",
  7526. "phpstan/phpstan": "^2.1.17",
  7527. "symfony/asset-mapper": "^6.4|^7.0",
  7528. "symfony/debug-bundle": "^5.4|^6.0|^7.0",
  7529. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7530. "symfony/form": "^5.4|^6.0|^7.0",
  7531. "symfony/framework-bundle": "^6.4|^7.0",
  7532. "symfony/mercure-bundle": "^0.3.7",
  7533. "symfony/messenger": "^5.4|^6.0|^7.0",
  7534. "symfony/panther": "^2.2",
  7535. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  7536. "symfony/process": "^5.4|6.3.*|^7.0",
  7537. "symfony/property-access": "^5.4|^6.0|^7.0",
  7538. "symfony/security-core": "^5.4|^6.0|^7.0",
  7539. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7540. "symfony/twig-bundle": "^6.4|^7.0",
  7541. "symfony/ux-twig-component": "^2.21",
  7542. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
  7543. },
  7544. "type": "symfony-bundle",
  7545. "extra": {
  7546. "thanks": {
  7547. "url": "https://github.com/symfony/ux",
  7548. "name": "symfony/ux"
  7549. }
  7550. },
  7551. "autoload": {
  7552. "psr-4": {
  7553. "Symfony\\UX\\Turbo\\": "src/"
  7554. }
  7555. },
  7556. "notification-url": "https://packagist.org/downloads/",
  7557. "license": [
  7558. "MIT"
  7559. ],
  7560. "authors": [
  7561. {
  7562. "name": "Kévin Dunglas",
  7563. "email": "kevin@dunglas.fr"
  7564. },
  7565. {
  7566. "name": "Symfony Community",
  7567. "homepage": "https://symfony.com/contributors"
  7568. }
  7569. ],
  7570. "description": "Hotwire Turbo integration for Symfony",
  7571. "homepage": "https://symfony.com",
  7572. "keywords": [
  7573. "hotwire",
  7574. "javascript",
  7575. "mercure",
  7576. "symfony-ux",
  7577. "turbo",
  7578. "turbo-stream"
  7579. ],
  7580. "support": {
  7581. "source": "https://github.com/symfony/ux-turbo/tree/v2.27.0"
  7582. },
  7583. "funding": [
  7584. {
  7585. "url": "https://symfony.com/sponsor",
  7586. "type": "custom"
  7587. },
  7588. {
  7589. "url": "https://github.com/fabpot",
  7590. "type": "github"
  7591. },
  7592. {
  7593. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7594. "type": "tidelift"
  7595. }
  7596. ],
  7597. "time": "2025-06-06T20:27:21+00:00"
  7598. },
  7599. {
  7600. "name": "symfony/ux-twig-component",
  7601. "version": "v2.27.0",
  7602. "source": {
  7603. "type": "git",
  7604. "url": "https://github.com/symfony/ux-twig-component.git",
  7605. "reference": "0879cd53812b79e8b6a20e104b6e785a2ac2c013"
  7606. },
  7607. "dist": {
  7608. "type": "zip",
  7609. "url": "https://api.github.com/repos/symfony/ux-twig-component/zipball/0879cd53812b79e8b6a20e104b6e785a2ac2c013",
  7610. "reference": "0879cd53812b79e8b6a20e104b6e785a2ac2c013",
  7611. "shasum": ""
  7612. },
  7613. "require": {
  7614. "php": ">=8.1",
  7615. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7616. "symfony/deprecation-contracts": "^2.2|^3.0",
  7617. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7618. "symfony/property-access": "^5.4|^6.0|^7.0",
  7619. "twig/twig": "^3.10.3"
  7620. },
  7621. "conflict": {
  7622. "symfony/config": "<5.4.0"
  7623. },
  7624. "require-dev": {
  7625. "symfony/console": "^5.4|^6.0|^7.0",
  7626. "symfony/css-selector": "^5.4|^6.0|^7.0",
  7627. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  7628. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  7629. "symfony/phpunit-bridge": "^6.0|^7.0",
  7630. "symfony/stimulus-bundle": "^2.9.1",
  7631. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  7632. "symfony/webpack-encore-bundle": "^1.15"
  7633. },
  7634. "type": "symfony-bundle",
  7635. "extra": {
  7636. "thanks": {
  7637. "url": "https://github.com/symfony/ux",
  7638. "name": "symfony/ux"
  7639. }
  7640. },
  7641. "autoload": {
  7642. "psr-4": {
  7643. "Symfony\\UX\\TwigComponent\\": "src/"
  7644. }
  7645. },
  7646. "notification-url": "https://packagist.org/downloads/",
  7647. "license": [
  7648. "MIT"
  7649. ],
  7650. "authors": [
  7651. {
  7652. "name": "Symfony Community",
  7653. "homepage": "https://symfony.com/contributors"
  7654. }
  7655. ],
  7656. "description": "Twig components for Symfony",
  7657. "homepage": "https://symfony.com",
  7658. "keywords": [
  7659. "components",
  7660. "symfony-ux",
  7661. "twig"
  7662. ],
  7663. "support": {
  7664. "source": "https://github.com/symfony/ux-twig-component/tree/v2.27.0"
  7665. },
  7666. "funding": [
  7667. {
  7668. "url": "https://symfony.com/sponsor",
  7669. "type": "custom"
  7670. },
  7671. {
  7672. "url": "https://github.com/fabpot",
  7673. "type": "github"
  7674. },
  7675. {
  7676. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7677. "type": "tidelift"
  7678. }
  7679. ],
  7680. "time": "2025-06-21T16:41:28+00:00"
  7681. },
  7682. {
  7683. "name": "symfony/validator",
  7684. "version": "v7.3.1",
  7685. "source": {
  7686. "type": "git",
  7687. "url": "https://github.com/symfony/validator.git",
  7688. "reference": "e2f2497c869fc57446f735fbf00cff4de32ae8c3"
  7689. },
  7690. "dist": {
  7691. "type": "zip",
  7692. "url": "https://api.github.com/repos/symfony/validator/zipball/e2f2497c869fc57446f735fbf00cff4de32ae8c3",
  7693. "reference": "e2f2497c869fc57446f735fbf00cff4de32ae8c3",
  7694. "shasum": ""
  7695. },
  7696. "require": {
  7697. "php": ">=8.2",
  7698. "symfony/deprecation-contracts": "^2.5|^3",
  7699. "symfony/polyfill-ctype": "~1.8",
  7700. "symfony/polyfill-mbstring": "~1.0",
  7701. "symfony/polyfill-php83": "^1.27",
  7702. "symfony/translation-contracts": "^2.5|^3"
  7703. },
  7704. "conflict": {
  7705. "doctrine/lexer": "<1.1",
  7706. "symfony/dependency-injection": "<6.4",
  7707. "symfony/doctrine-bridge": "<7.0",
  7708. "symfony/expression-language": "<6.4",
  7709. "symfony/http-kernel": "<6.4",
  7710. "symfony/intl": "<6.4",
  7711. "symfony/property-info": "<6.4",
  7712. "symfony/translation": "<6.4.3|>=7.0,<7.0.3",
  7713. "symfony/yaml": "<6.4"
  7714. },
  7715. "require-dev": {
  7716. "egulias/email-validator": "^2.1.10|^3|^4",
  7717. "symfony/cache": "^6.4|^7.0",
  7718. "symfony/config": "^6.4|^7.0",
  7719. "symfony/console": "^6.4|^7.0",
  7720. "symfony/dependency-injection": "^6.4|^7.0",
  7721. "symfony/expression-language": "^6.4|^7.0",
  7722. "symfony/finder": "^6.4|^7.0",
  7723. "symfony/http-client": "^6.4|^7.0",
  7724. "symfony/http-foundation": "^6.4|^7.0",
  7725. "symfony/http-kernel": "^6.4|^7.0",
  7726. "symfony/intl": "^6.4|^7.0",
  7727. "symfony/mime": "^6.4|^7.0",
  7728. "symfony/property-access": "^6.4|^7.0",
  7729. "symfony/property-info": "^6.4|^7.0",
  7730. "symfony/string": "^6.4|^7.0",
  7731. "symfony/translation": "^6.4.3|^7.0.3",
  7732. "symfony/type-info": "^7.1",
  7733. "symfony/yaml": "^6.4|^7.0"
  7734. },
  7735. "type": "library",
  7736. "autoload": {
  7737. "psr-4": {
  7738. "Symfony\\Component\\Validator\\": ""
  7739. },
  7740. "exclude-from-classmap": [
  7741. "/Tests/",
  7742. "/Resources/bin/"
  7743. ]
  7744. },
  7745. "notification-url": "https://packagist.org/downloads/",
  7746. "license": [
  7747. "MIT"
  7748. ],
  7749. "authors": [
  7750. {
  7751. "name": "Fabien Potencier",
  7752. "email": "fabien@symfony.com"
  7753. },
  7754. {
  7755. "name": "Symfony Community",
  7756. "homepage": "https://symfony.com/contributors"
  7757. }
  7758. ],
  7759. "description": "Provides tools to validate values",
  7760. "homepage": "https://symfony.com",
  7761. "support": {
  7762. "source": "https://github.com/symfony/validator/tree/v7.3.1"
  7763. },
  7764. "funding": [
  7765. {
  7766. "url": "https://symfony.com/sponsor",
  7767. "type": "custom"
  7768. },
  7769. {
  7770. "url": "https://github.com/fabpot",
  7771. "type": "github"
  7772. },
  7773. {
  7774. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7775. "type": "tidelift"
  7776. }
  7777. ],
  7778. "time": "2025-06-26T13:22:23+00:00"
  7779. },
  7780. {
  7781. "name": "symfony/var-dumper",
  7782. "version": "v7.3.1",
  7783. "source": {
  7784. "type": "git",
  7785. "url": "https://github.com/symfony/var-dumper.git",
  7786. "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42"
  7787. },
  7788. "dist": {
  7789. "type": "zip",
  7790. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/6e209fbe5f5a7b6043baba46fe5735a4b85d0d42",
  7791. "reference": "6e209fbe5f5a7b6043baba46fe5735a4b85d0d42",
  7792. "shasum": ""
  7793. },
  7794. "require": {
  7795. "php": ">=8.2",
  7796. "symfony/deprecation-contracts": "^2.5|^3",
  7797. "symfony/polyfill-mbstring": "~1.0"
  7798. },
  7799. "conflict": {
  7800. "symfony/console": "<6.4"
  7801. },
  7802. "require-dev": {
  7803. "ext-iconv": "*",
  7804. "symfony/console": "^6.4|^7.0",
  7805. "symfony/http-kernel": "^6.4|^7.0",
  7806. "symfony/process": "^6.4|^7.0",
  7807. "symfony/uid": "^6.4|^7.0",
  7808. "twig/twig": "^3.12"
  7809. },
  7810. "bin": [
  7811. "Resources/bin/var-dump-server"
  7812. ],
  7813. "type": "library",
  7814. "autoload": {
  7815. "files": [
  7816. "Resources/functions/dump.php"
  7817. ],
  7818. "psr-4": {
  7819. "Symfony\\Component\\VarDumper\\": ""
  7820. },
  7821. "exclude-from-classmap": [
  7822. "/Tests/"
  7823. ]
  7824. },
  7825. "notification-url": "https://packagist.org/downloads/",
  7826. "license": [
  7827. "MIT"
  7828. ],
  7829. "authors": [
  7830. {
  7831. "name": "Nicolas Grekas",
  7832. "email": "p@tchwork.com"
  7833. },
  7834. {
  7835. "name": "Symfony Community",
  7836. "homepage": "https://symfony.com/contributors"
  7837. }
  7838. ],
  7839. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7840. "homepage": "https://symfony.com",
  7841. "keywords": [
  7842. "debug",
  7843. "dump"
  7844. ],
  7845. "support": {
  7846. "source": "https://github.com/symfony/var-dumper/tree/v7.3.1"
  7847. },
  7848. "funding": [
  7849. {
  7850. "url": "https://symfony.com/sponsor",
  7851. "type": "custom"
  7852. },
  7853. {
  7854. "url": "https://github.com/fabpot",
  7855. "type": "github"
  7856. },
  7857. {
  7858. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7859. "type": "tidelift"
  7860. }
  7861. ],
  7862. "time": "2025-06-27T19:55:54+00:00"
  7863. },
  7864. {
  7865. "name": "symfony/var-exporter",
  7866. "version": "v7.3.0",
  7867. "source": {
  7868. "type": "git",
  7869. "url": "https://github.com/symfony/var-exporter.git",
  7870. "reference": "c9a1168891b5aaadfd6332ef44393330b3498c4c"
  7871. },
  7872. "dist": {
  7873. "type": "zip",
  7874. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/c9a1168891b5aaadfd6332ef44393330b3498c4c",
  7875. "reference": "c9a1168891b5aaadfd6332ef44393330b3498c4c",
  7876. "shasum": ""
  7877. },
  7878. "require": {
  7879. "php": ">=8.2",
  7880. "symfony/deprecation-contracts": "^2.5|^3"
  7881. },
  7882. "require-dev": {
  7883. "symfony/property-access": "^6.4|^7.0",
  7884. "symfony/serializer": "^6.4|^7.0",
  7885. "symfony/var-dumper": "^6.4|^7.0"
  7886. },
  7887. "type": "library",
  7888. "autoload": {
  7889. "psr-4": {
  7890. "Symfony\\Component\\VarExporter\\": ""
  7891. },
  7892. "exclude-from-classmap": [
  7893. "/Tests/"
  7894. ]
  7895. },
  7896. "notification-url": "https://packagist.org/downloads/",
  7897. "license": [
  7898. "MIT"
  7899. ],
  7900. "authors": [
  7901. {
  7902. "name": "Nicolas Grekas",
  7903. "email": "p@tchwork.com"
  7904. },
  7905. {
  7906. "name": "Symfony Community",
  7907. "homepage": "https://symfony.com/contributors"
  7908. }
  7909. ],
  7910. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7911. "homepage": "https://symfony.com",
  7912. "keywords": [
  7913. "clone",
  7914. "construct",
  7915. "export",
  7916. "hydrate",
  7917. "instantiate",
  7918. "lazy-loading",
  7919. "proxy",
  7920. "serialize"
  7921. ],
  7922. "support": {
  7923. "source": "https://github.com/symfony/var-exporter/tree/v7.3.0"
  7924. },
  7925. "funding": [
  7926. {
  7927. "url": "https://symfony.com/sponsor",
  7928. "type": "custom"
  7929. },
  7930. {
  7931. "url": "https://github.com/fabpot",
  7932. "type": "github"
  7933. },
  7934. {
  7935. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7936. "type": "tidelift"
  7937. }
  7938. ],
  7939. "time": "2025-05-15T09:04:05+00:00"
  7940. },
  7941. {
  7942. "name": "symfony/web-link",
  7943. "version": "v7.3.0",
  7944. "source": {
  7945. "type": "git",
  7946. "url": "https://github.com/symfony/web-link.git",
  7947. "reference": "7697f74fce67555665339423ce453cc8216a98ff"
  7948. },
  7949. "dist": {
  7950. "type": "zip",
  7951. "url": "https://api.github.com/repos/symfony/web-link/zipball/7697f74fce67555665339423ce453cc8216a98ff",
  7952. "reference": "7697f74fce67555665339423ce453cc8216a98ff",
  7953. "shasum": ""
  7954. },
  7955. "require": {
  7956. "php": ">=8.2",
  7957. "psr/link": "^1.1|^2.0"
  7958. },
  7959. "conflict": {
  7960. "symfony/http-kernel": "<6.4"
  7961. },
  7962. "provide": {
  7963. "psr/link-implementation": "1.0|2.0"
  7964. },
  7965. "require-dev": {
  7966. "symfony/http-kernel": "^6.4|^7.0"
  7967. },
  7968. "type": "library",
  7969. "autoload": {
  7970. "psr-4": {
  7971. "Symfony\\Component\\WebLink\\": ""
  7972. },
  7973. "exclude-from-classmap": [
  7974. "/Tests/"
  7975. ]
  7976. },
  7977. "notification-url": "https://packagist.org/downloads/",
  7978. "license": [
  7979. "MIT"
  7980. ],
  7981. "authors": [
  7982. {
  7983. "name": "Kévin Dunglas",
  7984. "email": "dunglas@gmail.com"
  7985. },
  7986. {
  7987. "name": "Symfony Community",
  7988. "homepage": "https://symfony.com/contributors"
  7989. }
  7990. ],
  7991. "description": "Manages links between resources",
  7992. "homepage": "https://symfony.com",
  7993. "keywords": [
  7994. "dns-prefetch",
  7995. "http",
  7996. "http2",
  7997. "link",
  7998. "performance",
  7999. "prefetch",
  8000. "preload",
  8001. "prerender",
  8002. "psr13",
  8003. "push"
  8004. ],
  8005. "support": {
  8006. "source": "https://github.com/symfony/web-link/tree/v7.3.0"
  8007. },
  8008. "funding": [
  8009. {
  8010. "url": "https://symfony.com/sponsor",
  8011. "type": "custom"
  8012. },
  8013. {
  8014. "url": "https://github.com/fabpot",
  8015. "type": "github"
  8016. },
  8017. {
  8018. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8019. "type": "tidelift"
  8020. }
  8021. ],
  8022. "time": "2025-05-19T13:28:18+00:00"
  8023. },
  8024. {
  8025. "name": "symfony/yaml",
  8026. "version": "v7.3.1",
  8027. "source": {
  8028. "type": "git",
  8029. "url": "https://github.com/symfony/yaml.git",
  8030. "reference": "0c3555045a46ab3cd4cc5a69d161225195230edb"
  8031. },
  8032. "dist": {
  8033. "type": "zip",
  8034. "url": "https://api.github.com/repos/symfony/yaml/zipball/0c3555045a46ab3cd4cc5a69d161225195230edb",
  8035. "reference": "0c3555045a46ab3cd4cc5a69d161225195230edb",
  8036. "shasum": ""
  8037. },
  8038. "require": {
  8039. "php": ">=8.2",
  8040. "symfony/deprecation-contracts": "^2.5|^3.0",
  8041. "symfony/polyfill-ctype": "^1.8"
  8042. },
  8043. "conflict": {
  8044. "symfony/console": "<6.4"
  8045. },
  8046. "require-dev": {
  8047. "symfony/console": "^6.4|^7.0"
  8048. },
  8049. "bin": [
  8050. "Resources/bin/yaml-lint"
  8051. ],
  8052. "type": "library",
  8053. "autoload": {
  8054. "psr-4": {
  8055. "Symfony\\Component\\Yaml\\": ""
  8056. },
  8057. "exclude-from-classmap": [
  8058. "/Tests/"
  8059. ]
  8060. },
  8061. "notification-url": "https://packagist.org/downloads/",
  8062. "license": [
  8063. "MIT"
  8064. ],
  8065. "authors": [
  8066. {
  8067. "name": "Fabien Potencier",
  8068. "email": "fabien@symfony.com"
  8069. },
  8070. {
  8071. "name": "Symfony Community",
  8072. "homepage": "https://symfony.com/contributors"
  8073. }
  8074. ],
  8075. "description": "Loads and dumps YAML files",
  8076. "homepage": "https://symfony.com",
  8077. "support": {
  8078. "source": "https://github.com/symfony/yaml/tree/v7.3.1"
  8079. },
  8080. "funding": [
  8081. {
  8082. "url": "https://symfony.com/sponsor",
  8083. "type": "custom"
  8084. },
  8085. {
  8086. "url": "https://github.com/fabpot",
  8087. "type": "github"
  8088. },
  8089. {
  8090. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8091. "type": "tidelift"
  8092. }
  8093. ],
  8094. "time": "2025-06-03T06:57:57+00:00"
  8095. },
  8096. {
  8097. "name": "symfonycasts/reset-password-bundle",
  8098. "version": "v1.23.1",
  8099. "source": {
  8100. "type": "git",
  8101. "url": "https://github.com/SymfonyCasts/reset-password-bundle.git",
  8102. "reference": "bde42fe5956e0cd523931da886ee41ab660c45b2"
  8103. },
  8104. "dist": {
  8105. "type": "zip",
  8106. "url": "https://api.github.com/repos/SymfonyCasts/reset-password-bundle/zipball/bde42fe5956e0cd523931da886ee41ab660c45b2",
  8107. "reference": "bde42fe5956e0cd523931da886ee41ab660c45b2",
  8108. "shasum": ""
  8109. },
  8110. "require": {
  8111. "ext-json": "*",
  8112. "php": ">=8.1.10",
  8113. "symfony/config": "^5.4 | ^6.0 | ^7.0",
  8114. "symfony/dependency-injection": "^5.4 | ^6.0 | ^7.0",
  8115. "symfony/deprecation-contracts": "^2.2 | ^3.0",
  8116. "symfony/http-kernel": "^5.4 | ^6.0 | ^7.0"
  8117. },
  8118. "require-dev": {
  8119. "doctrine/annotations": "^1.0",
  8120. "doctrine/doctrine-bundle": "^2.8",
  8121. "doctrine/orm": "^2.13",
  8122. "symfony/framework-bundle": "^5.4 | ^6.0 | ^7.0",
  8123. "symfony/phpunit-bridge": "^5.4 | ^6.0 | ^7.0",
  8124. "symfony/process": "^6.4 | ^7.0 | ^7.1",
  8125. "symfonycasts/internal-test-helpers": "dev-main"
  8126. },
  8127. "type": "symfony-bundle",
  8128. "autoload": {
  8129. "psr-4": {
  8130. "SymfonyCasts\\Bundle\\ResetPassword\\": "src/"
  8131. }
  8132. },
  8133. "notification-url": "https://packagist.org/downloads/",
  8134. "license": [
  8135. "MIT"
  8136. ],
  8137. "description": "Symfony bundle that adds password reset functionality.",
  8138. "support": {
  8139. "issues": "https://github.com/SymfonyCasts/reset-password-bundle/issues",
  8140. "source": "https://github.com/SymfonyCasts/reset-password-bundle/tree/v1.23.1"
  8141. },
  8142. "time": "2024-12-09T19:04:36+00:00"
  8143. },
  8144. {
  8145. "name": "symfonycasts/verify-email-bundle",
  8146. "version": "v1.17.3",
  8147. "source": {
  8148. "type": "git",
  8149. "url": "https://github.com/SymfonyCasts/verify-email-bundle.git",
  8150. "reference": "2cb1cd94ca7a65471563a5cb91ddf40e8433844e"
  8151. },
  8152. "dist": {
  8153. "type": "zip",
  8154. "url": "https://api.github.com/repos/SymfonyCasts/verify-email-bundle/zipball/2cb1cd94ca7a65471563a5cb91ddf40e8433844e",
  8155. "reference": "2cb1cd94ca7a65471563a5cb91ddf40e8433844e",
  8156. "shasum": ""
  8157. },
  8158. "require": {
  8159. "ext-json": "*",
  8160. "php": ">=8.1",
  8161. "symfony/config": "^5.4 | ^6.0 | ^7.0",
  8162. "symfony/dependency-injection": "^5.4 | ^6.0 | ^7.0",
  8163. "symfony/deprecation-contracts": "^2.2 | ^3.0",
  8164. "symfony/http-kernel": "^5.4 | ^6.0 | ^7.0",
  8165. "symfony/routing": "^5.4 | ^6.0 | ^7.0"
  8166. },
  8167. "require-dev": {
  8168. "doctrine/orm": "^2.7",
  8169. "doctrine/persistence": "^2.0",
  8170. "symfony/framework-bundle": "^5.4 | ^6.0 | ^7.0",
  8171. "symfony/phpunit-bridge": "^5.4 | ^6.0 | ^7.0"
  8172. },
  8173. "type": "symfony-bundle",
  8174. "autoload": {
  8175. "psr-4": {
  8176. "SymfonyCasts\\Bundle\\VerifyEmail\\": "src/"
  8177. }
  8178. },
  8179. "notification-url": "https://packagist.org/downloads/",
  8180. "license": [
  8181. "MIT"
  8182. ],
  8183. "description": "Simple, stylish Email Verification for Symfony",
  8184. "support": {
  8185. "issues": "https://github.com/SymfonyCasts/verify-email-bundle/issues",
  8186. "source": "https://github.com/SymfonyCasts/verify-email-bundle/tree/v1.17.3"
  8187. },
  8188. "time": "2024-12-09T18:44:25+00:00"
  8189. },
  8190. {
  8191. "name": "twig/extra-bundle",
  8192. "version": "v3.21.0",
  8193. "source": {
  8194. "type": "git",
  8195. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  8196. "reference": "62d1cf47a1aa009cbd07b21045b97d3d5cb79896"
  8197. },
  8198. "dist": {
  8199. "type": "zip",
  8200. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/62d1cf47a1aa009cbd07b21045b97d3d5cb79896",
  8201. "reference": "62d1cf47a1aa009cbd07b21045b97d3d5cb79896",
  8202. "shasum": ""
  8203. },
  8204. "require": {
  8205. "php": ">=8.1.0",
  8206. "symfony/framework-bundle": "^5.4|^6.4|^7.0",
  8207. "symfony/twig-bundle": "^5.4|^6.4|^7.0",
  8208. "twig/twig": "^3.2|^4.0"
  8209. },
  8210. "require-dev": {
  8211. "league/commonmark": "^1.0|^2.0",
  8212. "symfony/phpunit-bridge": "^6.4|^7.0",
  8213. "twig/cache-extra": "^3.0",
  8214. "twig/cssinliner-extra": "^3.0",
  8215. "twig/html-extra": "^3.0",
  8216. "twig/inky-extra": "^3.0",
  8217. "twig/intl-extra": "^3.0",
  8218. "twig/markdown-extra": "^3.0",
  8219. "twig/string-extra": "^3.0"
  8220. },
  8221. "type": "symfony-bundle",
  8222. "autoload": {
  8223. "psr-4": {
  8224. "Twig\\Extra\\TwigExtraBundle\\": ""
  8225. },
  8226. "exclude-from-classmap": [
  8227. "/Tests/"
  8228. ]
  8229. },
  8230. "notification-url": "https://packagist.org/downloads/",
  8231. "license": [
  8232. "MIT"
  8233. ],
  8234. "authors": [
  8235. {
  8236. "name": "Fabien Potencier",
  8237. "email": "fabien@symfony.com",
  8238. "homepage": "http://fabien.potencier.org",
  8239. "role": "Lead Developer"
  8240. }
  8241. ],
  8242. "description": "A Symfony bundle for extra Twig extensions",
  8243. "homepage": "https://twig.symfony.com",
  8244. "keywords": [
  8245. "bundle",
  8246. "extra",
  8247. "twig"
  8248. ],
  8249. "support": {
  8250. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.21.0"
  8251. },
  8252. "funding": [
  8253. {
  8254. "url": "https://github.com/fabpot",
  8255. "type": "github"
  8256. },
  8257. {
  8258. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8259. "type": "tidelift"
  8260. }
  8261. ],
  8262. "time": "2025-02-19T14:29:33+00:00"
  8263. },
  8264. {
  8265. "name": "twig/twig",
  8266. "version": "v3.21.1",
  8267. "source": {
  8268. "type": "git",
  8269. "url": "https://github.com/twigphp/Twig.git",
  8270. "reference": "285123877d4dd97dd7c11842ac5fb7e86e60d81d"
  8271. },
  8272. "dist": {
  8273. "type": "zip",
  8274. "url": "https://api.github.com/repos/twigphp/Twig/zipball/285123877d4dd97dd7c11842ac5fb7e86e60d81d",
  8275. "reference": "285123877d4dd97dd7c11842ac5fb7e86e60d81d",
  8276. "shasum": ""
  8277. },
  8278. "require": {
  8279. "php": ">=8.1.0",
  8280. "symfony/deprecation-contracts": "^2.5|^3",
  8281. "symfony/polyfill-ctype": "^1.8",
  8282. "symfony/polyfill-mbstring": "^1.3"
  8283. },
  8284. "require-dev": {
  8285. "phpstan/phpstan": "^2.0",
  8286. "psr/container": "^1.0|^2.0",
  8287. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  8288. },
  8289. "type": "library",
  8290. "autoload": {
  8291. "files": [
  8292. "src/Resources/core.php",
  8293. "src/Resources/debug.php",
  8294. "src/Resources/escaper.php",
  8295. "src/Resources/string_loader.php"
  8296. ],
  8297. "psr-4": {
  8298. "Twig\\": "src/"
  8299. }
  8300. },
  8301. "notification-url": "https://packagist.org/downloads/",
  8302. "license": [
  8303. "BSD-3-Clause"
  8304. ],
  8305. "authors": [
  8306. {
  8307. "name": "Fabien Potencier",
  8308. "email": "fabien@symfony.com",
  8309. "homepage": "http://fabien.potencier.org",
  8310. "role": "Lead Developer"
  8311. },
  8312. {
  8313. "name": "Twig Team",
  8314. "role": "Contributors"
  8315. },
  8316. {
  8317. "name": "Armin Ronacher",
  8318. "email": "armin.ronacher@active-4.com",
  8319. "role": "Project Founder"
  8320. }
  8321. ],
  8322. "description": "Twig, the flexible, fast, and secure template language for PHP",
  8323. "homepage": "https://twig.symfony.com",
  8324. "keywords": [
  8325. "templating"
  8326. ],
  8327. "support": {
  8328. "issues": "https://github.com/twigphp/Twig/issues",
  8329. "source": "https://github.com/twigphp/Twig/tree/v3.21.1"
  8330. },
  8331. "funding": [
  8332. {
  8333. "url": "https://github.com/fabpot",
  8334. "type": "github"
  8335. },
  8336. {
  8337. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  8338. "type": "tidelift"
  8339. }
  8340. ],
  8341. "time": "2025-05-03T07:21:55+00:00"
  8342. },
  8343. {
  8344. "name": "webmozart/assert",
  8345. "version": "1.11.0",
  8346. "source": {
  8347. "type": "git",
  8348. "url": "https://github.com/webmozarts/assert.git",
  8349. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8350. },
  8351. "dist": {
  8352. "type": "zip",
  8353. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8354. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8355. "shasum": ""
  8356. },
  8357. "require": {
  8358. "ext-ctype": "*",
  8359. "php": "^7.2 || ^8.0"
  8360. },
  8361. "conflict": {
  8362. "phpstan/phpstan": "<0.12.20",
  8363. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8364. },
  8365. "require-dev": {
  8366. "phpunit/phpunit": "^8.5.13"
  8367. },
  8368. "type": "library",
  8369. "extra": {
  8370. "branch-alias": {
  8371. "dev-master": "1.10-dev"
  8372. }
  8373. },
  8374. "autoload": {
  8375. "psr-4": {
  8376. "Webmozart\\Assert\\": "src/"
  8377. }
  8378. },
  8379. "notification-url": "https://packagist.org/downloads/",
  8380. "license": [
  8381. "MIT"
  8382. ],
  8383. "authors": [
  8384. {
  8385. "name": "Bernhard Schussek",
  8386. "email": "bschussek@gmail.com"
  8387. }
  8388. ],
  8389. "description": "Assertions to validate method input/output with nice error messages.",
  8390. "keywords": [
  8391. "assert",
  8392. "check",
  8393. "validate"
  8394. ],
  8395. "support": {
  8396. "issues": "https://github.com/webmozarts/assert/issues",
  8397. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8398. },
  8399. "time": "2022-06-03T18:03:27+00:00"
  8400. }
  8401. ],
  8402. "packages-dev": [
  8403. {
  8404. "name": "masterminds/html5",
  8405. "version": "2.9.0",
  8406. "source": {
  8407. "type": "git",
  8408. "url": "https://github.com/Masterminds/html5-php.git",
  8409. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  8410. },
  8411. "dist": {
  8412. "type": "zip",
  8413. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  8414. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  8415. "shasum": ""
  8416. },
  8417. "require": {
  8418. "ext-dom": "*",
  8419. "php": ">=5.3.0"
  8420. },
  8421. "require-dev": {
  8422. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  8423. },
  8424. "type": "library",
  8425. "extra": {
  8426. "branch-alias": {
  8427. "dev-master": "2.7-dev"
  8428. }
  8429. },
  8430. "autoload": {
  8431. "psr-4": {
  8432. "Masterminds\\": "src"
  8433. }
  8434. },
  8435. "notification-url": "https://packagist.org/downloads/",
  8436. "license": [
  8437. "MIT"
  8438. ],
  8439. "authors": [
  8440. {
  8441. "name": "Matt Butcher",
  8442. "email": "technosophos@gmail.com"
  8443. },
  8444. {
  8445. "name": "Matt Farina",
  8446. "email": "matt@mattfarina.com"
  8447. },
  8448. {
  8449. "name": "Asmir Mustafic",
  8450. "email": "goetas@gmail.com"
  8451. }
  8452. ],
  8453. "description": "An HTML5 parser and serializer.",
  8454. "homepage": "http://masterminds.github.io/html5-php",
  8455. "keywords": [
  8456. "HTML5",
  8457. "dom",
  8458. "html",
  8459. "parser",
  8460. "querypath",
  8461. "serializer",
  8462. "xml"
  8463. ],
  8464. "support": {
  8465. "issues": "https://github.com/Masterminds/html5-php/issues",
  8466. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  8467. },
  8468. "time": "2024-03-31T07:05:07+00:00"
  8469. },
  8470. {
  8471. "name": "myclabs/deep-copy",
  8472. "version": "1.13.3",
  8473. "source": {
  8474. "type": "git",
  8475. "url": "https://github.com/myclabs/DeepCopy.git",
  8476. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36"
  8477. },
  8478. "dist": {
  8479. "type": "zip",
  8480. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36",
  8481. "reference": "faed855a7b5f4d4637717c2b3863e277116beb36",
  8482. "shasum": ""
  8483. },
  8484. "require": {
  8485. "php": "^7.1 || ^8.0"
  8486. },
  8487. "conflict": {
  8488. "doctrine/collections": "<1.6.8",
  8489. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  8490. },
  8491. "require-dev": {
  8492. "doctrine/collections": "^1.6.8",
  8493. "doctrine/common": "^2.13.3 || ^3.2.2",
  8494. "phpspec/prophecy": "^1.10",
  8495. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  8496. },
  8497. "type": "library",
  8498. "autoload": {
  8499. "files": [
  8500. "src/DeepCopy/deep_copy.php"
  8501. ],
  8502. "psr-4": {
  8503. "DeepCopy\\": "src/DeepCopy/"
  8504. }
  8505. },
  8506. "notification-url": "https://packagist.org/downloads/",
  8507. "license": [
  8508. "MIT"
  8509. ],
  8510. "description": "Create deep copies (clones) of your objects",
  8511. "keywords": [
  8512. "clone",
  8513. "copy",
  8514. "duplicate",
  8515. "object",
  8516. "object graph"
  8517. ],
  8518. "support": {
  8519. "issues": "https://github.com/myclabs/DeepCopy/issues",
  8520. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3"
  8521. },
  8522. "funding": [
  8523. {
  8524. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  8525. "type": "tidelift"
  8526. }
  8527. ],
  8528. "time": "2025-07-05T12:25:42+00:00"
  8529. },
  8530. {
  8531. "name": "nikic/php-parser",
  8532. "version": "v5.5.0",
  8533. "source": {
  8534. "type": "git",
  8535. "url": "https://github.com/nikic/PHP-Parser.git",
  8536. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9"
  8537. },
  8538. "dist": {
  8539. "type": "zip",
  8540. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/ae59794362fe85e051a58ad36b289443f57be7a9",
  8541. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9",
  8542. "shasum": ""
  8543. },
  8544. "require": {
  8545. "ext-ctype": "*",
  8546. "ext-json": "*",
  8547. "ext-tokenizer": "*",
  8548. "php": ">=7.4"
  8549. },
  8550. "require-dev": {
  8551. "ircmaxell/php-yacc": "^0.0.7",
  8552. "phpunit/phpunit": "^9.0"
  8553. },
  8554. "bin": [
  8555. "bin/php-parse"
  8556. ],
  8557. "type": "library",
  8558. "extra": {
  8559. "branch-alias": {
  8560. "dev-master": "5.0-dev"
  8561. }
  8562. },
  8563. "autoload": {
  8564. "psr-4": {
  8565. "PhpParser\\": "lib/PhpParser"
  8566. }
  8567. },
  8568. "notification-url": "https://packagist.org/downloads/",
  8569. "license": [
  8570. "BSD-3-Clause"
  8571. ],
  8572. "authors": [
  8573. {
  8574. "name": "Nikita Popov"
  8575. }
  8576. ],
  8577. "description": "A PHP parser written in PHP",
  8578. "keywords": [
  8579. "parser",
  8580. "php"
  8581. ],
  8582. "support": {
  8583. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8584. "source": "https://github.com/nikic/PHP-Parser/tree/v5.5.0"
  8585. },
  8586. "time": "2025-05-31T08:24:38+00:00"
  8587. },
  8588. {
  8589. "name": "phar-io/manifest",
  8590. "version": "2.0.4",
  8591. "source": {
  8592. "type": "git",
  8593. "url": "https://github.com/phar-io/manifest.git",
  8594. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  8595. },
  8596. "dist": {
  8597. "type": "zip",
  8598. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  8599. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  8600. "shasum": ""
  8601. },
  8602. "require": {
  8603. "ext-dom": "*",
  8604. "ext-libxml": "*",
  8605. "ext-phar": "*",
  8606. "ext-xmlwriter": "*",
  8607. "phar-io/version": "^3.0.1",
  8608. "php": "^7.2 || ^8.0"
  8609. },
  8610. "type": "library",
  8611. "extra": {
  8612. "branch-alias": {
  8613. "dev-master": "2.0.x-dev"
  8614. }
  8615. },
  8616. "autoload": {
  8617. "classmap": [
  8618. "src/"
  8619. ]
  8620. },
  8621. "notification-url": "https://packagist.org/downloads/",
  8622. "license": [
  8623. "BSD-3-Clause"
  8624. ],
  8625. "authors": [
  8626. {
  8627. "name": "Arne Blankerts",
  8628. "email": "arne@blankerts.de",
  8629. "role": "Developer"
  8630. },
  8631. {
  8632. "name": "Sebastian Heuer",
  8633. "email": "sebastian@phpeople.de",
  8634. "role": "Developer"
  8635. },
  8636. {
  8637. "name": "Sebastian Bergmann",
  8638. "email": "sebastian@phpunit.de",
  8639. "role": "Developer"
  8640. }
  8641. ],
  8642. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8643. "support": {
  8644. "issues": "https://github.com/phar-io/manifest/issues",
  8645. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8646. },
  8647. "funding": [
  8648. {
  8649. "url": "https://github.com/theseer",
  8650. "type": "github"
  8651. }
  8652. ],
  8653. "time": "2024-03-03T12:33:53+00:00"
  8654. },
  8655. {
  8656. "name": "phar-io/version",
  8657. "version": "3.2.1",
  8658. "source": {
  8659. "type": "git",
  8660. "url": "https://github.com/phar-io/version.git",
  8661. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8662. },
  8663. "dist": {
  8664. "type": "zip",
  8665. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8666. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8667. "shasum": ""
  8668. },
  8669. "require": {
  8670. "php": "^7.2 || ^8.0"
  8671. },
  8672. "type": "library",
  8673. "autoload": {
  8674. "classmap": [
  8675. "src/"
  8676. ]
  8677. },
  8678. "notification-url": "https://packagist.org/downloads/",
  8679. "license": [
  8680. "BSD-3-Clause"
  8681. ],
  8682. "authors": [
  8683. {
  8684. "name": "Arne Blankerts",
  8685. "email": "arne@blankerts.de",
  8686. "role": "Developer"
  8687. },
  8688. {
  8689. "name": "Sebastian Heuer",
  8690. "email": "sebastian@phpeople.de",
  8691. "role": "Developer"
  8692. },
  8693. {
  8694. "name": "Sebastian Bergmann",
  8695. "email": "sebastian@phpunit.de",
  8696. "role": "Developer"
  8697. }
  8698. ],
  8699. "description": "Library for handling version information and constraints",
  8700. "support": {
  8701. "issues": "https://github.com/phar-io/version/issues",
  8702. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8703. },
  8704. "time": "2022-02-21T01:04:05+00:00"
  8705. },
  8706. {
  8707. "name": "phpunit/php-code-coverage",
  8708. "version": "12.3.1",
  8709. "source": {
  8710. "type": "git",
  8711. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8712. "reference": "ddec29dfc128eba9c204389960f2063f3b7fa170"
  8713. },
  8714. "dist": {
  8715. "type": "zip",
  8716. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/ddec29dfc128eba9c204389960f2063f3b7fa170",
  8717. "reference": "ddec29dfc128eba9c204389960f2063f3b7fa170",
  8718. "shasum": ""
  8719. },
  8720. "require": {
  8721. "ext-dom": "*",
  8722. "ext-libxml": "*",
  8723. "ext-xmlwriter": "*",
  8724. "nikic/php-parser": "^5.4.0",
  8725. "php": ">=8.3",
  8726. "phpunit/php-file-iterator": "^6.0",
  8727. "phpunit/php-text-template": "^5.0",
  8728. "sebastian/complexity": "^5.0",
  8729. "sebastian/environment": "^8.0",
  8730. "sebastian/lines-of-code": "^4.0",
  8731. "sebastian/version": "^6.0",
  8732. "theseer/tokenizer": "^1.2.3"
  8733. },
  8734. "require-dev": {
  8735. "phpunit/phpunit": "^12.1"
  8736. },
  8737. "suggest": {
  8738. "ext-pcov": "PHP extension that provides line coverage",
  8739. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8740. },
  8741. "type": "library",
  8742. "extra": {
  8743. "branch-alias": {
  8744. "dev-main": "12.3.x-dev"
  8745. }
  8746. },
  8747. "autoload": {
  8748. "classmap": [
  8749. "src/"
  8750. ]
  8751. },
  8752. "notification-url": "https://packagist.org/downloads/",
  8753. "license": [
  8754. "BSD-3-Clause"
  8755. ],
  8756. "authors": [
  8757. {
  8758. "name": "Sebastian Bergmann",
  8759. "email": "sebastian@phpunit.de",
  8760. "role": "lead"
  8761. }
  8762. ],
  8763. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8764. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8765. "keywords": [
  8766. "coverage",
  8767. "testing",
  8768. "xunit"
  8769. ],
  8770. "support": {
  8771. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8772. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8773. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/12.3.1"
  8774. },
  8775. "funding": [
  8776. {
  8777. "url": "https://github.com/sebastianbergmann",
  8778. "type": "github"
  8779. },
  8780. {
  8781. "url": "https://liberapay.com/sebastianbergmann",
  8782. "type": "liberapay"
  8783. },
  8784. {
  8785. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  8786. "type": "thanks_dev"
  8787. },
  8788. {
  8789. "url": "https://tidelift.com/funding/github/packagist/phpunit/php-code-coverage",
  8790. "type": "tidelift"
  8791. }
  8792. ],
  8793. "time": "2025-06-18T08:58:13+00:00"
  8794. },
  8795. {
  8796. "name": "phpunit/php-file-iterator",
  8797. "version": "6.0.0",
  8798. "source": {
  8799. "type": "git",
  8800. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8801. "reference": "961bc913d42fe24a257bfff826a5068079ac7782"
  8802. },
  8803. "dist": {
  8804. "type": "zip",
  8805. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/961bc913d42fe24a257bfff826a5068079ac7782",
  8806. "reference": "961bc913d42fe24a257bfff826a5068079ac7782",
  8807. "shasum": ""
  8808. },
  8809. "require": {
  8810. "php": ">=8.3"
  8811. },
  8812. "require-dev": {
  8813. "phpunit/phpunit": "^12.0"
  8814. },
  8815. "type": "library",
  8816. "extra": {
  8817. "branch-alias": {
  8818. "dev-main": "6.0-dev"
  8819. }
  8820. },
  8821. "autoload": {
  8822. "classmap": [
  8823. "src/"
  8824. ]
  8825. },
  8826. "notification-url": "https://packagist.org/downloads/",
  8827. "license": [
  8828. "BSD-3-Clause"
  8829. ],
  8830. "authors": [
  8831. {
  8832. "name": "Sebastian Bergmann",
  8833. "email": "sebastian@phpunit.de",
  8834. "role": "lead"
  8835. }
  8836. ],
  8837. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8838. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8839. "keywords": [
  8840. "filesystem",
  8841. "iterator"
  8842. ],
  8843. "support": {
  8844. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8845. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8846. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/6.0.0"
  8847. },
  8848. "funding": [
  8849. {
  8850. "url": "https://github.com/sebastianbergmann",
  8851. "type": "github"
  8852. }
  8853. ],
  8854. "time": "2025-02-07T04:58:37+00:00"
  8855. },
  8856. {
  8857. "name": "phpunit/php-invoker",
  8858. "version": "6.0.0",
  8859. "source": {
  8860. "type": "git",
  8861. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8862. "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406"
  8863. },
  8864. "dist": {
  8865. "type": "zip",
  8866. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/12b54e689b07a25a9b41e57736dfab6ec9ae5406",
  8867. "reference": "12b54e689b07a25a9b41e57736dfab6ec9ae5406",
  8868. "shasum": ""
  8869. },
  8870. "require": {
  8871. "php": ">=8.3"
  8872. },
  8873. "require-dev": {
  8874. "ext-pcntl": "*",
  8875. "phpunit/phpunit": "^12.0"
  8876. },
  8877. "suggest": {
  8878. "ext-pcntl": "*"
  8879. },
  8880. "type": "library",
  8881. "extra": {
  8882. "branch-alias": {
  8883. "dev-main": "6.0-dev"
  8884. }
  8885. },
  8886. "autoload": {
  8887. "classmap": [
  8888. "src/"
  8889. ]
  8890. },
  8891. "notification-url": "https://packagist.org/downloads/",
  8892. "license": [
  8893. "BSD-3-Clause"
  8894. ],
  8895. "authors": [
  8896. {
  8897. "name": "Sebastian Bergmann",
  8898. "email": "sebastian@phpunit.de",
  8899. "role": "lead"
  8900. }
  8901. ],
  8902. "description": "Invoke callables with a timeout",
  8903. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8904. "keywords": [
  8905. "process"
  8906. ],
  8907. "support": {
  8908. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8909. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  8910. "source": "https://github.com/sebastianbergmann/php-invoker/tree/6.0.0"
  8911. },
  8912. "funding": [
  8913. {
  8914. "url": "https://github.com/sebastianbergmann",
  8915. "type": "github"
  8916. }
  8917. ],
  8918. "time": "2025-02-07T04:58:58+00:00"
  8919. },
  8920. {
  8921. "name": "phpunit/php-text-template",
  8922. "version": "5.0.0",
  8923. "source": {
  8924. "type": "git",
  8925. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8926. "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53"
  8927. },
  8928. "dist": {
  8929. "type": "zip",
  8930. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/e1367a453f0eda562eedb4f659e13aa900d66c53",
  8931. "reference": "e1367a453f0eda562eedb4f659e13aa900d66c53",
  8932. "shasum": ""
  8933. },
  8934. "require": {
  8935. "php": ">=8.3"
  8936. },
  8937. "require-dev": {
  8938. "phpunit/phpunit": "^12.0"
  8939. },
  8940. "type": "library",
  8941. "extra": {
  8942. "branch-alias": {
  8943. "dev-main": "5.0-dev"
  8944. }
  8945. },
  8946. "autoload": {
  8947. "classmap": [
  8948. "src/"
  8949. ]
  8950. },
  8951. "notification-url": "https://packagist.org/downloads/",
  8952. "license": [
  8953. "BSD-3-Clause"
  8954. ],
  8955. "authors": [
  8956. {
  8957. "name": "Sebastian Bergmann",
  8958. "email": "sebastian@phpunit.de",
  8959. "role": "lead"
  8960. }
  8961. ],
  8962. "description": "Simple template engine.",
  8963. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8964. "keywords": [
  8965. "template"
  8966. ],
  8967. "support": {
  8968. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8969. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8970. "source": "https://github.com/sebastianbergmann/php-text-template/tree/5.0.0"
  8971. },
  8972. "funding": [
  8973. {
  8974. "url": "https://github.com/sebastianbergmann",
  8975. "type": "github"
  8976. }
  8977. ],
  8978. "time": "2025-02-07T04:59:16+00:00"
  8979. },
  8980. {
  8981. "name": "phpunit/php-timer",
  8982. "version": "8.0.0",
  8983. "source": {
  8984. "type": "git",
  8985. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8986. "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc"
  8987. },
  8988. "dist": {
  8989. "type": "zip",
  8990. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc",
  8991. "reference": "f258ce36aa457f3aa3339f9ed4c81fc66dc8c2cc",
  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": "8.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. "role": "lead"
  9020. }
  9021. ],
  9022. "description": "Utility class for timing",
  9023. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9024. "keywords": [
  9025. "timer"
  9026. ],
  9027. "support": {
  9028. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  9029. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  9030. "source": "https://github.com/sebastianbergmann/php-timer/tree/8.0.0"
  9031. },
  9032. "funding": [
  9033. {
  9034. "url": "https://github.com/sebastianbergmann",
  9035. "type": "github"
  9036. }
  9037. ],
  9038. "time": "2025-02-07T04:59:38+00:00"
  9039. },
  9040. {
  9041. "name": "phpunit/phpunit",
  9042. "version": "12.2.7",
  9043. "source": {
  9044. "type": "git",
  9045. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9046. "reference": "8b1348b254e5959acaf1539c6bd790515fb49414"
  9047. },
  9048. "dist": {
  9049. "type": "zip",
  9050. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8b1348b254e5959acaf1539c6bd790515fb49414",
  9051. "reference": "8b1348b254e5959acaf1539c6bd790515fb49414",
  9052. "shasum": ""
  9053. },
  9054. "require": {
  9055. "ext-dom": "*",
  9056. "ext-json": "*",
  9057. "ext-libxml": "*",
  9058. "ext-mbstring": "*",
  9059. "ext-xml": "*",
  9060. "ext-xmlwriter": "*",
  9061. "myclabs/deep-copy": "^1.13.3",
  9062. "phar-io/manifest": "^2.0.4",
  9063. "phar-io/version": "^3.2.1",
  9064. "php": ">=8.3",
  9065. "phpunit/php-code-coverage": "^12.3.1",
  9066. "phpunit/php-file-iterator": "^6.0.0",
  9067. "phpunit/php-invoker": "^6.0.0",
  9068. "phpunit/php-text-template": "^5.0.0",
  9069. "phpunit/php-timer": "^8.0.0",
  9070. "sebastian/cli-parser": "^4.0.0",
  9071. "sebastian/comparator": "^7.1.0",
  9072. "sebastian/diff": "^7.0.0",
  9073. "sebastian/environment": "^8.0.2",
  9074. "sebastian/exporter": "^7.0.0",
  9075. "sebastian/global-state": "^8.0.0",
  9076. "sebastian/object-enumerator": "^7.0.0",
  9077. "sebastian/type": "^6.0.2",
  9078. "sebastian/version": "^6.0.0",
  9079. "staabm/side-effects-detector": "^1.0.5"
  9080. },
  9081. "bin": [
  9082. "phpunit"
  9083. ],
  9084. "type": "library",
  9085. "extra": {
  9086. "branch-alias": {
  9087. "dev-main": "12.2-dev"
  9088. }
  9089. },
  9090. "autoload": {
  9091. "files": [
  9092. "src/Framework/Assert/Functions.php"
  9093. ],
  9094. "classmap": [
  9095. "src/"
  9096. ]
  9097. },
  9098. "notification-url": "https://packagist.org/downloads/",
  9099. "license": [
  9100. "BSD-3-Clause"
  9101. ],
  9102. "authors": [
  9103. {
  9104. "name": "Sebastian Bergmann",
  9105. "email": "sebastian@phpunit.de",
  9106. "role": "lead"
  9107. }
  9108. ],
  9109. "description": "The PHP Unit Testing framework.",
  9110. "homepage": "https://phpunit.de/",
  9111. "keywords": [
  9112. "phpunit",
  9113. "testing",
  9114. "xunit"
  9115. ],
  9116. "support": {
  9117. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  9118. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  9119. "source": "https://github.com/sebastianbergmann/phpunit/tree/12.2.7"
  9120. },
  9121. "funding": [
  9122. {
  9123. "url": "https://phpunit.de/sponsors.html",
  9124. "type": "custom"
  9125. },
  9126. {
  9127. "url": "https://github.com/sebastianbergmann",
  9128. "type": "github"
  9129. },
  9130. {
  9131. "url": "https://liberapay.com/sebastianbergmann",
  9132. "type": "liberapay"
  9133. },
  9134. {
  9135. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9136. "type": "thanks_dev"
  9137. },
  9138. {
  9139. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  9140. "type": "tidelift"
  9141. }
  9142. ],
  9143. "time": "2025-07-11T04:11:13+00:00"
  9144. },
  9145. {
  9146. "name": "sebastian/cli-parser",
  9147. "version": "4.0.0",
  9148. "source": {
  9149. "type": "git",
  9150. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  9151. "reference": "6d584c727d9114bcdc14c86711cd1cad51778e7c"
  9152. },
  9153. "dist": {
  9154. "type": "zip",
  9155. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/6d584c727d9114bcdc14c86711cd1cad51778e7c",
  9156. "reference": "6d584c727d9114bcdc14c86711cd1cad51778e7c",
  9157. "shasum": ""
  9158. },
  9159. "require": {
  9160. "php": ">=8.3"
  9161. },
  9162. "require-dev": {
  9163. "phpunit/phpunit": "^12.0"
  9164. },
  9165. "type": "library",
  9166. "extra": {
  9167. "branch-alias": {
  9168. "dev-main": "4.0-dev"
  9169. }
  9170. },
  9171. "autoload": {
  9172. "classmap": [
  9173. "src/"
  9174. ]
  9175. },
  9176. "notification-url": "https://packagist.org/downloads/",
  9177. "license": [
  9178. "BSD-3-Clause"
  9179. ],
  9180. "authors": [
  9181. {
  9182. "name": "Sebastian Bergmann",
  9183. "email": "sebastian@phpunit.de",
  9184. "role": "lead"
  9185. }
  9186. ],
  9187. "description": "Library for parsing CLI options",
  9188. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  9189. "support": {
  9190. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  9191. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  9192. "source": "https://github.com/sebastianbergmann/cli-parser/tree/4.0.0"
  9193. },
  9194. "funding": [
  9195. {
  9196. "url": "https://github.com/sebastianbergmann",
  9197. "type": "github"
  9198. }
  9199. ],
  9200. "time": "2025-02-07T04:53:50+00:00"
  9201. },
  9202. {
  9203. "name": "sebastian/comparator",
  9204. "version": "7.1.0",
  9205. "source": {
  9206. "type": "git",
  9207. "url": "https://github.com/sebastianbergmann/comparator.git",
  9208. "reference": "03d905327dccc0851c9a08d6a979dfc683826b6f"
  9209. },
  9210. "dist": {
  9211. "type": "zip",
  9212. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/03d905327dccc0851c9a08d6a979dfc683826b6f",
  9213. "reference": "03d905327dccc0851c9a08d6a979dfc683826b6f",
  9214. "shasum": ""
  9215. },
  9216. "require": {
  9217. "ext-dom": "*",
  9218. "ext-mbstring": "*",
  9219. "php": ">=8.3",
  9220. "sebastian/diff": "^7.0",
  9221. "sebastian/exporter": "^7.0"
  9222. },
  9223. "require-dev": {
  9224. "phpunit/phpunit": "^12.2"
  9225. },
  9226. "suggest": {
  9227. "ext-bcmath": "For comparing BcMath\\Number objects"
  9228. },
  9229. "type": "library",
  9230. "extra": {
  9231. "branch-alias": {
  9232. "dev-main": "7.1-dev"
  9233. }
  9234. },
  9235. "autoload": {
  9236. "classmap": [
  9237. "src/"
  9238. ]
  9239. },
  9240. "notification-url": "https://packagist.org/downloads/",
  9241. "license": [
  9242. "BSD-3-Clause"
  9243. ],
  9244. "authors": [
  9245. {
  9246. "name": "Sebastian Bergmann",
  9247. "email": "sebastian@phpunit.de"
  9248. },
  9249. {
  9250. "name": "Jeff Welch",
  9251. "email": "whatthejeff@gmail.com"
  9252. },
  9253. {
  9254. "name": "Volker Dusch",
  9255. "email": "github@wallbash.com"
  9256. },
  9257. {
  9258. "name": "Bernhard Schussek",
  9259. "email": "bschussek@2bepublished.at"
  9260. }
  9261. ],
  9262. "description": "Provides the functionality to compare PHP values for equality",
  9263. "homepage": "https://github.com/sebastianbergmann/comparator",
  9264. "keywords": [
  9265. "comparator",
  9266. "compare",
  9267. "equality"
  9268. ],
  9269. "support": {
  9270. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  9271. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  9272. "source": "https://github.com/sebastianbergmann/comparator/tree/7.1.0"
  9273. },
  9274. "funding": [
  9275. {
  9276. "url": "https://github.com/sebastianbergmann",
  9277. "type": "github"
  9278. },
  9279. {
  9280. "url": "https://liberapay.com/sebastianbergmann",
  9281. "type": "liberapay"
  9282. },
  9283. {
  9284. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9285. "type": "thanks_dev"
  9286. },
  9287. {
  9288. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  9289. "type": "tidelift"
  9290. }
  9291. ],
  9292. "time": "2025-06-17T07:41:58+00:00"
  9293. },
  9294. {
  9295. "name": "sebastian/complexity",
  9296. "version": "5.0.0",
  9297. "source": {
  9298. "type": "git",
  9299. "url": "https://github.com/sebastianbergmann/complexity.git",
  9300. "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb"
  9301. },
  9302. "dist": {
  9303. "type": "zip",
  9304. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/bad4316aba5303d0221f43f8cee37eb58d384bbb",
  9305. "reference": "bad4316aba5303d0221f43f8cee37eb58d384bbb",
  9306. "shasum": ""
  9307. },
  9308. "require": {
  9309. "nikic/php-parser": "^5.0",
  9310. "php": ">=8.3"
  9311. },
  9312. "require-dev": {
  9313. "phpunit/phpunit": "^12.0"
  9314. },
  9315. "type": "library",
  9316. "extra": {
  9317. "branch-alias": {
  9318. "dev-main": "5.0-dev"
  9319. }
  9320. },
  9321. "autoload": {
  9322. "classmap": [
  9323. "src/"
  9324. ]
  9325. },
  9326. "notification-url": "https://packagist.org/downloads/",
  9327. "license": [
  9328. "BSD-3-Clause"
  9329. ],
  9330. "authors": [
  9331. {
  9332. "name": "Sebastian Bergmann",
  9333. "email": "sebastian@phpunit.de",
  9334. "role": "lead"
  9335. }
  9336. ],
  9337. "description": "Library for calculating the complexity of PHP code units",
  9338. "homepage": "https://github.com/sebastianbergmann/complexity",
  9339. "support": {
  9340. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  9341. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  9342. "source": "https://github.com/sebastianbergmann/complexity/tree/5.0.0"
  9343. },
  9344. "funding": [
  9345. {
  9346. "url": "https://github.com/sebastianbergmann",
  9347. "type": "github"
  9348. }
  9349. ],
  9350. "time": "2025-02-07T04:55:25+00:00"
  9351. },
  9352. {
  9353. "name": "sebastian/diff",
  9354. "version": "7.0.0",
  9355. "source": {
  9356. "type": "git",
  9357. "url": "https://github.com/sebastianbergmann/diff.git",
  9358. "reference": "7ab1ea946c012266ca32390913653d844ecd085f"
  9359. },
  9360. "dist": {
  9361. "type": "zip",
  9362. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/7ab1ea946c012266ca32390913653d844ecd085f",
  9363. "reference": "7ab1ea946c012266ca32390913653d844ecd085f",
  9364. "shasum": ""
  9365. },
  9366. "require": {
  9367. "php": ">=8.3"
  9368. },
  9369. "require-dev": {
  9370. "phpunit/phpunit": "^12.0",
  9371. "symfony/process": "^7.2"
  9372. },
  9373. "type": "library",
  9374. "extra": {
  9375. "branch-alias": {
  9376. "dev-main": "7.0-dev"
  9377. }
  9378. },
  9379. "autoload": {
  9380. "classmap": [
  9381. "src/"
  9382. ]
  9383. },
  9384. "notification-url": "https://packagist.org/downloads/",
  9385. "license": [
  9386. "BSD-3-Clause"
  9387. ],
  9388. "authors": [
  9389. {
  9390. "name": "Sebastian Bergmann",
  9391. "email": "sebastian@phpunit.de"
  9392. },
  9393. {
  9394. "name": "Kore Nordmann",
  9395. "email": "mail@kore-nordmann.de"
  9396. }
  9397. ],
  9398. "description": "Diff implementation",
  9399. "homepage": "https://github.com/sebastianbergmann/diff",
  9400. "keywords": [
  9401. "diff",
  9402. "udiff",
  9403. "unidiff",
  9404. "unified diff"
  9405. ],
  9406. "support": {
  9407. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9408. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  9409. "source": "https://github.com/sebastianbergmann/diff/tree/7.0.0"
  9410. },
  9411. "funding": [
  9412. {
  9413. "url": "https://github.com/sebastianbergmann",
  9414. "type": "github"
  9415. }
  9416. ],
  9417. "time": "2025-02-07T04:55:46+00:00"
  9418. },
  9419. {
  9420. "name": "sebastian/environment",
  9421. "version": "8.0.2",
  9422. "source": {
  9423. "type": "git",
  9424. "url": "https://github.com/sebastianbergmann/environment.git",
  9425. "reference": "d364b9e5d0d3b18a2573351a1786fbf96b7e0792"
  9426. },
  9427. "dist": {
  9428. "type": "zip",
  9429. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d364b9e5d0d3b18a2573351a1786fbf96b7e0792",
  9430. "reference": "d364b9e5d0d3b18a2573351a1786fbf96b7e0792",
  9431. "shasum": ""
  9432. },
  9433. "require": {
  9434. "php": ">=8.3"
  9435. },
  9436. "require-dev": {
  9437. "phpunit/phpunit": "^12.0"
  9438. },
  9439. "suggest": {
  9440. "ext-posix": "*"
  9441. },
  9442. "type": "library",
  9443. "extra": {
  9444. "branch-alias": {
  9445. "dev-main": "8.0-dev"
  9446. }
  9447. },
  9448. "autoload": {
  9449. "classmap": [
  9450. "src/"
  9451. ]
  9452. },
  9453. "notification-url": "https://packagist.org/downloads/",
  9454. "license": [
  9455. "BSD-3-Clause"
  9456. ],
  9457. "authors": [
  9458. {
  9459. "name": "Sebastian Bergmann",
  9460. "email": "sebastian@phpunit.de"
  9461. }
  9462. ],
  9463. "description": "Provides functionality to handle HHVM/PHP environments",
  9464. "homepage": "https://github.com/sebastianbergmann/environment",
  9465. "keywords": [
  9466. "Xdebug",
  9467. "environment",
  9468. "hhvm"
  9469. ],
  9470. "support": {
  9471. "issues": "https://github.com/sebastianbergmann/environment/issues",
  9472. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  9473. "source": "https://github.com/sebastianbergmann/environment/tree/8.0.2"
  9474. },
  9475. "funding": [
  9476. {
  9477. "url": "https://github.com/sebastianbergmann",
  9478. "type": "github"
  9479. },
  9480. {
  9481. "url": "https://liberapay.com/sebastianbergmann",
  9482. "type": "liberapay"
  9483. },
  9484. {
  9485. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  9486. "type": "thanks_dev"
  9487. },
  9488. {
  9489. "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
  9490. "type": "tidelift"
  9491. }
  9492. ],
  9493. "time": "2025-05-21T15:05:44+00:00"
  9494. },
  9495. {
  9496. "name": "sebastian/exporter",
  9497. "version": "7.0.0",
  9498. "source": {
  9499. "type": "git",
  9500. "url": "https://github.com/sebastianbergmann/exporter.git",
  9501. "reference": "76432aafc58d50691a00d86d0632f1217a47b688"
  9502. },
  9503. "dist": {
  9504. "type": "zip",
  9505. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/76432aafc58d50691a00d86d0632f1217a47b688",
  9506. "reference": "76432aafc58d50691a00d86d0632f1217a47b688",
  9507. "shasum": ""
  9508. },
  9509. "require": {
  9510. "ext-mbstring": "*",
  9511. "php": ">=8.3",
  9512. "sebastian/recursion-context": "^7.0"
  9513. },
  9514. "require-dev": {
  9515. "phpunit/phpunit": "^12.0"
  9516. },
  9517. "type": "library",
  9518. "extra": {
  9519. "branch-alias": {
  9520. "dev-main": "7.0-dev"
  9521. }
  9522. },
  9523. "autoload": {
  9524. "classmap": [
  9525. "src/"
  9526. ]
  9527. },
  9528. "notification-url": "https://packagist.org/downloads/",
  9529. "license": [
  9530. "BSD-3-Clause"
  9531. ],
  9532. "authors": [
  9533. {
  9534. "name": "Sebastian Bergmann",
  9535. "email": "sebastian@phpunit.de"
  9536. },
  9537. {
  9538. "name": "Jeff Welch",
  9539. "email": "whatthejeff@gmail.com"
  9540. },
  9541. {
  9542. "name": "Volker Dusch",
  9543. "email": "github@wallbash.com"
  9544. },
  9545. {
  9546. "name": "Adam Harvey",
  9547. "email": "aharvey@php.net"
  9548. },
  9549. {
  9550. "name": "Bernhard Schussek",
  9551. "email": "bschussek@gmail.com"
  9552. }
  9553. ],
  9554. "description": "Provides the functionality to export PHP variables for visualization",
  9555. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9556. "keywords": [
  9557. "export",
  9558. "exporter"
  9559. ],
  9560. "support": {
  9561. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9562. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  9563. "source": "https://github.com/sebastianbergmann/exporter/tree/7.0.0"
  9564. },
  9565. "funding": [
  9566. {
  9567. "url": "https://github.com/sebastianbergmann",
  9568. "type": "github"
  9569. }
  9570. ],
  9571. "time": "2025-02-07T04:56:42+00:00"
  9572. },
  9573. {
  9574. "name": "sebastian/global-state",
  9575. "version": "8.0.0",
  9576. "source": {
  9577. "type": "git",
  9578. "url": "https://github.com/sebastianbergmann/global-state.git",
  9579. "reference": "570a2aeb26d40f057af686d63c4e99b075fb6cbc"
  9580. },
  9581. "dist": {
  9582. "type": "zip",
  9583. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/570a2aeb26d40f057af686d63c4e99b075fb6cbc",
  9584. "reference": "570a2aeb26d40f057af686d63c4e99b075fb6cbc",
  9585. "shasum": ""
  9586. },
  9587. "require": {
  9588. "php": ">=8.3",
  9589. "sebastian/object-reflector": "^5.0",
  9590. "sebastian/recursion-context": "^7.0"
  9591. },
  9592. "require-dev": {
  9593. "ext-dom": "*",
  9594. "phpunit/phpunit": "^12.0"
  9595. },
  9596. "type": "library",
  9597. "extra": {
  9598. "branch-alias": {
  9599. "dev-main": "8.0-dev"
  9600. }
  9601. },
  9602. "autoload": {
  9603. "classmap": [
  9604. "src/"
  9605. ]
  9606. },
  9607. "notification-url": "https://packagist.org/downloads/",
  9608. "license": [
  9609. "BSD-3-Clause"
  9610. ],
  9611. "authors": [
  9612. {
  9613. "name": "Sebastian Bergmann",
  9614. "email": "sebastian@phpunit.de"
  9615. }
  9616. ],
  9617. "description": "Snapshotting of global state",
  9618. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  9619. "keywords": [
  9620. "global state"
  9621. ],
  9622. "support": {
  9623. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9624. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  9625. "source": "https://github.com/sebastianbergmann/global-state/tree/8.0.0"
  9626. },
  9627. "funding": [
  9628. {
  9629. "url": "https://github.com/sebastianbergmann",
  9630. "type": "github"
  9631. }
  9632. ],
  9633. "time": "2025-02-07T04:56:59+00:00"
  9634. },
  9635. {
  9636. "name": "sebastian/lines-of-code",
  9637. "version": "4.0.0",
  9638. "source": {
  9639. "type": "git",
  9640. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9641. "reference": "97ffee3bcfb5805568d6af7f0f893678fc076d2f"
  9642. },
  9643. "dist": {
  9644. "type": "zip",
  9645. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/97ffee3bcfb5805568d6af7f0f893678fc076d2f",
  9646. "reference": "97ffee3bcfb5805568d6af7f0f893678fc076d2f",
  9647. "shasum": ""
  9648. },
  9649. "require": {
  9650. "nikic/php-parser": "^5.0",
  9651. "php": ">=8.3"
  9652. },
  9653. "require-dev": {
  9654. "phpunit/phpunit": "^12.0"
  9655. },
  9656. "type": "library",
  9657. "extra": {
  9658. "branch-alias": {
  9659. "dev-main": "4.0-dev"
  9660. }
  9661. },
  9662. "autoload": {
  9663. "classmap": [
  9664. "src/"
  9665. ]
  9666. },
  9667. "notification-url": "https://packagist.org/downloads/",
  9668. "license": [
  9669. "BSD-3-Clause"
  9670. ],
  9671. "authors": [
  9672. {
  9673. "name": "Sebastian Bergmann",
  9674. "email": "sebastian@phpunit.de",
  9675. "role": "lead"
  9676. }
  9677. ],
  9678. "description": "Library for counting the lines of code in PHP source code",
  9679. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9680. "support": {
  9681. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9682. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9683. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/4.0.0"
  9684. },
  9685. "funding": [
  9686. {
  9687. "url": "https://github.com/sebastianbergmann",
  9688. "type": "github"
  9689. }
  9690. ],
  9691. "time": "2025-02-07T04:57:28+00:00"
  9692. },
  9693. {
  9694. "name": "sebastian/object-enumerator",
  9695. "version": "7.0.0",
  9696. "source": {
  9697. "type": "git",
  9698. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9699. "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894"
  9700. },
  9701. "dist": {
  9702. "type": "zip",
  9703. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/1effe8e9b8e068e9ae228e542d5d11b5d16db894",
  9704. "reference": "1effe8e9b8e068e9ae228e542d5d11b5d16db894",
  9705. "shasum": ""
  9706. },
  9707. "require": {
  9708. "php": ">=8.3",
  9709. "sebastian/object-reflector": "^5.0",
  9710. "sebastian/recursion-context": "^7.0"
  9711. },
  9712. "require-dev": {
  9713. "phpunit/phpunit": "^12.0"
  9714. },
  9715. "type": "library",
  9716. "extra": {
  9717. "branch-alias": {
  9718. "dev-main": "7.0-dev"
  9719. }
  9720. },
  9721. "autoload": {
  9722. "classmap": [
  9723. "src/"
  9724. ]
  9725. },
  9726. "notification-url": "https://packagist.org/downloads/",
  9727. "license": [
  9728. "BSD-3-Clause"
  9729. ],
  9730. "authors": [
  9731. {
  9732. "name": "Sebastian Bergmann",
  9733. "email": "sebastian@phpunit.de"
  9734. }
  9735. ],
  9736. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9737. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9738. "support": {
  9739. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9740. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  9741. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/7.0.0"
  9742. },
  9743. "funding": [
  9744. {
  9745. "url": "https://github.com/sebastianbergmann",
  9746. "type": "github"
  9747. }
  9748. ],
  9749. "time": "2025-02-07T04:57:48+00:00"
  9750. },
  9751. {
  9752. "name": "sebastian/object-reflector",
  9753. "version": "5.0.0",
  9754. "source": {
  9755. "type": "git",
  9756. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9757. "reference": "4bfa827c969c98be1e527abd576533293c634f6a"
  9758. },
  9759. "dist": {
  9760. "type": "zip",
  9761. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/4bfa827c969c98be1e527abd576533293c634f6a",
  9762. "reference": "4bfa827c969c98be1e527abd576533293c634f6a",
  9763. "shasum": ""
  9764. },
  9765. "require": {
  9766. "php": ">=8.3"
  9767. },
  9768. "require-dev": {
  9769. "phpunit/phpunit": "^12.0"
  9770. },
  9771. "type": "library",
  9772. "extra": {
  9773. "branch-alias": {
  9774. "dev-main": "5.0-dev"
  9775. }
  9776. },
  9777. "autoload": {
  9778. "classmap": [
  9779. "src/"
  9780. ]
  9781. },
  9782. "notification-url": "https://packagist.org/downloads/",
  9783. "license": [
  9784. "BSD-3-Clause"
  9785. ],
  9786. "authors": [
  9787. {
  9788. "name": "Sebastian Bergmann",
  9789. "email": "sebastian@phpunit.de"
  9790. }
  9791. ],
  9792. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9793. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9794. "support": {
  9795. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9796. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  9797. "source": "https://github.com/sebastianbergmann/object-reflector/tree/5.0.0"
  9798. },
  9799. "funding": [
  9800. {
  9801. "url": "https://github.com/sebastianbergmann",
  9802. "type": "github"
  9803. }
  9804. ],
  9805. "time": "2025-02-07T04:58:17+00:00"
  9806. },
  9807. {
  9808. "name": "sebastian/recursion-context",
  9809. "version": "7.0.0",
  9810. "source": {
  9811. "type": "git",
  9812. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9813. "reference": "c405ae3a63e01b32eb71577f8ec1604e39858a7c"
  9814. },
  9815. "dist": {
  9816. "type": "zip",
  9817. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/c405ae3a63e01b32eb71577f8ec1604e39858a7c",
  9818. "reference": "c405ae3a63e01b32eb71577f8ec1604e39858a7c",
  9819. "shasum": ""
  9820. },
  9821. "require": {
  9822. "php": ">=8.3"
  9823. },
  9824. "require-dev": {
  9825. "phpunit/phpunit": "^12.0"
  9826. },
  9827. "type": "library",
  9828. "extra": {
  9829. "branch-alias": {
  9830. "dev-main": "7.0-dev"
  9831. }
  9832. },
  9833. "autoload": {
  9834. "classmap": [
  9835. "src/"
  9836. ]
  9837. },
  9838. "notification-url": "https://packagist.org/downloads/",
  9839. "license": [
  9840. "BSD-3-Clause"
  9841. ],
  9842. "authors": [
  9843. {
  9844. "name": "Sebastian Bergmann",
  9845. "email": "sebastian@phpunit.de"
  9846. },
  9847. {
  9848. "name": "Jeff Welch",
  9849. "email": "whatthejeff@gmail.com"
  9850. },
  9851. {
  9852. "name": "Adam Harvey",
  9853. "email": "aharvey@php.net"
  9854. }
  9855. ],
  9856. "description": "Provides functionality to recursively process PHP variables",
  9857. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9858. "support": {
  9859. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9860. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  9861. "source": "https://github.com/sebastianbergmann/recursion-context/tree/7.0.0"
  9862. },
  9863. "funding": [
  9864. {
  9865. "url": "https://github.com/sebastianbergmann",
  9866. "type": "github"
  9867. }
  9868. ],
  9869. "time": "2025-02-07T05:00:01+00:00"
  9870. },
  9871. {
  9872. "name": "sebastian/type",
  9873. "version": "6.0.2",
  9874. "source": {
  9875. "type": "git",
  9876. "url": "https://github.com/sebastianbergmann/type.git",
  9877. "reference": "1d7cd6e514384c36d7a390347f57c385d4be6069"
  9878. },
  9879. "dist": {
  9880. "type": "zip",
  9881. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/1d7cd6e514384c36d7a390347f57c385d4be6069",
  9882. "reference": "1d7cd6e514384c36d7a390347f57c385d4be6069",
  9883. "shasum": ""
  9884. },
  9885. "require": {
  9886. "php": ">=8.3"
  9887. },
  9888. "require-dev": {
  9889. "phpunit/phpunit": "^12.0"
  9890. },
  9891. "type": "library",
  9892. "extra": {
  9893. "branch-alias": {
  9894. "dev-main": "6.0-dev"
  9895. }
  9896. },
  9897. "autoload": {
  9898. "classmap": [
  9899. "src/"
  9900. ]
  9901. },
  9902. "notification-url": "https://packagist.org/downloads/",
  9903. "license": [
  9904. "BSD-3-Clause"
  9905. ],
  9906. "authors": [
  9907. {
  9908. "name": "Sebastian Bergmann",
  9909. "email": "sebastian@phpunit.de",
  9910. "role": "lead"
  9911. }
  9912. ],
  9913. "description": "Collection of value objects that represent the types of the PHP type system",
  9914. "homepage": "https://github.com/sebastianbergmann/type",
  9915. "support": {
  9916. "issues": "https://github.com/sebastianbergmann/type/issues",
  9917. "security": "https://github.com/sebastianbergmann/type/security/policy",
  9918. "source": "https://github.com/sebastianbergmann/type/tree/6.0.2"
  9919. },
  9920. "funding": [
  9921. {
  9922. "url": "https://github.com/sebastianbergmann",
  9923. "type": "github"
  9924. }
  9925. ],
  9926. "time": "2025-03-18T13:37:31+00:00"
  9927. },
  9928. {
  9929. "name": "sebastian/version",
  9930. "version": "6.0.0",
  9931. "source": {
  9932. "type": "git",
  9933. "url": "https://github.com/sebastianbergmann/version.git",
  9934. "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c"
  9935. },
  9936. "dist": {
  9937. "type": "zip",
  9938. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/3e6ccf7657d4f0a59200564b08cead899313b53c",
  9939. "reference": "3e6ccf7657d4f0a59200564b08cead899313b53c",
  9940. "shasum": ""
  9941. },
  9942. "require": {
  9943. "php": ">=8.3"
  9944. },
  9945. "type": "library",
  9946. "extra": {
  9947. "branch-alias": {
  9948. "dev-main": "6.0-dev"
  9949. }
  9950. },
  9951. "autoload": {
  9952. "classmap": [
  9953. "src/"
  9954. ]
  9955. },
  9956. "notification-url": "https://packagist.org/downloads/",
  9957. "license": [
  9958. "BSD-3-Clause"
  9959. ],
  9960. "authors": [
  9961. {
  9962. "name": "Sebastian Bergmann",
  9963. "email": "sebastian@phpunit.de",
  9964. "role": "lead"
  9965. }
  9966. ],
  9967. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9968. "homepage": "https://github.com/sebastianbergmann/version",
  9969. "support": {
  9970. "issues": "https://github.com/sebastianbergmann/version/issues",
  9971. "security": "https://github.com/sebastianbergmann/version/security/policy",
  9972. "source": "https://github.com/sebastianbergmann/version/tree/6.0.0"
  9973. },
  9974. "funding": [
  9975. {
  9976. "url": "https://github.com/sebastianbergmann",
  9977. "type": "github"
  9978. }
  9979. ],
  9980. "time": "2025-02-07T05:00:38+00:00"
  9981. },
  9982. {
  9983. "name": "staabm/side-effects-detector",
  9984. "version": "1.0.5",
  9985. "source": {
  9986. "type": "git",
  9987. "url": "https://github.com/staabm/side-effects-detector.git",
  9988. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  9989. },
  9990. "dist": {
  9991. "type": "zip",
  9992. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  9993. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  9994. "shasum": ""
  9995. },
  9996. "require": {
  9997. "ext-tokenizer": "*",
  9998. "php": "^7.4 || ^8.0"
  9999. },
  10000. "require-dev": {
  10001. "phpstan/extension-installer": "^1.4.3",
  10002. "phpstan/phpstan": "^1.12.6",
  10003. "phpunit/phpunit": "^9.6.21",
  10004. "symfony/var-dumper": "^5.4.43",
  10005. "tomasvotruba/type-coverage": "1.0.0",
  10006. "tomasvotruba/unused-public": "1.0.0"
  10007. },
  10008. "type": "library",
  10009. "autoload": {
  10010. "classmap": [
  10011. "lib/"
  10012. ]
  10013. },
  10014. "notification-url": "https://packagist.org/downloads/",
  10015. "license": [
  10016. "MIT"
  10017. ],
  10018. "description": "A static analysis tool to detect side effects in PHP code",
  10019. "keywords": [
  10020. "static analysis"
  10021. ],
  10022. "support": {
  10023. "issues": "https://github.com/staabm/side-effects-detector/issues",
  10024. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  10025. },
  10026. "funding": [
  10027. {
  10028. "url": "https://github.com/staabm",
  10029. "type": "github"
  10030. }
  10031. ],
  10032. "time": "2024-10-20T05:08:20+00:00"
  10033. },
  10034. {
  10035. "name": "symfony/browser-kit",
  10036. "version": "v7.3.0",
  10037. "source": {
  10038. "type": "git",
  10039. "url": "https://github.com/symfony/browser-kit.git",
  10040. "reference": "5384291845e74fd7d54f3d925c4a86ce12336593"
  10041. },
  10042. "dist": {
  10043. "type": "zip",
  10044. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/5384291845e74fd7d54f3d925c4a86ce12336593",
  10045. "reference": "5384291845e74fd7d54f3d925c4a86ce12336593",
  10046. "shasum": ""
  10047. },
  10048. "require": {
  10049. "php": ">=8.2",
  10050. "symfony/dom-crawler": "^6.4|^7.0"
  10051. },
  10052. "require-dev": {
  10053. "symfony/css-selector": "^6.4|^7.0",
  10054. "symfony/http-client": "^6.4|^7.0",
  10055. "symfony/mime": "^6.4|^7.0",
  10056. "symfony/process": "^6.4|^7.0"
  10057. },
  10058. "type": "library",
  10059. "autoload": {
  10060. "psr-4": {
  10061. "Symfony\\Component\\BrowserKit\\": ""
  10062. },
  10063. "exclude-from-classmap": [
  10064. "/Tests/"
  10065. ]
  10066. },
  10067. "notification-url": "https://packagist.org/downloads/",
  10068. "license": [
  10069. "MIT"
  10070. ],
  10071. "authors": [
  10072. {
  10073. "name": "Fabien Potencier",
  10074. "email": "fabien@symfony.com"
  10075. },
  10076. {
  10077. "name": "Symfony Community",
  10078. "homepage": "https://symfony.com/contributors"
  10079. }
  10080. ],
  10081. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  10082. "homepage": "https://symfony.com",
  10083. "support": {
  10084. "source": "https://github.com/symfony/browser-kit/tree/v7.3.0"
  10085. },
  10086. "funding": [
  10087. {
  10088. "url": "https://symfony.com/sponsor",
  10089. "type": "custom"
  10090. },
  10091. {
  10092. "url": "https://github.com/fabpot",
  10093. "type": "github"
  10094. },
  10095. {
  10096. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10097. "type": "tidelift"
  10098. }
  10099. ],
  10100. "time": "2025-03-05T10:15:41+00:00"
  10101. },
  10102. {
  10103. "name": "symfony/css-selector",
  10104. "version": "v7.3.0",
  10105. "source": {
  10106. "type": "git",
  10107. "url": "https://github.com/symfony/css-selector.git",
  10108. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  10109. },
  10110. "dist": {
  10111. "type": "zip",
  10112. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  10113. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  10114. "shasum": ""
  10115. },
  10116. "require": {
  10117. "php": ">=8.2"
  10118. },
  10119. "type": "library",
  10120. "autoload": {
  10121. "psr-4": {
  10122. "Symfony\\Component\\CssSelector\\": ""
  10123. },
  10124. "exclude-from-classmap": [
  10125. "/Tests/"
  10126. ]
  10127. },
  10128. "notification-url": "https://packagist.org/downloads/",
  10129. "license": [
  10130. "MIT"
  10131. ],
  10132. "authors": [
  10133. {
  10134. "name": "Fabien Potencier",
  10135. "email": "fabien@symfony.com"
  10136. },
  10137. {
  10138. "name": "Jean-François Simon",
  10139. "email": "jeanfrancois.simon@sensiolabs.com"
  10140. },
  10141. {
  10142. "name": "Symfony Community",
  10143. "homepage": "https://symfony.com/contributors"
  10144. }
  10145. ],
  10146. "description": "Converts CSS selectors to XPath expressions",
  10147. "homepage": "https://symfony.com",
  10148. "support": {
  10149. "source": "https://github.com/symfony/css-selector/tree/v7.3.0"
  10150. },
  10151. "funding": [
  10152. {
  10153. "url": "https://symfony.com/sponsor",
  10154. "type": "custom"
  10155. },
  10156. {
  10157. "url": "https://github.com/fabpot",
  10158. "type": "github"
  10159. },
  10160. {
  10161. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10162. "type": "tidelift"
  10163. }
  10164. ],
  10165. "time": "2024-09-25T14:21:43+00:00"
  10166. },
  10167. {
  10168. "name": "symfony/debug-bundle",
  10169. "version": "v7.3.0",
  10170. "source": {
  10171. "type": "git",
  10172. "url": "https://github.com/symfony/debug-bundle.git",
  10173. "reference": "781acc90f31f5fe18915f9276890864ebbbe3da8"
  10174. },
  10175. "dist": {
  10176. "type": "zip",
  10177. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/781acc90f31f5fe18915f9276890864ebbbe3da8",
  10178. "reference": "781acc90f31f5fe18915f9276890864ebbbe3da8",
  10179. "shasum": ""
  10180. },
  10181. "require": {
  10182. "composer-runtime-api": ">=2.1",
  10183. "ext-xml": "*",
  10184. "php": ">=8.2",
  10185. "symfony/config": "^7.3",
  10186. "symfony/dependency-injection": "^6.4|^7.0",
  10187. "symfony/http-kernel": "^6.4|^7.0",
  10188. "symfony/twig-bridge": "^6.4|^7.0",
  10189. "symfony/var-dumper": "^6.4|^7.0"
  10190. },
  10191. "require-dev": {
  10192. "symfony/web-profiler-bundle": "^6.4|^7.0"
  10193. },
  10194. "type": "symfony-bundle",
  10195. "autoload": {
  10196. "psr-4": {
  10197. "Symfony\\Bundle\\DebugBundle\\": ""
  10198. },
  10199. "exclude-from-classmap": [
  10200. "/Tests/"
  10201. ]
  10202. },
  10203. "notification-url": "https://packagist.org/downloads/",
  10204. "license": [
  10205. "MIT"
  10206. ],
  10207. "authors": [
  10208. {
  10209. "name": "Fabien Potencier",
  10210. "email": "fabien@symfony.com"
  10211. },
  10212. {
  10213. "name": "Symfony Community",
  10214. "homepage": "https://symfony.com/contributors"
  10215. }
  10216. ],
  10217. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  10218. "homepage": "https://symfony.com",
  10219. "support": {
  10220. "source": "https://github.com/symfony/debug-bundle/tree/v7.3.0"
  10221. },
  10222. "funding": [
  10223. {
  10224. "url": "https://symfony.com/sponsor",
  10225. "type": "custom"
  10226. },
  10227. {
  10228. "url": "https://github.com/fabpot",
  10229. "type": "github"
  10230. },
  10231. {
  10232. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10233. "type": "tidelift"
  10234. }
  10235. ],
  10236. "time": "2025-05-04T13:21:13+00:00"
  10237. },
  10238. {
  10239. "name": "symfony/dom-crawler",
  10240. "version": "v7.3.1",
  10241. "source": {
  10242. "type": "git",
  10243. "url": "https://github.com/symfony/dom-crawler.git",
  10244. "reference": "8b2ee2e06ab99fa5f067b6699296d4e35c156bb9"
  10245. },
  10246. "dist": {
  10247. "type": "zip",
  10248. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/8b2ee2e06ab99fa5f067b6699296d4e35c156bb9",
  10249. "reference": "8b2ee2e06ab99fa5f067b6699296d4e35c156bb9",
  10250. "shasum": ""
  10251. },
  10252. "require": {
  10253. "masterminds/html5": "^2.6",
  10254. "php": ">=8.2",
  10255. "symfony/polyfill-ctype": "~1.8",
  10256. "symfony/polyfill-mbstring": "~1.0"
  10257. },
  10258. "require-dev": {
  10259. "symfony/css-selector": "^6.4|^7.0"
  10260. },
  10261. "type": "library",
  10262. "autoload": {
  10263. "psr-4": {
  10264. "Symfony\\Component\\DomCrawler\\": ""
  10265. },
  10266. "exclude-from-classmap": [
  10267. "/Tests/"
  10268. ]
  10269. },
  10270. "notification-url": "https://packagist.org/downloads/",
  10271. "license": [
  10272. "MIT"
  10273. ],
  10274. "authors": [
  10275. {
  10276. "name": "Fabien Potencier",
  10277. "email": "fabien@symfony.com"
  10278. },
  10279. {
  10280. "name": "Symfony Community",
  10281. "homepage": "https://symfony.com/contributors"
  10282. }
  10283. ],
  10284. "description": "Eases DOM navigation for HTML and XML documents",
  10285. "homepage": "https://symfony.com",
  10286. "support": {
  10287. "source": "https://github.com/symfony/dom-crawler/tree/v7.3.1"
  10288. },
  10289. "funding": [
  10290. {
  10291. "url": "https://symfony.com/sponsor",
  10292. "type": "custom"
  10293. },
  10294. {
  10295. "url": "https://github.com/fabpot",
  10296. "type": "github"
  10297. },
  10298. {
  10299. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10300. "type": "tidelift"
  10301. }
  10302. ],
  10303. "time": "2025-06-15T10:07:06+00:00"
  10304. },
  10305. {
  10306. "name": "symfony/maker-bundle",
  10307. "version": "v1.64.0",
  10308. "source": {
  10309. "type": "git",
  10310. "url": "https://github.com/symfony/maker-bundle.git",
  10311. "reference": "c86da84640b0586e92aee2b276ee3638ef2f425a"
  10312. },
  10313. "dist": {
  10314. "type": "zip",
  10315. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/c86da84640b0586e92aee2b276ee3638ef2f425a",
  10316. "reference": "c86da84640b0586e92aee2b276ee3638ef2f425a",
  10317. "shasum": ""
  10318. },
  10319. "require": {
  10320. "doctrine/inflector": "^2.0",
  10321. "nikic/php-parser": "^5.0",
  10322. "php": ">=8.1",
  10323. "symfony/config": "^6.4|^7.0",
  10324. "symfony/console": "^6.4|^7.0",
  10325. "symfony/dependency-injection": "^6.4|^7.0",
  10326. "symfony/deprecation-contracts": "^2.2|^3",
  10327. "symfony/filesystem": "^6.4|^7.0",
  10328. "symfony/finder": "^6.4|^7.0",
  10329. "symfony/framework-bundle": "^6.4|^7.0",
  10330. "symfony/http-kernel": "^6.4|^7.0",
  10331. "symfony/process": "^6.4|^7.0"
  10332. },
  10333. "conflict": {
  10334. "doctrine/doctrine-bundle": "<2.10",
  10335. "doctrine/orm": "<2.15"
  10336. },
  10337. "require-dev": {
  10338. "composer/semver": "^3.0",
  10339. "doctrine/doctrine-bundle": "^2.5.0",
  10340. "doctrine/orm": "^2.15|^3",
  10341. "symfony/http-client": "^6.4|^7.0",
  10342. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  10343. "symfony/security-core": "^6.4|^7.0",
  10344. "symfony/security-http": "^6.4|^7.0",
  10345. "symfony/yaml": "^6.4|^7.0",
  10346. "twig/twig": "^3.0|^4.x-dev"
  10347. },
  10348. "type": "symfony-bundle",
  10349. "extra": {
  10350. "branch-alias": {
  10351. "dev-main": "1.x-dev"
  10352. }
  10353. },
  10354. "autoload": {
  10355. "psr-4": {
  10356. "Symfony\\Bundle\\MakerBundle\\": "src/"
  10357. }
  10358. },
  10359. "notification-url": "https://packagist.org/downloads/",
  10360. "license": [
  10361. "MIT"
  10362. ],
  10363. "authors": [
  10364. {
  10365. "name": "Symfony Community",
  10366. "homepage": "https://symfony.com/contributors"
  10367. }
  10368. ],
  10369. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  10370. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  10371. "keywords": [
  10372. "code generator",
  10373. "dev",
  10374. "generator",
  10375. "scaffold",
  10376. "scaffolding"
  10377. ],
  10378. "support": {
  10379. "issues": "https://github.com/symfony/maker-bundle/issues",
  10380. "source": "https://github.com/symfony/maker-bundle/tree/v1.64.0"
  10381. },
  10382. "funding": [
  10383. {
  10384. "url": "https://symfony.com/sponsor",
  10385. "type": "custom"
  10386. },
  10387. {
  10388. "url": "https://github.com/fabpot",
  10389. "type": "github"
  10390. },
  10391. {
  10392. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10393. "type": "tidelift"
  10394. }
  10395. ],
  10396. "time": "2025-06-23T16:12:08+00:00"
  10397. },
  10398. {
  10399. "name": "symfony/web-profiler-bundle",
  10400. "version": "v7.3.1",
  10401. "source": {
  10402. "type": "git",
  10403. "url": "https://github.com/symfony/web-profiler-bundle.git",
  10404. "reference": "47c994d8f08817122ffb48bf2ea4fb97b7e00d51"
  10405. },
  10406. "dist": {
  10407. "type": "zip",
  10408. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/47c994d8f08817122ffb48bf2ea4fb97b7e00d51",
  10409. "reference": "47c994d8f08817122ffb48bf2ea4fb97b7e00d51",
  10410. "shasum": ""
  10411. },
  10412. "require": {
  10413. "composer-runtime-api": ">=2.1",
  10414. "php": ">=8.2",
  10415. "symfony/config": "^7.3",
  10416. "symfony/deprecation-contracts": "^2.5|^3",
  10417. "symfony/framework-bundle": "^6.4|^7.0",
  10418. "symfony/http-kernel": "^6.4|^7.0",
  10419. "symfony/routing": "^6.4|^7.0",
  10420. "symfony/twig-bundle": "^6.4|^7.0",
  10421. "twig/twig": "^3.12"
  10422. },
  10423. "conflict": {
  10424. "symfony/form": "<6.4",
  10425. "symfony/mailer": "<6.4",
  10426. "symfony/messenger": "<6.4",
  10427. "symfony/serializer": "<7.2",
  10428. "symfony/workflow": "<7.3"
  10429. },
  10430. "require-dev": {
  10431. "symfony/browser-kit": "^6.4|^7.0",
  10432. "symfony/console": "^6.4|^7.0",
  10433. "symfony/css-selector": "^6.4|^7.0",
  10434. "symfony/stopwatch": "^6.4|^7.0"
  10435. },
  10436. "type": "symfony-bundle",
  10437. "autoload": {
  10438. "psr-4": {
  10439. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  10440. },
  10441. "exclude-from-classmap": [
  10442. "/Tests/"
  10443. ]
  10444. },
  10445. "notification-url": "https://packagist.org/downloads/",
  10446. "license": [
  10447. "MIT"
  10448. ],
  10449. "authors": [
  10450. {
  10451. "name": "Fabien Potencier",
  10452. "email": "fabien@symfony.com"
  10453. },
  10454. {
  10455. "name": "Symfony Community",
  10456. "homepage": "https://symfony.com/contributors"
  10457. }
  10458. ],
  10459. "description": "Provides a development tool that gives detailed information about the execution of any request",
  10460. "homepage": "https://symfony.com",
  10461. "keywords": [
  10462. "dev"
  10463. ],
  10464. "support": {
  10465. "source": "https://github.com/symfony/web-profiler-bundle/tree/v7.3.1"
  10466. },
  10467. "funding": [
  10468. {
  10469. "url": "https://symfony.com/sponsor",
  10470. "type": "custom"
  10471. },
  10472. {
  10473. "url": "https://github.com/fabpot",
  10474. "type": "github"
  10475. },
  10476. {
  10477. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10478. "type": "tidelift"
  10479. }
  10480. ],
  10481. "time": "2025-06-05T09:30:41+00:00"
  10482. },
  10483. {
  10484. "name": "theseer/tokenizer",
  10485. "version": "1.2.3",
  10486. "source": {
  10487. "type": "git",
  10488. "url": "https://github.com/theseer/tokenizer.git",
  10489. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10490. },
  10491. "dist": {
  10492. "type": "zip",
  10493. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10494. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10495. "shasum": ""
  10496. },
  10497. "require": {
  10498. "ext-dom": "*",
  10499. "ext-tokenizer": "*",
  10500. "ext-xmlwriter": "*",
  10501. "php": "^7.2 || ^8.0"
  10502. },
  10503. "type": "library",
  10504. "autoload": {
  10505. "classmap": [
  10506. "src/"
  10507. ]
  10508. },
  10509. "notification-url": "https://packagist.org/downloads/",
  10510. "license": [
  10511. "BSD-3-Clause"
  10512. ],
  10513. "authors": [
  10514. {
  10515. "name": "Arne Blankerts",
  10516. "email": "arne@blankerts.de",
  10517. "role": "Developer"
  10518. }
  10519. ],
  10520. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10521. "support": {
  10522. "issues": "https://github.com/theseer/tokenizer/issues",
  10523. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10524. },
  10525. "funding": [
  10526. {
  10527. "url": "https://github.com/theseer",
  10528. "type": "github"
  10529. }
  10530. ],
  10531. "time": "2024-03-03T12:36:25+00:00"
  10532. }
  10533. ],
  10534. "aliases": [],
  10535. "minimum-stability": "stable",
  10536. "stability-flags": {},
  10537. "prefer-stable": true,
  10538. "prefer-lowest": false,
  10539. "platform": {
  10540. "php": ">=8.2",
  10541. "ext-ctype": "*",
  10542. "ext-iconv": "*"
  10543. },
  10544. "platform-dev": {},
  10545. "plugin-api-version": "2.6.0"
  10546. }