composer.lock 364 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015
  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": "322e413e9d7fecdf9e041a6d05a038a9",
  8. "packages": [
  9. {
  10. "name": "doctrine/cache",
  11. "version": "2.2.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/doctrine/cache.git",
  15. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  20. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "~7.1 || ^8.0"
  25. },
  26. "conflict": {
  27. "doctrine/common": ">2.2,<2.4"
  28. },
  29. "require-dev": {
  30. "cache/integration-tests": "dev-master",
  31. "doctrine/coding-standard": "^9",
  32. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  33. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  34. "symfony/cache": "^4.4 || ^5.4 || ^6",
  35. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  36. },
  37. "type": "library",
  38. "autoload": {
  39. "psr-4": {
  40. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Guilherme Blanco",
  50. "email": "guilhermeblanco@gmail.com"
  51. },
  52. {
  53. "name": "Roman Borschel",
  54. "email": "roman@code-factory.org"
  55. },
  56. {
  57. "name": "Benjamin Eberlei",
  58. "email": "kontakt@beberlei.de"
  59. },
  60. {
  61. "name": "Jonathan Wage",
  62. "email": "jonwage@gmail.com"
  63. },
  64. {
  65. "name": "Johannes Schmitt",
  66. "email": "schmittjoh@gmail.com"
  67. }
  68. ],
  69. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  70. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  71. "keywords": [
  72. "abstraction",
  73. "apcu",
  74. "cache",
  75. "caching",
  76. "couchdb",
  77. "memcached",
  78. "php",
  79. "redis",
  80. "xcache"
  81. ],
  82. "support": {
  83. "issues": "https://github.com/doctrine/cache/issues",
  84. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  85. },
  86. "funding": [
  87. {
  88. "url": "https://www.doctrine-project.org/sponsorship.html",
  89. "type": "custom"
  90. },
  91. {
  92. "url": "https://www.patreon.com/phpdoctrine",
  93. "type": "patreon"
  94. },
  95. {
  96. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  97. "type": "tidelift"
  98. }
  99. ],
  100. "time": "2022-05-20T20:07:39+00:00"
  101. },
  102. {
  103. "name": "doctrine/collections",
  104. "version": "2.2.2",
  105. "source": {
  106. "type": "git",
  107. "url": "https://github.com/doctrine/collections.git",
  108. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59"
  109. },
  110. "dist": {
  111. "type": "zip",
  112. "url": "https://api.github.com/repos/doctrine/collections/zipball/d8af7f248c74f195f7347424600fd9e17b57af59",
  113. "reference": "d8af7f248c74f195f7347424600fd9e17b57af59",
  114. "shasum": ""
  115. },
  116. "require": {
  117. "doctrine/deprecations": "^1",
  118. "php": "^8.1"
  119. },
  120. "require-dev": {
  121. "doctrine/coding-standard": "^12",
  122. "ext-json": "*",
  123. "phpstan/phpstan": "^1.8",
  124. "phpstan/phpstan-phpunit": "^1.0",
  125. "phpunit/phpunit": "^10.5",
  126. "vimeo/psalm": "^5.11"
  127. },
  128. "type": "library",
  129. "autoload": {
  130. "psr-4": {
  131. "Doctrine\\Common\\Collections\\": "src"
  132. }
  133. },
  134. "notification-url": "https://packagist.org/downloads/",
  135. "license": [
  136. "MIT"
  137. ],
  138. "authors": [
  139. {
  140. "name": "Guilherme Blanco",
  141. "email": "guilhermeblanco@gmail.com"
  142. },
  143. {
  144. "name": "Roman Borschel",
  145. "email": "roman@code-factory.org"
  146. },
  147. {
  148. "name": "Benjamin Eberlei",
  149. "email": "kontakt@beberlei.de"
  150. },
  151. {
  152. "name": "Jonathan Wage",
  153. "email": "jonwage@gmail.com"
  154. },
  155. {
  156. "name": "Johannes Schmitt",
  157. "email": "schmittjoh@gmail.com"
  158. }
  159. ],
  160. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  161. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  162. "keywords": [
  163. "array",
  164. "collections",
  165. "iterators",
  166. "php"
  167. ],
  168. "support": {
  169. "issues": "https://github.com/doctrine/collections/issues",
  170. "source": "https://github.com/doctrine/collections/tree/2.2.2"
  171. },
  172. "funding": [
  173. {
  174. "url": "https://www.doctrine-project.org/sponsorship.html",
  175. "type": "custom"
  176. },
  177. {
  178. "url": "https://www.patreon.com/phpdoctrine",
  179. "type": "patreon"
  180. },
  181. {
  182. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  183. "type": "tidelift"
  184. }
  185. ],
  186. "time": "2024-04-18T06:56:21+00:00"
  187. },
  188. {
  189. "name": "doctrine/dbal",
  190. "version": "3.9.3",
  191. "source": {
  192. "type": "git",
  193. "url": "https://github.com/doctrine/dbal.git",
  194. "reference": "61446f07fcb522414d6cfd8b1c3e5f9e18c579ba"
  195. },
  196. "dist": {
  197. "type": "zip",
  198. "url": "https://api.github.com/repos/doctrine/dbal/zipball/61446f07fcb522414d6cfd8b1c3e5f9e18c579ba",
  199. "reference": "61446f07fcb522414d6cfd8b1c3e5f9e18c579ba",
  200. "shasum": ""
  201. },
  202. "require": {
  203. "composer-runtime-api": "^2",
  204. "doctrine/cache": "^1.11|^2.0",
  205. "doctrine/deprecations": "^0.5.3|^1",
  206. "doctrine/event-manager": "^1|^2",
  207. "php": "^7.4 || ^8.0",
  208. "psr/cache": "^1|^2|^3",
  209. "psr/log": "^1|^2|^3"
  210. },
  211. "require-dev": {
  212. "doctrine/coding-standard": "12.0.0",
  213. "fig/log-test": "^1",
  214. "jetbrains/phpstorm-stubs": "2023.1",
  215. "phpstan/phpstan": "1.12.6",
  216. "phpstan/phpstan-strict-rules": "^1.6",
  217. "phpunit/phpunit": "9.6.20",
  218. "psalm/plugin-phpunit": "0.18.4",
  219. "slevomat/coding-standard": "8.13.1",
  220. "squizlabs/php_codesniffer": "3.10.2",
  221. "symfony/cache": "^5.4|^6.0|^7.0",
  222. "symfony/console": "^4.4|^5.4|^6.0|^7.0",
  223. "vimeo/psalm": "4.30.0"
  224. },
  225. "suggest": {
  226. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  227. },
  228. "bin": [
  229. "bin/doctrine-dbal"
  230. ],
  231. "type": "library",
  232. "autoload": {
  233. "psr-4": {
  234. "Doctrine\\DBAL\\": "src"
  235. }
  236. },
  237. "notification-url": "https://packagist.org/downloads/",
  238. "license": [
  239. "MIT"
  240. ],
  241. "authors": [
  242. {
  243. "name": "Guilherme Blanco",
  244. "email": "guilhermeblanco@gmail.com"
  245. },
  246. {
  247. "name": "Roman Borschel",
  248. "email": "roman@code-factory.org"
  249. },
  250. {
  251. "name": "Benjamin Eberlei",
  252. "email": "kontakt@beberlei.de"
  253. },
  254. {
  255. "name": "Jonathan Wage",
  256. "email": "jonwage@gmail.com"
  257. }
  258. ],
  259. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  260. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  261. "keywords": [
  262. "abstraction",
  263. "database",
  264. "db2",
  265. "dbal",
  266. "mariadb",
  267. "mssql",
  268. "mysql",
  269. "oci8",
  270. "oracle",
  271. "pdo",
  272. "pgsql",
  273. "postgresql",
  274. "queryobject",
  275. "sasql",
  276. "sql",
  277. "sqlite",
  278. "sqlserver",
  279. "sqlsrv"
  280. ],
  281. "support": {
  282. "issues": "https://github.com/doctrine/dbal/issues",
  283. "source": "https://github.com/doctrine/dbal/tree/3.9.3"
  284. },
  285. "funding": [
  286. {
  287. "url": "https://www.doctrine-project.org/sponsorship.html",
  288. "type": "custom"
  289. },
  290. {
  291. "url": "https://www.patreon.com/phpdoctrine",
  292. "type": "patreon"
  293. },
  294. {
  295. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  296. "type": "tidelift"
  297. }
  298. ],
  299. "time": "2024-10-10T17:56:43+00:00"
  300. },
  301. {
  302. "name": "doctrine/deprecations",
  303. "version": "1.1.4",
  304. "source": {
  305. "type": "git",
  306. "url": "https://github.com/doctrine/deprecations.git",
  307. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9"
  308. },
  309. "dist": {
  310. "type": "zip",
  311. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9",
  312. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9",
  313. "shasum": ""
  314. },
  315. "require": {
  316. "php": "^7.1 || ^8.0"
  317. },
  318. "require-dev": {
  319. "doctrine/coding-standard": "^9 || ^12",
  320. "phpstan/phpstan": "1.4.10 || 2.0.3",
  321. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  322. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  323. "psr/log": "^1 || ^2 || ^3"
  324. },
  325. "suggest": {
  326. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  327. },
  328. "type": "library",
  329. "autoload": {
  330. "psr-4": {
  331. "Doctrine\\Deprecations\\": "src"
  332. }
  333. },
  334. "notification-url": "https://packagist.org/downloads/",
  335. "license": [
  336. "MIT"
  337. ],
  338. "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.",
  339. "homepage": "https://www.doctrine-project.org/",
  340. "support": {
  341. "issues": "https://github.com/doctrine/deprecations/issues",
  342. "source": "https://github.com/doctrine/deprecations/tree/1.1.4"
  343. },
  344. "time": "2024-12-07T21:18:45+00:00"
  345. },
  346. {
  347. "name": "doctrine/doctrine-bundle",
  348. "version": "2.13.1",
  349. "source": {
  350. "type": "git",
  351. "url": "https://github.com/doctrine/DoctrineBundle.git",
  352. "reference": "2740ad8b8739b39ab37d409c972b092f632b025a"
  353. },
  354. "dist": {
  355. "type": "zip",
  356. "url": "https://api.github.com/repos/doctrine/DoctrineBundle/zipball/2740ad8b8739b39ab37d409c972b092f632b025a",
  357. "reference": "2740ad8b8739b39ab37d409c972b092f632b025a",
  358. "shasum": ""
  359. },
  360. "require": {
  361. "doctrine/cache": "^1.11 || ^2.0",
  362. "doctrine/dbal": "^3.7.0 || ^4.0",
  363. "doctrine/persistence": "^2.2 || ^3",
  364. "doctrine/sql-formatter": "^1.0.1",
  365. "php": "^7.4 || ^8.0",
  366. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  367. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  368. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  369. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  370. "symfony/deprecation-contracts": "^2.1 || ^3",
  371. "symfony/doctrine-bridge": "^5.4.46 || ^6.4.3 || ^7.0.3",
  372. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0",
  373. "symfony/polyfill-php80": "^1.15",
  374. "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"
  375. },
  376. "conflict": {
  377. "doctrine/annotations": ">=3.0",
  378. "doctrine/orm": "<2.17 || >=4.0",
  379. "twig/twig": "<1.34 || >=2.0 <2.4"
  380. },
  381. "require-dev": {
  382. "doctrine/annotations": "^1 || ^2",
  383. "doctrine/coding-standard": "^12",
  384. "doctrine/deprecations": "^1.0",
  385. "doctrine/orm": "^2.17 || ^3.0",
  386. "friendsofphp/proxy-manager-lts": "^1.0",
  387. "phpunit/phpunit": "^9.5.26",
  388. "psalm/plugin-phpunit": "^0.18.4",
  389. "psalm/plugin-symfony": "^5",
  390. "psr/log": "^1.1.4 || ^2.0 || ^3.0",
  391. "symfony/phpunit-bridge": "^6.1 || ^7.0",
  392. "symfony/property-info": "^5.4 || ^6.0 || ^7.0",
  393. "symfony/proxy-manager-bridge": "^5.4 || ^6.0 || ^7.0",
  394. "symfony/security-bundle": "^5.4 || ^6.0 || ^7.0",
  395. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  396. "symfony/string": "^5.4 || ^6.0 || ^7.0",
  397. "symfony/twig-bridge": "^5.4 || ^6.0 || ^7.0",
  398. "symfony/validator": "^5.4 || ^6.0 || ^7.0",
  399. "symfony/var-exporter": "^5.4 || ^6.2 || ^7.0",
  400. "symfony/web-profiler-bundle": "^5.4 || ^6.0 || ^7.0",
  401. "symfony/yaml": "^5.4 || ^6.0 || ^7.0",
  402. "twig/twig": "^1.34 || ^2.12 || ^3.0",
  403. "vimeo/psalm": "^5.15"
  404. },
  405. "suggest": {
  406. "doctrine/orm": "The Doctrine ORM integration is optional in the bundle.",
  407. "ext-pdo": "*",
  408. "symfony/web-profiler-bundle": "To use the data collector."
  409. },
  410. "type": "symfony-bundle",
  411. "autoload": {
  412. "psr-4": {
  413. "Doctrine\\Bundle\\DoctrineBundle\\": "src"
  414. }
  415. },
  416. "notification-url": "https://packagist.org/downloads/",
  417. "license": [
  418. "MIT"
  419. ],
  420. "authors": [
  421. {
  422. "name": "Fabien Potencier",
  423. "email": "fabien@symfony.com"
  424. },
  425. {
  426. "name": "Benjamin Eberlei",
  427. "email": "kontakt@beberlei.de"
  428. },
  429. {
  430. "name": "Symfony Community",
  431. "homepage": "https://symfony.com/contributors"
  432. },
  433. {
  434. "name": "Doctrine Project",
  435. "homepage": "https://www.doctrine-project.org/"
  436. }
  437. ],
  438. "description": "Symfony DoctrineBundle",
  439. "homepage": "https://www.doctrine-project.org",
  440. "keywords": [
  441. "database",
  442. "dbal",
  443. "orm",
  444. "persistence"
  445. ],
  446. "support": {
  447. "issues": "https://github.com/doctrine/DoctrineBundle/issues",
  448. "source": "https://github.com/doctrine/DoctrineBundle/tree/2.13.1"
  449. },
  450. "funding": [
  451. {
  452. "url": "https://www.doctrine-project.org/sponsorship.html",
  453. "type": "custom"
  454. },
  455. {
  456. "url": "https://www.patreon.com/phpdoctrine",
  457. "type": "patreon"
  458. },
  459. {
  460. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-bundle",
  461. "type": "tidelift"
  462. }
  463. ],
  464. "time": "2024-11-08T23:27:54+00:00"
  465. },
  466. {
  467. "name": "doctrine/doctrine-migrations-bundle",
  468. "version": "3.3.1",
  469. "source": {
  470. "type": "git",
  471. "url": "https://github.com/doctrine/DoctrineMigrationsBundle.git",
  472. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0"
  473. },
  474. "dist": {
  475. "type": "zip",
  476. "url": "https://api.github.com/repos/doctrine/DoctrineMigrationsBundle/zipball/715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  477. "reference": "715b62c31a5894afcb2b2cdbbc6607d7dd0580c0",
  478. "shasum": ""
  479. },
  480. "require": {
  481. "doctrine/doctrine-bundle": "^2.4",
  482. "doctrine/migrations": "^3.2",
  483. "php": "^7.2|^8.0",
  484. "symfony/deprecation-contracts": "^2.1 || ^3",
  485. "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0"
  486. },
  487. "require-dev": {
  488. "composer/semver": "^3.0",
  489. "doctrine/coding-standard": "^12",
  490. "doctrine/orm": "^2.6 || ^3",
  491. "doctrine/persistence": "^2.0 || ^3 ",
  492. "phpstan/phpstan": "^1.4",
  493. "phpstan/phpstan-deprecation-rules": "^1",
  494. "phpstan/phpstan-phpunit": "^1",
  495. "phpstan/phpstan-strict-rules": "^1.1",
  496. "phpstan/phpstan-symfony": "^1.3",
  497. "phpunit/phpunit": "^8.5|^9.5",
  498. "psalm/plugin-phpunit": "^0.18.4",
  499. "psalm/plugin-symfony": "^3 || ^5",
  500. "symfony/phpunit-bridge": "^6.3 || ^7",
  501. "symfony/var-exporter": "^5.4 || ^6 || ^7",
  502. "vimeo/psalm": "^4.30 || ^5.15"
  503. },
  504. "type": "symfony-bundle",
  505. "autoload": {
  506. "psr-4": {
  507. "Doctrine\\Bundle\\MigrationsBundle\\": ""
  508. },
  509. "exclude-from-classmap": [
  510. "/Tests/"
  511. ]
  512. },
  513. "notification-url": "https://packagist.org/downloads/",
  514. "license": [
  515. "MIT"
  516. ],
  517. "authors": [
  518. {
  519. "name": "Fabien Potencier",
  520. "email": "fabien@symfony.com"
  521. },
  522. {
  523. "name": "Doctrine Project",
  524. "homepage": "https://www.doctrine-project.org"
  525. },
  526. {
  527. "name": "Symfony Community",
  528. "homepage": "https://symfony.com/contributors"
  529. }
  530. ],
  531. "description": "Symfony DoctrineMigrationsBundle",
  532. "homepage": "https://www.doctrine-project.org",
  533. "keywords": [
  534. "dbal",
  535. "migrations",
  536. "schema"
  537. ],
  538. "support": {
  539. "issues": "https://github.com/doctrine/DoctrineMigrationsBundle/issues",
  540. "source": "https://github.com/doctrine/DoctrineMigrationsBundle/tree/3.3.1"
  541. },
  542. "funding": [
  543. {
  544. "url": "https://www.doctrine-project.org/sponsorship.html",
  545. "type": "custom"
  546. },
  547. {
  548. "url": "https://www.patreon.com/phpdoctrine",
  549. "type": "patreon"
  550. },
  551. {
  552. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdoctrine-migrations-bundle",
  553. "type": "tidelift"
  554. }
  555. ],
  556. "time": "2024-05-14T20:32:18+00:00"
  557. },
  558. {
  559. "name": "doctrine/event-manager",
  560. "version": "2.0.1",
  561. "source": {
  562. "type": "git",
  563. "url": "https://github.com/doctrine/event-manager.git",
  564. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  565. },
  566. "dist": {
  567. "type": "zip",
  568. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  569. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  570. "shasum": ""
  571. },
  572. "require": {
  573. "php": "^8.1"
  574. },
  575. "conflict": {
  576. "doctrine/common": "<2.9"
  577. },
  578. "require-dev": {
  579. "doctrine/coding-standard": "^12",
  580. "phpstan/phpstan": "^1.8.8",
  581. "phpunit/phpunit": "^10.5",
  582. "vimeo/psalm": "^5.24"
  583. },
  584. "type": "library",
  585. "autoload": {
  586. "psr-4": {
  587. "Doctrine\\Common\\": "src"
  588. }
  589. },
  590. "notification-url": "https://packagist.org/downloads/",
  591. "license": [
  592. "MIT"
  593. ],
  594. "authors": [
  595. {
  596. "name": "Guilherme Blanco",
  597. "email": "guilhermeblanco@gmail.com"
  598. },
  599. {
  600. "name": "Roman Borschel",
  601. "email": "roman@code-factory.org"
  602. },
  603. {
  604. "name": "Benjamin Eberlei",
  605. "email": "kontakt@beberlei.de"
  606. },
  607. {
  608. "name": "Jonathan Wage",
  609. "email": "jonwage@gmail.com"
  610. },
  611. {
  612. "name": "Johannes Schmitt",
  613. "email": "schmittjoh@gmail.com"
  614. },
  615. {
  616. "name": "Marco Pivetta",
  617. "email": "ocramius@gmail.com"
  618. }
  619. ],
  620. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  621. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  622. "keywords": [
  623. "event",
  624. "event dispatcher",
  625. "event manager",
  626. "event system",
  627. "events"
  628. ],
  629. "support": {
  630. "issues": "https://github.com/doctrine/event-manager/issues",
  631. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  632. },
  633. "funding": [
  634. {
  635. "url": "https://www.doctrine-project.org/sponsorship.html",
  636. "type": "custom"
  637. },
  638. {
  639. "url": "https://www.patreon.com/phpdoctrine",
  640. "type": "patreon"
  641. },
  642. {
  643. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  644. "type": "tidelift"
  645. }
  646. ],
  647. "time": "2024-05-22T20:47:39+00:00"
  648. },
  649. {
  650. "name": "doctrine/inflector",
  651. "version": "2.0.10",
  652. "source": {
  653. "type": "git",
  654. "url": "https://github.com/doctrine/inflector.git",
  655. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  656. },
  657. "dist": {
  658. "type": "zip",
  659. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  660. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  661. "shasum": ""
  662. },
  663. "require": {
  664. "php": "^7.2 || ^8.0"
  665. },
  666. "require-dev": {
  667. "doctrine/coding-standard": "^11.0",
  668. "phpstan/phpstan": "^1.8",
  669. "phpstan/phpstan-phpunit": "^1.1",
  670. "phpstan/phpstan-strict-rules": "^1.3",
  671. "phpunit/phpunit": "^8.5 || ^9.5",
  672. "vimeo/psalm": "^4.25 || ^5.4"
  673. },
  674. "type": "library",
  675. "autoload": {
  676. "psr-4": {
  677. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  678. }
  679. },
  680. "notification-url": "https://packagist.org/downloads/",
  681. "license": [
  682. "MIT"
  683. ],
  684. "authors": [
  685. {
  686. "name": "Guilherme Blanco",
  687. "email": "guilhermeblanco@gmail.com"
  688. },
  689. {
  690. "name": "Roman Borschel",
  691. "email": "roman@code-factory.org"
  692. },
  693. {
  694. "name": "Benjamin Eberlei",
  695. "email": "kontakt@beberlei.de"
  696. },
  697. {
  698. "name": "Jonathan Wage",
  699. "email": "jonwage@gmail.com"
  700. },
  701. {
  702. "name": "Johannes Schmitt",
  703. "email": "schmittjoh@gmail.com"
  704. }
  705. ],
  706. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  707. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  708. "keywords": [
  709. "inflection",
  710. "inflector",
  711. "lowercase",
  712. "manipulation",
  713. "php",
  714. "plural",
  715. "singular",
  716. "strings",
  717. "uppercase",
  718. "words"
  719. ],
  720. "support": {
  721. "issues": "https://github.com/doctrine/inflector/issues",
  722. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  723. },
  724. "funding": [
  725. {
  726. "url": "https://www.doctrine-project.org/sponsorship.html",
  727. "type": "custom"
  728. },
  729. {
  730. "url": "https://www.patreon.com/phpdoctrine",
  731. "type": "patreon"
  732. },
  733. {
  734. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  735. "type": "tidelift"
  736. }
  737. ],
  738. "time": "2024-02-18T20:23:39+00:00"
  739. },
  740. {
  741. "name": "doctrine/instantiator",
  742. "version": "2.0.0",
  743. "source": {
  744. "type": "git",
  745. "url": "https://github.com/doctrine/instantiator.git",
  746. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  747. },
  748. "dist": {
  749. "type": "zip",
  750. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  751. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  752. "shasum": ""
  753. },
  754. "require": {
  755. "php": "^8.1"
  756. },
  757. "require-dev": {
  758. "doctrine/coding-standard": "^11",
  759. "ext-pdo": "*",
  760. "ext-phar": "*",
  761. "phpbench/phpbench": "^1.2",
  762. "phpstan/phpstan": "^1.9.4",
  763. "phpstan/phpstan-phpunit": "^1.3",
  764. "phpunit/phpunit": "^9.5.27",
  765. "vimeo/psalm": "^5.4"
  766. },
  767. "type": "library",
  768. "autoload": {
  769. "psr-4": {
  770. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  771. }
  772. },
  773. "notification-url": "https://packagist.org/downloads/",
  774. "license": [
  775. "MIT"
  776. ],
  777. "authors": [
  778. {
  779. "name": "Marco Pivetta",
  780. "email": "ocramius@gmail.com",
  781. "homepage": "https://ocramius.github.io/"
  782. }
  783. ],
  784. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  785. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  786. "keywords": [
  787. "constructor",
  788. "instantiate"
  789. ],
  790. "support": {
  791. "issues": "https://github.com/doctrine/instantiator/issues",
  792. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  793. },
  794. "funding": [
  795. {
  796. "url": "https://www.doctrine-project.org/sponsorship.html",
  797. "type": "custom"
  798. },
  799. {
  800. "url": "https://www.patreon.com/phpdoctrine",
  801. "type": "patreon"
  802. },
  803. {
  804. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  805. "type": "tidelift"
  806. }
  807. ],
  808. "time": "2022-12-30T00:23:10+00:00"
  809. },
  810. {
  811. "name": "doctrine/lexer",
  812. "version": "3.0.1",
  813. "source": {
  814. "type": "git",
  815. "url": "https://github.com/doctrine/lexer.git",
  816. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  817. },
  818. "dist": {
  819. "type": "zip",
  820. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  821. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  822. "shasum": ""
  823. },
  824. "require": {
  825. "php": "^8.1"
  826. },
  827. "require-dev": {
  828. "doctrine/coding-standard": "^12",
  829. "phpstan/phpstan": "^1.10",
  830. "phpunit/phpunit": "^10.5",
  831. "psalm/plugin-phpunit": "^0.18.3",
  832. "vimeo/psalm": "^5.21"
  833. },
  834. "type": "library",
  835. "autoload": {
  836. "psr-4": {
  837. "Doctrine\\Common\\Lexer\\": "src"
  838. }
  839. },
  840. "notification-url": "https://packagist.org/downloads/",
  841. "license": [
  842. "MIT"
  843. ],
  844. "authors": [
  845. {
  846. "name": "Guilherme Blanco",
  847. "email": "guilhermeblanco@gmail.com"
  848. },
  849. {
  850. "name": "Roman Borschel",
  851. "email": "roman@code-factory.org"
  852. },
  853. {
  854. "name": "Johannes Schmitt",
  855. "email": "schmittjoh@gmail.com"
  856. }
  857. ],
  858. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  859. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  860. "keywords": [
  861. "annotations",
  862. "docblock",
  863. "lexer",
  864. "parser",
  865. "php"
  866. ],
  867. "support": {
  868. "issues": "https://github.com/doctrine/lexer/issues",
  869. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  870. },
  871. "funding": [
  872. {
  873. "url": "https://www.doctrine-project.org/sponsorship.html",
  874. "type": "custom"
  875. },
  876. {
  877. "url": "https://www.patreon.com/phpdoctrine",
  878. "type": "patreon"
  879. },
  880. {
  881. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  882. "type": "tidelift"
  883. }
  884. ],
  885. "time": "2024-02-05T11:56:58+00:00"
  886. },
  887. {
  888. "name": "doctrine/migrations",
  889. "version": "3.8.2",
  890. "source": {
  891. "type": "git",
  892. "url": "https://github.com/doctrine/migrations.git",
  893. "reference": "5007eb1168691225ac305fe16856755c20860842"
  894. },
  895. "dist": {
  896. "type": "zip",
  897. "url": "https://api.github.com/repos/doctrine/migrations/zipball/5007eb1168691225ac305fe16856755c20860842",
  898. "reference": "5007eb1168691225ac305fe16856755c20860842",
  899. "shasum": ""
  900. },
  901. "require": {
  902. "composer-runtime-api": "^2",
  903. "doctrine/dbal": "^3.6 || ^4",
  904. "doctrine/deprecations": "^0.5.3 || ^1",
  905. "doctrine/event-manager": "^1.2 || ^2.0",
  906. "php": "^8.1",
  907. "psr/log": "^1.1.3 || ^2 || ^3",
  908. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  909. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0",
  910. "symfony/var-exporter": "^6.2 || ^7.0"
  911. },
  912. "conflict": {
  913. "doctrine/orm": "<2.12 || >=4"
  914. },
  915. "require-dev": {
  916. "doctrine/coding-standard": "^12",
  917. "doctrine/orm": "^2.13 || ^3",
  918. "doctrine/persistence": "^2 || ^3",
  919. "doctrine/sql-formatter": "^1.0",
  920. "ext-pdo_sqlite": "*",
  921. "fig/log-test": "^1",
  922. "phpstan/phpstan": "^1.10",
  923. "phpstan/phpstan-deprecation-rules": "^1.1",
  924. "phpstan/phpstan-phpunit": "^1.3",
  925. "phpstan/phpstan-strict-rules": "^1.4",
  926. "phpstan/phpstan-symfony": "^1.3",
  927. "phpunit/phpunit": "^10.3",
  928. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  929. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  930. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  931. },
  932. "suggest": {
  933. "doctrine/sql-formatter": "Allows to generate formatted SQL with the diff command.",
  934. "symfony/yaml": "Allows the use of yaml for migration configuration files."
  935. },
  936. "bin": [
  937. "bin/doctrine-migrations"
  938. ],
  939. "type": "library",
  940. "autoload": {
  941. "psr-4": {
  942. "Doctrine\\Migrations\\": "src"
  943. }
  944. },
  945. "notification-url": "https://packagist.org/downloads/",
  946. "license": [
  947. "MIT"
  948. ],
  949. "authors": [
  950. {
  951. "name": "Benjamin Eberlei",
  952. "email": "kontakt@beberlei.de"
  953. },
  954. {
  955. "name": "Jonathan Wage",
  956. "email": "jonwage@gmail.com"
  957. },
  958. {
  959. "name": "Michael Simonson",
  960. "email": "contact@mikesimonson.com"
  961. }
  962. ],
  963. "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.",
  964. "homepage": "https://www.doctrine-project.org/projects/migrations.html",
  965. "keywords": [
  966. "database",
  967. "dbal",
  968. "migrations"
  969. ],
  970. "support": {
  971. "issues": "https://github.com/doctrine/migrations/issues",
  972. "source": "https://github.com/doctrine/migrations/tree/3.8.2"
  973. },
  974. "funding": [
  975. {
  976. "url": "https://www.doctrine-project.org/sponsorship.html",
  977. "type": "custom"
  978. },
  979. {
  980. "url": "https://www.patreon.com/phpdoctrine",
  981. "type": "patreon"
  982. },
  983. {
  984. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fmigrations",
  985. "type": "tidelift"
  986. }
  987. ],
  988. "time": "2024-10-10T21:35:27+00:00"
  989. },
  990. {
  991. "name": "doctrine/orm",
  992. "version": "3.3.1",
  993. "source": {
  994. "type": "git",
  995. "url": "https://github.com/doctrine/orm.git",
  996. "reference": "b1f8253105aa5382c495e5f9f8ef34e297775428"
  997. },
  998. "dist": {
  999. "type": "zip",
  1000. "url": "https://api.github.com/repos/doctrine/orm/zipball/b1f8253105aa5382c495e5f9f8ef34e297775428",
  1001. "reference": "b1f8253105aa5382c495e5f9f8ef34e297775428",
  1002. "shasum": ""
  1003. },
  1004. "require": {
  1005. "composer-runtime-api": "^2",
  1006. "doctrine/collections": "^2.2",
  1007. "doctrine/dbal": "^3.8.2 || ^4",
  1008. "doctrine/deprecations": "^0.5.3 || ^1",
  1009. "doctrine/event-manager": "^1.2 || ^2",
  1010. "doctrine/inflector": "^1.4 || ^2.0",
  1011. "doctrine/instantiator": "^1.3 || ^2",
  1012. "doctrine/lexer": "^3",
  1013. "doctrine/persistence": "^3.3.1 || ^4",
  1014. "ext-ctype": "*",
  1015. "php": "^8.1",
  1016. "psr/cache": "^1 || ^2 || ^3",
  1017. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  1018. "symfony/var-exporter": "^6.3.9 || ^7.0"
  1019. },
  1020. "require-dev": {
  1021. "doctrine/coding-standard": "^12.0",
  1022. "phpbench/phpbench": "^1.0",
  1023. "phpdocumentor/guides-cli": "^1.4",
  1024. "phpstan/extension-installer": "^1.4",
  1025. "phpstan/phpstan": "2.0.3",
  1026. "phpstan/phpstan-deprecation-rules": "^2",
  1027. "phpunit/phpunit": "^10.4.0",
  1028. "psr/log": "^1 || ^2 || ^3",
  1029. "squizlabs/php_codesniffer": "3.7.2",
  1030. "symfony/cache": "^5.4 || ^6.2 || ^7.0"
  1031. },
  1032. "suggest": {
  1033. "ext-dom": "Provides support for XSD validation for XML mapping files",
  1034. "symfony/cache": "Provides cache support for Setup Tool with doctrine/cache 2.0"
  1035. },
  1036. "type": "library",
  1037. "autoload": {
  1038. "psr-4": {
  1039. "Doctrine\\ORM\\": "src"
  1040. }
  1041. },
  1042. "notification-url": "https://packagist.org/downloads/",
  1043. "license": [
  1044. "MIT"
  1045. ],
  1046. "authors": [
  1047. {
  1048. "name": "Guilherme Blanco",
  1049. "email": "guilhermeblanco@gmail.com"
  1050. },
  1051. {
  1052. "name": "Roman Borschel",
  1053. "email": "roman@code-factory.org"
  1054. },
  1055. {
  1056. "name": "Benjamin Eberlei",
  1057. "email": "kontakt@beberlei.de"
  1058. },
  1059. {
  1060. "name": "Jonathan Wage",
  1061. "email": "jonwage@gmail.com"
  1062. },
  1063. {
  1064. "name": "Marco Pivetta",
  1065. "email": "ocramius@gmail.com"
  1066. }
  1067. ],
  1068. "description": "Object-Relational-Mapper for PHP",
  1069. "homepage": "https://www.doctrine-project.org/projects/orm.html",
  1070. "keywords": [
  1071. "database",
  1072. "orm"
  1073. ],
  1074. "support": {
  1075. "issues": "https://github.com/doctrine/orm/issues",
  1076. "source": "https://github.com/doctrine/orm/tree/3.3.1"
  1077. },
  1078. "time": "2024-12-19T07:08:14+00:00"
  1079. },
  1080. {
  1081. "name": "doctrine/persistence",
  1082. "version": "3.4.0",
  1083. "source": {
  1084. "type": "git",
  1085. "url": "https://github.com/doctrine/persistence.git",
  1086. "reference": "0ea965320cec355dba75031c1b23d4c78362e3ff"
  1087. },
  1088. "dist": {
  1089. "type": "zip",
  1090. "url": "https://api.github.com/repos/doctrine/persistence/zipball/0ea965320cec355dba75031c1b23d4c78362e3ff",
  1091. "reference": "0ea965320cec355dba75031c1b23d4c78362e3ff",
  1092. "shasum": ""
  1093. },
  1094. "require": {
  1095. "doctrine/event-manager": "^1 || ^2",
  1096. "php": "^7.2 || ^8.0",
  1097. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1098. },
  1099. "conflict": {
  1100. "doctrine/common": "<2.10"
  1101. },
  1102. "require-dev": {
  1103. "doctrine/coding-standard": "^12",
  1104. "doctrine/common": "^3.0",
  1105. "phpstan/phpstan": "1.12.7",
  1106. "phpstan/phpstan-phpunit": "^1",
  1107. "phpstan/phpstan-strict-rules": "^1.1",
  1108. "phpunit/phpunit": "^8.5.38 || ^9.5",
  1109. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1110. },
  1111. "type": "library",
  1112. "autoload": {
  1113. "psr-4": {
  1114. "Doctrine\\Persistence\\": "src/Persistence"
  1115. }
  1116. },
  1117. "notification-url": "https://packagist.org/downloads/",
  1118. "license": [
  1119. "MIT"
  1120. ],
  1121. "authors": [
  1122. {
  1123. "name": "Guilherme Blanco",
  1124. "email": "guilhermeblanco@gmail.com"
  1125. },
  1126. {
  1127. "name": "Roman Borschel",
  1128. "email": "roman@code-factory.org"
  1129. },
  1130. {
  1131. "name": "Benjamin Eberlei",
  1132. "email": "kontakt@beberlei.de"
  1133. },
  1134. {
  1135. "name": "Jonathan Wage",
  1136. "email": "jonwage@gmail.com"
  1137. },
  1138. {
  1139. "name": "Johannes Schmitt",
  1140. "email": "schmittjoh@gmail.com"
  1141. },
  1142. {
  1143. "name": "Marco Pivetta",
  1144. "email": "ocramius@gmail.com"
  1145. }
  1146. ],
  1147. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1148. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1149. "keywords": [
  1150. "mapper",
  1151. "object",
  1152. "odm",
  1153. "orm",
  1154. "persistence"
  1155. ],
  1156. "support": {
  1157. "issues": "https://github.com/doctrine/persistence/issues",
  1158. "source": "https://github.com/doctrine/persistence/tree/3.4.0"
  1159. },
  1160. "funding": [
  1161. {
  1162. "url": "https://www.doctrine-project.org/sponsorship.html",
  1163. "type": "custom"
  1164. },
  1165. {
  1166. "url": "https://www.patreon.com/phpdoctrine",
  1167. "type": "patreon"
  1168. },
  1169. {
  1170. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1171. "type": "tidelift"
  1172. }
  1173. ],
  1174. "time": "2024-10-30T19:48:12+00:00"
  1175. },
  1176. {
  1177. "name": "doctrine/sql-formatter",
  1178. "version": "1.5.1",
  1179. "source": {
  1180. "type": "git",
  1181. "url": "https://github.com/doctrine/sql-formatter.git",
  1182. "reference": "b784cbde727cf806721451dde40eff4fec3bbe86"
  1183. },
  1184. "dist": {
  1185. "type": "zip",
  1186. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/b784cbde727cf806721451dde40eff4fec3bbe86",
  1187. "reference": "b784cbde727cf806721451dde40eff4fec3bbe86",
  1188. "shasum": ""
  1189. },
  1190. "require": {
  1191. "php": "^8.1"
  1192. },
  1193. "require-dev": {
  1194. "doctrine/coding-standard": "^12",
  1195. "ergebnis/phpunit-slow-test-detector": "^2.14",
  1196. "phpstan/phpstan": "^1.10",
  1197. "phpunit/phpunit": "^10.5",
  1198. "vimeo/psalm": "^5.24"
  1199. },
  1200. "bin": [
  1201. "bin/sql-formatter"
  1202. ],
  1203. "type": "library",
  1204. "autoload": {
  1205. "psr-4": {
  1206. "Doctrine\\SqlFormatter\\": "src"
  1207. }
  1208. },
  1209. "notification-url": "https://packagist.org/downloads/",
  1210. "license": [
  1211. "MIT"
  1212. ],
  1213. "authors": [
  1214. {
  1215. "name": "Jeremy Dorn",
  1216. "email": "jeremy@jeremydorn.com",
  1217. "homepage": "https://jeremydorn.com/"
  1218. }
  1219. ],
  1220. "description": "a PHP SQL highlighting library",
  1221. "homepage": "https://github.com/doctrine/sql-formatter/",
  1222. "keywords": [
  1223. "highlight",
  1224. "sql"
  1225. ],
  1226. "support": {
  1227. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1228. "source": "https://github.com/doctrine/sql-formatter/tree/1.5.1"
  1229. },
  1230. "time": "2024-10-21T18:21:57+00:00"
  1231. },
  1232. {
  1233. "name": "egulias/email-validator",
  1234. "version": "4.0.3",
  1235. "source": {
  1236. "type": "git",
  1237. "url": "https://github.com/egulias/EmailValidator.git",
  1238. "reference": "b115554301161fa21467629f1e1391c1936de517"
  1239. },
  1240. "dist": {
  1241. "type": "zip",
  1242. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b115554301161fa21467629f1e1391c1936de517",
  1243. "reference": "b115554301161fa21467629f1e1391c1936de517",
  1244. "shasum": ""
  1245. },
  1246. "require": {
  1247. "doctrine/lexer": "^2.0 || ^3.0",
  1248. "php": ">=8.1",
  1249. "symfony/polyfill-intl-idn": "^1.26"
  1250. },
  1251. "require-dev": {
  1252. "phpunit/phpunit": "^10.2",
  1253. "vimeo/psalm": "^5.12"
  1254. },
  1255. "suggest": {
  1256. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1257. },
  1258. "type": "library",
  1259. "extra": {
  1260. "branch-alias": {
  1261. "dev-master": "4.0.x-dev"
  1262. }
  1263. },
  1264. "autoload": {
  1265. "psr-4": {
  1266. "Egulias\\EmailValidator\\": "src"
  1267. }
  1268. },
  1269. "notification-url": "https://packagist.org/downloads/",
  1270. "license": [
  1271. "MIT"
  1272. ],
  1273. "authors": [
  1274. {
  1275. "name": "Eduardo Gulias Davis"
  1276. }
  1277. ],
  1278. "description": "A library for validating emails against several RFCs",
  1279. "homepage": "https://github.com/egulias/EmailValidator",
  1280. "keywords": [
  1281. "email",
  1282. "emailvalidation",
  1283. "emailvalidator",
  1284. "validation",
  1285. "validator"
  1286. ],
  1287. "support": {
  1288. "issues": "https://github.com/egulias/EmailValidator/issues",
  1289. "source": "https://github.com/egulias/EmailValidator/tree/4.0.3"
  1290. },
  1291. "funding": [
  1292. {
  1293. "url": "https://github.com/egulias",
  1294. "type": "github"
  1295. }
  1296. ],
  1297. "time": "2024-12-27T00:36:43+00:00"
  1298. },
  1299. {
  1300. "name": "lorenzo/pinky",
  1301. "version": "1.1.0",
  1302. "source": {
  1303. "type": "git",
  1304. "url": "https://github.com/lorenzo/pinky.git",
  1305. "reference": "e1b1bdb2c132b8a7ba32bca64d2443f646ddbd17"
  1306. },
  1307. "dist": {
  1308. "type": "zip",
  1309. "url": "https://api.github.com/repos/lorenzo/pinky/zipball/e1b1bdb2c132b8a7ba32bca64d2443f646ddbd17",
  1310. "reference": "e1b1bdb2c132b8a7ba32bca64d2443f646ddbd17",
  1311. "shasum": ""
  1312. },
  1313. "require": {
  1314. "ext-dom": "*",
  1315. "ext-libxml": "*",
  1316. "ext-xsl": "*",
  1317. "php": ">=5.6.0"
  1318. },
  1319. "require-dev": {
  1320. "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21 || ^9.5.10"
  1321. },
  1322. "type": "library",
  1323. "autoload": {
  1324. "files": [
  1325. "src/pinky.php"
  1326. ]
  1327. },
  1328. "notification-url": "https://packagist.org/downloads/",
  1329. "license": [
  1330. "MIT"
  1331. ],
  1332. "authors": [
  1333. {
  1334. "name": "Jose Lorenzo Rodriguez",
  1335. "email": "jose.zap@gmail.com"
  1336. }
  1337. ],
  1338. "description": "A Foundation for Emails (Inky) template transpiler",
  1339. "keywords": [
  1340. "email",
  1341. "foundation",
  1342. "inky",
  1343. "template",
  1344. "zurb"
  1345. ],
  1346. "support": {
  1347. "issues": "https://github.com/lorenzo/pinky/issues",
  1348. "source": "https://github.com/lorenzo/pinky/tree/1.1.0"
  1349. },
  1350. "time": "2023-07-31T13:36:50+00:00"
  1351. },
  1352. {
  1353. "name": "monolog/monolog",
  1354. "version": "3.8.1",
  1355. "source": {
  1356. "type": "git",
  1357. "url": "https://github.com/Seldaek/monolog.git",
  1358. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4"
  1359. },
  1360. "dist": {
  1361. "type": "zip",
  1362. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  1363. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  1364. "shasum": ""
  1365. },
  1366. "require": {
  1367. "php": ">=8.1",
  1368. "psr/log": "^2.0 || ^3.0"
  1369. },
  1370. "provide": {
  1371. "psr/log-implementation": "3.0.0"
  1372. },
  1373. "require-dev": {
  1374. "aws/aws-sdk-php": "^3.0",
  1375. "doctrine/couchdb": "~1.0@dev",
  1376. "elasticsearch/elasticsearch": "^7 || ^8",
  1377. "ext-json": "*",
  1378. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  1379. "guzzlehttp/guzzle": "^7.4.5",
  1380. "guzzlehttp/psr7": "^2.2",
  1381. "mongodb/mongodb": "^1.8",
  1382. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1383. "php-console/php-console": "^3.1.8",
  1384. "phpstan/phpstan": "^2",
  1385. "phpstan/phpstan-deprecation-rules": "^2",
  1386. "phpstan/phpstan-strict-rules": "^2",
  1387. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  1388. "predis/predis": "^1.1 || ^2",
  1389. "rollbar/rollbar": "^4.0",
  1390. "ruflin/elastica": "^7 || ^8",
  1391. "symfony/mailer": "^5.4 || ^6",
  1392. "symfony/mime": "^5.4 || ^6"
  1393. },
  1394. "suggest": {
  1395. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1396. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1397. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1398. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1399. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1400. "ext-mbstring": "Allow to work properly with unicode symbols",
  1401. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1402. "ext-openssl": "Required to send log messages using SSL",
  1403. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1404. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1405. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1406. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1407. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1408. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1409. },
  1410. "type": "library",
  1411. "extra": {
  1412. "branch-alias": {
  1413. "dev-main": "3.x-dev"
  1414. }
  1415. },
  1416. "autoload": {
  1417. "psr-4": {
  1418. "Monolog\\": "src/Monolog"
  1419. }
  1420. },
  1421. "notification-url": "https://packagist.org/downloads/",
  1422. "license": [
  1423. "MIT"
  1424. ],
  1425. "authors": [
  1426. {
  1427. "name": "Jordi Boggiano",
  1428. "email": "j.boggiano@seld.be",
  1429. "homepage": "https://seld.be"
  1430. }
  1431. ],
  1432. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1433. "homepage": "https://github.com/Seldaek/monolog",
  1434. "keywords": [
  1435. "log",
  1436. "logging",
  1437. "psr-3"
  1438. ],
  1439. "support": {
  1440. "issues": "https://github.com/Seldaek/monolog/issues",
  1441. "source": "https://github.com/Seldaek/monolog/tree/3.8.1"
  1442. },
  1443. "funding": [
  1444. {
  1445. "url": "https://github.com/Seldaek",
  1446. "type": "github"
  1447. },
  1448. {
  1449. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1450. "type": "tidelift"
  1451. }
  1452. ],
  1453. "time": "2024-12-05T17:15:07+00:00"
  1454. },
  1455. {
  1456. "name": "phpdocumentor/reflection-common",
  1457. "version": "2.2.0",
  1458. "source": {
  1459. "type": "git",
  1460. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  1461. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  1462. },
  1463. "dist": {
  1464. "type": "zip",
  1465. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1466. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  1467. "shasum": ""
  1468. },
  1469. "require": {
  1470. "php": "^7.2 || ^8.0"
  1471. },
  1472. "type": "library",
  1473. "extra": {
  1474. "branch-alias": {
  1475. "dev-2.x": "2.x-dev"
  1476. }
  1477. },
  1478. "autoload": {
  1479. "psr-4": {
  1480. "phpDocumentor\\Reflection\\": "src/"
  1481. }
  1482. },
  1483. "notification-url": "https://packagist.org/downloads/",
  1484. "license": [
  1485. "MIT"
  1486. ],
  1487. "authors": [
  1488. {
  1489. "name": "Jaap van Otterdijk",
  1490. "email": "opensource@ijaap.nl"
  1491. }
  1492. ],
  1493. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  1494. "homepage": "http://www.phpdoc.org",
  1495. "keywords": [
  1496. "FQSEN",
  1497. "phpDocumentor",
  1498. "phpdoc",
  1499. "reflection",
  1500. "static analysis"
  1501. ],
  1502. "support": {
  1503. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  1504. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  1505. },
  1506. "time": "2020-06-27T09:03:43+00:00"
  1507. },
  1508. {
  1509. "name": "phpdocumentor/reflection-docblock",
  1510. "version": "5.6.1",
  1511. "source": {
  1512. "type": "git",
  1513. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  1514. "reference": "e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8"
  1515. },
  1516. "dist": {
  1517. "type": "zip",
  1518. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8",
  1519. "reference": "e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8",
  1520. "shasum": ""
  1521. },
  1522. "require": {
  1523. "doctrine/deprecations": "^1.1",
  1524. "ext-filter": "*",
  1525. "php": "^7.4 || ^8.0",
  1526. "phpdocumentor/reflection-common": "^2.2",
  1527. "phpdocumentor/type-resolver": "^1.7",
  1528. "phpstan/phpdoc-parser": "^1.7|^2.0",
  1529. "webmozart/assert": "^1.9.1"
  1530. },
  1531. "require-dev": {
  1532. "mockery/mockery": "~1.3.5 || ~1.6.0",
  1533. "phpstan/extension-installer": "^1.1",
  1534. "phpstan/phpstan": "^1.8",
  1535. "phpstan/phpstan-mockery": "^1.1",
  1536. "phpstan/phpstan-webmozart-assert": "^1.2",
  1537. "phpunit/phpunit": "^9.5",
  1538. "psalm/phar": "^5.26"
  1539. },
  1540. "type": "library",
  1541. "extra": {
  1542. "branch-alias": {
  1543. "dev-master": "5.x-dev"
  1544. }
  1545. },
  1546. "autoload": {
  1547. "psr-4": {
  1548. "phpDocumentor\\Reflection\\": "src"
  1549. }
  1550. },
  1551. "notification-url": "https://packagist.org/downloads/",
  1552. "license": [
  1553. "MIT"
  1554. ],
  1555. "authors": [
  1556. {
  1557. "name": "Mike van Riel",
  1558. "email": "me@mikevanriel.com"
  1559. },
  1560. {
  1561. "name": "Jaap van Otterdijk",
  1562. "email": "opensource@ijaap.nl"
  1563. }
  1564. ],
  1565. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  1566. "support": {
  1567. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  1568. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.1"
  1569. },
  1570. "time": "2024-12-07T09:39:29+00:00"
  1571. },
  1572. {
  1573. "name": "phpdocumentor/type-resolver",
  1574. "version": "1.10.0",
  1575. "source": {
  1576. "type": "git",
  1577. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  1578. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  1579. },
  1580. "dist": {
  1581. "type": "zip",
  1582. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  1583. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  1584. "shasum": ""
  1585. },
  1586. "require": {
  1587. "doctrine/deprecations": "^1.0",
  1588. "php": "^7.3 || ^8.0",
  1589. "phpdocumentor/reflection-common": "^2.0",
  1590. "phpstan/phpdoc-parser": "^1.18|^2.0"
  1591. },
  1592. "require-dev": {
  1593. "ext-tokenizer": "*",
  1594. "phpbench/phpbench": "^1.2",
  1595. "phpstan/extension-installer": "^1.1",
  1596. "phpstan/phpstan": "^1.8",
  1597. "phpstan/phpstan-phpunit": "^1.1",
  1598. "phpunit/phpunit": "^9.5",
  1599. "rector/rector": "^0.13.9",
  1600. "vimeo/psalm": "^4.25"
  1601. },
  1602. "type": "library",
  1603. "extra": {
  1604. "branch-alias": {
  1605. "dev-1.x": "1.x-dev"
  1606. }
  1607. },
  1608. "autoload": {
  1609. "psr-4": {
  1610. "phpDocumentor\\Reflection\\": "src"
  1611. }
  1612. },
  1613. "notification-url": "https://packagist.org/downloads/",
  1614. "license": [
  1615. "MIT"
  1616. ],
  1617. "authors": [
  1618. {
  1619. "name": "Mike van Riel",
  1620. "email": "me@mikevanriel.com"
  1621. }
  1622. ],
  1623. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  1624. "support": {
  1625. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  1626. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  1627. },
  1628. "time": "2024-11-09T15:12:26+00:00"
  1629. },
  1630. {
  1631. "name": "phpstan/phpdoc-parser",
  1632. "version": "2.0.0",
  1633. "source": {
  1634. "type": "git",
  1635. "url": "https://github.com/phpstan/phpdoc-parser.git",
  1636. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299"
  1637. },
  1638. "dist": {
  1639. "type": "zip",
  1640. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/c00d78fb6b29658347f9d37ebe104bffadf36299",
  1641. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299",
  1642. "shasum": ""
  1643. },
  1644. "require": {
  1645. "php": "^7.4 || ^8.0"
  1646. },
  1647. "require-dev": {
  1648. "doctrine/annotations": "^2.0",
  1649. "nikic/php-parser": "^5.3.0",
  1650. "php-parallel-lint/php-parallel-lint": "^1.2",
  1651. "phpstan/extension-installer": "^1.0",
  1652. "phpstan/phpstan": "^2.0",
  1653. "phpstan/phpstan-phpunit": "^2.0",
  1654. "phpstan/phpstan-strict-rules": "^2.0",
  1655. "phpunit/phpunit": "^9.6",
  1656. "symfony/process": "^5.2"
  1657. },
  1658. "type": "library",
  1659. "autoload": {
  1660. "psr-4": {
  1661. "PHPStan\\PhpDocParser\\": [
  1662. "src/"
  1663. ]
  1664. }
  1665. },
  1666. "notification-url": "https://packagist.org/downloads/",
  1667. "license": [
  1668. "MIT"
  1669. ],
  1670. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  1671. "support": {
  1672. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  1673. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.0.0"
  1674. },
  1675. "time": "2024-10-13T11:29:49+00:00"
  1676. },
  1677. {
  1678. "name": "psr/cache",
  1679. "version": "3.0.0",
  1680. "source": {
  1681. "type": "git",
  1682. "url": "https://github.com/php-fig/cache.git",
  1683. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  1684. },
  1685. "dist": {
  1686. "type": "zip",
  1687. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1688. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  1689. "shasum": ""
  1690. },
  1691. "require": {
  1692. "php": ">=8.0.0"
  1693. },
  1694. "type": "library",
  1695. "extra": {
  1696. "branch-alias": {
  1697. "dev-master": "1.0.x-dev"
  1698. }
  1699. },
  1700. "autoload": {
  1701. "psr-4": {
  1702. "Psr\\Cache\\": "src/"
  1703. }
  1704. },
  1705. "notification-url": "https://packagist.org/downloads/",
  1706. "license": [
  1707. "MIT"
  1708. ],
  1709. "authors": [
  1710. {
  1711. "name": "PHP-FIG",
  1712. "homepage": "https://www.php-fig.org/"
  1713. }
  1714. ],
  1715. "description": "Common interface for caching libraries",
  1716. "keywords": [
  1717. "cache",
  1718. "psr",
  1719. "psr-6"
  1720. ],
  1721. "support": {
  1722. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  1723. },
  1724. "time": "2021-02-03T23:26:27+00:00"
  1725. },
  1726. {
  1727. "name": "psr/clock",
  1728. "version": "1.0.0",
  1729. "source": {
  1730. "type": "git",
  1731. "url": "https://github.com/php-fig/clock.git",
  1732. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  1733. },
  1734. "dist": {
  1735. "type": "zip",
  1736. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1737. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  1738. "shasum": ""
  1739. },
  1740. "require": {
  1741. "php": "^7.0 || ^8.0"
  1742. },
  1743. "type": "library",
  1744. "autoload": {
  1745. "psr-4": {
  1746. "Psr\\Clock\\": "src/"
  1747. }
  1748. },
  1749. "notification-url": "https://packagist.org/downloads/",
  1750. "license": [
  1751. "MIT"
  1752. ],
  1753. "authors": [
  1754. {
  1755. "name": "PHP-FIG",
  1756. "homepage": "https://www.php-fig.org/"
  1757. }
  1758. ],
  1759. "description": "Common interface for reading the clock.",
  1760. "homepage": "https://github.com/php-fig/clock",
  1761. "keywords": [
  1762. "clock",
  1763. "now",
  1764. "psr",
  1765. "psr-20",
  1766. "time"
  1767. ],
  1768. "support": {
  1769. "issues": "https://github.com/php-fig/clock/issues",
  1770. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  1771. },
  1772. "time": "2022-11-25T14:36:26+00:00"
  1773. },
  1774. {
  1775. "name": "psr/container",
  1776. "version": "2.0.2",
  1777. "source": {
  1778. "type": "git",
  1779. "url": "https://github.com/php-fig/container.git",
  1780. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  1781. },
  1782. "dist": {
  1783. "type": "zip",
  1784. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1785. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  1786. "shasum": ""
  1787. },
  1788. "require": {
  1789. "php": ">=7.4.0"
  1790. },
  1791. "type": "library",
  1792. "extra": {
  1793. "branch-alias": {
  1794. "dev-master": "2.0.x-dev"
  1795. }
  1796. },
  1797. "autoload": {
  1798. "psr-4": {
  1799. "Psr\\Container\\": "src/"
  1800. }
  1801. },
  1802. "notification-url": "https://packagist.org/downloads/",
  1803. "license": [
  1804. "MIT"
  1805. ],
  1806. "authors": [
  1807. {
  1808. "name": "PHP-FIG",
  1809. "homepage": "https://www.php-fig.org/"
  1810. }
  1811. ],
  1812. "description": "Common Container Interface (PHP FIG PSR-11)",
  1813. "homepage": "https://github.com/php-fig/container",
  1814. "keywords": [
  1815. "PSR-11",
  1816. "container",
  1817. "container-interface",
  1818. "container-interop",
  1819. "psr"
  1820. ],
  1821. "support": {
  1822. "issues": "https://github.com/php-fig/container/issues",
  1823. "source": "https://github.com/php-fig/container/tree/2.0.2"
  1824. },
  1825. "time": "2021-11-05T16:47:00+00:00"
  1826. },
  1827. {
  1828. "name": "psr/event-dispatcher",
  1829. "version": "1.0.0",
  1830. "source": {
  1831. "type": "git",
  1832. "url": "https://github.com/php-fig/event-dispatcher.git",
  1833. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  1834. },
  1835. "dist": {
  1836. "type": "zip",
  1837. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1838. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  1839. "shasum": ""
  1840. },
  1841. "require": {
  1842. "php": ">=7.2.0"
  1843. },
  1844. "type": "library",
  1845. "extra": {
  1846. "branch-alias": {
  1847. "dev-master": "1.0.x-dev"
  1848. }
  1849. },
  1850. "autoload": {
  1851. "psr-4": {
  1852. "Psr\\EventDispatcher\\": "src/"
  1853. }
  1854. },
  1855. "notification-url": "https://packagist.org/downloads/",
  1856. "license": [
  1857. "MIT"
  1858. ],
  1859. "authors": [
  1860. {
  1861. "name": "PHP-FIG",
  1862. "homepage": "http://www.php-fig.org/"
  1863. }
  1864. ],
  1865. "description": "Standard interfaces for event handling.",
  1866. "keywords": [
  1867. "events",
  1868. "psr",
  1869. "psr-14"
  1870. ],
  1871. "support": {
  1872. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  1873. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  1874. },
  1875. "time": "2019-01-08T18:20:26+00:00"
  1876. },
  1877. {
  1878. "name": "psr/link",
  1879. "version": "2.0.1",
  1880. "source": {
  1881. "type": "git",
  1882. "url": "https://github.com/php-fig/link.git",
  1883. "reference": "84b159194ecfd7eaa472280213976e96415433f7"
  1884. },
  1885. "dist": {
  1886. "type": "zip",
  1887. "url": "https://api.github.com/repos/php-fig/link/zipball/84b159194ecfd7eaa472280213976e96415433f7",
  1888. "reference": "84b159194ecfd7eaa472280213976e96415433f7",
  1889. "shasum": ""
  1890. },
  1891. "require": {
  1892. "php": ">=8.0.0"
  1893. },
  1894. "suggest": {
  1895. "fig/link-util": "Provides some useful PSR-13 utilities"
  1896. },
  1897. "type": "library",
  1898. "extra": {
  1899. "branch-alias": {
  1900. "dev-master": "2.0.x-dev"
  1901. }
  1902. },
  1903. "autoload": {
  1904. "psr-4": {
  1905. "Psr\\Link\\": "src/"
  1906. }
  1907. },
  1908. "notification-url": "https://packagist.org/downloads/",
  1909. "license": [
  1910. "MIT"
  1911. ],
  1912. "authors": [
  1913. {
  1914. "name": "PHP-FIG",
  1915. "homepage": "http://www.php-fig.org/"
  1916. }
  1917. ],
  1918. "description": "Common interfaces for HTTP links",
  1919. "homepage": "https://github.com/php-fig/link",
  1920. "keywords": [
  1921. "http",
  1922. "http-link",
  1923. "link",
  1924. "psr",
  1925. "psr-13",
  1926. "rest"
  1927. ],
  1928. "support": {
  1929. "source": "https://github.com/php-fig/link/tree/2.0.1"
  1930. },
  1931. "time": "2021-03-11T23:00:27+00:00"
  1932. },
  1933. {
  1934. "name": "psr/log",
  1935. "version": "3.0.2",
  1936. "source": {
  1937. "type": "git",
  1938. "url": "https://github.com/php-fig/log.git",
  1939. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  1940. },
  1941. "dist": {
  1942. "type": "zip",
  1943. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  1944. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  1945. "shasum": ""
  1946. },
  1947. "require": {
  1948. "php": ">=8.0.0"
  1949. },
  1950. "type": "library",
  1951. "extra": {
  1952. "branch-alias": {
  1953. "dev-master": "3.x-dev"
  1954. }
  1955. },
  1956. "autoload": {
  1957. "psr-4": {
  1958. "Psr\\Log\\": "src"
  1959. }
  1960. },
  1961. "notification-url": "https://packagist.org/downloads/",
  1962. "license": [
  1963. "MIT"
  1964. ],
  1965. "authors": [
  1966. {
  1967. "name": "PHP-FIG",
  1968. "homepage": "https://www.php-fig.org/"
  1969. }
  1970. ],
  1971. "description": "Common interface for logging libraries",
  1972. "homepage": "https://github.com/php-fig/log",
  1973. "keywords": [
  1974. "log",
  1975. "psr",
  1976. "psr-3"
  1977. ],
  1978. "support": {
  1979. "source": "https://github.com/php-fig/log/tree/3.0.2"
  1980. },
  1981. "time": "2024-09-11T13:17:53+00:00"
  1982. },
  1983. {
  1984. "name": "symfony/asset",
  1985. "version": "v6.4.13",
  1986. "source": {
  1987. "type": "git",
  1988. "url": "https://github.com/symfony/asset.git",
  1989. "reference": "2466c17d61d14539cddf77e57ebb9cc971185302"
  1990. },
  1991. "dist": {
  1992. "type": "zip",
  1993. "url": "https://api.github.com/repos/symfony/asset/zipball/2466c17d61d14539cddf77e57ebb9cc971185302",
  1994. "reference": "2466c17d61d14539cddf77e57ebb9cc971185302",
  1995. "shasum": ""
  1996. },
  1997. "require": {
  1998. "php": ">=8.1"
  1999. },
  2000. "conflict": {
  2001. "symfony/http-foundation": "<5.4"
  2002. },
  2003. "require-dev": {
  2004. "symfony/http-client": "^5.4|^6.0|^7.0",
  2005. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  2006. "symfony/http-kernel": "^5.4|^6.0|^7.0"
  2007. },
  2008. "type": "library",
  2009. "autoload": {
  2010. "psr-4": {
  2011. "Symfony\\Component\\Asset\\": ""
  2012. },
  2013. "exclude-from-classmap": [
  2014. "/Tests/"
  2015. ]
  2016. },
  2017. "notification-url": "https://packagist.org/downloads/",
  2018. "license": [
  2019. "MIT"
  2020. ],
  2021. "authors": [
  2022. {
  2023. "name": "Fabien Potencier",
  2024. "email": "fabien@symfony.com"
  2025. },
  2026. {
  2027. "name": "Symfony Community",
  2028. "homepage": "https://symfony.com/contributors"
  2029. }
  2030. ],
  2031. "description": "Manages URL generation and versioning of web assets such as CSS stylesheets, JavaScript files and image files",
  2032. "homepage": "https://symfony.com",
  2033. "support": {
  2034. "source": "https://github.com/symfony/asset/tree/v6.4.13"
  2035. },
  2036. "funding": [
  2037. {
  2038. "url": "https://symfony.com/sponsor",
  2039. "type": "custom"
  2040. },
  2041. {
  2042. "url": "https://github.com/fabpot",
  2043. "type": "github"
  2044. },
  2045. {
  2046. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2047. "type": "tidelift"
  2048. }
  2049. ],
  2050. "time": "2024-10-25T15:07:50+00:00"
  2051. },
  2052. {
  2053. "name": "symfony/cache",
  2054. "version": "v6.4.16",
  2055. "source": {
  2056. "type": "git",
  2057. "url": "https://github.com/symfony/cache.git",
  2058. "reference": "70d60e9a3603108563010f8592dff15a6f15dfae"
  2059. },
  2060. "dist": {
  2061. "type": "zip",
  2062. "url": "https://api.github.com/repos/symfony/cache/zipball/70d60e9a3603108563010f8592dff15a6f15dfae",
  2063. "reference": "70d60e9a3603108563010f8592dff15a6f15dfae",
  2064. "shasum": ""
  2065. },
  2066. "require": {
  2067. "php": ">=8.1",
  2068. "psr/cache": "^2.0|^3.0",
  2069. "psr/log": "^1.1|^2|^3",
  2070. "symfony/cache-contracts": "^2.5|^3",
  2071. "symfony/service-contracts": "^2.5|^3",
  2072. "symfony/var-exporter": "^6.3.6|^7.0"
  2073. },
  2074. "conflict": {
  2075. "doctrine/dbal": "<2.13.1",
  2076. "symfony/dependency-injection": "<5.4",
  2077. "symfony/http-kernel": "<5.4",
  2078. "symfony/var-dumper": "<5.4"
  2079. },
  2080. "provide": {
  2081. "psr/cache-implementation": "2.0|3.0",
  2082. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  2083. "symfony/cache-implementation": "1.1|2.0|3.0"
  2084. },
  2085. "require-dev": {
  2086. "cache/integration-tests": "dev-master",
  2087. "doctrine/dbal": "^2.13.1|^3|^4",
  2088. "predis/predis": "^1.1|^2.0",
  2089. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2090. "symfony/config": "^5.4|^6.0|^7.0",
  2091. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  2092. "symfony/filesystem": "^5.4|^6.0|^7.0",
  2093. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  2094. "symfony/messenger": "^5.4|^6.0|^7.0",
  2095. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  2096. },
  2097. "type": "library",
  2098. "autoload": {
  2099. "psr-4": {
  2100. "Symfony\\Component\\Cache\\": ""
  2101. },
  2102. "classmap": [
  2103. "Traits/ValueWrapper.php"
  2104. ],
  2105. "exclude-from-classmap": [
  2106. "/Tests/"
  2107. ]
  2108. },
  2109. "notification-url": "https://packagist.org/downloads/",
  2110. "license": [
  2111. "MIT"
  2112. ],
  2113. "authors": [
  2114. {
  2115. "name": "Nicolas Grekas",
  2116. "email": "p@tchwork.com"
  2117. },
  2118. {
  2119. "name": "Symfony Community",
  2120. "homepage": "https://symfony.com/contributors"
  2121. }
  2122. ],
  2123. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  2124. "homepage": "https://symfony.com",
  2125. "keywords": [
  2126. "caching",
  2127. "psr6"
  2128. ],
  2129. "support": {
  2130. "source": "https://github.com/symfony/cache/tree/v6.4.16"
  2131. },
  2132. "funding": [
  2133. {
  2134. "url": "https://symfony.com/sponsor",
  2135. "type": "custom"
  2136. },
  2137. {
  2138. "url": "https://github.com/fabpot",
  2139. "type": "github"
  2140. },
  2141. {
  2142. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2143. "type": "tidelift"
  2144. }
  2145. ],
  2146. "time": "2024-11-20T10:10:54+00:00"
  2147. },
  2148. {
  2149. "name": "symfony/cache-contracts",
  2150. "version": "v3.5.1",
  2151. "source": {
  2152. "type": "git",
  2153. "url": "https://github.com/symfony/cache-contracts.git",
  2154. "reference": "15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b"
  2155. },
  2156. "dist": {
  2157. "type": "zip",
  2158. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b",
  2159. "reference": "15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b",
  2160. "shasum": ""
  2161. },
  2162. "require": {
  2163. "php": ">=8.1",
  2164. "psr/cache": "^3.0"
  2165. },
  2166. "type": "library",
  2167. "extra": {
  2168. "thanks": {
  2169. "url": "https://github.com/symfony/contracts",
  2170. "name": "symfony/contracts"
  2171. },
  2172. "branch-alias": {
  2173. "dev-main": "3.5-dev"
  2174. }
  2175. },
  2176. "autoload": {
  2177. "psr-4": {
  2178. "Symfony\\Contracts\\Cache\\": ""
  2179. }
  2180. },
  2181. "notification-url": "https://packagist.org/downloads/",
  2182. "license": [
  2183. "MIT"
  2184. ],
  2185. "authors": [
  2186. {
  2187. "name": "Nicolas Grekas",
  2188. "email": "p@tchwork.com"
  2189. },
  2190. {
  2191. "name": "Symfony Community",
  2192. "homepage": "https://symfony.com/contributors"
  2193. }
  2194. ],
  2195. "description": "Generic abstractions related to caching",
  2196. "homepage": "https://symfony.com",
  2197. "keywords": [
  2198. "abstractions",
  2199. "contracts",
  2200. "decoupling",
  2201. "interfaces",
  2202. "interoperability",
  2203. "standards"
  2204. ],
  2205. "support": {
  2206. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.1"
  2207. },
  2208. "funding": [
  2209. {
  2210. "url": "https://symfony.com/sponsor",
  2211. "type": "custom"
  2212. },
  2213. {
  2214. "url": "https://github.com/fabpot",
  2215. "type": "github"
  2216. },
  2217. {
  2218. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2219. "type": "tidelift"
  2220. }
  2221. ],
  2222. "time": "2024-09-25T14:20:29+00:00"
  2223. },
  2224. {
  2225. "name": "symfony/clock",
  2226. "version": "v6.4.13",
  2227. "source": {
  2228. "type": "git",
  2229. "url": "https://github.com/symfony/clock.git",
  2230. "reference": "b2bf55c4dd115003309eafa87ee7df9ed3dde81b"
  2231. },
  2232. "dist": {
  2233. "type": "zip",
  2234. "url": "https://api.github.com/repos/symfony/clock/zipball/b2bf55c4dd115003309eafa87ee7df9ed3dde81b",
  2235. "reference": "b2bf55c4dd115003309eafa87ee7df9ed3dde81b",
  2236. "shasum": ""
  2237. },
  2238. "require": {
  2239. "php": ">=8.1",
  2240. "psr/clock": "^1.0",
  2241. "symfony/polyfill-php83": "^1.28"
  2242. },
  2243. "provide": {
  2244. "psr/clock-implementation": "1.0"
  2245. },
  2246. "type": "library",
  2247. "autoload": {
  2248. "files": [
  2249. "Resources/now.php"
  2250. ],
  2251. "psr-4": {
  2252. "Symfony\\Component\\Clock\\": ""
  2253. },
  2254. "exclude-from-classmap": [
  2255. "/Tests/"
  2256. ]
  2257. },
  2258. "notification-url": "https://packagist.org/downloads/",
  2259. "license": [
  2260. "MIT"
  2261. ],
  2262. "authors": [
  2263. {
  2264. "name": "Nicolas Grekas",
  2265. "email": "p@tchwork.com"
  2266. },
  2267. {
  2268. "name": "Symfony Community",
  2269. "homepage": "https://symfony.com/contributors"
  2270. }
  2271. ],
  2272. "description": "Decouples applications from the system clock",
  2273. "homepage": "https://symfony.com",
  2274. "keywords": [
  2275. "clock",
  2276. "psr20",
  2277. "time"
  2278. ],
  2279. "support": {
  2280. "source": "https://github.com/symfony/clock/tree/v6.4.13"
  2281. },
  2282. "funding": [
  2283. {
  2284. "url": "https://symfony.com/sponsor",
  2285. "type": "custom"
  2286. },
  2287. {
  2288. "url": "https://github.com/fabpot",
  2289. "type": "github"
  2290. },
  2291. {
  2292. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2293. "type": "tidelift"
  2294. }
  2295. ],
  2296. "time": "2024-09-25T14:18:03+00:00"
  2297. },
  2298. {
  2299. "name": "symfony/config",
  2300. "version": "v6.4.14",
  2301. "source": {
  2302. "type": "git",
  2303. "url": "https://github.com/symfony/config.git",
  2304. "reference": "4e55e7e4ffddd343671ea972216d4509f46c22ef"
  2305. },
  2306. "dist": {
  2307. "type": "zip",
  2308. "url": "https://api.github.com/repos/symfony/config/zipball/4e55e7e4ffddd343671ea972216d4509f46c22ef",
  2309. "reference": "4e55e7e4ffddd343671ea972216d4509f46c22ef",
  2310. "shasum": ""
  2311. },
  2312. "require": {
  2313. "php": ">=8.1",
  2314. "symfony/deprecation-contracts": "^2.5|^3",
  2315. "symfony/filesystem": "^5.4|^6.0|^7.0",
  2316. "symfony/polyfill-ctype": "~1.8"
  2317. },
  2318. "conflict": {
  2319. "symfony/finder": "<5.4",
  2320. "symfony/service-contracts": "<2.5"
  2321. },
  2322. "require-dev": {
  2323. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  2324. "symfony/finder": "^5.4|^6.0|^7.0",
  2325. "symfony/messenger": "^5.4|^6.0|^7.0",
  2326. "symfony/service-contracts": "^2.5|^3",
  2327. "symfony/yaml": "^5.4|^6.0|^7.0"
  2328. },
  2329. "type": "library",
  2330. "autoload": {
  2331. "psr-4": {
  2332. "Symfony\\Component\\Config\\": ""
  2333. },
  2334. "exclude-from-classmap": [
  2335. "/Tests/"
  2336. ]
  2337. },
  2338. "notification-url": "https://packagist.org/downloads/",
  2339. "license": [
  2340. "MIT"
  2341. ],
  2342. "authors": [
  2343. {
  2344. "name": "Fabien Potencier",
  2345. "email": "fabien@symfony.com"
  2346. },
  2347. {
  2348. "name": "Symfony Community",
  2349. "homepage": "https://symfony.com/contributors"
  2350. }
  2351. ],
  2352. "description": "Helps you find, load, combine, autofill and validate configuration values of any kind",
  2353. "homepage": "https://symfony.com",
  2354. "support": {
  2355. "source": "https://github.com/symfony/config/tree/v6.4.14"
  2356. },
  2357. "funding": [
  2358. {
  2359. "url": "https://symfony.com/sponsor",
  2360. "type": "custom"
  2361. },
  2362. {
  2363. "url": "https://github.com/fabpot",
  2364. "type": "github"
  2365. },
  2366. {
  2367. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2368. "type": "tidelift"
  2369. }
  2370. ],
  2371. "time": "2024-11-04T11:33:53+00:00"
  2372. },
  2373. {
  2374. "name": "symfony/console",
  2375. "version": "v6.4.17",
  2376. "source": {
  2377. "type": "git",
  2378. "url": "https://github.com/symfony/console.git",
  2379. "reference": "799445db3f15768ecc382ac5699e6da0520a0a04"
  2380. },
  2381. "dist": {
  2382. "type": "zip",
  2383. "url": "https://api.github.com/repos/symfony/console/zipball/799445db3f15768ecc382ac5699e6da0520a0a04",
  2384. "reference": "799445db3f15768ecc382ac5699e6da0520a0a04",
  2385. "shasum": ""
  2386. },
  2387. "require": {
  2388. "php": ">=8.1",
  2389. "symfony/deprecation-contracts": "^2.5|^3",
  2390. "symfony/polyfill-mbstring": "~1.0",
  2391. "symfony/service-contracts": "^2.5|^3",
  2392. "symfony/string": "^5.4|^6.0|^7.0"
  2393. },
  2394. "conflict": {
  2395. "symfony/dependency-injection": "<5.4",
  2396. "symfony/dotenv": "<5.4",
  2397. "symfony/event-dispatcher": "<5.4",
  2398. "symfony/lock": "<5.4",
  2399. "symfony/process": "<5.4"
  2400. },
  2401. "provide": {
  2402. "psr/log-implementation": "1.0|2.0|3.0"
  2403. },
  2404. "require-dev": {
  2405. "psr/log": "^1|^2|^3",
  2406. "symfony/config": "^5.4|^6.0|^7.0",
  2407. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  2408. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  2409. "symfony/http-foundation": "^6.4|^7.0",
  2410. "symfony/http-kernel": "^6.4|^7.0",
  2411. "symfony/lock": "^5.4|^6.0|^7.0",
  2412. "symfony/messenger": "^5.4|^6.0|^7.0",
  2413. "symfony/process": "^5.4|^6.0|^7.0",
  2414. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  2415. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  2416. },
  2417. "type": "library",
  2418. "autoload": {
  2419. "psr-4": {
  2420. "Symfony\\Component\\Console\\": ""
  2421. },
  2422. "exclude-from-classmap": [
  2423. "/Tests/"
  2424. ]
  2425. },
  2426. "notification-url": "https://packagist.org/downloads/",
  2427. "license": [
  2428. "MIT"
  2429. ],
  2430. "authors": [
  2431. {
  2432. "name": "Fabien Potencier",
  2433. "email": "fabien@symfony.com"
  2434. },
  2435. {
  2436. "name": "Symfony Community",
  2437. "homepage": "https://symfony.com/contributors"
  2438. }
  2439. ],
  2440. "description": "Eases the creation of beautiful and testable command line interfaces",
  2441. "homepage": "https://symfony.com",
  2442. "keywords": [
  2443. "cli",
  2444. "command-line",
  2445. "console",
  2446. "terminal"
  2447. ],
  2448. "support": {
  2449. "source": "https://github.com/symfony/console/tree/v6.4.17"
  2450. },
  2451. "funding": [
  2452. {
  2453. "url": "https://symfony.com/sponsor",
  2454. "type": "custom"
  2455. },
  2456. {
  2457. "url": "https://github.com/fabpot",
  2458. "type": "github"
  2459. },
  2460. {
  2461. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2462. "type": "tidelift"
  2463. }
  2464. ],
  2465. "time": "2024-12-07T12:07:30+00:00"
  2466. },
  2467. {
  2468. "name": "symfony/css-selector",
  2469. "version": "v6.4.13",
  2470. "source": {
  2471. "type": "git",
  2472. "url": "https://github.com/symfony/css-selector.git",
  2473. "reference": "cb23e97813c5837a041b73a6d63a9ddff0778f5e"
  2474. },
  2475. "dist": {
  2476. "type": "zip",
  2477. "url": "https://api.github.com/repos/symfony/css-selector/zipball/cb23e97813c5837a041b73a6d63a9ddff0778f5e",
  2478. "reference": "cb23e97813c5837a041b73a6d63a9ddff0778f5e",
  2479. "shasum": ""
  2480. },
  2481. "require": {
  2482. "php": ">=8.1"
  2483. },
  2484. "type": "library",
  2485. "autoload": {
  2486. "psr-4": {
  2487. "Symfony\\Component\\CssSelector\\": ""
  2488. },
  2489. "exclude-from-classmap": [
  2490. "/Tests/"
  2491. ]
  2492. },
  2493. "notification-url": "https://packagist.org/downloads/",
  2494. "license": [
  2495. "MIT"
  2496. ],
  2497. "authors": [
  2498. {
  2499. "name": "Fabien Potencier",
  2500. "email": "fabien@symfony.com"
  2501. },
  2502. {
  2503. "name": "Jean-François Simon",
  2504. "email": "jeanfrancois.simon@sensiolabs.com"
  2505. },
  2506. {
  2507. "name": "Symfony Community",
  2508. "homepage": "https://symfony.com/contributors"
  2509. }
  2510. ],
  2511. "description": "Converts CSS selectors to XPath expressions",
  2512. "homepage": "https://symfony.com",
  2513. "support": {
  2514. "source": "https://github.com/symfony/css-selector/tree/v6.4.13"
  2515. },
  2516. "funding": [
  2517. {
  2518. "url": "https://symfony.com/sponsor",
  2519. "type": "custom"
  2520. },
  2521. {
  2522. "url": "https://github.com/fabpot",
  2523. "type": "github"
  2524. },
  2525. {
  2526. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2527. "type": "tidelift"
  2528. }
  2529. ],
  2530. "time": "2024-09-25T14:18:03+00:00"
  2531. },
  2532. {
  2533. "name": "symfony/dependency-injection",
  2534. "version": "v6.4.16",
  2535. "source": {
  2536. "type": "git",
  2537. "url": "https://github.com/symfony/dependency-injection.git",
  2538. "reference": "7a379d8871f6a36f01559c14e11141cc02eb8dc8"
  2539. },
  2540. "dist": {
  2541. "type": "zip",
  2542. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/7a379d8871f6a36f01559c14e11141cc02eb8dc8",
  2543. "reference": "7a379d8871f6a36f01559c14e11141cc02eb8dc8",
  2544. "shasum": ""
  2545. },
  2546. "require": {
  2547. "php": ">=8.1",
  2548. "psr/container": "^1.1|^2.0",
  2549. "symfony/deprecation-contracts": "^2.5|^3",
  2550. "symfony/service-contracts": "^2.5|^3.0",
  2551. "symfony/var-exporter": "^6.2.10|^7.0"
  2552. },
  2553. "conflict": {
  2554. "ext-psr": "<1.1|>=2",
  2555. "symfony/config": "<6.1",
  2556. "symfony/finder": "<5.4",
  2557. "symfony/proxy-manager-bridge": "<6.3",
  2558. "symfony/yaml": "<5.4"
  2559. },
  2560. "provide": {
  2561. "psr/container-implementation": "1.1|2.0",
  2562. "symfony/service-implementation": "1.1|2.0|3.0"
  2563. },
  2564. "require-dev": {
  2565. "symfony/config": "^6.1|^7.0",
  2566. "symfony/expression-language": "^5.4|^6.0|^7.0",
  2567. "symfony/yaml": "^5.4|^6.0|^7.0"
  2568. },
  2569. "type": "library",
  2570. "autoload": {
  2571. "psr-4": {
  2572. "Symfony\\Component\\DependencyInjection\\": ""
  2573. },
  2574. "exclude-from-classmap": [
  2575. "/Tests/"
  2576. ]
  2577. },
  2578. "notification-url": "https://packagist.org/downloads/",
  2579. "license": [
  2580. "MIT"
  2581. ],
  2582. "authors": [
  2583. {
  2584. "name": "Fabien Potencier",
  2585. "email": "fabien@symfony.com"
  2586. },
  2587. {
  2588. "name": "Symfony Community",
  2589. "homepage": "https://symfony.com/contributors"
  2590. }
  2591. ],
  2592. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  2593. "homepage": "https://symfony.com",
  2594. "support": {
  2595. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.16"
  2596. },
  2597. "funding": [
  2598. {
  2599. "url": "https://symfony.com/sponsor",
  2600. "type": "custom"
  2601. },
  2602. {
  2603. "url": "https://github.com/fabpot",
  2604. "type": "github"
  2605. },
  2606. {
  2607. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2608. "type": "tidelift"
  2609. }
  2610. ],
  2611. "time": "2024-11-25T14:52:46+00:00"
  2612. },
  2613. {
  2614. "name": "symfony/deprecation-contracts",
  2615. "version": "v3.5.1",
  2616. "source": {
  2617. "type": "git",
  2618. "url": "https://github.com/symfony/deprecation-contracts.git",
  2619. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  2620. },
  2621. "dist": {
  2622. "type": "zip",
  2623. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  2624. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  2625. "shasum": ""
  2626. },
  2627. "require": {
  2628. "php": ">=8.1"
  2629. },
  2630. "type": "library",
  2631. "extra": {
  2632. "thanks": {
  2633. "url": "https://github.com/symfony/contracts",
  2634. "name": "symfony/contracts"
  2635. },
  2636. "branch-alias": {
  2637. "dev-main": "3.5-dev"
  2638. }
  2639. },
  2640. "autoload": {
  2641. "files": [
  2642. "function.php"
  2643. ]
  2644. },
  2645. "notification-url": "https://packagist.org/downloads/",
  2646. "license": [
  2647. "MIT"
  2648. ],
  2649. "authors": [
  2650. {
  2651. "name": "Nicolas Grekas",
  2652. "email": "p@tchwork.com"
  2653. },
  2654. {
  2655. "name": "Symfony Community",
  2656. "homepage": "https://symfony.com/contributors"
  2657. }
  2658. ],
  2659. "description": "A generic function and convention to trigger deprecation notices",
  2660. "homepage": "https://symfony.com",
  2661. "support": {
  2662. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  2663. },
  2664. "funding": [
  2665. {
  2666. "url": "https://symfony.com/sponsor",
  2667. "type": "custom"
  2668. },
  2669. {
  2670. "url": "https://github.com/fabpot",
  2671. "type": "github"
  2672. },
  2673. {
  2674. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2675. "type": "tidelift"
  2676. }
  2677. ],
  2678. "time": "2024-09-25T14:20:29+00:00"
  2679. },
  2680. {
  2681. "name": "symfony/doctrine-bridge",
  2682. "version": "v6.4.17",
  2683. "source": {
  2684. "type": "git",
  2685. "url": "https://github.com/symfony/doctrine-bridge.git",
  2686. "reference": "2ba7e747a944b69f9f583c35173560afebbff995"
  2687. },
  2688. "dist": {
  2689. "type": "zip",
  2690. "url": "https://api.github.com/repos/symfony/doctrine-bridge/zipball/2ba7e747a944b69f9f583c35173560afebbff995",
  2691. "reference": "2ba7e747a944b69f9f583c35173560afebbff995",
  2692. "shasum": ""
  2693. },
  2694. "require": {
  2695. "doctrine/event-manager": "^1.2|^2",
  2696. "doctrine/persistence": "^3.1",
  2697. "php": ">=8.1",
  2698. "symfony/deprecation-contracts": "^2.5|^3",
  2699. "symfony/polyfill-ctype": "~1.8",
  2700. "symfony/polyfill-mbstring": "~1.0",
  2701. "symfony/service-contracts": "^2.5|^3"
  2702. },
  2703. "conflict": {
  2704. "doctrine/dbal": "<2.13.1",
  2705. "doctrine/lexer": "<1.1",
  2706. "doctrine/orm": "<2.15",
  2707. "symfony/cache": "<5.4",
  2708. "symfony/dependency-injection": "<6.2",
  2709. "symfony/form": "<5.4.38|>=6,<6.4.6|>=7,<7.0.6",
  2710. "symfony/http-foundation": "<6.3",
  2711. "symfony/http-kernel": "<6.2",
  2712. "symfony/lock": "<6.3",
  2713. "symfony/messenger": "<5.4",
  2714. "symfony/property-info": "<5.4",
  2715. "symfony/security-bundle": "<5.4",
  2716. "symfony/security-core": "<6.4",
  2717. "symfony/validator": "<6.4"
  2718. },
  2719. "require-dev": {
  2720. "doctrine/collections": "^1.0|^2.0",
  2721. "doctrine/data-fixtures": "^1.1|^2",
  2722. "doctrine/dbal": "^2.13.1|^3|^4",
  2723. "doctrine/orm": "^2.15|^3",
  2724. "psr/log": "^1|^2|^3",
  2725. "symfony/cache": "^5.4|^6.0|^7.0",
  2726. "symfony/config": "^5.4|^6.0|^7.0",
  2727. "symfony/dependency-injection": "^6.2|^7.0",
  2728. "symfony/doctrine-messenger": "^5.4|^6.0|^7.0",
  2729. "symfony/expression-language": "^5.4|^6.0|^7.0",
  2730. "symfony/form": "^5.4.38|^6.4.6|^7.0.6",
  2731. "symfony/http-kernel": "^6.3|^7.0",
  2732. "symfony/lock": "^6.3|^7.0",
  2733. "symfony/messenger": "^5.4|^6.0|^7.0",
  2734. "symfony/property-access": "^5.4|^6.0|^7.0",
  2735. "symfony/property-info": "^5.4|^6.0|^7.0",
  2736. "symfony/proxy-manager-bridge": "^6.4",
  2737. "symfony/security-core": "^6.4|^7.0",
  2738. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  2739. "symfony/translation": "^5.4|^6.0|^7.0",
  2740. "symfony/uid": "^5.4|^6.0|^7.0",
  2741. "symfony/validator": "^6.4|^7.0",
  2742. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  2743. },
  2744. "type": "symfony-bridge",
  2745. "autoload": {
  2746. "psr-4": {
  2747. "Symfony\\Bridge\\Doctrine\\": ""
  2748. },
  2749. "exclude-from-classmap": [
  2750. "/Tests/"
  2751. ]
  2752. },
  2753. "notification-url": "https://packagist.org/downloads/",
  2754. "license": [
  2755. "MIT"
  2756. ],
  2757. "authors": [
  2758. {
  2759. "name": "Fabien Potencier",
  2760. "email": "fabien@symfony.com"
  2761. },
  2762. {
  2763. "name": "Symfony Community",
  2764. "homepage": "https://symfony.com/contributors"
  2765. }
  2766. ],
  2767. "description": "Provides integration for Doctrine with various Symfony components",
  2768. "homepage": "https://symfony.com",
  2769. "support": {
  2770. "source": "https://github.com/symfony/doctrine-bridge/tree/v6.4.17"
  2771. },
  2772. "funding": [
  2773. {
  2774. "url": "https://symfony.com/sponsor",
  2775. "type": "custom"
  2776. },
  2777. {
  2778. "url": "https://github.com/fabpot",
  2779. "type": "github"
  2780. },
  2781. {
  2782. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2783. "type": "tidelift"
  2784. }
  2785. ],
  2786. "time": "2024-12-18T10:42:42+00:00"
  2787. },
  2788. {
  2789. "name": "symfony/doctrine-messenger",
  2790. "version": "v6.4.13",
  2791. "source": {
  2792. "type": "git",
  2793. "url": "https://github.com/symfony/doctrine-messenger.git",
  2794. "reference": "c4afe708134a4506316955d1c009bc6091b16b2d"
  2795. },
  2796. "dist": {
  2797. "type": "zip",
  2798. "url": "https://api.github.com/repos/symfony/doctrine-messenger/zipball/c4afe708134a4506316955d1c009bc6091b16b2d",
  2799. "reference": "c4afe708134a4506316955d1c009bc6091b16b2d",
  2800. "shasum": ""
  2801. },
  2802. "require": {
  2803. "doctrine/dbal": "^2.13|^3|^4",
  2804. "php": ">=8.1",
  2805. "symfony/messenger": "^5.4|^6.0|^7.0",
  2806. "symfony/service-contracts": "^2.5|^3"
  2807. },
  2808. "conflict": {
  2809. "doctrine/persistence": "<1.3"
  2810. },
  2811. "require-dev": {
  2812. "doctrine/persistence": "^1.3|^2|^3",
  2813. "symfony/property-access": "^5.4|^6.0|^7.0",
  2814. "symfony/serializer": "^5.4|^6.0|^7.0"
  2815. },
  2816. "type": "symfony-messenger-bridge",
  2817. "autoload": {
  2818. "psr-4": {
  2819. "Symfony\\Component\\Messenger\\Bridge\\Doctrine\\": ""
  2820. },
  2821. "exclude-from-classmap": [
  2822. "/Tests/"
  2823. ]
  2824. },
  2825. "notification-url": "https://packagist.org/downloads/",
  2826. "license": [
  2827. "MIT"
  2828. ],
  2829. "authors": [
  2830. {
  2831. "name": "Fabien Potencier",
  2832. "email": "fabien@symfony.com"
  2833. },
  2834. {
  2835. "name": "Symfony Community",
  2836. "homepage": "https://symfony.com/contributors"
  2837. }
  2838. ],
  2839. "description": "Symfony Doctrine Messenger Bridge",
  2840. "homepage": "https://symfony.com",
  2841. "support": {
  2842. "source": "https://github.com/symfony/doctrine-messenger/tree/v6.4.13"
  2843. },
  2844. "funding": [
  2845. {
  2846. "url": "https://symfony.com/sponsor",
  2847. "type": "custom"
  2848. },
  2849. {
  2850. "url": "https://github.com/fabpot",
  2851. "type": "github"
  2852. },
  2853. {
  2854. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2855. "type": "tidelift"
  2856. }
  2857. ],
  2858. "time": "2024-10-18T09:45:38+00:00"
  2859. },
  2860. {
  2861. "name": "symfony/dotenv",
  2862. "version": "v6.4.16",
  2863. "source": {
  2864. "type": "git",
  2865. "url": "https://github.com/symfony/dotenv.git",
  2866. "reference": "1ac5e7e7e862d4d574258daf08bd569ba926e4a5"
  2867. },
  2868. "dist": {
  2869. "type": "zip",
  2870. "url": "https://api.github.com/repos/symfony/dotenv/zipball/1ac5e7e7e862d4d574258daf08bd569ba926e4a5",
  2871. "reference": "1ac5e7e7e862d4d574258daf08bd569ba926e4a5",
  2872. "shasum": ""
  2873. },
  2874. "require": {
  2875. "php": ">=8.1"
  2876. },
  2877. "conflict": {
  2878. "symfony/console": "<5.4",
  2879. "symfony/process": "<5.4"
  2880. },
  2881. "require-dev": {
  2882. "symfony/console": "^5.4|^6.0|^7.0",
  2883. "symfony/process": "^5.4|^6.0|^7.0"
  2884. },
  2885. "type": "library",
  2886. "autoload": {
  2887. "psr-4": {
  2888. "Symfony\\Component\\Dotenv\\": ""
  2889. },
  2890. "exclude-from-classmap": [
  2891. "/Tests/"
  2892. ]
  2893. },
  2894. "notification-url": "https://packagist.org/downloads/",
  2895. "license": [
  2896. "MIT"
  2897. ],
  2898. "authors": [
  2899. {
  2900. "name": "Fabien Potencier",
  2901. "email": "fabien@symfony.com"
  2902. },
  2903. {
  2904. "name": "Symfony Community",
  2905. "homepage": "https://symfony.com/contributors"
  2906. }
  2907. ],
  2908. "description": "Registers environment variables from a .env file",
  2909. "homepage": "https://symfony.com",
  2910. "keywords": [
  2911. "dotenv",
  2912. "env",
  2913. "environment"
  2914. ],
  2915. "support": {
  2916. "source": "https://github.com/symfony/dotenv/tree/v6.4.16"
  2917. },
  2918. "funding": [
  2919. {
  2920. "url": "https://symfony.com/sponsor",
  2921. "type": "custom"
  2922. },
  2923. {
  2924. "url": "https://github.com/fabpot",
  2925. "type": "github"
  2926. },
  2927. {
  2928. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2929. "type": "tidelift"
  2930. }
  2931. ],
  2932. "time": "2024-11-27T11:08:19+00:00"
  2933. },
  2934. {
  2935. "name": "symfony/error-handler",
  2936. "version": "v6.4.17",
  2937. "source": {
  2938. "type": "git",
  2939. "url": "https://github.com/symfony/error-handler.git",
  2940. "reference": "37ad2380e8c1a8cf62a1200a5c10080b679b446c"
  2941. },
  2942. "dist": {
  2943. "type": "zip",
  2944. "url": "https://api.github.com/repos/symfony/error-handler/zipball/37ad2380e8c1a8cf62a1200a5c10080b679b446c",
  2945. "reference": "37ad2380e8c1a8cf62a1200a5c10080b679b446c",
  2946. "shasum": ""
  2947. },
  2948. "require": {
  2949. "php": ">=8.1",
  2950. "psr/log": "^1|^2|^3",
  2951. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  2952. },
  2953. "conflict": {
  2954. "symfony/deprecation-contracts": "<2.5",
  2955. "symfony/http-kernel": "<6.4"
  2956. },
  2957. "require-dev": {
  2958. "symfony/deprecation-contracts": "^2.5|^3",
  2959. "symfony/http-kernel": "^6.4|^7.0",
  2960. "symfony/serializer": "^5.4|^6.0|^7.0"
  2961. },
  2962. "bin": [
  2963. "Resources/bin/patch-type-declarations"
  2964. ],
  2965. "type": "library",
  2966. "autoload": {
  2967. "psr-4": {
  2968. "Symfony\\Component\\ErrorHandler\\": ""
  2969. },
  2970. "exclude-from-classmap": [
  2971. "/Tests/"
  2972. ]
  2973. },
  2974. "notification-url": "https://packagist.org/downloads/",
  2975. "license": [
  2976. "MIT"
  2977. ],
  2978. "authors": [
  2979. {
  2980. "name": "Fabien Potencier",
  2981. "email": "fabien@symfony.com"
  2982. },
  2983. {
  2984. "name": "Symfony Community",
  2985. "homepage": "https://symfony.com/contributors"
  2986. }
  2987. ],
  2988. "description": "Provides tools to manage errors and ease debugging PHP code",
  2989. "homepage": "https://symfony.com",
  2990. "support": {
  2991. "source": "https://github.com/symfony/error-handler/tree/v6.4.17"
  2992. },
  2993. "funding": [
  2994. {
  2995. "url": "https://symfony.com/sponsor",
  2996. "type": "custom"
  2997. },
  2998. {
  2999. "url": "https://github.com/fabpot",
  3000. "type": "github"
  3001. },
  3002. {
  3003. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3004. "type": "tidelift"
  3005. }
  3006. ],
  3007. "time": "2024-12-06T13:30:51+00:00"
  3008. },
  3009. {
  3010. "name": "symfony/event-dispatcher",
  3011. "version": "v6.4.13",
  3012. "source": {
  3013. "type": "git",
  3014. "url": "https://github.com/symfony/event-dispatcher.git",
  3015. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  3016. },
  3017. "dist": {
  3018. "type": "zip",
  3019. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  3020. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  3021. "shasum": ""
  3022. },
  3023. "require": {
  3024. "php": ">=8.1",
  3025. "symfony/event-dispatcher-contracts": "^2.5|^3"
  3026. },
  3027. "conflict": {
  3028. "symfony/dependency-injection": "<5.4",
  3029. "symfony/service-contracts": "<2.5"
  3030. },
  3031. "provide": {
  3032. "psr/event-dispatcher-implementation": "1.0",
  3033. "symfony/event-dispatcher-implementation": "2.0|3.0"
  3034. },
  3035. "require-dev": {
  3036. "psr/log": "^1|^2|^3",
  3037. "symfony/config": "^5.4|^6.0|^7.0",
  3038. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3039. "symfony/error-handler": "^5.4|^6.0|^7.0",
  3040. "symfony/expression-language": "^5.4|^6.0|^7.0",
  3041. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  3042. "symfony/service-contracts": "^2.5|^3",
  3043. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  3044. },
  3045. "type": "library",
  3046. "autoload": {
  3047. "psr-4": {
  3048. "Symfony\\Component\\EventDispatcher\\": ""
  3049. },
  3050. "exclude-from-classmap": [
  3051. "/Tests/"
  3052. ]
  3053. },
  3054. "notification-url": "https://packagist.org/downloads/",
  3055. "license": [
  3056. "MIT"
  3057. ],
  3058. "authors": [
  3059. {
  3060. "name": "Fabien Potencier",
  3061. "email": "fabien@symfony.com"
  3062. },
  3063. {
  3064. "name": "Symfony Community",
  3065. "homepage": "https://symfony.com/contributors"
  3066. }
  3067. ],
  3068. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  3069. "homepage": "https://symfony.com",
  3070. "support": {
  3071. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  3072. },
  3073. "funding": [
  3074. {
  3075. "url": "https://symfony.com/sponsor",
  3076. "type": "custom"
  3077. },
  3078. {
  3079. "url": "https://github.com/fabpot",
  3080. "type": "github"
  3081. },
  3082. {
  3083. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3084. "type": "tidelift"
  3085. }
  3086. ],
  3087. "time": "2024-09-25T14:18:03+00:00"
  3088. },
  3089. {
  3090. "name": "symfony/event-dispatcher-contracts",
  3091. "version": "v3.5.1",
  3092. "source": {
  3093. "type": "git",
  3094. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  3095. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  3096. },
  3097. "dist": {
  3098. "type": "zip",
  3099. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  3100. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  3101. "shasum": ""
  3102. },
  3103. "require": {
  3104. "php": ">=8.1",
  3105. "psr/event-dispatcher": "^1"
  3106. },
  3107. "type": "library",
  3108. "extra": {
  3109. "thanks": {
  3110. "url": "https://github.com/symfony/contracts",
  3111. "name": "symfony/contracts"
  3112. },
  3113. "branch-alias": {
  3114. "dev-main": "3.5-dev"
  3115. }
  3116. },
  3117. "autoload": {
  3118. "psr-4": {
  3119. "Symfony\\Contracts\\EventDispatcher\\": ""
  3120. }
  3121. },
  3122. "notification-url": "https://packagist.org/downloads/",
  3123. "license": [
  3124. "MIT"
  3125. ],
  3126. "authors": [
  3127. {
  3128. "name": "Nicolas Grekas",
  3129. "email": "p@tchwork.com"
  3130. },
  3131. {
  3132. "name": "Symfony Community",
  3133. "homepage": "https://symfony.com/contributors"
  3134. }
  3135. ],
  3136. "description": "Generic abstractions related to dispatching event",
  3137. "homepage": "https://symfony.com",
  3138. "keywords": [
  3139. "abstractions",
  3140. "contracts",
  3141. "decoupling",
  3142. "interfaces",
  3143. "interoperability",
  3144. "standards"
  3145. ],
  3146. "support": {
  3147. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  3148. },
  3149. "funding": [
  3150. {
  3151. "url": "https://symfony.com/sponsor",
  3152. "type": "custom"
  3153. },
  3154. {
  3155. "url": "https://github.com/fabpot",
  3156. "type": "github"
  3157. },
  3158. {
  3159. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3160. "type": "tidelift"
  3161. }
  3162. ],
  3163. "time": "2024-09-25T14:20:29+00:00"
  3164. },
  3165. {
  3166. "name": "symfony/expression-language",
  3167. "version": "v6.4.13",
  3168. "source": {
  3169. "type": "git",
  3170. "url": "https://github.com/symfony/expression-language.git",
  3171. "reference": "3524904fb026356a5230cd197f9a4e6a61e0e7df"
  3172. },
  3173. "dist": {
  3174. "type": "zip",
  3175. "url": "https://api.github.com/repos/symfony/expression-language/zipball/3524904fb026356a5230cd197f9a4e6a61e0e7df",
  3176. "reference": "3524904fb026356a5230cd197f9a4e6a61e0e7df",
  3177. "shasum": ""
  3178. },
  3179. "require": {
  3180. "php": ">=8.1",
  3181. "symfony/cache": "^5.4|^6.0|^7.0",
  3182. "symfony/deprecation-contracts": "^2.5|^3",
  3183. "symfony/service-contracts": "^2.5|^3"
  3184. },
  3185. "type": "library",
  3186. "autoload": {
  3187. "psr-4": {
  3188. "Symfony\\Component\\ExpressionLanguage\\": ""
  3189. },
  3190. "exclude-from-classmap": [
  3191. "/Tests/"
  3192. ]
  3193. },
  3194. "notification-url": "https://packagist.org/downloads/",
  3195. "license": [
  3196. "MIT"
  3197. ],
  3198. "authors": [
  3199. {
  3200. "name": "Fabien Potencier",
  3201. "email": "fabien@symfony.com"
  3202. },
  3203. {
  3204. "name": "Symfony Community",
  3205. "homepage": "https://symfony.com/contributors"
  3206. }
  3207. ],
  3208. "description": "Provides an engine that can compile and evaluate expressions",
  3209. "homepage": "https://symfony.com",
  3210. "support": {
  3211. "source": "https://github.com/symfony/expression-language/tree/v6.4.13"
  3212. },
  3213. "funding": [
  3214. {
  3215. "url": "https://symfony.com/sponsor",
  3216. "type": "custom"
  3217. },
  3218. {
  3219. "url": "https://github.com/fabpot",
  3220. "type": "github"
  3221. },
  3222. {
  3223. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3224. "type": "tidelift"
  3225. }
  3226. ],
  3227. "time": "2024-10-09T08:40:40+00:00"
  3228. },
  3229. {
  3230. "name": "symfony/filesystem",
  3231. "version": "v6.4.13",
  3232. "source": {
  3233. "type": "git",
  3234. "url": "https://github.com/symfony/filesystem.git",
  3235. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  3236. },
  3237. "dist": {
  3238. "type": "zip",
  3239. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  3240. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  3241. "shasum": ""
  3242. },
  3243. "require": {
  3244. "php": ">=8.1",
  3245. "symfony/polyfill-ctype": "~1.8",
  3246. "symfony/polyfill-mbstring": "~1.8"
  3247. },
  3248. "require-dev": {
  3249. "symfony/process": "^5.4|^6.4|^7.0"
  3250. },
  3251. "type": "library",
  3252. "autoload": {
  3253. "psr-4": {
  3254. "Symfony\\Component\\Filesystem\\": ""
  3255. },
  3256. "exclude-from-classmap": [
  3257. "/Tests/"
  3258. ]
  3259. },
  3260. "notification-url": "https://packagist.org/downloads/",
  3261. "license": [
  3262. "MIT"
  3263. ],
  3264. "authors": [
  3265. {
  3266. "name": "Fabien Potencier",
  3267. "email": "fabien@symfony.com"
  3268. },
  3269. {
  3270. "name": "Symfony Community",
  3271. "homepage": "https://symfony.com/contributors"
  3272. }
  3273. ],
  3274. "description": "Provides basic utilities for the filesystem",
  3275. "homepage": "https://symfony.com",
  3276. "support": {
  3277. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  3278. },
  3279. "funding": [
  3280. {
  3281. "url": "https://symfony.com/sponsor",
  3282. "type": "custom"
  3283. },
  3284. {
  3285. "url": "https://github.com/fabpot",
  3286. "type": "github"
  3287. },
  3288. {
  3289. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3290. "type": "tidelift"
  3291. }
  3292. ],
  3293. "time": "2024-10-25T15:07:50+00:00"
  3294. },
  3295. {
  3296. "name": "symfony/finder",
  3297. "version": "v6.4.17",
  3298. "source": {
  3299. "type": "git",
  3300. "url": "https://github.com/symfony/finder.git",
  3301. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7"
  3302. },
  3303. "dist": {
  3304. "type": "zip",
  3305. "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  3306. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  3307. "shasum": ""
  3308. },
  3309. "require": {
  3310. "php": ">=8.1"
  3311. },
  3312. "require-dev": {
  3313. "symfony/filesystem": "^6.0|^7.0"
  3314. },
  3315. "type": "library",
  3316. "autoload": {
  3317. "psr-4": {
  3318. "Symfony\\Component\\Finder\\": ""
  3319. },
  3320. "exclude-from-classmap": [
  3321. "/Tests/"
  3322. ]
  3323. },
  3324. "notification-url": "https://packagist.org/downloads/",
  3325. "license": [
  3326. "MIT"
  3327. ],
  3328. "authors": [
  3329. {
  3330. "name": "Fabien Potencier",
  3331. "email": "fabien@symfony.com"
  3332. },
  3333. {
  3334. "name": "Symfony Community",
  3335. "homepage": "https://symfony.com/contributors"
  3336. }
  3337. ],
  3338. "description": "Finds files and directories via an intuitive fluent interface",
  3339. "homepage": "https://symfony.com",
  3340. "support": {
  3341. "source": "https://github.com/symfony/finder/tree/v6.4.17"
  3342. },
  3343. "funding": [
  3344. {
  3345. "url": "https://symfony.com/sponsor",
  3346. "type": "custom"
  3347. },
  3348. {
  3349. "url": "https://github.com/fabpot",
  3350. "type": "github"
  3351. },
  3352. {
  3353. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3354. "type": "tidelift"
  3355. }
  3356. ],
  3357. "time": "2024-12-29T13:51:37+00:00"
  3358. },
  3359. {
  3360. "name": "symfony/flex",
  3361. "version": "v2.4.7",
  3362. "source": {
  3363. "type": "git",
  3364. "url": "https://github.com/symfony/flex.git",
  3365. "reference": "92f4fba342161ff36072bd3b8e0b3c6c23160402"
  3366. },
  3367. "dist": {
  3368. "type": "zip",
  3369. "url": "https://api.github.com/repos/symfony/flex/zipball/92f4fba342161ff36072bd3b8e0b3c6c23160402",
  3370. "reference": "92f4fba342161ff36072bd3b8e0b3c6c23160402",
  3371. "shasum": ""
  3372. },
  3373. "require": {
  3374. "composer-plugin-api": "^2.1",
  3375. "php": ">=8.0"
  3376. },
  3377. "conflict": {
  3378. "composer/semver": "<1.7.2"
  3379. },
  3380. "require-dev": {
  3381. "composer/composer": "^2.1",
  3382. "symfony/dotenv": "^5.4|^6.0",
  3383. "symfony/filesystem": "^5.4|^6.0",
  3384. "symfony/phpunit-bridge": "^5.4|^6.0",
  3385. "symfony/process": "^5.4|^6.0"
  3386. },
  3387. "type": "composer-plugin",
  3388. "extra": {
  3389. "class": "Symfony\\Flex\\Flex"
  3390. },
  3391. "autoload": {
  3392. "psr-4": {
  3393. "Symfony\\Flex\\": "src"
  3394. }
  3395. },
  3396. "notification-url": "https://packagist.org/downloads/",
  3397. "license": [
  3398. "MIT"
  3399. ],
  3400. "authors": [
  3401. {
  3402. "name": "Fabien Potencier",
  3403. "email": "fabien.potencier@gmail.com"
  3404. }
  3405. ],
  3406. "description": "Composer plugin for Symfony",
  3407. "support": {
  3408. "issues": "https://github.com/symfony/flex/issues",
  3409. "source": "https://github.com/symfony/flex/tree/v2.4.7"
  3410. },
  3411. "funding": [
  3412. {
  3413. "url": "https://symfony.com/sponsor",
  3414. "type": "custom"
  3415. },
  3416. {
  3417. "url": "https://github.com/fabpot",
  3418. "type": "github"
  3419. },
  3420. {
  3421. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3422. "type": "tidelift"
  3423. }
  3424. ],
  3425. "time": "2024-10-07T08:51:54+00:00"
  3426. },
  3427. {
  3428. "name": "symfony/form",
  3429. "version": "v6.4.13",
  3430. "source": {
  3431. "type": "git",
  3432. "url": "https://github.com/symfony/form.git",
  3433. "reference": "0fe17f90af23908ddc11dc23507db98e66572046"
  3434. },
  3435. "dist": {
  3436. "type": "zip",
  3437. "url": "https://api.github.com/repos/symfony/form/zipball/0fe17f90af23908ddc11dc23507db98e66572046",
  3438. "reference": "0fe17f90af23908ddc11dc23507db98e66572046",
  3439. "shasum": ""
  3440. },
  3441. "require": {
  3442. "php": ">=8.1",
  3443. "symfony/deprecation-contracts": "^2.5|^3",
  3444. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  3445. "symfony/options-resolver": "^5.4|^6.0|^7.0",
  3446. "symfony/polyfill-ctype": "~1.8",
  3447. "symfony/polyfill-intl-icu": "^1.21",
  3448. "symfony/polyfill-mbstring": "~1.0",
  3449. "symfony/property-access": "^5.4|^6.0|^7.0",
  3450. "symfony/service-contracts": "^2.5|^3"
  3451. },
  3452. "conflict": {
  3453. "symfony/console": "<5.4",
  3454. "symfony/dependency-injection": "<5.4",
  3455. "symfony/doctrine-bridge": "<5.4.21|>=6,<6.2.7",
  3456. "symfony/error-handler": "<5.4",
  3457. "symfony/framework-bundle": "<5.4",
  3458. "symfony/http-kernel": "<5.4",
  3459. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  3460. "symfony/translation-contracts": "<2.5",
  3461. "symfony/twig-bridge": "<6.3"
  3462. },
  3463. "require-dev": {
  3464. "doctrine/collections": "^1.0|^2.0",
  3465. "symfony/config": "^5.4|^6.0|^7.0",
  3466. "symfony/console": "^5.4|^6.0|^7.0",
  3467. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3468. "symfony/expression-language": "^5.4|^6.0|^7.0",
  3469. "symfony/html-sanitizer": "^6.1|^7.0",
  3470. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  3471. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  3472. "symfony/intl": "^5.4|^6.0|^7.0",
  3473. "symfony/security-core": "^6.2|^7.0",
  3474. "symfony/security-csrf": "^5.4|^6.0|^7.0",
  3475. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  3476. "symfony/uid": "^5.4|^6.0|^7.0",
  3477. "symfony/validator": "^5.4|^6.0|^7.0",
  3478. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  3479. },
  3480. "type": "library",
  3481. "autoload": {
  3482. "psr-4": {
  3483. "Symfony\\Component\\Form\\": ""
  3484. },
  3485. "exclude-from-classmap": [
  3486. "/Tests/"
  3487. ]
  3488. },
  3489. "notification-url": "https://packagist.org/downloads/",
  3490. "license": [
  3491. "MIT"
  3492. ],
  3493. "authors": [
  3494. {
  3495. "name": "Fabien Potencier",
  3496. "email": "fabien@symfony.com"
  3497. },
  3498. {
  3499. "name": "Symfony Community",
  3500. "homepage": "https://symfony.com/contributors"
  3501. }
  3502. ],
  3503. "description": "Allows to easily create, process and reuse HTML forms",
  3504. "homepage": "https://symfony.com",
  3505. "support": {
  3506. "source": "https://github.com/symfony/form/tree/v6.4.13"
  3507. },
  3508. "funding": [
  3509. {
  3510. "url": "https://symfony.com/sponsor",
  3511. "type": "custom"
  3512. },
  3513. {
  3514. "url": "https://github.com/fabpot",
  3515. "type": "github"
  3516. },
  3517. {
  3518. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3519. "type": "tidelift"
  3520. }
  3521. ],
  3522. "time": "2024-10-09T08:40:40+00:00"
  3523. },
  3524. {
  3525. "name": "symfony/framework-bundle",
  3526. "version": "v6.4.17",
  3527. "source": {
  3528. "type": "git",
  3529. "url": "https://github.com/symfony/framework-bundle.git",
  3530. "reference": "17d8ae2e7aa77154f942e8ac48849ac718b0963f"
  3531. },
  3532. "dist": {
  3533. "type": "zip",
  3534. "url": "https://api.github.com/repos/symfony/framework-bundle/zipball/17d8ae2e7aa77154f942e8ac48849ac718b0963f",
  3535. "reference": "17d8ae2e7aa77154f942e8ac48849ac718b0963f",
  3536. "shasum": ""
  3537. },
  3538. "require": {
  3539. "composer-runtime-api": ">=2.1",
  3540. "ext-xml": "*",
  3541. "php": ">=8.1",
  3542. "symfony/cache": "^5.4|^6.0|^7.0",
  3543. "symfony/config": "^6.1|^7.0",
  3544. "symfony/dependency-injection": "^6.4.12|^7.0",
  3545. "symfony/deprecation-contracts": "^2.5|^3",
  3546. "symfony/error-handler": "^6.1|^7.0",
  3547. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  3548. "symfony/filesystem": "^5.4|^6.0|^7.0",
  3549. "symfony/finder": "^5.4|^6.0|^7.0",
  3550. "symfony/http-foundation": "^6.4|^7.0",
  3551. "symfony/http-kernel": "^6.4",
  3552. "symfony/polyfill-mbstring": "~1.0",
  3553. "symfony/routing": "^6.4|^7.0"
  3554. },
  3555. "conflict": {
  3556. "doctrine/annotations": "<1.13.1",
  3557. "doctrine/persistence": "<1.3",
  3558. "phpdocumentor/reflection-docblock": "<3.2.2",
  3559. "phpdocumentor/type-resolver": "<1.4.0",
  3560. "symfony/asset": "<5.4",
  3561. "symfony/asset-mapper": "<6.4",
  3562. "symfony/clock": "<6.3",
  3563. "symfony/console": "<5.4|>=7.0",
  3564. "symfony/dom-crawler": "<6.4",
  3565. "symfony/dotenv": "<5.4",
  3566. "symfony/form": "<5.4",
  3567. "symfony/http-client": "<6.3",
  3568. "symfony/lock": "<5.4",
  3569. "symfony/mailer": "<5.4",
  3570. "symfony/messenger": "<6.3",
  3571. "symfony/mime": "<6.4",
  3572. "symfony/property-access": "<5.4",
  3573. "symfony/property-info": "<5.4",
  3574. "symfony/runtime": "<5.4.45|>=6.0,<6.4.13|>=7.0,<7.1.6",
  3575. "symfony/scheduler": "<6.4.4|>=7.0.0,<7.0.4",
  3576. "symfony/security-core": "<5.4",
  3577. "symfony/security-csrf": "<5.4",
  3578. "symfony/serializer": "<6.4",
  3579. "symfony/stopwatch": "<5.4",
  3580. "symfony/translation": "<6.4",
  3581. "symfony/twig-bridge": "<5.4",
  3582. "symfony/twig-bundle": "<5.4",
  3583. "symfony/validator": "<6.4",
  3584. "symfony/web-profiler-bundle": "<6.4",
  3585. "symfony/workflow": "<6.4"
  3586. },
  3587. "require-dev": {
  3588. "doctrine/annotations": "^1.13.1|^2",
  3589. "doctrine/persistence": "^1.3|^2|^3",
  3590. "dragonmantank/cron-expression": "^3.1",
  3591. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  3592. "seld/jsonlint": "^1.10",
  3593. "symfony/asset": "^5.4|^6.0|^7.0",
  3594. "symfony/asset-mapper": "^6.4|^7.0",
  3595. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  3596. "symfony/clock": "^6.2|^7.0",
  3597. "symfony/console": "^5.4.9|^6.0.9|^7.0",
  3598. "symfony/css-selector": "^5.4|^6.0|^7.0",
  3599. "symfony/dom-crawler": "^6.4|^7.0",
  3600. "symfony/dotenv": "^5.4|^6.0|^7.0",
  3601. "symfony/expression-language": "^5.4|^6.0|^7.0",
  3602. "symfony/form": "^5.4|^6.0|^7.0",
  3603. "symfony/html-sanitizer": "^6.1|^7.0",
  3604. "symfony/http-client": "^6.3|^7.0",
  3605. "symfony/lock": "^5.4|^6.0|^7.0",
  3606. "symfony/mailer": "^5.4|^6.0|^7.0",
  3607. "symfony/messenger": "^6.3|^7.0",
  3608. "symfony/mime": "^6.4|^7.0",
  3609. "symfony/notifier": "^5.4|^6.0|^7.0",
  3610. "symfony/polyfill-intl-icu": "~1.0",
  3611. "symfony/process": "^5.4|^6.0|^7.0",
  3612. "symfony/property-info": "^5.4|^6.0|^7.0",
  3613. "symfony/rate-limiter": "^5.4|^6.0|^7.0",
  3614. "symfony/scheduler": "^6.4.4|^7.0.4",
  3615. "symfony/security-bundle": "^5.4|^6.0|^7.0",
  3616. "symfony/semaphore": "^5.4|^6.0|^7.0",
  3617. "symfony/serializer": "^6.4|^7.0",
  3618. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  3619. "symfony/string": "^5.4|^6.0|^7.0",
  3620. "symfony/translation": "^6.4|^7.0",
  3621. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  3622. "symfony/uid": "^5.4|^6.0|^7.0",
  3623. "symfony/validator": "^6.4|^7.0",
  3624. "symfony/web-link": "^5.4|^6.0|^7.0",
  3625. "symfony/workflow": "^6.4|^7.0",
  3626. "symfony/yaml": "^5.4|^6.0|^7.0",
  3627. "twig/twig": "^2.10|^3.0.4"
  3628. },
  3629. "type": "symfony-bundle",
  3630. "autoload": {
  3631. "psr-4": {
  3632. "Symfony\\Bundle\\FrameworkBundle\\": ""
  3633. },
  3634. "exclude-from-classmap": [
  3635. "/Tests/"
  3636. ]
  3637. },
  3638. "notification-url": "https://packagist.org/downloads/",
  3639. "license": [
  3640. "MIT"
  3641. ],
  3642. "authors": [
  3643. {
  3644. "name": "Fabien Potencier",
  3645. "email": "fabien@symfony.com"
  3646. },
  3647. {
  3648. "name": "Symfony Community",
  3649. "homepage": "https://symfony.com/contributors"
  3650. }
  3651. ],
  3652. "description": "Provides a tight integration between Symfony components and the Symfony full-stack framework",
  3653. "homepage": "https://symfony.com",
  3654. "support": {
  3655. "source": "https://github.com/symfony/framework-bundle/tree/v6.4.17"
  3656. },
  3657. "funding": [
  3658. {
  3659. "url": "https://symfony.com/sponsor",
  3660. "type": "custom"
  3661. },
  3662. {
  3663. "url": "https://github.com/fabpot",
  3664. "type": "github"
  3665. },
  3666. {
  3667. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3668. "type": "tidelift"
  3669. }
  3670. ],
  3671. "time": "2024-12-19T14:08:41+00:00"
  3672. },
  3673. {
  3674. "name": "symfony/http-client",
  3675. "version": "v6.4.17",
  3676. "source": {
  3677. "type": "git",
  3678. "url": "https://github.com/symfony/http-client.git",
  3679. "reference": "88898d842eb29d7e1a903724c94e90a6ca9c0509"
  3680. },
  3681. "dist": {
  3682. "type": "zip",
  3683. "url": "https://api.github.com/repos/symfony/http-client/zipball/88898d842eb29d7e1a903724c94e90a6ca9c0509",
  3684. "reference": "88898d842eb29d7e1a903724c94e90a6ca9c0509",
  3685. "shasum": ""
  3686. },
  3687. "require": {
  3688. "php": ">=8.1",
  3689. "psr/log": "^1|^2|^3",
  3690. "symfony/deprecation-contracts": "^2.5|^3",
  3691. "symfony/http-client-contracts": "~3.4.4|^3.5.2",
  3692. "symfony/service-contracts": "^2.5|^3"
  3693. },
  3694. "conflict": {
  3695. "php-http/discovery": "<1.15",
  3696. "symfony/http-foundation": "<6.3"
  3697. },
  3698. "provide": {
  3699. "php-http/async-client-implementation": "*",
  3700. "php-http/client-implementation": "*",
  3701. "psr/http-client-implementation": "1.0",
  3702. "symfony/http-client-implementation": "3.0"
  3703. },
  3704. "require-dev": {
  3705. "amphp/amp": "^2.5",
  3706. "amphp/http-client": "^4.2.1",
  3707. "amphp/http-tunnel": "^1.0",
  3708. "amphp/socket": "^1.1",
  3709. "guzzlehttp/promises": "^1.4|^2.0",
  3710. "nyholm/psr7": "^1.0",
  3711. "php-http/httplug": "^1.0|^2.0",
  3712. "psr/http-client": "^1.0",
  3713. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3714. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  3715. "symfony/messenger": "^5.4|^6.0|^7.0",
  3716. "symfony/process": "^5.4|^6.0|^7.0",
  3717. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  3718. },
  3719. "type": "library",
  3720. "autoload": {
  3721. "psr-4": {
  3722. "Symfony\\Component\\HttpClient\\": ""
  3723. },
  3724. "exclude-from-classmap": [
  3725. "/Tests/"
  3726. ]
  3727. },
  3728. "notification-url": "https://packagist.org/downloads/",
  3729. "license": [
  3730. "MIT"
  3731. ],
  3732. "authors": [
  3733. {
  3734. "name": "Nicolas Grekas",
  3735. "email": "p@tchwork.com"
  3736. },
  3737. {
  3738. "name": "Symfony Community",
  3739. "homepage": "https://symfony.com/contributors"
  3740. }
  3741. ],
  3742. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  3743. "homepage": "https://symfony.com",
  3744. "keywords": [
  3745. "http"
  3746. ],
  3747. "support": {
  3748. "source": "https://github.com/symfony/http-client/tree/v6.4.17"
  3749. },
  3750. "funding": [
  3751. {
  3752. "url": "https://symfony.com/sponsor",
  3753. "type": "custom"
  3754. },
  3755. {
  3756. "url": "https://github.com/fabpot",
  3757. "type": "github"
  3758. },
  3759. {
  3760. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3761. "type": "tidelift"
  3762. }
  3763. ],
  3764. "time": "2024-12-18T12:18:31+00:00"
  3765. },
  3766. {
  3767. "name": "symfony/http-client-contracts",
  3768. "version": "v3.5.2",
  3769. "source": {
  3770. "type": "git",
  3771. "url": "https://github.com/symfony/http-client-contracts.git",
  3772. "reference": "ee8d807ab20fcb51267fdace50fbe3494c31e645"
  3773. },
  3774. "dist": {
  3775. "type": "zip",
  3776. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ee8d807ab20fcb51267fdace50fbe3494c31e645",
  3777. "reference": "ee8d807ab20fcb51267fdace50fbe3494c31e645",
  3778. "shasum": ""
  3779. },
  3780. "require": {
  3781. "php": ">=8.1"
  3782. },
  3783. "type": "library",
  3784. "extra": {
  3785. "thanks": {
  3786. "url": "https://github.com/symfony/contracts",
  3787. "name": "symfony/contracts"
  3788. },
  3789. "branch-alias": {
  3790. "dev-main": "3.5-dev"
  3791. }
  3792. },
  3793. "autoload": {
  3794. "psr-4": {
  3795. "Symfony\\Contracts\\HttpClient\\": ""
  3796. },
  3797. "exclude-from-classmap": [
  3798. "/Test/"
  3799. ]
  3800. },
  3801. "notification-url": "https://packagist.org/downloads/",
  3802. "license": [
  3803. "MIT"
  3804. ],
  3805. "authors": [
  3806. {
  3807. "name": "Nicolas Grekas",
  3808. "email": "p@tchwork.com"
  3809. },
  3810. {
  3811. "name": "Symfony Community",
  3812. "homepage": "https://symfony.com/contributors"
  3813. }
  3814. ],
  3815. "description": "Generic abstractions related to HTTP clients",
  3816. "homepage": "https://symfony.com",
  3817. "keywords": [
  3818. "abstractions",
  3819. "contracts",
  3820. "decoupling",
  3821. "interfaces",
  3822. "interoperability",
  3823. "standards"
  3824. ],
  3825. "support": {
  3826. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.2"
  3827. },
  3828. "funding": [
  3829. {
  3830. "url": "https://symfony.com/sponsor",
  3831. "type": "custom"
  3832. },
  3833. {
  3834. "url": "https://github.com/fabpot",
  3835. "type": "github"
  3836. },
  3837. {
  3838. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3839. "type": "tidelift"
  3840. }
  3841. ],
  3842. "time": "2024-12-07T08:49:48+00:00"
  3843. },
  3844. {
  3845. "name": "symfony/http-foundation",
  3846. "version": "v6.4.16",
  3847. "source": {
  3848. "type": "git",
  3849. "url": "https://github.com/symfony/http-foundation.git",
  3850. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57"
  3851. },
  3852. "dist": {
  3853. "type": "zip",
  3854. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  3855. "reference": "431771b7a6f662f1575b3cfc8fd7617aa9864d57",
  3856. "shasum": ""
  3857. },
  3858. "require": {
  3859. "php": ">=8.1",
  3860. "symfony/deprecation-contracts": "^2.5|^3",
  3861. "symfony/polyfill-mbstring": "~1.1",
  3862. "symfony/polyfill-php83": "^1.27"
  3863. },
  3864. "conflict": {
  3865. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  3866. },
  3867. "require-dev": {
  3868. "doctrine/dbal": "^2.13.1|^3|^4",
  3869. "predis/predis": "^1.1|^2.0",
  3870. "symfony/cache": "^6.4.12|^7.1.5",
  3871. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  3872. "symfony/expression-language": "^5.4|^6.0|^7.0",
  3873. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  3874. "symfony/mime": "^5.4|^6.0|^7.0",
  3875. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  3876. },
  3877. "type": "library",
  3878. "autoload": {
  3879. "psr-4": {
  3880. "Symfony\\Component\\HttpFoundation\\": ""
  3881. },
  3882. "exclude-from-classmap": [
  3883. "/Tests/"
  3884. ]
  3885. },
  3886. "notification-url": "https://packagist.org/downloads/",
  3887. "license": [
  3888. "MIT"
  3889. ],
  3890. "authors": [
  3891. {
  3892. "name": "Fabien Potencier",
  3893. "email": "fabien@symfony.com"
  3894. },
  3895. {
  3896. "name": "Symfony Community",
  3897. "homepage": "https://symfony.com/contributors"
  3898. }
  3899. ],
  3900. "description": "Defines an object-oriented layer for the HTTP specification",
  3901. "homepage": "https://symfony.com",
  3902. "support": {
  3903. "source": "https://github.com/symfony/http-foundation/tree/v6.4.16"
  3904. },
  3905. "funding": [
  3906. {
  3907. "url": "https://symfony.com/sponsor",
  3908. "type": "custom"
  3909. },
  3910. {
  3911. "url": "https://github.com/fabpot",
  3912. "type": "github"
  3913. },
  3914. {
  3915. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3916. "type": "tidelift"
  3917. }
  3918. ],
  3919. "time": "2024-11-13T18:58:10+00:00"
  3920. },
  3921. {
  3922. "name": "symfony/http-kernel",
  3923. "version": "v6.4.17",
  3924. "source": {
  3925. "type": "git",
  3926. "url": "https://github.com/symfony/http-kernel.git",
  3927. "reference": "c5647393c5ce11833d13e4b70fff4b571d4ac710"
  3928. },
  3929. "dist": {
  3930. "type": "zip",
  3931. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/c5647393c5ce11833d13e4b70fff4b571d4ac710",
  3932. "reference": "c5647393c5ce11833d13e4b70fff4b571d4ac710",
  3933. "shasum": ""
  3934. },
  3935. "require": {
  3936. "php": ">=8.1",
  3937. "psr/log": "^1|^2|^3",
  3938. "symfony/deprecation-contracts": "^2.5|^3",
  3939. "symfony/error-handler": "^6.4|^7.0",
  3940. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  3941. "symfony/http-foundation": "^6.4|^7.0",
  3942. "symfony/polyfill-ctype": "^1.8"
  3943. },
  3944. "conflict": {
  3945. "symfony/browser-kit": "<5.4",
  3946. "symfony/cache": "<5.4",
  3947. "symfony/config": "<6.1",
  3948. "symfony/console": "<5.4",
  3949. "symfony/dependency-injection": "<6.4",
  3950. "symfony/doctrine-bridge": "<5.4",
  3951. "symfony/form": "<5.4",
  3952. "symfony/http-client": "<5.4",
  3953. "symfony/http-client-contracts": "<2.5",
  3954. "symfony/mailer": "<5.4",
  3955. "symfony/messenger": "<5.4",
  3956. "symfony/translation": "<5.4",
  3957. "symfony/translation-contracts": "<2.5",
  3958. "symfony/twig-bridge": "<5.4",
  3959. "symfony/validator": "<6.4",
  3960. "symfony/var-dumper": "<6.3",
  3961. "twig/twig": "<2.13"
  3962. },
  3963. "provide": {
  3964. "psr/log-implementation": "1.0|2.0|3.0"
  3965. },
  3966. "require-dev": {
  3967. "psr/cache": "^1.0|^2.0|^3.0",
  3968. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  3969. "symfony/clock": "^6.2|^7.0",
  3970. "symfony/config": "^6.1|^7.0",
  3971. "symfony/console": "^5.4|^6.0|^7.0",
  3972. "symfony/css-selector": "^5.4|^6.0|^7.0",
  3973. "symfony/dependency-injection": "^6.4|^7.0",
  3974. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  3975. "symfony/expression-language": "^5.4|^6.0|^7.0",
  3976. "symfony/finder": "^5.4|^6.0|^7.0",
  3977. "symfony/http-client-contracts": "^2.5|^3",
  3978. "symfony/process": "^5.4|^6.0|^7.0",
  3979. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  3980. "symfony/routing": "^5.4|^6.0|^7.0",
  3981. "symfony/serializer": "^6.4.4|^7.0.4",
  3982. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  3983. "symfony/translation": "^5.4|^6.0|^7.0",
  3984. "symfony/translation-contracts": "^2.5|^3",
  3985. "symfony/uid": "^5.4|^6.0|^7.0",
  3986. "symfony/validator": "^6.4|^7.0",
  3987. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  3988. "symfony/var-exporter": "^6.2|^7.0",
  3989. "twig/twig": "^2.13|^3.0.4"
  3990. },
  3991. "type": "library",
  3992. "autoload": {
  3993. "psr-4": {
  3994. "Symfony\\Component\\HttpKernel\\": ""
  3995. },
  3996. "exclude-from-classmap": [
  3997. "/Tests/"
  3998. ]
  3999. },
  4000. "notification-url": "https://packagist.org/downloads/",
  4001. "license": [
  4002. "MIT"
  4003. ],
  4004. "authors": [
  4005. {
  4006. "name": "Fabien Potencier",
  4007. "email": "fabien@symfony.com"
  4008. },
  4009. {
  4010. "name": "Symfony Community",
  4011. "homepage": "https://symfony.com/contributors"
  4012. }
  4013. ],
  4014. "description": "Provides a structured process for converting a Request into a Response",
  4015. "homepage": "https://symfony.com",
  4016. "support": {
  4017. "source": "https://github.com/symfony/http-kernel/tree/v6.4.17"
  4018. },
  4019. "funding": [
  4020. {
  4021. "url": "https://symfony.com/sponsor",
  4022. "type": "custom"
  4023. },
  4024. {
  4025. "url": "https://github.com/fabpot",
  4026. "type": "github"
  4027. },
  4028. {
  4029. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4030. "type": "tidelift"
  4031. }
  4032. ],
  4033. "time": "2024-12-31T14:49:31+00:00"
  4034. },
  4035. {
  4036. "name": "symfony/intl",
  4037. "version": "v6.4.15",
  4038. "source": {
  4039. "type": "git",
  4040. "url": "https://github.com/symfony/intl.git",
  4041. "reference": "b1d5e8d82615b60f229216edfee0b59e2ef66da6"
  4042. },
  4043. "dist": {
  4044. "type": "zip",
  4045. "url": "https://api.github.com/repos/symfony/intl/zipball/b1d5e8d82615b60f229216edfee0b59e2ef66da6",
  4046. "reference": "b1d5e8d82615b60f229216edfee0b59e2ef66da6",
  4047. "shasum": ""
  4048. },
  4049. "require": {
  4050. "php": ">=8.1"
  4051. },
  4052. "require-dev": {
  4053. "symfony/filesystem": "^5.4|^6.0|^7.0",
  4054. "symfony/finder": "^5.4|^6.0|^7.0",
  4055. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  4056. },
  4057. "type": "library",
  4058. "autoload": {
  4059. "psr-4": {
  4060. "Symfony\\Component\\Intl\\": ""
  4061. },
  4062. "exclude-from-classmap": [
  4063. "/Tests/",
  4064. "/Resources/data/"
  4065. ]
  4066. },
  4067. "notification-url": "https://packagist.org/downloads/",
  4068. "license": [
  4069. "MIT"
  4070. ],
  4071. "authors": [
  4072. {
  4073. "name": "Bernhard Schussek",
  4074. "email": "bschussek@gmail.com"
  4075. },
  4076. {
  4077. "name": "Eriksen Costa",
  4078. "email": "eriksen.costa@infranology.com.br"
  4079. },
  4080. {
  4081. "name": "Igor Wiedler",
  4082. "email": "igor@wiedler.ch"
  4083. },
  4084. {
  4085. "name": "Symfony Community",
  4086. "homepage": "https://symfony.com/contributors"
  4087. }
  4088. ],
  4089. "description": "Provides access to the localization data of the ICU library",
  4090. "homepage": "https://symfony.com",
  4091. "keywords": [
  4092. "i18n",
  4093. "icu",
  4094. "internationalization",
  4095. "intl",
  4096. "l10n",
  4097. "localization"
  4098. ],
  4099. "support": {
  4100. "source": "https://github.com/symfony/intl/tree/v6.4.15"
  4101. },
  4102. "funding": [
  4103. {
  4104. "url": "https://symfony.com/sponsor",
  4105. "type": "custom"
  4106. },
  4107. {
  4108. "url": "https://github.com/fabpot",
  4109. "type": "github"
  4110. },
  4111. {
  4112. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4113. "type": "tidelift"
  4114. }
  4115. ],
  4116. "time": "2024-11-08T15:28:48+00:00"
  4117. },
  4118. {
  4119. "name": "symfony/mailer",
  4120. "version": "v6.4.13",
  4121. "source": {
  4122. "type": "git",
  4123. "url": "https://github.com/symfony/mailer.git",
  4124. "reference": "c2f7e0d8d7ac8fe25faccf5d8cac462805db2663"
  4125. },
  4126. "dist": {
  4127. "type": "zip",
  4128. "url": "https://api.github.com/repos/symfony/mailer/zipball/c2f7e0d8d7ac8fe25faccf5d8cac462805db2663",
  4129. "reference": "c2f7e0d8d7ac8fe25faccf5d8cac462805db2663",
  4130. "shasum": ""
  4131. },
  4132. "require": {
  4133. "egulias/email-validator": "^2.1.10|^3|^4",
  4134. "php": ">=8.1",
  4135. "psr/event-dispatcher": "^1",
  4136. "psr/log": "^1|^2|^3",
  4137. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  4138. "symfony/mime": "^6.2|^7.0",
  4139. "symfony/service-contracts": "^2.5|^3"
  4140. },
  4141. "conflict": {
  4142. "symfony/http-client-contracts": "<2.5",
  4143. "symfony/http-kernel": "<5.4",
  4144. "symfony/messenger": "<6.2",
  4145. "symfony/mime": "<6.2",
  4146. "symfony/twig-bridge": "<6.2.1"
  4147. },
  4148. "require-dev": {
  4149. "symfony/console": "^5.4|^6.0|^7.0",
  4150. "symfony/http-client": "^5.4|^6.0|^7.0",
  4151. "symfony/messenger": "^6.2|^7.0",
  4152. "symfony/twig-bridge": "^6.2|^7.0"
  4153. },
  4154. "type": "library",
  4155. "autoload": {
  4156. "psr-4": {
  4157. "Symfony\\Component\\Mailer\\": ""
  4158. },
  4159. "exclude-from-classmap": [
  4160. "/Tests/"
  4161. ]
  4162. },
  4163. "notification-url": "https://packagist.org/downloads/",
  4164. "license": [
  4165. "MIT"
  4166. ],
  4167. "authors": [
  4168. {
  4169. "name": "Fabien Potencier",
  4170. "email": "fabien@symfony.com"
  4171. },
  4172. {
  4173. "name": "Symfony Community",
  4174. "homepage": "https://symfony.com/contributors"
  4175. }
  4176. ],
  4177. "description": "Helps sending emails",
  4178. "homepage": "https://symfony.com",
  4179. "support": {
  4180. "source": "https://github.com/symfony/mailer/tree/v6.4.13"
  4181. },
  4182. "funding": [
  4183. {
  4184. "url": "https://symfony.com/sponsor",
  4185. "type": "custom"
  4186. },
  4187. {
  4188. "url": "https://github.com/fabpot",
  4189. "type": "github"
  4190. },
  4191. {
  4192. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4193. "type": "tidelift"
  4194. }
  4195. ],
  4196. "time": "2024-09-25T14:18:03+00:00"
  4197. },
  4198. {
  4199. "name": "symfony/messenger",
  4200. "version": "v6.4.16",
  4201. "source": {
  4202. "type": "git",
  4203. "url": "https://github.com/symfony/messenger.git",
  4204. "reference": "b20092876c3d23c172a6469f9c0d7ef1de445257"
  4205. },
  4206. "dist": {
  4207. "type": "zip",
  4208. "url": "https://api.github.com/repos/symfony/messenger/zipball/b20092876c3d23c172a6469f9c0d7ef1de445257",
  4209. "reference": "b20092876c3d23c172a6469f9c0d7ef1de445257",
  4210. "shasum": ""
  4211. },
  4212. "require": {
  4213. "php": ">=8.1",
  4214. "psr/log": "^1|^2|^3",
  4215. "symfony/clock": "^6.3|^7.0",
  4216. "symfony/deprecation-contracts": "^2.5|^3"
  4217. },
  4218. "conflict": {
  4219. "symfony/console": "<6.3",
  4220. "symfony/event-dispatcher": "<5.4",
  4221. "symfony/event-dispatcher-contracts": "<2.5",
  4222. "symfony/framework-bundle": "<5.4",
  4223. "symfony/http-kernel": "<5.4",
  4224. "symfony/serializer": "<5.4"
  4225. },
  4226. "require-dev": {
  4227. "psr/cache": "^1.0|^2.0|^3.0",
  4228. "symfony/console": "^6.3|^7.0",
  4229. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4230. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  4231. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  4232. "symfony/process": "^5.4|^6.0|^7.0",
  4233. "symfony/property-access": "^5.4|^6.0|^7.0",
  4234. "symfony/rate-limiter": "^5.4|^6.0|^7.0",
  4235. "symfony/routing": "^5.4|^6.0|^7.0",
  4236. "symfony/serializer": "^5.4|^6.0|^7.0",
  4237. "symfony/service-contracts": "^2.5|^3",
  4238. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  4239. "symfony/validator": "^5.4|^6.0|^7.0"
  4240. },
  4241. "type": "library",
  4242. "autoload": {
  4243. "psr-4": {
  4244. "Symfony\\Component\\Messenger\\": ""
  4245. },
  4246. "exclude-from-classmap": [
  4247. "/Tests/"
  4248. ]
  4249. },
  4250. "notification-url": "https://packagist.org/downloads/",
  4251. "license": [
  4252. "MIT"
  4253. ],
  4254. "authors": [
  4255. {
  4256. "name": "Samuel Roze",
  4257. "email": "samuel.roze@gmail.com"
  4258. },
  4259. {
  4260. "name": "Symfony Community",
  4261. "homepage": "https://symfony.com/contributors"
  4262. }
  4263. ],
  4264. "description": "Helps applications send and receive messages to/from other applications or via message queues",
  4265. "homepage": "https://symfony.com",
  4266. "support": {
  4267. "source": "https://github.com/symfony/messenger/tree/v6.4.16"
  4268. },
  4269. "funding": [
  4270. {
  4271. "url": "https://symfony.com/sponsor",
  4272. "type": "custom"
  4273. },
  4274. {
  4275. "url": "https://github.com/fabpot",
  4276. "type": "github"
  4277. },
  4278. {
  4279. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4280. "type": "tidelift"
  4281. }
  4282. ],
  4283. "time": "2024-11-25T02:02:03+00:00"
  4284. },
  4285. {
  4286. "name": "symfony/mime",
  4287. "version": "v6.4.17",
  4288. "source": {
  4289. "type": "git",
  4290. "url": "https://github.com/symfony/mime.git",
  4291. "reference": "ea87c8850a54ff039d3e0ab4ae5586dd4e6c0232"
  4292. },
  4293. "dist": {
  4294. "type": "zip",
  4295. "url": "https://api.github.com/repos/symfony/mime/zipball/ea87c8850a54ff039d3e0ab4ae5586dd4e6c0232",
  4296. "reference": "ea87c8850a54ff039d3e0ab4ae5586dd4e6c0232",
  4297. "shasum": ""
  4298. },
  4299. "require": {
  4300. "php": ">=8.1",
  4301. "symfony/deprecation-contracts": "^2.5|^3",
  4302. "symfony/polyfill-intl-idn": "^1.10",
  4303. "symfony/polyfill-mbstring": "^1.0"
  4304. },
  4305. "conflict": {
  4306. "egulias/email-validator": "~3.0.0",
  4307. "phpdocumentor/reflection-docblock": "<3.2.2",
  4308. "phpdocumentor/type-resolver": "<1.4.0",
  4309. "symfony/mailer": "<5.4",
  4310. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  4311. },
  4312. "require-dev": {
  4313. "egulias/email-validator": "^2.1.10|^3.1|^4",
  4314. "league/html-to-markdown": "^5.0",
  4315. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  4316. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4317. "symfony/process": "^5.4|^6.4|^7.0",
  4318. "symfony/property-access": "^5.4|^6.0|^7.0",
  4319. "symfony/property-info": "^5.4|^6.0|^7.0",
  4320. "symfony/serializer": "^6.4.3|^7.0.3"
  4321. },
  4322. "type": "library",
  4323. "autoload": {
  4324. "psr-4": {
  4325. "Symfony\\Component\\Mime\\": ""
  4326. },
  4327. "exclude-from-classmap": [
  4328. "/Tests/"
  4329. ]
  4330. },
  4331. "notification-url": "https://packagist.org/downloads/",
  4332. "license": [
  4333. "MIT"
  4334. ],
  4335. "authors": [
  4336. {
  4337. "name": "Fabien Potencier",
  4338. "email": "fabien@symfony.com"
  4339. },
  4340. {
  4341. "name": "Symfony Community",
  4342. "homepage": "https://symfony.com/contributors"
  4343. }
  4344. ],
  4345. "description": "Allows manipulating MIME messages",
  4346. "homepage": "https://symfony.com",
  4347. "keywords": [
  4348. "mime",
  4349. "mime-type"
  4350. ],
  4351. "support": {
  4352. "source": "https://github.com/symfony/mime/tree/v6.4.17"
  4353. },
  4354. "funding": [
  4355. {
  4356. "url": "https://symfony.com/sponsor",
  4357. "type": "custom"
  4358. },
  4359. {
  4360. "url": "https://github.com/fabpot",
  4361. "type": "github"
  4362. },
  4363. {
  4364. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4365. "type": "tidelift"
  4366. }
  4367. ],
  4368. "time": "2024-12-02T11:09:41+00:00"
  4369. },
  4370. {
  4371. "name": "symfony/monolog-bridge",
  4372. "version": "v6.4.13",
  4373. "source": {
  4374. "type": "git",
  4375. "url": "https://github.com/symfony/monolog-bridge.git",
  4376. "reference": "9d14621e59f22c2b6d030d92d37ffe5ae1e60452"
  4377. },
  4378. "dist": {
  4379. "type": "zip",
  4380. "url": "https://api.github.com/repos/symfony/monolog-bridge/zipball/9d14621e59f22c2b6d030d92d37ffe5ae1e60452",
  4381. "reference": "9d14621e59f22c2b6d030d92d37ffe5ae1e60452",
  4382. "shasum": ""
  4383. },
  4384. "require": {
  4385. "monolog/monolog": "^1.25.1|^2|^3",
  4386. "php": ">=8.1",
  4387. "symfony/deprecation-contracts": "^2.5|^3",
  4388. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  4389. "symfony/service-contracts": "^2.5|^3"
  4390. },
  4391. "conflict": {
  4392. "symfony/console": "<5.4",
  4393. "symfony/http-foundation": "<5.4",
  4394. "symfony/security-core": "<5.4"
  4395. },
  4396. "require-dev": {
  4397. "symfony/console": "^5.4|^6.0|^7.0",
  4398. "symfony/http-client": "^5.4|^6.0|^7.0",
  4399. "symfony/mailer": "^5.4|^6.0|^7.0",
  4400. "symfony/messenger": "^5.4|^6.0|^7.0",
  4401. "symfony/mime": "^5.4|^6.0|^7.0",
  4402. "symfony/security-core": "^5.4|^6.0|^7.0",
  4403. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  4404. },
  4405. "type": "symfony-bridge",
  4406. "autoload": {
  4407. "psr-4": {
  4408. "Symfony\\Bridge\\Monolog\\": ""
  4409. },
  4410. "exclude-from-classmap": [
  4411. "/Tests/"
  4412. ]
  4413. },
  4414. "notification-url": "https://packagist.org/downloads/",
  4415. "license": [
  4416. "MIT"
  4417. ],
  4418. "authors": [
  4419. {
  4420. "name": "Fabien Potencier",
  4421. "email": "fabien@symfony.com"
  4422. },
  4423. {
  4424. "name": "Symfony Community",
  4425. "homepage": "https://symfony.com/contributors"
  4426. }
  4427. ],
  4428. "description": "Provides integration for Monolog with various Symfony components",
  4429. "homepage": "https://symfony.com",
  4430. "support": {
  4431. "source": "https://github.com/symfony/monolog-bridge/tree/v6.4.13"
  4432. },
  4433. "funding": [
  4434. {
  4435. "url": "https://symfony.com/sponsor",
  4436. "type": "custom"
  4437. },
  4438. {
  4439. "url": "https://github.com/fabpot",
  4440. "type": "github"
  4441. },
  4442. {
  4443. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4444. "type": "tidelift"
  4445. }
  4446. ],
  4447. "time": "2024-10-14T08:49:08+00:00"
  4448. },
  4449. {
  4450. "name": "symfony/monolog-bundle",
  4451. "version": "v3.10.0",
  4452. "source": {
  4453. "type": "git",
  4454. "url": "https://github.com/symfony/monolog-bundle.git",
  4455. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181"
  4456. },
  4457. "dist": {
  4458. "type": "zip",
  4459. "url": "https://api.github.com/repos/symfony/monolog-bundle/zipball/414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  4460. "reference": "414f951743f4aa1fd0f5bf6a0e9c16af3fe7f181",
  4461. "shasum": ""
  4462. },
  4463. "require": {
  4464. "monolog/monolog": "^1.25.1 || ^2.0 || ^3.0",
  4465. "php": ">=7.2.5",
  4466. "symfony/config": "^5.4 || ^6.0 || ^7.0",
  4467. "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0",
  4468. "symfony/http-kernel": "^5.4 || ^6.0 || ^7.0",
  4469. "symfony/monolog-bridge": "^5.4 || ^6.0 || ^7.0"
  4470. },
  4471. "require-dev": {
  4472. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  4473. "symfony/phpunit-bridge": "^6.3 || ^7.0",
  4474. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  4475. },
  4476. "type": "symfony-bundle",
  4477. "extra": {
  4478. "branch-alias": {
  4479. "dev-master": "3.x-dev"
  4480. }
  4481. },
  4482. "autoload": {
  4483. "psr-4": {
  4484. "Symfony\\Bundle\\MonologBundle\\": ""
  4485. },
  4486. "exclude-from-classmap": [
  4487. "/Tests/"
  4488. ]
  4489. },
  4490. "notification-url": "https://packagist.org/downloads/",
  4491. "license": [
  4492. "MIT"
  4493. ],
  4494. "authors": [
  4495. {
  4496. "name": "Fabien Potencier",
  4497. "email": "fabien@symfony.com"
  4498. },
  4499. {
  4500. "name": "Symfony Community",
  4501. "homepage": "https://symfony.com/contributors"
  4502. }
  4503. ],
  4504. "description": "Symfony MonologBundle",
  4505. "homepage": "https://symfony.com",
  4506. "keywords": [
  4507. "log",
  4508. "logging"
  4509. ],
  4510. "support": {
  4511. "issues": "https://github.com/symfony/monolog-bundle/issues",
  4512. "source": "https://github.com/symfony/monolog-bundle/tree/v3.10.0"
  4513. },
  4514. "funding": [
  4515. {
  4516. "url": "https://symfony.com/sponsor",
  4517. "type": "custom"
  4518. },
  4519. {
  4520. "url": "https://github.com/fabpot",
  4521. "type": "github"
  4522. },
  4523. {
  4524. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4525. "type": "tidelift"
  4526. }
  4527. ],
  4528. "time": "2023-11-06T17:08:13+00:00"
  4529. },
  4530. {
  4531. "name": "symfony/notifier",
  4532. "version": "v6.4.13",
  4533. "source": {
  4534. "type": "git",
  4535. "url": "https://github.com/symfony/notifier.git",
  4536. "reference": "c46321b53391088861bf627cd9e24873d216cf00"
  4537. },
  4538. "dist": {
  4539. "type": "zip",
  4540. "url": "https://api.github.com/repos/symfony/notifier/zipball/c46321b53391088861bf627cd9e24873d216cf00",
  4541. "reference": "c46321b53391088861bf627cd9e24873d216cf00",
  4542. "shasum": ""
  4543. },
  4544. "require": {
  4545. "php": ">=8.1",
  4546. "psr/log": "^1|^2|^3"
  4547. },
  4548. "conflict": {
  4549. "symfony/event-dispatcher": "<5.4",
  4550. "symfony/event-dispatcher-contracts": "<2.5",
  4551. "symfony/http-client-contracts": "<2.5",
  4552. "symfony/http-kernel": "<5.4"
  4553. },
  4554. "require-dev": {
  4555. "symfony/event-dispatcher-contracts": "^2.5|^3",
  4556. "symfony/http-client-contracts": "^2.5|^3",
  4557. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  4558. "symfony/messenger": "^5.4|^6.0|^7.0"
  4559. },
  4560. "type": "library",
  4561. "autoload": {
  4562. "psr-4": {
  4563. "Symfony\\Component\\Notifier\\": ""
  4564. },
  4565. "exclude-from-classmap": [
  4566. "/Tests/"
  4567. ]
  4568. },
  4569. "notification-url": "https://packagist.org/downloads/",
  4570. "license": [
  4571. "MIT"
  4572. ],
  4573. "authors": [
  4574. {
  4575. "name": "Fabien Potencier",
  4576. "email": "fabien@symfony.com"
  4577. },
  4578. {
  4579. "name": "Symfony Community",
  4580. "homepage": "https://symfony.com/contributors"
  4581. }
  4582. ],
  4583. "description": "Sends notifications via one or more channels (email, SMS, ...)",
  4584. "homepage": "https://symfony.com",
  4585. "keywords": [
  4586. "notification",
  4587. "notifier"
  4588. ],
  4589. "support": {
  4590. "source": "https://github.com/symfony/notifier/tree/v6.4.13"
  4591. },
  4592. "funding": [
  4593. {
  4594. "url": "https://symfony.com/sponsor",
  4595. "type": "custom"
  4596. },
  4597. {
  4598. "url": "https://github.com/fabpot",
  4599. "type": "github"
  4600. },
  4601. {
  4602. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4603. "type": "tidelift"
  4604. }
  4605. ],
  4606. "time": "2024-09-25T14:18:03+00:00"
  4607. },
  4608. {
  4609. "name": "symfony/options-resolver",
  4610. "version": "v6.4.16",
  4611. "source": {
  4612. "type": "git",
  4613. "url": "https://github.com/symfony/options-resolver.git",
  4614. "reference": "368128ad168f20e22c32159b9f761e456cec0c78"
  4615. },
  4616. "dist": {
  4617. "type": "zip",
  4618. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/368128ad168f20e22c32159b9f761e456cec0c78",
  4619. "reference": "368128ad168f20e22c32159b9f761e456cec0c78",
  4620. "shasum": ""
  4621. },
  4622. "require": {
  4623. "php": ">=8.1",
  4624. "symfony/deprecation-contracts": "^2.5|^3"
  4625. },
  4626. "type": "library",
  4627. "autoload": {
  4628. "psr-4": {
  4629. "Symfony\\Component\\OptionsResolver\\": ""
  4630. },
  4631. "exclude-from-classmap": [
  4632. "/Tests/"
  4633. ]
  4634. },
  4635. "notification-url": "https://packagist.org/downloads/",
  4636. "license": [
  4637. "MIT"
  4638. ],
  4639. "authors": [
  4640. {
  4641. "name": "Fabien Potencier",
  4642. "email": "fabien@symfony.com"
  4643. },
  4644. {
  4645. "name": "Symfony Community",
  4646. "homepage": "https://symfony.com/contributors"
  4647. }
  4648. ],
  4649. "description": "Provides an improved replacement for the array_replace PHP function",
  4650. "homepage": "https://symfony.com",
  4651. "keywords": [
  4652. "config",
  4653. "configuration",
  4654. "options"
  4655. ],
  4656. "support": {
  4657. "source": "https://github.com/symfony/options-resolver/tree/v6.4.16"
  4658. },
  4659. "funding": [
  4660. {
  4661. "url": "https://symfony.com/sponsor",
  4662. "type": "custom"
  4663. },
  4664. {
  4665. "url": "https://github.com/fabpot",
  4666. "type": "github"
  4667. },
  4668. {
  4669. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4670. "type": "tidelift"
  4671. }
  4672. ],
  4673. "time": "2024-11-20T10:57:02+00:00"
  4674. },
  4675. {
  4676. "name": "symfony/password-hasher",
  4677. "version": "v6.4.13",
  4678. "source": {
  4679. "type": "git",
  4680. "url": "https://github.com/symfony/password-hasher.git",
  4681. "reference": "e97a1b31f60b8bdfc1fdedab4398538da9441d47"
  4682. },
  4683. "dist": {
  4684. "type": "zip",
  4685. "url": "https://api.github.com/repos/symfony/password-hasher/zipball/e97a1b31f60b8bdfc1fdedab4398538da9441d47",
  4686. "reference": "e97a1b31f60b8bdfc1fdedab4398538da9441d47",
  4687. "shasum": ""
  4688. },
  4689. "require": {
  4690. "php": ">=8.1"
  4691. },
  4692. "conflict": {
  4693. "symfony/security-core": "<5.4"
  4694. },
  4695. "require-dev": {
  4696. "symfony/console": "^5.4|^6.0|^7.0",
  4697. "symfony/security-core": "^5.4|^6.0|^7.0"
  4698. },
  4699. "type": "library",
  4700. "autoload": {
  4701. "psr-4": {
  4702. "Symfony\\Component\\PasswordHasher\\": ""
  4703. },
  4704. "exclude-from-classmap": [
  4705. "/Tests/"
  4706. ]
  4707. },
  4708. "notification-url": "https://packagist.org/downloads/",
  4709. "license": [
  4710. "MIT"
  4711. ],
  4712. "authors": [
  4713. {
  4714. "name": "Robin Chalas",
  4715. "email": "robin.chalas@gmail.com"
  4716. },
  4717. {
  4718. "name": "Symfony Community",
  4719. "homepage": "https://symfony.com/contributors"
  4720. }
  4721. ],
  4722. "description": "Provides password hashing utilities",
  4723. "homepage": "https://symfony.com",
  4724. "keywords": [
  4725. "hashing",
  4726. "password"
  4727. ],
  4728. "support": {
  4729. "source": "https://github.com/symfony/password-hasher/tree/v6.4.13"
  4730. },
  4731. "funding": [
  4732. {
  4733. "url": "https://symfony.com/sponsor",
  4734. "type": "custom"
  4735. },
  4736. {
  4737. "url": "https://github.com/fabpot",
  4738. "type": "github"
  4739. },
  4740. {
  4741. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4742. "type": "tidelift"
  4743. }
  4744. ],
  4745. "time": "2024-09-25T14:18:03+00:00"
  4746. },
  4747. {
  4748. "name": "symfony/polyfill-intl-grapheme",
  4749. "version": "v1.31.0",
  4750. "source": {
  4751. "type": "git",
  4752. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4753. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  4754. },
  4755. "dist": {
  4756. "type": "zip",
  4757. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  4758. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  4759. "shasum": ""
  4760. },
  4761. "require": {
  4762. "php": ">=7.2"
  4763. },
  4764. "suggest": {
  4765. "ext-intl": "For best performance"
  4766. },
  4767. "type": "library",
  4768. "extra": {
  4769. "thanks": {
  4770. "url": "https://github.com/symfony/polyfill",
  4771. "name": "symfony/polyfill"
  4772. }
  4773. },
  4774. "autoload": {
  4775. "files": [
  4776. "bootstrap.php"
  4777. ],
  4778. "psr-4": {
  4779. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4780. }
  4781. },
  4782. "notification-url": "https://packagist.org/downloads/",
  4783. "license": [
  4784. "MIT"
  4785. ],
  4786. "authors": [
  4787. {
  4788. "name": "Nicolas Grekas",
  4789. "email": "p@tchwork.com"
  4790. },
  4791. {
  4792. "name": "Symfony Community",
  4793. "homepage": "https://symfony.com/contributors"
  4794. }
  4795. ],
  4796. "description": "Symfony polyfill for intl's grapheme_* functions",
  4797. "homepage": "https://symfony.com",
  4798. "keywords": [
  4799. "compatibility",
  4800. "grapheme",
  4801. "intl",
  4802. "polyfill",
  4803. "portable",
  4804. "shim"
  4805. ],
  4806. "support": {
  4807. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  4808. },
  4809. "funding": [
  4810. {
  4811. "url": "https://symfony.com/sponsor",
  4812. "type": "custom"
  4813. },
  4814. {
  4815. "url": "https://github.com/fabpot",
  4816. "type": "github"
  4817. },
  4818. {
  4819. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4820. "type": "tidelift"
  4821. }
  4822. ],
  4823. "time": "2024-09-09T11:45:10+00:00"
  4824. },
  4825. {
  4826. "name": "symfony/polyfill-intl-icu",
  4827. "version": "v1.31.0",
  4828. "source": {
  4829. "type": "git",
  4830. "url": "https://github.com/symfony/polyfill-intl-icu.git",
  4831. "reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78"
  4832. },
  4833. "dist": {
  4834. "type": "zip",
  4835. "url": "https://api.github.com/repos/symfony/polyfill-intl-icu/zipball/d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
  4836. "reference": "d80a05e9904d2c2b9b95929f3e4b5d3a8f418d78",
  4837. "shasum": ""
  4838. },
  4839. "require": {
  4840. "php": ">=7.2"
  4841. },
  4842. "suggest": {
  4843. "ext-intl": "For best performance and support of other locales than \"en\""
  4844. },
  4845. "type": "library",
  4846. "extra": {
  4847. "thanks": {
  4848. "url": "https://github.com/symfony/polyfill",
  4849. "name": "symfony/polyfill"
  4850. }
  4851. },
  4852. "autoload": {
  4853. "files": [
  4854. "bootstrap.php"
  4855. ],
  4856. "psr-4": {
  4857. "Symfony\\Polyfill\\Intl\\Icu\\": ""
  4858. },
  4859. "classmap": [
  4860. "Resources/stubs"
  4861. ],
  4862. "exclude-from-classmap": [
  4863. "/Tests/"
  4864. ]
  4865. },
  4866. "notification-url": "https://packagist.org/downloads/",
  4867. "license": [
  4868. "MIT"
  4869. ],
  4870. "authors": [
  4871. {
  4872. "name": "Nicolas Grekas",
  4873. "email": "p@tchwork.com"
  4874. },
  4875. {
  4876. "name": "Symfony Community",
  4877. "homepage": "https://symfony.com/contributors"
  4878. }
  4879. ],
  4880. "description": "Symfony polyfill for intl's ICU-related data and classes",
  4881. "homepage": "https://symfony.com",
  4882. "keywords": [
  4883. "compatibility",
  4884. "icu",
  4885. "intl",
  4886. "polyfill",
  4887. "portable",
  4888. "shim"
  4889. ],
  4890. "support": {
  4891. "source": "https://github.com/symfony/polyfill-intl-icu/tree/v1.31.0"
  4892. },
  4893. "funding": [
  4894. {
  4895. "url": "https://symfony.com/sponsor",
  4896. "type": "custom"
  4897. },
  4898. {
  4899. "url": "https://github.com/fabpot",
  4900. "type": "github"
  4901. },
  4902. {
  4903. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4904. "type": "tidelift"
  4905. }
  4906. ],
  4907. "time": "2024-09-09T11:45:10+00:00"
  4908. },
  4909. {
  4910. "name": "symfony/polyfill-intl-idn",
  4911. "version": "v1.31.0",
  4912. "source": {
  4913. "type": "git",
  4914. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  4915. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  4916. },
  4917. "dist": {
  4918. "type": "zip",
  4919. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  4920. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  4921. "shasum": ""
  4922. },
  4923. "require": {
  4924. "php": ">=7.2",
  4925. "symfony/polyfill-intl-normalizer": "^1.10"
  4926. },
  4927. "suggest": {
  4928. "ext-intl": "For best performance"
  4929. },
  4930. "type": "library",
  4931. "extra": {
  4932. "thanks": {
  4933. "url": "https://github.com/symfony/polyfill",
  4934. "name": "symfony/polyfill"
  4935. }
  4936. },
  4937. "autoload": {
  4938. "files": [
  4939. "bootstrap.php"
  4940. ],
  4941. "psr-4": {
  4942. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  4943. }
  4944. },
  4945. "notification-url": "https://packagist.org/downloads/",
  4946. "license": [
  4947. "MIT"
  4948. ],
  4949. "authors": [
  4950. {
  4951. "name": "Laurent Bassin",
  4952. "email": "laurent@bassin.info"
  4953. },
  4954. {
  4955. "name": "Trevor Rowbotham",
  4956. "email": "trevor.rowbotham@pm.me"
  4957. },
  4958. {
  4959. "name": "Symfony Community",
  4960. "homepage": "https://symfony.com/contributors"
  4961. }
  4962. ],
  4963. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  4964. "homepage": "https://symfony.com",
  4965. "keywords": [
  4966. "compatibility",
  4967. "idn",
  4968. "intl",
  4969. "polyfill",
  4970. "portable",
  4971. "shim"
  4972. ],
  4973. "support": {
  4974. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  4975. },
  4976. "funding": [
  4977. {
  4978. "url": "https://symfony.com/sponsor",
  4979. "type": "custom"
  4980. },
  4981. {
  4982. "url": "https://github.com/fabpot",
  4983. "type": "github"
  4984. },
  4985. {
  4986. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4987. "type": "tidelift"
  4988. }
  4989. ],
  4990. "time": "2024-09-09T11:45:10+00:00"
  4991. },
  4992. {
  4993. "name": "symfony/polyfill-intl-normalizer",
  4994. "version": "v1.31.0",
  4995. "source": {
  4996. "type": "git",
  4997. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4998. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  4999. },
  5000. "dist": {
  5001. "type": "zip",
  5002. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  5003. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  5004. "shasum": ""
  5005. },
  5006. "require": {
  5007. "php": ">=7.2"
  5008. },
  5009. "suggest": {
  5010. "ext-intl": "For best performance"
  5011. },
  5012. "type": "library",
  5013. "extra": {
  5014. "thanks": {
  5015. "url": "https://github.com/symfony/polyfill",
  5016. "name": "symfony/polyfill"
  5017. }
  5018. },
  5019. "autoload": {
  5020. "files": [
  5021. "bootstrap.php"
  5022. ],
  5023. "psr-4": {
  5024. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5025. },
  5026. "classmap": [
  5027. "Resources/stubs"
  5028. ]
  5029. },
  5030. "notification-url": "https://packagist.org/downloads/",
  5031. "license": [
  5032. "MIT"
  5033. ],
  5034. "authors": [
  5035. {
  5036. "name": "Nicolas Grekas",
  5037. "email": "p@tchwork.com"
  5038. },
  5039. {
  5040. "name": "Symfony Community",
  5041. "homepage": "https://symfony.com/contributors"
  5042. }
  5043. ],
  5044. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5045. "homepage": "https://symfony.com",
  5046. "keywords": [
  5047. "compatibility",
  5048. "intl",
  5049. "normalizer",
  5050. "polyfill",
  5051. "portable",
  5052. "shim"
  5053. ],
  5054. "support": {
  5055. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  5056. },
  5057. "funding": [
  5058. {
  5059. "url": "https://symfony.com/sponsor",
  5060. "type": "custom"
  5061. },
  5062. {
  5063. "url": "https://github.com/fabpot",
  5064. "type": "github"
  5065. },
  5066. {
  5067. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5068. "type": "tidelift"
  5069. }
  5070. ],
  5071. "time": "2024-09-09T11:45:10+00:00"
  5072. },
  5073. {
  5074. "name": "symfony/polyfill-mbstring",
  5075. "version": "v1.31.0",
  5076. "source": {
  5077. "type": "git",
  5078. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5079. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  5080. },
  5081. "dist": {
  5082. "type": "zip",
  5083. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5084. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5085. "shasum": ""
  5086. },
  5087. "require": {
  5088. "php": ">=7.2"
  5089. },
  5090. "provide": {
  5091. "ext-mbstring": "*"
  5092. },
  5093. "suggest": {
  5094. "ext-mbstring": "For best performance"
  5095. },
  5096. "type": "library",
  5097. "extra": {
  5098. "thanks": {
  5099. "url": "https://github.com/symfony/polyfill",
  5100. "name": "symfony/polyfill"
  5101. }
  5102. },
  5103. "autoload": {
  5104. "files": [
  5105. "bootstrap.php"
  5106. ],
  5107. "psr-4": {
  5108. "Symfony\\Polyfill\\Mbstring\\": ""
  5109. }
  5110. },
  5111. "notification-url": "https://packagist.org/downloads/",
  5112. "license": [
  5113. "MIT"
  5114. ],
  5115. "authors": [
  5116. {
  5117. "name": "Nicolas Grekas",
  5118. "email": "p@tchwork.com"
  5119. },
  5120. {
  5121. "name": "Symfony Community",
  5122. "homepage": "https://symfony.com/contributors"
  5123. }
  5124. ],
  5125. "description": "Symfony polyfill for the Mbstring extension",
  5126. "homepage": "https://symfony.com",
  5127. "keywords": [
  5128. "compatibility",
  5129. "mbstring",
  5130. "polyfill",
  5131. "portable",
  5132. "shim"
  5133. ],
  5134. "support": {
  5135. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  5136. },
  5137. "funding": [
  5138. {
  5139. "url": "https://symfony.com/sponsor",
  5140. "type": "custom"
  5141. },
  5142. {
  5143. "url": "https://github.com/fabpot",
  5144. "type": "github"
  5145. },
  5146. {
  5147. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5148. "type": "tidelift"
  5149. }
  5150. ],
  5151. "time": "2024-09-09T11:45:10+00:00"
  5152. },
  5153. {
  5154. "name": "symfony/polyfill-php81",
  5155. "version": "v1.31.0",
  5156. "source": {
  5157. "type": "git",
  5158. "url": "https://github.com/symfony/polyfill-php81.git",
  5159. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  5160. },
  5161. "dist": {
  5162. "type": "zip",
  5163. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  5164. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  5165. "shasum": ""
  5166. },
  5167. "require": {
  5168. "php": ">=7.2"
  5169. },
  5170. "type": "library",
  5171. "extra": {
  5172. "thanks": {
  5173. "url": "https://github.com/symfony/polyfill",
  5174. "name": "symfony/polyfill"
  5175. }
  5176. },
  5177. "autoload": {
  5178. "files": [
  5179. "bootstrap.php"
  5180. ],
  5181. "psr-4": {
  5182. "Symfony\\Polyfill\\Php81\\": ""
  5183. },
  5184. "classmap": [
  5185. "Resources/stubs"
  5186. ]
  5187. },
  5188. "notification-url": "https://packagist.org/downloads/",
  5189. "license": [
  5190. "MIT"
  5191. ],
  5192. "authors": [
  5193. {
  5194. "name": "Nicolas Grekas",
  5195. "email": "p@tchwork.com"
  5196. },
  5197. {
  5198. "name": "Symfony Community",
  5199. "homepage": "https://symfony.com/contributors"
  5200. }
  5201. ],
  5202. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  5203. "homepage": "https://symfony.com",
  5204. "keywords": [
  5205. "compatibility",
  5206. "polyfill",
  5207. "portable",
  5208. "shim"
  5209. ],
  5210. "support": {
  5211. "source": "https://github.com/symfony/polyfill-php81/tree/v1.31.0"
  5212. },
  5213. "funding": [
  5214. {
  5215. "url": "https://symfony.com/sponsor",
  5216. "type": "custom"
  5217. },
  5218. {
  5219. "url": "https://github.com/fabpot",
  5220. "type": "github"
  5221. },
  5222. {
  5223. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5224. "type": "tidelift"
  5225. }
  5226. ],
  5227. "time": "2024-09-09T11:45:10+00:00"
  5228. },
  5229. {
  5230. "name": "symfony/polyfill-php83",
  5231. "version": "v1.31.0",
  5232. "source": {
  5233. "type": "git",
  5234. "url": "https://github.com/symfony/polyfill-php83.git",
  5235. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  5236. },
  5237. "dist": {
  5238. "type": "zip",
  5239. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  5240. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  5241. "shasum": ""
  5242. },
  5243. "require": {
  5244. "php": ">=7.2"
  5245. },
  5246. "type": "library",
  5247. "extra": {
  5248. "thanks": {
  5249. "url": "https://github.com/symfony/polyfill",
  5250. "name": "symfony/polyfill"
  5251. }
  5252. },
  5253. "autoload": {
  5254. "files": [
  5255. "bootstrap.php"
  5256. ],
  5257. "psr-4": {
  5258. "Symfony\\Polyfill\\Php83\\": ""
  5259. },
  5260. "classmap": [
  5261. "Resources/stubs"
  5262. ]
  5263. },
  5264. "notification-url": "https://packagist.org/downloads/",
  5265. "license": [
  5266. "MIT"
  5267. ],
  5268. "authors": [
  5269. {
  5270. "name": "Nicolas Grekas",
  5271. "email": "p@tchwork.com"
  5272. },
  5273. {
  5274. "name": "Symfony Community",
  5275. "homepage": "https://symfony.com/contributors"
  5276. }
  5277. ],
  5278. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5279. "homepage": "https://symfony.com",
  5280. "keywords": [
  5281. "compatibility",
  5282. "polyfill",
  5283. "portable",
  5284. "shim"
  5285. ],
  5286. "support": {
  5287. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  5288. },
  5289. "funding": [
  5290. {
  5291. "url": "https://symfony.com/sponsor",
  5292. "type": "custom"
  5293. },
  5294. {
  5295. "url": "https://github.com/fabpot",
  5296. "type": "github"
  5297. },
  5298. {
  5299. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5300. "type": "tidelift"
  5301. }
  5302. ],
  5303. "time": "2024-09-09T11:45:10+00:00"
  5304. },
  5305. {
  5306. "name": "symfony/process",
  5307. "version": "v6.4.15",
  5308. "source": {
  5309. "type": "git",
  5310. "url": "https://github.com/symfony/process.git",
  5311. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392"
  5312. },
  5313. "dist": {
  5314. "type": "zip",
  5315. "url": "https://api.github.com/repos/symfony/process/zipball/3cb242f059c14ae08591c5c4087d1fe443564392",
  5316. "reference": "3cb242f059c14ae08591c5c4087d1fe443564392",
  5317. "shasum": ""
  5318. },
  5319. "require": {
  5320. "php": ">=8.1"
  5321. },
  5322. "type": "library",
  5323. "autoload": {
  5324. "psr-4": {
  5325. "Symfony\\Component\\Process\\": ""
  5326. },
  5327. "exclude-from-classmap": [
  5328. "/Tests/"
  5329. ]
  5330. },
  5331. "notification-url": "https://packagist.org/downloads/",
  5332. "license": [
  5333. "MIT"
  5334. ],
  5335. "authors": [
  5336. {
  5337. "name": "Fabien Potencier",
  5338. "email": "fabien@symfony.com"
  5339. },
  5340. {
  5341. "name": "Symfony Community",
  5342. "homepage": "https://symfony.com/contributors"
  5343. }
  5344. ],
  5345. "description": "Executes commands in sub-processes",
  5346. "homepage": "https://symfony.com",
  5347. "support": {
  5348. "source": "https://github.com/symfony/process/tree/v6.4.15"
  5349. },
  5350. "funding": [
  5351. {
  5352. "url": "https://symfony.com/sponsor",
  5353. "type": "custom"
  5354. },
  5355. {
  5356. "url": "https://github.com/fabpot",
  5357. "type": "github"
  5358. },
  5359. {
  5360. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5361. "type": "tidelift"
  5362. }
  5363. ],
  5364. "time": "2024-11-06T14:19:14+00:00"
  5365. },
  5366. {
  5367. "name": "symfony/property-access",
  5368. "version": "v6.4.13",
  5369. "source": {
  5370. "type": "git",
  5371. "url": "https://github.com/symfony/property-access.git",
  5372. "reference": "8cc779d88d12e440adaa26387bcfc25744064afe"
  5373. },
  5374. "dist": {
  5375. "type": "zip",
  5376. "url": "https://api.github.com/repos/symfony/property-access/zipball/8cc779d88d12e440adaa26387bcfc25744064afe",
  5377. "reference": "8cc779d88d12e440adaa26387bcfc25744064afe",
  5378. "shasum": ""
  5379. },
  5380. "require": {
  5381. "php": ">=8.1",
  5382. "symfony/deprecation-contracts": "^2.5|^3",
  5383. "symfony/property-info": "^5.4|^6.0|^7.0"
  5384. },
  5385. "require-dev": {
  5386. "symfony/cache": "^5.4|^6.0|^7.0"
  5387. },
  5388. "type": "library",
  5389. "autoload": {
  5390. "psr-4": {
  5391. "Symfony\\Component\\PropertyAccess\\": ""
  5392. },
  5393. "exclude-from-classmap": [
  5394. "/Tests/"
  5395. ]
  5396. },
  5397. "notification-url": "https://packagist.org/downloads/",
  5398. "license": [
  5399. "MIT"
  5400. ],
  5401. "authors": [
  5402. {
  5403. "name": "Fabien Potencier",
  5404. "email": "fabien@symfony.com"
  5405. },
  5406. {
  5407. "name": "Symfony Community",
  5408. "homepage": "https://symfony.com/contributors"
  5409. }
  5410. ],
  5411. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  5412. "homepage": "https://symfony.com",
  5413. "keywords": [
  5414. "access",
  5415. "array",
  5416. "extraction",
  5417. "index",
  5418. "injection",
  5419. "object",
  5420. "property",
  5421. "property-path",
  5422. "reflection"
  5423. ],
  5424. "support": {
  5425. "source": "https://github.com/symfony/property-access/tree/v6.4.13"
  5426. },
  5427. "funding": [
  5428. {
  5429. "url": "https://symfony.com/sponsor",
  5430. "type": "custom"
  5431. },
  5432. {
  5433. "url": "https://github.com/fabpot",
  5434. "type": "github"
  5435. },
  5436. {
  5437. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5438. "type": "tidelift"
  5439. }
  5440. ],
  5441. "time": "2024-09-25T14:18:03+00:00"
  5442. },
  5443. {
  5444. "name": "symfony/property-info",
  5445. "version": "v6.4.17",
  5446. "source": {
  5447. "type": "git",
  5448. "url": "https://github.com/symfony/property-info.git",
  5449. "reference": "38b125d78e67668159f75383a293ec0c5d3f2963"
  5450. },
  5451. "dist": {
  5452. "type": "zip",
  5453. "url": "https://api.github.com/repos/symfony/property-info/zipball/38b125d78e67668159f75383a293ec0c5d3f2963",
  5454. "reference": "38b125d78e67668159f75383a293ec0c5d3f2963",
  5455. "shasum": ""
  5456. },
  5457. "require": {
  5458. "php": ">=8.1",
  5459. "symfony/string": "^5.4|^6.0|^7.0"
  5460. },
  5461. "conflict": {
  5462. "doctrine/annotations": "<1.12",
  5463. "phpdocumentor/reflection-docblock": "<5.2",
  5464. "phpdocumentor/type-resolver": "<1.5.1",
  5465. "symfony/dependency-injection": "<5.4|>=6.0,<6.4"
  5466. },
  5467. "require-dev": {
  5468. "doctrine/annotations": "^1.12|^2",
  5469. "phpdocumentor/reflection-docblock": "^5.2",
  5470. "phpstan/phpdoc-parser": "^1.0|^2.0",
  5471. "symfony/cache": "^5.4|^6.0|^7.0",
  5472. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5473. "symfony/serializer": "^5.4|^6.4|^7.0"
  5474. },
  5475. "type": "library",
  5476. "autoload": {
  5477. "psr-4": {
  5478. "Symfony\\Component\\PropertyInfo\\": ""
  5479. },
  5480. "exclude-from-classmap": [
  5481. "/Tests/"
  5482. ]
  5483. },
  5484. "notification-url": "https://packagist.org/downloads/",
  5485. "license": [
  5486. "MIT"
  5487. ],
  5488. "authors": [
  5489. {
  5490. "name": "Kévin Dunglas",
  5491. "email": "dunglas@gmail.com"
  5492. },
  5493. {
  5494. "name": "Symfony Community",
  5495. "homepage": "https://symfony.com/contributors"
  5496. }
  5497. ],
  5498. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  5499. "homepage": "https://symfony.com",
  5500. "keywords": [
  5501. "doctrine",
  5502. "phpdoc",
  5503. "property",
  5504. "symfony",
  5505. "type",
  5506. "validator"
  5507. ],
  5508. "support": {
  5509. "source": "https://github.com/symfony/property-info/tree/v6.4.17"
  5510. },
  5511. "funding": [
  5512. {
  5513. "url": "https://symfony.com/sponsor",
  5514. "type": "custom"
  5515. },
  5516. {
  5517. "url": "https://github.com/fabpot",
  5518. "type": "github"
  5519. },
  5520. {
  5521. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5522. "type": "tidelift"
  5523. }
  5524. ],
  5525. "time": "2024-12-26T19:01:29+00:00"
  5526. },
  5527. {
  5528. "name": "symfony/routing",
  5529. "version": "v6.4.16",
  5530. "source": {
  5531. "type": "git",
  5532. "url": "https://github.com/symfony/routing.git",
  5533. "reference": "91e02e606b4b705c2f4fb42f7e7708b7923a3220"
  5534. },
  5535. "dist": {
  5536. "type": "zip",
  5537. "url": "https://api.github.com/repos/symfony/routing/zipball/91e02e606b4b705c2f4fb42f7e7708b7923a3220",
  5538. "reference": "91e02e606b4b705c2f4fb42f7e7708b7923a3220",
  5539. "shasum": ""
  5540. },
  5541. "require": {
  5542. "php": ">=8.1",
  5543. "symfony/deprecation-contracts": "^2.5|^3"
  5544. },
  5545. "conflict": {
  5546. "doctrine/annotations": "<1.12",
  5547. "symfony/config": "<6.2",
  5548. "symfony/dependency-injection": "<5.4",
  5549. "symfony/yaml": "<5.4"
  5550. },
  5551. "require-dev": {
  5552. "doctrine/annotations": "^1.12|^2",
  5553. "psr/log": "^1|^2|^3",
  5554. "symfony/config": "^6.2|^7.0",
  5555. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5556. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5557. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  5558. "symfony/yaml": "^5.4|^6.0|^7.0"
  5559. },
  5560. "type": "library",
  5561. "autoload": {
  5562. "psr-4": {
  5563. "Symfony\\Component\\Routing\\": ""
  5564. },
  5565. "exclude-from-classmap": [
  5566. "/Tests/"
  5567. ]
  5568. },
  5569. "notification-url": "https://packagist.org/downloads/",
  5570. "license": [
  5571. "MIT"
  5572. ],
  5573. "authors": [
  5574. {
  5575. "name": "Fabien Potencier",
  5576. "email": "fabien@symfony.com"
  5577. },
  5578. {
  5579. "name": "Symfony Community",
  5580. "homepage": "https://symfony.com/contributors"
  5581. }
  5582. ],
  5583. "description": "Maps an HTTP request to a set of configuration variables",
  5584. "homepage": "https://symfony.com",
  5585. "keywords": [
  5586. "router",
  5587. "routing",
  5588. "uri",
  5589. "url"
  5590. ],
  5591. "support": {
  5592. "source": "https://github.com/symfony/routing/tree/v6.4.16"
  5593. },
  5594. "funding": [
  5595. {
  5596. "url": "https://symfony.com/sponsor",
  5597. "type": "custom"
  5598. },
  5599. {
  5600. "url": "https://github.com/fabpot",
  5601. "type": "github"
  5602. },
  5603. {
  5604. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5605. "type": "tidelift"
  5606. }
  5607. ],
  5608. "time": "2024-11-13T15:31:34+00:00"
  5609. },
  5610. {
  5611. "name": "symfony/runtime",
  5612. "version": "v6.4.14",
  5613. "source": {
  5614. "type": "git",
  5615. "url": "https://github.com/symfony/runtime.git",
  5616. "reference": "4facd4174f45cd37c65860403412b67c7381136a"
  5617. },
  5618. "dist": {
  5619. "type": "zip",
  5620. "url": "https://api.github.com/repos/symfony/runtime/zipball/4facd4174f45cd37c65860403412b67c7381136a",
  5621. "reference": "4facd4174f45cd37c65860403412b67c7381136a",
  5622. "shasum": ""
  5623. },
  5624. "require": {
  5625. "composer-plugin-api": "^1.0|^2.0",
  5626. "php": ">=8.1"
  5627. },
  5628. "conflict": {
  5629. "symfony/dotenv": "<5.4"
  5630. },
  5631. "require-dev": {
  5632. "composer/composer": "^1.0.2|^2.0",
  5633. "symfony/console": "^5.4.9|^6.0.9|^7.0",
  5634. "symfony/dotenv": "^5.4|^6.0|^7.0",
  5635. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  5636. "symfony/http-kernel": "^5.4|^6.0|^7.0"
  5637. },
  5638. "type": "composer-plugin",
  5639. "extra": {
  5640. "class": "Symfony\\Component\\Runtime\\Internal\\ComposerPlugin"
  5641. },
  5642. "autoload": {
  5643. "psr-4": {
  5644. "Symfony\\Component\\Runtime\\": "",
  5645. "Symfony\\Runtime\\Symfony\\Component\\": "Internal/"
  5646. },
  5647. "exclude-from-classmap": [
  5648. "/Tests/"
  5649. ]
  5650. },
  5651. "notification-url": "https://packagist.org/downloads/",
  5652. "license": [
  5653. "MIT"
  5654. ],
  5655. "authors": [
  5656. {
  5657. "name": "Nicolas Grekas",
  5658. "email": "p@tchwork.com"
  5659. },
  5660. {
  5661. "name": "Symfony Community",
  5662. "homepage": "https://symfony.com/contributors"
  5663. }
  5664. ],
  5665. "description": "Enables decoupling PHP applications from global state",
  5666. "homepage": "https://symfony.com",
  5667. "keywords": [
  5668. "runtime"
  5669. ],
  5670. "support": {
  5671. "source": "https://github.com/symfony/runtime/tree/v6.4.14"
  5672. },
  5673. "funding": [
  5674. {
  5675. "url": "https://symfony.com/sponsor",
  5676. "type": "custom"
  5677. },
  5678. {
  5679. "url": "https://github.com/fabpot",
  5680. "type": "github"
  5681. },
  5682. {
  5683. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5684. "type": "tidelift"
  5685. }
  5686. ],
  5687. "time": "2024-11-05T16:39:55+00:00"
  5688. },
  5689. {
  5690. "name": "symfony/security-bundle",
  5691. "version": "v6.4.13",
  5692. "source": {
  5693. "type": "git",
  5694. "url": "https://github.com/symfony/security-bundle.git",
  5695. "reference": "181d1fcf5f88ef8212ed7f6434e5ff51c9d7dff3"
  5696. },
  5697. "dist": {
  5698. "type": "zip",
  5699. "url": "https://api.github.com/repos/symfony/security-bundle/zipball/181d1fcf5f88ef8212ed7f6434e5ff51c9d7dff3",
  5700. "reference": "181d1fcf5f88ef8212ed7f6434e5ff51c9d7dff3",
  5701. "shasum": ""
  5702. },
  5703. "require": {
  5704. "composer-runtime-api": ">=2.1",
  5705. "ext-xml": "*",
  5706. "php": ">=8.1",
  5707. "symfony/clock": "^6.3|^7.0",
  5708. "symfony/config": "^6.1|^7.0",
  5709. "symfony/dependency-injection": "^6.4.11|^7.1.4",
  5710. "symfony/deprecation-contracts": "^2.5|^3",
  5711. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5712. "symfony/http-foundation": "^6.2|^7.0",
  5713. "symfony/http-kernel": "^6.2",
  5714. "symfony/password-hasher": "^5.4|^6.0|^7.0",
  5715. "symfony/security-core": "^6.2|^7.0",
  5716. "symfony/security-csrf": "^5.4|^6.0|^7.0",
  5717. "symfony/security-http": "^6.3.6|^7.0",
  5718. "symfony/service-contracts": "^2.5|^3"
  5719. },
  5720. "conflict": {
  5721. "symfony/browser-kit": "<5.4",
  5722. "symfony/console": "<5.4",
  5723. "symfony/framework-bundle": "<6.4",
  5724. "symfony/http-client": "<5.4",
  5725. "symfony/ldap": "<5.4",
  5726. "symfony/serializer": "<6.4",
  5727. "symfony/twig-bundle": "<5.4",
  5728. "symfony/validator": "<6.4"
  5729. },
  5730. "require-dev": {
  5731. "symfony/asset": "^5.4|^6.0|^7.0",
  5732. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  5733. "symfony/console": "^5.4|^6.0|^7.0",
  5734. "symfony/css-selector": "^5.4|^6.0|^7.0",
  5735. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  5736. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5737. "symfony/form": "^5.4|^6.0|^7.0",
  5738. "symfony/framework-bundle": "^6.4|^7.0",
  5739. "symfony/http-client": "^5.4|^6.0|^7.0",
  5740. "symfony/ldap": "^5.4|^6.0|^7.0",
  5741. "symfony/process": "^5.4|^6.0|^7.0",
  5742. "symfony/rate-limiter": "^5.4|^6.0|^7.0",
  5743. "symfony/serializer": "^6.4|^7.0",
  5744. "symfony/translation": "^5.4|^6.0|^7.0",
  5745. "symfony/twig-bridge": "^5.4|^6.0|^7.0",
  5746. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  5747. "symfony/validator": "^6.4|^7.0",
  5748. "symfony/yaml": "^5.4|^6.0|^7.0",
  5749. "twig/twig": "^2.13|^3.0.4",
  5750. "web-token/jwt-checker": "^3.1",
  5751. "web-token/jwt-signature-algorithm-ecdsa": "^3.1",
  5752. "web-token/jwt-signature-algorithm-eddsa": "^3.1",
  5753. "web-token/jwt-signature-algorithm-hmac": "^3.1",
  5754. "web-token/jwt-signature-algorithm-none": "^3.1",
  5755. "web-token/jwt-signature-algorithm-rsa": "^3.1"
  5756. },
  5757. "type": "symfony-bundle",
  5758. "autoload": {
  5759. "psr-4": {
  5760. "Symfony\\Bundle\\SecurityBundle\\": ""
  5761. },
  5762. "exclude-from-classmap": [
  5763. "/Tests/"
  5764. ]
  5765. },
  5766. "notification-url": "https://packagist.org/downloads/",
  5767. "license": [
  5768. "MIT"
  5769. ],
  5770. "authors": [
  5771. {
  5772. "name": "Fabien Potencier",
  5773. "email": "fabien@symfony.com"
  5774. },
  5775. {
  5776. "name": "Symfony Community",
  5777. "homepage": "https://symfony.com/contributors"
  5778. }
  5779. ],
  5780. "description": "Provides a tight integration of the Security component into the Symfony full-stack framework",
  5781. "homepage": "https://symfony.com",
  5782. "support": {
  5783. "source": "https://github.com/symfony/security-bundle/tree/v6.4.13"
  5784. },
  5785. "funding": [
  5786. {
  5787. "url": "https://symfony.com/sponsor",
  5788. "type": "custom"
  5789. },
  5790. {
  5791. "url": "https://github.com/fabpot",
  5792. "type": "github"
  5793. },
  5794. {
  5795. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5796. "type": "tidelift"
  5797. }
  5798. ],
  5799. "time": "2024-09-25T14:18:03+00:00"
  5800. },
  5801. {
  5802. "name": "symfony/security-core",
  5803. "version": "v6.4.16",
  5804. "source": {
  5805. "type": "git",
  5806. "url": "https://github.com/symfony/security-core.git",
  5807. "reference": "19cdb7de86e556202ab16e0cffd1a97348231bc0"
  5808. },
  5809. "dist": {
  5810. "type": "zip",
  5811. "url": "https://api.github.com/repos/symfony/security-core/zipball/19cdb7de86e556202ab16e0cffd1a97348231bc0",
  5812. "reference": "19cdb7de86e556202ab16e0cffd1a97348231bc0",
  5813. "shasum": ""
  5814. },
  5815. "require": {
  5816. "php": ">=8.1",
  5817. "symfony/deprecation-contracts": "^2.5|^3",
  5818. "symfony/event-dispatcher-contracts": "^2.5|^3",
  5819. "symfony/password-hasher": "^5.4|^6.0|^7.0",
  5820. "symfony/service-contracts": "^2.5|^3"
  5821. },
  5822. "conflict": {
  5823. "symfony/event-dispatcher": "<5.4",
  5824. "symfony/http-foundation": "<5.4",
  5825. "symfony/ldap": "<5.4",
  5826. "symfony/security-guard": "<5.4",
  5827. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  5828. "symfony/validator": "<5.4"
  5829. },
  5830. "require-dev": {
  5831. "psr/cache": "^1.0|^2.0|^3.0",
  5832. "psr/container": "^1.1|^2.0",
  5833. "psr/log": "^1|^2|^3",
  5834. "symfony/cache": "^5.4|^6.0|^7.0",
  5835. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5836. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5837. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  5838. "symfony/ldap": "^5.4|^6.0|^7.0",
  5839. "symfony/string": "^5.4|^6.0|^7.0",
  5840. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  5841. "symfony/validator": "^6.4|^7.0"
  5842. },
  5843. "type": "library",
  5844. "autoload": {
  5845. "psr-4": {
  5846. "Symfony\\Component\\Security\\Core\\": ""
  5847. },
  5848. "exclude-from-classmap": [
  5849. "/Tests/"
  5850. ]
  5851. },
  5852. "notification-url": "https://packagist.org/downloads/",
  5853. "license": [
  5854. "MIT"
  5855. ],
  5856. "authors": [
  5857. {
  5858. "name": "Fabien Potencier",
  5859. "email": "fabien@symfony.com"
  5860. },
  5861. {
  5862. "name": "Symfony Community",
  5863. "homepage": "https://symfony.com/contributors"
  5864. }
  5865. ],
  5866. "description": "Symfony Security Component - Core Library",
  5867. "homepage": "https://symfony.com",
  5868. "support": {
  5869. "source": "https://github.com/symfony/security-core/tree/v6.4.16"
  5870. },
  5871. "funding": [
  5872. {
  5873. "url": "https://symfony.com/sponsor",
  5874. "type": "custom"
  5875. },
  5876. {
  5877. "url": "https://github.com/fabpot",
  5878. "type": "github"
  5879. },
  5880. {
  5881. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5882. "type": "tidelift"
  5883. }
  5884. ],
  5885. "time": "2024-11-27T09:48:51+00:00"
  5886. },
  5887. {
  5888. "name": "symfony/security-csrf",
  5889. "version": "v6.4.13",
  5890. "source": {
  5891. "type": "git",
  5892. "url": "https://github.com/symfony/security-csrf.git",
  5893. "reference": "c34421b7d34efbaef5d611ab2e646a0ec464ffe3"
  5894. },
  5895. "dist": {
  5896. "type": "zip",
  5897. "url": "https://api.github.com/repos/symfony/security-csrf/zipball/c34421b7d34efbaef5d611ab2e646a0ec464ffe3",
  5898. "reference": "c34421b7d34efbaef5d611ab2e646a0ec464ffe3",
  5899. "shasum": ""
  5900. },
  5901. "require": {
  5902. "php": ">=8.1",
  5903. "symfony/security-core": "^5.4|^6.0|^7.0"
  5904. },
  5905. "conflict": {
  5906. "symfony/http-foundation": "<5.4"
  5907. },
  5908. "require-dev": {
  5909. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  5910. },
  5911. "type": "library",
  5912. "autoload": {
  5913. "psr-4": {
  5914. "Symfony\\Component\\Security\\Csrf\\": ""
  5915. },
  5916. "exclude-from-classmap": [
  5917. "/Tests/"
  5918. ]
  5919. },
  5920. "notification-url": "https://packagist.org/downloads/",
  5921. "license": [
  5922. "MIT"
  5923. ],
  5924. "authors": [
  5925. {
  5926. "name": "Fabien Potencier",
  5927. "email": "fabien@symfony.com"
  5928. },
  5929. {
  5930. "name": "Symfony Community",
  5931. "homepage": "https://symfony.com/contributors"
  5932. }
  5933. ],
  5934. "description": "Symfony Security Component - CSRF Library",
  5935. "homepage": "https://symfony.com",
  5936. "support": {
  5937. "source": "https://github.com/symfony/security-csrf/tree/v6.4.13"
  5938. },
  5939. "funding": [
  5940. {
  5941. "url": "https://symfony.com/sponsor",
  5942. "type": "custom"
  5943. },
  5944. {
  5945. "url": "https://github.com/fabpot",
  5946. "type": "github"
  5947. },
  5948. {
  5949. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5950. "type": "tidelift"
  5951. }
  5952. ],
  5953. "time": "2024-09-25T14:18:03+00:00"
  5954. },
  5955. {
  5956. "name": "symfony/security-http",
  5957. "version": "v6.4.15",
  5958. "source": {
  5959. "type": "git",
  5960. "url": "https://github.com/symfony/security-http.git",
  5961. "reference": "ded1e078f952e686b058d9eac98e497bea47b308"
  5962. },
  5963. "dist": {
  5964. "type": "zip",
  5965. "url": "https://api.github.com/repos/symfony/security-http/zipball/ded1e078f952e686b058d9eac98e497bea47b308",
  5966. "reference": "ded1e078f952e686b058d9eac98e497bea47b308",
  5967. "shasum": ""
  5968. },
  5969. "require": {
  5970. "php": ">=8.1",
  5971. "symfony/deprecation-contracts": "^2.5|^3",
  5972. "symfony/http-foundation": "^6.2|^7.0",
  5973. "symfony/http-kernel": "^6.3|^7.0",
  5974. "symfony/polyfill-mbstring": "~1.0",
  5975. "symfony/property-access": "^5.4|^6.0|^7.0",
  5976. "symfony/security-core": "^6.4|^7.0",
  5977. "symfony/service-contracts": "^2.5|^3"
  5978. },
  5979. "conflict": {
  5980. "symfony/clock": "<6.3",
  5981. "symfony/event-dispatcher": "<5.4.9|>=6,<6.0.9",
  5982. "symfony/http-client-contracts": "<3.0",
  5983. "symfony/security-bundle": "<5.4",
  5984. "symfony/security-csrf": "<5.4"
  5985. },
  5986. "require-dev": {
  5987. "psr/log": "^1|^2|^3",
  5988. "symfony/cache": "^5.4|^6.0|^7.0",
  5989. "symfony/clock": "^6.3|^7.0",
  5990. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5991. "symfony/http-client-contracts": "^3.0",
  5992. "symfony/rate-limiter": "^5.4|^6.0|^7.0",
  5993. "symfony/routing": "^5.4|^6.0|^7.0",
  5994. "symfony/security-csrf": "^5.4|^6.0|^7.0",
  5995. "symfony/translation": "^5.4|^6.0|^7.0",
  5996. "web-token/jwt-checker": "^3.1",
  5997. "web-token/jwt-signature-algorithm-ecdsa": "^3.1"
  5998. },
  5999. "type": "library",
  6000. "autoload": {
  6001. "psr-4": {
  6002. "Symfony\\Component\\Security\\Http\\": ""
  6003. },
  6004. "exclude-from-classmap": [
  6005. "/Tests/"
  6006. ]
  6007. },
  6008. "notification-url": "https://packagist.org/downloads/",
  6009. "license": [
  6010. "MIT"
  6011. ],
  6012. "authors": [
  6013. {
  6014. "name": "Fabien Potencier",
  6015. "email": "fabien@symfony.com"
  6016. },
  6017. {
  6018. "name": "Symfony Community",
  6019. "homepage": "https://symfony.com/contributors"
  6020. }
  6021. ],
  6022. "description": "Symfony Security Component - HTTP Integration",
  6023. "homepage": "https://symfony.com",
  6024. "support": {
  6025. "source": "https://github.com/symfony/security-http/tree/v6.4.15"
  6026. },
  6027. "funding": [
  6028. {
  6029. "url": "https://symfony.com/sponsor",
  6030. "type": "custom"
  6031. },
  6032. {
  6033. "url": "https://github.com/fabpot",
  6034. "type": "github"
  6035. },
  6036. {
  6037. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6038. "type": "tidelift"
  6039. }
  6040. ],
  6041. "time": "2024-11-13T13:40:18+00:00"
  6042. },
  6043. {
  6044. "name": "symfony/serializer",
  6045. "version": "v6.4.15",
  6046. "source": {
  6047. "type": "git",
  6048. "url": "https://github.com/symfony/serializer.git",
  6049. "reference": "9d862d66198f3c2e30404228629ef4c18d5d608e"
  6050. },
  6051. "dist": {
  6052. "type": "zip",
  6053. "url": "https://api.github.com/repos/symfony/serializer/zipball/9d862d66198f3c2e30404228629ef4c18d5d608e",
  6054. "reference": "9d862d66198f3c2e30404228629ef4c18d5d608e",
  6055. "shasum": ""
  6056. },
  6057. "require": {
  6058. "php": ">=8.1",
  6059. "symfony/deprecation-contracts": "^2.5|^3",
  6060. "symfony/polyfill-ctype": "~1.8"
  6061. },
  6062. "conflict": {
  6063. "doctrine/annotations": "<1.12",
  6064. "phpdocumentor/reflection-docblock": "<3.2.2",
  6065. "phpdocumentor/type-resolver": "<1.4.0",
  6066. "symfony/dependency-injection": "<5.4",
  6067. "symfony/property-access": "<5.4",
  6068. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  6069. "symfony/uid": "<5.4",
  6070. "symfony/validator": "<6.4",
  6071. "symfony/yaml": "<5.4"
  6072. },
  6073. "require-dev": {
  6074. "doctrine/annotations": "^1.12|^2",
  6075. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  6076. "seld/jsonlint": "^1.10",
  6077. "symfony/cache": "^5.4|^6.0|^7.0",
  6078. "symfony/config": "^5.4|^6.0|^7.0",
  6079. "symfony/console": "^5.4|^6.0|^7.0",
  6080. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6081. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6082. "symfony/filesystem": "^5.4|^6.0|^7.0",
  6083. "symfony/form": "^5.4|^6.0|^7.0",
  6084. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6085. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6086. "symfony/messenger": "^5.4|^6.0|^7.0",
  6087. "symfony/mime": "^5.4|^6.0|^7.0",
  6088. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  6089. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  6090. "symfony/translation-contracts": "^2.5|^3",
  6091. "symfony/uid": "^5.4|^6.0|^7.0",
  6092. "symfony/validator": "^6.4|^7.0",
  6093. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  6094. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  6095. "symfony/yaml": "^5.4|^6.0|^7.0"
  6096. },
  6097. "type": "library",
  6098. "autoload": {
  6099. "psr-4": {
  6100. "Symfony\\Component\\Serializer\\": ""
  6101. },
  6102. "exclude-from-classmap": [
  6103. "/Tests/"
  6104. ]
  6105. },
  6106. "notification-url": "https://packagist.org/downloads/",
  6107. "license": [
  6108. "MIT"
  6109. ],
  6110. "authors": [
  6111. {
  6112. "name": "Fabien Potencier",
  6113. "email": "fabien@symfony.com"
  6114. },
  6115. {
  6116. "name": "Symfony Community",
  6117. "homepage": "https://symfony.com/contributors"
  6118. }
  6119. ],
  6120. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  6121. "homepage": "https://symfony.com",
  6122. "support": {
  6123. "source": "https://github.com/symfony/serializer/tree/v6.4.15"
  6124. },
  6125. "funding": [
  6126. {
  6127. "url": "https://symfony.com/sponsor",
  6128. "type": "custom"
  6129. },
  6130. {
  6131. "url": "https://github.com/fabpot",
  6132. "type": "github"
  6133. },
  6134. {
  6135. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6136. "type": "tidelift"
  6137. }
  6138. ],
  6139. "time": "2024-10-23T13:25:59+00:00"
  6140. },
  6141. {
  6142. "name": "symfony/service-contracts",
  6143. "version": "v3.5.1",
  6144. "source": {
  6145. "type": "git",
  6146. "url": "https://github.com/symfony/service-contracts.git",
  6147. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  6148. },
  6149. "dist": {
  6150. "type": "zip",
  6151. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  6152. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  6153. "shasum": ""
  6154. },
  6155. "require": {
  6156. "php": ">=8.1",
  6157. "psr/container": "^1.1|^2.0",
  6158. "symfony/deprecation-contracts": "^2.5|^3"
  6159. },
  6160. "conflict": {
  6161. "ext-psr": "<1.1|>=2"
  6162. },
  6163. "type": "library",
  6164. "extra": {
  6165. "thanks": {
  6166. "url": "https://github.com/symfony/contracts",
  6167. "name": "symfony/contracts"
  6168. },
  6169. "branch-alias": {
  6170. "dev-main": "3.5-dev"
  6171. }
  6172. },
  6173. "autoload": {
  6174. "psr-4": {
  6175. "Symfony\\Contracts\\Service\\": ""
  6176. },
  6177. "exclude-from-classmap": [
  6178. "/Test/"
  6179. ]
  6180. },
  6181. "notification-url": "https://packagist.org/downloads/",
  6182. "license": [
  6183. "MIT"
  6184. ],
  6185. "authors": [
  6186. {
  6187. "name": "Nicolas Grekas",
  6188. "email": "p@tchwork.com"
  6189. },
  6190. {
  6191. "name": "Symfony Community",
  6192. "homepage": "https://symfony.com/contributors"
  6193. }
  6194. ],
  6195. "description": "Generic abstractions related to writing services",
  6196. "homepage": "https://symfony.com",
  6197. "keywords": [
  6198. "abstractions",
  6199. "contracts",
  6200. "decoupling",
  6201. "interfaces",
  6202. "interoperability",
  6203. "standards"
  6204. ],
  6205. "support": {
  6206. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  6207. },
  6208. "funding": [
  6209. {
  6210. "url": "https://symfony.com/sponsor",
  6211. "type": "custom"
  6212. },
  6213. {
  6214. "url": "https://github.com/fabpot",
  6215. "type": "github"
  6216. },
  6217. {
  6218. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6219. "type": "tidelift"
  6220. }
  6221. ],
  6222. "time": "2024-09-25T14:20:29+00:00"
  6223. },
  6224. {
  6225. "name": "symfony/stimulus-bundle",
  6226. "version": "v2.22.1",
  6227. "source": {
  6228. "type": "git",
  6229. "url": "https://github.com/symfony/stimulus-bundle.git",
  6230. "reference": "e13034d428354023c82a1db108d40fdf6cec2d36"
  6231. },
  6232. "dist": {
  6233. "type": "zip",
  6234. "url": "https://api.github.com/repos/symfony/stimulus-bundle/zipball/e13034d428354023c82a1db108d40fdf6cec2d36",
  6235. "reference": "e13034d428354023c82a1db108d40fdf6cec2d36",
  6236. "shasum": ""
  6237. },
  6238. "require": {
  6239. "php": ">=8.1",
  6240. "symfony/config": "^5.4|^6.0|^7.0",
  6241. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6242. "symfony/deprecation-contracts": "^2.0|^3.0",
  6243. "symfony/finder": "^5.4|^6.0|^7.0",
  6244. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6245. "twig/twig": "^2.15.3|^3.8"
  6246. },
  6247. "require-dev": {
  6248. "symfony/asset-mapper": "^6.3|^7.0",
  6249. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  6250. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  6251. "symfony/twig-bundle": "^5.4|^6.0|^7.0",
  6252. "zenstruck/browser": "^1.4"
  6253. },
  6254. "type": "symfony-bundle",
  6255. "autoload": {
  6256. "psr-4": {
  6257. "Symfony\\UX\\StimulusBundle\\": "src"
  6258. }
  6259. },
  6260. "notification-url": "https://packagist.org/downloads/",
  6261. "license": [
  6262. "MIT"
  6263. ],
  6264. "authors": [
  6265. {
  6266. "name": "Symfony Community",
  6267. "homepage": "https://symfony.com/contributors"
  6268. }
  6269. ],
  6270. "description": "Integration with your Symfony app & Stimulus!",
  6271. "keywords": [
  6272. "symfony-ux"
  6273. ],
  6274. "support": {
  6275. "source": "https://github.com/symfony/stimulus-bundle/tree/v2.22.1"
  6276. },
  6277. "funding": [
  6278. {
  6279. "url": "https://symfony.com/sponsor",
  6280. "type": "custom"
  6281. },
  6282. {
  6283. "url": "https://github.com/fabpot",
  6284. "type": "github"
  6285. },
  6286. {
  6287. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6288. "type": "tidelift"
  6289. }
  6290. ],
  6291. "time": "2024-12-06T14:30:33+00:00"
  6292. },
  6293. {
  6294. "name": "symfony/stopwatch",
  6295. "version": "v6.4.13",
  6296. "source": {
  6297. "type": "git",
  6298. "url": "https://github.com/symfony/stopwatch.git",
  6299. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92"
  6300. },
  6301. "dist": {
  6302. "type": "zip",
  6303. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/2cae0a6f8d04937d02f6d19806251e2104d54f92",
  6304. "reference": "2cae0a6f8d04937d02f6d19806251e2104d54f92",
  6305. "shasum": ""
  6306. },
  6307. "require": {
  6308. "php": ">=8.1",
  6309. "symfony/service-contracts": "^2.5|^3"
  6310. },
  6311. "type": "library",
  6312. "autoload": {
  6313. "psr-4": {
  6314. "Symfony\\Component\\Stopwatch\\": ""
  6315. },
  6316. "exclude-from-classmap": [
  6317. "/Tests/"
  6318. ]
  6319. },
  6320. "notification-url": "https://packagist.org/downloads/",
  6321. "license": [
  6322. "MIT"
  6323. ],
  6324. "authors": [
  6325. {
  6326. "name": "Fabien Potencier",
  6327. "email": "fabien@symfony.com"
  6328. },
  6329. {
  6330. "name": "Symfony Community",
  6331. "homepage": "https://symfony.com/contributors"
  6332. }
  6333. ],
  6334. "description": "Provides a way to profile code",
  6335. "homepage": "https://symfony.com",
  6336. "support": {
  6337. "source": "https://github.com/symfony/stopwatch/tree/v6.4.13"
  6338. },
  6339. "funding": [
  6340. {
  6341. "url": "https://symfony.com/sponsor",
  6342. "type": "custom"
  6343. },
  6344. {
  6345. "url": "https://github.com/fabpot",
  6346. "type": "github"
  6347. },
  6348. {
  6349. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6350. "type": "tidelift"
  6351. }
  6352. ],
  6353. "time": "2024-09-25T14:18:03+00:00"
  6354. },
  6355. {
  6356. "name": "symfony/string",
  6357. "version": "v6.4.15",
  6358. "source": {
  6359. "type": "git",
  6360. "url": "https://github.com/symfony/string.git",
  6361. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f"
  6362. },
  6363. "dist": {
  6364. "type": "zip",
  6365. "url": "https://api.github.com/repos/symfony/string/zipball/73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  6366. "reference": "73a5e66ea2e1677c98d4449177c5a9cf9d8b4c6f",
  6367. "shasum": ""
  6368. },
  6369. "require": {
  6370. "php": ">=8.1",
  6371. "symfony/polyfill-ctype": "~1.8",
  6372. "symfony/polyfill-intl-grapheme": "~1.0",
  6373. "symfony/polyfill-intl-normalizer": "~1.0",
  6374. "symfony/polyfill-mbstring": "~1.0"
  6375. },
  6376. "conflict": {
  6377. "symfony/translation-contracts": "<2.5"
  6378. },
  6379. "require-dev": {
  6380. "symfony/error-handler": "^5.4|^6.0|^7.0",
  6381. "symfony/http-client": "^5.4|^6.0|^7.0",
  6382. "symfony/intl": "^6.2|^7.0",
  6383. "symfony/translation-contracts": "^2.5|^3.0",
  6384. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  6385. },
  6386. "type": "library",
  6387. "autoload": {
  6388. "files": [
  6389. "Resources/functions.php"
  6390. ],
  6391. "psr-4": {
  6392. "Symfony\\Component\\String\\": ""
  6393. },
  6394. "exclude-from-classmap": [
  6395. "/Tests/"
  6396. ]
  6397. },
  6398. "notification-url": "https://packagist.org/downloads/",
  6399. "license": [
  6400. "MIT"
  6401. ],
  6402. "authors": [
  6403. {
  6404. "name": "Nicolas Grekas",
  6405. "email": "p@tchwork.com"
  6406. },
  6407. {
  6408. "name": "Symfony Community",
  6409. "homepage": "https://symfony.com/contributors"
  6410. }
  6411. ],
  6412. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6413. "homepage": "https://symfony.com",
  6414. "keywords": [
  6415. "grapheme",
  6416. "i18n",
  6417. "string",
  6418. "unicode",
  6419. "utf-8",
  6420. "utf8"
  6421. ],
  6422. "support": {
  6423. "source": "https://github.com/symfony/string/tree/v6.4.15"
  6424. },
  6425. "funding": [
  6426. {
  6427. "url": "https://symfony.com/sponsor",
  6428. "type": "custom"
  6429. },
  6430. {
  6431. "url": "https://github.com/fabpot",
  6432. "type": "github"
  6433. },
  6434. {
  6435. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6436. "type": "tidelift"
  6437. }
  6438. ],
  6439. "time": "2024-11-13T13:31:12+00:00"
  6440. },
  6441. {
  6442. "name": "symfony/translation",
  6443. "version": "v6.4.13",
  6444. "source": {
  6445. "type": "git",
  6446. "url": "https://github.com/symfony/translation.git",
  6447. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66"
  6448. },
  6449. "dist": {
  6450. "type": "zip",
  6451. "url": "https://api.github.com/repos/symfony/translation/zipball/bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  6452. "reference": "bee9bfabfa8b4045a66bf82520e492cddbaffa66",
  6453. "shasum": ""
  6454. },
  6455. "require": {
  6456. "php": ">=8.1",
  6457. "symfony/deprecation-contracts": "^2.5|^3",
  6458. "symfony/polyfill-mbstring": "~1.0",
  6459. "symfony/translation-contracts": "^2.5|^3.0"
  6460. },
  6461. "conflict": {
  6462. "symfony/config": "<5.4",
  6463. "symfony/console": "<5.4",
  6464. "symfony/dependency-injection": "<5.4",
  6465. "symfony/http-client-contracts": "<2.5",
  6466. "symfony/http-kernel": "<5.4",
  6467. "symfony/service-contracts": "<2.5",
  6468. "symfony/twig-bundle": "<5.4",
  6469. "symfony/yaml": "<5.4"
  6470. },
  6471. "provide": {
  6472. "symfony/translation-implementation": "2.3|3.0"
  6473. },
  6474. "require-dev": {
  6475. "nikic/php-parser": "^4.18|^5.0",
  6476. "psr/log": "^1|^2|^3",
  6477. "symfony/config": "^5.4|^6.0|^7.0",
  6478. "symfony/console": "^5.4|^6.0|^7.0",
  6479. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6480. "symfony/finder": "^5.4|^6.0|^7.0",
  6481. "symfony/http-client-contracts": "^2.5|^3.0",
  6482. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6483. "symfony/intl": "^5.4|^6.0|^7.0",
  6484. "symfony/polyfill-intl-icu": "^1.21",
  6485. "symfony/routing": "^5.4|^6.0|^7.0",
  6486. "symfony/service-contracts": "^2.5|^3",
  6487. "symfony/yaml": "^5.4|^6.0|^7.0"
  6488. },
  6489. "type": "library",
  6490. "autoload": {
  6491. "files": [
  6492. "Resources/functions.php"
  6493. ],
  6494. "psr-4": {
  6495. "Symfony\\Component\\Translation\\": ""
  6496. },
  6497. "exclude-from-classmap": [
  6498. "/Tests/"
  6499. ]
  6500. },
  6501. "notification-url": "https://packagist.org/downloads/",
  6502. "license": [
  6503. "MIT"
  6504. ],
  6505. "authors": [
  6506. {
  6507. "name": "Fabien Potencier",
  6508. "email": "fabien@symfony.com"
  6509. },
  6510. {
  6511. "name": "Symfony Community",
  6512. "homepage": "https://symfony.com/contributors"
  6513. }
  6514. ],
  6515. "description": "Provides tools to internationalize your application",
  6516. "homepage": "https://symfony.com",
  6517. "support": {
  6518. "source": "https://github.com/symfony/translation/tree/v6.4.13"
  6519. },
  6520. "funding": [
  6521. {
  6522. "url": "https://symfony.com/sponsor",
  6523. "type": "custom"
  6524. },
  6525. {
  6526. "url": "https://github.com/fabpot",
  6527. "type": "github"
  6528. },
  6529. {
  6530. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6531. "type": "tidelift"
  6532. }
  6533. ],
  6534. "time": "2024-09-27T18:14:25+00:00"
  6535. },
  6536. {
  6537. "name": "symfony/translation-contracts",
  6538. "version": "v3.5.1",
  6539. "source": {
  6540. "type": "git",
  6541. "url": "https://github.com/symfony/translation-contracts.git",
  6542. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  6543. },
  6544. "dist": {
  6545. "type": "zip",
  6546. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  6547. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  6548. "shasum": ""
  6549. },
  6550. "require": {
  6551. "php": ">=8.1"
  6552. },
  6553. "type": "library",
  6554. "extra": {
  6555. "thanks": {
  6556. "url": "https://github.com/symfony/contracts",
  6557. "name": "symfony/contracts"
  6558. },
  6559. "branch-alias": {
  6560. "dev-main": "3.5-dev"
  6561. }
  6562. },
  6563. "autoload": {
  6564. "psr-4": {
  6565. "Symfony\\Contracts\\Translation\\": ""
  6566. },
  6567. "exclude-from-classmap": [
  6568. "/Test/"
  6569. ]
  6570. },
  6571. "notification-url": "https://packagist.org/downloads/",
  6572. "license": [
  6573. "MIT"
  6574. ],
  6575. "authors": [
  6576. {
  6577. "name": "Nicolas Grekas",
  6578. "email": "p@tchwork.com"
  6579. },
  6580. {
  6581. "name": "Symfony Community",
  6582. "homepage": "https://symfony.com/contributors"
  6583. }
  6584. ],
  6585. "description": "Generic abstractions related to translation",
  6586. "homepage": "https://symfony.com",
  6587. "keywords": [
  6588. "abstractions",
  6589. "contracts",
  6590. "decoupling",
  6591. "interfaces",
  6592. "interoperability",
  6593. "standards"
  6594. ],
  6595. "support": {
  6596. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  6597. },
  6598. "funding": [
  6599. {
  6600. "url": "https://symfony.com/sponsor",
  6601. "type": "custom"
  6602. },
  6603. {
  6604. "url": "https://github.com/fabpot",
  6605. "type": "github"
  6606. },
  6607. {
  6608. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6609. "type": "tidelift"
  6610. }
  6611. ],
  6612. "time": "2024-09-25T14:20:29+00:00"
  6613. },
  6614. {
  6615. "name": "symfony/twig-bridge",
  6616. "version": "v6.4.17",
  6617. "source": {
  6618. "type": "git",
  6619. "url": "https://github.com/symfony/twig-bridge.git",
  6620. "reference": "238e1aac992b5231c66faf10131ace7bdba97065"
  6621. },
  6622. "dist": {
  6623. "type": "zip",
  6624. "url": "https://api.github.com/repos/symfony/twig-bridge/zipball/238e1aac992b5231c66faf10131ace7bdba97065",
  6625. "reference": "238e1aac992b5231c66faf10131ace7bdba97065",
  6626. "shasum": ""
  6627. },
  6628. "require": {
  6629. "php": ">=8.1",
  6630. "symfony/deprecation-contracts": "^2.5|^3",
  6631. "symfony/translation-contracts": "^2.5|^3",
  6632. "twig/twig": "^2.13|^3.0.4"
  6633. },
  6634. "conflict": {
  6635. "phpdocumentor/reflection-docblock": "<3.2.2",
  6636. "phpdocumentor/type-resolver": "<1.4.0",
  6637. "symfony/console": "<5.4",
  6638. "symfony/form": "<6.3",
  6639. "symfony/http-foundation": "<5.4",
  6640. "symfony/http-kernel": "<6.4",
  6641. "symfony/mime": "<6.2",
  6642. "symfony/serializer": "<6.4",
  6643. "symfony/translation": "<5.4",
  6644. "symfony/workflow": "<5.4"
  6645. },
  6646. "require-dev": {
  6647. "egulias/email-validator": "^2.1.10|^3|^4",
  6648. "league/html-to-markdown": "^5.0",
  6649. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6650. "symfony/asset": "^5.4|^6.0|^7.0",
  6651. "symfony/asset-mapper": "^6.3|^7.0",
  6652. "symfony/console": "^5.4|^6.0|^7.0",
  6653. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6654. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6655. "symfony/finder": "^5.4|^6.0|^7.0",
  6656. "symfony/form": "^6.4|^7.0",
  6657. "symfony/html-sanitizer": "^6.1|^7.0",
  6658. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6659. "symfony/http-kernel": "^6.4|^7.0",
  6660. "symfony/intl": "^5.4|^6.0|^7.0",
  6661. "symfony/mime": "^6.2|^7.0",
  6662. "symfony/polyfill-intl-icu": "~1.0",
  6663. "symfony/property-info": "^5.4|^6.0|^7.0",
  6664. "symfony/routing": "^5.4|^6.0|^7.0",
  6665. "symfony/security-acl": "^2.8|^3.0",
  6666. "symfony/security-core": "^5.4|^6.0|^7.0",
  6667. "symfony/security-csrf": "^5.4|^6.0|^7.0",
  6668. "symfony/security-http": "^5.4|^6.0|^7.0",
  6669. "symfony/serializer": "^6.4.3|^7.0.3",
  6670. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6671. "symfony/translation": "^6.1|^7.0",
  6672. "symfony/web-link": "^5.4|^6.0|^7.0",
  6673. "symfony/workflow": "^5.4|^6.0|^7.0",
  6674. "symfony/yaml": "^5.4|^6.0|^7.0",
  6675. "twig/cssinliner-extra": "^2.12|^3",
  6676. "twig/inky-extra": "^2.12|^3",
  6677. "twig/markdown-extra": "^2.12|^3"
  6678. },
  6679. "type": "symfony-bridge",
  6680. "autoload": {
  6681. "psr-4": {
  6682. "Symfony\\Bridge\\Twig\\": ""
  6683. },
  6684. "exclude-from-classmap": [
  6685. "/Tests/"
  6686. ]
  6687. },
  6688. "notification-url": "https://packagist.org/downloads/",
  6689. "license": [
  6690. "MIT"
  6691. ],
  6692. "authors": [
  6693. {
  6694. "name": "Fabien Potencier",
  6695. "email": "fabien@symfony.com"
  6696. },
  6697. {
  6698. "name": "Symfony Community",
  6699. "homepage": "https://symfony.com/contributors"
  6700. }
  6701. ],
  6702. "description": "Provides integration for Twig with various Symfony components",
  6703. "homepage": "https://symfony.com",
  6704. "support": {
  6705. "source": "https://github.com/symfony/twig-bridge/tree/v6.4.17"
  6706. },
  6707. "funding": [
  6708. {
  6709. "url": "https://symfony.com/sponsor",
  6710. "type": "custom"
  6711. },
  6712. {
  6713. "url": "https://github.com/fabpot",
  6714. "type": "github"
  6715. },
  6716. {
  6717. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6718. "type": "tidelift"
  6719. }
  6720. ],
  6721. "time": "2024-12-19T14:08:41+00:00"
  6722. },
  6723. {
  6724. "name": "symfony/twig-bundle",
  6725. "version": "v6.4.13",
  6726. "source": {
  6727. "type": "git",
  6728. "url": "https://github.com/symfony/twig-bundle.git",
  6729. "reference": "c3beeb5336aba1ea03c37e526968c2fde3ef25c4"
  6730. },
  6731. "dist": {
  6732. "type": "zip",
  6733. "url": "https://api.github.com/repos/symfony/twig-bundle/zipball/c3beeb5336aba1ea03c37e526968c2fde3ef25c4",
  6734. "reference": "c3beeb5336aba1ea03c37e526968c2fde3ef25c4",
  6735. "shasum": ""
  6736. },
  6737. "require": {
  6738. "composer-runtime-api": ">=2.1",
  6739. "php": ">=8.1",
  6740. "symfony/config": "^6.1|^7.0",
  6741. "symfony/dependency-injection": "^6.1|^7.0",
  6742. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6743. "symfony/http-kernel": "^6.2",
  6744. "symfony/twig-bridge": "^6.4",
  6745. "twig/twig": "^2.13|^3.0.4"
  6746. },
  6747. "conflict": {
  6748. "symfony/framework-bundle": "<5.4",
  6749. "symfony/translation": "<5.4"
  6750. },
  6751. "require-dev": {
  6752. "symfony/asset": "^5.4|^6.0|^7.0",
  6753. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6754. "symfony/finder": "^5.4|^6.0|^7.0",
  6755. "symfony/form": "^5.4|^6.0|^7.0",
  6756. "symfony/framework-bundle": "^5.4|^6.0|^7.0",
  6757. "symfony/routing": "^5.4|^6.0|^7.0",
  6758. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6759. "symfony/translation": "^5.4|^6.0|^7.0",
  6760. "symfony/web-link": "^5.4|^6.0|^7.0",
  6761. "symfony/yaml": "^5.4|^6.0|^7.0"
  6762. },
  6763. "type": "symfony-bundle",
  6764. "autoload": {
  6765. "psr-4": {
  6766. "Symfony\\Bundle\\TwigBundle\\": ""
  6767. },
  6768. "exclude-from-classmap": [
  6769. "/Tests/"
  6770. ]
  6771. },
  6772. "notification-url": "https://packagist.org/downloads/",
  6773. "license": [
  6774. "MIT"
  6775. ],
  6776. "authors": [
  6777. {
  6778. "name": "Fabien Potencier",
  6779. "email": "fabien@symfony.com"
  6780. },
  6781. {
  6782. "name": "Symfony Community",
  6783. "homepage": "https://symfony.com/contributors"
  6784. }
  6785. ],
  6786. "description": "Provides a tight integration of Twig into the Symfony full-stack framework",
  6787. "homepage": "https://symfony.com",
  6788. "support": {
  6789. "source": "https://github.com/symfony/twig-bundle/tree/v6.4.13"
  6790. },
  6791. "funding": [
  6792. {
  6793. "url": "https://symfony.com/sponsor",
  6794. "type": "custom"
  6795. },
  6796. {
  6797. "url": "https://github.com/fabpot",
  6798. "type": "github"
  6799. },
  6800. {
  6801. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6802. "type": "tidelift"
  6803. }
  6804. ],
  6805. "time": "2024-09-25T14:18:03+00:00"
  6806. },
  6807. {
  6808. "name": "symfony/ux-turbo",
  6809. "version": "v2.22.1",
  6810. "source": {
  6811. "type": "git",
  6812. "url": "https://github.com/symfony/ux-turbo.git",
  6813. "reference": "97718ea4bca26f0db843c3c0de338d6900c5a002"
  6814. },
  6815. "dist": {
  6816. "type": "zip",
  6817. "url": "https://api.github.com/repos/symfony/ux-turbo/zipball/97718ea4bca26f0db843c3c0de338d6900c5a002",
  6818. "reference": "97718ea4bca26f0db843c3c0de338d6900c5a002",
  6819. "shasum": ""
  6820. },
  6821. "require": {
  6822. "php": ">=8.1",
  6823. "symfony/stimulus-bundle": "^2.9.1"
  6824. },
  6825. "conflict": {
  6826. "symfony/flex": "<1.13"
  6827. },
  6828. "require-dev": {
  6829. "dbrekelmans/bdi": "dev-main",
  6830. "doctrine/doctrine-bundle": "^2.4.3",
  6831. "doctrine/orm": "^2.8 | 3.0",
  6832. "phpstan/phpstan": "^1.10",
  6833. "symfony/asset-mapper": "^6.4|^7.0",
  6834. "symfony/debug-bundle": "^5.4|^6.0|^7.0",
  6835. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6836. "symfony/form": "^5.4|^6.0|^7.0",
  6837. "symfony/framework-bundle": "^6.4|^7.0",
  6838. "symfony/mercure-bundle": "^0.3.7",
  6839. "symfony/messenger": "^5.4|^6.0|^7.0",
  6840. "symfony/panther": "^2.1",
  6841. "symfony/phpunit-bridge": "^5.4|^6.0|^7.0",
  6842. "symfony/process": "^5.4|6.3.*|^7.0",
  6843. "symfony/property-access": "^5.4|^6.0|^7.0",
  6844. "symfony/security-core": "^5.4|^6.0|^7.0",
  6845. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  6846. "symfony/twig-bundle": "^6.4|^7.0",
  6847. "symfony/ux-twig-component": "^2.21",
  6848. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
  6849. },
  6850. "type": "symfony-bundle",
  6851. "extra": {
  6852. "thanks": {
  6853. "url": "https://github.com/symfony/ux",
  6854. "name": "symfony/ux"
  6855. }
  6856. },
  6857. "autoload": {
  6858. "psr-4": {
  6859. "Symfony\\UX\\Turbo\\": "src/"
  6860. }
  6861. },
  6862. "notification-url": "https://packagist.org/downloads/",
  6863. "license": [
  6864. "MIT"
  6865. ],
  6866. "authors": [
  6867. {
  6868. "name": "Kévin Dunglas",
  6869. "email": "kevin@dunglas.fr"
  6870. },
  6871. {
  6872. "name": "Symfony Community",
  6873. "homepage": "https://symfony.com/contributors"
  6874. }
  6875. ],
  6876. "description": "Hotwire Turbo integration for Symfony",
  6877. "homepage": "https://symfony.com",
  6878. "keywords": [
  6879. "hotwire",
  6880. "javascript",
  6881. "mercure",
  6882. "symfony-ux",
  6883. "turbo",
  6884. "turbo-stream"
  6885. ],
  6886. "support": {
  6887. "source": "https://github.com/symfony/ux-turbo/tree/v2.22.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": "2024-12-05T14:25:02+00:00"
  6904. },
  6905. {
  6906. "name": "symfony/validator",
  6907. "version": "v6.4.17",
  6908. "source": {
  6909. "type": "git",
  6910. "url": "https://github.com/symfony/validator.git",
  6911. "reference": "a3c19a0e542d427c207e22242043ef35b5b99a2c"
  6912. },
  6913. "dist": {
  6914. "type": "zip",
  6915. "url": "https://api.github.com/repos/symfony/validator/zipball/a3c19a0e542d427c207e22242043ef35b5b99a2c",
  6916. "reference": "a3c19a0e542d427c207e22242043ef35b5b99a2c",
  6917. "shasum": ""
  6918. },
  6919. "require": {
  6920. "php": ">=8.1",
  6921. "symfony/deprecation-contracts": "^2.5|^3",
  6922. "symfony/polyfill-ctype": "~1.8",
  6923. "symfony/polyfill-mbstring": "~1.0",
  6924. "symfony/polyfill-php83": "^1.27",
  6925. "symfony/translation-contracts": "^2.5|^3"
  6926. },
  6927. "conflict": {
  6928. "doctrine/annotations": "<1.13",
  6929. "doctrine/lexer": "<1.1",
  6930. "symfony/dependency-injection": "<5.4",
  6931. "symfony/expression-language": "<5.4",
  6932. "symfony/http-kernel": "<5.4",
  6933. "symfony/intl": "<5.4",
  6934. "symfony/property-info": "<5.4",
  6935. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  6936. "symfony/yaml": "<5.4"
  6937. },
  6938. "require-dev": {
  6939. "doctrine/annotations": "^1.13|^2",
  6940. "egulias/email-validator": "^2.1.10|^3|^4",
  6941. "symfony/cache": "^5.4|^6.0|^7.0",
  6942. "symfony/config": "^5.4|^6.0|^7.0",
  6943. "symfony/console": "^5.4|^6.0|^7.0",
  6944. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6945. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6946. "symfony/finder": "^5.4|^6.0|^7.0",
  6947. "symfony/http-client": "^5.4|^6.0|^7.0",
  6948. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6949. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6950. "symfony/intl": "^5.4|^6.0|^7.0",
  6951. "symfony/mime": "^5.4|^6.0|^7.0",
  6952. "symfony/property-access": "^5.4|^6.0|^7.0",
  6953. "symfony/property-info": "^5.4|^6.0|^7.0",
  6954. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  6955. "symfony/yaml": "^5.4|^6.0|^7.0"
  6956. },
  6957. "type": "library",
  6958. "autoload": {
  6959. "psr-4": {
  6960. "Symfony\\Component\\Validator\\": ""
  6961. },
  6962. "exclude-from-classmap": [
  6963. "/Tests/",
  6964. "/Resources/bin/"
  6965. ]
  6966. },
  6967. "notification-url": "https://packagist.org/downloads/",
  6968. "license": [
  6969. "MIT"
  6970. ],
  6971. "authors": [
  6972. {
  6973. "name": "Fabien Potencier",
  6974. "email": "fabien@symfony.com"
  6975. },
  6976. {
  6977. "name": "Symfony Community",
  6978. "homepage": "https://symfony.com/contributors"
  6979. }
  6980. ],
  6981. "description": "Provides tools to validate values",
  6982. "homepage": "https://symfony.com",
  6983. "support": {
  6984. "source": "https://github.com/symfony/validator/tree/v6.4.17"
  6985. },
  6986. "funding": [
  6987. {
  6988. "url": "https://symfony.com/sponsor",
  6989. "type": "custom"
  6990. },
  6991. {
  6992. "url": "https://github.com/fabpot",
  6993. "type": "github"
  6994. },
  6995. {
  6996. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6997. "type": "tidelift"
  6998. }
  6999. ],
  7000. "time": "2024-12-29T12:50:19+00:00"
  7001. },
  7002. {
  7003. "name": "symfony/var-dumper",
  7004. "version": "v6.4.15",
  7005. "source": {
  7006. "type": "git",
  7007. "url": "https://github.com/symfony/var-dumper.git",
  7008. "reference": "38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80"
  7009. },
  7010. "dist": {
  7011. "type": "zip",
  7012. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80",
  7013. "reference": "38254d5a5ac2e61f2b52f9caf54e7aa3c9d36b80",
  7014. "shasum": ""
  7015. },
  7016. "require": {
  7017. "php": ">=8.1",
  7018. "symfony/deprecation-contracts": "^2.5|^3",
  7019. "symfony/polyfill-mbstring": "~1.0"
  7020. },
  7021. "conflict": {
  7022. "symfony/console": "<5.4"
  7023. },
  7024. "require-dev": {
  7025. "ext-iconv": "*",
  7026. "symfony/console": "^5.4|^6.0|^7.0",
  7027. "symfony/error-handler": "^6.3|^7.0",
  7028. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  7029. "symfony/process": "^5.4|^6.0|^7.0",
  7030. "symfony/uid": "^5.4|^6.0|^7.0",
  7031. "twig/twig": "^2.13|^3.0.4"
  7032. },
  7033. "bin": [
  7034. "Resources/bin/var-dump-server"
  7035. ],
  7036. "type": "library",
  7037. "autoload": {
  7038. "files": [
  7039. "Resources/functions/dump.php"
  7040. ],
  7041. "psr-4": {
  7042. "Symfony\\Component\\VarDumper\\": ""
  7043. },
  7044. "exclude-from-classmap": [
  7045. "/Tests/"
  7046. ]
  7047. },
  7048. "notification-url": "https://packagist.org/downloads/",
  7049. "license": [
  7050. "MIT"
  7051. ],
  7052. "authors": [
  7053. {
  7054. "name": "Nicolas Grekas",
  7055. "email": "p@tchwork.com"
  7056. },
  7057. {
  7058. "name": "Symfony Community",
  7059. "homepage": "https://symfony.com/contributors"
  7060. }
  7061. ],
  7062. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7063. "homepage": "https://symfony.com",
  7064. "keywords": [
  7065. "debug",
  7066. "dump"
  7067. ],
  7068. "support": {
  7069. "source": "https://github.com/symfony/var-dumper/tree/v6.4.15"
  7070. },
  7071. "funding": [
  7072. {
  7073. "url": "https://symfony.com/sponsor",
  7074. "type": "custom"
  7075. },
  7076. {
  7077. "url": "https://github.com/fabpot",
  7078. "type": "github"
  7079. },
  7080. {
  7081. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7082. "type": "tidelift"
  7083. }
  7084. ],
  7085. "time": "2024-11-08T15:28:48+00:00"
  7086. },
  7087. {
  7088. "name": "symfony/var-exporter",
  7089. "version": "v6.4.13",
  7090. "source": {
  7091. "type": "git",
  7092. "url": "https://github.com/symfony/var-exporter.git",
  7093. "reference": "0f605f72a363f8743001038a176eeb2a11223b51"
  7094. },
  7095. "dist": {
  7096. "type": "zip",
  7097. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/0f605f72a363f8743001038a176eeb2a11223b51",
  7098. "reference": "0f605f72a363f8743001038a176eeb2a11223b51",
  7099. "shasum": ""
  7100. },
  7101. "require": {
  7102. "php": ">=8.1",
  7103. "symfony/deprecation-contracts": "^2.5|^3"
  7104. },
  7105. "require-dev": {
  7106. "symfony/property-access": "^6.4|^7.0",
  7107. "symfony/serializer": "^6.4|^7.0",
  7108. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7109. },
  7110. "type": "library",
  7111. "autoload": {
  7112. "psr-4": {
  7113. "Symfony\\Component\\VarExporter\\": ""
  7114. },
  7115. "exclude-from-classmap": [
  7116. "/Tests/"
  7117. ]
  7118. },
  7119. "notification-url": "https://packagist.org/downloads/",
  7120. "license": [
  7121. "MIT"
  7122. ],
  7123. "authors": [
  7124. {
  7125. "name": "Nicolas Grekas",
  7126. "email": "p@tchwork.com"
  7127. },
  7128. {
  7129. "name": "Symfony Community",
  7130. "homepage": "https://symfony.com/contributors"
  7131. }
  7132. ],
  7133. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  7134. "homepage": "https://symfony.com",
  7135. "keywords": [
  7136. "clone",
  7137. "construct",
  7138. "export",
  7139. "hydrate",
  7140. "instantiate",
  7141. "lazy-loading",
  7142. "proxy",
  7143. "serialize"
  7144. ],
  7145. "support": {
  7146. "source": "https://github.com/symfony/var-exporter/tree/v6.4.13"
  7147. },
  7148. "funding": [
  7149. {
  7150. "url": "https://symfony.com/sponsor",
  7151. "type": "custom"
  7152. },
  7153. {
  7154. "url": "https://github.com/fabpot",
  7155. "type": "github"
  7156. },
  7157. {
  7158. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7159. "type": "tidelift"
  7160. }
  7161. ],
  7162. "time": "2024-09-25T14:18:03+00:00"
  7163. },
  7164. {
  7165. "name": "symfony/web-link",
  7166. "version": "v6.4.13",
  7167. "source": {
  7168. "type": "git",
  7169. "url": "https://github.com/symfony/web-link.git",
  7170. "reference": "4d188b64bb9a9c5e2e4d20c8d5fdce6bbbb32c94"
  7171. },
  7172. "dist": {
  7173. "type": "zip",
  7174. "url": "https://api.github.com/repos/symfony/web-link/zipball/4d188b64bb9a9c5e2e4d20c8d5fdce6bbbb32c94",
  7175. "reference": "4d188b64bb9a9c5e2e4d20c8d5fdce6bbbb32c94",
  7176. "shasum": ""
  7177. },
  7178. "require": {
  7179. "php": ">=8.1",
  7180. "psr/link": "^1.1|^2.0"
  7181. },
  7182. "conflict": {
  7183. "symfony/http-kernel": "<5.4"
  7184. },
  7185. "provide": {
  7186. "psr/link-implementation": "1.0|2.0"
  7187. },
  7188. "require-dev": {
  7189. "symfony/http-kernel": "^5.4|^6.0|^7.0"
  7190. },
  7191. "type": "library",
  7192. "autoload": {
  7193. "psr-4": {
  7194. "Symfony\\Component\\WebLink\\": ""
  7195. },
  7196. "exclude-from-classmap": [
  7197. "/Tests/"
  7198. ]
  7199. },
  7200. "notification-url": "https://packagist.org/downloads/",
  7201. "license": [
  7202. "MIT"
  7203. ],
  7204. "authors": [
  7205. {
  7206. "name": "Kévin Dunglas",
  7207. "email": "dunglas@gmail.com"
  7208. },
  7209. {
  7210. "name": "Symfony Community",
  7211. "homepage": "https://symfony.com/contributors"
  7212. }
  7213. ],
  7214. "description": "Manages links between resources",
  7215. "homepage": "https://symfony.com",
  7216. "keywords": [
  7217. "dns-prefetch",
  7218. "http",
  7219. "http2",
  7220. "link",
  7221. "performance",
  7222. "prefetch",
  7223. "preload",
  7224. "prerender",
  7225. "psr13",
  7226. "push"
  7227. ],
  7228. "support": {
  7229. "source": "https://github.com/symfony/web-link/tree/v6.4.13"
  7230. },
  7231. "funding": [
  7232. {
  7233. "url": "https://symfony.com/sponsor",
  7234. "type": "custom"
  7235. },
  7236. {
  7237. "url": "https://github.com/fabpot",
  7238. "type": "github"
  7239. },
  7240. {
  7241. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7242. "type": "tidelift"
  7243. }
  7244. ],
  7245. "time": "2024-09-25T14:18:03+00:00"
  7246. },
  7247. {
  7248. "name": "symfony/webpack-encore-bundle",
  7249. "version": "v2.2.0",
  7250. "source": {
  7251. "type": "git",
  7252. "url": "https://github.com/symfony/webpack-encore-bundle.git",
  7253. "reference": "e335394b68a775a9b2bd173a8ba4fd2001f3870c"
  7254. },
  7255. "dist": {
  7256. "type": "zip",
  7257. "url": "https://api.github.com/repos/symfony/webpack-encore-bundle/zipball/e335394b68a775a9b2bd173a8ba4fd2001f3870c",
  7258. "reference": "e335394b68a775a9b2bd173a8ba4fd2001f3870c",
  7259. "shasum": ""
  7260. },
  7261. "require": {
  7262. "php": ">=8.1.0",
  7263. "symfony/asset": "^5.4 || ^6.2 || ^7.0",
  7264. "symfony/config": "^5.4 || ^6.2 || ^7.0",
  7265. "symfony/dependency-injection": "^5.4 || ^6.2 || ^7.0",
  7266. "symfony/http-kernel": "^5.4 || ^6.2 || ^7.0",
  7267. "symfony/service-contracts": "^1.1.9 || ^2.1.3 || ^3.0"
  7268. },
  7269. "require-dev": {
  7270. "symfony/framework-bundle": "^5.4 || ^6.2 || ^7.0",
  7271. "symfony/http-client": "^5.4 || ^6.2 || ^7.0",
  7272. "symfony/phpunit-bridge": "^5.4 || ^6.2 || ^7.0",
  7273. "symfony/twig-bundle": "^5.4 || ^6.2 || ^7.0",
  7274. "symfony/web-link": "^5.4 || ^6.2 || ^7.0"
  7275. },
  7276. "type": "symfony-bundle",
  7277. "extra": {
  7278. "thanks": {
  7279. "url": "https://github.com/symfony/webpack-encore",
  7280. "name": "symfony/webpack-encore"
  7281. }
  7282. },
  7283. "autoload": {
  7284. "psr-4": {
  7285. "Symfony\\WebpackEncoreBundle\\": "src"
  7286. }
  7287. },
  7288. "notification-url": "https://packagist.org/downloads/",
  7289. "license": [
  7290. "MIT"
  7291. ],
  7292. "authors": [
  7293. {
  7294. "name": "Symfony Community",
  7295. "homepage": "https://symfony.com/contributors"
  7296. }
  7297. ],
  7298. "description": "Integration of your Symfony app with Webpack Encore",
  7299. "support": {
  7300. "issues": "https://github.com/symfony/webpack-encore-bundle/issues",
  7301. "source": "https://github.com/symfony/webpack-encore-bundle/tree/v2.2.0"
  7302. },
  7303. "funding": [
  7304. {
  7305. "url": "https://symfony.com/sponsor",
  7306. "type": "custom"
  7307. },
  7308. {
  7309. "url": "https://github.com/fabpot",
  7310. "type": "github"
  7311. },
  7312. {
  7313. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7314. "type": "tidelift"
  7315. }
  7316. ],
  7317. "time": "2024-10-02T07:27:19+00:00"
  7318. },
  7319. {
  7320. "name": "symfony/yaml",
  7321. "version": "v6.4.13",
  7322. "source": {
  7323. "type": "git",
  7324. "url": "https://github.com/symfony/yaml.git",
  7325. "reference": "e99b4e94d124b29ee4cf3140e1b537d2dad8cec9"
  7326. },
  7327. "dist": {
  7328. "type": "zip",
  7329. "url": "https://api.github.com/repos/symfony/yaml/zipball/e99b4e94d124b29ee4cf3140e1b537d2dad8cec9",
  7330. "reference": "e99b4e94d124b29ee4cf3140e1b537d2dad8cec9",
  7331. "shasum": ""
  7332. },
  7333. "require": {
  7334. "php": ">=8.1",
  7335. "symfony/deprecation-contracts": "^2.5|^3",
  7336. "symfony/polyfill-ctype": "^1.8"
  7337. },
  7338. "conflict": {
  7339. "symfony/console": "<5.4"
  7340. },
  7341. "require-dev": {
  7342. "symfony/console": "^5.4|^6.0|^7.0"
  7343. },
  7344. "bin": [
  7345. "Resources/bin/yaml-lint"
  7346. ],
  7347. "type": "library",
  7348. "autoload": {
  7349. "psr-4": {
  7350. "Symfony\\Component\\Yaml\\": ""
  7351. },
  7352. "exclude-from-classmap": [
  7353. "/Tests/"
  7354. ]
  7355. },
  7356. "notification-url": "https://packagist.org/downloads/",
  7357. "license": [
  7358. "MIT"
  7359. ],
  7360. "authors": [
  7361. {
  7362. "name": "Fabien Potencier",
  7363. "email": "fabien@symfony.com"
  7364. },
  7365. {
  7366. "name": "Symfony Community",
  7367. "homepage": "https://symfony.com/contributors"
  7368. }
  7369. ],
  7370. "description": "Loads and dumps YAML files",
  7371. "homepage": "https://symfony.com",
  7372. "support": {
  7373. "source": "https://github.com/symfony/yaml/tree/v6.4.13"
  7374. },
  7375. "funding": [
  7376. {
  7377. "url": "https://symfony.com/sponsor",
  7378. "type": "custom"
  7379. },
  7380. {
  7381. "url": "https://github.com/fabpot",
  7382. "type": "github"
  7383. },
  7384. {
  7385. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7386. "type": "tidelift"
  7387. }
  7388. ],
  7389. "time": "2024-09-25T14:18:03+00:00"
  7390. },
  7391. {
  7392. "name": "tijsverkoyen/css-to-inline-styles",
  7393. "version": "v2.3.0",
  7394. "source": {
  7395. "type": "git",
  7396. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  7397. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  7398. },
  7399. "dist": {
  7400. "type": "zip",
  7401. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  7402. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  7403. "shasum": ""
  7404. },
  7405. "require": {
  7406. "ext-dom": "*",
  7407. "ext-libxml": "*",
  7408. "php": "^7.4 || ^8.0",
  7409. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  7410. },
  7411. "require-dev": {
  7412. "phpstan/phpstan": "^2.0",
  7413. "phpstan/phpstan-phpunit": "^2.0",
  7414. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  7415. },
  7416. "type": "library",
  7417. "extra": {
  7418. "branch-alias": {
  7419. "dev-master": "2.x-dev"
  7420. }
  7421. },
  7422. "autoload": {
  7423. "psr-4": {
  7424. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  7425. }
  7426. },
  7427. "notification-url": "https://packagist.org/downloads/",
  7428. "license": [
  7429. "BSD-3-Clause"
  7430. ],
  7431. "authors": [
  7432. {
  7433. "name": "Tijs Verkoyen",
  7434. "email": "css_to_inline_styles@verkoyen.eu",
  7435. "role": "Developer"
  7436. }
  7437. ],
  7438. "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.",
  7439. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  7440. "support": {
  7441. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  7442. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  7443. },
  7444. "time": "2024-12-21T16:25:41+00:00"
  7445. },
  7446. {
  7447. "name": "twig/cssinliner-extra",
  7448. "version": "v3.18.0",
  7449. "source": {
  7450. "type": "git",
  7451. "url": "https://github.com/twigphp/cssinliner-extra.git",
  7452. "reference": "cef36c444b1cce4c0978d7aebd20427671a918f4"
  7453. },
  7454. "dist": {
  7455. "type": "zip",
  7456. "url": "https://api.github.com/repos/twigphp/cssinliner-extra/zipball/cef36c444b1cce4c0978d7aebd20427671a918f4",
  7457. "reference": "cef36c444b1cce4c0978d7aebd20427671a918f4",
  7458. "shasum": ""
  7459. },
  7460. "require": {
  7461. "php": ">=8.0.2",
  7462. "symfony/deprecation-contracts": "^2.5|^3",
  7463. "tijsverkoyen/css-to-inline-styles": "^2.0",
  7464. "twig/twig": "^3.13|^4.0"
  7465. },
  7466. "require-dev": {
  7467. "symfony/phpunit-bridge": "^6.4|^7.0"
  7468. },
  7469. "type": "library",
  7470. "autoload": {
  7471. "files": [
  7472. "Resources/functions.php"
  7473. ],
  7474. "psr-4": {
  7475. "Twig\\Extra\\CssInliner\\": ""
  7476. },
  7477. "exclude-from-classmap": [
  7478. "/Tests/"
  7479. ]
  7480. },
  7481. "notification-url": "https://packagist.org/downloads/",
  7482. "license": [
  7483. "MIT"
  7484. ],
  7485. "authors": [
  7486. {
  7487. "name": "Fabien Potencier",
  7488. "email": "fabien@symfony.com",
  7489. "homepage": "http://fabien.potencier.org",
  7490. "role": "Lead Developer"
  7491. }
  7492. ],
  7493. "description": "A Twig extension to allow inlining CSS",
  7494. "homepage": "https://twig.symfony.com",
  7495. "keywords": [
  7496. "css",
  7497. "inlining",
  7498. "twig"
  7499. ],
  7500. "support": {
  7501. "source": "https://github.com/twigphp/cssinliner-extra/tree/v3.18.0"
  7502. },
  7503. "funding": [
  7504. {
  7505. "url": "https://github.com/fabpot",
  7506. "type": "github"
  7507. },
  7508. {
  7509. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7510. "type": "tidelift"
  7511. }
  7512. ],
  7513. "time": "2024-09-03T13:08:40+00:00"
  7514. },
  7515. {
  7516. "name": "twig/extra-bundle",
  7517. "version": "v3.18.0",
  7518. "source": {
  7519. "type": "git",
  7520. "url": "https://github.com/twigphp/twig-extra-bundle.git",
  7521. "reference": "9746573ca4bc1cd03a767a183faadaf84e0c31fa"
  7522. },
  7523. "dist": {
  7524. "type": "zip",
  7525. "url": "https://api.github.com/repos/twigphp/twig-extra-bundle/zipball/9746573ca4bc1cd03a767a183faadaf84e0c31fa",
  7526. "reference": "9746573ca4bc1cd03a767a183faadaf84e0c31fa",
  7527. "shasum": ""
  7528. },
  7529. "require": {
  7530. "php": ">=8.0.2",
  7531. "symfony/framework-bundle": "^5.4|^6.4|^7.0",
  7532. "symfony/twig-bundle": "^5.4|^6.4|^7.0",
  7533. "twig/twig": "^3.2|^4.0"
  7534. },
  7535. "require-dev": {
  7536. "league/commonmark": "^1.0|^2.0",
  7537. "symfony/phpunit-bridge": "^6.4|^7.0",
  7538. "twig/cache-extra": "^3.0",
  7539. "twig/cssinliner-extra": "^3.0",
  7540. "twig/html-extra": "^3.0",
  7541. "twig/inky-extra": "^3.0",
  7542. "twig/intl-extra": "^3.0",
  7543. "twig/markdown-extra": "^3.0",
  7544. "twig/string-extra": "^3.0"
  7545. },
  7546. "type": "symfony-bundle",
  7547. "autoload": {
  7548. "psr-4": {
  7549. "Twig\\Extra\\TwigExtraBundle\\": ""
  7550. },
  7551. "exclude-from-classmap": [
  7552. "/Tests/"
  7553. ]
  7554. },
  7555. "notification-url": "https://packagist.org/downloads/",
  7556. "license": [
  7557. "MIT"
  7558. ],
  7559. "authors": [
  7560. {
  7561. "name": "Fabien Potencier",
  7562. "email": "fabien@symfony.com",
  7563. "homepage": "http://fabien.potencier.org",
  7564. "role": "Lead Developer"
  7565. }
  7566. ],
  7567. "description": "A Symfony bundle for extra Twig extensions",
  7568. "homepage": "https://twig.symfony.com",
  7569. "keywords": [
  7570. "bundle",
  7571. "extra",
  7572. "twig"
  7573. ],
  7574. "support": {
  7575. "source": "https://github.com/twigphp/twig-extra-bundle/tree/v3.18.0"
  7576. },
  7577. "funding": [
  7578. {
  7579. "url": "https://github.com/fabpot",
  7580. "type": "github"
  7581. },
  7582. {
  7583. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7584. "type": "tidelift"
  7585. }
  7586. ],
  7587. "time": "2024-09-26T19:22:23+00:00"
  7588. },
  7589. {
  7590. "name": "twig/inky-extra",
  7591. "version": "v3.18.0",
  7592. "source": {
  7593. "type": "git",
  7594. "url": "https://github.com/twigphp/inky-extra.git",
  7595. "reference": "60c92c2a435ccd95d7a852229f01098aaf7fbced"
  7596. },
  7597. "dist": {
  7598. "type": "zip",
  7599. "url": "https://api.github.com/repos/twigphp/inky-extra/zipball/60c92c2a435ccd95d7a852229f01098aaf7fbced",
  7600. "reference": "60c92c2a435ccd95d7a852229f01098aaf7fbced",
  7601. "shasum": ""
  7602. },
  7603. "require": {
  7604. "lorenzo/pinky": "^1.0.5",
  7605. "php": ">=8.0.2",
  7606. "symfony/deprecation-contracts": "^2.5|^3",
  7607. "twig/twig": "^3.13|^4.0"
  7608. },
  7609. "require-dev": {
  7610. "symfony/phpunit-bridge": "^6.4|^7.0"
  7611. },
  7612. "type": "library",
  7613. "autoload": {
  7614. "files": [
  7615. "Resources/functions.php"
  7616. ],
  7617. "psr-4": {
  7618. "Twig\\Extra\\Inky\\": ""
  7619. },
  7620. "exclude-from-classmap": [
  7621. "/Tests/"
  7622. ]
  7623. },
  7624. "notification-url": "https://packagist.org/downloads/",
  7625. "license": [
  7626. "MIT"
  7627. ],
  7628. "authors": [
  7629. {
  7630. "name": "Fabien Potencier",
  7631. "email": "fabien@symfony.com",
  7632. "homepage": "http://fabien.potencier.org",
  7633. "role": "Lead Developer"
  7634. }
  7635. ],
  7636. "description": "A Twig extension for the inky email templating engine",
  7637. "homepage": "https://twig.symfony.com",
  7638. "keywords": [
  7639. "email",
  7640. "emails",
  7641. "inky",
  7642. "twig"
  7643. ],
  7644. "support": {
  7645. "source": "https://github.com/twigphp/inky-extra/tree/v3.18.0"
  7646. },
  7647. "funding": [
  7648. {
  7649. "url": "https://github.com/fabpot",
  7650. "type": "github"
  7651. },
  7652. {
  7653. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7654. "type": "tidelift"
  7655. }
  7656. ],
  7657. "time": "2024-09-03T13:08:40+00:00"
  7658. },
  7659. {
  7660. "name": "twig/twig",
  7661. "version": "v3.18.0",
  7662. "source": {
  7663. "type": "git",
  7664. "url": "https://github.com/twigphp/Twig.git",
  7665. "reference": "acffa88cc2b40dbe42eaf3a5025d6c0d4600cc50"
  7666. },
  7667. "dist": {
  7668. "type": "zip",
  7669. "url": "https://api.github.com/repos/twigphp/Twig/zipball/acffa88cc2b40dbe42eaf3a5025d6c0d4600cc50",
  7670. "reference": "acffa88cc2b40dbe42eaf3a5025d6c0d4600cc50",
  7671. "shasum": ""
  7672. },
  7673. "require": {
  7674. "php": ">=8.0.2",
  7675. "symfony/deprecation-contracts": "^2.5|^3",
  7676. "symfony/polyfill-ctype": "^1.8",
  7677. "symfony/polyfill-mbstring": "^1.3",
  7678. "symfony/polyfill-php81": "^1.29"
  7679. },
  7680. "require-dev": {
  7681. "phpstan/phpstan": "^2.0",
  7682. "psr/container": "^1.0|^2.0",
  7683. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  7684. },
  7685. "type": "library",
  7686. "autoload": {
  7687. "files": [
  7688. "src/Resources/core.php",
  7689. "src/Resources/debug.php",
  7690. "src/Resources/escaper.php",
  7691. "src/Resources/string_loader.php"
  7692. ],
  7693. "psr-4": {
  7694. "Twig\\": "src/"
  7695. }
  7696. },
  7697. "notification-url": "https://packagist.org/downloads/",
  7698. "license": [
  7699. "BSD-3-Clause"
  7700. ],
  7701. "authors": [
  7702. {
  7703. "name": "Fabien Potencier",
  7704. "email": "fabien@symfony.com",
  7705. "homepage": "http://fabien.potencier.org",
  7706. "role": "Lead Developer"
  7707. },
  7708. {
  7709. "name": "Twig Team",
  7710. "role": "Contributors"
  7711. },
  7712. {
  7713. "name": "Armin Ronacher",
  7714. "email": "armin.ronacher@active-4.com",
  7715. "role": "Project Founder"
  7716. }
  7717. ],
  7718. "description": "Twig, the flexible, fast, and secure template language for PHP",
  7719. "homepage": "https://twig.symfony.com",
  7720. "keywords": [
  7721. "templating"
  7722. ],
  7723. "support": {
  7724. "issues": "https://github.com/twigphp/Twig/issues",
  7725. "source": "https://github.com/twigphp/Twig/tree/v3.18.0"
  7726. },
  7727. "funding": [
  7728. {
  7729. "url": "https://github.com/fabpot",
  7730. "type": "github"
  7731. },
  7732. {
  7733. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  7734. "type": "tidelift"
  7735. }
  7736. ],
  7737. "time": "2024-12-29T10:51:50+00:00"
  7738. },
  7739. {
  7740. "name": "webmozart/assert",
  7741. "version": "1.11.0",
  7742. "source": {
  7743. "type": "git",
  7744. "url": "https://github.com/webmozarts/assert.git",
  7745. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  7746. },
  7747. "dist": {
  7748. "type": "zip",
  7749. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7750. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  7751. "shasum": ""
  7752. },
  7753. "require": {
  7754. "ext-ctype": "*",
  7755. "php": "^7.2 || ^8.0"
  7756. },
  7757. "conflict": {
  7758. "phpstan/phpstan": "<0.12.20",
  7759. "vimeo/psalm": "<4.6.1 || 4.6.2"
  7760. },
  7761. "require-dev": {
  7762. "phpunit/phpunit": "^8.5.13"
  7763. },
  7764. "type": "library",
  7765. "extra": {
  7766. "branch-alias": {
  7767. "dev-master": "1.10-dev"
  7768. }
  7769. },
  7770. "autoload": {
  7771. "psr-4": {
  7772. "Webmozart\\Assert\\": "src/"
  7773. }
  7774. },
  7775. "notification-url": "https://packagist.org/downloads/",
  7776. "license": [
  7777. "MIT"
  7778. ],
  7779. "authors": [
  7780. {
  7781. "name": "Bernhard Schussek",
  7782. "email": "bschussek@gmail.com"
  7783. }
  7784. ],
  7785. "description": "Assertions to validate method input/output with nice error messages.",
  7786. "keywords": [
  7787. "assert",
  7788. "check",
  7789. "validate"
  7790. ],
  7791. "support": {
  7792. "issues": "https://github.com/webmozarts/assert/issues",
  7793. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7794. },
  7795. "time": "2022-06-03T18:03:27+00:00"
  7796. }
  7797. ],
  7798. "packages-dev": [
  7799. {
  7800. "name": "masterminds/html5",
  7801. "version": "2.9.0",
  7802. "source": {
  7803. "type": "git",
  7804. "url": "https://github.com/Masterminds/html5-php.git",
  7805. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  7806. },
  7807. "dist": {
  7808. "type": "zip",
  7809. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  7810. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  7811. "shasum": ""
  7812. },
  7813. "require": {
  7814. "ext-dom": "*",
  7815. "php": ">=5.3.0"
  7816. },
  7817. "require-dev": {
  7818. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  7819. },
  7820. "type": "library",
  7821. "extra": {
  7822. "branch-alias": {
  7823. "dev-master": "2.7-dev"
  7824. }
  7825. },
  7826. "autoload": {
  7827. "psr-4": {
  7828. "Masterminds\\": "src"
  7829. }
  7830. },
  7831. "notification-url": "https://packagist.org/downloads/",
  7832. "license": [
  7833. "MIT"
  7834. ],
  7835. "authors": [
  7836. {
  7837. "name": "Matt Butcher",
  7838. "email": "technosophos@gmail.com"
  7839. },
  7840. {
  7841. "name": "Matt Farina",
  7842. "email": "matt@mattfarina.com"
  7843. },
  7844. {
  7845. "name": "Asmir Mustafic",
  7846. "email": "goetas@gmail.com"
  7847. }
  7848. ],
  7849. "description": "An HTML5 parser and serializer.",
  7850. "homepage": "http://masterminds.github.io/html5-php",
  7851. "keywords": [
  7852. "HTML5",
  7853. "dom",
  7854. "html",
  7855. "parser",
  7856. "querypath",
  7857. "serializer",
  7858. "xml"
  7859. ],
  7860. "support": {
  7861. "issues": "https://github.com/Masterminds/html5-php/issues",
  7862. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  7863. },
  7864. "time": "2024-03-31T07:05:07+00:00"
  7865. },
  7866. {
  7867. "name": "myclabs/deep-copy",
  7868. "version": "1.12.1",
  7869. "source": {
  7870. "type": "git",
  7871. "url": "https://github.com/myclabs/DeepCopy.git",
  7872. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  7873. },
  7874. "dist": {
  7875. "type": "zip",
  7876. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  7877. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  7878. "shasum": ""
  7879. },
  7880. "require": {
  7881. "php": "^7.1 || ^8.0"
  7882. },
  7883. "conflict": {
  7884. "doctrine/collections": "<1.6.8",
  7885. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  7886. },
  7887. "require-dev": {
  7888. "doctrine/collections": "^1.6.8",
  7889. "doctrine/common": "^2.13.3 || ^3.2.2",
  7890. "phpspec/prophecy": "^1.10",
  7891. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7892. },
  7893. "type": "library",
  7894. "autoload": {
  7895. "files": [
  7896. "src/DeepCopy/deep_copy.php"
  7897. ],
  7898. "psr-4": {
  7899. "DeepCopy\\": "src/DeepCopy/"
  7900. }
  7901. },
  7902. "notification-url": "https://packagist.org/downloads/",
  7903. "license": [
  7904. "MIT"
  7905. ],
  7906. "description": "Create deep copies (clones) of your objects",
  7907. "keywords": [
  7908. "clone",
  7909. "copy",
  7910. "duplicate",
  7911. "object",
  7912. "object graph"
  7913. ],
  7914. "support": {
  7915. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7916. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  7917. },
  7918. "funding": [
  7919. {
  7920. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7921. "type": "tidelift"
  7922. }
  7923. ],
  7924. "time": "2024-11-08T17:47:46+00:00"
  7925. },
  7926. {
  7927. "name": "nikic/php-parser",
  7928. "version": "v5.4.0",
  7929. "source": {
  7930. "type": "git",
  7931. "url": "https://github.com/nikic/PHP-Parser.git",
  7932. "reference": "447a020a1f875a434d62f2a401f53b82a396e494"
  7933. },
  7934. "dist": {
  7935. "type": "zip",
  7936. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/447a020a1f875a434d62f2a401f53b82a396e494",
  7937. "reference": "447a020a1f875a434d62f2a401f53b82a396e494",
  7938. "shasum": ""
  7939. },
  7940. "require": {
  7941. "ext-ctype": "*",
  7942. "ext-json": "*",
  7943. "ext-tokenizer": "*",
  7944. "php": ">=7.4"
  7945. },
  7946. "require-dev": {
  7947. "ircmaxell/php-yacc": "^0.0.7",
  7948. "phpunit/phpunit": "^9.0"
  7949. },
  7950. "bin": [
  7951. "bin/php-parse"
  7952. ],
  7953. "type": "library",
  7954. "extra": {
  7955. "branch-alias": {
  7956. "dev-master": "5.0-dev"
  7957. }
  7958. },
  7959. "autoload": {
  7960. "psr-4": {
  7961. "PhpParser\\": "lib/PhpParser"
  7962. }
  7963. },
  7964. "notification-url": "https://packagist.org/downloads/",
  7965. "license": [
  7966. "BSD-3-Clause"
  7967. ],
  7968. "authors": [
  7969. {
  7970. "name": "Nikita Popov"
  7971. }
  7972. ],
  7973. "description": "A PHP parser written in PHP",
  7974. "keywords": [
  7975. "parser",
  7976. "php"
  7977. ],
  7978. "support": {
  7979. "issues": "https://github.com/nikic/PHP-Parser/issues",
  7980. "source": "https://github.com/nikic/PHP-Parser/tree/v5.4.0"
  7981. },
  7982. "time": "2024-12-30T11:07:19+00:00"
  7983. },
  7984. {
  7985. "name": "phar-io/manifest",
  7986. "version": "2.0.4",
  7987. "source": {
  7988. "type": "git",
  7989. "url": "https://github.com/phar-io/manifest.git",
  7990. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7991. },
  7992. "dist": {
  7993. "type": "zip",
  7994. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7995. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7996. "shasum": ""
  7997. },
  7998. "require": {
  7999. "ext-dom": "*",
  8000. "ext-libxml": "*",
  8001. "ext-phar": "*",
  8002. "ext-xmlwriter": "*",
  8003. "phar-io/version": "^3.0.1",
  8004. "php": "^7.2 || ^8.0"
  8005. },
  8006. "type": "library",
  8007. "extra": {
  8008. "branch-alias": {
  8009. "dev-master": "2.0.x-dev"
  8010. }
  8011. },
  8012. "autoload": {
  8013. "classmap": [
  8014. "src/"
  8015. ]
  8016. },
  8017. "notification-url": "https://packagist.org/downloads/",
  8018. "license": [
  8019. "BSD-3-Clause"
  8020. ],
  8021. "authors": [
  8022. {
  8023. "name": "Arne Blankerts",
  8024. "email": "arne@blankerts.de",
  8025. "role": "Developer"
  8026. },
  8027. {
  8028. "name": "Sebastian Heuer",
  8029. "email": "sebastian@phpeople.de",
  8030. "role": "Developer"
  8031. },
  8032. {
  8033. "name": "Sebastian Bergmann",
  8034. "email": "sebastian@phpunit.de",
  8035. "role": "Developer"
  8036. }
  8037. ],
  8038. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8039. "support": {
  8040. "issues": "https://github.com/phar-io/manifest/issues",
  8041. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  8042. },
  8043. "funding": [
  8044. {
  8045. "url": "https://github.com/theseer",
  8046. "type": "github"
  8047. }
  8048. ],
  8049. "time": "2024-03-03T12:33:53+00:00"
  8050. },
  8051. {
  8052. "name": "phar-io/version",
  8053. "version": "3.2.1",
  8054. "source": {
  8055. "type": "git",
  8056. "url": "https://github.com/phar-io/version.git",
  8057. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  8058. },
  8059. "dist": {
  8060. "type": "zip",
  8061. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8062. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  8063. "shasum": ""
  8064. },
  8065. "require": {
  8066. "php": "^7.2 || ^8.0"
  8067. },
  8068. "type": "library",
  8069. "autoload": {
  8070. "classmap": [
  8071. "src/"
  8072. ]
  8073. },
  8074. "notification-url": "https://packagist.org/downloads/",
  8075. "license": [
  8076. "BSD-3-Clause"
  8077. ],
  8078. "authors": [
  8079. {
  8080. "name": "Arne Blankerts",
  8081. "email": "arne@blankerts.de",
  8082. "role": "Developer"
  8083. },
  8084. {
  8085. "name": "Sebastian Heuer",
  8086. "email": "sebastian@phpeople.de",
  8087. "role": "Developer"
  8088. },
  8089. {
  8090. "name": "Sebastian Bergmann",
  8091. "email": "sebastian@phpunit.de",
  8092. "role": "Developer"
  8093. }
  8094. ],
  8095. "description": "Library for handling version information and constraints",
  8096. "support": {
  8097. "issues": "https://github.com/phar-io/version/issues",
  8098. "source": "https://github.com/phar-io/version/tree/3.2.1"
  8099. },
  8100. "time": "2022-02-21T01:04:05+00:00"
  8101. },
  8102. {
  8103. "name": "phpunit/php-code-coverage",
  8104. "version": "9.2.32",
  8105. "source": {
  8106. "type": "git",
  8107. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8108. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  8109. },
  8110. "dist": {
  8111. "type": "zip",
  8112. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  8113. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  8114. "shasum": ""
  8115. },
  8116. "require": {
  8117. "ext-dom": "*",
  8118. "ext-libxml": "*",
  8119. "ext-xmlwriter": "*",
  8120. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  8121. "php": ">=7.3",
  8122. "phpunit/php-file-iterator": "^3.0.6",
  8123. "phpunit/php-text-template": "^2.0.4",
  8124. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  8125. "sebastian/complexity": "^2.0.3",
  8126. "sebastian/environment": "^5.1.5",
  8127. "sebastian/lines-of-code": "^1.0.4",
  8128. "sebastian/version": "^3.0.2",
  8129. "theseer/tokenizer": "^1.2.3"
  8130. },
  8131. "require-dev": {
  8132. "phpunit/phpunit": "^9.6"
  8133. },
  8134. "suggest": {
  8135. "ext-pcov": "PHP extension that provides line coverage",
  8136. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8137. },
  8138. "type": "library",
  8139. "extra": {
  8140. "branch-alias": {
  8141. "dev-main": "9.2.x-dev"
  8142. }
  8143. },
  8144. "autoload": {
  8145. "classmap": [
  8146. "src/"
  8147. ]
  8148. },
  8149. "notification-url": "https://packagist.org/downloads/",
  8150. "license": [
  8151. "BSD-3-Clause"
  8152. ],
  8153. "authors": [
  8154. {
  8155. "name": "Sebastian Bergmann",
  8156. "email": "sebastian@phpunit.de",
  8157. "role": "lead"
  8158. }
  8159. ],
  8160. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8161. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8162. "keywords": [
  8163. "coverage",
  8164. "testing",
  8165. "xunit"
  8166. ],
  8167. "support": {
  8168. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8169. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8170. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  8171. },
  8172. "funding": [
  8173. {
  8174. "url": "https://github.com/sebastianbergmann",
  8175. "type": "github"
  8176. }
  8177. ],
  8178. "time": "2024-08-22T04:23:01+00:00"
  8179. },
  8180. {
  8181. "name": "phpunit/php-file-iterator",
  8182. "version": "3.0.6",
  8183. "source": {
  8184. "type": "git",
  8185. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8186. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  8187. },
  8188. "dist": {
  8189. "type": "zip",
  8190. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8191. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  8192. "shasum": ""
  8193. },
  8194. "require": {
  8195. "php": ">=7.3"
  8196. },
  8197. "require-dev": {
  8198. "phpunit/phpunit": "^9.3"
  8199. },
  8200. "type": "library",
  8201. "extra": {
  8202. "branch-alias": {
  8203. "dev-master": "3.0-dev"
  8204. }
  8205. },
  8206. "autoload": {
  8207. "classmap": [
  8208. "src/"
  8209. ]
  8210. },
  8211. "notification-url": "https://packagist.org/downloads/",
  8212. "license": [
  8213. "BSD-3-Clause"
  8214. ],
  8215. "authors": [
  8216. {
  8217. "name": "Sebastian Bergmann",
  8218. "email": "sebastian@phpunit.de",
  8219. "role": "lead"
  8220. }
  8221. ],
  8222. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8223. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8224. "keywords": [
  8225. "filesystem",
  8226. "iterator"
  8227. ],
  8228. "support": {
  8229. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8230. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  8231. },
  8232. "funding": [
  8233. {
  8234. "url": "https://github.com/sebastianbergmann",
  8235. "type": "github"
  8236. }
  8237. ],
  8238. "time": "2021-12-02T12:48:52+00:00"
  8239. },
  8240. {
  8241. "name": "phpunit/php-invoker",
  8242. "version": "3.1.1",
  8243. "source": {
  8244. "type": "git",
  8245. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8246. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  8247. },
  8248. "dist": {
  8249. "type": "zip",
  8250. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8251. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  8252. "shasum": ""
  8253. },
  8254. "require": {
  8255. "php": ">=7.3"
  8256. },
  8257. "require-dev": {
  8258. "ext-pcntl": "*",
  8259. "phpunit/phpunit": "^9.3"
  8260. },
  8261. "suggest": {
  8262. "ext-pcntl": "*"
  8263. },
  8264. "type": "library",
  8265. "extra": {
  8266. "branch-alias": {
  8267. "dev-master": "3.1-dev"
  8268. }
  8269. },
  8270. "autoload": {
  8271. "classmap": [
  8272. "src/"
  8273. ]
  8274. },
  8275. "notification-url": "https://packagist.org/downloads/",
  8276. "license": [
  8277. "BSD-3-Clause"
  8278. ],
  8279. "authors": [
  8280. {
  8281. "name": "Sebastian Bergmann",
  8282. "email": "sebastian@phpunit.de",
  8283. "role": "lead"
  8284. }
  8285. ],
  8286. "description": "Invoke callables with a timeout",
  8287. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8288. "keywords": [
  8289. "process"
  8290. ],
  8291. "support": {
  8292. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8293. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  8294. },
  8295. "funding": [
  8296. {
  8297. "url": "https://github.com/sebastianbergmann",
  8298. "type": "github"
  8299. }
  8300. ],
  8301. "time": "2020-09-28T05:58:55+00:00"
  8302. },
  8303. {
  8304. "name": "phpunit/php-text-template",
  8305. "version": "2.0.4",
  8306. "source": {
  8307. "type": "git",
  8308. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8309. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  8310. },
  8311. "dist": {
  8312. "type": "zip",
  8313. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8314. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  8315. "shasum": ""
  8316. },
  8317. "require": {
  8318. "php": ">=7.3"
  8319. },
  8320. "require-dev": {
  8321. "phpunit/phpunit": "^9.3"
  8322. },
  8323. "type": "library",
  8324. "extra": {
  8325. "branch-alias": {
  8326. "dev-master": "2.0-dev"
  8327. }
  8328. },
  8329. "autoload": {
  8330. "classmap": [
  8331. "src/"
  8332. ]
  8333. },
  8334. "notification-url": "https://packagist.org/downloads/",
  8335. "license": [
  8336. "BSD-3-Clause"
  8337. ],
  8338. "authors": [
  8339. {
  8340. "name": "Sebastian Bergmann",
  8341. "email": "sebastian@phpunit.de",
  8342. "role": "lead"
  8343. }
  8344. ],
  8345. "description": "Simple template engine.",
  8346. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8347. "keywords": [
  8348. "template"
  8349. ],
  8350. "support": {
  8351. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8352. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8353. },
  8354. "funding": [
  8355. {
  8356. "url": "https://github.com/sebastianbergmann",
  8357. "type": "github"
  8358. }
  8359. ],
  8360. "time": "2020-10-26T05:33:50+00:00"
  8361. },
  8362. {
  8363. "name": "phpunit/php-timer",
  8364. "version": "5.0.3",
  8365. "source": {
  8366. "type": "git",
  8367. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8368. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8369. },
  8370. "dist": {
  8371. "type": "zip",
  8372. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8373. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8374. "shasum": ""
  8375. },
  8376. "require": {
  8377. "php": ">=7.3"
  8378. },
  8379. "require-dev": {
  8380. "phpunit/phpunit": "^9.3"
  8381. },
  8382. "type": "library",
  8383. "extra": {
  8384. "branch-alias": {
  8385. "dev-master": "5.0-dev"
  8386. }
  8387. },
  8388. "autoload": {
  8389. "classmap": [
  8390. "src/"
  8391. ]
  8392. },
  8393. "notification-url": "https://packagist.org/downloads/",
  8394. "license": [
  8395. "BSD-3-Clause"
  8396. ],
  8397. "authors": [
  8398. {
  8399. "name": "Sebastian Bergmann",
  8400. "email": "sebastian@phpunit.de",
  8401. "role": "lead"
  8402. }
  8403. ],
  8404. "description": "Utility class for timing",
  8405. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8406. "keywords": [
  8407. "timer"
  8408. ],
  8409. "support": {
  8410. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8411. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8412. },
  8413. "funding": [
  8414. {
  8415. "url": "https://github.com/sebastianbergmann",
  8416. "type": "github"
  8417. }
  8418. ],
  8419. "time": "2020-10-26T13:16:10+00:00"
  8420. },
  8421. {
  8422. "name": "phpunit/phpunit",
  8423. "version": "9.6.22",
  8424. "source": {
  8425. "type": "git",
  8426. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8427. "reference": "f80235cb4d3caa59ae09be3adf1ded27521d1a9c"
  8428. },
  8429. "dist": {
  8430. "type": "zip",
  8431. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f80235cb4d3caa59ae09be3adf1ded27521d1a9c",
  8432. "reference": "f80235cb4d3caa59ae09be3adf1ded27521d1a9c",
  8433. "shasum": ""
  8434. },
  8435. "require": {
  8436. "doctrine/instantiator": "^1.5.0 || ^2",
  8437. "ext-dom": "*",
  8438. "ext-json": "*",
  8439. "ext-libxml": "*",
  8440. "ext-mbstring": "*",
  8441. "ext-xml": "*",
  8442. "ext-xmlwriter": "*",
  8443. "myclabs/deep-copy": "^1.12.1",
  8444. "phar-io/manifest": "^2.0.4",
  8445. "phar-io/version": "^3.2.1",
  8446. "php": ">=7.3",
  8447. "phpunit/php-code-coverage": "^9.2.32",
  8448. "phpunit/php-file-iterator": "^3.0.6",
  8449. "phpunit/php-invoker": "^3.1.1",
  8450. "phpunit/php-text-template": "^2.0.4",
  8451. "phpunit/php-timer": "^5.0.3",
  8452. "sebastian/cli-parser": "^1.0.2",
  8453. "sebastian/code-unit": "^1.0.8",
  8454. "sebastian/comparator": "^4.0.8",
  8455. "sebastian/diff": "^4.0.6",
  8456. "sebastian/environment": "^5.1.5",
  8457. "sebastian/exporter": "^4.0.6",
  8458. "sebastian/global-state": "^5.0.7",
  8459. "sebastian/object-enumerator": "^4.0.4",
  8460. "sebastian/resource-operations": "^3.0.4",
  8461. "sebastian/type": "^3.2.1",
  8462. "sebastian/version": "^3.0.2"
  8463. },
  8464. "suggest": {
  8465. "ext-soap": "To be able to generate mocks based on WSDL files",
  8466. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8467. },
  8468. "bin": [
  8469. "phpunit"
  8470. ],
  8471. "type": "library",
  8472. "extra": {
  8473. "branch-alias": {
  8474. "dev-master": "9.6-dev"
  8475. }
  8476. },
  8477. "autoload": {
  8478. "files": [
  8479. "src/Framework/Assert/Functions.php"
  8480. ],
  8481. "classmap": [
  8482. "src/"
  8483. ]
  8484. },
  8485. "notification-url": "https://packagist.org/downloads/",
  8486. "license": [
  8487. "BSD-3-Clause"
  8488. ],
  8489. "authors": [
  8490. {
  8491. "name": "Sebastian Bergmann",
  8492. "email": "sebastian@phpunit.de",
  8493. "role": "lead"
  8494. }
  8495. ],
  8496. "description": "The PHP Unit Testing framework.",
  8497. "homepage": "https://phpunit.de/",
  8498. "keywords": [
  8499. "phpunit",
  8500. "testing",
  8501. "xunit"
  8502. ],
  8503. "support": {
  8504. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8505. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8506. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.22"
  8507. },
  8508. "funding": [
  8509. {
  8510. "url": "https://phpunit.de/sponsors.html",
  8511. "type": "custom"
  8512. },
  8513. {
  8514. "url": "https://github.com/sebastianbergmann",
  8515. "type": "github"
  8516. },
  8517. {
  8518. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8519. "type": "tidelift"
  8520. }
  8521. ],
  8522. "time": "2024-12-05T13:48:26+00:00"
  8523. },
  8524. {
  8525. "name": "sebastian/cli-parser",
  8526. "version": "1.0.2",
  8527. "source": {
  8528. "type": "git",
  8529. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8530. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  8531. },
  8532. "dist": {
  8533. "type": "zip",
  8534. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  8535. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  8536. "shasum": ""
  8537. },
  8538. "require": {
  8539. "php": ">=7.3"
  8540. },
  8541. "require-dev": {
  8542. "phpunit/phpunit": "^9.3"
  8543. },
  8544. "type": "library",
  8545. "extra": {
  8546. "branch-alias": {
  8547. "dev-master": "1.0-dev"
  8548. }
  8549. },
  8550. "autoload": {
  8551. "classmap": [
  8552. "src/"
  8553. ]
  8554. },
  8555. "notification-url": "https://packagist.org/downloads/",
  8556. "license": [
  8557. "BSD-3-Clause"
  8558. ],
  8559. "authors": [
  8560. {
  8561. "name": "Sebastian Bergmann",
  8562. "email": "sebastian@phpunit.de",
  8563. "role": "lead"
  8564. }
  8565. ],
  8566. "description": "Library for parsing CLI options",
  8567. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8568. "support": {
  8569. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8570. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  8571. },
  8572. "funding": [
  8573. {
  8574. "url": "https://github.com/sebastianbergmann",
  8575. "type": "github"
  8576. }
  8577. ],
  8578. "time": "2024-03-02T06:27:43+00:00"
  8579. },
  8580. {
  8581. "name": "sebastian/code-unit",
  8582. "version": "1.0.8",
  8583. "source": {
  8584. "type": "git",
  8585. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8586. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  8587. },
  8588. "dist": {
  8589. "type": "zip",
  8590. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8591. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8592. "shasum": ""
  8593. },
  8594. "require": {
  8595. "php": ">=7.3"
  8596. },
  8597. "require-dev": {
  8598. "phpunit/phpunit": "^9.3"
  8599. },
  8600. "type": "library",
  8601. "extra": {
  8602. "branch-alias": {
  8603. "dev-master": "1.0-dev"
  8604. }
  8605. },
  8606. "autoload": {
  8607. "classmap": [
  8608. "src/"
  8609. ]
  8610. },
  8611. "notification-url": "https://packagist.org/downloads/",
  8612. "license": [
  8613. "BSD-3-Clause"
  8614. ],
  8615. "authors": [
  8616. {
  8617. "name": "Sebastian Bergmann",
  8618. "email": "sebastian@phpunit.de",
  8619. "role": "lead"
  8620. }
  8621. ],
  8622. "description": "Collection of value objects that represent the PHP code units",
  8623. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8624. "support": {
  8625. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8626. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  8627. },
  8628. "funding": [
  8629. {
  8630. "url": "https://github.com/sebastianbergmann",
  8631. "type": "github"
  8632. }
  8633. ],
  8634. "time": "2020-10-26T13:08:54+00:00"
  8635. },
  8636. {
  8637. "name": "sebastian/code-unit-reverse-lookup",
  8638. "version": "2.0.3",
  8639. "source": {
  8640. "type": "git",
  8641. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8642. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  8643. },
  8644. "dist": {
  8645. "type": "zip",
  8646. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8647. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8648. "shasum": ""
  8649. },
  8650. "require": {
  8651. "php": ">=7.3"
  8652. },
  8653. "require-dev": {
  8654. "phpunit/phpunit": "^9.3"
  8655. },
  8656. "type": "library",
  8657. "extra": {
  8658. "branch-alias": {
  8659. "dev-master": "2.0-dev"
  8660. }
  8661. },
  8662. "autoload": {
  8663. "classmap": [
  8664. "src/"
  8665. ]
  8666. },
  8667. "notification-url": "https://packagist.org/downloads/",
  8668. "license": [
  8669. "BSD-3-Clause"
  8670. ],
  8671. "authors": [
  8672. {
  8673. "name": "Sebastian Bergmann",
  8674. "email": "sebastian@phpunit.de"
  8675. }
  8676. ],
  8677. "description": "Looks up which function or method a line of code belongs to",
  8678. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8679. "support": {
  8680. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8681. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  8682. },
  8683. "funding": [
  8684. {
  8685. "url": "https://github.com/sebastianbergmann",
  8686. "type": "github"
  8687. }
  8688. ],
  8689. "time": "2020-09-28T05:30:19+00:00"
  8690. },
  8691. {
  8692. "name": "sebastian/comparator",
  8693. "version": "4.0.8",
  8694. "source": {
  8695. "type": "git",
  8696. "url": "https://github.com/sebastianbergmann/comparator.git",
  8697. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  8698. },
  8699. "dist": {
  8700. "type": "zip",
  8701. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  8702. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  8703. "shasum": ""
  8704. },
  8705. "require": {
  8706. "php": ">=7.3",
  8707. "sebastian/diff": "^4.0",
  8708. "sebastian/exporter": "^4.0"
  8709. },
  8710. "require-dev": {
  8711. "phpunit/phpunit": "^9.3"
  8712. },
  8713. "type": "library",
  8714. "extra": {
  8715. "branch-alias": {
  8716. "dev-master": "4.0-dev"
  8717. }
  8718. },
  8719. "autoload": {
  8720. "classmap": [
  8721. "src/"
  8722. ]
  8723. },
  8724. "notification-url": "https://packagist.org/downloads/",
  8725. "license": [
  8726. "BSD-3-Clause"
  8727. ],
  8728. "authors": [
  8729. {
  8730. "name": "Sebastian Bergmann",
  8731. "email": "sebastian@phpunit.de"
  8732. },
  8733. {
  8734. "name": "Jeff Welch",
  8735. "email": "whatthejeff@gmail.com"
  8736. },
  8737. {
  8738. "name": "Volker Dusch",
  8739. "email": "github@wallbash.com"
  8740. },
  8741. {
  8742. "name": "Bernhard Schussek",
  8743. "email": "bschussek@2bepublished.at"
  8744. }
  8745. ],
  8746. "description": "Provides the functionality to compare PHP values for equality",
  8747. "homepage": "https://github.com/sebastianbergmann/comparator",
  8748. "keywords": [
  8749. "comparator",
  8750. "compare",
  8751. "equality"
  8752. ],
  8753. "support": {
  8754. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8755. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  8756. },
  8757. "funding": [
  8758. {
  8759. "url": "https://github.com/sebastianbergmann",
  8760. "type": "github"
  8761. }
  8762. ],
  8763. "time": "2022-09-14T12:41:17+00:00"
  8764. },
  8765. {
  8766. "name": "sebastian/complexity",
  8767. "version": "2.0.3",
  8768. "source": {
  8769. "type": "git",
  8770. "url": "https://github.com/sebastianbergmann/complexity.git",
  8771. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  8772. },
  8773. "dist": {
  8774. "type": "zip",
  8775. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  8776. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  8777. "shasum": ""
  8778. },
  8779. "require": {
  8780. "nikic/php-parser": "^4.18 || ^5.0",
  8781. "php": ">=7.3"
  8782. },
  8783. "require-dev": {
  8784. "phpunit/phpunit": "^9.3"
  8785. },
  8786. "type": "library",
  8787. "extra": {
  8788. "branch-alias": {
  8789. "dev-master": "2.0-dev"
  8790. }
  8791. },
  8792. "autoload": {
  8793. "classmap": [
  8794. "src/"
  8795. ]
  8796. },
  8797. "notification-url": "https://packagist.org/downloads/",
  8798. "license": [
  8799. "BSD-3-Clause"
  8800. ],
  8801. "authors": [
  8802. {
  8803. "name": "Sebastian Bergmann",
  8804. "email": "sebastian@phpunit.de",
  8805. "role": "lead"
  8806. }
  8807. ],
  8808. "description": "Library for calculating the complexity of PHP code units",
  8809. "homepage": "https://github.com/sebastianbergmann/complexity",
  8810. "support": {
  8811. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8812. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  8813. },
  8814. "funding": [
  8815. {
  8816. "url": "https://github.com/sebastianbergmann",
  8817. "type": "github"
  8818. }
  8819. ],
  8820. "time": "2023-12-22T06:19:30+00:00"
  8821. },
  8822. {
  8823. "name": "sebastian/diff",
  8824. "version": "4.0.6",
  8825. "source": {
  8826. "type": "git",
  8827. "url": "https://github.com/sebastianbergmann/diff.git",
  8828. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  8829. },
  8830. "dist": {
  8831. "type": "zip",
  8832. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  8833. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  8834. "shasum": ""
  8835. },
  8836. "require": {
  8837. "php": ">=7.3"
  8838. },
  8839. "require-dev": {
  8840. "phpunit/phpunit": "^9.3",
  8841. "symfony/process": "^4.2 || ^5"
  8842. },
  8843. "type": "library",
  8844. "extra": {
  8845. "branch-alias": {
  8846. "dev-master": "4.0-dev"
  8847. }
  8848. },
  8849. "autoload": {
  8850. "classmap": [
  8851. "src/"
  8852. ]
  8853. },
  8854. "notification-url": "https://packagist.org/downloads/",
  8855. "license": [
  8856. "BSD-3-Clause"
  8857. ],
  8858. "authors": [
  8859. {
  8860. "name": "Sebastian Bergmann",
  8861. "email": "sebastian@phpunit.de"
  8862. },
  8863. {
  8864. "name": "Kore Nordmann",
  8865. "email": "mail@kore-nordmann.de"
  8866. }
  8867. ],
  8868. "description": "Diff implementation",
  8869. "homepage": "https://github.com/sebastianbergmann/diff",
  8870. "keywords": [
  8871. "diff",
  8872. "udiff",
  8873. "unidiff",
  8874. "unified diff"
  8875. ],
  8876. "support": {
  8877. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8878. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  8879. },
  8880. "funding": [
  8881. {
  8882. "url": "https://github.com/sebastianbergmann",
  8883. "type": "github"
  8884. }
  8885. ],
  8886. "time": "2024-03-02T06:30:58+00:00"
  8887. },
  8888. {
  8889. "name": "sebastian/environment",
  8890. "version": "5.1.5",
  8891. "source": {
  8892. "type": "git",
  8893. "url": "https://github.com/sebastianbergmann/environment.git",
  8894. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  8895. },
  8896. "dist": {
  8897. "type": "zip",
  8898. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  8899. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  8900. "shasum": ""
  8901. },
  8902. "require": {
  8903. "php": ">=7.3"
  8904. },
  8905. "require-dev": {
  8906. "phpunit/phpunit": "^9.3"
  8907. },
  8908. "suggest": {
  8909. "ext-posix": "*"
  8910. },
  8911. "type": "library",
  8912. "extra": {
  8913. "branch-alias": {
  8914. "dev-master": "5.1-dev"
  8915. }
  8916. },
  8917. "autoload": {
  8918. "classmap": [
  8919. "src/"
  8920. ]
  8921. },
  8922. "notification-url": "https://packagist.org/downloads/",
  8923. "license": [
  8924. "BSD-3-Clause"
  8925. ],
  8926. "authors": [
  8927. {
  8928. "name": "Sebastian Bergmann",
  8929. "email": "sebastian@phpunit.de"
  8930. }
  8931. ],
  8932. "description": "Provides functionality to handle HHVM/PHP environments",
  8933. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8934. "keywords": [
  8935. "Xdebug",
  8936. "environment",
  8937. "hhvm"
  8938. ],
  8939. "support": {
  8940. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8941. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  8942. },
  8943. "funding": [
  8944. {
  8945. "url": "https://github.com/sebastianbergmann",
  8946. "type": "github"
  8947. }
  8948. ],
  8949. "time": "2023-02-03T06:03:51+00:00"
  8950. },
  8951. {
  8952. "name": "sebastian/exporter",
  8953. "version": "4.0.6",
  8954. "source": {
  8955. "type": "git",
  8956. "url": "https://github.com/sebastianbergmann/exporter.git",
  8957. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  8958. },
  8959. "dist": {
  8960. "type": "zip",
  8961. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  8962. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  8963. "shasum": ""
  8964. },
  8965. "require": {
  8966. "php": ">=7.3",
  8967. "sebastian/recursion-context": "^4.0"
  8968. },
  8969. "require-dev": {
  8970. "ext-mbstring": "*",
  8971. "phpunit/phpunit": "^9.3"
  8972. },
  8973. "type": "library",
  8974. "extra": {
  8975. "branch-alias": {
  8976. "dev-master": "4.0-dev"
  8977. }
  8978. },
  8979. "autoload": {
  8980. "classmap": [
  8981. "src/"
  8982. ]
  8983. },
  8984. "notification-url": "https://packagist.org/downloads/",
  8985. "license": [
  8986. "BSD-3-Clause"
  8987. ],
  8988. "authors": [
  8989. {
  8990. "name": "Sebastian Bergmann",
  8991. "email": "sebastian@phpunit.de"
  8992. },
  8993. {
  8994. "name": "Jeff Welch",
  8995. "email": "whatthejeff@gmail.com"
  8996. },
  8997. {
  8998. "name": "Volker Dusch",
  8999. "email": "github@wallbash.com"
  9000. },
  9001. {
  9002. "name": "Adam Harvey",
  9003. "email": "aharvey@php.net"
  9004. },
  9005. {
  9006. "name": "Bernhard Schussek",
  9007. "email": "bschussek@gmail.com"
  9008. }
  9009. ],
  9010. "description": "Provides the functionality to export PHP variables for visualization",
  9011. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  9012. "keywords": [
  9013. "export",
  9014. "exporter"
  9015. ],
  9016. "support": {
  9017. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  9018. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  9019. },
  9020. "funding": [
  9021. {
  9022. "url": "https://github.com/sebastianbergmann",
  9023. "type": "github"
  9024. }
  9025. ],
  9026. "time": "2024-03-02T06:33:00+00:00"
  9027. },
  9028. {
  9029. "name": "sebastian/global-state",
  9030. "version": "5.0.7",
  9031. "source": {
  9032. "type": "git",
  9033. "url": "https://github.com/sebastianbergmann/global-state.git",
  9034. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  9035. },
  9036. "dist": {
  9037. "type": "zip",
  9038. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  9039. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  9040. "shasum": ""
  9041. },
  9042. "require": {
  9043. "php": ">=7.3",
  9044. "sebastian/object-reflector": "^2.0",
  9045. "sebastian/recursion-context": "^4.0"
  9046. },
  9047. "require-dev": {
  9048. "ext-dom": "*",
  9049. "phpunit/phpunit": "^9.3"
  9050. },
  9051. "suggest": {
  9052. "ext-uopz": "*"
  9053. },
  9054. "type": "library",
  9055. "extra": {
  9056. "branch-alias": {
  9057. "dev-master": "5.0-dev"
  9058. }
  9059. },
  9060. "autoload": {
  9061. "classmap": [
  9062. "src/"
  9063. ]
  9064. },
  9065. "notification-url": "https://packagist.org/downloads/",
  9066. "license": [
  9067. "BSD-3-Clause"
  9068. ],
  9069. "authors": [
  9070. {
  9071. "name": "Sebastian Bergmann",
  9072. "email": "sebastian@phpunit.de"
  9073. }
  9074. ],
  9075. "description": "Snapshotting of global state",
  9076. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9077. "keywords": [
  9078. "global state"
  9079. ],
  9080. "support": {
  9081. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  9082. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  9083. },
  9084. "funding": [
  9085. {
  9086. "url": "https://github.com/sebastianbergmann",
  9087. "type": "github"
  9088. }
  9089. ],
  9090. "time": "2024-03-02T06:35:11+00:00"
  9091. },
  9092. {
  9093. "name": "sebastian/lines-of-code",
  9094. "version": "1.0.4",
  9095. "source": {
  9096. "type": "git",
  9097. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9098. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  9099. },
  9100. "dist": {
  9101. "type": "zip",
  9102. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9103. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  9104. "shasum": ""
  9105. },
  9106. "require": {
  9107. "nikic/php-parser": "^4.18 || ^5.0",
  9108. "php": ">=7.3"
  9109. },
  9110. "require-dev": {
  9111. "phpunit/phpunit": "^9.3"
  9112. },
  9113. "type": "library",
  9114. "extra": {
  9115. "branch-alias": {
  9116. "dev-master": "1.0-dev"
  9117. }
  9118. },
  9119. "autoload": {
  9120. "classmap": [
  9121. "src/"
  9122. ]
  9123. },
  9124. "notification-url": "https://packagist.org/downloads/",
  9125. "license": [
  9126. "BSD-3-Clause"
  9127. ],
  9128. "authors": [
  9129. {
  9130. "name": "Sebastian Bergmann",
  9131. "email": "sebastian@phpunit.de",
  9132. "role": "lead"
  9133. }
  9134. ],
  9135. "description": "Library for counting the lines of code in PHP source code",
  9136. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9137. "support": {
  9138. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9139. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  9140. },
  9141. "funding": [
  9142. {
  9143. "url": "https://github.com/sebastianbergmann",
  9144. "type": "github"
  9145. }
  9146. ],
  9147. "time": "2023-12-22T06:20:34+00:00"
  9148. },
  9149. {
  9150. "name": "sebastian/object-enumerator",
  9151. "version": "4.0.4",
  9152. "source": {
  9153. "type": "git",
  9154. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9155. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  9156. },
  9157. "dist": {
  9158. "type": "zip",
  9159. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  9160. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  9161. "shasum": ""
  9162. },
  9163. "require": {
  9164. "php": ">=7.3",
  9165. "sebastian/object-reflector": "^2.0",
  9166. "sebastian/recursion-context": "^4.0"
  9167. },
  9168. "require-dev": {
  9169. "phpunit/phpunit": "^9.3"
  9170. },
  9171. "type": "library",
  9172. "extra": {
  9173. "branch-alias": {
  9174. "dev-master": "4.0-dev"
  9175. }
  9176. },
  9177. "autoload": {
  9178. "classmap": [
  9179. "src/"
  9180. ]
  9181. },
  9182. "notification-url": "https://packagist.org/downloads/",
  9183. "license": [
  9184. "BSD-3-Clause"
  9185. ],
  9186. "authors": [
  9187. {
  9188. "name": "Sebastian Bergmann",
  9189. "email": "sebastian@phpunit.de"
  9190. }
  9191. ],
  9192. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9193. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9194. "support": {
  9195. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9196. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  9197. },
  9198. "funding": [
  9199. {
  9200. "url": "https://github.com/sebastianbergmann",
  9201. "type": "github"
  9202. }
  9203. ],
  9204. "time": "2020-10-26T13:12:34+00:00"
  9205. },
  9206. {
  9207. "name": "sebastian/object-reflector",
  9208. "version": "2.0.4",
  9209. "source": {
  9210. "type": "git",
  9211. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9212. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  9213. },
  9214. "dist": {
  9215. "type": "zip",
  9216. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9217. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  9218. "shasum": ""
  9219. },
  9220. "require": {
  9221. "php": ">=7.3"
  9222. },
  9223. "require-dev": {
  9224. "phpunit/phpunit": "^9.3"
  9225. },
  9226. "type": "library",
  9227. "extra": {
  9228. "branch-alias": {
  9229. "dev-master": "2.0-dev"
  9230. }
  9231. },
  9232. "autoload": {
  9233. "classmap": [
  9234. "src/"
  9235. ]
  9236. },
  9237. "notification-url": "https://packagist.org/downloads/",
  9238. "license": [
  9239. "BSD-3-Clause"
  9240. ],
  9241. "authors": [
  9242. {
  9243. "name": "Sebastian Bergmann",
  9244. "email": "sebastian@phpunit.de"
  9245. }
  9246. ],
  9247. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9248. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9249. "support": {
  9250. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9251. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  9252. },
  9253. "funding": [
  9254. {
  9255. "url": "https://github.com/sebastianbergmann",
  9256. "type": "github"
  9257. }
  9258. ],
  9259. "time": "2020-10-26T13:14:26+00:00"
  9260. },
  9261. {
  9262. "name": "sebastian/recursion-context",
  9263. "version": "4.0.5",
  9264. "source": {
  9265. "type": "git",
  9266. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9267. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  9268. },
  9269. "dist": {
  9270. "type": "zip",
  9271. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9272. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  9273. "shasum": ""
  9274. },
  9275. "require": {
  9276. "php": ">=7.3"
  9277. },
  9278. "require-dev": {
  9279. "phpunit/phpunit": "^9.3"
  9280. },
  9281. "type": "library",
  9282. "extra": {
  9283. "branch-alias": {
  9284. "dev-master": "4.0-dev"
  9285. }
  9286. },
  9287. "autoload": {
  9288. "classmap": [
  9289. "src/"
  9290. ]
  9291. },
  9292. "notification-url": "https://packagist.org/downloads/",
  9293. "license": [
  9294. "BSD-3-Clause"
  9295. ],
  9296. "authors": [
  9297. {
  9298. "name": "Sebastian Bergmann",
  9299. "email": "sebastian@phpunit.de"
  9300. },
  9301. {
  9302. "name": "Jeff Welch",
  9303. "email": "whatthejeff@gmail.com"
  9304. },
  9305. {
  9306. "name": "Adam Harvey",
  9307. "email": "aharvey@php.net"
  9308. }
  9309. ],
  9310. "description": "Provides functionality to recursively process PHP variables",
  9311. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9312. "support": {
  9313. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9314. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  9315. },
  9316. "funding": [
  9317. {
  9318. "url": "https://github.com/sebastianbergmann",
  9319. "type": "github"
  9320. }
  9321. ],
  9322. "time": "2023-02-03T06:07:39+00:00"
  9323. },
  9324. {
  9325. "name": "sebastian/resource-operations",
  9326. "version": "3.0.4",
  9327. "source": {
  9328. "type": "git",
  9329. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9330. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  9331. },
  9332. "dist": {
  9333. "type": "zip",
  9334. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9335. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  9336. "shasum": ""
  9337. },
  9338. "require": {
  9339. "php": ">=7.3"
  9340. },
  9341. "require-dev": {
  9342. "phpunit/phpunit": "^9.0"
  9343. },
  9344. "type": "library",
  9345. "extra": {
  9346. "branch-alias": {
  9347. "dev-main": "3.0-dev"
  9348. }
  9349. },
  9350. "autoload": {
  9351. "classmap": [
  9352. "src/"
  9353. ]
  9354. },
  9355. "notification-url": "https://packagist.org/downloads/",
  9356. "license": [
  9357. "BSD-3-Clause"
  9358. ],
  9359. "authors": [
  9360. {
  9361. "name": "Sebastian Bergmann",
  9362. "email": "sebastian@phpunit.de"
  9363. }
  9364. ],
  9365. "description": "Provides a list of PHP built-in functions that operate on resources",
  9366. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9367. "support": {
  9368. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  9369. },
  9370. "funding": [
  9371. {
  9372. "url": "https://github.com/sebastianbergmann",
  9373. "type": "github"
  9374. }
  9375. ],
  9376. "time": "2024-03-14T16:00:52+00:00"
  9377. },
  9378. {
  9379. "name": "sebastian/type",
  9380. "version": "3.2.1",
  9381. "source": {
  9382. "type": "git",
  9383. "url": "https://github.com/sebastianbergmann/type.git",
  9384. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  9385. },
  9386. "dist": {
  9387. "type": "zip",
  9388. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9389. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9390. "shasum": ""
  9391. },
  9392. "require": {
  9393. "php": ">=7.3"
  9394. },
  9395. "require-dev": {
  9396. "phpunit/phpunit": "^9.5"
  9397. },
  9398. "type": "library",
  9399. "extra": {
  9400. "branch-alias": {
  9401. "dev-master": "3.2-dev"
  9402. }
  9403. },
  9404. "autoload": {
  9405. "classmap": [
  9406. "src/"
  9407. ]
  9408. },
  9409. "notification-url": "https://packagist.org/downloads/",
  9410. "license": [
  9411. "BSD-3-Clause"
  9412. ],
  9413. "authors": [
  9414. {
  9415. "name": "Sebastian Bergmann",
  9416. "email": "sebastian@phpunit.de",
  9417. "role": "lead"
  9418. }
  9419. ],
  9420. "description": "Collection of value objects that represent the types of the PHP type system",
  9421. "homepage": "https://github.com/sebastianbergmann/type",
  9422. "support": {
  9423. "issues": "https://github.com/sebastianbergmann/type/issues",
  9424. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  9425. },
  9426. "funding": [
  9427. {
  9428. "url": "https://github.com/sebastianbergmann",
  9429. "type": "github"
  9430. }
  9431. ],
  9432. "time": "2023-02-03T06:13:03+00:00"
  9433. },
  9434. {
  9435. "name": "sebastian/version",
  9436. "version": "3.0.2",
  9437. "source": {
  9438. "type": "git",
  9439. "url": "https://github.com/sebastianbergmann/version.git",
  9440. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9441. },
  9442. "dist": {
  9443. "type": "zip",
  9444. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9445. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9446. "shasum": ""
  9447. },
  9448. "require": {
  9449. "php": ">=7.3"
  9450. },
  9451. "type": "library",
  9452. "extra": {
  9453. "branch-alias": {
  9454. "dev-master": "3.0-dev"
  9455. }
  9456. },
  9457. "autoload": {
  9458. "classmap": [
  9459. "src/"
  9460. ]
  9461. },
  9462. "notification-url": "https://packagist.org/downloads/",
  9463. "license": [
  9464. "BSD-3-Clause"
  9465. ],
  9466. "authors": [
  9467. {
  9468. "name": "Sebastian Bergmann",
  9469. "email": "sebastian@phpunit.de",
  9470. "role": "lead"
  9471. }
  9472. ],
  9473. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9474. "homepage": "https://github.com/sebastianbergmann/version",
  9475. "support": {
  9476. "issues": "https://github.com/sebastianbergmann/version/issues",
  9477. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9478. },
  9479. "funding": [
  9480. {
  9481. "url": "https://github.com/sebastianbergmann",
  9482. "type": "github"
  9483. }
  9484. ],
  9485. "time": "2020-09-28T06:39:44+00:00"
  9486. },
  9487. {
  9488. "name": "symfony/browser-kit",
  9489. "version": "v6.4.13",
  9490. "source": {
  9491. "type": "git",
  9492. "url": "https://github.com/symfony/browser-kit.git",
  9493. "reference": "65d4b3fd9556e4b5b41287bef93c671f8f9f86ab"
  9494. },
  9495. "dist": {
  9496. "type": "zip",
  9497. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/65d4b3fd9556e4b5b41287bef93c671f8f9f86ab",
  9498. "reference": "65d4b3fd9556e4b5b41287bef93c671f8f9f86ab",
  9499. "shasum": ""
  9500. },
  9501. "require": {
  9502. "php": ">=8.1",
  9503. "symfony/dom-crawler": "^5.4|^6.0|^7.0"
  9504. },
  9505. "require-dev": {
  9506. "symfony/css-selector": "^5.4|^6.0|^7.0",
  9507. "symfony/http-client": "^5.4|^6.0|^7.0",
  9508. "symfony/mime": "^5.4|^6.0|^7.0",
  9509. "symfony/process": "^5.4|^6.0|^7.0"
  9510. },
  9511. "type": "library",
  9512. "autoload": {
  9513. "psr-4": {
  9514. "Symfony\\Component\\BrowserKit\\": ""
  9515. },
  9516. "exclude-from-classmap": [
  9517. "/Tests/"
  9518. ]
  9519. },
  9520. "notification-url": "https://packagist.org/downloads/",
  9521. "license": [
  9522. "MIT"
  9523. ],
  9524. "authors": [
  9525. {
  9526. "name": "Fabien Potencier",
  9527. "email": "fabien@symfony.com"
  9528. },
  9529. {
  9530. "name": "Symfony Community",
  9531. "homepage": "https://symfony.com/contributors"
  9532. }
  9533. ],
  9534. "description": "Simulates the behavior of a web browser, allowing you to make requests, click on links and submit forms programmatically",
  9535. "homepage": "https://symfony.com",
  9536. "support": {
  9537. "source": "https://github.com/symfony/browser-kit/tree/v6.4.13"
  9538. },
  9539. "funding": [
  9540. {
  9541. "url": "https://symfony.com/sponsor",
  9542. "type": "custom"
  9543. },
  9544. {
  9545. "url": "https://github.com/fabpot",
  9546. "type": "github"
  9547. },
  9548. {
  9549. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9550. "type": "tidelift"
  9551. }
  9552. ],
  9553. "time": "2024-10-25T15:07:50+00:00"
  9554. },
  9555. {
  9556. "name": "symfony/debug-bundle",
  9557. "version": "v6.4.13",
  9558. "source": {
  9559. "type": "git",
  9560. "url": "https://github.com/symfony/debug-bundle.git",
  9561. "reference": "7bcfaff39e094cc09455201916d016d9b2ae08ff"
  9562. },
  9563. "dist": {
  9564. "type": "zip",
  9565. "url": "https://api.github.com/repos/symfony/debug-bundle/zipball/7bcfaff39e094cc09455201916d016d9b2ae08ff",
  9566. "reference": "7bcfaff39e094cc09455201916d016d9b2ae08ff",
  9567. "shasum": ""
  9568. },
  9569. "require": {
  9570. "ext-xml": "*",
  9571. "php": ">=8.1",
  9572. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9573. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9574. "symfony/twig-bridge": "^5.4|^6.0|^7.0",
  9575. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  9576. },
  9577. "conflict": {
  9578. "symfony/config": "<5.4",
  9579. "symfony/dependency-injection": "<5.4"
  9580. },
  9581. "require-dev": {
  9582. "symfony/config": "^5.4|^6.0|^7.0",
  9583. "symfony/web-profiler-bundle": "^5.4|^6.0|^7.0"
  9584. },
  9585. "type": "symfony-bundle",
  9586. "autoload": {
  9587. "psr-4": {
  9588. "Symfony\\Bundle\\DebugBundle\\": ""
  9589. },
  9590. "exclude-from-classmap": [
  9591. "/Tests/"
  9592. ]
  9593. },
  9594. "notification-url": "https://packagist.org/downloads/",
  9595. "license": [
  9596. "MIT"
  9597. ],
  9598. "authors": [
  9599. {
  9600. "name": "Fabien Potencier",
  9601. "email": "fabien@symfony.com"
  9602. },
  9603. {
  9604. "name": "Symfony Community",
  9605. "homepage": "https://symfony.com/contributors"
  9606. }
  9607. ],
  9608. "description": "Provides a tight integration of the Symfony VarDumper component and the ServerLogCommand from MonologBridge into the Symfony full-stack framework",
  9609. "homepage": "https://symfony.com",
  9610. "support": {
  9611. "source": "https://github.com/symfony/debug-bundle/tree/v6.4.13"
  9612. },
  9613. "funding": [
  9614. {
  9615. "url": "https://symfony.com/sponsor",
  9616. "type": "custom"
  9617. },
  9618. {
  9619. "url": "https://github.com/fabpot",
  9620. "type": "github"
  9621. },
  9622. {
  9623. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9624. "type": "tidelift"
  9625. }
  9626. ],
  9627. "time": "2024-09-25T14:18:03+00:00"
  9628. },
  9629. {
  9630. "name": "symfony/dom-crawler",
  9631. "version": "v6.4.16",
  9632. "source": {
  9633. "type": "git",
  9634. "url": "https://github.com/symfony/dom-crawler.git",
  9635. "reference": "4304e6ad5c894a9c72831ad459f627bfd35d766d"
  9636. },
  9637. "dist": {
  9638. "type": "zip",
  9639. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/4304e6ad5c894a9c72831ad459f627bfd35d766d",
  9640. "reference": "4304e6ad5c894a9c72831ad459f627bfd35d766d",
  9641. "shasum": ""
  9642. },
  9643. "require": {
  9644. "masterminds/html5": "^2.6",
  9645. "php": ">=8.1",
  9646. "symfony/polyfill-ctype": "~1.8",
  9647. "symfony/polyfill-mbstring": "~1.0"
  9648. },
  9649. "require-dev": {
  9650. "symfony/css-selector": "^5.4|^6.0|^7.0"
  9651. },
  9652. "type": "library",
  9653. "autoload": {
  9654. "psr-4": {
  9655. "Symfony\\Component\\DomCrawler\\": ""
  9656. },
  9657. "exclude-from-classmap": [
  9658. "/Tests/"
  9659. ]
  9660. },
  9661. "notification-url": "https://packagist.org/downloads/",
  9662. "license": [
  9663. "MIT"
  9664. ],
  9665. "authors": [
  9666. {
  9667. "name": "Fabien Potencier",
  9668. "email": "fabien@symfony.com"
  9669. },
  9670. {
  9671. "name": "Symfony Community",
  9672. "homepage": "https://symfony.com/contributors"
  9673. }
  9674. ],
  9675. "description": "Eases DOM navigation for HTML and XML documents",
  9676. "homepage": "https://symfony.com",
  9677. "support": {
  9678. "source": "https://github.com/symfony/dom-crawler/tree/v6.4.16"
  9679. },
  9680. "funding": [
  9681. {
  9682. "url": "https://symfony.com/sponsor",
  9683. "type": "custom"
  9684. },
  9685. {
  9686. "url": "https://github.com/fabpot",
  9687. "type": "github"
  9688. },
  9689. {
  9690. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9691. "type": "tidelift"
  9692. }
  9693. ],
  9694. "time": "2024-11-13T15:06:22+00:00"
  9695. },
  9696. {
  9697. "name": "symfony/maker-bundle",
  9698. "version": "v1.61.0",
  9699. "source": {
  9700. "type": "git",
  9701. "url": "https://github.com/symfony/maker-bundle.git",
  9702. "reference": "a3b7f14d349f8f44ed752d4dde2263f77510cc18"
  9703. },
  9704. "dist": {
  9705. "type": "zip",
  9706. "url": "https://api.github.com/repos/symfony/maker-bundle/zipball/a3b7f14d349f8f44ed752d4dde2263f77510cc18",
  9707. "reference": "a3b7f14d349f8f44ed752d4dde2263f77510cc18",
  9708. "shasum": ""
  9709. },
  9710. "require": {
  9711. "doctrine/inflector": "^2.0",
  9712. "nikic/php-parser": "^4.18|^5.0",
  9713. "php": ">=8.1",
  9714. "symfony/config": "^6.4|^7.0",
  9715. "symfony/console": "^6.4|^7.0",
  9716. "symfony/dependency-injection": "^6.4|^7.0",
  9717. "symfony/deprecation-contracts": "^2.2|^3",
  9718. "symfony/filesystem": "^6.4|^7.0",
  9719. "symfony/finder": "^6.4|^7.0",
  9720. "symfony/framework-bundle": "^6.4|^7.0",
  9721. "symfony/http-kernel": "^6.4|^7.0",
  9722. "symfony/process": "^6.4|^7.0"
  9723. },
  9724. "conflict": {
  9725. "doctrine/doctrine-bundle": "<2.10",
  9726. "doctrine/orm": "<2.15"
  9727. },
  9728. "require-dev": {
  9729. "composer/semver": "^3.0",
  9730. "doctrine/doctrine-bundle": "^2.5.0",
  9731. "doctrine/orm": "^2.15|^3",
  9732. "symfony/http-client": "^6.4|^7.0",
  9733. "symfony/phpunit-bridge": "^6.4.1|^7.0",
  9734. "symfony/security-core": "^6.4|^7.0",
  9735. "symfony/yaml": "^6.4|^7.0",
  9736. "twig/twig": "^3.0|^4.x-dev"
  9737. },
  9738. "type": "symfony-bundle",
  9739. "extra": {
  9740. "branch-alias": {
  9741. "dev-main": "1.x-dev"
  9742. }
  9743. },
  9744. "autoload": {
  9745. "psr-4": {
  9746. "Symfony\\Bundle\\MakerBundle\\": "src/"
  9747. }
  9748. },
  9749. "notification-url": "https://packagist.org/downloads/",
  9750. "license": [
  9751. "MIT"
  9752. ],
  9753. "authors": [
  9754. {
  9755. "name": "Symfony Community",
  9756. "homepage": "https://symfony.com/contributors"
  9757. }
  9758. ],
  9759. "description": "Symfony Maker helps you create empty commands, controllers, form classes, tests and more so you can forget about writing boilerplate code.",
  9760. "homepage": "https://symfony.com/doc/current/bundles/SymfonyMakerBundle/index.html",
  9761. "keywords": [
  9762. "code generator",
  9763. "dev",
  9764. "generator",
  9765. "scaffold",
  9766. "scaffolding"
  9767. ],
  9768. "support": {
  9769. "issues": "https://github.com/symfony/maker-bundle/issues",
  9770. "source": "https://github.com/symfony/maker-bundle/tree/v1.61.0"
  9771. },
  9772. "funding": [
  9773. {
  9774. "url": "https://symfony.com/sponsor",
  9775. "type": "custom"
  9776. },
  9777. {
  9778. "url": "https://github.com/fabpot",
  9779. "type": "github"
  9780. },
  9781. {
  9782. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9783. "type": "tidelift"
  9784. }
  9785. ],
  9786. "time": "2024-08-29T22:50:23+00:00"
  9787. },
  9788. {
  9789. "name": "symfony/phpunit-bridge",
  9790. "version": "v7.2.0",
  9791. "source": {
  9792. "type": "git",
  9793. "url": "https://github.com/symfony/phpunit-bridge.git",
  9794. "reference": "2bbde92ab25a0e2c88160857af7be9db5da0d145"
  9795. },
  9796. "dist": {
  9797. "type": "zip",
  9798. "url": "https://api.github.com/repos/symfony/phpunit-bridge/zipball/2bbde92ab25a0e2c88160857af7be9db5da0d145",
  9799. "reference": "2bbde92ab25a0e2c88160857af7be9db5da0d145",
  9800. "shasum": ""
  9801. },
  9802. "require": {
  9803. "php": ">=7.2.5"
  9804. },
  9805. "conflict": {
  9806. "phpunit/phpunit": "<7.5|9.1.2"
  9807. },
  9808. "require-dev": {
  9809. "symfony/deprecation-contracts": "^2.5|^3.0",
  9810. "symfony/error-handler": "^5.4|^6.4|^7.0",
  9811. "symfony/polyfill-php81": "^1.27"
  9812. },
  9813. "bin": [
  9814. "bin/simple-phpunit"
  9815. ],
  9816. "type": "symfony-bridge",
  9817. "extra": {
  9818. "thanks": {
  9819. "url": "https://github.com/sebastianbergmann/phpunit",
  9820. "name": "phpunit/phpunit"
  9821. }
  9822. },
  9823. "autoload": {
  9824. "files": [
  9825. "bootstrap.php"
  9826. ],
  9827. "psr-4": {
  9828. "Symfony\\Bridge\\PhpUnit\\": ""
  9829. },
  9830. "exclude-from-classmap": [
  9831. "/Tests/",
  9832. "/bin/"
  9833. ]
  9834. },
  9835. "notification-url": "https://packagist.org/downloads/",
  9836. "license": [
  9837. "MIT"
  9838. ],
  9839. "authors": [
  9840. {
  9841. "name": "Nicolas Grekas",
  9842. "email": "p@tchwork.com"
  9843. },
  9844. {
  9845. "name": "Symfony Community",
  9846. "homepage": "https://symfony.com/contributors"
  9847. }
  9848. ],
  9849. "description": "Provides utilities for PHPUnit, especially user deprecation notices management",
  9850. "homepage": "https://symfony.com",
  9851. "support": {
  9852. "source": "https://github.com/symfony/phpunit-bridge/tree/v7.2.0"
  9853. },
  9854. "funding": [
  9855. {
  9856. "url": "https://symfony.com/sponsor",
  9857. "type": "custom"
  9858. },
  9859. {
  9860. "url": "https://github.com/fabpot",
  9861. "type": "github"
  9862. },
  9863. {
  9864. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9865. "type": "tidelift"
  9866. }
  9867. ],
  9868. "time": "2024-11-13T16:15:23+00:00"
  9869. },
  9870. {
  9871. "name": "symfony/web-profiler-bundle",
  9872. "version": "v6.4.17",
  9873. "source": {
  9874. "type": "git",
  9875. "url": "https://github.com/symfony/web-profiler-bundle.git",
  9876. "reference": "979f8ee1a4f2464c20f3fef0d2111827fef2e97e"
  9877. },
  9878. "dist": {
  9879. "type": "zip",
  9880. "url": "https://api.github.com/repos/symfony/web-profiler-bundle/zipball/979f8ee1a4f2464c20f3fef0d2111827fef2e97e",
  9881. "reference": "979f8ee1a4f2464c20f3fef0d2111827fef2e97e",
  9882. "shasum": ""
  9883. },
  9884. "require": {
  9885. "php": ">=8.1",
  9886. "symfony/config": "^5.4|^6.0|^7.0",
  9887. "symfony/framework-bundle": "^6.4|^7.0",
  9888. "symfony/http-kernel": "^6.4|^7.0",
  9889. "symfony/routing": "^5.4|^6.0|^7.0",
  9890. "symfony/twig-bundle": "^5.4|^6.0",
  9891. "twig/twig": "^2.13|^3.0.4"
  9892. },
  9893. "conflict": {
  9894. "symfony/form": "<5.4",
  9895. "symfony/mailer": "<5.4",
  9896. "symfony/messenger": "<5.4",
  9897. "symfony/twig-bundle": ">=7.0"
  9898. },
  9899. "require-dev": {
  9900. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  9901. "symfony/console": "^5.4|^6.0|^7.0",
  9902. "symfony/css-selector": "^5.4|^6.0|^7.0",
  9903. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  9904. },
  9905. "type": "symfony-bundle",
  9906. "autoload": {
  9907. "psr-4": {
  9908. "Symfony\\Bundle\\WebProfilerBundle\\": ""
  9909. },
  9910. "exclude-from-classmap": [
  9911. "/Tests/"
  9912. ]
  9913. },
  9914. "notification-url": "https://packagist.org/downloads/",
  9915. "license": [
  9916. "MIT"
  9917. ],
  9918. "authors": [
  9919. {
  9920. "name": "Fabien Potencier",
  9921. "email": "fabien@symfony.com"
  9922. },
  9923. {
  9924. "name": "Symfony Community",
  9925. "homepage": "https://symfony.com/contributors"
  9926. }
  9927. ],
  9928. "description": "Provides a development tool that gives detailed information about the execution of any request",
  9929. "homepage": "https://symfony.com",
  9930. "keywords": [
  9931. "dev"
  9932. ],
  9933. "support": {
  9934. "source": "https://github.com/symfony/web-profiler-bundle/tree/v6.4.17"
  9935. },
  9936. "funding": [
  9937. {
  9938. "url": "https://symfony.com/sponsor",
  9939. "type": "custom"
  9940. },
  9941. {
  9942. "url": "https://github.com/fabpot",
  9943. "type": "github"
  9944. },
  9945. {
  9946. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9947. "type": "tidelift"
  9948. }
  9949. ],
  9950. "time": "2024-12-08T23:00:41+00:00"
  9951. },
  9952. {
  9953. "name": "theseer/tokenizer",
  9954. "version": "1.2.3",
  9955. "source": {
  9956. "type": "git",
  9957. "url": "https://github.com/theseer/tokenizer.git",
  9958. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  9959. },
  9960. "dist": {
  9961. "type": "zip",
  9962. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9963. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9964. "shasum": ""
  9965. },
  9966. "require": {
  9967. "ext-dom": "*",
  9968. "ext-tokenizer": "*",
  9969. "ext-xmlwriter": "*",
  9970. "php": "^7.2 || ^8.0"
  9971. },
  9972. "type": "library",
  9973. "autoload": {
  9974. "classmap": [
  9975. "src/"
  9976. ]
  9977. },
  9978. "notification-url": "https://packagist.org/downloads/",
  9979. "license": [
  9980. "BSD-3-Clause"
  9981. ],
  9982. "authors": [
  9983. {
  9984. "name": "Arne Blankerts",
  9985. "email": "arne@blankerts.de",
  9986. "role": "Developer"
  9987. }
  9988. ],
  9989. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9990. "support": {
  9991. "issues": "https://github.com/theseer/tokenizer/issues",
  9992. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  9993. },
  9994. "funding": [
  9995. {
  9996. "url": "https://github.com/theseer",
  9997. "type": "github"
  9998. }
  9999. ],
  10000. "time": "2024-03-03T12:36:25+00:00"
  10001. }
  10002. ],
  10003. "aliases": [],
  10004. "minimum-stability": "stable",
  10005. "stability-flags": {},
  10006. "prefer-stable": true,
  10007. "prefer-lowest": false,
  10008. "platform": {
  10009. "php": ">=8.1",
  10010. "ext-ctype": "*",
  10011. "ext-iconv": "*"
  10012. },
  10013. "platform-dev": {},
  10014. "plugin-api-version": "2.6.0"
  10015. }