composer.lock 307 KB

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