composer.lock 380 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438
  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": "578ff71c2a290a12dcdebf32aba5f1b1",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.3.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  20. "reference": "acf3142e6c5eafa378dc8ef3c069ab4558993f70",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.3|^8.0",
  25. "symfony/http-foundation": "^5.3|^6|^7",
  26. "symfony/http-kernel": "^5.3|^6|^7"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.2-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.3.0"
  62. },
  63. "time": "2025-03-13T08:50:04+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "3.6.1",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "2dbd8d231945681a398862a3282ade3cf0ea23ab"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/2dbd8d231945681a398862a3282ade3cf0ea23ab",
  76. "reference": "2dbd8d231945681a398862a3282ade3cf0ea23ab",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=8.1.0",
  82. "psr/event-dispatcher": "^1.0",
  83. "psr/log": "^3.0",
  84. "symfony/console": "^6.3",
  85. "symfony/dependency-injection": "^6.3.2",
  86. "symfony/filesystem": "^6.3",
  87. "symfony/string": "^6.3",
  88. "twig/twig": "^3.4"
  89. },
  90. "conflict": {
  91. "squizlabs/php_codesniffer": "<3.6"
  92. },
  93. "require-dev": {
  94. "chi-teck/drupal-coder-extension": "^2.0.0-beta3",
  95. "drupal/coder": "8.3.23",
  96. "drupal/core": "10.3.x-dev",
  97. "ext-simplexml": "*",
  98. "phpspec/prophecy-phpunit": "^2.2",
  99. "phpunit/phpunit": "^9.6",
  100. "squizlabs/php_codesniffer": "^3.9",
  101. "symfony/var-dumper": "^6.4",
  102. "symfony/yaml": "^6.3",
  103. "vimeo/psalm": "^5.22.2"
  104. },
  105. "bin": [
  106. "bin/dcg"
  107. ],
  108. "type": "library",
  109. "autoload": {
  110. "psr-4": {
  111. "DrupalCodeGenerator\\": "src"
  112. }
  113. },
  114. "notification-url": "https://packagist.org/downloads/",
  115. "license": [
  116. "GPL-2.0-or-later"
  117. ],
  118. "description": "Drupal code generator",
  119. "support": {
  120. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  121. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/3.6.1"
  122. },
  123. "time": "2024-06-06T17:36:37+00:00"
  124. },
  125. {
  126. "name": "composer/installers",
  127. "version": "v1.12.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/composer/installers.git",
  131. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  136. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "composer-plugin-api": "^1.0 || ^2.0"
  141. },
  142. "replace": {
  143. "roundcube/plugin-installer": "*",
  144. "shama/baton": "*"
  145. },
  146. "require-dev": {
  147. "composer/composer": "1.6.* || ^2.0",
  148. "composer/semver": "^1 || ^3",
  149. "phpstan/phpstan": "^0.12.55",
  150. "phpstan/phpstan-phpunit": "^0.12.16",
  151. "symfony/phpunit-bridge": "^4.2 || ^5",
  152. "symfony/process": "^2.3"
  153. },
  154. "type": "composer-plugin",
  155. "extra": {
  156. "class": "Composer\\Installers\\Plugin",
  157. "branch-alias": {
  158. "dev-main": "1.x-dev"
  159. }
  160. },
  161. "autoload": {
  162. "psr-4": {
  163. "Composer\\Installers\\": "src/Composer/Installers"
  164. }
  165. },
  166. "notification-url": "https://packagist.org/downloads/",
  167. "license": [
  168. "MIT"
  169. ],
  170. "authors": [
  171. {
  172. "name": "Kyle Robinson Young",
  173. "email": "kyle@dontkry.com",
  174. "homepage": "https://github.com/shama"
  175. }
  176. ],
  177. "description": "A multi-framework Composer library installer",
  178. "homepage": "https://composer.github.io/installers/",
  179. "keywords": [
  180. "Craft",
  181. "Dolibarr",
  182. "Eliasis",
  183. "Hurad",
  184. "ImageCMS",
  185. "Kanboard",
  186. "Lan Management System",
  187. "MODX Evo",
  188. "MantisBT",
  189. "Mautic",
  190. "Maya",
  191. "OXID",
  192. "Plentymarkets",
  193. "Porto",
  194. "RadPHP",
  195. "SMF",
  196. "Starbug",
  197. "Thelia",
  198. "Whmcs",
  199. "WolfCMS",
  200. "agl",
  201. "aimeos",
  202. "annotatecms",
  203. "attogram",
  204. "bitrix",
  205. "cakephp",
  206. "chef",
  207. "cockpit",
  208. "codeigniter",
  209. "concrete5",
  210. "croogo",
  211. "dokuwiki",
  212. "drupal",
  213. "eZ Platform",
  214. "elgg",
  215. "expressionengine",
  216. "fuelphp",
  217. "grav",
  218. "installer",
  219. "itop",
  220. "joomla",
  221. "known",
  222. "kohana",
  223. "laravel",
  224. "lavalite",
  225. "lithium",
  226. "magento",
  227. "majima",
  228. "mako",
  229. "mediawiki",
  230. "miaoxing",
  231. "modulework",
  232. "modx",
  233. "moodle",
  234. "osclass",
  235. "pantheon",
  236. "phpbb",
  237. "piwik",
  238. "ppi",
  239. "processwire",
  240. "puppet",
  241. "pxcms",
  242. "reindex",
  243. "roundcube",
  244. "shopware",
  245. "silverstripe",
  246. "sydes",
  247. "sylius",
  248. "symfony",
  249. "tastyigniter",
  250. "typo3",
  251. "wordpress",
  252. "yawik",
  253. "zend",
  254. "zikula"
  255. ],
  256. "support": {
  257. "issues": "https://github.com/composer/installers/issues",
  258. "source": "https://github.com/composer/installers/tree/v1.12.0"
  259. },
  260. "funding": [
  261. {
  262. "url": "https://packagist.com",
  263. "type": "custom"
  264. },
  265. {
  266. "url": "https://github.com/composer",
  267. "type": "github"
  268. },
  269. {
  270. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  271. "type": "tidelift"
  272. }
  273. ],
  274. "time": "2021-09-13T08:19:44+00:00"
  275. },
  276. {
  277. "name": "composer/semver",
  278. "version": "3.4.4",
  279. "source": {
  280. "type": "git",
  281. "url": "https://github.com/composer/semver.git",
  282. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95"
  283. },
  284. "dist": {
  285. "type": "zip",
  286. "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  287. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  288. "shasum": ""
  289. },
  290. "require": {
  291. "php": "^5.3.2 || ^7.0 || ^8.0"
  292. },
  293. "require-dev": {
  294. "phpstan/phpstan": "^1.11",
  295. "symfony/phpunit-bridge": "^3 || ^7"
  296. },
  297. "type": "library",
  298. "extra": {
  299. "branch-alias": {
  300. "dev-main": "3.x-dev"
  301. }
  302. },
  303. "autoload": {
  304. "psr-4": {
  305. "Composer\\Semver\\": "src"
  306. }
  307. },
  308. "notification-url": "https://packagist.org/downloads/",
  309. "license": [
  310. "MIT"
  311. ],
  312. "authors": [
  313. {
  314. "name": "Nils Adermann",
  315. "email": "naderman@naderman.de",
  316. "homepage": "http://www.naderman.de"
  317. },
  318. {
  319. "name": "Jordi Boggiano",
  320. "email": "j.boggiano@seld.be",
  321. "homepage": "http://seld.be"
  322. },
  323. {
  324. "name": "Rob Bast",
  325. "email": "rob.bast@gmail.com",
  326. "homepage": "http://robbast.nl"
  327. }
  328. ],
  329. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  330. "keywords": [
  331. "semantic",
  332. "semver",
  333. "validation",
  334. "versioning"
  335. ],
  336. "support": {
  337. "irc": "ircs://irc.libera.chat:6697/composer",
  338. "issues": "https://github.com/composer/semver/issues",
  339. "source": "https://github.com/composer/semver/tree/3.4.4"
  340. },
  341. "funding": [
  342. {
  343. "url": "https://packagist.com",
  344. "type": "custom"
  345. },
  346. {
  347. "url": "https://github.com/composer",
  348. "type": "github"
  349. }
  350. ],
  351. "time": "2025-08-20T19:15:30+00:00"
  352. },
  353. {
  354. "name": "consolidation/annotated-command",
  355. "version": "4.10.5",
  356. "source": {
  357. "type": "git",
  358. "url": "https://github.com/consolidation/annotated-command.git",
  359. "reference": "78abf3b6853d7ff9044babd2b9c002ff433207d8"
  360. },
  361. "dist": {
  362. "type": "zip",
  363. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/78abf3b6853d7ff9044babd2b9c002ff433207d8",
  364. "reference": "78abf3b6853d7ff9044babd2b9c002ff433207d8",
  365. "shasum": ""
  366. },
  367. "require": {
  368. "consolidation/output-formatters": "^4.3.1",
  369. "php": ">=7.1.3",
  370. "psr/log": "^1 || ^2 || ^3",
  371. "symfony/console": "^4.4.8 || ^5 || ^6 || ^7 || ^8",
  372. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6 || ^7 || ^8",
  373. "symfony/finder": "^4.4.8 || ^5 || ^6 || ^7 || ^8"
  374. },
  375. "require-dev": {
  376. "composer-runtime-api": "^2.0",
  377. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  378. "squizlabs/php_codesniffer": "^3",
  379. "yoast/phpunit-polyfills": "^0.2.0"
  380. },
  381. "type": "library",
  382. "extra": {
  383. "branch-alias": {
  384. "dev-main": "4.x-dev"
  385. }
  386. },
  387. "autoload": {
  388. "psr-4": {
  389. "Consolidation\\AnnotatedCommand\\": "src"
  390. }
  391. },
  392. "notification-url": "https://packagist.org/downloads/",
  393. "license": [
  394. "MIT"
  395. ],
  396. "authors": [
  397. {
  398. "name": "Greg Anderson",
  399. "email": "greg.1.anderson@greenknowe.org"
  400. }
  401. ],
  402. "description": "Initialize Symfony Console commands from annotated command class methods.",
  403. "support": {
  404. "issues": "https://github.com/consolidation/annotated-command/issues",
  405. "source": "https://github.com/consolidation/annotated-command/tree/4.10.5"
  406. },
  407. "time": "2026-03-29T00:50:52+00:00"
  408. },
  409. {
  410. "name": "consolidation/config",
  411. "version": "3.2.1",
  412. "source": {
  413. "type": "git",
  414. "url": "https://github.com/consolidation/config.git",
  415. "reference": "adcb989d789f7e0984121492b0377a1def3a6dc8"
  416. },
  417. "dist": {
  418. "type": "zip",
  419. "url": "https://api.github.com/repos/consolidation/config/zipball/adcb989d789f7e0984121492b0377a1def3a6dc8",
  420. "reference": "adcb989d789f7e0984121492b0377a1def3a6dc8",
  421. "shasum": ""
  422. },
  423. "require": {
  424. "dflydev/dot-access-data": "^3",
  425. "grasmash/expander": "^3",
  426. "php": ">=8.2.0",
  427. "symfony/event-dispatcher": "^6 || ^7 || ^8"
  428. },
  429. "require-dev": {
  430. "ext-json": "*",
  431. "phpunit/phpunit": "^9",
  432. "squizlabs/php_codesniffer": "^3",
  433. "symfony/console": "^7.4 || ^8",
  434. "symfony/yaml": "^7 || ^8",
  435. "yoast/phpunit-polyfills": "^1"
  436. },
  437. "suggest": {
  438. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  439. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  440. },
  441. "type": "library",
  442. "extra": {
  443. "branch-alias": {
  444. "dev-main": "3.x-dev"
  445. }
  446. },
  447. "autoload": {
  448. "psr-4": {
  449. "Consolidation\\Config\\": "src"
  450. }
  451. },
  452. "notification-url": "https://packagist.org/downloads/",
  453. "license": [
  454. "MIT"
  455. ],
  456. "authors": [
  457. {
  458. "name": "Greg Anderson",
  459. "email": "greg.1.anderson@greenknowe.org"
  460. }
  461. ],
  462. "description": "Provide configuration services for a commandline tool.",
  463. "support": {
  464. "issues": "https://github.com/consolidation/config/issues",
  465. "source": "https://github.com/consolidation/config/tree/3.2.1"
  466. },
  467. "time": "2026-03-28T23:38:17+00:00"
  468. },
  469. {
  470. "name": "consolidation/filter-via-dot-access-data",
  471. "version": "2.0.3",
  472. "source": {
  473. "type": "git",
  474. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  475. "reference": "f9e84bc623d420120028a50dcb9b1d4609ae3b5f"
  476. },
  477. "dist": {
  478. "type": "zip",
  479. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/f9e84bc623d420120028a50dcb9b1d4609ae3b5f",
  480. "reference": "f9e84bc623d420120028a50dcb9b1d4609ae3b5f",
  481. "shasum": ""
  482. },
  483. "require": {
  484. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  485. "php": ">=7.1.3"
  486. },
  487. "require-dev": {
  488. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  489. "squizlabs/php_codesniffer": "^3",
  490. "yoast/phpunit-polyfills": "^0.2.0"
  491. },
  492. "type": "library",
  493. "extra": {
  494. "branch-alias": {
  495. "dev-main": "2.x-dev"
  496. }
  497. },
  498. "autoload": {
  499. "psr-4": {
  500. "Consolidation\\Filter\\": "src"
  501. }
  502. },
  503. "notification-url": "https://packagist.org/downloads/",
  504. "license": [
  505. "MIT"
  506. ],
  507. "authors": [
  508. {
  509. "name": "Greg Anderson",
  510. "email": "greg.1.anderson@greenknowe.org"
  511. }
  512. ],
  513. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  514. "support": {
  515. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.3"
  516. },
  517. "time": "2025-11-14T21:01:06+00:00"
  518. },
  519. {
  520. "name": "consolidation/log",
  521. "version": "3.1.2",
  522. "source": {
  523. "type": "git",
  524. "url": "https://github.com/consolidation/log.git",
  525. "reference": "a0c85d40ca18c22c93fdf78d7e8115cd438ccfe6"
  526. },
  527. "dist": {
  528. "type": "zip",
  529. "url": "https://api.github.com/repos/consolidation/log/zipball/a0c85d40ca18c22c93fdf78d7e8115cd438ccfe6",
  530. "reference": "a0c85d40ca18c22c93fdf78d7e8115cd438ccfe6",
  531. "shasum": ""
  532. },
  533. "require": {
  534. "php": ">=8.0.0",
  535. "psr/log": "^3",
  536. "symfony/console": "^5 || ^6 || ^7 || ^8"
  537. },
  538. "require-dev": {
  539. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  540. "squizlabs/php_codesniffer": "^3",
  541. "yoast/phpunit-polyfills": "^0.2.0"
  542. },
  543. "type": "library",
  544. "extra": {
  545. "platform": {
  546. "php": "8.2.17"
  547. }
  548. },
  549. "autoload": {
  550. "psr-4": {
  551. "Consolidation\\Log\\": "src"
  552. }
  553. },
  554. "notification-url": "https://packagist.org/downloads/",
  555. "license": [
  556. "MIT"
  557. ],
  558. "authors": [
  559. {
  560. "name": "Greg Anderson",
  561. "email": "greg.1.anderson@greenknowe.org"
  562. }
  563. ],
  564. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  565. "support": {
  566. "issues": "https://github.com/consolidation/log/issues",
  567. "source": "https://github.com/consolidation/log/tree/3.1.2"
  568. },
  569. "time": "2026-03-28T23:36:49+00:00"
  570. },
  571. {
  572. "name": "consolidation/output-formatters",
  573. "version": "4.7.1",
  574. "source": {
  575. "type": "git",
  576. "url": "https://github.com/consolidation/output-formatters.git",
  577. "reference": "a112df9a74854c8438b33b334ed619fa43edf31a"
  578. },
  579. "dist": {
  580. "type": "zip",
  581. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/a112df9a74854c8438b33b334ed619fa43edf31a",
  582. "reference": "a112df9a74854c8438b33b334ed619fa43edf31a",
  583. "shasum": ""
  584. },
  585. "require": {
  586. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  587. "php": ">=7.1.3",
  588. "symfony/console": "^4 || ^5 || ^6 || ^7 || ^8",
  589. "symfony/finder": "^4 || ^5 || ^6 || ^7 || ^8"
  590. },
  591. "require-dev": {
  592. "php-coveralls/php-coveralls": "^2.4.2",
  593. "phpunit/phpunit": "^7 || ^8 || ^9",
  594. "squizlabs/php_codesniffer": "^3",
  595. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7 || ^8",
  596. "symfony/yaml": "^4 || ^5 || ^6 || ^7 || ^8",
  597. "yoast/phpunit-polyfills": "^1"
  598. },
  599. "suggest": {
  600. "symfony/var-dumper": "For using the var_dump formatter"
  601. },
  602. "type": "library",
  603. "autoload": {
  604. "psr-4": {
  605. "Consolidation\\OutputFormatters\\": "src"
  606. }
  607. },
  608. "notification-url": "https://packagist.org/downloads/",
  609. "license": [
  610. "MIT"
  611. ],
  612. "authors": [
  613. {
  614. "name": "Greg Anderson",
  615. "email": "greg.1.anderson@greenknowe.org"
  616. }
  617. ],
  618. "description": "Format text by applying transformations provided by plug-in formatters.",
  619. "support": {
  620. "issues": "https://github.com/consolidation/output-formatters/issues",
  621. "source": "https://github.com/consolidation/output-formatters/tree/4.7.1"
  622. },
  623. "time": "2026-03-28T23:34:39+00:00"
  624. },
  625. {
  626. "name": "consolidation/robo",
  627. "version": "5.1.1",
  628. "source": {
  629. "type": "git",
  630. "url": "https://github.com/consolidation/robo.git",
  631. "reference": "6d02c7d800b5e1a3a8977ae74d23bce723486025"
  632. },
  633. "dist": {
  634. "type": "zip",
  635. "url": "https://api.github.com/repos/consolidation/robo/zipball/6d02c7d800b5e1a3a8977ae74d23bce723486025",
  636. "reference": "6d02c7d800b5e1a3a8977ae74d23bce723486025",
  637. "shasum": ""
  638. },
  639. "require": {
  640. "consolidation/annotated-command": "^4.8.1",
  641. "consolidation/config": "^3",
  642. "consolidation/log": "^3",
  643. "consolidation/output-formatters": "^4.1.2",
  644. "league/container": "^3.3.1 || ^4.0",
  645. "php": ">=8.2",
  646. "phpowermove/docblock": "^4.0",
  647. "symfony/console": "^6 || ^7",
  648. "symfony/event-dispatcher": "^6 || ^7",
  649. "symfony/filesystem": "^6 || ^7",
  650. "symfony/finder": "^6 || ^7",
  651. "symfony/process": "^6 || ^7",
  652. "symfony/yaml": "^6 || ^7"
  653. },
  654. "conflict": {
  655. "codegyre/robo": "*"
  656. },
  657. "require-dev": {
  658. "natxet/cssmin": "3.0.4",
  659. "patchwork/jsqueeze": "^2",
  660. "pear/archive_tar": "^1.4.4",
  661. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  662. "squizlabs/php_codesniffer": "^3.6",
  663. "yoast/phpunit-polyfills": "^0.2.0"
  664. },
  665. "suggest": {
  666. "consolidation/self-update": "For self-updating a phar-based app built with Robo",
  667. "natxet/cssmin": "For minifying CSS files in taskMinify",
  668. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  669. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  670. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  671. },
  672. "bin": [
  673. "robo"
  674. ],
  675. "type": "library",
  676. "autoload": {
  677. "psr-4": {
  678. "Robo\\": "src"
  679. }
  680. },
  681. "notification-url": "https://packagist.org/downloads/",
  682. "license": [
  683. "MIT"
  684. ],
  685. "authors": [
  686. {
  687. "name": "Davert",
  688. "email": "davert.php@resend.cc"
  689. }
  690. ],
  691. "description": "Modern task runner",
  692. "support": {
  693. "issues": "https://github.com/consolidation/robo/issues",
  694. "source": "https://github.com/consolidation/robo/tree/5.1.1"
  695. },
  696. "time": "2025-11-14T23:30:05+00:00"
  697. },
  698. {
  699. "name": "consolidation/site-alias",
  700. "version": "4.1.3",
  701. "source": {
  702. "type": "git",
  703. "url": "https://github.com/consolidation/site-alias.git",
  704. "reference": "7e1364aec7be0be23bb45799045fd9838a93f2ad"
  705. },
  706. "dist": {
  707. "type": "zip",
  708. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/7e1364aec7be0be23bb45799045fd9838a93f2ad",
  709. "reference": "7e1364aec7be0be23bb45799045fd9838a93f2ad",
  710. "shasum": ""
  711. },
  712. "require": {
  713. "consolidation/config": "^1.2.1 || ^2 || ^3",
  714. "php": ">=7.4",
  715. "symfony/filesystem": "^5.4 || ^6 || ^7 || ^8",
  716. "symfony/finder": "^5 || ^6 || ^7 || ^8"
  717. },
  718. "require-dev": {
  719. "php-coveralls/php-coveralls": "^2.4.2",
  720. "phpunit/phpunit": ">=7",
  721. "squizlabs/php_codesniffer": "^3",
  722. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7 || ^8",
  723. "yoast/phpunit-polyfills": "^0.2.0"
  724. },
  725. "type": "library",
  726. "extra": {
  727. "branch-alias": {
  728. "dev-main": "4.x-dev"
  729. }
  730. },
  731. "autoload": {
  732. "psr-4": {
  733. "Consolidation\\SiteAlias\\": "src"
  734. }
  735. },
  736. "notification-url": "https://packagist.org/downloads/",
  737. "license": [
  738. "MIT"
  739. ],
  740. "authors": [
  741. {
  742. "name": "Greg Anderson",
  743. "email": "greg.1.anderson@greenknowe.org"
  744. },
  745. {
  746. "name": "Moshe Weitzman",
  747. "email": "weitzman@tejasa.com"
  748. }
  749. ],
  750. "description": "Manage alias records for local and remote sites.",
  751. "support": {
  752. "issues": "https://github.com/consolidation/site-alias/issues",
  753. "source": "https://github.com/consolidation/site-alias/tree/4.1.3"
  754. },
  755. "time": "2026-03-28T23:34:58+00:00"
  756. },
  757. {
  758. "name": "consolidation/site-process",
  759. "version": "5.4.2",
  760. "source": {
  761. "type": "git",
  762. "url": "https://github.com/consolidation/site-process.git",
  763. "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da"
  764. },
  765. "dist": {
  766. "type": "zip",
  767. "url": "https://api.github.com/repos/consolidation/site-process/zipball/e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da",
  768. "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da",
  769. "shasum": ""
  770. },
  771. "require": {
  772. "consolidation/config": "^2 || ^3",
  773. "consolidation/site-alias": "^3 || ^4",
  774. "php": ">=8.0.14",
  775. "symfony/console": "^5.4 || ^6 || ^7",
  776. "symfony/process": "^6 || ^7"
  777. },
  778. "require-dev": {
  779. "phpunit/phpunit": "^9",
  780. "squizlabs/php_codesniffer": "^3"
  781. },
  782. "type": "library",
  783. "extra": {
  784. "branch-alias": {
  785. "dev-main": "5.x-dev"
  786. }
  787. },
  788. "autoload": {
  789. "psr-4": {
  790. "Consolidation\\SiteProcess\\": "src"
  791. }
  792. },
  793. "notification-url": "https://packagist.org/downloads/",
  794. "license": [
  795. "MIT"
  796. ],
  797. "authors": [
  798. {
  799. "name": "Greg Anderson",
  800. "email": "greg.1.anderson@greenknowe.org"
  801. },
  802. {
  803. "name": "Moshe Weitzman",
  804. "email": "weitzman@tejasa.com"
  805. }
  806. ],
  807. "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.",
  808. "support": {
  809. "issues": "https://github.com/consolidation/site-process/issues",
  810. "source": "https://github.com/consolidation/site-process/tree/5.4.2"
  811. },
  812. "time": "2024-12-13T19:25:56+00:00"
  813. },
  814. {
  815. "name": "cweagans/composer-patches",
  816. "version": "1.7.3",
  817. "source": {
  818. "type": "git",
  819. "url": "https://github.com/cweagans/composer-patches.git",
  820. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  821. },
  822. "dist": {
  823. "type": "zip",
  824. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  825. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  826. "shasum": ""
  827. },
  828. "require": {
  829. "composer-plugin-api": "^1.0 || ^2.0",
  830. "php": ">=5.3.0"
  831. },
  832. "require-dev": {
  833. "composer/composer": "~1.0 || ~2.0",
  834. "phpunit/phpunit": "~4.6"
  835. },
  836. "type": "composer-plugin",
  837. "extra": {
  838. "class": "cweagans\\Composer\\Patches"
  839. },
  840. "autoload": {
  841. "psr-4": {
  842. "cweagans\\Composer\\": "src"
  843. }
  844. },
  845. "notification-url": "https://packagist.org/downloads/",
  846. "license": [
  847. "BSD-3-Clause"
  848. ],
  849. "authors": [
  850. {
  851. "name": "Cameron Eagans",
  852. "email": "me@cweagans.net"
  853. }
  854. ],
  855. "description": "Provides a way to patch Composer packages.",
  856. "support": {
  857. "issues": "https://github.com/cweagans/composer-patches/issues",
  858. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  859. },
  860. "time": "2022-12-20T22:53:13+00:00"
  861. },
  862. {
  863. "name": "dekor/php-array-table",
  864. "version": "2.0",
  865. "source": {
  866. "type": "git",
  867. "url": "https://github.com/deniskoronets/php-array-table.git",
  868. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5"
  869. },
  870. "dist": {
  871. "type": "zip",
  872. "url": "https://api.github.com/repos/deniskoronets/php-array-table/zipball/ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  873. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  874. "shasum": ""
  875. },
  876. "require": {
  877. "ext-mbstring": "*",
  878. "php": ">=5.6.0"
  879. },
  880. "require-dev": {
  881. "phpunit/phpunit": "^10"
  882. },
  883. "type": "library",
  884. "autoload": {
  885. "psr-4": {
  886. "dekor\\": "src"
  887. }
  888. },
  889. "notification-url": "https://packagist.org/downloads/",
  890. "license": [
  891. "BSD-3-Clause"
  892. ],
  893. "authors": [
  894. {
  895. "name": "Denis Koronets",
  896. "email": "deniskoronets@woo.zp.ua",
  897. "homepage": "https://woo.zp.ua/"
  898. }
  899. ],
  900. "description": "PHP Library for printing associative arrays as text table (similar to mysql terminal console)",
  901. "keywords": [
  902. "library",
  903. "php"
  904. ],
  905. "support": {
  906. "issues": "https://github.com/deniskoronets/php-array-table/issues",
  907. "source": "https://github.com/deniskoronets/php-array-table/tree/2.0"
  908. },
  909. "time": "2023-02-10T10:13:42+00:00"
  910. },
  911. {
  912. "name": "dflydev/dot-access-data",
  913. "version": "v3.0.3",
  914. "source": {
  915. "type": "git",
  916. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  917. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  918. },
  919. "dist": {
  920. "type": "zip",
  921. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  922. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  923. "shasum": ""
  924. },
  925. "require": {
  926. "php": "^7.1 || ^8.0"
  927. },
  928. "require-dev": {
  929. "phpstan/phpstan": "^0.12.42",
  930. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  931. "scrutinizer/ocular": "1.6.0",
  932. "squizlabs/php_codesniffer": "^3.5",
  933. "vimeo/psalm": "^4.0.0"
  934. },
  935. "type": "library",
  936. "extra": {
  937. "branch-alias": {
  938. "dev-main": "3.x-dev"
  939. }
  940. },
  941. "autoload": {
  942. "psr-4": {
  943. "Dflydev\\DotAccessData\\": "src/"
  944. }
  945. },
  946. "notification-url": "https://packagist.org/downloads/",
  947. "license": [
  948. "MIT"
  949. ],
  950. "authors": [
  951. {
  952. "name": "Dragonfly Development Inc.",
  953. "email": "info@dflydev.com",
  954. "homepage": "http://dflydev.com"
  955. },
  956. {
  957. "name": "Beau Simensen",
  958. "email": "beau@dflydev.com",
  959. "homepage": "http://beausimensen.com"
  960. },
  961. {
  962. "name": "Carlos Frutos",
  963. "email": "carlos@kiwing.it",
  964. "homepage": "https://github.com/cfrutos"
  965. },
  966. {
  967. "name": "Colin O'Dell",
  968. "email": "colinodell@gmail.com",
  969. "homepage": "https://www.colinodell.com"
  970. }
  971. ],
  972. "description": "Given a deep data structure, access data by dot notation.",
  973. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  974. "keywords": [
  975. "access",
  976. "data",
  977. "dot",
  978. "notation"
  979. ],
  980. "support": {
  981. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  982. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  983. },
  984. "time": "2024-07-08T12:26:09+00:00"
  985. },
  986. {
  987. "name": "doctrine/common",
  988. "version": "3.5.0",
  989. "source": {
  990. "type": "git",
  991. "url": "https://github.com/doctrine/common.git",
  992. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5"
  993. },
  994. "dist": {
  995. "type": "zip",
  996. "url": "https://api.github.com/repos/doctrine/common/zipball/d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  997. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  998. "shasum": ""
  999. },
  1000. "require": {
  1001. "doctrine/persistence": "^2.0 || ^3.0 || ^4.0",
  1002. "php": "^7.1 || ^8.0"
  1003. },
  1004. "require-dev": {
  1005. "doctrine/coding-standard": "^9.0 || ^10.0",
  1006. "doctrine/collections": "^1",
  1007. "phpstan/phpstan": "^1.4.1",
  1008. "phpstan/phpstan-phpunit": "^1",
  1009. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1010. "squizlabs/php_codesniffer": "^3.0",
  1011. "symfony/phpunit-bridge": "^6.1",
  1012. "vimeo/psalm": "^4.4"
  1013. },
  1014. "type": "library",
  1015. "autoload": {
  1016. "psr-4": {
  1017. "Doctrine\\Common\\": "src"
  1018. }
  1019. },
  1020. "notification-url": "https://packagist.org/downloads/",
  1021. "license": [
  1022. "MIT"
  1023. ],
  1024. "authors": [
  1025. {
  1026. "name": "Guilherme Blanco",
  1027. "email": "guilhermeblanco@gmail.com"
  1028. },
  1029. {
  1030. "name": "Roman Borschel",
  1031. "email": "roman@code-factory.org"
  1032. },
  1033. {
  1034. "name": "Benjamin Eberlei",
  1035. "email": "kontakt@beberlei.de"
  1036. },
  1037. {
  1038. "name": "Jonathan Wage",
  1039. "email": "jonwage@gmail.com"
  1040. },
  1041. {
  1042. "name": "Johannes Schmitt",
  1043. "email": "schmittjoh@gmail.com"
  1044. },
  1045. {
  1046. "name": "Marco Pivetta",
  1047. "email": "ocramius@gmail.com"
  1048. }
  1049. ],
  1050. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
  1051. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1052. "keywords": [
  1053. "common",
  1054. "doctrine",
  1055. "php"
  1056. ],
  1057. "support": {
  1058. "issues": "https://github.com/doctrine/common/issues",
  1059. "source": "https://github.com/doctrine/common/tree/3.5.0"
  1060. },
  1061. "funding": [
  1062. {
  1063. "url": "https://www.doctrine-project.org/sponsorship.html",
  1064. "type": "custom"
  1065. },
  1066. {
  1067. "url": "https://www.patreon.com/phpdoctrine",
  1068. "type": "patreon"
  1069. },
  1070. {
  1071. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1072. "type": "tidelift"
  1073. }
  1074. ],
  1075. "time": "2025-01-01T22:12:03+00:00"
  1076. },
  1077. {
  1078. "name": "doctrine/deprecations",
  1079. "version": "1.1.6",
  1080. "source": {
  1081. "type": "git",
  1082. "url": "https://github.com/doctrine/deprecations.git",
  1083. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca"
  1084. },
  1085. "dist": {
  1086. "type": "zip",
  1087. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  1088. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  1089. "shasum": ""
  1090. },
  1091. "require": {
  1092. "php": "^7.1 || ^8.0"
  1093. },
  1094. "conflict": {
  1095. "phpunit/phpunit": "<=7.5 || >=14"
  1096. },
  1097. "require-dev": {
  1098. "doctrine/coding-standard": "^9 || ^12 || ^14",
  1099. "phpstan/phpstan": "1.4.10 || 2.1.30",
  1100. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  1101. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12.4 || ^13.0",
  1102. "psr/log": "^1 || ^2 || ^3"
  1103. },
  1104. "suggest": {
  1105. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1106. },
  1107. "type": "library",
  1108. "autoload": {
  1109. "psr-4": {
  1110. "Doctrine\\Deprecations\\": "src"
  1111. }
  1112. },
  1113. "notification-url": "https://packagist.org/downloads/",
  1114. "license": [
  1115. "MIT"
  1116. ],
  1117. "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.",
  1118. "homepage": "https://www.doctrine-project.org/",
  1119. "support": {
  1120. "issues": "https://github.com/doctrine/deprecations/issues",
  1121. "source": "https://github.com/doctrine/deprecations/tree/1.1.6"
  1122. },
  1123. "time": "2026-02-07T07:09:04+00:00"
  1124. },
  1125. {
  1126. "name": "doctrine/event-manager",
  1127. "version": "2.1.1",
  1128. "source": {
  1129. "type": "git",
  1130. "url": "https://github.com/doctrine/event-manager.git",
  1131. "reference": "dda33921b198841ca8dbad2eaa5d4d34769d18cf"
  1132. },
  1133. "dist": {
  1134. "type": "zip",
  1135. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/dda33921b198841ca8dbad2eaa5d4d34769d18cf",
  1136. "reference": "dda33921b198841ca8dbad2eaa5d4d34769d18cf",
  1137. "shasum": ""
  1138. },
  1139. "require": {
  1140. "php": "^8.1"
  1141. },
  1142. "conflict": {
  1143. "doctrine/common": "<2.9"
  1144. },
  1145. "require-dev": {
  1146. "doctrine/coding-standard": "^14",
  1147. "phpdocumentor/guides-cli": "^1.4",
  1148. "phpstan/phpstan": "^2.1.32",
  1149. "phpunit/phpunit": "^10.5.58"
  1150. },
  1151. "type": "library",
  1152. "autoload": {
  1153. "psr-4": {
  1154. "Doctrine\\Common\\": "src"
  1155. }
  1156. },
  1157. "notification-url": "https://packagist.org/downloads/",
  1158. "license": [
  1159. "MIT"
  1160. ],
  1161. "authors": [
  1162. {
  1163. "name": "Guilherme Blanco",
  1164. "email": "guilhermeblanco@gmail.com"
  1165. },
  1166. {
  1167. "name": "Roman Borschel",
  1168. "email": "roman@code-factory.org"
  1169. },
  1170. {
  1171. "name": "Benjamin Eberlei",
  1172. "email": "kontakt@beberlei.de"
  1173. },
  1174. {
  1175. "name": "Jonathan Wage",
  1176. "email": "jonwage@gmail.com"
  1177. },
  1178. {
  1179. "name": "Johannes Schmitt",
  1180. "email": "schmittjoh@gmail.com"
  1181. },
  1182. {
  1183. "name": "Marco Pivetta",
  1184. "email": "ocramius@gmail.com"
  1185. }
  1186. ],
  1187. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1188. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1189. "keywords": [
  1190. "event",
  1191. "event dispatcher",
  1192. "event manager",
  1193. "event system",
  1194. "events"
  1195. ],
  1196. "support": {
  1197. "issues": "https://github.com/doctrine/event-manager/issues",
  1198. "source": "https://github.com/doctrine/event-manager/tree/2.1.1"
  1199. },
  1200. "funding": [
  1201. {
  1202. "url": "https://www.doctrine-project.org/sponsorship.html",
  1203. "type": "custom"
  1204. },
  1205. {
  1206. "url": "https://www.patreon.com/phpdoctrine",
  1207. "type": "patreon"
  1208. },
  1209. {
  1210. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1211. "type": "tidelift"
  1212. }
  1213. ],
  1214. "time": "2026-01-29T07:11:08+00:00"
  1215. },
  1216. {
  1217. "name": "doctrine/lexer",
  1218. "version": "2.1.1",
  1219. "source": {
  1220. "type": "git",
  1221. "url": "https://github.com/doctrine/lexer.git",
  1222. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  1223. },
  1224. "dist": {
  1225. "type": "zip",
  1226. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1227. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1228. "shasum": ""
  1229. },
  1230. "require": {
  1231. "doctrine/deprecations": "^1.0",
  1232. "php": "^7.1 || ^8.0"
  1233. },
  1234. "require-dev": {
  1235. "doctrine/coding-standard": "^9 || ^12",
  1236. "phpstan/phpstan": "^1.3",
  1237. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1238. "psalm/plugin-phpunit": "^0.18.3",
  1239. "vimeo/psalm": "^4.11 || ^5.21"
  1240. },
  1241. "type": "library",
  1242. "autoload": {
  1243. "psr-4": {
  1244. "Doctrine\\Common\\Lexer\\": "src"
  1245. }
  1246. },
  1247. "notification-url": "https://packagist.org/downloads/",
  1248. "license": [
  1249. "MIT"
  1250. ],
  1251. "authors": [
  1252. {
  1253. "name": "Guilherme Blanco",
  1254. "email": "guilhermeblanco@gmail.com"
  1255. },
  1256. {
  1257. "name": "Roman Borschel",
  1258. "email": "roman@code-factory.org"
  1259. },
  1260. {
  1261. "name": "Johannes Schmitt",
  1262. "email": "schmittjoh@gmail.com"
  1263. }
  1264. ],
  1265. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1266. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1267. "keywords": [
  1268. "annotations",
  1269. "docblock",
  1270. "lexer",
  1271. "parser",
  1272. "php"
  1273. ],
  1274. "support": {
  1275. "issues": "https://github.com/doctrine/lexer/issues",
  1276. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  1277. },
  1278. "funding": [
  1279. {
  1280. "url": "https://www.doctrine-project.org/sponsorship.html",
  1281. "type": "custom"
  1282. },
  1283. {
  1284. "url": "https://www.patreon.com/phpdoctrine",
  1285. "type": "patreon"
  1286. },
  1287. {
  1288. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1289. "type": "tidelift"
  1290. }
  1291. ],
  1292. "time": "2024-02-05T11:35:39+00:00"
  1293. },
  1294. {
  1295. "name": "doctrine/persistence",
  1296. "version": "4.1.1",
  1297. "source": {
  1298. "type": "git",
  1299. "url": "https://github.com/doctrine/persistence.git",
  1300. "reference": "b9c49ad3558bb77ef973f4e173f2e9c2eca9be09"
  1301. },
  1302. "dist": {
  1303. "type": "zip",
  1304. "url": "https://api.github.com/repos/doctrine/persistence/zipball/b9c49ad3558bb77ef973f4e173f2e9c2eca9be09",
  1305. "reference": "b9c49ad3558bb77ef973f4e173f2e9c2eca9be09",
  1306. "shasum": ""
  1307. },
  1308. "require": {
  1309. "doctrine/event-manager": "^1 || ^2",
  1310. "php": "^8.1",
  1311. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1312. },
  1313. "require-dev": {
  1314. "doctrine/coding-standard": "^14",
  1315. "phpstan/phpstan": "2.1.30",
  1316. "phpstan/phpstan-phpunit": "^2",
  1317. "phpstan/phpstan-strict-rules": "^2",
  1318. "phpunit/phpunit": "^10.5.58 || ^12",
  1319. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0",
  1320. "symfony/finder": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1321. },
  1322. "type": "library",
  1323. "autoload": {
  1324. "psr-4": {
  1325. "Doctrine\\Persistence\\": "src/Persistence"
  1326. }
  1327. },
  1328. "notification-url": "https://packagist.org/downloads/",
  1329. "license": [
  1330. "MIT"
  1331. ],
  1332. "authors": [
  1333. {
  1334. "name": "Guilherme Blanco",
  1335. "email": "guilhermeblanco@gmail.com"
  1336. },
  1337. {
  1338. "name": "Roman Borschel",
  1339. "email": "roman@code-factory.org"
  1340. },
  1341. {
  1342. "name": "Benjamin Eberlei",
  1343. "email": "kontakt@beberlei.de"
  1344. },
  1345. {
  1346. "name": "Jonathan Wage",
  1347. "email": "jonwage@gmail.com"
  1348. },
  1349. {
  1350. "name": "Johannes Schmitt",
  1351. "email": "schmittjoh@gmail.com"
  1352. },
  1353. {
  1354. "name": "Marco Pivetta",
  1355. "email": "ocramius@gmail.com"
  1356. }
  1357. ],
  1358. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1359. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1360. "keywords": [
  1361. "mapper",
  1362. "object",
  1363. "odm",
  1364. "orm",
  1365. "persistence"
  1366. ],
  1367. "support": {
  1368. "issues": "https://github.com/doctrine/persistence/issues",
  1369. "source": "https://github.com/doctrine/persistence/tree/4.1.1"
  1370. },
  1371. "funding": [
  1372. {
  1373. "url": "https://www.doctrine-project.org/sponsorship.html",
  1374. "type": "custom"
  1375. },
  1376. {
  1377. "url": "https://www.patreon.com/phpdoctrine",
  1378. "type": "patreon"
  1379. },
  1380. {
  1381. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1382. "type": "tidelift"
  1383. }
  1384. ],
  1385. "time": "2025-10-16T20:13:18+00:00"
  1386. },
  1387. {
  1388. "name": "drupal/addtoany",
  1389. "version": "2.0.7",
  1390. "source": {
  1391. "type": "git",
  1392. "url": "https://git.drupalcode.org/project/addtoany.git",
  1393. "reference": "2.0.7"
  1394. },
  1395. "dist": {
  1396. "type": "zip",
  1397. "url": "https://ftp.drupal.org/files/projects/addtoany-2.0.7.zip",
  1398. "reference": "2.0.7",
  1399. "shasum": "33bfb5f425134705f8208f7c2f6ac23382a87bb6"
  1400. },
  1401. "require": {
  1402. "drupal/core": "^10.1 || ^11"
  1403. },
  1404. "type": "drupal-module",
  1405. "extra": {
  1406. "drupal": {
  1407. "version": "2.0.7",
  1408. "datestamp": "1731984029",
  1409. "security-coverage": {
  1410. "status": "covered",
  1411. "message": "Covered by Drupal's security advisory policy"
  1412. }
  1413. }
  1414. },
  1415. "notification-url": "https://packages.drupal.org/8/downloads",
  1416. "license": [
  1417. "GPL-2.0-or-later"
  1418. ],
  1419. "authors": [
  1420. {
  1421. "name": "AddToAny",
  1422. "homepage": "https://www.drupal.org/user/2640913"
  1423. },
  1424. {
  1425. "name": "micropat",
  1426. "homepage": "https://www.drupal.org/user/260224"
  1427. }
  1428. ],
  1429. "description": "Share buttons for Drupal including the AddToAny universal share button, Facebook, Mastodon, Pinterest, WhatsApp and many more.",
  1430. "homepage": "https://www.drupal.org/project/addtoany",
  1431. "keywords": [
  1432. "Drupal"
  1433. ],
  1434. "support": {
  1435. "source": "https://git.drupalcode.org/project/addtoany",
  1436. "issues": "https://www.drupal.org/project/issues/addtoany"
  1437. }
  1438. },
  1439. {
  1440. "name": "drupal/admin_toolbar",
  1441. "version": "3.6.3",
  1442. "source": {
  1443. "type": "git",
  1444. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1445. "reference": "3.6.3"
  1446. },
  1447. "dist": {
  1448. "type": "zip",
  1449. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.6.3.zip",
  1450. "reference": "3.6.3",
  1451. "shasum": "9dfd1088a96464237998c3606b63c2d71644a1bf"
  1452. },
  1453. "require": {
  1454. "drupal/core": "^9.5 || ^10 || ^11"
  1455. },
  1456. "conflict": {
  1457. "drupal/project_browser": "<2.1.0"
  1458. },
  1459. "type": "drupal-module",
  1460. "extra": {
  1461. "drupal": {
  1462. "version": "3.6.3",
  1463. "datestamp": "1767318997",
  1464. "security-coverage": {
  1465. "status": "covered",
  1466. "message": "Covered by Drupal's security advisory policy"
  1467. }
  1468. }
  1469. },
  1470. "notification-url": "https://packages.drupal.org/8/downloads",
  1471. "license": [
  1472. "GPL-2.0-or-later"
  1473. ],
  1474. "authors": [
  1475. {
  1476. "name": "Wilfrid Roze (eme)",
  1477. "homepage": "https://www.drupal.org/u/eme",
  1478. "role": "Maintainer"
  1479. },
  1480. {
  1481. "name": "Romain Jarraud (romainj)",
  1482. "homepage": "https://www.drupal.org/u/romainj",
  1483. "role": "Maintainer"
  1484. },
  1485. {
  1486. "name": "Adrian Cid Almaguer (adriancid)",
  1487. "homepage": "https://www.drupal.org/u/adriancid",
  1488. "email": "adriancid@gmail.com",
  1489. "role": "Maintainer"
  1490. },
  1491. {
  1492. "name": "Mohamed Anis Taktak (matio89)",
  1493. "homepage": "https://www.drupal.org/u/matio89",
  1494. "role": "Maintainer"
  1495. },
  1496. {
  1497. "name": "David Suissa (DYdave)",
  1498. "homepage": "https://www.drupal.org/u/dydave",
  1499. "role": "Maintainer"
  1500. },
  1501. {
  1502. "name": "japerry",
  1503. "homepage": "https://www.drupal.org/user/45640"
  1504. },
  1505. {
  1506. "name": "matio89",
  1507. "homepage": "https://www.drupal.org/user/2320090"
  1508. },
  1509. {
  1510. "name": "musa.thomas",
  1511. "homepage": "https://www.drupal.org/user/1213824"
  1512. },
  1513. {
  1514. "name": "romainj",
  1515. "homepage": "https://www.drupal.org/user/370706"
  1516. }
  1517. ],
  1518. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1519. "homepage": "http://drupal.org/project/admin_toolbar",
  1520. "keywords": [
  1521. "Drupal",
  1522. "Toolbar"
  1523. ],
  1524. "support": {
  1525. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1526. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1527. }
  1528. },
  1529. {
  1530. "name": "drupal/adminimal_theme",
  1531. "version": "1.7.0",
  1532. "source": {
  1533. "type": "git",
  1534. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1535. "reference": "8.x-1.7"
  1536. },
  1537. "dist": {
  1538. "type": "zip",
  1539. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1540. "reference": "8.x-1.7",
  1541. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1542. },
  1543. "require": {
  1544. "drupal/core": "^9.3 || ^10",
  1545. "drupal/seven": "~1.0"
  1546. },
  1547. "type": "drupal-theme",
  1548. "extra": {
  1549. "drupal": {
  1550. "version": "8.x-1.7",
  1551. "datestamp": "1691504486",
  1552. "security-coverage": {
  1553. "status": "covered",
  1554. "message": "Covered by Drupal's security advisory policy"
  1555. }
  1556. }
  1557. },
  1558. "notification-url": "https://packages.drupal.org/8/downloads",
  1559. "license": [
  1560. "GPL-2.0+"
  1561. ],
  1562. "authors": [
  1563. {
  1564. "name": "ANDiTKO",
  1565. "homepage": "https://www.drupal.org/user/1428124"
  1566. },
  1567. {
  1568. "name": "andrey.troeglazov",
  1569. "homepage": "https://www.drupal.org/user/3145389"
  1570. },
  1571. {
  1572. "name": "realityloop",
  1573. "homepage": "https://www.drupal.org/user/139189"
  1574. },
  1575. {
  1576. "name": "rjjakes",
  1577. "homepage": "https://www.drupal.org/user/3457245"
  1578. }
  1579. ],
  1580. "description": "Drupal administration theme with modern minimalist design.",
  1581. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1582. "support": {
  1583. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1584. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1585. }
  1586. },
  1587. {
  1588. "name": "drupal/audiofield",
  1589. "version": "1.13.0",
  1590. "source": {
  1591. "type": "git",
  1592. "url": "https://git.drupalcode.org/project/audiofield.git",
  1593. "reference": "8.x-1.13"
  1594. },
  1595. "dist": {
  1596. "type": "zip",
  1597. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1598. "reference": "8.x-1.13",
  1599. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1600. },
  1601. "require": {
  1602. "drupal/core": "^8 || ^9 || ^10"
  1603. },
  1604. "type": "drupal-module",
  1605. "extra": {
  1606. "drupal": {
  1607. "version": "8.x-1.13",
  1608. "datestamp": "1681143245",
  1609. "security-coverage": {
  1610. "status": "covered",
  1611. "message": "Covered by Drupal's security advisory policy"
  1612. }
  1613. },
  1614. "drush": {
  1615. "services": {
  1616. "drush.services.yml": "^9"
  1617. }
  1618. }
  1619. },
  1620. "notification-url": "https://packages.drupal.org/8/downloads",
  1621. "license": [
  1622. "GPL-2.0-or-later"
  1623. ],
  1624. "authors": [
  1625. {
  1626. "name": "Daniel Moberly",
  1627. "homepage": "https://www.drupal.org/u/danielmoberly",
  1628. "role": "Maintainer"
  1629. },
  1630. {
  1631. "name": "tamerzg",
  1632. "homepage": "https://www.drupal.org/user/464564"
  1633. }
  1634. ],
  1635. "description": "AudioField Module",
  1636. "homepage": "https://www.drupal.org/project/audiofield",
  1637. "support": {
  1638. "source": "https://git.drupalcode.org/project/audiofield",
  1639. "issues": "https://www.drupal.org/project/issues/audiofield"
  1640. }
  1641. },
  1642. {
  1643. "name": "drupal/autologout",
  1644. "version": "2.0.2",
  1645. "source": {
  1646. "type": "git",
  1647. "url": "https://git.drupalcode.org/project/autologout.git",
  1648. "reference": "2.0.2"
  1649. },
  1650. "dist": {
  1651. "type": "zip",
  1652. "url": "https://ftp.drupal.org/files/projects/autologout-2.0.2.zip",
  1653. "reference": "2.0.2",
  1654. "shasum": "5e9bb2b37368cdb5e5d09f27ac4018466aaac2d6"
  1655. },
  1656. "require": {
  1657. "drupal/core": "^9.2 || ^10 || ^11"
  1658. },
  1659. "type": "drupal-module",
  1660. "extra": {
  1661. "drupal": {
  1662. "version": "2.0.2",
  1663. "datestamp": "1773996386",
  1664. "security-coverage": {
  1665. "status": "covered",
  1666. "message": "Covered by Drupal's security advisory policy"
  1667. }
  1668. }
  1669. },
  1670. "notification-url": "https://packages.drupal.org/8/downloads",
  1671. "license": [
  1672. "GPL-2.0-or-later"
  1673. ],
  1674. "authors": [
  1675. {
  1676. "name": "ajits",
  1677. "homepage": "https://www.drupal.org/user/981944"
  1678. },
  1679. {
  1680. "name": "AjK",
  1681. "homepage": "https://www.drupal.org/user/39030"
  1682. },
  1683. {
  1684. "name": "boshtian",
  1685. "homepage": "https://www.drupal.org/user/1773456"
  1686. },
  1687. {
  1688. "name": "dandrews",
  1689. "homepage": "https://www.drupal.org/user/2014490"
  1690. },
  1691. {
  1692. "name": "darksnow",
  1693. "homepage": "https://www.drupal.org/user/391915"
  1694. },
  1695. {
  1696. "name": "japerry",
  1697. "homepage": "https://www.drupal.org/user/45640"
  1698. },
  1699. {
  1700. "name": "johnennew",
  1701. "homepage": "https://www.drupal.org/user/1150042"
  1702. },
  1703. {
  1704. "name": "jrglasgow",
  1705. "homepage": "https://www.drupal.org/user/36590"
  1706. },
  1707. {
  1708. "name": "kmasood",
  1709. "homepage": "https://www.drupal.org/user/1262860"
  1710. },
  1711. {
  1712. "name": "levelos",
  1713. "homepage": "https://www.drupal.org/user/54135"
  1714. },
  1715. {
  1716. "name": "prabeen.giri",
  1717. "homepage": "https://www.drupal.org/user/913078"
  1718. },
  1719. {
  1720. "name": "str8",
  1721. "homepage": "https://www.drupal.org/user/2865063"
  1722. },
  1723. {
  1724. "name": "the_g_bomb",
  1725. "homepage": "https://www.drupal.org/user/492012"
  1726. }
  1727. ],
  1728. "description": "Adds automated timed logout.",
  1729. "homepage": "http://drupal.org/project/autologout",
  1730. "support": {
  1731. "source": "https://git.drupalcode.org/project/autologout",
  1732. "issues": "https://www.drupal.org/project/issues/autologout"
  1733. }
  1734. },
  1735. {
  1736. "name": "drupal/basic",
  1737. "version": "3.0.0-alpha4",
  1738. "source": {
  1739. "type": "git",
  1740. "url": "https://git.drupalcode.org/project/basic.git",
  1741. "reference": "3.0.0-alpha4"
  1742. },
  1743. "dist": {
  1744. "type": "zip",
  1745. "url": "https://ftp.drupal.org/files/projects/basic-3.0.0-alpha4.zip",
  1746. "reference": "3.0.0-alpha4",
  1747. "shasum": "2dda4fced39b3419a85895ead1af95f28afaa3ed"
  1748. },
  1749. "require": {
  1750. "drupal/core": "^9.3 || ^10 || ^11"
  1751. },
  1752. "type": "drupal-theme",
  1753. "extra": {
  1754. "drupal": {
  1755. "version": "3.0.0-alpha4",
  1756. "datestamp": "1753388945",
  1757. "security-coverage": {
  1758. "status": "not-covered",
  1759. "message": "Alpha releases are not covered by Drupal security advisories."
  1760. }
  1761. }
  1762. },
  1763. "notification-url": "https://packages.drupal.org/8/downloads",
  1764. "license": [
  1765. "GPL-2.0+"
  1766. ],
  1767. "authors": [
  1768. {
  1769. "name": "Steve Krueger",
  1770. "homepage": "http://thejibe.com",
  1771. "email": "steve@thejibe.com",
  1772. "role": "Maintainer"
  1773. },
  1774. {
  1775. "name": "Joël Pittet",
  1776. "homepage": "https://www.drupal.org/u/joelpittet",
  1777. "email": "joel@pittet.ca",
  1778. "role": "Maintainer"
  1779. },
  1780. {
  1781. "name": "Leah Wagner",
  1782. "homepage": "http://thejibe.com",
  1783. "email": "leah@thejibe.com",
  1784. "role": "Maintainer"
  1785. },
  1786. {
  1787. "name": "Catherine Winters",
  1788. "homepage": "http://www.catherinewinters.com",
  1789. "email": "catherine@catherinewinters.com",
  1790. "role": "Maintainer"
  1791. },
  1792. {
  1793. "name": "Johannes Schmidt",
  1794. "homepage": "http://2tabs.com",
  1795. "email": "mail@2tabs.com",
  1796. "role": "Maintainer"
  1797. },
  1798. {
  1799. "name": "Chuck Kosman",
  1800. "homepage": "http://thejibe.com",
  1801. "email": "chuck@thejibe.com",
  1802. "role": "Maintainer"
  1803. },
  1804. {
  1805. "name": "leahtard",
  1806. "homepage": "https://www.drupal.org/user/683812"
  1807. },
  1808. {
  1809. "name": "SteveK",
  1810. "homepage": "https://www.drupal.org/user/111656"
  1811. }
  1812. ],
  1813. "description": "HTML5, SASS, Responsive grid starter theme.",
  1814. "homepage": "http://drupal.org/project/basic",
  1815. "support": {
  1816. "source": "http://cgit.drupalcode.org/basic",
  1817. "issues": "https://www.drupal.org/project/issues/basic",
  1818. "irc": "irc://irc.freenode.org/drupal-contribute"
  1819. }
  1820. },
  1821. {
  1822. "name": "drupal/bulkdelete",
  1823. "version": "dev-1.x",
  1824. "source": {
  1825. "type": "git",
  1826. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  1827. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  1828. },
  1829. "require": {
  1830. "drupal/core": "^8.7.7 || ^9 || ^10"
  1831. },
  1832. "type": "drupal-module",
  1833. "extra": {
  1834. "branch-alias": {
  1835. "dev-1.x": "1.x-dev"
  1836. },
  1837. "drupal": {
  1838. "version": "8.x-1.x-dev",
  1839. "datestamp": "1655322426",
  1840. "security-coverage": {
  1841. "status": "not-covered",
  1842. "message": "Dev releases are not covered by Drupal security advisories."
  1843. }
  1844. }
  1845. },
  1846. "notification-url": "https://packages.drupal.org/8/downloads",
  1847. "license": [
  1848. "GPL-2.0-or-later"
  1849. ],
  1850. "authors": [
  1851. {
  1852. "name": "Kars-T",
  1853. "homepage": "https://www.drupal.org/user/224499"
  1854. },
  1855. {
  1856. "name": "Rahul Seth",
  1857. "homepage": "https://www.drupal.org/user/2694359"
  1858. },
  1859. {
  1860. "name": "adriancid",
  1861. "homepage": "https://www.drupal.org/user/1962106"
  1862. },
  1863. {
  1864. "name": "robertDouglass",
  1865. "homepage": "https://www.drupal.org/user/5449"
  1866. }
  1867. ],
  1868. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  1869. "homepage": "https://www.drupal.org/project/bulkdelete",
  1870. "support": {
  1871. "source": "https://git.drupalcode.org/project/bulkdelete"
  1872. }
  1873. },
  1874. {
  1875. "name": "drupal/classy",
  1876. "version": "1.0.2",
  1877. "source": {
  1878. "type": "git",
  1879. "url": "https://git.drupalcode.org/project/classy.git",
  1880. "reference": "1.0.2"
  1881. },
  1882. "dist": {
  1883. "type": "zip",
  1884. "url": "https://ftp.drupal.org/files/projects/classy-1.0.2.zip",
  1885. "reference": "1.0.2",
  1886. "shasum": "c2f4fbfd9ae7d4e0cbd952d96247d00a0759da06"
  1887. },
  1888. "require": {
  1889. "drupal/core": "^9 || ^10",
  1890. "drupal/stable": "^2.0.0"
  1891. },
  1892. "type": "drupal-theme",
  1893. "extra": {
  1894. "drupal": {
  1895. "version": "1.0.2",
  1896. "datestamp": "1663949784",
  1897. "security-coverage": {
  1898. "status": "covered",
  1899. "message": "Covered by Drupal's security advisory policy"
  1900. }
  1901. }
  1902. },
  1903. "notification-url": "https://packages.drupal.org/8/downloads",
  1904. "license": [
  1905. "GPL-2.0-or-later"
  1906. ],
  1907. "authors": [
  1908. {
  1909. "name": "bnjmnm",
  1910. "homepage": "https://www.drupal.org/user/2369194"
  1911. },
  1912. {
  1913. "name": "davidhernandez",
  1914. "homepage": "https://www.drupal.org/user/274559"
  1915. },
  1916. {
  1917. "name": "lauriii",
  1918. "homepage": "https://www.drupal.org/user/1078742"
  1919. },
  1920. {
  1921. "name": "smustgrave",
  1922. "homepage": "https://www.drupal.org/user/3252890"
  1923. }
  1924. ],
  1925. "description": "The Classy base theme from Drupal 8/9 moved to contrib",
  1926. "homepage": "https://drupal.org/project/classy",
  1927. "support": {
  1928. "source": "https://git.drupalcode.org/project/classy",
  1929. "issues": "https://drupal.org/project/issues/classy"
  1930. }
  1931. },
  1932. {
  1933. "name": "drupal/color_field",
  1934. "version": "3.0.2",
  1935. "source": {
  1936. "type": "git",
  1937. "url": "https://git.drupalcode.org/project/color_field.git",
  1938. "reference": "3.0.2"
  1939. },
  1940. "dist": {
  1941. "type": "zip",
  1942. "url": "https://ftp.drupal.org/files/projects/color_field-3.0.2.zip",
  1943. "reference": "3.0.2",
  1944. "shasum": "2778e454798a59d3e9fd27f56a161562e2d1f0fe"
  1945. },
  1946. "require": {
  1947. "drupal/core": "^9 || ^10 || ^11"
  1948. },
  1949. "require-dev": {
  1950. "drupal/core-recommended": "^9 || ^10 || ^11",
  1951. "drupal/feeds": "^3.0@beta",
  1952. "drupal/token": "~1.3"
  1953. },
  1954. "type": "drupal-module",
  1955. "extra": {
  1956. "drupal": {
  1957. "version": "3.0.2",
  1958. "datestamp": "1743394003",
  1959. "security-coverage": {
  1960. "status": "covered",
  1961. "message": "Covered by Drupal's security advisory policy"
  1962. }
  1963. }
  1964. },
  1965. "notification-url": "https://packages.drupal.org/8/downloads",
  1966. "license": [
  1967. "GPL-2.0-or-later"
  1968. ],
  1969. "authors": [
  1970. {
  1971. "name": "targoo",
  1972. "homepage": "https://www.drupal.org/user/431910",
  1973. "role": "Maintainer"
  1974. },
  1975. {
  1976. "name": "Nick Wilde",
  1977. "homepage": "https://www.drupal.org/user/nickwilde",
  1978. "role": "Maintainer"
  1979. },
  1980. {
  1981. "name": "targoo",
  1982. "homepage": "https://www.drupal.org/user/431910"
  1983. }
  1984. ],
  1985. "description": "Provides a color field type to store the color value and opacity",
  1986. "homepage": "https://www.drupal.org/project/color_field",
  1987. "support": {
  1988. "source": "https://git.drupalcode.org/project/color_field",
  1989. "issues": "https://www.drupal.org/project/issues/color_field"
  1990. }
  1991. },
  1992. {
  1993. "name": "drupal/composer_deploy",
  1994. "version": "1.10.0",
  1995. "source": {
  1996. "type": "git",
  1997. "url": "https://git.drupalcode.org/project/composer_deploy.git",
  1998. "reference": "8.x-1.10"
  1999. },
  2000. "dist": {
  2001. "type": "zip",
  2002. "url": "https://ftp.drupal.org/files/projects/composer_deploy-8.x-1.10.zip",
  2003. "reference": "8.x-1.10",
  2004. "shasum": "71a80d50a6f2a0f1f00fcae3dd61865ef3caf6bd"
  2005. },
  2006. "require": {
  2007. "drupal/core": "^9 || ^10 || ^11",
  2008. "php": ">=8.1",
  2009. "webflo/drupal-finder": "^1.3"
  2010. },
  2011. "type": "drupal-module",
  2012. "extra": {
  2013. "drupal": {
  2014. "version": "8.x-1.10",
  2015. "datestamp": "1728893427",
  2016. "security-coverage": {
  2017. "status": "covered",
  2018. "message": "Covered by Drupal's security advisory policy"
  2019. }
  2020. }
  2021. },
  2022. "notification-url": "https://packages.drupal.org/8/downloads",
  2023. "license": [
  2024. "GPL-2.0+"
  2025. ],
  2026. "authors": [
  2027. {
  2028. "name": "jhedstrom",
  2029. "homepage": "https://www.drupal.org/user/208732"
  2030. },
  2031. {
  2032. "name": "joelpittet",
  2033. "homepage": "https://www.drupal.org/user/160302"
  2034. },
  2035. {
  2036. "name": "nerdstein",
  2037. "homepage": "https://www.drupal.org/user/1557710"
  2038. },
  2039. {
  2040. "name": "webflo",
  2041. "homepage": "https://www.drupal.org/user/254778"
  2042. }
  2043. ],
  2044. "description": "Provide version number from composers lockfile.",
  2045. "homepage": "https://www.drupal.org/project/composer_deploy",
  2046. "support": {
  2047. "source": "https://git.drupalcode.org/project/composer_deploy"
  2048. }
  2049. },
  2050. {
  2051. "name": "drupal/config_devel",
  2052. "version": "1.11.0",
  2053. "source": {
  2054. "type": "git",
  2055. "url": "https://git.drupalcode.org/project/config_devel.git",
  2056. "reference": "8.x-1.11"
  2057. },
  2058. "dist": {
  2059. "type": "zip",
  2060. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.11.zip",
  2061. "reference": "8.x-1.11",
  2062. "shasum": "06e68921c2ab737d775445068280c23c176edf19"
  2063. },
  2064. "require": {
  2065. "drupal/core": "^9.3 || ^10 || ^11"
  2066. },
  2067. "type": "drupal-module",
  2068. "extra": {
  2069. "drupal": {
  2070. "version": "8.x-1.11",
  2071. "datestamp": "1763045911",
  2072. "security-coverage": {
  2073. "status": "covered",
  2074. "message": "Covered by Drupal's security advisory policy"
  2075. }
  2076. }
  2077. },
  2078. "notification-url": "https://packages.drupal.org/8/downloads",
  2079. "license": [
  2080. "GPL-2.0+"
  2081. ],
  2082. "authors": [
  2083. {
  2084. "name": "alexpott",
  2085. "homepage": "https://www.drupal.org/user/157725"
  2086. },
  2087. {
  2088. "name": "benjy",
  2089. "homepage": "https://www.drupal.org/user/1852732"
  2090. },
  2091. {
  2092. "name": "chx",
  2093. "homepage": "https://www.drupal.org/user/9446"
  2094. },
  2095. {
  2096. "name": "joachim",
  2097. "homepage": "https://www.drupal.org/user/107701"
  2098. },
  2099. {
  2100. "name": "vijaycs85",
  2101. "homepage": "https://www.drupal.org/user/93488"
  2102. }
  2103. ],
  2104. "description": "Helps developers work with configuration.",
  2105. "homepage": "https://www.drupal.org/project/config_devel",
  2106. "support": {
  2107. "source": "https://git.drupalcode.org/project/config_devel"
  2108. }
  2109. },
  2110. {
  2111. "name": "drupal/config_filter",
  2112. "version": "2.7.0",
  2113. "source": {
  2114. "type": "git",
  2115. "url": "https://git.drupalcode.org/project/config_filter.git",
  2116. "reference": "8.x-2.7"
  2117. },
  2118. "dist": {
  2119. "type": "zip",
  2120. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.7.zip",
  2121. "reference": "8.x-2.7",
  2122. "shasum": "7fe7161b93c7e24c6db135f1cf82d144bef66e50"
  2123. },
  2124. "require": {
  2125. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2126. },
  2127. "conflict": {
  2128. "drush/drush": "<10"
  2129. },
  2130. "suggest": {
  2131. "drupal/config_split": "Split site configuration for different environments."
  2132. },
  2133. "type": "drupal-module",
  2134. "extra": {
  2135. "drupal": {
  2136. "version": "8.x-2.7",
  2137. "datestamp": "1727472458",
  2138. "security-coverage": {
  2139. "status": "covered",
  2140. "message": "Covered by Drupal's security advisory policy"
  2141. }
  2142. }
  2143. },
  2144. "notification-url": "https://packages.drupal.org/8/downloads",
  2145. "license": [
  2146. "GPL-2.0-or-later"
  2147. ],
  2148. "authors": [
  2149. {
  2150. "name": "Fabian Bircher",
  2151. "homepage": "https://www.drupal.org/u/bircher",
  2152. "email": "opensource@fabianbircher.com",
  2153. "role": "Maintainer"
  2154. },
  2155. {
  2156. "name": "Nuvole Web",
  2157. "homepage": "http://nuvole.org",
  2158. "email": "info@nuvole.org",
  2159. "role": "Maintainer"
  2160. },
  2161. {
  2162. "name": "pescetti",
  2163. "homepage": "https://www.drupal.org/user/436244"
  2164. }
  2165. ],
  2166. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2167. "homepage": "https://www.drupal.org/project/config_filter",
  2168. "keywords": [
  2169. "Drupal",
  2170. "configuration",
  2171. "configuration management"
  2172. ],
  2173. "support": {
  2174. "source": "https://git.drupalcode.org/project/config_filter",
  2175. "issues": "https://www.drupal.org/project/issues/config_filter",
  2176. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2177. }
  2178. },
  2179. {
  2180. "name": "drupal/config_ignore",
  2181. "version": "3.3.0",
  2182. "source": {
  2183. "type": "git",
  2184. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2185. "reference": "8.x-3.3"
  2186. },
  2187. "dist": {
  2188. "type": "zip",
  2189. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  2190. "reference": "8.x-3.3",
  2191. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  2192. },
  2193. "require": {
  2194. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2195. },
  2196. "require-dev": {
  2197. "drupal/config_filter": "^1.8||^2.2",
  2198. "drush/drush": "^10 || ^11 || ^12"
  2199. },
  2200. "type": "drupal-module",
  2201. "extra": {
  2202. "drupal": {
  2203. "version": "8.x-3.3",
  2204. "datestamp": "1713299496",
  2205. "security-coverage": {
  2206. "status": "covered",
  2207. "message": "Covered by Drupal's security advisory policy"
  2208. }
  2209. }
  2210. },
  2211. "notification-url": "https://packages.drupal.org/8/downloads",
  2212. "license": [
  2213. "GPL-2.0-or-later"
  2214. ],
  2215. "authors": [
  2216. {
  2217. "name": "Tommy Lynge Jørgensen",
  2218. "homepage": "https://www.drupal.org/u/tlyngej",
  2219. "email": "tlyngej@gmail.com",
  2220. "role": "Maintainer"
  2221. },
  2222. {
  2223. "name": "Fabian Bircher",
  2224. "homepage": "https://www.drupal.org/u/bircher",
  2225. "role": "Maintainer"
  2226. },
  2227. {
  2228. "name": "tlyngej",
  2229. "homepage": "https://www.drupal.org/user/413139"
  2230. }
  2231. ],
  2232. "description": "Ignore certain configuration during import and export.",
  2233. "homepage": "http://drupal.org/project/config_ignore",
  2234. "support": {
  2235. "source": "https://git.drupalcode.org/project/config_ignore",
  2236. "issues": "http://drupal.org/project/config_ignore"
  2237. }
  2238. },
  2239. {
  2240. "name": "drupal/config_update",
  2241. "version": "2.0.0-alpha4",
  2242. "source": {
  2243. "type": "git",
  2244. "url": "https://git.drupalcode.org/project/config_update.git",
  2245. "reference": "2.0.0-alpha4"
  2246. },
  2247. "dist": {
  2248. "type": "zip",
  2249. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip",
  2250. "reference": "2.0.0-alpha4",
  2251. "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e"
  2252. },
  2253. "require": {
  2254. "drupal/core": "^9.4 || ^10 || ^11"
  2255. },
  2256. "type": "drupal-module",
  2257. "extra": {
  2258. "drupal": {
  2259. "version": "2.0.0-alpha4",
  2260. "datestamp": "1724596931",
  2261. "security-coverage": {
  2262. "status": "not-covered",
  2263. "message": "Alpha releases are not covered by Drupal security advisories."
  2264. }
  2265. }
  2266. },
  2267. "notification-url": "https://packages.drupal.org/8/downloads",
  2268. "license": [
  2269. "GPL-2.0-or-later"
  2270. ],
  2271. "authors": [
  2272. {
  2273. "name": "codebymikey",
  2274. "homepage": "https://www.drupal.org/user/3573206"
  2275. },
  2276. {
  2277. "name": "pasqualle",
  2278. "homepage": "https://www.drupal.org/user/80733"
  2279. },
  2280. {
  2281. "name": "vishalkhode",
  2282. "homepage": "https://www.drupal.org/user/2439156"
  2283. }
  2284. ],
  2285. "description": "Provides basic revert and update functionality for other modules.",
  2286. "homepage": "https://www.drupal.org/project/config_update",
  2287. "support": {
  2288. "source": "https://git.drupalcode.org/project/config_update"
  2289. }
  2290. },
  2291. {
  2292. "name": "drupal/context",
  2293. "version": "5.0.0-rc2",
  2294. "source": {
  2295. "type": "git",
  2296. "url": "https://git.drupalcode.org/project/context.git",
  2297. "reference": "5.0.0-rc2"
  2298. },
  2299. "dist": {
  2300. "type": "zip",
  2301. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc2.zip",
  2302. "reference": "5.0.0-rc2",
  2303. "shasum": "05e866f01bc57b5346d52a5b6230fdd13e21695d"
  2304. },
  2305. "require": {
  2306. "drupal/core": "^9.3 || ^10 || ^11"
  2307. },
  2308. "type": "drupal-module",
  2309. "extra": {
  2310. "drupal": {
  2311. "version": "5.0.0-rc2",
  2312. "datestamp": "1741253306",
  2313. "security-coverage": {
  2314. "status": "not-covered",
  2315. "message": "RC releases are not covered by Drupal security advisories."
  2316. }
  2317. }
  2318. },
  2319. "notification-url": "https://packages.drupal.org/8/downloads",
  2320. "license": [
  2321. "MIT"
  2322. ],
  2323. "authors": [
  2324. {
  2325. "name": "Christoffer Palm",
  2326. "homepage": "http://www.oddhill.se/",
  2327. "email": "christoffer.palm@oddhill.se",
  2328. "role": "Developer"
  2329. },
  2330. {
  2331. "name": "boshtian",
  2332. "homepage": "https://www.drupal.org/user/1773456"
  2333. },
  2334. {
  2335. "name": "colan",
  2336. "homepage": "https://www.drupal.org/user/58704"
  2337. },
  2338. {
  2339. "name": "emanaton",
  2340. "homepage": "https://www.drupal.org/user/120853"
  2341. },
  2342. {
  2343. "name": "febbraro",
  2344. "homepage": "https://www.drupal.org/user/43670"
  2345. },
  2346. {
  2347. "name": "fizk",
  2348. "homepage": "https://www.drupal.org/user/473174"
  2349. },
  2350. {
  2351. "name": "hass",
  2352. "homepage": "https://www.drupal.org/user/85918"
  2353. },
  2354. {
  2355. "name": "hefox",
  2356. "homepage": "https://www.drupal.org/user/426416"
  2357. },
  2358. {
  2359. "name": "jmiccolis",
  2360. "homepage": "https://www.drupal.org/user/31731"
  2361. },
  2362. {
  2363. "name": "kristen pol",
  2364. "homepage": "https://www.drupal.org/user/8389"
  2365. },
  2366. {
  2367. "name": "mandclu",
  2368. "homepage": "https://www.drupal.org/user/52136"
  2369. },
  2370. {
  2371. "name": "nedjo",
  2372. "homepage": "https://www.drupal.org/user/4481"
  2373. },
  2374. {
  2375. "name": "NormySan",
  2376. "homepage": "https://www.drupal.org/user/112352"
  2377. },
  2378. {
  2379. "name": "patricksettle",
  2380. "homepage": "https://www.drupal.org/user/26618"
  2381. },
  2382. {
  2383. "name": "paulocs",
  2384. "homepage": "https://www.drupal.org/user/3640109"
  2385. },
  2386. {
  2387. "name": "steven jones",
  2388. "homepage": "https://www.drupal.org/user/99644"
  2389. },
  2390. {
  2391. "name": "tekante",
  2392. "homepage": "https://www.drupal.org/user/640024"
  2393. },
  2394. {
  2395. "name": "yhahn",
  2396. "homepage": "https://www.drupal.org/user/264833"
  2397. }
  2398. ],
  2399. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2400. "homepage": "https://github.com/oddhill/context",
  2401. "keywords": [
  2402. "Drupal",
  2403. "block",
  2404. "conditions",
  2405. "context",
  2406. "visibility"
  2407. ],
  2408. "support": {
  2409. "source": "https://github.com/oddhill/context",
  2410. "issues": "https://github.com/oddhill/context/issues",
  2411. "docs": "https://github.com/oddhill/context"
  2412. }
  2413. },
  2414. {
  2415. "name": "drupal/core",
  2416. "version": "10.6.5",
  2417. "source": {
  2418. "type": "git",
  2419. "url": "https://github.com/drupal/core.git",
  2420. "reference": "bdca8f642833a5c959994d41e232f51b5a835a2d"
  2421. },
  2422. "dist": {
  2423. "type": "zip",
  2424. "url": "https://api.github.com/repos/drupal/core/zipball/bdca8f642833a5c959994d41e232f51b5a835a2d",
  2425. "reference": "bdca8f642833a5c959994d41e232f51b5a835a2d",
  2426. "shasum": ""
  2427. },
  2428. "require": {
  2429. "asm89/stack-cors": "^2.3",
  2430. "composer-runtime-api": "^2.1",
  2431. "composer/semver": "^3.3",
  2432. "doctrine/lexer": "^2",
  2433. "egulias/email-validator": "^3.2.1|^4.0",
  2434. "ext-date": "*",
  2435. "ext-dom": "*",
  2436. "ext-filter": "*",
  2437. "ext-gd": "*",
  2438. "ext-hash": "*",
  2439. "ext-json": "*",
  2440. "ext-pcre": "*",
  2441. "ext-pdo": "*",
  2442. "ext-session": "*",
  2443. "ext-simplexml": "*",
  2444. "ext-spl": "*",
  2445. "ext-tokenizer": "*",
  2446. "ext-xml": "*",
  2447. "guzzlehttp/guzzle": "^7.5",
  2448. "guzzlehttp/psr7": "^2.4.5",
  2449. "masterminds/html5": "^2.7",
  2450. "mck89/peast": "^1.14",
  2451. "pear/archive_tar": "^1.4.14",
  2452. "php": ">=8.1.0",
  2453. "psr/log": "^3.0",
  2454. "sebastian/diff": "^4",
  2455. "symfony/console": "^6.4",
  2456. "symfony/dependency-injection": "^6.4",
  2457. "symfony/event-dispatcher": "^6.4",
  2458. "symfony/filesystem": "^6.4",
  2459. "symfony/finder": "^6.4",
  2460. "symfony/http-foundation": "^6.4",
  2461. "symfony/http-kernel": "^6.4",
  2462. "symfony/mailer": "^6.4",
  2463. "symfony/mime": "^6.4",
  2464. "symfony/polyfill-iconv": "^1.26",
  2465. "symfony/process": "^6.4.33",
  2466. "symfony/psr-http-message-bridge": "^2.1|^6.4",
  2467. "symfony/routing": "^6.4",
  2468. "symfony/serializer": "^6.4",
  2469. "symfony/validator": "^6.4",
  2470. "symfony/yaml": "^6.4",
  2471. "twig/twig": "^3.22.0"
  2472. },
  2473. "conflict": {
  2474. "dealerdirect/phpcodesniffer-composer-installer": "1.1.0",
  2475. "drush/drush": "<12.4.3"
  2476. },
  2477. "replace": {
  2478. "drupal/core-annotation": "self.version",
  2479. "drupal/core-assertion": "self.version",
  2480. "drupal/core-class-finder": "self.version",
  2481. "drupal/core-datetime": "self.version",
  2482. "drupal/core-dependency-injection": "self.version",
  2483. "drupal/core-diff": "self.version",
  2484. "drupal/core-discovery": "self.version",
  2485. "drupal/core-event-dispatcher": "self.version",
  2486. "drupal/core-file-cache": "self.version",
  2487. "drupal/core-file-security": "self.version",
  2488. "drupal/core-filesystem": "self.version",
  2489. "drupal/core-front-matter": "self.version",
  2490. "drupal/core-gettext": "self.version",
  2491. "drupal/core-graph": "self.version",
  2492. "drupal/core-http-foundation": "self.version",
  2493. "drupal/core-php-storage": "self.version",
  2494. "drupal/core-plugin": "self.version",
  2495. "drupal/core-proxy-builder": "self.version",
  2496. "drupal/core-render": "self.version",
  2497. "drupal/core-serialization": "self.version",
  2498. "drupal/core-transliteration": "self.version",
  2499. "drupal/core-utility": "self.version",
  2500. "drupal/core-uuid": "self.version",
  2501. "drupal/core-version": "self.version"
  2502. },
  2503. "suggest": {
  2504. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  2505. },
  2506. "type": "drupal-core",
  2507. "extra": {
  2508. "drupal-scaffold": {
  2509. "file-mapping": {
  2510. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2511. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  2512. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2513. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2514. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2515. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2516. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2517. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2518. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2519. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2520. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2521. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2522. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2523. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2524. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt",
  2525. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2526. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2527. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2528. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2529. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2530. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2531. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2532. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php"
  2533. }
  2534. }
  2535. },
  2536. "autoload": {
  2537. "files": [
  2538. "includes/bootstrap.inc"
  2539. ],
  2540. "psr-4": {
  2541. "Drupal\\Core\\": "lib/Drupal/Core",
  2542. "Drupal\\Component\\": "lib/Drupal/Component"
  2543. },
  2544. "classmap": [
  2545. "lib/Drupal.php",
  2546. "lib/Drupal/Component/DependencyInjection/Container.php",
  2547. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  2548. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  2549. "lib/Drupal/Component/Utility/Timer.php",
  2550. "lib/Drupal/Component/Utility/Unicode.php",
  2551. "lib/Drupal/Core/Cache/Cache.php",
  2552. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  2553. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  2554. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  2555. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  2556. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  2557. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  2558. "lib/Drupal/Core/Database/Connection.php",
  2559. "lib/Drupal/Core/Database/Database.php",
  2560. "lib/Drupal/Core/Database/StatementInterface.php",
  2561. "lib/Drupal/Core/DependencyInjection/Container.php",
  2562. "lib/Drupal/Core/DrupalKernel.php",
  2563. "lib/Drupal/Core/DrupalKernelInterface.php",
  2564. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  2565. "lib/Drupal/Core/Site/Settings.php",
  2566. "lib/Drupal/Component/Datetime/Time.php"
  2567. ]
  2568. },
  2569. "notification-url": "https://packagist.org/downloads/",
  2570. "license": [
  2571. "GPL-2.0-or-later"
  2572. ],
  2573. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2574. "support": {
  2575. "source": "https://github.com/drupal/core/tree/10.6.5"
  2576. },
  2577. "time": "2026-03-06T09:55:31+00:00"
  2578. },
  2579. {
  2580. "name": "drupal/core-composer-scaffold",
  2581. "version": "10.6.5",
  2582. "source": {
  2583. "type": "git",
  2584. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2585. "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55"
  2586. },
  2587. "dist": {
  2588. "type": "zip",
  2589. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/db17b59620ce1c142a34dc017d9e696ce4771e55",
  2590. "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55",
  2591. "shasum": ""
  2592. },
  2593. "require": {
  2594. "composer-plugin-api": "^2",
  2595. "php": ">=7.3.0"
  2596. },
  2597. "conflict": {
  2598. "drupal-composer/drupal-scaffold": "*"
  2599. },
  2600. "require-dev": {
  2601. "composer/composer": "^1.8@stable"
  2602. },
  2603. "type": "composer-plugin",
  2604. "extra": {
  2605. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2606. "branch-alias": {
  2607. "dev-master": "1.0.x-dev"
  2608. }
  2609. },
  2610. "autoload": {
  2611. "psr-4": {
  2612. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2613. }
  2614. },
  2615. "notification-url": "https://packagist.org/downloads/",
  2616. "license": [
  2617. "GPL-2.0-or-later"
  2618. ],
  2619. "description": "A flexible Composer project scaffold builder.",
  2620. "homepage": "https://www.drupal.org/project/drupal",
  2621. "keywords": [
  2622. "drupal"
  2623. ],
  2624. "support": {
  2625. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.6.5"
  2626. },
  2627. "time": "2024-08-22T14:31:30+00:00"
  2628. },
  2629. {
  2630. "name": "drupal/core-project-message",
  2631. "version": "10.6.5",
  2632. "source": {
  2633. "type": "git",
  2634. "url": "https://github.com/drupal/core-project-message.git",
  2635. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8"
  2636. },
  2637. "dist": {
  2638. "type": "zip",
  2639. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  2640. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  2641. "shasum": ""
  2642. },
  2643. "require": {
  2644. "composer-plugin-api": "^2",
  2645. "php": ">=7.3.0"
  2646. },
  2647. "type": "composer-plugin",
  2648. "extra": {
  2649. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  2650. },
  2651. "autoload": {
  2652. "psr-4": {
  2653. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  2654. }
  2655. },
  2656. "notification-url": "https://packagist.org/downloads/",
  2657. "license": [
  2658. "GPL-2.0-or-later"
  2659. ],
  2660. "description": "Adds a message after Composer installation.",
  2661. "homepage": "https://www.drupal.org/project/drupal",
  2662. "keywords": [
  2663. "drupal"
  2664. ],
  2665. "support": {
  2666. "source": "https://github.com/drupal/core-project-message/tree/11.1.9"
  2667. },
  2668. "time": "2023-07-24T07:55:25+00:00"
  2669. },
  2670. {
  2671. "name": "drupal/core-recommended",
  2672. "version": "10.6.5",
  2673. "source": {
  2674. "type": "git",
  2675. "url": "https://github.com/drupal/core-recommended.git",
  2676. "reference": "91aab952508e514c6811380ceb8abde71960bad6"
  2677. },
  2678. "dist": {
  2679. "type": "zip",
  2680. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/91aab952508e514c6811380ceb8abde71960bad6",
  2681. "reference": "91aab952508e514c6811380ceb8abde71960bad6",
  2682. "shasum": ""
  2683. },
  2684. "require": {
  2685. "asm89/stack-cors": "~v2.3.0",
  2686. "composer/semver": "~3.4.4",
  2687. "doctrine/deprecations": "~1.1.5",
  2688. "doctrine/lexer": "~2.1.1",
  2689. "drupal/core": "10.6.5",
  2690. "egulias/email-validator": "~4.0.4",
  2691. "guzzlehttp/guzzle": "~7.10.0",
  2692. "guzzlehttp/promises": "~2.3.0",
  2693. "guzzlehttp/psr7": "~2.8.0",
  2694. "masterminds/html5": "~2.10.0",
  2695. "mck89/peast": "~v1.17.4",
  2696. "pear/archive_tar": "~1.6.0",
  2697. "pear/console_getopt": "~v1.4.3",
  2698. "pear/pear-core-minimal": "~v1.10.16",
  2699. "pear/pear_exception": "~v1.0.2",
  2700. "psr/container": "~2.0.2",
  2701. "psr/event-dispatcher": "~1.0.0",
  2702. "psr/http-client": "~1.0.3",
  2703. "psr/http-factory": "~1.1.0",
  2704. "psr/log": "~3.0.2",
  2705. "ralouphie/getallheaders": "~3.0.3",
  2706. "sebastian/diff": "~4.0.6",
  2707. "symfony/console": "~v6.4.27",
  2708. "symfony/dependency-injection": "~v6.4.26",
  2709. "symfony/deprecation-contracts": "~v3.6.0",
  2710. "symfony/error-handler": "~v6.4.26",
  2711. "symfony/event-dispatcher": "~v6.4.25",
  2712. "symfony/event-dispatcher-contracts": "~v3.6.0",
  2713. "symfony/filesystem": "~v6.4.24",
  2714. "symfony/finder": "~v6.4.27",
  2715. "symfony/http-foundation": "~v6.4.29",
  2716. "symfony/http-kernel": "~v6.4.29",
  2717. "symfony/mailer": "~v6.4.27",
  2718. "symfony/mime": "~v6.4.26",
  2719. "symfony/polyfill-ctype": "~v1.33.0",
  2720. "symfony/polyfill-iconv": "~v1.33.0",
  2721. "symfony/polyfill-intl-grapheme": "~v1.33.0",
  2722. "symfony/polyfill-intl-idn": "~v1.33.0",
  2723. "symfony/polyfill-intl-normalizer": "~v1.33.0",
  2724. "symfony/polyfill-mbstring": "~v1.33.0",
  2725. "symfony/polyfill-php83": "~v1.33.0",
  2726. "symfony/process": "~v6.4.33",
  2727. "symfony/psr-http-message-bridge": "~v6.4.24",
  2728. "symfony/routing": "~v6.4.28",
  2729. "symfony/serializer": "~v6.4.27",
  2730. "symfony/service-contracts": "~v3.6.1",
  2731. "symfony/string": "~v6.4.26",
  2732. "symfony/translation-contracts": "~v3.6.1",
  2733. "symfony/validator": "~v6.4.29",
  2734. "symfony/var-dumper": "~v6.4.26",
  2735. "symfony/var-exporter": "~v6.4.26",
  2736. "symfony/yaml": "~v6.4.26",
  2737. "twig/twig": "~v3.22.0"
  2738. },
  2739. "conflict": {
  2740. "webflo/drupal-core-strict": "*"
  2741. },
  2742. "type": "metapackage",
  2743. "notification-url": "https://packagist.org/downloads/",
  2744. "license": [
  2745. "GPL-2.0-or-later"
  2746. ],
  2747. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  2748. "support": {
  2749. "source": "https://github.com/drupal/core-recommended/tree/10.6.5"
  2750. },
  2751. "time": "2026-03-06T09:55:31+00:00"
  2752. },
  2753. {
  2754. "name": "drupal/ctools",
  2755. "version": "4.1.0",
  2756. "source": {
  2757. "type": "git",
  2758. "url": "https://git.drupalcode.org/project/ctools.git",
  2759. "reference": "4.1.0"
  2760. },
  2761. "dist": {
  2762. "type": "zip",
  2763. "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip",
  2764. "reference": "4.1.0",
  2765. "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874"
  2766. },
  2767. "require": {
  2768. "drupal/core": "^9.5 || ^10 || ^11"
  2769. },
  2770. "type": "drupal-module",
  2771. "extra": {
  2772. "drupal": {
  2773. "version": "4.1.0",
  2774. "datestamp": "1718144949",
  2775. "security-coverage": {
  2776. "status": "covered",
  2777. "message": "Covered by Drupal's security advisory policy"
  2778. }
  2779. },
  2780. "branch-alias": {
  2781. "dev-8.x-3.x": "3.x-dev"
  2782. }
  2783. },
  2784. "notification-url": "https://packages.drupal.org/8/downloads",
  2785. "license": [
  2786. "GPL-2.0-or-later"
  2787. ],
  2788. "authors": [
  2789. {
  2790. "name": "Kris Vanderwater (EclipseGc)",
  2791. "homepage": "https://www.drupal.org/u/eclipsegc",
  2792. "role": "Maintainer"
  2793. },
  2794. {
  2795. "name": "Jakob Perry (japerry)",
  2796. "homepage": "https://www.drupal.org/u/japerry",
  2797. "role": "Maintainer"
  2798. },
  2799. {
  2800. "name": "Tim Plunkett (tim.plunkett)",
  2801. "homepage": "https://www.drupal.org/u/timplunkett",
  2802. "role": "Maintainer"
  2803. },
  2804. {
  2805. "name": "James Gilliland (neclimdul)",
  2806. "homepage": "https://www.drupal.org/u/neclimdul",
  2807. "role": "Maintainer"
  2808. },
  2809. {
  2810. "name": "Daniel Wehner (dawehner)",
  2811. "homepage": "https://www.drupal.org/u/dawehner",
  2812. "role": "Maintainer"
  2813. },
  2814. {
  2815. "name": "joelpittet",
  2816. "homepage": "https://www.drupal.org/user/160302"
  2817. },
  2818. {
  2819. "name": "merlinofchaos",
  2820. "homepage": "https://www.drupal.org/user/26979"
  2821. },
  2822. {
  2823. "name": "neclimdul",
  2824. "homepage": "https://www.drupal.org/user/48673"
  2825. },
  2826. {
  2827. "name": "sdboyer",
  2828. "homepage": "https://www.drupal.org/user/146719"
  2829. },
  2830. {
  2831. "name": "sun",
  2832. "homepage": "https://www.drupal.org/user/54136"
  2833. },
  2834. {
  2835. "name": "tim.plunkett",
  2836. "homepage": "https://www.drupal.org/user/241634"
  2837. }
  2838. ],
  2839. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  2840. "homepage": "https://www.drupal.org/project/ctools",
  2841. "support": {
  2842. "source": "https://git.drupalcode.org/project/ctools",
  2843. "issues": "https://www.drupal.org/project/issues/ctools"
  2844. }
  2845. },
  2846. {
  2847. "name": "drupal/date_range_formatter",
  2848. "version": "4.0.2",
  2849. "source": {
  2850. "type": "git",
  2851. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  2852. "reference": "4.0.2"
  2853. },
  2854. "dist": {
  2855. "type": "zip",
  2856. "url": "https://ftp.drupal.org/files/projects/date_range_formatter-4.0.2.zip",
  2857. "reference": "4.0.2",
  2858. "shasum": "0d953912148e384aed6a6cee64115faf170319c0"
  2859. },
  2860. "require": {
  2861. "drupal/core": "^8 || ^9 || ^10"
  2862. },
  2863. "type": "drupal-module",
  2864. "extra": {
  2865. "drupal": {
  2866. "version": "4.0.2",
  2867. "datestamp": "1703156621",
  2868. "security-coverage": {
  2869. "status": "covered",
  2870. "message": "Covered by Drupal's security advisory policy"
  2871. }
  2872. }
  2873. },
  2874. "notification-url": "https://packages.drupal.org/8/downloads",
  2875. "license": [
  2876. "GPL-2.0-or-later"
  2877. ],
  2878. "authors": [
  2879. {
  2880. "name": "maximpodorov",
  2881. "homepage": "https://www.drupal.org/user/515310"
  2882. },
  2883. {
  2884. "name": "sudishth",
  2885. "homepage": "https://www.drupal.org/user/1440562"
  2886. }
  2887. ],
  2888. "description": "Formats date ranges.",
  2889. "homepage": "https://www.drupal.org/project/date_range_formatter",
  2890. "support": {
  2891. "source": "https://git.drupalcode.org/project/date_range_formatter"
  2892. }
  2893. },
  2894. {
  2895. "name": "drupal/devel",
  2896. "version": "5.5.0",
  2897. "source": {
  2898. "type": "git",
  2899. "url": "https://git.drupalcode.org/project/devel.git",
  2900. "reference": "5.5.0"
  2901. },
  2902. "dist": {
  2903. "type": "zip",
  2904. "url": "https://ftp.drupal.org/files/projects/devel-5.5.0.zip",
  2905. "reference": "5.5.0",
  2906. "shasum": "b6f45c84ec31bc18817c7464b51e951dec73d5ce"
  2907. },
  2908. "require": {
  2909. "doctrine/common": "^2.7 || ^3.4",
  2910. "drupal/core": "^10.3 || ^11 || ^12",
  2911. "php": ">=8.3",
  2912. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7"
  2913. },
  2914. "conflict": {
  2915. "drupal/core": "<10.3",
  2916. "drush/drush": "<13.7.0"
  2917. },
  2918. "require-dev": {
  2919. "drupal/navigation_extra_tools": "1.0.x-dev",
  2920. "drush/drush": "^13",
  2921. "firephp/firephp-core": "^0.5.3"
  2922. },
  2923. "type": "drupal-module",
  2924. "extra": {
  2925. "drupal": {
  2926. "version": "5.5.0",
  2927. "datestamp": "1764211205",
  2928. "security-coverage": {
  2929. "status": "covered",
  2930. "message": "Covered by Drupal's security advisory policy"
  2931. }
  2932. }
  2933. },
  2934. "notification-url": "https://packages.drupal.org/8/downloads",
  2935. "license": [
  2936. "GPL-2.0-or-later"
  2937. ],
  2938. "authors": [
  2939. {
  2940. "name": "moshe weitzman",
  2941. "homepage": "https://www.drupal.org/user/23"
  2942. }
  2943. ],
  2944. "description": "Various blocks, pages, and functions for developers.",
  2945. "homepage": "https://www.drupal.org/project/devel",
  2946. "support": {
  2947. "source": "https://gitlab.com/drupalspoons/devel",
  2948. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  2949. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  2950. }
  2951. },
  2952. {
  2953. "name": "drupal/domain",
  2954. "version": "2.0.0",
  2955. "source": {
  2956. "type": "git",
  2957. "url": "https://git.drupalcode.org/project/domain.git",
  2958. "reference": "2.0.0"
  2959. },
  2960. "dist": {
  2961. "type": "zip",
  2962. "url": "https://ftp.drupal.org/files/projects/domain-2.0.0.zip",
  2963. "reference": "2.0.0",
  2964. "shasum": "c53dc7621a3cac591b40025911711e9b852feafa"
  2965. },
  2966. "require": {
  2967. "drupal/core": "^10.2 || ^11"
  2968. },
  2969. "require-dev": {
  2970. "drupal/domain_access": "*",
  2971. "drupal/domain_config": "*"
  2972. },
  2973. "type": "drupal-module",
  2974. "extra": {
  2975. "drupal": {
  2976. "version": "2.0.0",
  2977. "datestamp": "1772625533",
  2978. "security-coverage": {
  2979. "status": "covered",
  2980. "message": "Covered by Drupal's security advisory policy"
  2981. }
  2982. }
  2983. },
  2984. "notification-url": "https://packages.drupal.org/8/downloads",
  2985. "license": [
  2986. "GPL-2.0-or-later"
  2987. ],
  2988. "authors": [
  2989. {
  2990. "name": "agentrickard",
  2991. "homepage": "https://www.drupal.org/user/20975"
  2992. },
  2993. {
  2994. "name": "danrod",
  2995. "homepage": "https://www.drupal.org/user/19150"
  2996. },
  2997. {
  2998. "name": "mably",
  2999. "homepage": "https://www.drupal.org/user/3375160"
  3000. },
  3001. {
  3002. "name": "nonsie",
  3003. "homepage": "https://www.drupal.org/user/29899"
  3004. },
  3005. {
  3006. "name": "webflo",
  3007. "homepage": "https://www.drupal.org/user/254778"
  3008. }
  3009. ],
  3010. "description": "Creates domain records within a Drupal installation.",
  3011. "homepage": "https://www.drupal.org/project/domain",
  3012. "support": {
  3013. "source": "https://git.drupalcode.org/project/domain"
  3014. }
  3015. },
  3016. {
  3017. "name": "drupal/domain_access",
  3018. "version": "2.0.0",
  3019. "require": {
  3020. "drupal/core": "^10.2 || ^11",
  3021. "drupal/domain": "*"
  3022. },
  3023. "type": "metapackage",
  3024. "extra": {
  3025. "drupal": {
  3026. "version": "2.0.0",
  3027. "datestamp": "1772625533",
  3028. "security-coverage": {
  3029. "status": "covered",
  3030. "message": "Covered by Drupal's security advisory policy"
  3031. }
  3032. }
  3033. },
  3034. "notification-url": "https://packages.drupal.org/8/downloads",
  3035. "license": [
  3036. "GPL-2.0-or-later"
  3037. ],
  3038. "authors": [
  3039. {
  3040. "name": "agentrickard",
  3041. "homepage": "https://www.drupal.org/user/20975"
  3042. },
  3043. {
  3044. "name": "danrod",
  3045. "homepage": "https://www.drupal.org/user/19150"
  3046. },
  3047. {
  3048. "name": "mably",
  3049. "homepage": "https://www.drupal.org/user/3375160"
  3050. },
  3051. {
  3052. "name": "nonsie",
  3053. "homepage": "https://www.drupal.org/user/29899"
  3054. },
  3055. {
  3056. "name": "webflo",
  3057. "homepage": "https://www.drupal.org/user/254778"
  3058. }
  3059. ],
  3060. "description": "Domain-based access control for content.",
  3061. "homepage": "https://www.drupal.org/project/domain",
  3062. "support": {
  3063. "source": "https://git.drupalcode.org/project/domain"
  3064. }
  3065. },
  3066. {
  3067. "name": "drupal/domain_config",
  3068. "version": "2.0.0-beta1",
  3069. "require": {
  3070. "drupal/core": "^9 || ^10",
  3071. "drupal/domain": "*"
  3072. },
  3073. "type": "metapackage",
  3074. "extra": {
  3075. "drupal": {
  3076. "version": "2.0.0-beta1",
  3077. "datestamp": "1686067462",
  3078. "security-coverage": {
  3079. "status": "not-covered",
  3080. "message": "Beta releases are not covered by Drupal security advisories."
  3081. }
  3082. }
  3083. },
  3084. "notification-url": "https://packages.drupal.org/8/downloads",
  3085. "license": [
  3086. "GPL-2.0-or-later"
  3087. ],
  3088. "authors": [
  3089. {
  3090. "name": "agentrickard",
  3091. "homepage": "https://www.drupal.org/user/20975"
  3092. },
  3093. {
  3094. "name": "nonsie",
  3095. "homepage": "https://www.drupal.org/user/29899"
  3096. },
  3097. {
  3098. "name": "webflo",
  3099. "homepage": "https://www.drupal.org/user/254778"
  3100. }
  3101. ],
  3102. "description": "Allows domain specific configuration.",
  3103. "homepage": "https://www.drupal.org/project/domain",
  3104. "support": {
  3105. "source": "https://git.drupalcode.org/project/domain"
  3106. }
  3107. },
  3108. {
  3109. "name": "drupal/domain_menu_access",
  3110. "version": "2.0.1",
  3111. "source": {
  3112. "type": "git",
  3113. "url": "https://git.drupalcode.org/project/domain_menu_access.git",
  3114. "reference": "2.0.1"
  3115. },
  3116. "dist": {
  3117. "type": "zip",
  3118. "url": "https://ftp.drupal.org/files/projects/domain_menu_access-2.0.1.zip",
  3119. "reference": "2.0.1",
  3120. "shasum": "d2b94e6fbd4657b604ac15866d5b798fc40700b7"
  3121. },
  3122. "require": {
  3123. "drupal/core": "^10.2 || ^11",
  3124. "drupal/domain": "^1.0 || ^2.0",
  3125. "drupal/domain_access": "*"
  3126. },
  3127. "require-dev": {
  3128. "drupal/menu_block": "^1.0",
  3129. "phpstan/phpstan-deprecation-rules": "^1.1",
  3130. "phpstan/phpstan-strict-rules": "^1.5"
  3131. },
  3132. "suggest": {
  3133. "drupal/menu_block": "Provides configurable blocks of menu links and is needed to allow to install the submodule domain_menu_access_menu_block"
  3134. },
  3135. "type": "drupal-module",
  3136. "extra": {
  3137. "drupal": {
  3138. "version": "2.0.1",
  3139. "datestamp": "1744139145",
  3140. "security-coverage": {
  3141. "status": "covered",
  3142. "message": "Covered by Drupal's security advisory policy"
  3143. }
  3144. }
  3145. },
  3146. "notification-url": "https://packages.drupal.org/8/downloads",
  3147. "license": [
  3148. "GPL-2.0-or-later"
  3149. ],
  3150. "authors": [
  3151. {
  3152. "name": "maciej.zgadzaj",
  3153. "homepage": "https://www.drupal.org/u/maciejzgadzaj",
  3154. "role": "Maintainer"
  3155. },
  3156. {
  3157. "name": "Oleksandr Dekhteruk (pifagor)",
  3158. "homepage": "https://www.drupal.org/u/pifagor",
  3159. "role": "Co-maintainer"
  3160. },
  3161. {
  3162. "name": "Sebastien MALOT (Sebastien M.)",
  3163. "homepage": "https://www.drupal.org/u/sebastien-m",
  3164. "role": "Co-maintainer"
  3165. },
  3166. {
  3167. "name": "Tim Diels (tim-diels)",
  3168. "homepage": "https://www.drupal.org/u/tim-diels",
  3169. "role": "Co-maintainer"
  3170. }
  3171. ],
  3172. "description": "Domain-based access control for menu link.",
  3173. "homepage": "https://www.drupal.org/project/domain_menu_access",
  3174. "support": {
  3175. "source": "https://git.drupalcode.org/project/domain_menu_access",
  3176. "issues": "https://drupal.org/project/issues/domain_menu_access"
  3177. }
  3178. },
  3179. {
  3180. "name": "drupal/domain_site_settings",
  3181. "version": "1.6.0",
  3182. "source": {
  3183. "type": "git",
  3184. "url": "https://git.drupalcode.org/project/domain_site_settings.git",
  3185. "reference": "8.x-1.6"
  3186. },
  3187. "dist": {
  3188. "type": "zip",
  3189. "url": "https://ftp.drupal.org/files/projects/domain_site_settings-8.x-1.6.zip",
  3190. "reference": "8.x-1.6",
  3191. "shasum": "d0f89411c5dd934a63a1a5991fbc0f76c1515cb2"
  3192. },
  3193. "require": {
  3194. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  3195. "drupal/domain": "^1.0 || ^2.0",
  3196. "drupal/domain_config": "*"
  3197. },
  3198. "type": "drupal-module",
  3199. "extra": {
  3200. "drupal": {
  3201. "version": "8.x-1.6",
  3202. "datestamp": "1726238712",
  3203. "security-coverage": {
  3204. "status": "covered",
  3205. "message": "Covered by Drupal's security advisory policy"
  3206. }
  3207. }
  3208. },
  3209. "notification-url": "https://packages.drupal.org/8/downloads",
  3210. "license": [
  3211. "GPL-2.0+"
  3212. ],
  3213. "authors": [
  3214. {
  3215. "name": "aloknarwaria",
  3216. "homepage": "https://www.drupal.org/user/906640"
  3217. },
  3218. {
  3219. "name": "jeroent",
  3220. "homepage": "https://www.drupal.org/user/2228934"
  3221. },
  3222. {
  3223. "name": "malaynayak",
  3224. "homepage": "https://www.drupal.org/user/3529755"
  3225. }
  3226. ],
  3227. "description": "Basic Site Setting for Domains.",
  3228. "homepage": "https://www.drupal.org/project/domain_site_settings",
  3229. "keywords": [
  3230. "Drupal"
  3231. ],
  3232. "support": {
  3233. "source": "http://cgit.drupalcode.org/domain_site_settings",
  3234. "issues": "https://www.drupal.org/project/issues/domain_site_settings"
  3235. }
  3236. },
  3237. {
  3238. "name": "drupal/email_registration",
  3239. "version": "1.4.0",
  3240. "source": {
  3241. "type": "git",
  3242. "url": "https://git.drupalcode.org/project/email_registration.git",
  3243. "reference": "8.x-1.4"
  3244. },
  3245. "dist": {
  3246. "type": "zip",
  3247. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip",
  3248. "reference": "8.x-1.4",
  3249. "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186"
  3250. },
  3251. "require": {
  3252. "drupal/core": "^9.1 || ^10"
  3253. },
  3254. "conflict": {
  3255. "drupal/commerce": "<2.12"
  3256. },
  3257. "require-dev": {
  3258. "drupal/commerce": "^2.0",
  3259. "drupal/token": "*"
  3260. },
  3261. "type": "drupal-module",
  3262. "extra": {
  3263. "drupal": {
  3264. "version": "8.x-1.4",
  3265. "datestamp": "1700548925",
  3266. "security-coverage": {
  3267. "status": "covered",
  3268. "message": "Covered by Drupal's security advisory policy"
  3269. }
  3270. }
  3271. },
  3272. "notification-url": "https://packages.drupal.org/8/downloads",
  3273. "license": [
  3274. "GPL-2.0-or-later"
  3275. ],
  3276. "authors": [
  3277. {
  3278. "name": "Greg Knaddison (greggles)",
  3279. "homepage": "https://www.drupal.org/u/greggles",
  3280. "role": "Maintainer"
  3281. },
  3282. {
  3283. "name": "Andrey Postnikov (andypost)",
  3284. "homepage": "https://www.drupal.org/u/andypost",
  3285. "role": "Maintainer"
  3286. },
  3287. {
  3288. "name": "Chris Herberte",
  3289. "homepage": "https://www.drupal.org/u/chris-herberte",
  3290. "role": "Maintainer"
  3291. },
  3292. {
  3293. "name": "Moshe Weitzman (moshe weitzman)",
  3294. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3295. "role": "Maintainer"
  3296. },
  3297. {
  3298. "name": "Grevil",
  3299. "homepage": "https://www.drupal.org/user/3668491"
  3300. },
  3301. {
  3302. "name": "moshe weitzman",
  3303. "homepage": "https://www.drupal.org/user/23"
  3304. }
  3305. ],
  3306. "description": "Allows users to register with an email address as their username.",
  3307. "homepage": "https://www.drupal.org/project/email_registration",
  3308. "support": {
  3309. "source": "https://git.drupalcode.org/project/email_registration",
  3310. "issues": "http://drupal.org/project/issues/email_registration"
  3311. }
  3312. },
  3313. {
  3314. "name": "drupal/entity",
  3315. "version": "1.6.0",
  3316. "source": {
  3317. "type": "git",
  3318. "url": "https://git.drupalcode.org/project/entity.git",
  3319. "reference": "8.x-1.6"
  3320. },
  3321. "dist": {
  3322. "type": "zip",
  3323. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.6.zip",
  3324. "reference": "8.x-1.6",
  3325. "shasum": "dfb214fd45bd6ad79604d23a39a96b3d4c38f8e1"
  3326. },
  3327. "require": {
  3328. "drupal/core": "^10.1 || ^11"
  3329. },
  3330. "type": "drupal-module",
  3331. "extra": {
  3332. "drupal": {
  3333. "version": "8.x-1.6",
  3334. "datestamp": "1740006812",
  3335. "security-coverage": {
  3336. "status": "covered",
  3337. "message": "Covered by Drupal's security advisory policy"
  3338. }
  3339. }
  3340. },
  3341. "notification-url": "https://packages.drupal.org/8/downloads",
  3342. "license": [
  3343. "GPL-2.0-or-later"
  3344. ],
  3345. "authors": [
  3346. {
  3347. "name": "berdir",
  3348. "homepage": "https://www.drupal.org/user/214652"
  3349. },
  3350. {
  3351. "name": "bojanz",
  3352. "homepage": "https://www.drupal.org/user/86106"
  3353. },
  3354. {
  3355. "name": "dawehner",
  3356. "homepage": "https://www.drupal.org/user/99340"
  3357. },
  3358. {
  3359. "name": "dixon_",
  3360. "homepage": "https://www.drupal.org/user/239911"
  3361. },
  3362. {
  3363. "name": "fago",
  3364. "homepage": "https://www.drupal.org/user/16747"
  3365. },
  3366. {
  3367. "name": "mglaman",
  3368. "homepage": "https://www.drupal.org/user/2416470"
  3369. },
  3370. {
  3371. "name": "tr",
  3372. "homepage": "https://www.drupal.org/user/202830"
  3373. }
  3374. ],
  3375. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3376. "homepage": "https://www.drupal.org/project/entity",
  3377. "support": {
  3378. "source": "https://git.drupalcode.org/project/entity",
  3379. "issues": "https://www.drupal.org/project/issues/entity"
  3380. }
  3381. },
  3382. {
  3383. "name": "drupal/field_group",
  3384. "version": "3.6.0",
  3385. "source": {
  3386. "type": "git",
  3387. "url": "https://git.drupalcode.org/project/field_group.git",
  3388. "reference": "8.x-3.6"
  3389. },
  3390. "dist": {
  3391. "type": "zip",
  3392. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip",
  3393. "reference": "8.x-3.6",
  3394. "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86"
  3395. },
  3396. "require": {
  3397. "drupal/core": "^9.2 || ^10 || ^11"
  3398. },
  3399. "require-dev": {
  3400. "drupal/jquery_ui_accordion": "*"
  3401. },
  3402. "type": "drupal-module",
  3403. "extra": {
  3404. "drupal": {
  3405. "version": "8.x-3.6",
  3406. "datestamp": "1722672510",
  3407. "security-coverage": {
  3408. "status": "covered",
  3409. "message": "Covered by Drupal's security advisory policy"
  3410. }
  3411. }
  3412. },
  3413. "notification-url": "https://packages.drupal.org/8/downloads",
  3414. "license": [
  3415. "GPL-2.0-or-later"
  3416. ],
  3417. "authors": [
  3418. {
  3419. "name": "anybody",
  3420. "homepage": "https://www.drupal.org/user/291091"
  3421. },
  3422. {
  3423. "name": "grevil",
  3424. "homepage": "https://www.drupal.org/user/3668491"
  3425. },
  3426. {
  3427. "name": "hydra",
  3428. "homepage": "https://www.drupal.org/user/647364"
  3429. },
  3430. {
  3431. "name": "joevagyok",
  3432. "homepage": "https://www.drupal.org/user/2876343"
  3433. },
  3434. {
  3435. "name": "jyve",
  3436. "homepage": "https://www.drupal.org/user/591438"
  3437. },
  3438. {
  3439. "name": "nils.destoop",
  3440. "homepage": "https://www.drupal.org/user/361625"
  3441. },
  3442. {
  3443. "name": "Stalski",
  3444. "homepage": "https://www.drupal.org/user/322618"
  3445. },
  3446. {
  3447. "name": "swentel",
  3448. "homepage": "https://www.drupal.org/user/107403"
  3449. }
  3450. ],
  3451. "description": "Provides the field_group module.",
  3452. "homepage": "https://www.drupal.org/project/field_group",
  3453. "support": {
  3454. "source": "https://git.drupalcode.org/project/field_group",
  3455. "issues": "https://www.drupal.org/project/issues/field_group"
  3456. }
  3457. },
  3458. {
  3459. "name": "drupal/filefield_sources",
  3460. "version": "dev-2.0.x",
  3461. "source": {
  3462. "type": "git",
  3463. "url": "https://git.drupalcode.org/project/filefield_sources.git",
  3464. "reference": "642a01f04ed1ab7285909cdcf9c0fe7801176dce"
  3465. },
  3466. "require": {
  3467. "drupal/core": "^10.2.0 | ^11"
  3468. },
  3469. "require-dev": {
  3470. "drupal/imce": "^3.0"
  3471. },
  3472. "type": "drupal-module",
  3473. "extra": {
  3474. "branch-alias": {
  3475. "dev-2.0.x": "2.0.x-dev"
  3476. },
  3477. "drupal": {
  3478. "version": "2.0.x-dev",
  3479. "datestamp": "1765898278",
  3480. "security-coverage": {
  3481. "status": "not-covered",
  3482. "message": "Dev releases are not covered by Drupal security advisories."
  3483. }
  3484. }
  3485. },
  3486. "notification-url": "https://packages.drupal.org/8/downloads",
  3487. "license": [
  3488. "GPL-2.0-or-later"
  3489. ],
  3490. "authors": [
  3491. {
  3492. "name": "Nate Lampton (quicksketch)",
  3493. "homepage": "https://www.drupal.org/u/quicksketch",
  3494. "role": "Maintainer"
  3495. },
  3496. {
  3497. "name": "Andrey Khromyshev (profak)",
  3498. "homepage": "https://www.drupal.org/u/profak",
  3499. "role": "Maintainer"
  3500. },
  3501. {
  3502. "name": "David Valdez (gnuget)",
  3503. "homepage": "https://www.drupal.org/u/gnuget",
  3504. "role": "Maintainer"
  3505. },
  3506. {
  3507. "name": "quicksketch",
  3508. "homepage": "https://www.drupal.org/user/35821"
  3509. }
  3510. ],
  3511. "description": "Extends File fields to allow referencing of existing files, remote files, and server files.",
  3512. "homepage": "https://www.drupal.org/project/filefield_sources",
  3513. "support": {
  3514. "source": "https://git.drupalcode.org/project/filefield_sources",
  3515. "issues": "https://www.drupal.org/project/issues/filefield_sources",
  3516. "irc": "irc://irc.freenode.org/drupal-contribute"
  3517. }
  3518. },
  3519. {
  3520. "name": "drupal/filter_perms",
  3521. "version": "2.0.2",
  3522. "source": {
  3523. "type": "git",
  3524. "url": "https://git.drupalcode.org/project/filter_perms.git",
  3525. "reference": "2.0.2"
  3526. },
  3527. "dist": {
  3528. "type": "zip",
  3529. "url": "https://ftp.drupal.org/files/projects/filter_perms-2.0.2.zip",
  3530. "reference": "2.0.2",
  3531. "shasum": "da352ab7bf56429caba3029509afde72e917fcd9"
  3532. },
  3533. "require": {
  3534. "drupal/core": "^10.3 || ^11 || ^12"
  3535. },
  3536. "type": "drupal-module",
  3537. "extra": {
  3538. "drupal": {
  3539. "version": "2.0.2",
  3540. "datestamp": "1745993059",
  3541. "security-coverage": {
  3542. "status": "covered",
  3543. "message": "Covered by Drupal's security advisory policy"
  3544. }
  3545. }
  3546. },
  3547. "notification-url": "https://packages.drupal.org/8/downloads",
  3548. "license": [
  3549. "GPL-2.0+"
  3550. ],
  3551. "authors": [
  3552. {
  3553. "name": "cyu",
  3554. "homepage": "https://www.drupal.org/user/202205"
  3555. },
  3556. {
  3557. "name": "deekayen",
  3558. "homepage": "https://www.drupal.org/user/972"
  3559. },
  3560. {
  3561. "name": "ivavictoria",
  3562. "homepage": "https://www.drupal.org/user/3061533"
  3563. },
  3564. {
  3565. "name": "justcaldwell",
  3566. "homepage": "https://www.drupal.org/user/290069"
  3567. },
  3568. {
  3569. "name": "mgbellaire",
  3570. "homepage": "https://www.drupal.org/user/1831932"
  3571. },
  3572. {
  3573. "name": "scott_euser",
  3574. "homepage": "https://www.drupal.org/user/3267594"
  3575. },
  3576. {
  3577. "name": "willzyx",
  3578. "homepage": "https://www.drupal.org/user/1043862"
  3579. }
  3580. ],
  3581. "description": "Provides role and module filters to simplify the user permissions page.",
  3582. "homepage": "https://www.drupal.org/project/filter_perms",
  3583. "support": {
  3584. "source": "http://cgit.drupalcode.org/filter_perms",
  3585. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  3586. }
  3587. },
  3588. {
  3589. "name": "drupal/honeypot",
  3590. "version": "2.2.2",
  3591. "source": {
  3592. "type": "git",
  3593. "url": "https://git.drupalcode.org/project/honeypot.git",
  3594. "reference": "2.2.2"
  3595. },
  3596. "dist": {
  3597. "type": "zip",
  3598. "url": "https://ftp.drupal.org/files/projects/honeypot-2.2.2.zip",
  3599. "reference": "2.2.2",
  3600. "shasum": "828872d31d1a2c37a818cacae7fcd77a60996c66"
  3601. },
  3602. "require": {
  3603. "drupal/core": "^10.3 || ^11"
  3604. },
  3605. "require-dev": {
  3606. "drupal/rules": "^4.0",
  3607. "drupal/webform": "^6.2"
  3608. },
  3609. "type": "drupal-module",
  3610. "extra": {
  3611. "drupal": {
  3612. "version": "2.2.2",
  3613. "datestamp": "1739854442",
  3614. "security-coverage": {
  3615. "status": "covered",
  3616. "message": "Covered by Drupal's security advisory policy"
  3617. }
  3618. }
  3619. },
  3620. "notification-url": "https://packages.drupal.org/8/downloads",
  3621. "license": [
  3622. "GPL-2.0-or-later"
  3623. ],
  3624. "authors": [
  3625. {
  3626. "name": "Jeff Geerling",
  3627. "homepage": "https://www.drupal.org/user/389011",
  3628. "email": "geerlingguy@mac.com"
  3629. },
  3630. {
  3631. "name": "manuel garcia",
  3632. "homepage": "https://www.drupal.org/user/213194"
  3633. },
  3634. {
  3635. "name": "tr",
  3636. "homepage": "https://www.drupal.org/user/202830"
  3637. },
  3638. {
  3639. "name": "vijaycs85",
  3640. "homepage": "https://www.drupal.org/user/93488"
  3641. }
  3642. ],
  3643. "description": "Mitigates spam form submissions using the honeypot method.",
  3644. "homepage": "https://www.drupal.org/project/honeypot",
  3645. "keywords": [
  3646. "deterrent",
  3647. "form",
  3648. "honeypot",
  3649. "honeytrap",
  3650. "php",
  3651. "spam"
  3652. ],
  3653. "support": {
  3654. "source": "https://git.drupalcode.org/project/honeypot",
  3655. "issues": "https://www.drupal.org/project/issues/honeypot"
  3656. }
  3657. },
  3658. {
  3659. "name": "drupal/jquery_ui",
  3660. "version": "1.8.0",
  3661. "source": {
  3662. "type": "git",
  3663. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  3664. "reference": "8.x-1.8"
  3665. },
  3666. "dist": {
  3667. "type": "zip",
  3668. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.8.zip",
  3669. "reference": "8.x-1.8",
  3670. "shasum": "a53e99216a81d1e35fa357885656a2cf420f1a6a"
  3671. },
  3672. "require": {
  3673. "drupal/core": "^9.2 || ^10 || ^11"
  3674. },
  3675. "type": "drupal-module",
  3676. "extra": {
  3677. "drupal": {
  3678. "version": "8.x-1.8",
  3679. "datestamp": "1758954737",
  3680. "security-coverage": {
  3681. "status": "covered",
  3682. "message": "Covered by Drupal's security advisory policy"
  3683. }
  3684. }
  3685. },
  3686. "notification-url": "https://packages.drupal.org/8/downloads",
  3687. "license": [
  3688. "GPL-2.0-or-later"
  3689. ],
  3690. "authors": [
  3691. {
  3692. "name": "bnjmnm",
  3693. "homepage": "https://www.drupal.org/user/2369194"
  3694. },
  3695. {
  3696. "name": "jjeff",
  3697. "homepage": "https://www.drupal.org/user/17190"
  3698. },
  3699. {
  3700. "name": "lauriii",
  3701. "homepage": "https://www.drupal.org/user/1078742"
  3702. },
  3703. {
  3704. "name": "litwol",
  3705. "homepage": "https://www.drupal.org/user/78134"
  3706. },
  3707. {
  3708. "name": "mfb",
  3709. "homepage": "https://www.drupal.org/user/12302"
  3710. },
  3711. {
  3712. "name": "mfer",
  3713. "homepage": "https://www.drupal.org/user/25701"
  3714. },
  3715. {
  3716. "name": "mikelutz",
  3717. "homepage": "https://www.drupal.org/user/2972409"
  3718. },
  3719. {
  3720. "name": "nod_",
  3721. "homepage": "https://www.drupal.org/user/598310"
  3722. },
  3723. {
  3724. "name": "phenaproxima",
  3725. "homepage": "https://www.drupal.org/user/205645"
  3726. },
  3727. {
  3728. "name": "rajeshreeputra",
  3729. "homepage": "https://www.drupal.org/user/3418561"
  3730. },
  3731. {
  3732. "name": "robloach",
  3733. "homepage": "https://www.drupal.org/user/61114"
  3734. },
  3735. {
  3736. "name": "sun",
  3737. "homepage": "https://www.drupal.org/user/54136"
  3738. },
  3739. {
  3740. "name": "webchick",
  3741. "homepage": "https://www.drupal.org/user/24967"
  3742. },
  3743. {
  3744. "name": "wim leers",
  3745. "homepage": "https://www.drupal.org/user/99777"
  3746. },
  3747. {
  3748. "name": "zrpnr",
  3749. "homepage": "https://www.drupal.org/user/1448368"
  3750. }
  3751. ],
  3752. "description": "Provides jQuery UI library.",
  3753. "homepage": "https://www.drupal.org/project/jquery_ui",
  3754. "support": {
  3755. "source": "https://git.drupalcode.org/project/jquery_ui"
  3756. }
  3757. },
  3758. {
  3759. "name": "drupal/jquery_ui_draggable",
  3760. "version": "2.1.0",
  3761. "source": {
  3762. "type": "git",
  3763. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  3764. "reference": "2.1.0"
  3765. },
  3766. "dist": {
  3767. "type": "zip",
  3768. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.1.0.zip",
  3769. "reference": "2.1.0",
  3770. "shasum": "0d014cfff20993d8051efb8f6c9093a4fe5136f3"
  3771. },
  3772. "require": {
  3773. "drupal/core": "^9.2 || ^10 || ^11",
  3774. "drupal/jquery_ui": "^1.7"
  3775. },
  3776. "type": "drupal-module",
  3777. "extra": {
  3778. "drupal": {
  3779. "version": "2.1.0",
  3780. "datestamp": "1717015492",
  3781. "security-coverage": {
  3782. "status": "covered",
  3783. "message": "Covered by Drupal's security advisory policy"
  3784. }
  3785. }
  3786. },
  3787. "notification-url": "https://packages.drupal.org/8/downloads",
  3788. "license": [
  3789. "GPL-2.0-or-later"
  3790. ],
  3791. "authors": [
  3792. {
  3793. "name": "bnjmnm",
  3794. "homepage": "https://www.drupal.org/user/2369194"
  3795. },
  3796. {
  3797. "name": "lauriii",
  3798. "homepage": "https://www.drupal.org/user/1078742"
  3799. },
  3800. {
  3801. "name": "zrpnr",
  3802. "homepage": "https://www.drupal.org/user/1448368"
  3803. }
  3804. ],
  3805. "description": "Provides jQuery UI Draggable library.",
  3806. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  3807. "support": {
  3808. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  3809. }
  3810. },
  3811. {
  3812. "name": "drupal/jquery_ui_droppable",
  3813. "version": "2.1.0",
  3814. "source": {
  3815. "type": "git",
  3816. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  3817. "reference": "2.1.0"
  3818. },
  3819. "dist": {
  3820. "type": "zip",
  3821. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.1.0.zip",
  3822. "reference": "2.1.0",
  3823. "shasum": "4a254056d13d7f4208929142d1a37464404c0870"
  3824. },
  3825. "require": {
  3826. "drupal/core": "^9.2 || ^10 || ^11",
  3827. "drupal/jquery_ui": "^1.7",
  3828. "drupal/jquery_ui_draggable": "^2.1"
  3829. },
  3830. "type": "drupal-module",
  3831. "extra": {
  3832. "drupal": {
  3833. "version": "2.1.0",
  3834. "datestamp": "1717031391",
  3835. "security-coverage": {
  3836. "status": "covered",
  3837. "message": "Covered by Drupal's security advisory policy"
  3838. }
  3839. }
  3840. },
  3841. "notification-url": "https://packages.drupal.org/8/downloads",
  3842. "license": [
  3843. "GPL-2.0-or-later"
  3844. ],
  3845. "authors": [
  3846. {
  3847. "name": "bnjmnm",
  3848. "homepage": "https://www.drupal.org/user/2369194"
  3849. },
  3850. {
  3851. "name": "lauriii",
  3852. "homepage": "https://www.drupal.org/user/1078742"
  3853. },
  3854. {
  3855. "name": "zrpnr",
  3856. "homepage": "https://www.drupal.org/user/1448368"
  3857. }
  3858. ],
  3859. "description": "Provides jQuery UI Droppable library.",
  3860. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  3861. "support": {
  3862. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  3863. }
  3864. },
  3865. {
  3866. "name": "drupal/jquery_ui_sortable",
  3867. "version": "2.1.0",
  3868. "source": {
  3869. "type": "git",
  3870. "url": "https://git.drupalcode.org/project/jquery_ui_sortable.git",
  3871. "reference": "2.1.0"
  3872. },
  3873. "dist": {
  3874. "type": "zip",
  3875. "url": "https://ftp.drupal.org/files/projects/jquery_ui_sortable-2.1.0.zip",
  3876. "reference": "2.1.0",
  3877. "shasum": "ccf85ee62d0f1414155c2fb6ed85d11d71cb8d5e"
  3878. },
  3879. "require": {
  3880. "drupal/core": "^9.2 || ^10 || ^11",
  3881. "drupal/jquery_ui": "^1.7"
  3882. },
  3883. "type": "drupal-module",
  3884. "extra": {
  3885. "drupal": {
  3886. "version": "2.1.0",
  3887. "datestamp": "1758207405",
  3888. "security-coverage": {
  3889. "status": "covered",
  3890. "message": "Covered by Drupal's security advisory policy"
  3891. },
  3892. "package": "jQuery UI"
  3893. }
  3894. },
  3895. "notification-url": "https://packages.drupal.org/8/downloads",
  3896. "license": [
  3897. "GPL-2.0-or-later"
  3898. ],
  3899. "authors": [
  3900. {
  3901. "name": "bnjmnm",
  3902. "homepage": "https://www.drupal.org/user/2369194"
  3903. },
  3904. {
  3905. "name": "kevin.dutra",
  3906. "homepage": "https://www.drupal.org/user/1312744"
  3907. },
  3908. {
  3909. "name": "lauriii",
  3910. "homepage": "https://www.drupal.org/user/1078742"
  3911. },
  3912. {
  3913. "name": "zrpnr",
  3914. "homepage": "https://www.drupal.org/user/1448368"
  3915. }
  3916. ],
  3917. "description": "Provides jQuery UI Sortable integration for Drupal.",
  3918. "homepage": "https://www.drupal.org/project/jquery_ui_sortable",
  3919. "support": {
  3920. "source": "https://git.drupalcode.org/project/jquery_ui_sortable"
  3921. }
  3922. },
  3923. {
  3924. "name": "drupal/js_cookie",
  3925. "version": "1.0.2",
  3926. "source": {
  3927. "type": "git",
  3928. "url": "https://git.drupalcode.org/project/js_cookie.git",
  3929. "reference": "1.0.2"
  3930. },
  3931. "dist": {
  3932. "type": "zip",
  3933. "url": "https://ftp.drupal.org/files/projects/js_cookie-1.0.2.zip",
  3934. "reference": "1.0.2",
  3935. "shasum": "effcbee68083efc866aca2a1bfa3fc6e14fe0c2f"
  3936. },
  3937. "require": {
  3938. "drupal/core": "^9 || ^10 || ^11"
  3939. },
  3940. "type": "drupal-module",
  3941. "extra": {
  3942. "drupal": {
  3943. "version": "1.0.2",
  3944. "datestamp": "1762168962",
  3945. "security-coverage": {
  3946. "status": "covered",
  3947. "message": "Covered by Drupal's security advisory policy"
  3948. }
  3949. }
  3950. },
  3951. "notification-url": "https://packages.drupal.org/8/downloads",
  3952. "license": [
  3953. "GPL-2.0-or-later"
  3954. ],
  3955. "authors": [
  3956. {
  3957. "name": "anybody",
  3958. "homepage": "https://www.drupal.org/user/291091"
  3959. },
  3960. {
  3961. "name": "dave reid",
  3962. "homepage": "https://www.drupal.org/user/53892"
  3963. },
  3964. {
  3965. "name": "grevil",
  3966. "homepage": "https://www.drupal.org/user/3668491"
  3967. },
  3968. {
  3969. "name": "jan kellermann",
  3970. "homepage": "https://www.drupal.org/user/371731"
  3971. }
  3972. ],
  3973. "description": "Provides the js-cookie library as a dependency.",
  3974. "homepage": "https://www.drupal.org/project/js_cookie",
  3975. "support": {
  3976. "source": "https://git.drupalcode.org/project/js_cookie"
  3977. }
  3978. },
  3979. {
  3980. "name": "drupal/linkit",
  3981. "version": "7.0.13",
  3982. "source": {
  3983. "type": "git",
  3984. "url": "https://git.drupalcode.org/project/linkit.git",
  3985. "reference": "7.0.13"
  3986. },
  3987. "dist": {
  3988. "type": "zip",
  3989. "url": "https://ftp.drupal.org/files/projects/linkit-7.0.13.zip",
  3990. "reference": "7.0.13",
  3991. "shasum": "918d001248b4a394eb1c4e097e7d243959280489"
  3992. },
  3993. "require": {
  3994. "drupal/core": "^10.1 || ^11"
  3995. },
  3996. "type": "drupal-module",
  3997. "extra": {
  3998. "drupal": {
  3999. "version": "7.0.13",
  4000. "datestamp": "1773055628",
  4001. "security-coverage": {
  4002. "status": "covered",
  4003. "message": "Covered by Drupal's security advisory policy"
  4004. }
  4005. }
  4006. },
  4007. "notification-url": "https://packages.drupal.org/8/downloads",
  4008. "license": [
  4009. "GPL-2.0-or-later"
  4010. ],
  4011. "authors": [
  4012. {
  4013. "name": "Emil Stjerneman",
  4014. "homepage": "https://stjerneman.com",
  4015. "email": "emil@stjerneman.com",
  4016. "role": "Maintainer"
  4017. },
  4018. {
  4019. "name": "johnwebdev",
  4020. "homepage": "https://www.drupal.org/user/3331569"
  4021. },
  4022. {
  4023. "name": "mark_fullmer",
  4024. "homepage": "https://www.drupal.org/user/2612816"
  4025. }
  4026. ],
  4027. "description": "Linkit - Enriched linking experience",
  4028. "homepage": "http://drupal.org/project/linkit",
  4029. "support": {
  4030. "source": "http://cgit.drupalcode.org/linkit",
  4031. "issues": "http://drupal.org/project/linkit"
  4032. }
  4033. },
  4034. {
  4035. "name": "drupal/login_emailusername",
  4036. "version": "2.1.0",
  4037. "source": {
  4038. "type": "git",
  4039. "url": "https://git.drupalcode.org/project/login_emailusername.git",
  4040. "reference": "2.1.0"
  4041. },
  4042. "dist": {
  4043. "type": "zip",
  4044. "url": "https://ftp.drupal.org/files/projects/login_emailusername-2.1.0.zip",
  4045. "reference": "2.1.0",
  4046. "shasum": "5a3858d06e7d67110a6cd8eda38cbfeb350f115c"
  4047. },
  4048. "require": {
  4049. "drupal/core": "^8.8 || ^9 || ^10"
  4050. },
  4051. "type": "drupal-module",
  4052. "extra": {
  4053. "drupal": {
  4054. "version": "2.1.0",
  4055. "datestamp": "1677072401",
  4056. "security-coverage": {
  4057. "status": "covered",
  4058. "message": "Covered by Drupal's security advisory policy"
  4059. }
  4060. },
  4061. "branch-alias": {
  4062. "dev-8.x-1.x": "8.1.x-dev"
  4063. }
  4064. },
  4065. "notification-url": "https://packages.drupal.org/8/downloads",
  4066. "license": [
  4067. "GPL-2.0-or-later"
  4068. ],
  4069. "authors": [
  4070. {
  4071. "name": "See contributors",
  4072. "homepage": "https://www.drupal.org/node/2820429/committers",
  4073. "role": "contributor"
  4074. },
  4075. {
  4076. "name": "jannakha",
  4077. "homepage": "https://www.drupal.org/user/3085703"
  4078. },
  4079. {
  4080. "name": "mably",
  4081. "homepage": "https://www.drupal.org/user/3375160"
  4082. },
  4083. {
  4084. "name": "pameeela",
  4085. "homepage": "https://www.drupal.org/user/1431110"
  4086. },
  4087. {
  4088. "name": "rjjakes",
  4089. "homepage": "https://www.drupal.org/user/3457245"
  4090. },
  4091. {
  4092. "name": "vladimiraus",
  4093. "homepage": "https://www.drupal.org/user/673120"
  4094. }
  4095. ],
  4096. "description": "Login with the email as username.",
  4097. "homepage": "https://drupal.org/project/login_emailusername",
  4098. "support": {
  4099. "source": "https://git.drupalcode.org/project/login_emailusername",
  4100. "issues": "https://drupal.org/project/issues/login_emailusername"
  4101. }
  4102. },
  4103. {
  4104. "name": "drupal/maillog",
  4105. "version": "1.2.0",
  4106. "source": {
  4107. "type": "git",
  4108. "url": "https://git.drupalcode.org/project/maillog.git",
  4109. "reference": "8.x-1.2"
  4110. },
  4111. "dist": {
  4112. "type": "zip",
  4113. "url": "https://ftp.drupal.org/files/projects/maillog-8.x-1.2.zip",
  4114. "reference": "8.x-1.2",
  4115. "shasum": "3bc03a6c0729a186c92dce6c4966a0943a68bbd0"
  4116. },
  4117. "require": {
  4118. "drupal/core": "^9 || ^10 || ^11"
  4119. },
  4120. "type": "drupal-module",
  4121. "extra": {
  4122. "drupal": {
  4123. "version": "8.x-1.2",
  4124. "datestamp": "1769596712",
  4125. "security-coverage": {
  4126. "status": "covered",
  4127. "message": "Covered by Drupal's security advisory policy"
  4128. }
  4129. }
  4130. },
  4131. "notification-url": "https://packages.drupal.org/8/downloads",
  4132. "license": [
  4133. "GPL-2.0-or-later"
  4134. ],
  4135. "authors": [
  4136. {
  4137. "name": "berdir",
  4138. "homepage": "https://www.drupal.org/user/214652"
  4139. },
  4140. {
  4141. "name": "damienmckenna",
  4142. "homepage": "https://www.drupal.org/user/108450"
  4143. },
  4144. {
  4145. "name": "miro_dietiker",
  4146. "homepage": "https://www.drupal.org/user/227761"
  4147. },
  4148. {
  4149. "name": "pluess",
  4150. "homepage": "https://www.drupal.org/user/84659"
  4151. }
  4152. ],
  4153. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4154. "homepage": "https://www.drupal.org/project/maillog",
  4155. "support": {
  4156. "source": "https://git.drupalcode.org/project/maillog"
  4157. }
  4158. },
  4159. {
  4160. "name": "drupal/menu_admin_per_menu",
  4161. "version": "1.7.0",
  4162. "source": {
  4163. "type": "git",
  4164. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  4165. "reference": "8.x-1.7"
  4166. },
  4167. "dist": {
  4168. "type": "zip",
  4169. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.7.zip",
  4170. "reference": "8.x-1.7",
  4171. "shasum": "ce9faed09c95de7c7a57653aab66c5afc3e946a2"
  4172. },
  4173. "require": {
  4174. "drupal/core": "^10.2 || ^11.0 || ^12"
  4175. },
  4176. "type": "drupal-module",
  4177. "extra": {
  4178. "drupal": {
  4179. "version": "8.x-1.7",
  4180. "datestamp": "1750246188",
  4181. "security-coverage": {
  4182. "status": "covered",
  4183. "message": "Covered by Drupal's security advisory policy"
  4184. }
  4185. }
  4186. },
  4187. "notification-url": "https://packages.drupal.org/8/downloads",
  4188. "license": [
  4189. "GPL-2.0-or-later"
  4190. ],
  4191. "authors": [
  4192. {
  4193. "name": "anrikun",
  4194. "homepage": "https://www.drupal.org/user/410199"
  4195. },
  4196. {
  4197. "name": "jeroent",
  4198. "homepage": "https://www.drupal.org/user/2228934"
  4199. },
  4200. {
  4201. "name": "jonas139",
  4202. "homepage": "https://www.drupal.org/user/2873401"
  4203. },
  4204. {
  4205. "name": "mkdok",
  4206. "homepage": "https://www.drupal.org/user/3308753"
  4207. }
  4208. ],
  4209. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  4210. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  4211. "keywords": [
  4212. "Drupal"
  4213. ],
  4214. "support": {
  4215. "source": "https://git.drupalcode.org/project/menu_admin_per_menu",
  4216. "issues": "https://drupal.org/project/issues/menu_admin_per_menu"
  4217. }
  4218. },
  4219. {
  4220. "name": "drupal/metatag",
  4221. "version": "2.2.0",
  4222. "source": {
  4223. "type": "git",
  4224. "url": "https://git.drupalcode.org/project/metatag.git",
  4225. "reference": "2.2.0"
  4226. },
  4227. "dist": {
  4228. "type": "zip",
  4229. "url": "https://ftp.drupal.org/files/projects/metatag-2.2.0.zip",
  4230. "reference": "2.2.0",
  4231. "shasum": "b6ae4b665a49771d5139644c71cb3d5a68cb4828"
  4232. },
  4233. "require": {
  4234. "drupal/core": "^10.3 || ^11",
  4235. "drupal/token": "^1.0",
  4236. "php": ">=8.0"
  4237. },
  4238. "require-dev": {
  4239. "drupal/forum": "1.x-dev",
  4240. "drupal/hal": "^1 || ^2 || ^9",
  4241. "drupal/metatag_dc": "*",
  4242. "drupal/metatag_open_graph": "*",
  4243. "drupal/page_manager": "^4.0",
  4244. "drupal/redirect": "^1.0",
  4245. "ergebnis/composer-normalize": "*",
  4246. "mpyw/phpunit-patch-serializable-comparison": "*"
  4247. },
  4248. "type": "drupal-module",
  4249. "extra": {
  4250. "drupal": {
  4251. "version": "2.2.0",
  4252. "datestamp": "1758622371",
  4253. "security-coverage": {
  4254. "status": "covered",
  4255. "message": "Covered by Drupal's security advisory policy"
  4256. }
  4257. },
  4258. "composer-normalize": {
  4259. "indent-size": 2,
  4260. "indent-style": "space"
  4261. }
  4262. },
  4263. "notification-url": "https://packages.drupal.org/8/downloads",
  4264. "license": [
  4265. "GPL-2.0-or-later"
  4266. ],
  4267. "authors": [
  4268. {
  4269. "name": "See contributors",
  4270. "homepage": "https://www.drupal.org/node/640498/committers",
  4271. "role": "Developer"
  4272. },
  4273. {
  4274. "name": "dave reid",
  4275. "homepage": "https://www.drupal.org/user/53892"
  4276. }
  4277. ],
  4278. "description": "Manage meta tags for all entities.",
  4279. "homepage": "https://www.drupal.org/project/metatag",
  4280. "keywords": [
  4281. "Drupal",
  4282. "seo"
  4283. ],
  4284. "support": {
  4285. "source": "https://git.drupalcode.org/project/metatag",
  4286. "issues": "https://www.drupal.org/project/issues/metatag",
  4287. "docs": "https://www.drupal.org/docs/8/modules/metatag"
  4288. }
  4289. },
  4290. {
  4291. "name": "drupal/pathauto",
  4292. "version": "1.14.0",
  4293. "source": {
  4294. "type": "git",
  4295. "url": "https://git.drupalcode.org/project/pathauto.git",
  4296. "reference": "8.x-1.14"
  4297. },
  4298. "dist": {
  4299. "type": "zip",
  4300. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.14.zip",
  4301. "reference": "8.x-1.14",
  4302. "shasum": "07f0d2efcf0bfb450e2ab69a43921fa39dc5f25b"
  4303. },
  4304. "require": {
  4305. "drupal/core": "^10 || ^11",
  4306. "drupal/ctools": "*",
  4307. "drupal/token": "*"
  4308. },
  4309. "conflict": {
  4310. "drush/drush": "<12.5.1"
  4311. },
  4312. "require-dev": {
  4313. "drupal/forum": "*"
  4314. },
  4315. "suggest": {
  4316. "drupal/redirect": "When installed Pathauto will provide a new \"Update Action\" in case your URLs change. This is the recommended update action and is considered the best practice for SEO and usability."
  4317. },
  4318. "type": "drupal-module",
  4319. "extra": {
  4320. "drupal": {
  4321. "version": "8.x-1.14",
  4322. "datestamp": "1759838097",
  4323. "security-coverage": {
  4324. "status": "covered",
  4325. "message": "Covered by Drupal's security advisory policy"
  4326. }
  4327. }
  4328. },
  4329. "notification-url": "https://packages.drupal.org/8/downloads",
  4330. "license": [
  4331. "GPL-2.0-or-later"
  4332. ],
  4333. "authors": [
  4334. {
  4335. "name": "acbramley",
  4336. "homepage": "https://www.drupal.org/user/1036766"
  4337. },
  4338. {
  4339. "name": "berdir",
  4340. "homepage": "https://www.drupal.org/user/214652"
  4341. },
  4342. {
  4343. "name": "dave reid",
  4344. "homepage": "https://www.drupal.org/user/53892"
  4345. },
  4346. {
  4347. "name": "Freso",
  4348. "homepage": "https://www.drupal.org/user/27504"
  4349. },
  4350. {
  4351. "name": "greggles",
  4352. "homepage": "https://www.drupal.org/user/36762"
  4353. },
  4354. {
  4355. "name": "mably",
  4356. "homepage": "https://www.drupal.org/user/3375160"
  4357. }
  4358. ],
  4359. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  4360. "homepage": "https://www.drupal.org/project/pathauto",
  4361. "support": {
  4362. "source": "https://cgit.drupalcode.org/pathauto",
  4363. "issues": "https://www.drupal.org/project/issues/pathauto",
  4364. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  4365. }
  4366. },
  4367. {
  4368. "name": "drupal/profile",
  4369. "version": "1.14.0",
  4370. "source": {
  4371. "type": "git",
  4372. "url": "https://git.drupalcode.org/project/profile.git",
  4373. "reference": "8.x-1.14"
  4374. },
  4375. "dist": {
  4376. "type": "zip",
  4377. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.14.zip",
  4378. "reference": "8.x-1.14",
  4379. "shasum": "eda73cb55a9034b318fb87bc9f8db4b778c4fdd6"
  4380. },
  4381. "require": {
  4382. "drupal/core": "^9 || ^10 || ^11",
  4383. "drupal/entity": "^1.0",
  4384. "php": "^7.4 || ^8.0"
  4385. },
  4386. "require-dev": {
  4387. "drupal/search_api": "~1.30",
  4388. "drupal/token": "^1.7"
  4389. },
  4390. "type": "drupal-module",
  4391. "extra": {
  4392. "drupal": {
  4393. "version": "8.x-1.14",
  4394. "datestamp": "1765287779",
  4395. "security-coverage": {
  4396. "status": "covered",
  4397. "message": "Covered by Drupal's security advisory policy"
  4398. }
  4399. }
  4400. },
  4401. "notification-url": "https://packages.drupal.org/8/downloads",
  4402. "license": [
  4403. "GPL-2.0-or-later"
  4404. ],
  4405. "authors": [
  4406. {
  4407. "name": "bojanz",
  4408. "homepage": "https://www.drupal.org/user/86106"
  4409. },
  4410. {
  4411. "name": "daggerhart",
  4412. "homepage": "https://www.drupal.org/user/167806"
  4413. },
  4414. {
  4415. "name": "fago",
  4416. "homepage": "https://www.drupal.org/user/16747"
  4417. },
  4418. {
  4419. "name": "jsacksick",
  4420. "homepage": "https://www.drupal.org/user/972218"
  4421. },
  4422. {
  4423. "name": "mglaman",
  4424. "homepage": "https://www.drupal.org/user/2416470"
  4425. },
  4426. {
  4427. "name": "pcambra",
  4428. "homepage": "https://www.drupal.org/user/122101"
  4429. }
  4430. ],
  4431. "description": "Provides configurable user profiles.",
  4432. "homepage": "https://drupal.org/project/profile",
  4433. "support": {
  4434. "source": "https://git.drupalcode.org/project/profile"
  4435. }
  4436. },
  4437. {
  4438. "name": "drupal/redirect",
  4439. "version": "1.12.0",
  4440. "source": {
  4441. "type": "git",
  4442. "url": "https://git.drupalcode.org/project/redirect.git",
  4443. "reference": "8.x-1.12"
  4444. },
  4445. "dist": {
  4446. "type": "zip",
  4447. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.12.zip",
  4448. "reference": "8.x-1.12",
  4449. "shasum": "1cdee11356a25b9f9a10329aec0eeb293e0023de"
  4450. },
  4451. "require": {
  4452. "drupal/core": "^10 || ^11"
  4453. },
  4454. "type": "drupal-module",
  4455. "extra": {
  4456. "drupal": {
  4457. "version": "8.x-1.12",
  4458. "datestamp": "1756419163",
  4459. "security-coverage": {
  4460. "status": "covered",
  4461. "message": "Covered by Drupal's security advisory policy"
  4462. }
  4463. }
  4464. },
  4465. "notification-url": "https://packages.drupal.org/8/downloads",
  4466. "license": [
  4467. "GPL-2.0-or-later"
  4468. ],
  4469. "authors": [
  4470. {
  4471. "name": "berdir",
  4472. "homepage": "https://www.drupal.org/user/214652"
  4473. },
  4474. {
  4475. "name": "dave reid",
  4476. "homepage": "https://www.drupal.org/user/53892"
  4477. },
  4478. {
  4479. "name": "kristen pol",
  4480. "homepage": "https://www.drupal.org/user/8389"
  4481. },
  4482. {
  4483. "name": "pifagor",
  4484. "homepage": "https://www.drupal.org/user/2375692"
  4485. }
  4486. ],
  4487. "description": "Allows users to redirect from old URLs to new URLs.",
  4488. "homepage": "https://www.drupal.org/project/redirect",
  4489. "support": {
  4490. "source": "https://git.drupalcode.org/project/redirect"
  4491. }
  4492. },
  4493. {
  4494. "name": "drupal/redis",
  4495. "version": "1.11.0",
  4496. "source": {
  4497. "type": "git",
  4498. "url": "https://git.drupalcode.org/project/redis.git",
  4499. "reference": "8.x-1.11"
  4500. },
  4501. "dist": {
  4502. "type": "zip",
  4503. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.11.zip",
  4504. "reference": "8.x-1.11",
  4505. "shasum": "4a32e50b85523fd09500b6c6398cf18504bdc652"
  4506. },
  4507. "require": {
  4508. "drupal/core": "^9.3 || ^10 || ^11"
  4509. },
  4510. "suggest": {
  4511. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  4512. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  4513. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  4514. },
  4515. "type": "drupal-module",
  4516. "extra": {
  4517. "drupal": {
  4518. "version": "8.x-1.11",
  4519. "datestamp": "1762688846",
  4520. "security-coverage": {
  4521. "status": "covered",
  4522. "message": "Covered by Drupal's security advisory policy"
  4523. }
  4524. }
  4525. },
  4526. "autoload": {
  4527. "psr-4": {
  4528. "Drupal\\redis\\": "src"
  4529. }
  4530. },
  4531. "notification-url": "https://packages.drupal.org/8/downloads",
  4532. "license": [
  4533. "GPL-2.0-or-later"
  4534. ],
  4535. "authors": [
  4536. {
  4537. "name": "berdir",
  4538. "homepage": "https://www.drupal.org/user/214652"
  4539. },
  4540. {
  4541. "name": "greg.1.anderson",
  4542. "homepage": "https://www.drupal.org/user/438598"
  4543. },
  4544. {
  4545. "name": "kporras07",
  4546. "homepage": "https://www.drupal.org/user/1349780"
  4547. },
  4548. {
  4549. "name": "pounard",
  4550. "homepage": "https://www.drupal.org/user/240164"
  4551. }
  4552. ],
  4553. "description": "Integration of Drupal with the Redis key-value store.",
  4554. "homepage": "https://www.drupal.org/project/redis",
  4555. "support": {
  4556. "source": "https://git.drupalcode.org/project/redis"
  4557. }
  4558. },
  4559. {
  4560. "name": "drupal/restui",
  4561. "version": "1.22.0",
  4562. "source": {
  4563. "type": "git",
  4564. "url": "https://git.drupalcode.org/project/restui.git",
  4565. "reference": "8.x-1.22"
  4566. },
  4567. "dist": {
  4568. "type": "zip",
  4569. "url": "https://ftp.drupal.org/files/projects/restui-8.x-1.22.zip",
  4570. "reference": "8.x-1.22",
  4571. "shasum": "7c9fb14c574f8a4090b77b1bcbc5be141409a383"
  4572. },
  4573. "require": {
  4574. "drupal/core": "^9.5 || ^10 || ^11"
  4575. },
  4576. "type": "drupal-module",
  4577. "extra": {
  4578. "drupal": {
  4579. "version": "8.x-1.22",
  4580. "datestamp": "1721134189",
  4581. "security-coverage": {
  4582. "status": "covered",
  4583. "message": "Covered by Drupal's security advisory policy"
  4584. }
  4585. }
  4586. },
  4587. "notification-url": "https://packages.drupal.org/8/downloads",
  4588. "license": [
  4589. "GPL-2.0-or-later"
  4590. ],
  4591. "authors": [
  4592. {
  4593. "name": "-enzo-",
  4594. "homepage": "https://www.drupal.org/user/294937"
  4595. },
  4596. {
  4597. "name": "clemens.tolboom",
  4598. "homepage": "https://www.drupal.org/user/125814"
  4599. },
  4600. {
  4601. "name": "juampynr",
  4602. "homepage": "https://www.drupal.org/user/682736"
  4603. },
  4604. {
  4605. "name": "kamkejj",
  4606. "homepage": "https://www.drupal.org/user/81043"
  4607. },
  4608. {
  4609. "name": "vipin.mittal18",
  4610. "homepage": "https://www.drupal.org/user/319716"
  4611. }
  4612. ],
  4613. "description": "Provides a user interface to manage REST resources.",
  4614. "homepage": "https://www.drupal.org/project/restui",
  4615. "support": {
  4616. "source": "https://git.drupalcode.org/project/restui"
  4617. }
  4618. },
  4619. {
  4620. "name": "drupal/search_api",
  4621. "version": "1.40.0",
  4622. "source": {
  4623. "type": "git",
  4624. "url": "https://git.drupalcode.org/project/search_api.git",
  4625. "reference": "8.x-1.40"
  4626. },
  4627. "dist": {
  4628. "type": "zip",
  4629. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.40.zip",
  4630. "reference": "8.x-1.40",
  4631. "shasum": "64ac71887786da63ced27a43e37342ea3b765a88"
  4632. },
  4633. "require": {
  4634. "drupal/core": "^10.3 || ^11"
  4635. },
  4636. "conflict": {
  4637. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  4638. },
  4639. "require-dev": {
  4640. "drupal/config_readonly": "1.x-dev",
  4641. "drupal/language_fallback_fix": "1.x-dev",
  4642. "drupal/search_api_autocomplete": "1.x-dev",
  4643. "drupal/search_api_db": "*"
  4644. },
  4645. "suggest": {
  4646. "drupal/facets": "Adds the ability to create faceted searches.",
  4647. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  4648. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  4649. },
  4650. "type": "drupal-module",
  4651. "extra": {
  4652. "drupal": {
  4653. "version": "8.x-1.40",
  4654. "datestamp": "1762031191",
  4655. "security-coverage": {
  4656. "status": "covered",
  4657. "message": "Covered by Drupal's security advisory policy"
  4658. }
  4659. },
  4660. "branch-alias": {
  4661. "dev-8.x-1.x": "1.x-dev"
  4662. }
  4663. },
  4664. "notification-url": "https://packages.drupal.org/8/downloads",
  4665. "license": [
  4666. "GPL-2.0-or-later"
  4667. ],
  4668. "authors": [
  4669. {
  4670. "name": "Thomas Seidl",
  4671. "homepage": "https://www.drupal.org/u/drunken-monkey"
  4672. },
  4673. {
  4674. "name": "Nick Veenhof",
  4675. "homepage": "https://www.drupal.org/u/nick_vh"
  4676. },
  4677. {
  4678. "name": "See other contributors",
  4679. "homepage": "https://www.drupal.org/node/790418/committers"
  4680. }
  4681. ],
  4682. "description": "Provides a generic framework for modules offering search capabilities.",
  4683. "homepage": "https://www.drupal.org/project/search_api",
  4684. "support": {
  4685. "source": "https://git.drupalcode.org/project/search_api",
  4686. "issues": "https://www.drupal.org/project/issues/search_api",
  4687. "irc": "irc://irc.freenode.org/drupal-search-api"
  4688. }
  4689. },
  4690. {
  4691. "name": "drupal/seven",
  4692. "version": "1.0.0",
  4693. "source": {
  4694. "type": "git",
  4695. "url": "https://git.drupalcode.org/project/seven.git",
  4696. "reference": "1.0.0"
  4697. },
  4698. "dist": {
  4699. "type": "zip",
  4700. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  4701. "reference": "1.0.0",
  4702. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  4703. },
  4704. "require": {
  4705. "drupal/core": "^9 || ^10"
  4706. },
  4707. "type": "drupal-theme",
  4708. "extra": {
  4709. "drupal": {
  4710. "version": "1.0.0",
  4711. "datestamp": "1758908691",
  4712. "security-coverage": {
  4713. "status": "covered",
  4714. "message": "Covered by Drupal's security advisory policy"
  4715. }
  4716. }
  4717. },
  4718. "notification-url": "https://packages.drupal.org/8/downloads",
  4719. "license": [
  4720. "GPL-2.0-or-later"
  4721. ],
  4722. "authors": [
  4723. {
  4724. "name": "avpaderno",
  4725. "homepage": "https://www.drupal.org/user/55077"
  4726. },
  4727. {
  4728. "name": "bnjmnm",
  4729. "homepage": "https://www.drupal.org/user/2369194"
  4730. },
  4731. {
  4732. "name": "krakenbite",
  4733. "homepage": "https://www.drupal.org/user/3805933"
  4734. },
  4735. {
  4736. "name": "lauriii",
  4737. "homepage": "https://www.drupal.org/user/1078742"
  4738. },
  4739. {
  4740. "name": "mcrittenden",
  4741. "homepage": "https://www.drupal.org/user/420631"
  4742. },
  4743. {
  4744. "name": "mrfelton",
  4745. "homepage": "https://www.drupal.org/user/305669"
  4746. }
  4747. ],
  4748. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  4749. "homepage": "https://www.drupal.org/project/seven",
  4750. "support": {
  4751. "source": "https://git.drupalcode.org/project/seven"
  4752. }
  4753. },
  4754. {
  4755. "name": "drupal/simple_sitemap",
  4756. "version": "4.2.3",
  4757. "source": {
  4758. "type": "git",
  4759. "url": "https://git.drupalcode.org/project/simple_sitemap.git",
  4760. "reference": "4.2.3"
  4761. },
  4762. "dist": {
  4763. "type": "zip",
  4764. "url": "https://ftp.drupal.org/files/projects/simple_sitemap-4.2.3.zip",
  4765. "reference": "4.2.3",
  4766. "shasum": "08e87178a35fe2a89202d2423f3de1656e1e814a"
  4767. },
  4768. "require": {
  4769. "drupal/core": "^10.3 || ^11",
  4770. "ext-xmlwriter": "*"
  4771. },
  4772. "conflict": {
  4773. "drush/drush": "<12.5.1"
  4774. },
  4775. "require-dev": {
  4776. "drupal/paragraphs": "^1.18"
  4777. },
  4778. "type": "drupal-module",
  4779. "extra": {
  4780. "drupal": {
  4781. "version": "4.2.3",
  4782. "datestamp": "1764147268",
  4783. "security-coverage": {
  4784. "status": "covered",
  4785. "message": "Covered by Drupal's security advisory policy"
  4786. }
  4787. }
  4788. },
  4789. "notification-url": "https://packages.drupal.org/8/downloads",
  4790. "license": [
  4791. "GPL-2.0-or-later"
  4792. ],
  4793. "authors": [
  4794. {
  4795. "name": "Pawel Ginalski (gbyte)",
  4796. "homepage": "https://www.drupal.org/u/gbyte",
  4797. "email": "contact@gbyte.dev",
  4798. "role": "Maintainer"
  4799. },
  4800. {
  4801. "name": "walkingdexter",
  4802. "homepage": "https://www.drupal.org/user/3251330"
  4803. }
  4804. ],
  4805. "description": "Creates a standard conform hreflang XML sitemap of the site content and provides a framework for developing other sitemap types.",
  4806. "homepage": "https://drupal.org/project/simple_sitemap",
  4807. "support": {
  4808. "source": "https://cgit.drupalcode.org/simple_sitemap",
  4809. "issues": "https://drupal.org/project/issues/simple_sitemap"
  4810. }
  4811. },
  4812. {
  4813. "name": "drupal/stable",
  4814. "version": "2.1.0",
  4815. "source": {
  4816. "type": "git",
  4817. "url": "https://git.drupalcode.org/project/stable.git",
  4818. "reference": "2.1.0"
  4819. },
  4820. "dist": {
  4821. "type": "zip",
  4822. "url": "https://ftp.drupal.org/files/projects/stable-2.1.0.zip",
  4823. "reference": "2.1.0",
  4824. "shasum": "fb2b010190e492e976e1db9692a8a46d5b7d15bb"
  4825. },
  4826. "require": {
  4827. "drupal/core": "^10.3 || ^11"
  4828. },
  4829. "type": "drupal-theme",
  4830. "extra": {
  4831. "drupal": {
  4832. "version": "2.1.0",
  4833. "datestamp": "1721202956",
  4834. "security-coverage": {
  4835. "status": "covered",
  4836. "message": "Covered by Drupal's security advisory policy"
  4837. }
  4838. }
  4839. },
  4840. "notification-url": "https://packages.drupal.org/8/downloads",
  4841. "license": [
  4842. "GPL-2.0-or-later"
  4843. ],
  4844. "authors": [
  4845. {
  4846. "name": "bnjmnm",
  4847. "homepage": "https://www.drupal.org/user/2369194"
  4848. },
  4849. {
  4850. "name": "lauriii",
  4851. "homepage": "https://www.drupal.org/user/1078742"
  4852. },
  4853. {
  4854. "name": "rajeshreeputra",
  4855. "homepage": "https://www.drupal.org/user/3418561"
  4856. },
  4857. {
  4858. "name": "star-szr",
  4859. "homepage": "https://www.drupal.org/user/1167326"
  4860. }
  4861. ],
  4862. "description": "A base theme using Drupal core markup and CSS.",
  4863. "homepage": "https://www.drupal.org/project/stable",
  4864. "support": {
  4865. "source": "https://git.drupalcode.org/project/stable"
  4866. }
  4867. },
  4868. {
  4869. "name": "drupal/synonyms",
  4870. "version": "2.1.4",
  4871. "source": {
  4872. "type": "git",
  4873. "url": "https://git.drupalcode.org/project/synonyms.git",
  4874. "reference": "2.1.4"
  4875. },
  4876. "dist": {
  4877. "type": "zip",
  4878. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.4.zip",
  4879. "reference": "2.1.4",
  4880. "shasum": "ee0f1a7e0d1f565c35cafeb437b59366b76684b3"
  4881. },
  4882. "require": {
  4883. "drupal/core": "^9 || ^10 || ^11"
  4884. },
  4885. "require-dev": {
  4886. "drupal/synonyms_list_field": "*"
  4887. },
  4888. "type": "drupal-module",
  4889. "extra": {
  4890. "drupal": {
  4891. "version": "2.1.4",
  4892. "datestamp": "1723069842",
  4893. "security-coverage": {
  4894. "status": "covered",
  4895. "message": "Covered by Drupal's security advisory policy"
  4896. }
  4897. }
  4898. },
  4899. "notification-url": "https://packages.drupal.org/8/downloads",
  4900. "license": [
  4901. "GPL-2.0-or-later"
  4902. ],
  4903. "authors": [
  4904. {
  4905. "name": "Bojan Zivanovic",
  4906. "homepage": "https://www.drupal.org/u/bojanz",
  4907. "role": "Author and D5, D6 and D7 versions developer."
  4908. },
  4909. {
  4910. "name": "Alex Trosenko",
  4911. "homepage": "https://www.drupal.org/u/bucefal91",
  4912. "role": "D7 and D8 versions developer."
  4913. },
  4914. {
  4915. "name": "Duro Arezina",
  4916. "homepage": "https://www.drupal.org/u/devad",
  4917. "role": "D8+ versions maintenance"
  4918. },
  4919. {
  4920. "name": "See other contributors",
  4921. "homepage": "https://www.drupal.org/node/148775/committers"
  4922. }
  4923. ],
  4924. "description": "Provides synonyms feature for all entities.",
  4925. "homepage": "https://www.drupal.org/project/synonyms",
  4926. "support": {
  4927. "source": "https://git.drupalcode.org/project/synonyms",
  4928. "issues": "https://www.drupal.org/project/issues/synonyms"
  4929. }
  4930. },
  4931. {
  4932. "name": "drupal/token",
  4933. "version": "1.17.0",
  4934. "source": {
  4935. "type": "git",
  4936. "url": "https://git.drupalcode.org/project/token.git",
  4937. "reference": "8.x-1.17"
  4938. },
  4939. "dist": {
  4940. "type": "zip",
  4941. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.17.zip",
  4942. "reference": "8.x-1.17",
  4943. "shasum": "21d11adf0be16f1aa95b6348b4ceadbe9a625824"
  4944. },
  4945. "require": {
  4946. "drupal/core": "^10.3 || ^11"
  4947. },
  4948. "require-dev": {
  4949. "drupal/book": "^1 || ^2"
  4950. },
  4951. "type": "drupal-module",
  4952. "extra": {
  4953. "drupal": {
  4954. "version": "8.x-1.17",
  4955. "datestamp": "1767942434",
  4956. "security-coverage": {
  4957. "status": "covered",
  4958. "message": "Covered by Drupal's security advisory policy"
  4959. }
  4960. },
  4961. "drush": {
  4962. "services": {
  4963. "drush.services.yml": ">=9"
  4964. }
  4965. }
  4966. },
  4967. "notification-url": "https://packages.drupal.org/8/downloads",
  4968. "license": [
  4969. "GPL-2.0-or-later"
  4970. ],
  4971. "authors": [
  4972. {
  4973. "name": "berdir",
  4974. "homepage": "https://www.drupal.org/user/214652"
  4975. },
  4976. {
  4977. "name": "dave reid",
  4978. "homepage": "https://www.drupal.org/user/53892"
  4979. },
  4980. {
  4981. "name": "eaton",
  4982. "homepage": "https://www.drupal.org/user/16496"
  4983. },
  4984. {
  4985. "name": "fago",
  4986. "homepage": "https://www.drupal.org/user/16747"
  4987. },
  4988. {
  4989. "name": "greggles",
  4990. "homepage": "https://www.drupal.org/user/36762"
  4991. },
  4992. {
  4993. "name": "mikeryan",
  4994. "homepage": "https://www.drupal.org/user/4420"
  4995. }
  4996. ],
  4997. "description": "Provides a user interface for the Token API, some missing core tokens.",
  4998. "homepage": "https://www.drupal.org/project/token",
  4999. "support": {
  5000. "source": "https://git.drupalcode.org/project/token"
  5001. }
  5002. },
  5003. {
  5004. "name": "drupal/translation_views",
  5005. "version": "1.0.0-alpha11",
  5006. "source": {
  5007. "type": "git",
  5008. "url": "https://git.drupalcode.org/project/translation_views.git",
  5009. "reference": "8.x-1.0-alpha11"
  5010. },
  5011. "dist": {
  5012. "type": "zip",
  5013. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  5014. "reference": "8.x-1.0-alpha11",
  5015. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  5016. },
  5017. "require": {
  5018. "drupal/core": "^8.8 || ^9 || ^10"
  5019. },
  5020. "require-dev": {
  5021. "drupal/translators_content": "^1.0@alpha"
  5022. },
  5023. "type": "drupal-module",
  5024. "extra": {
  5025. "drupal": {
  5026. "version": "8.x-1.0-alpha11",
  5027. "datestamp": "1679660668",
  5028. "security-coverage": {
  5029. "status": "not-covered",
  5030. "message": "Project has not opted into security advisory coverage!"
  5031. }
  5032. }
  5033. },
  5034. "notification-url": "https://packages.drupal.org/8/downloads",
  5035. "license": [
  5036. "GPL-2.0-or-later"
  5037. ],
  5038. "authors": [
  5039. {
  5040. "name": "matsbla",
  5041. "homepage": "https://www.drupal.org/user/2325394"
  5042. },
  5043. {
  5044. "name": "vlad.dancer",
  5045. "homepage": "https://www.drupal.org/user/903844"
  5046. }
  5047. ],
  5048. "description": "Create customized lists and queries of translations from your database.",
  5049. "homepage": "https://www.drupal.org/project/translation_views",
  5050. "support": {
  5051. "source": "https://git.drupalcode.org/project/translation_views"
  5052. }
  5053. },
  5054. {
  5055. "name": "drupal/upgrade_status",
  5056. "version": "4.3.9",
  5057. "source": {
  5058. "type": "git",
  5059. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  5060. "reference": "4.3.9"
  5061. },
  5062. "dist": {
  5063. "type": "zip",
  5064. "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.9.zip",
  5065. "reference": "4.3.9",
  5066. "shasum": "bef9e5e08a3b6ecc6a5c380107e624fb4b5f03ef"
  5067. },
  5068. "require": {
  5069. "dekor/php-array-table": "^2.0",
  5070. "drupal/core": "^9 || ^10 || ^11",
  5071. "mglaman/phpstan-drupal": "^1.2.11|^2.0",
  5072. "nikic/php-parser": "^4.0.0|^5.0.0",
  5073. "phpstan/phpstan-deprecation-rules": "^1.0.0|^2.0",
  5074. "symfony/process": "^3.4|^4.0|^5.0|^6.0|^7.0",
  5075. "webflo/drupal-finder": "^1.2"
  5076. },
  5077. "require-dev": {
  5078. "drush/drush": "^11|^12|^13"
  5079. },
  5080. "type": "drupal-module",
  5081. "extra": {
  5082. "drupal": {
  5083. "version": "4.3.9",
  5084. "datestamp": "1771841606",
  5085. "security-coverage": {
  5086. "status": "covered",
  5087. "message": "Covered by Drupal's security advisory policy"
  5088. }
  5089. },
  5090. "drush": {
  5091. "services": {
  5092. "drush.services.yml": "^9 || ^10"
  5093. }
  5094. }
  5095. },
  5096. "notification-url": "https://packages.drupal.org/8/downloads",
  5097. "license": [
  5098. "GPL-2.0-or-later"
  5099. ],
  5100. "authors": [
  5101. {
  5102. "name": "gábor hojtsy",
  5103. "homepage": "https://www.drupal.org/user/4166"
  5104. }
  5105. ],
  5106. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  5107. "homepage": "http://drupal.org/project/upgrade_status",
  5108. "support": {
  5109. "source": "https://git.drupalcode.org/project/upgrade_status"
  5110. }
  5111. },
  5112. {
  5113. "name": "drupal/views_bulk_edit",
  5114. "version": "3.0.1",
  5115. "source": {
  5116. "type": "git",
  5117. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  5118. "reference": "3.0.1"
  5119. },
  5120. "dist": {
  5121. "type": "zip",
  5122. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-3.0.1.zip",
  5123. "reference": "3.0.1",
  5124. "shasum": "8105257937e3a39e3814a526fcbe996b4c90fe5d"
  5125. },
  5126. "require": {
  5127. "drupal/core": "^9.4 || ^10 || ^11",
  5128. "php": ">=8.1"
  5129. },
  5130. "require-dev": {
  5131. "drupal/action": "^0.2",
  5132. "drupal/views_bulk_operations": "~4.2.4"
  5133. },
  5134. "suggest": {
  5135. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  5136. },
  5137. "type": "drupal-module",
  5138. "extra": {
  5139. "drupal": {
  5140. "version": "3.0.1",
  5141. "datestamp": "1769429619",
  5142. "security-coverage": {
  5143. "status": "covered",
  5144. "message": "Covered by Drupal's security advisory policy"
  5145. }
  5146. }
  5147. },
  5148. "notification-url": "https://packages.drupal.org/8/downloads",
  5149. "license": [
  5150. "GPL-2.0+"
  5151. ],
  5152. "authors": [
  5153. {
  5154. "name": "Marcin Grabias",
  5155. "homepage": "https://www.drupal.org/u/graber"
  5156. },
  5157. {
  5158. "name": "benjy",
  5159. "homepage": "https://www.drupal.org/user/1852732"
  5160. },
  5161. {
  5162. "name": "graber",
  5163. "homepage": "https://www.drupal.org/user/1599440"
  5164. },
  5165. {
  5166. "name": "grevil",
  5167. "homepage": "https://www.drupal.org/user/3668491"
  5168. },
  5169. {
  5170. "name": "joseph.olstad",
  5171. "homepage": "https://www.drupal.org/user/1321830"
  5172. }
  5173. ],
  5174. "description": "Allows bulk edition of entity field values.",
  5175. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  5176. "support": {
  5177. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  5178. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  5179. }
  5180. },
  5181. {
  5182. "name": "drupal/views_bulk_operations",
  5183. "version": "4.4.4",
  5184. "source": {
  5185. "type": "git",
  5186. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  5187. "reference": "4.4.4"
  5188. },
  5189. "dist": {
  5190. "type": "zip",
  5191. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.4.4.zip",
  5192. "reference": "4.4.4",
  5193. "shasum": "bd8e9c1af14526cd67be91390696b0e0d614ca7e"
  5194. },
  5195. "require": {
  5196. "drupal/core": "^10.3 || ^11"
  5197. },
  5198. "conflict": {
  5199. "drush/drush": "<12.5.1"
  5200. },
  5201. "require-dev": {
  5202. "drupal/coder": "^8.3.16",
  5203. "drush/drush": "^12 || ^13",
  5204. "phpstan/phpstan-deprecation-rules": "^2",
  5205. "phpstan/phpstan-strict-rules": "^2"
  5206. },
  5207. "suggest": {
  5208. "drush/drush": "^12 || ^13"
  5209. },
  5210. "type": "drupal-module",
  5211. "extra": {
  5212. "drupal": {
  5213. "version": "4.4.4",
  5214. "datestamp": "1761317826",
  5215. "security-coverage": {
  5216. "status": "covered",
  5217. "message": "Covered by Drupal's security advisory policy"
  5218. }
  5219. }
  5220. },
  5221. "notification-url": "https://packages.drupal.org/8/downloads",
  5222. "license": [
  5223. "GPL-2.0-or-later"
  5224. ],
  5225. "authors": [
  5226. {
  5227. "name": "Marcin Grabias",
  5228. "homepage": "https://www.drupal.org/u/graber"
  5229. },
  5230. {
  5231. "name": "graber",
  5232. "homepage": "https://www.drupal.org/user/1599440"
  5233. },
  5234. {
  5235. "name": "joelpittet",
  5236. "homepage": "https://www.drupal.org/user/160302"
  5237. }
  5238. ],
  5239. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  5240. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  5241. "support": {
  5242. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  5243. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=any_4.",
  5244. "docs": "https://www.drupal.org/docs/contributed-modules/views-bulk-operations-vbo"
  5245. }
  5246. },
  5247. {
  5248. "name": "drupal/workflow",
  5249. "version": "2.2.2",
  5250. "source": {
  5251. "type": "git",
  5252. "url": "https://git.drupalcode.org/project/workflow.git",
  5253. "reference": "2.2.2"
  5254. },
  5255. "dist": {
  5256. "type": "zip",
  5257. "url": "https://ftp.drupal.org/files/projects/workflow-2.2.2.zip",
  5258. "reference": "2.2.2",
  5259. "shasum": "417c0f2befa414d872f1fec25202e77380c2010e"
  5260. },
  5261. "require": {
  5262. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  5263. },
  5264. "require-dev": {
  5265. "drupal/diff": "^1 || ^2",
  5266. "drupal/feeds": "^3"
  5267. },
  5268. "type": "drupal-module",
  5269. "extra": {
  5270. "drupal": {
  5271. "version": "2.2.2",
  5272. "datestamp": "1767609684",
  5273. "security-coverage": {
  5274. "status": "covered",
  5275. "message": "Covered by Drupal's security advisory policy"
  5276. }
  5277. }
  5278. },
  5279. "notification-url": "https://packages.drupal.org/8/downloads",
  5280. "license": [
  5281. "GPL-2.0-or-later"
  5282. ],
  5283. "authors": [
  5284. {
  5285. "name": "John Voskuilen",
  5286. "homepage": "https://www.drupal.org/user/275249",
  5287. "role": "Maintainer"
  5288. },
  5289. {
  5290. "name": "eaton",
  5291. "homepage": "https://www.drupal.org/user/16496"
  5292. },
  5293. {
  5294. "name": "heine",
  5295. "homepage": "https://www.drupal.org/user/17943"
  5296. },
  5297. {
  5298. "name": "JacobSingh",
  5299. "homepage": "https://www.drupal.org/user/68912"
  5300. },
  5301. {
  5302. "name": "johnv",
  5303. "homepage": "https://www.drupal.org/user/591042"
  5304. },
  5305. {
  5306. "name": "jvandyk",
  5307. "homepage": "https://www.drupal.org/user/2375"
  5308. },
  5309. {
  5310. "name": "mfredrickson",
  5311. "homepage": "https://www.drupal.org/user/31994"
  5312. },
  5313. {
  5314. "name": "nancydru",
  5315. "homepage": "https://www.drupal.org/user/101412"
  5316. },
  5317. {
  5318. "name": "q0rban",
  5319. "homepage": "https://www.drupal.org/user/31022"
  5320. }
  5321. ],
  5322. "description": "Defines a field type with Workflows, containing customizable state transitions.",
  5323. "homepage": "http://drupal.org/project/workflow",
  5324. "support": {
  5325. "source": "http://cgit.drupalcode.org/workflow",
  5326. "issues": "http://drupal.org/project/workflow",
  5327. "irc": "irc://irc.freenode.org/drupal-contribute"
  5328. }
  5329. },
  5330. {
  5331. "name": "drush/drush",
  5332. "version": "13.7.2",
  5333. "source": {
  5334. "type": "git",
  5335. "url": "https://github.com/drush-ops/drush.git",
  5336. "reference": "670c5f81b3f525b3f08263f038c7f07558f2580d"
  5337. },
  5338. "dist": {
  5339. "type": "zip",
  5340. "url": "https://api.github.com/repos/drush-ops/drush/zipball/670c5f81b3f525b3f08263f038c7f07558f2580d",
  5341. "reference": "670c5f81b3f525b3f08263f038c7f07558f2580d",
  5342. "shasum": ""
  5343. },
  5344. "require": {
  5345. "chi-teck/drupal-code-generator": "^3.6 || ^4@alpha",
  5346. "composer-runtime-api": "^2.2",
  5347. "composer/semver": "^1.4 || ^3",
  5348. "consolidation/annotated-command": "^4.10.2",
  5349. "consolidation/config": "^2.1.2 || ^3.1.1",
  5350. "consolidation/filter-via-dot-access-data": "^2.0.2",
  5351. "consolidation/output-formatters": "^4.6.1",
  5352. "consolidation/robo": "^4.0.6 || ^5.1.0",
  5353. "consolidation/site-alias": "^4.1.1",
  5354. "consolidation/site-process": "^5.4.2",
  5355. "dflydev/dot-access-data": "^3.0.2",
  5356. "ext-dom": "*",
  5357. "grasmash/yaml-cli": "^3.2",
  5358. "guzzlehttp/guzzle": "^7.0",
  5359. "laravel/prompts": "^0.3.5",
  5360. "league/container": "^4.2",
  5361. "php": ">=8.3",
  5362. "psy/psysh": "~0.12",
  5363. "symfony/event-dispatcher": "^6 || ^7",
  5364. "symfony/filesystem": "^6.1 || ^7",
  5365. "symfony/finder": "^6 || ^7",
  5366. "symfony/var-dumper": "^6.0 || ^7",
  5367. "symfony/yaml": "^6.0 || ^7"
  5368. },
  5369. "conflict": {
  5370. "drupal/core": "< 10.4",
  5371. "drupal/migrate_run": "*",
  5372. "drupal/migrate_tools": "<= 5"
  5373. },
  5374. "require-dev": {
  5375. "composer/installers": "^2",
  5376. "cweagans/composer-patches": "~1.7.3",
  5377. "drupal/core-recommended": "^10.4.0 || 11.x-dev",
  5378. "drupal/semver_example": "2.3.0",
  5379. "jetbrains/phpstorm-attributes": "^1.0",
  5380. "mglaman/phpstan-drupal": "^2",
  5381. "phpunit/phpunit": "^9 || ^10 || ^11",
  5382. "rector/rector": "^2",
  5383. "squizlabs/php_codesniffer": "^3.7"
  5384. },
  5385. "bin": [
  5386. "drush",
  5387. "drush.php"
  5388. ],
  5389. "type": "library",
  5390. "extra": {
  5391. "patches-file": "composer.patches.json",
  5392. "installer-paths": {
  5393. "sut/core": [
  5394. "type:drupal-core"
  5395. ],
  5396. "sut/libraries/{$name}": [
  5397. "type:drupal-library"
  5398. ],
  5399. "sut/themes/unish/{$name}": [
  5400. "drupal/empty_theme"
  5401. ],
  5402. "sut/drush/contrib/{$name}": [
  5403. "type:drupal-drush"
  5404. ],
  5405. "sut/modules/unish/{$name}": [
  5406. "drupal/devel"
  5407. ],
  5408. "sut/themes/contrib/{$name}": [
  5409. "type:drupal-theme"
  5410. ],
  5411. "sut/modules/contrib/{$name}": [
  5412. "type:drupal-module"
  5413. ],
  5414. "sut/profiles/contrib/{$name}": [
  5415. "type:drupal-profile"
  5416. ]
  5417. }
  5418. },
  5419. "autoload": {
  5420. "psr-4": {
  5421. "Drush\\": "src/"
  5422. }
  5423. },
  5424. "notification-url": "https://packagist.org/downloads/",
  5425. "license": [
  5426. "GPL-2.0-or-later"
  5427. ],
  5428. "authors": [
  5429. {
  5430. "name": "Moshe Weitzman",
  5431. "email": "weitzman@tejasa.com"
  5432. },
  5433. {
  5434. "name": "Owen Barton",
  5435. "email": "drupal@owenbarton.com"
  5436. },
  5437. {
  5438. "name": "Greg Anderson",
  5439. "email": "greg.1.anderson@greenknowe.org"
  5440. },
  5441. {
  5442. "name": "Jonathan Araña Cruz",
  5443. "email": "jonhattan@faita.net"
  5444. },
  5445. {
  5446. "name": "Jonathan Hedstrom",
  5447. "email": "jhedstrom@gmail.com"
  5448. },
  5449. {
  5450. "name": "Christopher Gervais",
  5451. "email": "chris@ergonlogic.com"
  5452. },
  5453. {
  5454. "name": "Dave Reid",
  5455. "email": "dave@davereid.net"
  5456. },
  5457. {
  5458. "name": "Damian Lee",
  5459. "email": "damiankloip@googlemail.com"
  5460. }
  5461. ],
  5462. "description": "Drush is a command line shell and scripting interface for Drupal, a veritable Swiss Army knife designed to make life easier for those of us who spend some of our working hours hacking away at the command prompt.",
  5463. "homepage": "http://www.drush.org",
  5464. "support": {
  5465. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  5466. "issues": "https://github.com/drush-ops/drush/issues",
  5467. "security": "https://github.com/drush-ops/drush/security/advisories",
  5468. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  5469. "source": "https://github.com/drush-ops/drush/tree/13.7.2"
  5470. },
  5471. "funding": [
  5472. {
  5473. "url": "https://github.com/weitzman",
  5474. "type": "github"
  5475. }
  5476. ],
  5477. "time": "2026-03-20T19:18:11+00:00"
  5478. },
  5479. {
  5480. "name": "egulias/email-validator",
  5481. "version": "4.0.4",
  5482. "source": {
  5483. "type": "git",
  5484. "url": "https://github.com/egulias/EmailValidator.git",
  5485. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  5486. },
  5487. "dist": {
  5488. "type": "zip",
  5489. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  5490. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  5491. "shasum": ""
  5492. },
  5493. "require": {
  5494. "doctrine/lexer": "^2.0 || ^3.0",
  5495. "php": ">=8.1",
  5496. "symfony/polyfill-intl-idn": "^1.26"
  5497. },
  5498. "require-dev": {
  5499. "phpunit/phpunit": "^10.2",
  5500. "vimeo/psalm": "^5.12"
  5501. },
  5502. "suggest": {
  5503. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  5504. },
  5505. "type": "library",
  5506. "extra": {
  5507. "branch-alias": {
  5508. "dev-master": "4.0.x-dev"
  5509. }
  5510. },
  5511. "autoload": {
  5512. "psr-4": {
  5513. "Egulias\\EmailValidator\\": "src"
  5514. }
  5515. },
  5516. "notification-url": "https://packagist.org/downloads/",
  5517. "license": [
  5518. "MIT"
  5519. ],
  5520. "authors": [
  5521. {
  5522. "name": "Eduardo Gulias Davis"
  5523. }
  5524. ],
  5525. "description": "A library for validating emails against several RFCs",
  5526. "homepage": "https://github.com/egulias/EmailValidator",
  5527. "keywords": [
  5528. "email",
  5529. "emailvalidation",
  5530. "emailvalidator",
  5531. "validation",
  5532. "validator"
  5533. ],
  5534. "support": {
  5535. "issues": "https://github.com/egulias/EmailValidator/issues",
  5536. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  5537. },
  5538. "funding": [
  5539. {
  5540. "url": "https://github.com/egulias",
  5541. "type": "github"
  5542. }
  5543. ],
  5544. "time": "2025-03-06T22:45:56+00:00"
  5545. },
  5546. {
  5547. "name": "grasmash/expander",
  5548. "version": "3.0.1",
  5549. "source": {
  5550. "type": "git",
  5551. "url": "https://github.com/grasmash/expander.git",
  5552. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4"
  5553. },
  5554. "dist": {
  5555. "type": "zip",
  5556. "url": "https://api.github.com/repos/grasmash/expander/zipball/eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  5557. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  5558. "shasum": ""
  5559. },
  5560. "require": {
  5561. "dflydev/dot-access-data": "^3.0.0",
  5562. "php": ">=8.0",
  5563. "psr/log": "^2 | ^3"
  5564. },
  5565. "require-dev": {
  5566. "greg-1-anderson/composer-test-scenarios": "^1",
  5567. "php-coveralls/php-coveralls": "^2.5",
  5568. "phpunit/phpunit": "^9",
  5569. "squizlabs/php_codesniffer": "^3.3"
  5570. },
  5571. "type": "library",
  5572. "extra": {
  5573. "branch-alias": {
  5574. "dev-master": "1.x-dev"
  5575. }
  5576. },
  5577. "autoload": {
  5578. "psr-4": {
  5579. "Grasmash\\Expander\\": "src/"
  5580. }
  5581. },
  5582. "notification-url": "https://packagist.org/downloads/",
  5583. "license": [
  5584. "MIT"
  5585. ],
  5586. "authors": [
  5587. {
  5588. "name": "Matthew Grasmick"
  5589. }
  5590. ],
  5591. "description": "Expands internal property references in PHP arrays file.",
  5592. "support": {
  5593. "issues": "https://github.com/grasmash/expander/issues",
  5594. "source": "https://github.com/grasmash/expander/tree/3.0.1"
  5595. },
  5596. "time": "2024-11-25T23:28:05+00:00"
  5597. },
  5598. {
  5599. "name": "grasmash/yaml-cli",
  5600. "version": "3.2.1",
  5601. "source": {
  5602. "type": "git",
  5603. "url": "https://github.com/grasmash/yaml-cli.git",
  5604. "reference": "09a8860566958a1576cc54bbe910a03477e54971"
  5605. },
  5606. "dist": {
  5607. "type": "zip",
  5608. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971",
  5609. "reference": "09a8860566958a1576cc54bbe910a03477e54971",
  5610. "shasum": ""
  5611. },
  5612. "require": {
  5613. "dflydev/dot-access-data": "^3",
  5614. "php": ">=8.0",
  5615. "symfony/console": "^6 || ^7",
  5616. "symfony/filesystem": "^6 || ^7",
  5617. "symfony/yaml": "^6 || ^7"
  5618. },
  5619. "require-dev": {
  5620. "php-coveralls/php-coveralls": "^2",
  5621. "phpunit/phpunit": "^9",
  5622. "squizlabs/php_codesniffer": "^3.0"
  5623. },
  5624. "bin": [
  5625. "bin/yaml-cli"
  5626. ],
  5627. "type": "library",
  5628. "extra": {
  5629. "branch-alias": {
  5630. "dev-master": "3.x-dev"
  5631. }
  5632. },
  5633. "autoload": {
  5634. "psr-4": {
  5635. "Grasmash\\YamlCli\\": "src/"
  5636. }
  5637. },
  5638. "notification-url": "https://packagist.org/downloads/",
  5639. "license": [
  5640. "MIT"
  5641. ],
  5642. "authors": [
  5643. {
  5644. "name": "Matthew Grasmick"
  5645. }
  5646. ],
  5647. "description": "A command line tool for reading and manipulating yaml files.",
  5648. "support": {
  5649. "issues": "https://github.com/grasmash/yaml-cli/issues",
  5650. "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1"
  5651. },
  5652. "time": "2024-04-23T02:10:57+00:00"
  5653. },
  5654. {
  5655. "name": "guzzlehttp/guzzle",
  5656. "version": "7.10.0",
  5657. "source": {
  5658. "type": "git",
  5659. "url": "https://github.com/guzzle/guzzle.git",
  5660. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
  5661. },
  5662. "dist": {
  5663. "type": "zip",
  5664. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  5665. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  5666. "shasum": ""
  5667. },
  5668. "require": {
  5669. "ext-json": "*",
  5670. "guzzlehttp/promises": "^2.3",
  5671. "guzzlehttp/psr7": "^2.8",
  5672. "php": "^7.2.5 || ^8.0",
  5673. "psr/http-client": "^1.0",
  5674. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  5675. },
  5676. "provide": {
  5677. "psr/http-client-implementation": "1.0"
  5678. },
  5679. "require-dev": {
  5680. "bamarni/composer-bin-plugin": "^1.8.2",
  5681. "ext-curl": "*",
  5682. "guzzle/client-integration-tests": "3.0.2",
  5683. "php-http/message-factory": "^1.1",
  5684. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  5685. "psr/log": "^1.1 || ^2.0 || ^3.0"
  5686. },
  5687. "suggest": {
  5688. "ext-curl": "Required for CURL handler support",
  5689. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  5690. "psr/log": "Required for using the Log middleware"
  5691. },
  5692. "type": "library",
  5693. "extra": {
  5694. "bamarni-bin": {
  5695. "bin-links": true,
  5696. "forward-command": false
  5697. }
  5698. },
  5699. "autoload": {
  5700. "files": [
  5701. "src/functions_include.php"
  5702. ],
  5703. "psr-4": {
  5704. "GuzzleHttp\\": "src/"
  5705. }
  5706. },
  5707. "notification-url": "https://packagist.org/downloads/",
  5708. "license": [
  5709. "MIT"
  5710. ],
  5711. "authors": [
  5712. {
  5713. "name": "Graham Campbell",
  5714. "email": "hello@gjcampbell.co.uk",
  5715. "homepage": "https://github.com/GrahamCampbell"
  5716. },
  5717. {
  5718. "name": "Michael Dowling",
  5719. "email": "mtdowling@gmail.com",
  5720. "homepage": "https://github.com/mtdowling"
  5721. },
  5722. {
  5723. "name": "Jeremy Lindblom",
  5724. "email": "jeremeamia@gmail.com",
  5725. "homepage": "https://github.com/jeremeamia"
  5726. },
  5727. {
  5728. "name": "George Mponos",
  5729. "email": "gmponos@gmail.com",
  5730. "homepage": "https://github.com/gmponos"
  5731. },
  5732. {
  5733. "name": "Tobias Nyholm",
  5734. "email": "tobias.nyholm@gmail.com",
  5735. "homepage": "https://github.com/Nyholm"
  5736. },
  5737. {
  5738. "name": "Márk Sági-Kazár",
  5739. "email": "mark.sagikazar@gmail.com",
  5740. "homepage": "https://github.com/sagikazarmark"
  5741. },
  5742. {
  5743. "name": "Tobias Schultze",
  5744. "email": "webmaster@tubo-world.de",
  5745. "homepage": "https://github.com/Tobion"
  5746. }
  5747. ],
  5748. "description": "Guzzle is a PHP HTTP client library",
  5749. "keywords": [
  5750. "client",
  5751. "curl",
  5752. "framework",
  5753. "http",
  5754. "http client",
  5755. "psr-18",
  5756. "psr-7",
  5757. "rest",
  5758. "web service"
  5759. ],
  5760. "support": {
  5761. "issues": "https://github.com/guzzle/guzzle/issues",
  5762. "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
  5763. },
  5764. "funding": [
  5765. {
  5766. "url": "https://github.com/GrahamCampbell",
  5767. "type": "github"
  5768. },
  5769. {
  5770. "url": "https://github.com/Nyholm",
  5771. "type": "github"
  5772. },
  5773. {
  5774. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  5775. "type": "tidelift"
  5776. }
  5777. ],
  5778. "time": "2025-08-23T22:36:01+00:00"
  5779. },
  5780. {
  5781. "name": "guzzlehttp/promises",
  5782. "version": "2.3.0",
  5783. "source": {
  5784. "type": "git",
  5785. "url": "https://github.com/guzzle/promises.git",
  5786. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  5787. },
  5788. "dist": {
  5789. "type": "zip",
  5790. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  5791. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  5792. "shasum": ""
  5793. },
  5794. "require": {
  5795. "php": "^7.2.5 || ^8.0"
  5796. },
  5797. "require-dev": {
  5798. "bamarni/composer-bin-plugin": "^1.8.2",
  5799. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  5800. },
  5801. "type": "library",
  5802. "extra": {
  5803. "bamarni-bin": {
  5804. "bin-links": true,
  5805. "forward-command": false
  5806. }
  5807. },
  5808. "autoload": {
  5809. "psr-4": {
  5810. "GuzzleHttp\\Promise\\": "src/"
  5811. }
  5812. },
  5813. "notification-url": "https://packagist.org/downloads/",
  5814. "license": [
  5815. "MIT"
  5816. ],
  5817. "authors": [
  5818. {
  5819. "name": "Graham Campbell",
  5820. "email": "hello@gjcampbell.co.uk",
  5821. "homepage": "https://github.com/GrahamCampbell"
  5822. },
  5823. {
  5824. "name": "Michael Dowling",
  5825. "email": "mtdowling@gmail.com",
  5826. "homepage": "https://github.com/mtdowling"
  5827. },
  5828. {
  5829. "name": "Tobias Nyholm",
  5830. "email": "tobias.nyholm@gmail.com",
  5831. "homepage": "https://github.com/Nyholm"
  5832. },
  5833. {
  5834. "name": "Tobias Schultze",
  5835. "email": "webmaster@tubo-world.de",
  5836. "homepage": "https://github.com/Tobion"
  5837. }
  5838. ],
  5839. "description": "Guzzle promises library",
  5840. "keywords": [
  5841. "promise"
  5842. ],
  5843. "support": {
  5844. "issues": "https://github.com/guzzle/promises/issues",
  5845. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  5846. },
  5847. "funding": [
  5848. {
  5849. "url": "https://github.com/GrahamCampbell",
  5850. "type": "github"
  5851. },
  5852. {
  5853. "url": "https://github.com/Nyholm",
  5854. "type": "github"
  5855. },
  5856. {
  5857. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  5858. "type": "tidelift"
  5859. }
  5860. ],
  5861. "time": "2025-08-22T14:34:08+00:00"
  5862. },
  5863. {
  5864. "name": "guzzlehttp/psr7",
  5865. "version": "2.8.1",
  5866. "source": {
  5867. "type": "git",
  5868. "url": "https://github.com/guzzle/psr7.git",
  5869. "reference": "718f1ee6a878be5290af3557aeda0c91278361d9"
  5870. },
  5871. "dist": {
  5872. "type": "zip",
  5873. "url": "https://api.github.com/repos/guzzle/psr7/zipball/718f1ee6a878be5290af3557aeda0c91278361d9",
  5874. "reference": "718f1ee6a878be5290af3557aeda0c91278361d9",
  5875. "shasum": ""
  5876. },
  5877. "require": {
  5878. "php": "^7.2.5 || ^8.0",
  5879. "psr/http-factory": "^1.0",
  5880. "psr/http-message": "^1.1 || ^2.0",
  5881. "ralouphie/getallheaders": "^3.0"
  5882. },
  5883. "provide": {
  5884. "psr/http-factory-implementation": "1.0",
  5885. "psr/http-message-implementation": "1.0"
  5886. },
  5887. "require-dev": {
  5888. "bamarni/composer-bin-plugin": "^1.8.2",
  5889. "http-interop/http-factory-tests": "0.9.0",
  5890. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  5891. },
  5892. "suggest": {
  5893. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  5894. },
  5895. "type": "library",
  5896. "extra": {
  5897. "bamarni-bin": {
  5898. "bin-links": true,
  5899. "forward-command": false
  5900. }
  5901. },
  5902. "autoload": {
  5903. "psr-4": {
  5904. "GuzzleHttp\\Psr7\\": "src/"
  5905. }
  5906. },
  5907. "notification-url": "https://packagist.org/downloads/",
  5908. "license": [
  5909. "MIT"
  5910. ],
  5911. "authors": [
  5912. {
  5913. "name": "Graham Campbell",
  5914. "email": "hello@gjcampbell.co.uk",
  5915. "homepage": "https://github.com/GrahamCampbell"
  5916. },
  5917. {
  5918. "name": "Michael Dowling",
  5919. "email": "mtdowling@gmail.com",
  5920. "homepage": "https://github.com/mtdowling"
  5921. },
  5922. {
  5923. "name": "George Mponos",
  5924. "email": "gmponos@gmail.com",
  5925. "homepage": "https://github.com/gmponos"
  5926. },
  5927. {
  5928. "name": "Tobias Nyholm",
  5929. "email": "tobias.nyholm@gmail.com",
  5930. "homepage": "https://github.com/Nyholm"
  5931. },
  5932. {
  5933. "name": "Márk Sági-Kazár",
  5934. "email": "mark.sagikazar@gmail.com",
  5935. "homepage": "https://github.com/sagikazarmark"
  5936. },
  5937. {
  5938. "name": "Tobias Schultze",
  5939. "email": "webmaster@tubo-world.de",
  5940. "homepage": "https://github.com/Tobion"
  5941. },
  5942. {
  5943. "name": "Márk Sági-Kazár",
  5944. "email": "mark.sagikazar@gmail.com",
  5945. "homepage": "https://sagikazarmark.hu"
  5946. }
  5947. ],
  5948. "description": "PSR-7 message implementation that also provides common utility methods",
  5949. "keywords": [
  5950. "http",
  5951. "message",
  5952. "psr-7",
  5953. "request",
  5954. "response",
  5955. "stream",
  5956. "uri",
  5957. "url"
  5958. ],
  5959. "support": {
  5960. "issues": "https://github.com/guzzle/psr7/issues",
  5961. "source": "https://github.com/guzzle/psr7/tree/2.8.1"
  5962. },
  5963. "funding": [
  5964. {
  5965. "url": "https://github.com/GrahamCampbell",
  5966. "type": "github"
  5967. },
  5968. {
  5969. "url": "https://github.com/Nyholm",
  5970. "type": "github"
  5971. },
  5972. {
  5973. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  5974. "type": "tidelift"
  5975. }
  5976. ],
  5977. "time": "2026-03-10T09:55:26+00:00"
  5978. },
  5979. {
  5980. "name": "kint-php/kint",
  5981. "version": "5.1.1",
  5982. "source": {
  5983. "type": "git",
  5984. "url": "https://github.com/kint-php/kint.git",
  5985. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b"
  5986. },
  5987. "dist": {
  5988. "type": "zip",
  5989. "url": "https://api.github.com/repos/kint-php/kint/zipball/8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  5990. "reference": "8c5ec370c3382ceae0b88e91f9bbb00e6bb4f93b",
  5991. "shasum": ""
  5992. },
  5993. "require": {
  5994. "php": ">=7.1"
  5995. },
  5996. "require-dev": {
  5997. "friendsofphp/php-cs-fixer": "^3",
  5998. "phpspec/prophecy-phpunit": "^2",
  5999. "phpunit/phpunit": "^9",
  6000. "seld/phar-utils": "^1",
  6001. "symfony/finder": ">=4.0",
  6002. "vimeo/psalm": "^5"
  6003. },
  6004. "suggest": {
  6005. "kint-php/kint-helpers": "Provides extra helper functions",
  6006. "kint-php/kint-twig": "Provides d() and s() functions in twig templates"
  6007. },
  6008. "type": "library",
  6009. "autoload": {
  6010. "files": [
  6011. "init.php"
  6012. ],
  6013. "psr-4": {
  6014. "Kint\\": "src/"
  6015. }
  6016. },
  6017. "notification-url": "https://packagist.org/downloads/",
  6018. "license": [
  6019. "MIT"
  6020. ],
  6021. "authors": [
  6022. {
  6023. "name": "Jonathan Vollebregt",
  6024. "homepage": "https://github.com/jnvsor"
  6025. },
  6026. {
  6027. "name": "Contributors",
  6028. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  6029. }
  6030. ],
  6031. "description": "Kint - debugging tool for PHP developers",
  6032. "homepage": "https://kint-php.github.io/kint/",
  6033. "keywords": [
  6034. "debug",
  6035. "kint",
  6036. "php"
  6037. ],
  6038. "support": {
  6039. "issues": "https://github.com/kint-php/kint/issues",
  6040. "source": "https://github.com/kint-php/kint/tree/5.1.1"
  6041. },
  6042. "time": "2024-04-26T14:20:09+00:00"
  6043. },
  6044. {
  6045. "name": "laravel/prompts",
  6046. "version": "v0.3.16",
  6047. "source": {
  6048. "type": "git",
  6049. "url": "https://github.com/laravel/prompts.git",
  6050. "reference": "11e7d5f93803a2190b00e145142cb00a33d17ad2"
  6051. },
  6052. "dist": {
  6053. "type": "zip",
  6054. "url": "https://api.github.com/repos/laravel/prompts/zipball/11e7d5f93803a2190b00e145142cb00a33d17ad2",
  6055. "reference": "11e7d5f93803a2190b00e145142cb00a33d17ad2",
  6056. "shasum": ""
  6057. },
  6058. "require": {
  6059. "composer-runtime-api": "^2.2",
  6060. "ext-mbstring": "*",
  6061. "php": "^8.1",
  6062. "symfony/console": "^6.2|^7.0|^8.0"
  6063. },
  6064. "conflict": {
  6065. "illuminate/console": ">=10.17.0 <10.25.0",
  6066. "laravel/framework": ">=10.17.0 <10.25.0"
  6067. },
  6068. "require-dev": {
  6069. "illuminate/collections": "^10.0|^11.0|^12.0|^13.0",
  6070. "mockery/mockery": "^1.5",
  6071. "pestphp/pest": "^2.3|^3.4|^4.0",
  6072. "phpstan/phpstan": "^1.12.28",
  6073. "phpstan/phpstan-mockery": "^1.1.3"
  6074. },
  6075. "suggest": {
  6076. "ext-pcntl": "Required for the spinner to be animated."
  6077. },
  6078. "type": "library",
  6079. "extra": {
  6080. "branch-alias": {
  6081. "dev-main": "0.3.x-dev"
  6082. }
  6083. },
  6084. "autoload": {
  6085. "files": [
  6086. "src/helpers.php"
  6087. ],
  6088. "psr-4": {
  6089. "Laravel\\Prompts\\": "src/"
  6090. }
  6091. },
  6092. "notification-url": "https://packagist.org/downloads/",
  6093. "license": [
  6094. "MIT"
  6095. ],
  6096. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  6097. "support": {
  6098. "issues": "https://github.com/laravel/prompts/issues",
  6099. "source": "https://github.com/laravel/prompts/tree/v0.3.16"
  6100. },
  6101. "time": "2026-03-23T14:35:33+00:00"
  6102. },
  6103. {
  6104. "name": "league/container",
  6105. "version": "4.2.5",
  6106. "source": {
  6107. "type": "git",
  6108. "url": "https://github.com/thephpleague/container.git",
  6109. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00"
  6110. },
  6111. "dist": {
  6112. "type": "zip",
  6113. "url": "https://api.github.com/repos/thephpleague/container/zipball/d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  6114. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  6115. "shasum": ""
  6116. },
  6117. "require": {
  6118. "php": "^7.2 || ^8.0",
  6119. "psr/container": "^1.1 || ^2.0"
  6120. },
  6121. "provide": {
  6122. "psr/container-implementation": "^1.0"
  6123. },
  6124. "replace": {
  6125. "orno/di": "~2.0"
  6126. },
  6127. "require-dev": {
  6128. "nette/php-generator": "^3.4",
  6129. "nikic/php-parser": "^4.10",
  6130. "phpstan/phpstan": "^0.12.47",
  6131. "phpunit/phpunit": "^8.5.17",
  6132. "roave/security-advisories": "dev-latest",
  6133. "scrutinizer/ocular": "^1.8",
  6134. "squizlabs/php_codesniffer": "^3.6"
  6135. },
  6136. "type": "library",
  6137. "extra": {
  6138. "branch-alias": {
  6139. "dev-1.x": "1.x-dev",
  6140. "dev-2.x": "2.x-dev",
  6141. "dev-3.x": "3.x-dev",
  6142. "dev-4.x": "4.x-dev",
  6143. "dev-master": "4.x-dev"
  6144. }
  6145. },
  6146. "autoload": {
  6147. "psr-4": {
  6148. "League\\Container\\": "src"
  6149. }
  6150. },
  6151. "notification-url": "https://packagist.org/downloads/",
  6152. "license": [
  6153. "MIT"
  6154. ],
  6155. "authors": [
  6156. {
  6157. "name": "Phil Bennett",
  6158. "email": "mail@philbennett.co.uk",
  6159. "role": "Developer"
  6160. }
  6161. ],
  6162. "description": "A fast and intuitive dependency injection container.",
  6163. "homepage": "https://github.com/thephpleague/container",
  6164. "keywords": [
  6165. "container",
  6166. "dependency",
  6167. "di",
  6168. "injection",
  6169. "league",
  6170. "provider",
  6171. "service"
  6172. ],
  6173. "support": {
  6174. "issues": "https://github.com/thephpleague/container/issues",
  6175. "source": "https://github.com/thephpleague/container/tree/4.2.5"
  6176. },
  6177. "funding": [
  6178. {
  6179. "url": "https://github.com/philipobenito",
  6180. "type": "github"
  6181. }
  6182. ],
  6183. "time": "2025-05-20T12:55:37+00:00"
  6184. },
  6185. {
  6186. "name": "masterminds/html5",
  6187. "version": "2.10.0",
  6188. "source": {
  6189. "type": "git",
  6190. "url": "https://github.com/Masterminds/html5-php.git",
  6191. "reference": "fcf91eb64359852f00d921887b219479b4f21251"
  6192. },
  6193. "dist": {
  6194. "type": "zip",
  6195. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/fcf91eb64359852f00d921887b219479b4f21251",
  6196. "reference": "fcf91eb64359852f00d921887b219479b4f21251",
  6197. "shasum": ""
  6198. },
  6199. "require": {
  6200. "ext-dom": "*",
  6201. "php": ">=5.3.0"
  6202. },
  6203. "require-dev": {
  6204. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  6205. },
  6206. "type": "library",
  6207. "extra": {
  6208. "branch-alias": {
  6209. "dev-master": "2.7-dev"
  6210. }
  6211. },
  6212. "autoload": {
  6213. "psr-4": {
  6214. "Masterminds\\": "src"
  6215. }
  6216. },
  6217. "notification-url": "https://packagist.org/downloads/",
  6218. "license": [
  6219. "MIT"
  6220. ],
  6221. "authors": [
  6222. {
  6223. "name": "Matt Butcher",
  6224. "email": "technosophos@gmail.com"
  6225. },
  6226. {
  6227. "name": "Matt Farina",
  6228. "email": "matt@mattfarina.com"
  6229. },
  6230. {
  6231. "name": "Asmir Mustafic",
  6232. "email": "goetas@gmail.com"
  6233. }
  6234. ],
  6235. "description": "An HTML5 parser and serializer.",
  6236. "homepage": "http://masterminds.github.io/html5-php",
  6237. "keywords": [
  6238. "HTML5",
  6239. "dom",
  6240. "html",
  6241. "parser",
  6242. "querypath",
  6243. "serializer",
  6244. "xml"
  6245. ],
  6246. "support": {
  6247. "issues": "https://github.com/Masterminds/html5-php/issues",
  6248. "source": "https://github.com/Masterminds/html5-php/tree/2.10.0"
  6249. },
  6250. "time": "2025-07-25T09:04:22+00:00"
  6251. },
  6252. {
  6253. "name": "mck89/peast",
  6254. "version": "v1.17.5",
  6255. "source": {
  6256. "type": "git",
  6257. "url": "https://github.com/mck89/peast.git",
  6258. "reference": "e19a8bd896b7f04941a38fd38a140c9a6531c84f"
  6259. },
  6260. "dist": {
  6261. "type": "zip",
  6262. "url": "https://api.github.com/repos/mck89/peast/zipball/e19a8bd896b7f04941a38fd38a140c9a6531c84f",
  6263. "reference": "e19a8bd896b7f04941a38fd38a140c9a6531c84f",
  6264. "shasum": ""
  6265. },
  6266. "require": {
  6267. "ext-mbstring": "*",
  6268. "php": ">=5.4.0"
  6269. },
  6270. "require-dev": {
  6271. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  6272. },
  6273. "type": "library",
  6274. "extra": {
  6275. "branch-alias": {
  6276. "dev-master": "1.17.5-dev"
  6277. }
  6278. },
  6279. "autoload": {
  6280. "psr-4": {
  6281. "Peast\\": "lib/Peast/"
  6282. }
  6283. },
  6284. "notification-url": "https://packagist.org/downloads/",
  6285. "license": [
  6286. "BSD-3-Clause"
  6287. ],
  6288. "authors": [
  6289. {
  6290. "name": "Marco Marchiò",
  6291. "email": "marco.mm89@gmail.com"
  6292. }
  6293. ],
  6294. "description": "Peast is PHP library that generates AST for JavaScript code",
  6295. "support": {
  6296. "issues": "https://github.com/mck89/peast/issues",
  6297. "source": "https://github.com/mck89/peast/tree/v1.17.5"
  6298. },
  6299. "time": "2026-03-15T10:47:07+00:00"
  6300. },
  6301. {
  6302. "name": "mglaman/phpstan-drupal",
  6303. "version": "2.0.12",
  6304. "source": {
  6305. "type": "git",
  6306. "url": "https://github.com/mglaman/phpstan-drupal.git",
  6307. "reference": "a574f84c681a4559a2d9925263f45da4b1179b35"
  6308. },
  6309. "dist": {
  6310. "type": "zip",
  6311. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/a574f84c681a4559a2d9925263f45da4b1179b35",
  6312. "reference": "a574f84c681a4559a2d9925263f45da4b1179b35",
  6313. "shasum": ""
  6314. },
  6315. "require": {
  6316. "php": "^8.1",
  6317. "phpstan/phpstan": "^2.1",
  6318. "phpstan/phpstan-deprecation-rules": "^2.0",
  6319. "symfony/finder": "^6.2 || ^7.0 || ^8.0",
  6320. "symfony/yaml": "^6.2 || ^7.0 || ^8.0",
  6321. "webflo/drupal-finder": "^1.3.1"
  6322. },
  6323. "require-dev": {
  6324. "behat/mink": "^1.10",
  6325. "composer/installers": "^1.9 || ^2",
  6326. "drupal/core-recommended": "^11",
  6327. "drush/drush": "^11 || ^12 || ^13",
  6328. "phpstan/extension-installer": "^1.4.3",
  6329. "phpstan/phpstan-strict-rules": "^2.0",
  6330. "phpunit/phpunit": "^9 || ^10 || ^11",
  6331. "slevomat/coding-standard": "^8.6",
  6332. "squizlabs/php_codesniffer": "^3.7",
  6333. "symfony/phpunit-bridge": "^6.2 || ^7.0 || ^8.0"
  6334. },
  6335. "suggest": {
  6336. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  6337. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  6338. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  6339. },
  6340. "type": "phpstan-extension",
  6341. "extra": {
  6342. "phpstan": {
  6343. "includes": [
  6344. "extension.neon",
  6345. "rules.neon"
  6346. ]
  6347. },
  6348. "installer-paths": {
  6349. "tests/fixtures/drupal/core": [
  6350. "type:drupal-core"
  6351. ],
  6352. "tests/fixtures/drupal/libraries/{$name}": [
  6353. "type:drupal-library"
  6354. ],
  6355. "tests/fixtures/drupal/themes/contrib/{$name}": [
  6356. "type:drupal-theme"
  6357. ],
  6358. "tests/fixtures/drupal/modules/contrib/{$name}": [
  6359. "type:drupal-module"
  6360. ],
  6361. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  6362. "type:drupal-profile"
  6363. ]
  6364. }
  6365. },
  6366. "autoload": {
  6367. "psr-4": {
  6368. "mglaman\\PHPStanDrupal\\": "src/"
  6369. }
  6370. },
  6371. "notification-url": "https://packagist.org/downloads/",
  6372. "license": [
  6373. "MIT"
  6374. ],
  6375. "authors": [
  6376. {
  6377. "name": "Matt Glaman",
  6378. "email": "nmd.matt@gmail.com"
  6379. }
  6380. ],
  6381. "description": "Drupal extension and rules for PHPStan",
  6382. "support": {
  6383. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  6384. "source": "https://github.com/mglaman/phpstan-drupal/tree/2.0.12"
  6385. },
  6386. "funding": [
  6387. {
  6388. "url": "https://github.com/mglaman",
  6389. "type": "github"
  6390. },
  6391. {
  6392. "url": "https://opencollective.com/phpstan-drupal",
  6393. "type": "open_collective"
  6394. },
  6395. {
  6396. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  6397. "type": "tidelift"
  6398. }
  6399. ],
  6400. "time": "2026-03-20T20:09:59+00:00"
  6401. },
  6402. {
  6403. "name": "nikic/php-parser",
  6404. "version": "v5.7.0",
  6405. "source": {
  6406. "type": "git",
  6407. "url": "https://github.com/nikic/PHP-Parser.git",
  6408. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
  6409. },
  6410. "dist": {
  6411. "type": "zip",
  6412. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  6413. "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
  6414. "shasum": ""
  6415. },
  6416. "require": {
  6417. "ext-ctype": "*",
  6418. "ext-json": "*",
  6419. "ext-tokenizer": "*",
  6420. "php": ">=7.4"
  6421. },
  6422. "require-dev": {
  6423. "ircmaxell/php-yacc": "^0.0.7",
  6424. "phpunit/phpunit": "^9.0"
  6425. },
  6426. "bin": [
  6427. "bin/php-parse"
  6428. ],
  6429. "type": "library",
  6430. "extra": {
  6431. "branch-alias": {
  6432. "dev-master": "5.x-dev"
  6433. }
  6434. },
  6435. "autoload": {
  6436. "psr-4": {
  6437. "PhpParser\\": "lib/PhpParser"
  6438. }
  6439. },
  6440. "notification-url": "https://packagist.org/downloads/",
  6441. "license": [
  6442. "BSD-3-Clause"
  6443. ],
  6444. "authors": [
  6445. {
  6446. "name": "Nikita Popov"
  6447. }
  6448. ],
  6449. "description": "A PHP parser written in PHP",
  6450. "keywords": [
  6451. "parser",
  6452. "php"
  6453. ],
  6454. "support": {
  6455. "issues": "https://github.com/nikic/PHP-Parser/issues",
  6456. "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
  6457. },
  6458. "time": "2025-12-06T11:56:16+00:00"
  6459. },
  6460. {
  6461. "name": "pear/archive_tar",
  6462. "version": "1.6.0",
  6463. "source": {
  6464. "type": "git",
  6465. "url": "https://github.com/pear/Archive_Tar.git",
  6466. "reference": "dc3285537f1832da8ddbbe45f5a007248b6cc00e"
  6467. },
  6468. "dist": {
  6469. "type": "zip",
  6470. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/dc3285537f1832da8ddbbe45f5a007248b6cc00e",
  6471. "reference": "dc3285537f1832da8ddbbe45f5a007248b6cc00e",
  6472. "shasum": ""
  6473. },
  6474. "require": {
  6475. "pear/pear-core-minimal": "^1.10.0alpha2",
  6476. "php": ">=5.4.0"
  6477. },
  6478. "require-dev": {
  6479. "phpunit/phpunit": "*"
  6480. },
  6481. "suggest": {
  6482. "ext-bz2": "Bz2 compression support.",
  6483. "ext-xz": "Lzma2 compression support.",
  6484. "ext-zlib": "Gzip compression support."
  6485. },
  6486. "type": "library",
  6487. "extra": {
  6488. "branch-alias": {
  6489. "dev-master": "1.4.x-dev"
  6490. }
  6491. },
  6492. "autoload": {
  6493. "psr-0": {
  6494. "Archive_Tar": ""
  6495. }
  6496. },
  6497. "notification-url": "https://packagist.org/downloads/",
  6498. "include-path": [
  6499. "./"
  6500. ],
  6501. "license": [
  6502. "BSD-2-Clause"
  6503. ],
  6504. "authors": [
  6505. {
  6506. "name": "Vincent Blavet",
  6507. "email": "vincent@phpconcept.net"
  6508. },
  6509. {
  6510. "name": "Greg Beaver",
  6511. "email": "greg@chiaraquartet.net"
  6512. },
  6513. {
  6514. "name": "Michiel Rook",
  6515. "email": "mrook@php.net"
  6516. }
  6517. ],
  6518. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  6519. "homepage": "https://github.com/pear/Archive_Tar",
  6520. "keywords": [
  6521. "archive",
  6522. "tar"
  6523. ],
  6524. "support": {
  6525. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  6526. "source": "https://github.com/pear/Archive_Tar"
  6527. },
  6528. "time": "2025-07-19T14:49:16+00:00"
  6529. },
  6530. {
  6531. "name": "pear/console_getopt",
  6532. "version": "v1.4.3",
  6533. "source": {
  6534. "type": "git",
  6535. "url": "https://github.com/pear/Console_Getopt.git",
  6536. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  6537. },
  6538. "dist": {
  6539. "type": "zip",
  6540. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6541. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  6542. "shasum": ""
  6543. },
  6544. "type": "library",
  6545. "autoload": {
  6546. "psr-0": {
  6547. "Console": "./"
  6548. }
  6549. },
  6550. "notification-url": "https://packagist.org/downloads/",
  6551. "include-path": [
  6552. "./"
  6553. ],
  6554. "license": [
  6555. "BSD-2-Clause"
  6556. ],
  6557. "authors": [
  6558. {
  6559. "name": "Andrei Zmievski",
  6560. "email": "andrei@php.net",
  6561. "role": "Lead"
  6562. },
  6563. {
  6564. "name": "Stig Bakken",
  6565. "email": "stig@php.net",
  6566. "role": "Developer"
  6567. },
  6568. {
  6569. "name": "Greg Beaver",
  6570. "email": "cellog@php.net",
  6571. "role": "Helper"
  6572. }
  6573. ],
  6574. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  6575. "support": {
  6576. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  6577. "source": "https://github.com/pear/Console_Getopt"
  6578. },
  6579. "time": "2019-11-20T18:27:48+00:00"
  6580. },
  6581. {
  6582. "name": "pear/pear-core-minimal",
  6583. "version": "v1.10.18",
  6584. "source": {
  6585. "type": "git",
  6586. "url": "https://github.com/pear/pear-core-minimal.git",
  6587. "reference": "c7b55789d01de0ce090d289b73f1bbd6a2f113b1"
  6588. },
  6589. "dist": {
  6590. "type": "zip",
  6591. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c7b55789d01de0ce090d289b73f1bbd6a2f113b1",
  6592. "reference": "c7b55789d01de0ce090d289b73f1bbd6a2f113b1",
  6593. "shasum": ""
  6594. },
  6595. "require": {
  6596. "pear/console_getopt": "~1.4",
  6597. "pear/pear_exception": "~1.0",
  6598. "php": ">=5.4"
  6599. },
  6600. "replace": {
  6601. "rsky/pear-core-min": "self.version"
  6602. },
  6603. "type": "library",
  6604. "autoload": {
  6605. "classmap": [
  6606. "src/"
  6607. ]
  6608. },
  6609. "notification-url": "https://packagist.org/downloads/",
  6610. "include-path": [
  6611. "src/"
  6612. ],
  6613. "license": [
  6614. "BSD-3-Clause"
  6615. ],
  6616. "authors": [
  6617. {
  6618. "name": "Christian Weiske",
  6619. "email": "cweiske@php.net",
  6620. "role": "Lead"
  6621. }
  6622. ],
  6623. "description": "Minimal set of PEAR core files to be used as composer dependency",
  6624. "support": {
  6625. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  6626. "source": "https://github.com/pear/pear-core-minimal"
  6627. },
  6628. "time": "2025-12-14T20:37:07+00:00"
  6629. },
  6630. {
  6631. "name": "pear/pear_exception",
  6632. "version": "v1.0.2",
  6633. "source": {
  6634. "type": "git",
  6635. "url": "https://github.com/pear/PEAR_Exception.git",
  6636. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  6637. },
  6638. "dist": {
  6639. "type": "zip",
  6640. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  6641. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  6642. "shasum": ""
  6643. },
  6644. "require": {
  6645. "php": ">=5.2.0"
  6646. },
  6647. "require-dev": {
  6648. "phpunit/phpunit": "<9"
  6649. },
  6650. "type": "class",
  6651. "extra": {
  6652. "branch-alias": {
  6653. "dev-master": "1.0.x-dev"
  6654. }
  6655. },
  6656. "autoload": {
  6657. "classmap": [
  6658. "PEAR/"
  6659. ]
  6660. },
  6661. "notification-url": "https://packagist.org/downloads/",
  6662. "include-path": [
  6663. "."
  6664. ],
  6665. "license": [
  6666. "BSD-2-Clause"
  6667. ],
  6668. "authors": [
  6669. {
  6670. "name": "Helgi Thormar",
  6671. "email": "dufuz@php.net"
  6672. },
  6673. {
  6674. "name": "Greg Beaver",
  6675. "email": "cellog@php.net"
  6676. }
  6677. ],
  6678. "description": "The PEAR Exception base class.",
  6679. "homepage": "https://github.com/pear/PEAR_Exception",
  6680. "keywords": [
  6681. "exception"
  6682. ],
  6683. "support": {
  6684. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  6685. "source": "https://github.com/pear/PEAR_Exception"
  6686. },
  6687. "time": "2021-03-21T15:43:46+00:00"
  6688. },
  6689. {
  6690. "name": "phootwork/collection",
  6691. "version": "v3.2.3",
  6692. "source": {
  6693. "type": "git",
  6694. "url": "https://github.com/phootwork/collection.git",
  6695. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  6696. },
  6697. "dist": {
  6698. "type": "zip",
  6699. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  6700. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  6701. "shasum": ""
  6702. },
  6703. "require": {
  6704. "phootwork/lang": "^3.0",
  6705. "php": ">=8.0"
  6706. },
  6707. "type": "library",
  6708. "autoload": {
  6709. "psr-4": {
  6710. "phootwork\\collection\\": ""
  6711. }
  6712. },
  6713. "notification-url": "https://packagist.org/downloads/",
  6714. "license": [
  6715. "MIT"
  6716. ],
  6717. "authors": [
  6718. {
  6719. "name": "Thomas Gossmann",
  6720. "homepage": "http://gos.si"
  6721. }
  6722. ],
  6723. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  6724. "homepage": "https://phootwork.github.io/collection/",
  6725. "keywords": [
  6726. "Array object",
  6727. "Text object",
  6728. "collection",
  6729. "collections",
  6730. "json",
  6731. "list",
  6732. "map",
  6733. "queue",
  6734. "set",
  6735. "stack",
  6736. "xml"
  6737. ],
  6738. "support": {
  6739. "issues": "https://github.com/phootwork/phootwork/issues",
  6740. "source": "https://github.com/phootwork/collection/tree/v3.2.3"
  6741. },
  6742. "time": "2022-08-27T12:51:24+00:00"
  6743. },
  6744. {
  6745. "name": "phootwork/lang",
  6746. "version": "v3.2.3",
  6747. "source": {
  6748. "type": "git",
  6749. "url": "https://github.com/phootwork/lang.git",
  6750. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e"
  6751. },
  6752. "dist": {
  6753. "type": "zip",
  6754. "url": "https://api.github.com/repos/phootwork/lang/zipball/52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  6755. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  6756. "shasum": ""
  6757. },
  6758. "require": {
  6759. "php": ">=8.0",
  6760. "symfony/polyfill-mbstring": "^1.12",
  6761. "symfony/polyfill-php81": "^1.22"
  6762. },
  6763. "type": "library",
  6764. "autoload": {
  6765. "psr-4": {
  6766. "phootwork\\lang\\": ""
  6767. }
  6768. },
  6769. "notification-url": "https://packagist.org/downloads/",
  6770. "license": [
  6771. "MIT"
  6772. ],
  6773. "authors": [
  6774. {
  6775. "name": "Thomas Gossmann",
  6776. "homepage": "http://gos.si"
  6777. }
  6778. ],
  6779. "description": "Missing PHP language constructs",
  6780. "homepage": "https://phootwork.github.io/lang/",
  6781. "keywords": [
  6782. "array",
  6783. "comparator",
  6784. "comparison",
  6785. "string"
  6786. ],
  6787. "support": {
  6788. "issues": "https://github.com/phootwork/phootwork/issues",
  6789. "source": "https://github.com/phootwork/lang/tree/v3.2.3"
  6790. },
  6791. "time": "2024-10-03T13:43:19+00:00"
  6792. },
  6793. {
  6794. "name": "phpowermove/docblock",
  6795. "version": "v4.0",
  6796. "source": {
  6797. "type": "git",
  6798. "url": "https://github.com/phpowermove/docblock.git",
  6799. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  6800. },
  6801. "dist": {
  6802. "type": "zip",
  6803. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  6804. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  6805. "shasum": ""
  6806. },
  6807. "require": {
  6808. "phootwork/collection": "^3.0",
  6809. "phootwork/lang": "^3.0",
  6810. "php": ">=8.0"
  6811. },
  6812. "require-dev": {
  6813. "phootwork/php-cs-fixer-config": "^0.4",
  6814. "phpunit/phpunit": "^9.0",
  6815. "psalm/phar": "^4.3"
  6816. },
  6817. "type": "library",
  6818. "autoload": {
  6819. "psr-4": {
  6820. "phpowermove\\docblock\\": "src/"
  6821. }
  6822. },
  6823. "notification-url": "https://packagist.org/downloads/",
  6824. "license": [
  6825. "MIT"
  6826. ],
  6827. "authors": [
  6828. {
  6829. "name": "Thomas Gossmann",
  6830. "homepage": "http://gos.si"
  6831. }
  6832. ],
  6833. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  6834. "keywords": [
  6835. "docblock",
  6836. "generator",
  6837. "parser"
  6838. ],
  6839. "support": {
  6840. "issues": "https://github.com/phpowermove/docblock/issues",
  6841. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  6842. },
  6843. "time": "2021-09-22T16:57:06+00:00"
  6844. },
  6845. {
  6846. "name": "phpstan/phpstan",
  6847. "version": "2.1.44",
  6848. "dist": {
  6849. "type": "zip",
  6850. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/4a88c083c668b2c364a425c9b3171b2d9ea5d218",
  6851. "reference": "4a88c083c668b2c364a425c9b3171b2d9ea5d218",
  6852. "shasum": ""
  6853. },
  6854. "require": {
  6855. "php": "^7.4|^8.0"
  6856. },
  6857. "conflict": {
  6858. "phpstan/phpstan-shim": "*"
  6859. },
  6860. "bin": [
  6861. "phpstan",
  6862. "phpstan.phar"
  6863. ],
  6864. "type": "library",
  6865. "autoload": {
  6866. "files": [
  6867. "bootstrap.php"
  6868. ]
  6869. },
  6870. "notification-url": "https://packagist.org/downloads/",
  6871. "license": [
  6872. "MIT"
  6873. ],
  6874. "description": "PHPStan - PHP Static Analysis Tool",
  6875. "keywords": [
  6876. "dev",
  6877. "static analysis"
  6878. ],
  6879. "support": {
  6880. "docs": "https://phpstan.org/user-guide/getting-started",
  6881. "forum": "https://github.com/phpstan/phpstan/discussions",
  6882. "issues": "https://github.com/phpstan/phpstan/issues",
  6883. "security": "https://github.com/phpstan/phpstan/security/policy",
  6884. "source": "https://github.com/phpstan/phpstan-src"
  6885. },
  6886. "funding": [
  6887. {
  6888. "url": "https://github.com/ondrejmirtes",
  6889. "type": "github"
  6890. },
  6891. {
  6892. "url": "https://github.com/phpstan",
  6893. "type": "github"
  6894. }
  6895. ],
  6896. "time": "2026-03-25T17:34:21+00:00"
  6897. },
  6898. {
  6899. "name": "phpstan/phpstan-deprecation-rules",
  6900. "version": "2.0.4",
  6901. "source": {
  6902. "type": "git",
  6903. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  6904. "reference": "6b5571001a7f04fa0422254c30a0017ec2f2cacc"
  6905. },
  6906. "dist": {
  6907. "type": "zip",
  6908. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/6b5571001a7f04fa0422254c30a0017ec2f2cacc",
  6909. "reference": "6b5571001a7f04fa0422254c30a0017ec2f2cacc",
  6910. "shasum": ""
  6911. },
  6912. "require": {
  6913. "php": "^7.4 || ^8.0",
  6914. "phpstan/phpstan": "^2.1.39"
  6915. },
  6916. "require-dev": {
  6917. "php-parallel-lint/php-parallel-lint": "^1.2",
  6918. "phpstan/phpstan-phpunit": "^2.0",
  6919. "phpunit/phpunit": "^9.6"
  6920. },
  6921. "type": "phpstan-extension",
  6922. "extra": {
  6923. "phpstan": {
  6924. "includes": [
  6925. "rules.neon"
  6926. ]
  6927. }
  6928. },
  6929. "autoload": {
  6930. "psr-4": {
  6931. "PHPStan\\": "src/"
  6932. }
  6933. },
  6934. "notification-url": "https://packagist.org/downloads/",
  6935. "license": [
  6936. "MIT"
  6937. ],
  6938. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  6939. "keywords": [
  6940. "static analysis"
  6941. ],
  6942. "support": {
  6943. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  6944. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/2.0.4"
  6945. },
  6946. "time": "2026-02-09T13:21:14+00:00"
  6947. },
  6948. {
  6949. "name": "psr/cache",
  6950. "version": "3.0.0",
  6951. "source": {
  6952. "type": "git",
  6953. "url": "https://github.com/php-fig/cache.git",
  6954. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6955. },
  6956. "dist": {
  6957. "type": "zip",
  6958. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6959. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6960. "shasum": ""
  6961. },
  6962. "require": {
  6963. "php": ">=8.0.0"
  6964. },
  6965. "type": "library",
  6966. "extra": {
  6967. "branch-alias": {
  6968. "dev-master": "1.0.x-dev"
  6969. }
  6970. },
  6971. "autoload": {
  6972. "psr-4": {
  6973. "Psr\\Cache\\": "src/"
  6974. }
  6975. },
  6976. "notification-url": "https://packagist.org/downloads/",
  6977. "license": [
  6978. "MIT"
  6979. ],
  6980. "authors": [
  6981. {
  6982. "name": "PHP-FIG",
  6983. "homepage": "https://www.php-fig.org/"
  6984. }
  6985. ],
  6986. "description": "Common interface for caching libraries",
  6987. "keywords": [
  6988. "cache",
  6989. "psr",
  6990. "psr-6"
  6991. ],
  6992. "support": {
  6993. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6994. },
  6995. "time": "2021-02-03T23:26:27+00:00"
  6996. },
  6997. {
  6998. "name": "psr/container",
  6999. "version": "2.0.2",
  7000. "source": {
  7001. "type": "git",
  7002. "url": "https://github.com/php-fig/container.git",
  7003. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  7004. },
  7005. "dist": {
  7006. "type": "zip",
  7007. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  7008. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  7009. "shasum": ""
  7010. },
  7011. "require": {
  7012. "php": ">=7.4.0"
  7013. },
  7014. "type": "library",
  7015. "extra": {
  7016. "branch-alias": {
  7017. "dev-master": "2.0.x-dev"
  7018. }
  7019. },
  7020. "autoload": {
  7021. "psr-4": {
  7022. "Psr\\Container\\": "src/"
  7023. }
  7024. },
  7025. "notification-url": "https://packagist.org/downloads/",
  7026. "license": [
  7027. "MIT"
  7028. ],
  7029. "authors": [
  7030. {
  7031. "name": "PHP-FIG",
  7032. "homepage": "https://www.php-fig.org/"
  7033. }
  7034. ],
  7035. "description": "Common Container Interface (PHP FIG PSR-11)",
  7036. "homepage": "https://github.com/php-fig/container",
  7037. "keywords": [
  7038. "PSR-11",
  7039. "container",
  7040. "container-interface",
  7041. "container-interop",
  7042. "psr"
  7043. ],
  7044. "support": {
  7045. "issues": "https://github.com/php-fig/container/issues",
  7046. "source": "https://github.com/php-fig/container/tree/2.0.2"
  7047. },
  7048. "time": "2021-11-05T16:47:00+00:00"
  7049. },
  7050. {
  7051. "name": "psr/event-dispatcher",
  7052. "version": "1.0.0",
  7053. "source": {
  7054. "type": "git",
  7055. "url": "https://github.com/php-fig/event-dispatcher.git",
  7056. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  7057. },
  7058. "dist": {
  7059. "type": "zip",
  7060. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  7061. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  7062. "shasum": ""
  7063. },
  7064. "require": {
  7065. "php": ">=7.2.0"
  7066. },
  7067. "type": "library",
  7068. "extra": {
  7069. "branch-alias": {
  7070. "dev-master": "1.0.x-dev"
  7071. }
  7072. },
  7073. "autoload": {
  7074. "psr-4": {
  7075. "Psr\\EventDispatcher\\": "src/"
  7076. }
  7077. },
  7078. "notification-url": "https://packagist.org/downloads/",
  7079. "license": [
  7080. "MIT"
  7081. ],
  7082. "authors": [
  7083. {
  7084. "name": "PHP-FIG",
  7085. "homepage": "http://www.php-fig.org/"
  7086. }
  7087. ],
  7088. "description": "Standard interfaces for event handling.",
  7089. "keywords": [
  7090. "events",
  7091. "psr",
  7092. "psr-14"
  7093. ],
  7094. "support": {
  7095. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  7096. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  7097. },
  7098. "time": "2019-01-08T18:20:26+00:00"
  7099. },
  7100. {
  7101. "name": "psr/http-client",
  7102. "version": "1.0.3",
  7103. "source": {
  7104. "type": "git",
  7105. "url": "https://github.com/php-fig/http-client.git",
  7106. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  7107. },
  7108. "dist": {
  7109. "type": "zip",
  7110. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7111. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  7112. "shasum": ""
  7113. },
  7114. "require": {
  7115. "php": "^7.0 || ^8.0",
  7116. "psr/http-message": "^1.0 || ^2.0"
  7117. },
  7118. "type": "library",
  7119. "extra": {
  7120. "branch-alias": {
  7121. "dev-master": "1.0.x-dev"
  7122. }
  7123. },
  7124. "autoload": {
  7125. "psr-4": {
  7126. "Psr\\Http\\Client\\": "src/"
  7127. }
  7128. },
  7129. "notification-url": "https://packagist.org/downloads/",
  7130. "license": [
  7131. "MIT"
  7132. ],
  7133. "authors": [
  7134. {
  7135. "name": "PHP-FIG",
  7136. "homepage": "https://www.php-fig.org/"
  7137. }
  7138. ],
  7139. "description": "Common interface for HTTP clients",
  7140. "homepage": "https://github.com/php-fig/http-client",
  7141. "keywords": [
  7142. "http",
  7143. "http-client",
  7144. "psr",
  7145. "psr-18"
  7146. ],
  7147. "support": {
  7148. "source": "https://github.com/php-fig/http-client"
  7149. },
  7150. "time": "2023-09-23T14:17:50+00:00"
  7151. },
  7152. {
  7153. "name": "psr/http-factory",
  7154. "version": "1.1.0",
  7155. "source": {
  7156. "type": "git",
  7157. "url": "https://github.com/php-fig/http-factory.git",
  7158. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  7159. },
  7160. "dist": {
  7161. "type": "zip",
  7162. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  7163. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  7164. "shasum": ""
  7165. },
  7166. "require": {
  7167. "php": ">=7.1",
  7168. "psr/http-message": "^1.0 || ^2.0"
  7169. },
  7170. "type": "library",
  7171. "extra": {
  7172. "branch-alias": {
  7173. "dev-master": "1.0.x-dev"
  7174. }
  7175. },
  7176. "autoload": {
  7177. "psr-4": {
  7178. "Psr\\Http\\Message\\": "src/"
  7179. }
  7180. },
  7181. "notification-url": "https://packagist.org/downloads/",
  7182. "license": [
  7183. "MIT"
  7184. ],
  7185. "authors": [
  7186. {
  7187. "name": "PHP-FIG",
  7188. "homepage": "https://www.php-fig.org/"
  7189. }
  7190. ],
  7191. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  7192. "keywords": [
  7193. "factory",
  7194. "http",
  7195. "message",
  7196. "psr",
  7197. "psr-17",
  7198. "psr-7",
  7199. "request",
  7200. "response"
  7201. ],
  7202. "support": {
  7203. "source": "https://github.com/php-fig/http-factory"
  7204. },
  7205. "time": "2024-04-15T12:06:14+00:00"
  7206. },
  7207. {
  7208. "name": "psr/http-message",
  7209. "version": "2.0",
  7210. "source": {
  7211. "type": "git",
  7212. "url": "https://github.com/php-fig/http-message.git",
  7213. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  7214. },
  7215. "dist": {
  7216. "type": "zip",
  7217. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7218. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  7219. "shasum": ""
  7220. },
  7221. "require": {
  7222. "php": "^7.2 || ^8.0"
  7223. },
  7224. "type": "library",
  7225. "extra": {
  7226. "branch-alias": {
  7227. "dev-master": "2.0.x-dev"
  7228. }
  7229. },
  7230. "autoload": {
  7231. "psr-4": {
  7232. "Psr\\Http\\Message\\": "src/"
  7233. }
  7234. },
  7235. "notification-url": "https://packagist.org/downloads/",
  7236. "license": [
  7237. "MIT"
  7238. ],
  7239. "authors": [
  7240. {
  7241. "name": "PHP-FIG",
  7242. "homepage": "https://www.php-fig.org/"
  7243. }
  7244. ],
  7245. "description": "Common interface for HTTP messages",
  7246. "homepage": "https://github.com/php-fig/http-message",
  7247. "keywords": [
  7248. "http",
  7249. "http-message",
  7250. "psr",
  7251. "psr-7",
  7252. "request",
  7253. "response"
  7254. ],
  7255. "support": {
  7256. "source": "https://github.com/php-fig/http-message/tree/2.0"
  7257. },
  7258. "time": "2023-04-04T09:54:51+00:00"
  7259. },
  7260. {
  7261. "name": "psr/log",
  7262. "version": "3.0.2",
  7263. "source": {
  7264. "type": "git",
  7265. "url": "https://github.com/php-fig/log.git",
  7266. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  7267. },
  7268. "dist": {
  7269. "type": "zip",
  7270. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  7271. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  7272. "shasum": ""
  7273. },
  7274. "require": {
  7275. "php": ">=8.0.0"
  7276. },
  7277. "type": "library",
  7278. "extra": {
  7279. "branch-alias": {
  7280. "dev-master": "3.x-dev"
  7281. }
  7282. },
  7283. "autoload": {
  7284. "psr-4": {
  7285. "Psr\\Log\\": "src"
  7286. }
  7287. },
  7288. "notification-url": "https://packagist.org/downloads/",
  7289. "license": [
  7290. "MIT"
  7291. ],
  7292. "authors": [
  7293. {
  7294. "name": "PHP-FIG",
  7295. "homepage": "https://www.php-fig.org/"
  7296. }
  7297. ],
  7298. "description": "Common interface for logging libraries",
  7299. "homepage": "https://github.com/php-fig/log",
  7300. "keywords": [
  7301. "log",
  7302. "psr",
  7303. "psr-3"
  7304. ],
  7305. "support": {
  7306. "source": "https://github.com/php-fig/log/tree/3.0.2"
  7307. },
  7308. "time": "2024-09-11T13:17:53+00:00"
  7309. },
  7310. {
  7311. "name": "psy/psysh",
  7312. "version": "v0.12.22",
  7313. "source": {
  7314. "type": "git",
  7315. "url": "https://github.com/bobthecow/psysh.git",
  7316. "reference": "3be75d5b9244936dd4ac62ade2bfb004d13acf0f"
  7317. },
  7318. "dist": {
  7319. "type": "zip",
  7320. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/3be75d5b9244936dd4ac62ade2bfb004d13acf0f",
  7321. "reference": "3be75d5b9244936dd4ac62ade2bfb004d13acf0f",
  7322. "shasum": ""
  7323. },
  7324. "require": {
  7325. "ext-json": "*",
  7326. "ext-tokenizer": "*",
  7327. "nikic/php-parser": "^5.0 || ^4.0",
  7328. "php": "^8.0 || ^7.4",
  7329. "symfony/console": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  7330. "symfony/var-dumper": "^8.0 || ^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  7331. },
  7332. "conflict": {
  7333. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  7334. },
  7335. "require-dev": {
  7336. "bamarni/composer-bin-plugin": "^1.2",
  7337. "composer/class-map-generator": "^1.6"
  7338. },
  7339. "suggest": {
  7340. "composer/class-map-generator": "Improved tab completion performance with better class discovery.",
  7341. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7342. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  7343. },
  7344. "bin": [
  7345. "bin/psysh"
  7346. ],
  7347. "type": "library",
  7348. "extra": {
  7349. "bamarni-bin": {
  7350. "bin-links": false,
  7351. "forward-command": false
  7352. },
  7353. "branch-alias": {
  7354. "dev-main": "0.12.x-dev"
  7355. }
  7356. },
  7357. "autoload": {
  7358. "files": [
  7359. "src/functions.php"
  7360. ],
  7361. "psr-4": {
  7362. "Psy\\": "src/"
  7363. }
  7364. },
  7365. "notification-url": "https://packagist.org/downloads/",
  7366. "license": [
  7367. "MIT"
  7368. ],
  7369. "authors": [
  7370. {
  7371. "name": "Justin Hileman",
  7372. "email": "justin@justinhileman.info"
  7373. }
  7374. ],
  7375. "description": "An interactive shell for modern PHP.",
  7376. "homepage": "https://psysh.org",
  7377. "keywords": [
  7378. "REPL",
  7379. "console",
  7380. "interactive",
  7381. "shell"
  7382. ],
  7383. "support": {
  7384. "issues": "https://github.com/bobthecow/psysh/issues",
  7385. "source": "https://github.com/bobthecow/psysh/tree/v0.12.22"
  7386. },
  7387. "time": "2026-03-22T23:03:24+00:00"
  7388. },
  7389. {
  7390. "name": "ralouphie/getallheaders",
  7391. "version": "3.0.3",
  7392. "source": {
  7393. "type": "git",
  7394. "url": "https://github.com/ralouphie/getallheaders.git",
  7395. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7396. },
  7397. "dist": {
  7398. "type": "zip",
  7399. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7400. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7401. "shasum": ""
  7402. },
  7403. "require": {
  7404. "php": ">=5.6"
  7405. },
  7406. "require-dev": {
  7407. "php-coveralls/php-coveralls": "^2.1",
  7408. "phpunit/phpunit": "^5 || ^6.5"
  7409. },
  7410. "type": "library",
  7411. "autoload": {
  7412. "files": [
  7413. "src/getallheaders.php"
  7414. ]
  7415. },
  7416. "notification-url": "https://packagist.org/downloads/",
  7417. "license": [
  7418. "MIT"
  7419. ],
  7420. "authors": [
  7421. {
  7422. "name": "Ralph Khattar",
  7423. "email": "ralph.khattar@gmail.com"
  7424. }
  7425. ],
  7426. "description": "A polyfill for getallheaders.",
  7427. "support": {
  7428. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7429. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7430. },
  7431. "time": "2019-03-08T08:55:37+00:00"
  7432. },
  7433. {
  7434. "name": "sebastian/diff",
  7435. "version": "4.0.6",
  7436. "source": {
  7437. "type": "git",
  7438. "url": "https://github.com/sebastianbergmann/diff.git",
  7439. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  7440. },
  7441. "dist": {
  7442. "type": "zip",
  7443. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  7444. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  7445. "shasum": ""
  7446. },
  7447. "require": {
  7448. "php": ">=7.3"
  7449. },
  7450. "require-dev": {
  7451. "phpunit/phpunit": "^9.3",
  7452. "symfony/process": "^4.2 || ^5"
  7453. },
  7454. "type": "library",
  7455. "extra": {
  7456. "branch-alias": {
  7457. "dev-master": "4.0-dev"
  7458. }
  7459. },
  7460. "autoload": {
  7461. "classmap": [
  7462. "src/"
  7463. ]
  7464. },
  7465. "notification-url": "https://packagist.org/downloads/",
  7466. "license": [
  7467. "BSD-3-Clause"
  7468. ],
  7469. "authors": [
  7470. {
  7471. "name": "Sebastian Bergmann",
  7472. "email": "sebastian@phpunit.de"
  7473. },
  7474. {
  7475. "name": "Kore Nordmann",
  7476. "email": "mail@kore-nordmann.de"
  7477. }
  7478. ],
  7479. "description": "Diff implementation",
  7480. "homepage": "https://github.com/sebastianbergmann/diff",
  7481. "keywords": [
  7482. "diff",
  7483. "udiff",
  7484. "unidiff",
  7485. "unified diff"
  7486. ],
  7487. "support": {
  7488. "issues": "https://github.com/sebastianbergmann/diff/issues",
  7489. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  7490. },
  7491. "funding": [
  7492. {
  7493. "url": "https://github.com/sebastianbergmann",
  7494. "type": "github"
  7495. }
  7496. ],
  7497. "time": "2024-03-02T06:30:58+00:00"
  7498. },
  7499. {
  7500. "name": "symfony/console",
  7501. "version": "v6.4.35",
  7502. "source": {
  7503. "type": "git",
  7504. "url": "https://github.com/symfony/console.git",
  7505. "reference": "49257c96304c508223815ee965c251e7c79e614e"
  7506. },
  7507. "dist": {
  7508. "type": "zip",
  7509. "url": "https://api.github.com/repos/symfony/console/zipball/49257c96304c508223815ee965c251e7c79e614e",
  7510. "reference": "49257c96304c508223815ee965c251e7c79e614e",
  7511. "shasum": ""
  7512. },
  7513. "require": {
  7514. "php": ">=8.1",
  7515. "symfony/deprecation-contracts": "^2.5|^3",
  7516. "symfony/polyfill-mbstring": "~1.0",
  7517. "symfony/service-contracts": "^2.5|^3",
  7518. "symfony/string": "^5.4|^6.0|^7.0"
  7519. },
  7520. "conflict": {
  7521. "symfony/dependency-injection": "<5.4",
  7522. "symfony/dotenv": "<5.4",
  7523. "symfony/event-dispatcher": "<5.4",
  7524. "symfony/lock": "<5.4",
  7525. "symfony/process": "<5.4"
  7526. },
  7527. "provide": {
  7528. "psr/log-implementation": "1.0|2.0|3.0"
  7529. },
  7530. "require-dev": {
  7531. "psr/log": "^1|^2|^3",
  7532. "symfony/config": "^5.4|^6.0|^7.0",
  7533. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7534. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  7535. "symfony/http-foundation": "^6.4|^7.0",
  7536. "symfony/http-kernel": "^6.4|^7.0",
  7537. "symfony/lock": "^5.4|^6.0|^7.0",
  7538. "symfony/messenger": "^5.4|^6.0|^7.0",
  7539. "symfony/process": "^5.4|^6.0|^7.0",
  7540. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  7541. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7542. },
  7543. "type": "library",
  7544. "autoload": {
  7545. "psr-4": {
  7546. "Symfony\\Component\\Console\\": ""
  7547. },
  7548. "exclude-from-classmap": [
  7549. "/Tests/"
  7550. ]
  7551. },
  7552. "notification-url": "https://packagist.org/downloads/",
  7553. "license": [
  7554. "MIT"
  7555. ],
  7556. "authors": [
  7557. {
  7558. "name": "Fabien Potencier",
  7559. "email": "fabien@symfony.com"
  7560. },
  7561. {
  7562. "name": "Symfony Community",
  7563. "homepage": "https://symfony.com/contributors"
  7564. }
  7565. ],
  7566. "description": "Eases the creation of beautiful and testable command line interfaces",
  7567. "homepage": "https://symfony.com",
  7568. "keywords": [
  7569. "cli",
  7570. "command-line",
  7571. "console",
  7572. "terminal"
  7573. ],
  7574. "support": {
  7575. "source": "https://github.com/symfony/console/tree/v6.4.35"
  7576. },
  7577. "funding": [
  7578. {
  7579. "url": "https://symfony.com/sponsor",
  7580. "type": "custom"
  7581. },
  7582. {
  7583. "url": "https://github.com/fabpot",
  7584. "type": "github"
  7585. },
  7586. {
  7587. "url": "https://github.com/nicolas-grekas",
  7588. "type": "github"
  7589. },
  7590. {
  7591. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7592. "type": "tidelift"
  7593. }
  7594. ],
  7595. "time": "2026-03-06T13:31:08+00:00"
  7596. },
  7597. {
  7598. "name": "symfony/dependency-injection",
  7599. "version": "v6.4.35",
  7600. "source": {
  7601. "type": "git",
  7602. "url": "https://github.com/symfony/dependency-injection.git",
  7603. "reference": "d95712d0e9446b9f244b64811ffb6af7b7434213"
  7604. },
  7605. "dist": {
  7606. "type": "zip",
  7607. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d95712d0e9446b9f244b64811ffb6af7b7434213",
  7608. "reference": "d95712d0e9446b9f244b64811ffb6af7b7434213",
  7609. "shasum": ""
  7610. },
  7611. "require": {
  7612. "php": ">=8.1",
  7613. "psr/container": "^1.1|^2.0",
  7614. "symfony/deprecation-contracts": "^2.5|^3",
  7615. "symfony/service-contracts": "^2.5|^3.0",
  7616. "symfony/var-exporter": "^6.4.20|^7.2.5"
  7617. },
  7618. "conflict": {
  7619. "ext-psr": "<1.1|>=2",
  7620. "symfony/config": "<6.1",
  7621. "symfony/finder": "<5.4",
  7622. "symfony/proxy-manager-bridge": "<6.3",
  7623. "symfony/yaml": "<5.4"
  7624. },
  7625. "provide": {
  7626. "psr/container-implementation": "1.1|2.0",
  7627. "symfony/service-implementation": "1.1|2.0|3.0"
  7628. },
  7629. "require-dev": {
  7630. "symfony/config": "^6.1|^7.0",
  7631. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7632. "symfony/yaml": "^5.4|^6.0|^7.0"
  7633. },
  7634. "type": "library",
  7635. "autoload": {
  7636. "psr-4": {
  7637. "Symfony\\Component\\DependencyInjection\\": ""
  7638. },
  7639. "exclude-from-classmap": [
  7640. "/Tests/"
  7641. ]
  7642. },
  7643. "notification-url": "https://packagist.org/downloads/",
  7644. "license": [
  7645. "MIT"
  7646. ],
  7647. "authors": [
  7648. {
  7649. "name": "Fabien Potencier",
  7650. "email": "fabien@symfony.com"
  7651. },
  7652. {
  7653. "name": "Symfony Community",
  7654. "homepage": "https://symfony.com/contributors"
  7655. }
  7656. ],
  7657. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  7658. "homepage": "https://symfony.com",
  7659. "support": {
  7660. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.35"
  7661. },
  7662. "funding": [
  7663. {
  7664. "url": "https://symfony.com/sponsor",
  7665. "type": "custom"
  7666. },
  7667. {
  7668. "url": "https://github.com/fabpot",
  7669. "type": "github"
  7670. },
  7671. {
  7672. "url": "https://github.com/nicolas-grekas",
  7673. "type": "github"
  7674. },
  7675. {
  7676. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7677. "type": "tidelift"
  7678. }
  7679. ],
  7680. "time": "2026-02-26T12:16:01+00:00"
  7681. },
  7682. {
  7683. "name": "symfony/deprecation-contracts",
  7684. "version": "v3.6.0",
  7685. "source": {
  7686. "type": "git",
  7687. "url": "https://github.com/symfony/deprecation-contracts.git",
  7688. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  7689. },
  7690. "dist": {
  7691. "type": "zip",
  7692. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  7693. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  7694. "shasum": ""
  7695. },
  7696. "require": {
  7697. "php": ">=8.1"
  7698. },
  7699. "type": "library",
  7700. "extra": {
  7701. "thanks": {
  7702. "url": "https://github.com/symfony/contracts",
  7703. "name": "symfony/contracts"
  7704. },
  7705. "branch-alias": {
  7706. "dev-main": "3.6-dev"
  7707. }
  7708. },
  7709. "autoload": {
  7710. "files": [
  7711. "function.php"
  7712. ]
  7713. },
  7714. "notification-url": "https://packagist.org/downloads/",
  7715. "license": [
  7716. "MIT"
  7717. ],
  7718. "authors": [
  7719. {
  7720. "name": "Nicolas Grekas",
  7721. "email": "p@tchwork.com"
  7722. },
  7723. {
  7724. "name": "Symfony Community",
  7725. "homepage": "https://symfony.com/contributors"
  7726. }
  7727. ],
  7728. "description": "A generic function and convention to trigger deprecation notices",
  7729. "homepage": "https://symfony.com",
  7730. "support": {
  7731. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  7732. },
  7733. "funding": [
  7734. {
  7735. "url": "https://symfony.com/sponsor",
  7736. "type": "custom"
  7737. },
  7738. {
  7739. "url": "https://github.com/fabpot",
  7740. "type": "github"
  7741. },
  7742. {
  7743. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7744. "type": "tidelift"
  7745. }
  7746. ],
  7747. "time": "2024-09-25T14:21:43+00:00"
  7748. },
  7749. {
  7750. "name": "symfony/error-handler",
  7751. "version": "v6.4.32",
  7752. "source": {
  7753. "type": "git",
  7754. "url": "https://github.com/symfony/error-handler.git",
  7755. "reference": "8c18400784fcb014dc73c8d5601a9576af7f8ad4"
  7756. },
  7757. "dist": {
  7758. "type": "zip",
  7759. "url": "https://api.github.com/repos/symfony/error-handler/zipball/8c18400784fcb014dc73c8d5601a9576af7f8ad4",
  7760. "reference": "8c18400784fcb014dc73c8d5601a9576af7f8ad4",
  7761. "shasum": ""
  7762. },
  7763. "require": {
  7764. "php": ">=8.1",
  7765. "psr/log": "^1|^2|^3",
  7766. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  7767. },
  7768. "conflict": {
  7769. "symfony/deprecation-contracts": "<2.5",
  7770. "symfony/http-kernel": "<6.4"
  7771. },
  7772. "require-dev": {
  7773. "symfony/deprecation-contracts": "^2.5|^3",
  7774. "symfony/http-kernel": "^6.4|^7.0",
  7775. "symfony/serializer": "^5.4|^6.0|^7.0"
  7776. },
  7777. "bin": [
  7778. "Resources/bin/patch-type-declarations"
  7779. ],
  7780. "type": "library",
  7781. "autoload": {
  7782. "psr-4": {
  7783. "Symfony\\Component\\ErrorHandler\\": ""
  7784. },
  7785. "exclude-from-classmap": [
  7786. "/Tests/"
  7787. ]
  7788. },
  7789. "notification-url": "https://packagist.org/downloads/",
  7790. "license": [
  7791. "MIT"
  7792. ],
  7793. "authors": [
  7794. {
  7795. "name": "Fabien Potencier",
  7796. "email": "fabien@symfony.com"
  7797. },
  7798. {
  7799. "name": "Symfony Community",
  7800. "homepage": "https://symfony.com/contributors"
  7801. }
  7802. ],
  7803. "description": "Provides tools to manage errors and ease debugging PHP code",
  7804. "homepage": "https://symfony.com",
  7805. "support": {
  7806. "source": "https://github.com/symfony/error-handler/tree/v6.4.32"
  7807. },
  7808. "funding": [
  7809. {
  7810. "url": "https://symfony.com/sponsor",
  7811. "type": "custom"
  7812. },
  7813. {
  7814. "url": "https://github.com/fabpot",
  7815. "type": "github"
  7816. },
  7817. {
  7818. "url": "https://github.com/nicolas-grekas",
  7819. "type": "github"
  7820. },
  7821. {
  7822. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7823. "type": "tidelift"
  7824. }
  7825. ],
  7826. "time": "2026-01-19T19:28:19+00:00"
  7827. },
  7828. {
  7829. "name": "symfony/event-dispatcher",
  7830. "version": "v6.4.32",
  7831. "source": {
  7832. "type": "git",
  7833. "url": "https://github.com/symfony/event-dispatcher.git",
  7834. "reference": "99d7e101826e6610606b9433248f80c1997cd20b"
  7835. },
  7836. "dist": {
  7837. "type": "zip",
  7838. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/99d7e101826e6610606b9433248f80c1997cd20b",
  7839. "reference": "99d7e101826e6610606b9433248f80c1997cd20b",
  7840. "shasum": ""
  7841. },
  7842. "require": {
  7843. "php": ">=8.1",
  7844. "symfony/event-dispatcher-contracts": "^2.5|^3"
  7845. },
  7846. "conflict": {
  7847. "symfony/dependency-injection": "<5.4",
  7848. "symfony/service-contracts": "<2.5"
  7849. },
  7850. "provide": {
  7851. "psr/event-dispatcher-implementation": "1.0",
  7852. "symfony/event-dispatcher-implementation": "2.0|3.0"
  7853. },
  7854. "require-dev": {
  7855. "psr/log": "^1|^2|^3",
  7856. "symfony/config": "^5.4|^6.0|^7.0",
  7857. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  7858. "symfony/error-handler": "^5.4|^6.0|^7.0",
  7859. "symfony/expression-language": "^5.4|^6.0|^7.0",
  7860. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  7861. "symfony/service-contracts": "^2.5|^3",
  7862. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  7863. },
  7864. "type": "library",
  7865. "autoload": {
  7866. "psr-4": {
  7867. "Symfony\\Component\\EventDispatcher\\": ""
  7868. },
  7869. "exclude-from-classmap": [
  7870. "/Tests/"
  7871. ]
  7872. },
  7873. "notification-url": "https://packagist.org/downloads/",
  7874. "license": [
  7875. "MIT"
  7876. ],
  7877. "authors": [
  7878. {
  7879. "name": "Fabien Potencier",
  7880. "email": "fabien@symfony.com"
  7881. },
  7882. {
  7883. "name": "Symfony Community",
  7884. "homepage": "https://symfony.com/contributors"
  7885. }
  7886. ],
  7887. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7888. "homepage": "https://symfony.com",
  7889. "support": {
  7890. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.32"
  7891. },
  7892. "funding": [
  7893. {
  7894. "url": "https://symfony.com/sponsor",
  7895. "type": "custom"
  7896. },
  7897. {
  7898. "url": "https://github.com/fabpot",
  7899. "type": "github"
  7900. },
  7901. {
  7902. "url": "https://github.com/nicolas-grekas",
  7903. "type": "github"
  7904. },
  7905. {
  7906. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7907. "type": "tidelift"
  7908. }
  7909. ],
  7910. "time": "2026-01-05T11:13:48+00:00"
  7911. },
  7912. {
  7913. "name": "symfony/event-dispatcher-contracts",
  7914. "version": "v3.6.0",
  7915. "source": {
  7916. "type": "git",
  7917. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7918. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  7919. },
  7920. "dist": {
  7921. "type": "zip",
  7922. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  7923. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  7924. "shasum": ""
  7925. },
  7926. "require": {
  7927. "php": ">=8.1",
  7928. "psr/event-dispatcher": "^1"
  7929. },
  7930. "type": "library",
  7931. "extra": {
  7932. "thanks": {
  7933. "url": "https://github.com/symfony/contracts",
  7934. "name": "symfony/contracts"
  7935. },
  7936. "branch-alias": {
  7937. "dev-main": "3.6-dev"
  7938. }
  7939. },
  7940. "autoload": {
  7941. "psr-4": {
  7942. "Symfony\\Contracts\\EventDispatcher\\": ""
  7943. }
  7944. },
  7945. "notification-url": "https://packagist.org/downloads/",
  7946. "license": [
  7947. "MIT"
  7948. ],
  7949. "authors": [
  7950. {
  7951. "name": "Nicolas Grekas",
  7952. "email": "p@tchwork.com"
  7953. },
  7954. {
  7955. "name": "Symfony Community",
  7956. "homepage": "https://symfony.com/contributors"
  7957. }
  7958. ],
  7959. "description": "Generic abstractions related to dispatching event",
  7960. "homepage": "https://symfony.com",
  7961. "keywords": [
  7962. "abstractions",
  7963. "contracts",
  7964. "decoupling",
  7965. "interfaces",
  7966. "interoperability",
  7967. "standards"
  7968. ],
  7969. "support": {
  7970. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  7971. },
  7972. "funding": [
  7973. {
  7974. "url": "https://symfony.com/sponsor",
  7975. "type": "custom"
  7976. },
  7977. {
  7978. "url": "https://github.com/fabpot",
  7979. "type": "github"
  7980. },
  7981. {
  7982. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7983. "type": "tidelift"
  7984. }
  7985. ],
  7986. "time": "2024-09-25T14:21:43+00:00"
  7987. },
  7988. {
  7989. "name": "symfony/filesystem",
  7990. "version": "v6.4.34",
  7991. "source": {
  7992. "type": "git",
  7993. "url": "https://github.com/symfony/filesystem.git",
  7994. "reference": "01ffe0411b842f93c571e5c391f289c3fdd498c3"
  7995. },
  7996. "dist": {
  7997. "type": "zip",
  7998. "url": "https://api.github.com/repos/symfony/filesystem/zipball/01ffe0411b842f93c571e5c391f289c3fdd498c3",
  7999. "reference": "01ffe0411b842f93c571e5c391f289c3fdd498c3",
  8000. "shasum": ""
  8001. },
  8002. "require": {
  8003. "php": ">=8.1",
  8004. "symfony/polyfill-ctype": "~1.8",
  8005. "symfony/polyfill-mbstring": "~1.8"
  8006. },
  8007. "require-dev": {
  8008. "symfony/process": "^5.4|^6.4|^7.0"
  8009. },
  8010. "type": "library",
  8011. "autoload": {
  8012. "psr-4": {
  8013. "Symfony\\Component\\Filesystem\\": ""
  8014. },
  8015. "exclude-from-classmap": [
  8016. "/Tests/"
  8017. ]
  8018. },
  8019. "notification-url": "https://packagist.org/downloads/",
  8020. "license": [
  8021. "MIT"
  8022. ],
  8023. "authors": [
  8024. {
  8025. "name": "Fabien Potencier",
  8026. "email": "fabien@symfony.com"
  8027. },
  8028. {
  8029. "name": "Symfony Community",
  8030. "homepage": "https://symfony.com/contributors"
  8031. }
  8032. ],
  8033. "description": "Provides basic utilities for the filesystem",
  8034. "homepage": "https://symfony.com",
  8035. "support": {
  8036. "source": "https://github.com/symfony/filesystem/tree/v6.4.34"
  8037. },
  8038. "funding": [
  8039. {
  8040. "url": "https://symfony.com/sponsor",
  8041. "type": "custom"
  8042. },
  8043. {
  8044. "url": "https://github.com/fabpot",
  8045. "type": "github"
  8046. },
  8047. {
  8048. "url": "https://github.com/nicolas-grekas",
  8049. "type": "github"
  8050. },
  8051. {
  8052. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8053. "type": "tidelift"
  8054. }
  8055. ],
  8056. "time": "2026-02-24T17:51:06+00:00"
  8057. },
  8058. {
  8059. "name": "symfony/finder",
  8060. "version": "v6.4.34",
  8061. "source": {
  8062. "type": "git",
  8063. "url": "https://github.com/symfony/finder.git",
  8064. "reference": "9590e86be1d1c57bfbb16d0dd040345378c20896"
  8065. },
  8066. "dist": {
  8067. "type": "zip",
  8068. "url": "https://api.github.com/repos/symfony/finder/zipball/9590e86be1d1c57bfbb16d0dd040345378c20896",
  8069. "reference": "9590e86be1d1c57bfbb16d0dd040345378c20896",
  8070. "shasum": ""
  8071. },
  8072. "require": {
  8073. "php": ">=8.1"
  8074. },
  8075. "require-dev": {
  8076. "symfony/filesystem": "^6.0|^7.0"
  8077. },
  8078. "type": "library",
  8079. "autoload": {
  8080. "psr-4": {
  8081. "Symfony\\Component\\Finder\\": ""
  8082. },
  8083. "exclude-from-classmap": [
  8084. "/Tests/"
  8085. ]
  8086. },
  8087. "notification-url": "https://packagist.org/downloads/",
  8088. "license": [
  8089. "MIT"
  8090. ],
  8091. "authors": [
  8092. {
  8093. "name": "Fabien Potencier",
  8094. "email": "fabien@symfony.com"
  8095. },
  8096. {
  8097. "name": "Symfony Community",
  8098. "homepage": "https://symfony.com/contributors"
  8099. }
  8100. ],
  8101. "description": "Finds files and directories via an intuitive fluent interface",
  8102. "homepage": "https://symfony.com",
  8103. "support": {
  8104. "source": "https://github.com/symfony/finder/tree/v6.4.34"
  8105. },
  8106. "funding": [
  8107. {
  8108. "url": "https://symfony.com/sponsor",
  8109. "type": "custom"
  8110. },
  8111. {
  8112. "url": "https://github.com/fabpot",
  8113. "type": "github"
  8114. },
  8115. {
  8116. "url": "https://github.com/nicolas-grekas",
  8117. "type": "github"
  8118. },
  8119. {
  8120. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8121. "type": "tidelift"
  8122. }
  8123. ],
  8124. "time": "2026-01-28T15:16:37+00:00"
  8125. },
  8126. {
  8127. "name": "symfony/http-foundation",
  8128. "version": "v6.4.35",
  8129. "source": {
  8130. "type": "git",
  8131. "url": "https://github.com/symfony/http-foundation.git",
  8132. "reference": "cffffd0a2c037117b742b4f8b379a22a2a33f6d2"
  8133. },
  8134. "dist": {
  8135. "type": "zip",
  8136. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/cffffd0a2c037117b742b4f8b379a22a2a33f6d2",
  8137. "reference": "cffffd0a2c037117b742b4f8b379a22a2a33f6d2",
  8138. "shasum": ""
  8139. },
  8140. "require": {
  8141. "php": ">=8.1",
  8142. "symfony/deprecation-contracts": "^2.5|^3",
  8143. "symfony/polyfill-mbstring": "~1.1",
  8144. "symfony/polyfill-php83": "^1.27"
  8145. },
  8146. "conflict": {
  8147. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  8148. },
  8149. "require-dev": {
  8150. "doctrine/dbal": "^2.13.1|^3|^4",
  8151. "predis/predis": "^1.1|^2.0",
  8152. "symfony/cache": "^6.4.12|^7.1.5",
  8153. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8154. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8155. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  8156. "symfony/mime": "^5.4|^6.0|^7.0",
  8157. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  8158. },
  8159. "type": "library",
  8160. "autoload": {
  8161. "psr-4": {
  8162. "Symfony\\Component\\HttpFoundation\\": ""
  8163. },
  8164. "exclude-from-classmap": [
  8165. "/Tests/"
  8166. ]
  8167. },
  8168. "notification-url": "https://packagist.org/downloads/",
  8169. "license": [
  8170. "MIT"
  8171. ],
  8172. "authors": [
  8173. {
  8174. "name": "Fabien Potencier",
  8175. "email": "fabien@symfony.com"
  8176. },
  8177. {
  8178. "name": "Symfony Community",
  8179. "homepage": "https://symfony.com/contributors"
  8180. }
  8181. ],
  8182. "description": "Defines an object-oriented layer for the HTTP specification",
  8183. "homepage": "https://symfony.com",
  8184. "support": {
  8185. "source": "https://github.com/symfony/http-foundation/tree/v6.4.35"
  8186. },
  8187. "funding": [
  8188. {
  8189. "url": "https://symfony.com/sponsor",
  8190. "type": "custom"
  8191. },
  8192. {
  8193. "url": "https://github.com/fabpot",
  8194. "type": "github"
  8195. },
  8196. {
  8197. "url": "https://github.com/nicolas-grekas",
  8198. "type": "github"
  8199. },
  8200. {
  8201. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8202. "type": "tidelift"
  8203. }
  8204. ],
  8205. "time": "2026-03-06T11:15:58+00:00"
  8206. },
  8207. {
  8208. "name": "symfony/http-kernel",
  8209. "version": "v6.4.35",
  8210. "source": {
  8211. "type": "git",
  8212. "url": "https://github.com/symfony/http-kernel.git",
  8213. "reference": "ece1a0da7745a5243683f178155c0412c92691eb"
  8214. },
  8215. "dist": {
  8216. "type": "zip",
  8217. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ece1a0da7745a5243683f178155c0412c92691eb",
  8218. "reference": "ece1a0da7745a5243683f178155c0412c92691eb",
  8219. "shasum": ""
  8220. },
  8221. "require": {
  8222. "php": ">=8.1",
  8223. "psr/log": "^1|^2|^3",
  8224. "symfony/deprecation-contracts": "^2.5|^3",
  8225. "symfony/error-handler": "^6.4|^7.0",
  8226. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  8227. "symfony/http-foundation": "^6.4|^7.0",
  8228. "symfony/polyfill-ctype": "^1.8"
  8229. },
  8230. "conflict": {
  8231. "symfony/browser-kit": "<5.4",
  8232. "symfony/cache": "<5.4",
  8233. "symfony/config": "<6.1",
  8234. "symfony/console": "<5.4",
  8235. "symfony/dependency-injection": "<6.4",
  8236. "symfony/doctrine-bridge": "<5.4",
  8237. "symfony/form": "<5.4",
  8238. "symfony/http-client": "<5.4",
  8239. "symfony/http-client-contracts": "<2.5",
  8240. "symfony/mailer": "<5.4",
  8241. "symfony/messenger": "<5.4",
  8242. "symfony/translation": "<5.4",
  8243. "symfony/translation-contracts": "<2.5",
  8244. "symfony/twig-bridge": "<5.4",
  8245. "symfony/validator": "<6.4",
  8246. "symfony/var-dumper": "<6.3",
  8247. "twig/twig": "<2.13"
  8248. },
  8249. "provide": {
  8250. "psr/log-implementation": "1.0|2.0|3.0"
  8251. },
  8252. "require-dev": {
  8253. "psr/cache": "^1.0|^2.0|^3.0",
  8254. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  8255. "symfony/clock": "^6.2|^7.0",
  8256. "symfony/config": "^6.1|^7.0",
  8257. "symfony/console": "^5.4|^6.0|^7.0",
  8258. "symfony/css-selector": "^5.4|^6.0|^7.0",
  8259. "symfony/dependency-injection": "^6.4.1|^7.0.1",
  8260. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  8261. "symfony/expression-language": "^5.4|^6.0|^7.0",
  8262. "symfony/finder": "^5.4|^6.0|^7.0",
  8263. "symfony/http-client-contracts": "^2.5|^3",
  8264. "symfony/process": "^5.4|^6.0|^7.0",
  8265. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  8266. "symfony/routing": "^5.4|^6.0|^7.0",
  8267. "symfony/serializer": "^6.4.4|^7.0.4",
  8268. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  8269. "symfony/translation": "^5.4|^6.0|^7.0",
  8270. "symfony/translation-contracts": "^2.5|^3",
  8271. "symfony/uid": "^5.4|^6.0|^7.0",
  8272. "symfony/validator": "^6.4|^7.0",
  8273. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  8274. "symfony/var-exporter": "^6.2|^7.0",
  8275. "twig/twig": "^2.13|^3.0.4"
  8276. },
  8277. "type": "library",
  8278. "autoload": {
  8279. "psr-4": {
  8280. "Symfony\\Component\\HttpKernel\\": ""
  8281. },
  8282. "exclude-from-classmap": [
  8283. "/Tests/"
  8284. ]
  8285. },
  8286. "notification-url": "https://packagist.org/downloads/",
  8287. "license": [
  8288. "MIT"
  8289. ],
  8290. "authors": [
  8291. {
  8292. "name": "Fabien Potencier",
  8293. "email": "fabien@symfony.com"
  8294. },
  8295. {
  8296. "name": "Symfony Community",
  8297. "homepage": "https://symfony.com/contributors"
  8298. }
  8299. ],
  8300. "description": "Provides a structured process for converting a Request into a Response",
  8301. "homepage": "https://symfony.com",
  8302. "support": {
  8303. "source": "https://github.com/symfony/http-kernel/tree/v6.4.35"
  8304. },
  8305. "funding": [
  8306. {
  8307. "url": "https://symfony.com/sponsor",
  8308. "type": "custom"
  8309. },
  8310. {
  8311. "url": "https://github.com/fabpot",
  8312. "type": "github"
  8313. },
  8314. {
  8315. "url": "https://github.com/nicolas-grekas",
  8316. "type": "github"
  8317. },
  8318. {
  8319. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8320. "type": "tidelift"
  8321. }
  8322. ],
  8323. "time": "2026-03-06T16:28:07+00:00"
  8324. },
  8325. {
  8326. "name": "symfony/mailer",
  8327. "version": "v6.4.34",
  8328. "source": {
  8329. "type": "git",
  8330. "url": "https://github.com/symfony/mailer.git",
  8331. "reference": "01b846f48e53ee4096692a383637a1fa4d577301"
  8332. },
  8333. "dist": {
  8334. "type": "zip",
  8335. "url": "https://api.github.com/repos/symfony/mailer/zipball/01b846f48e53ee4096692a383637a1fa4d577301",
  8336. "reference": "01b846f48e53ee4096692a383637a1fa4d577301",
  8337. "shasum": ""
  8338. },
  8339. "require": {
  8340. "egulias/email-validator": "^2.1.10|^3|^4",
  8341. "php": ">=8.1",
  8342. "psr/event-dispatcher": "^1",
  8343. "psr/log": "^1|^2|^3",
  8344. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  8345. "symfony/mime": "^6.2|^7.0",
  8346. "symfony/service-contracts": "^2.5|^3"
  8347. },
  8348. "conflict": {
  8349. "symfony/http-client-contracts": "<2.5",
  8350. "symfony/http-kernel": "<5.4",
  8351. "symfony/messenger": "<6.2",
  8352. "symfony/mime": "<6.2",
  8353. "symfony/twig-bridge": "<6.2.1"
  8354. },
  8355. "require-dev": {
  8356. "symfony/console": "^5.4|^6.0|^7.0",
  8357. "symfony/http-client": "^5.4|^6.0|^7.0",
  8358. "symfony/messenger": "^6.2|^7.0",
  8359. "symfony/twig-bridge": "^6.2|^7.0"
  8360. },
  8361. "type": "library",
  8362. "autoload": {
  8363. "psr-4": {
  8364. "Symfony\\Component\\Mailer\\": ""
  8365. },
  8366. "exclude-from-classmap": [
  8367. "/Tests/"
  8368. ]
  8369. },
  8370. "notification-url": "https://packagist.org/downloads/",
  8371. "license": [
  8372. "MIT"
  8373. ],
  8374. "authors": [
  8375. {
  8376. "name": "Fabien Potencier",
  8377. "email": "fabien@symfony.com"
  8378. },
  8379. {
  8380. "name": "Symfony Community",
  8381. "homepage": "https://symfony.com/contributors"
  8382. }
  8383. ],
  8384. "description": "Helps sending emails",
  8385. "homepage": "https://symfony.com",
  8386. "support": {
  8387. "source": "https://github.com/symfony/mailer/tree/v6.4.34"
  8388. },
  8389. "funding": [
  8390. {
  8391. "url": "https://symfony.com/sponsor",
  8392. "type": "custom"
  8393. },
  8394. {
  8395. "url": "https://github.com/fabpot",
  8396. "type": "github"
  8397. },
  8398. {
  8399. "url": "https://github.com/nicolas-grekas",
  8400. "type": "github"
  8401. },
  8402. {
  8403. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8404. "type": "tidelift"
  8405. }
  8406. ],
  8407. "time": "2026-02-24T09:34:36+00:00"
  8408. },
  8409. {
  8410. "name": "symfony/mime",
  8411. "version": "v6.4.35",
  8412. "source": {
  8413. "type": "git",
  8414. "url": "https://github.com/symfony/mime.git",
  8415. "reference": "b5cce719de25bebd6345c7709774f9ac63ff5cdf"
  8416. },
  8417. "dist": {
  8418. "type": "zip",
  8419. "url": "https://api.github.com/repos/symfony/mime/zipball/b5cce719de25bebd6345c7709774f9ac63ff5cdf",
  8420. "reference": "b5cce719de25bebd6345c7709774f9ac63ff5cdf",
  8421. "shasum": ""
  8422. },
  8423. "require": {
  8424. "php": ">=8.1",
  8425. "symfony/deprecation-contracts": "^2.5|^3",
  8426. "symfony/polyfill-intl-idn": "^1.10",
  8427. "symfony/polyfill-mbstring": "^1.0"
  8428. },
  8429. "conflict": {
  8430. "egulias/email-validator": "~3.0.0",
  8431. "phpdocumentor/reflection-docblock": "<3.2.2",
  8432. "phpdocumentor/type-resolver": "<1.4.0",
  8433. "symfony/mailer": "<5.4",
  8434. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  8435. },
  8436. "require-dev": {
  8437. "egulias/email-validator": "^2.1.10|^3.1|^4",
  8438. "league/html-to-markdown": "^5.0",
  8439. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8440. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8441. "symfony/process": "^5.4|^6.4|^7.0",
  8442. "symfony/property-access": "^5.4|^6.0|^7.0",
  8443. "symfony/property-info": "^5.4|^6.0|^7.0",
  8444. "symfony/serializer": "^6.4.3|^7.0.3"
  8445. },
  8446. "type": "library",
  8447. "autoload": {
  8448. "psr-4": {
  8449. "Symfony\\Component\\Mime\\": ""
  8450. },
  8451. "exclude-from-classmap": [
  8452. "/Tests/"
  8453. ]
  8454. },
  8455. "notification-url": "https://packagist.org/downloads/",
  8456. "license": [
  8457. "MIT"
  8458. ],
  8459. "authors": [
  8460. {
  8461. "name": "Fabien Potencier",
  8462. "email": "fabien@symfony.com"
  8463. },
  8464. {
  8465. "name": "Symfony Community",
  8466. "homepage": "https://symfony.com/contributors"
  8467. }
  8468. ],
  8469. "description": "Allows manipulating MIME messages",
  8470. "homepage": "https://symfony.com",
  8471. "keywords": [
  8472. "mime",
  8473. "mime-type"
  8474. ],
  8475. "support": {
  8476. "source": "https://github.com/symfony/mime/tree/v6.4.35"
  8477. },
  8478. "funding": [
  8479. {
  8480. "url": "https://symfony.com/sponsor",
  8481. "type": "custom"
  8482. },
  8483. {
  8484. "url": "https://github.com/fabpot",
  8485. "type": "github"
  8486. },
  8487. {
  8488. "url": "https://github.com/nicolas-grekas",
  8489. "type": "github"
  8490. },
  8491. {
  8492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8493. "type": "tidelift"
  8494. }
  8495. ],
  8496. "time": "2026-03-05T11:25:28+00:00"
  8497. },
  8498. {
  8499. "name": "symfony/polyfill-ctype",
  8500. "version": "v1.33.0",
  8501. "source": {
  8502. "type": "git",
  8503. "url": "https://github.com/symfony/polyfill-ctype.git",
  8504. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  8505. },
  8506. "dist": {
  8507. "type": "zip",
  8508. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  8509. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  8510. "shasum": ""
  8511. },
  8512. "require": {
  8513. "php": ">=7.2"
  8514. },
  8515. "provide": {
  8516. "ext-ctype": "*"
  8517. },
  8518. "suggest": {
  8519. "ext-ctype": "For best performance"
  8520. },
  8521. "type": "library",
  8522. "extra": {
  8523. "thanks": {
  8524. "url": "https://github.com/symfony/polyfill",
  8525. "name": "symfony/polyfill"
  8526. }
  8527. },
  8528. "autoload": {
  8529. "files": [
  8530. "bootstrap.php"
  8531. ],
  8532. "psr-4": {
  8533. "Symfony\\Polyfill\\Ctype\\": ""
  8534. }
  8535. },
  8536. "notification-url": "https://packagist.org/downloads/",
  8537. "license": [
  8538. "MIT"
  8539. ],
  8540. "authors": [
  8541. {
  8542. "name": "Gert de Pagter",
  8543. "email": "BackEndTea@gmail.com"
  8544. },
  8545. {
  8546. "name": "Symfony Community",
  8547. "homepage": "https://symfony.com/contributors"
  8548. }
  8549. ],
  8550. "description": "Symfony polyfill for ctype functions",
  8551. "homepage": "https://symfony.com",
  8552. "keywords": [
  8553. "compatibility",
  8554. "ctype",
  8555. "polyfill",
  8556. "portable"
  8557. ],
  8558. "support": {
  8559. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
  8560. },
  8561. "funding": [
  8562. {
  8563. "url": "https://symfony.com/sponsor",
  8564. "type": "custom"
  8565. },
  8566. {
  8567. "url": "https://github.com/fabpot",
  8568. "type": "github"
  8569. },
  8570. {
  8571. "url": "https://github.com/nicolas-grekas",
  8572. "type": "github"
  8573. },
  8574. {
  8575. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8576. "type": "tidelift"
  8577. }
  8578. ],
  8579. "time": "2024-09-09T11:45:10+00:00"
  8580. },
  8581. {
  8582. "name": "symfony/polyfill-iconv",
  8583. "version": "v1.33.0",
  8584. "source": {
  8585. "type": "git",
  8586. "url": "https://github.com/symfony/polyfill-iconv.git",
  8587. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  8588. },
  8589. "dist": {
  8590. "type": "zip",
  8591. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  8592. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  8593. "shasum": ""
  8594. },
  8595. "require": {
  8596. "php": ">=7.2"
  8597. },
  8598. "provide": {
  8599. "ext-iconv": "*"
  8600. },
  8601. "suggest": {
  8602. "ext-iconv": "For best performance"
  8603. },
  8604. "type": "library",
  8605. "extra": {
  8606. "thanks": {
  8607. "url": "https://github.com/symfony/polyfill",
  8608. "name": "symfony/polyfill"
  8609. }
  8610. },
  8611. "autoload": {
  8612. "files": [
  8613. "bootstrap.php"
  8614. ],
  8615. "psr-4": {
  8616. "Symfony\\Polyfill\\Iconv\\": ""
  8617. }
  8618. },
  8619. "notification-url": "https://packagist.org/downloads/",
  8620. "license": [
  8621. "MIT"
  8622. ],
  8623. "authors": [
  8624. {
  8625. "name": "Nicolas Grekas",
  8626. "email": "p@tchwork.com"
  8627. },
  8628. {
  8629. "name": "Symfony Community",
  8630. "homepage": "https://symfony.com/contributors"
  8631. }
  8632. ],
  8633. "description": "Symfony polyfill for the Iconv extension",
  8634. "homepage": "https://symfony.com",
  8635. "keywords": [
  8636. "compatibility",
  8637. "iconv",
  8638. "polyfill",
  8639. "portable",
  8640. "shim"
  8641. ],
  8642. "support": {
  8643. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.33.0"
  8644. },
  8645. "funding": [
  8646. {
  8647. "url": "https://symfony.com/sponsor",
  8648. "type": "custom"
  8649. },
  8650. {
  8651. "url": "https://github.com/fabpot",
  8652. "type": "github"
  8653. },
  8654. {
  8655. "url": "https://github.com/nicolas-grekas",
  8656. "type": "github"
  8657. },
  8658. {
  8659. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8660. "type": "tidelift"
  8661. }
  8662. ],
  8663. "time": "2024-09-17T14:58:18+00:00"
  8664. },
  8665. {
  8666. "name": "symfony/polyfill-intl-grapheme",
  8667. "version": "v1.33.0",
  8668. "source": {
  8669. "type": "git",
  8670. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8671. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  8672. },
  8673. "dist": {
  8674. "type": "zip",
  8675. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  8676. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  8677. "shasum": ""
  8678. },
  8679. "require": {
  8680. "php": ">=7.2"
  8681. },
  8682. "suggest": {
  8683. "ext-intl": "For best performance"
  8684. },
  8685. "type": "library",
  8686. "extra": {
  8687. "thanks": {
  8688. "url": "https://github.com/symfony/polyfill",
  8689. "name": "symfony/polyfill"
  8690. }
  8691. },
  8692. "autoload": {
  8693. "files": [
  8694. "bootstrap.php"
  8695. ],
  8696. "psr-4": {
  8697. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8698. }
  8699. },
  8700. "notification-url": "https://packagist.org/downloads/",
  8701. "license": [
  8702. "MIT"
  8703. ],
  8704. "authors": [
  8705. {
  8706. "name": "Nicolas Grekas",
  8707. "email": "p@tchwork.com"
  8708. },
  8709. {
  8710. "name": "Symfony Community",
  8711. "homepage": "https://symfony.com/contributors"
  8712. }
  8713. ],
  8714. "description": "Symfony polyfill for intl's grapheme_* functions",
  8715. "homepage": "https://symfony.com",
  8716. "keywords": [
  8717. "compatibility",
  8718. "grapheme",
  8719. "intl",
  8720. "polyfill",
  8721. "portable",
  8722. "shim"
  8723. ],
  8724. "support": {
  8725. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  8726. },
  8727. "funding": [
  8728. {
  8729. "url": "https://symfony.com/sponsor",
  8730. "type": "custom"
  8731. },
  8732. {
  8733. "url": "https://github.com/fabpot",
  8734. "type": "github"
  8735. },
  8736. {
  8737. "url": "https://github.com/nicolas-grekas",
  8738. "type": "github"
  8739. },
  8740. {
  8741. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8742. "type": "tidelift"
  8743. }
  8744. ],
  8745. "time": "2025-06-27T09:58:17+00:00"
  8746. },
  8747. {
  8748. "name": "symfony/polyfill-intl-idn",
  8749. "version": "v1.33.0",
  8750. "source": {
  8751. "type": "git",
  8752. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8753. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  8754. },
  8755. "dist": {
  8756. "type": "zip",
  8757. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  8758. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  8759. "shasum": ""
  8760. },
  8761. "require": {
  8762. "php": ">=7.2",
  8763. "symfony/polyfill-intl-normalizer": "^1.10"
  8764. },
  8765. "suggest": {
  8766. "ext-intl": "For best performance"
  8767. },
  8768. "type": "library",
  8769. "extra": {
  8770. "thanks": {
  8771. "url": "https://github.com/symfony/polyfill",
  8772. "name": "symfony/polyfill"
  8773. }
  8774. },
  8775. "autoload": {
  8776. "files": [
  8777. "bootstrap.php"
  8778. ],
  8779. "psr-4": {
  8780. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8781. }
  8782. },
  8783. "notification-url": "https://packagist.org/downloads/",
  8784. "license": [
  8785. "MIT"
  8786. ],
  8787. "authors": [
  8788. {
  8789. "name": "Laurent Bassin",
  8790. "email": "laurent@bassin.info"
  8791. },
  8792. {
  8793. "name": "Trevor Rowbotham",
  8794. "email": "trevor.rowbotham@pm.me"
  8795. },
  8796. {
  8797. "name": "Symfony Community",
  8798. "homepage": "https://symfony.com/contributors"
  8799. }
  8800. ],
  8801. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8802. "homepage": "https://symfony.com",
  8803. "keywords": [
  8804. "compatibility",
  8805. "idn",
  8806. "intl",
  8807. "polyfill",
  8808. "portable",
  8809. "shim"
  8810. ],
  8811. "support": {
  8812. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
  8813. },
  8814. "funding": [
  8815. {
  8816. "url": "https://symfony.com/sponsor",
  8817. "type": "custom"
  8818. },
  8819. {
  8820. "url": "https://github.com/fabpot",
  8821. "type": "github"
  8822. },
  8823. {
  8824. "url": "https://github.com/nicolas-grekas",
  8825. "type": "github"
  8826. },
  8827. {
  8828. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8829. "type": "tidelift"
  8830. }
  8831. ],
  8832. "time": "2024-09-10T14:38:51+00:00"
  8833. },
  8834. {
  8835. "name": "symfony/polyfill-intl-normalizer",
  8836. "version": "v1.33.0",
  8837. "source": {
  8838. "type": "git",
  8839. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8840. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  8841. },
  8842. "dist": {
  8843. "type": "zip",
  8844. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  8845. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  8846. "shasum": ""
  8847. },
  8848. "require": {
  8849. "php": ">=7.2"
  8850. },
  8851. "suggest": {
  8852. "ext-intl": "For best performance"
  8853. },
  8854. "type": "library",
  8855. "extra": {
  8856. "thanks": {
  8857. "url": "https://github.com/symfony/polyfill",
  8858. "name": "symfony/polyfill"
  8859. }
  8860. },
  8861. "autoload": {
  8862. "files": [
  8863. "bootstrap.php"
  8864. ],
  8865. "psr-4": {
  8866. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8867. },
  8868. "classmap": [
  8869. "Resources/stubs"
  8870. ]
  8871. },
  8872. "notification-url": "https://packagist.org/downloads/",
  8873. "license": [
  8874. "MIT"
  8875. ],
  8876. "authors": [
  8877. {
  8878. "name": "Nicolas Grekas",
  8879. "email": "p@tchwork.com"
  8880. },
  8881. {
  8882. "name": "Symfony Community",
  8883. "homepage": "https://symfony.com/contributors"
  8884. }
  8885. ],
  8886. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8887. "homepage": "https://symfony.com",
  8888. "keywords": [
  8889. "compatibility",
  8890. "intl",
  8891. "normalizer",
  8892. "polyfill",
  8893. "portable",
  8894. "shim"
  8895. ],
  8896. "support": {
  8897. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  8898. },
  8899. "funding": [
  8900. {
  8901. "url": "https://symfony.com/sponsor",
  8902. "type": "custom"
  8903. },
  8904. {
  8905. "url": "https://github.com/fabpot",
  8906. "type": "github"
  8907. },
  8908. {
  8909. "url": "https://github.com/nicolas-grekas",
  8910. "type": "github"
  8911. },
  8912. {
  8913. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8914. "type": "tidelift"
  8915. }
  8916. ],
  8917. "time": "2024-09-09T11:45:10+00:00"
  8918. },
  8919. {
  8920. "name": "symfony/polyfill-mbstring",
  8921. "version": "v1.33.0",
  8922. "source": {
  8923. "type": "git",
  8924. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8925. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  8926. },
  8927. "dist": {
  8928. "type": "zip",
  8929. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  8930. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  8931. "shasum": ""
  8932. },
  8933. "require": {
  8934. "ext-iconv": "*",
  8935. "php": ">=7.2"
  8936. },
  8937. "provide": {
  8938. "ext-mbstring": "*"
  8939. },
  8940. "suggest": {
  8941. "ext-mbstring": "For best performance"
  8942. },
  8943. "type": "library",
  8944. "extra": {
  8945. "thanks": {
  8946. "url": "https://github.com/symfony/polyfill",
  8947. "name": "symfony/polyfill"
  8948. }
  8949. },
  8950. "autoload": {
  8951. "files": [
  8952. "bootstrap.php"
  8953. ],
  8954. "psr-4": {
  8955. "Symfony\\Polyfill\\Mbstring\\": ""
  8956. }
  8957. },
  8958. "notification-url": "https://packagist.org/downloads/",
  8959. "license": [
  8960. "MIT"
  8961. ],
  8962. "authors": [
  8963. {
  8964. "name": "Nicolas Grekas",
  8965. "email": "p@tchwork.com"
  8966. },
  8967. {
  8968. "name": "Symfony Community",
  8969. "homepage": "https://symfony.com/contributors"
  8970. }
  8971. ],
  8972. "description": "Symfony polyfill for the Mbstring extension",
  8973. "homepage": "https://symfony.com",
  8974. "keywords": [
  8975. "compatibility",
  8976. "mbstring",
  8977. "polyfill",
  8978. "portable",
  8979. "shim"
  8980. ],
  8981. "support": {
  8982. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  8983. },
  8984. "funding": [
  8985. {
  8986. "url": "https://symfony.com/sponsor",
  8987. "type": "custom"
  8988. },
  8989. {
  8990. "url": "https://github.com/fabpot",
  8991. "type": "github"
  8992. },
  8993. {
  8994. "url": "https://github.com/nicolas-grekas",
  8995. "type": "github"
  8996. },
  8997. {
  8998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8999. "type": "tidelift"
  9000. }
  9001. ],
  9002. "time": "2024-12-23T08:48:59+00:00"
  9003. },
  9004. {
  9005. "name": "symfony/polyfill-php81",
  9006. "version": "v1.33.0",
  9007. "source": {
  9008. "type": "git",
  9009. "url": "https://github.com/symfony/polyfill-php81.git",
  9010. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  9011. },
  9012. "dist": {
  9013. "type": "zip",
  9014. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  9015. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  9016. "shasum": ""
  9017. },
  9018. "require": {
  9019. "php": ">=7.2"
  9020. },
  9021. "type": "library",
  9022. "extra": {
  9023. "thanks": {
  9024. "url": "https://github.com/symfony/polyfill",
  9025. "name": "symfony/polyfill"
  9026. }
  9027. },
  9028. "autoload": {
  9029. "files": [
  9030. "bootstrap.php"
  9031. ],
  9032. "psr-4": {
  9033. "Symfony\\Polyfill\\Php81\\": ""
  9034. },
  9035. "classmap": [
  9036. "Resources/stubs"
  9037. ]
  9038. },
  9039. "notification-url": "https://packagist.org/downloads/",
  9040. "license": [
  9041. "MIT"
  9042. ],
  9043. "authors": [
  9044. {
  9045. "name": "Nicolas Grekas",
  9046. "email": "p@tchwork.com"
  9047. },
  9048. {
  9049. "name": "Symfony Community",
  9050. "homepage": "https://symfony.com/contributors"
  9051. }
  9052. ],
  9053. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  9054. "homepage": "https://symfony.com",
  9055. "keywords": [
  9056. "compatibility",
  9057. "polyfill",
  9058. "portable",
  9059. "shim"
  9060. ],
  9061. "support": {
  9062. "source": "https://github.com/symfony/polyfill-php81/tree/v1.33.0"
  9063. },
  9064. "funding": [
  9065. {
  9066. "url": "https://symfony.com/sponsor",
  9067. "type": "custom"
  9068. },
  9069. {
  9070. "url": "https://github.com/fabpot",
  9071. "type": "github"
  9072. },
  9073. {
  9074. "url": "https://github.com/nicolas-grekas",
  9075. "type": "github"
  9076. },
  9077. {
  9078. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9079. "type": "tidelift"
  9080. }
  9081. ],
  9082. "time": "2024-09-09T11:45:10+00:00"
  9083. },
  9084. {
  9085. "name": "symfony/polyfill-php83",
  9086. "version": "v1.33.0",
  9087. "source": {
  9088. "type": "git",
  9089. "url": "https://github.com/symfony/polyfill-php83.git",
  9090. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
  9091. },
  9092. "dist": {
  9093. "type": "zip",
  9094. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  9095. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  9096. "shasum": ""
  9097. },
  9098. "require": {
  9099. "php": ">=7.2"
  9100. },
  9101. "type": "library",
  9102. "extra": {
  9103. "thanks": {
  9104. "url": "https://github.com/symfony/polyfill",
  9105. "name": "symfony/polyfill"
  9106. }
  9107. },
  9108. "autoload": {
  9109. "files": [
  9110. "bootstrap.php"
  9111. ],
  9112. "psr-4": {
  9113. "Symfony\\Polyfill\\Php83\\": ""
  9114. },
  9115. "classmap": [
  9116. "Resources/stubs"
  9117. ]
  9118. },
  9119. "notification-url": "https://packagist.org/downloads/",
  9120. "license": [
  9121. "MIT"
  9122. ],
  9123. "authors": [
  9124. {
  9125. "name": "Nicolas Grekas",
  9126. "email": "p@tchwork.com"
  9127. },
  9128. {
  9129. "name": "Symfony Community",
  9130. "homepage": "https://symfony.com/contributors"
  9131. }
  9132. ],
  9133. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  9134. "homepage": "https://symfony.com",
  9135. "keywords": [
  9136. "compatibility",
  9137. "polyfill",
  9138. "portable",
  9139. "shim"
  9140. ],
  9141. "support": {
  9142. "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
  9143. },
  9144. "funding": [
  9145. {
  9146. "url": "https://symfony.com/sponsor",
  9147. "type": "custom"
  9148. },
  9149. {
  9150. "url": "https://github.com/fabpot",
  9151. "type": "github"
  9152. },
  9153. {
  9154. "url": "https://github.com/nicolas-grekas",
  9155. "type": "github"
  9156. },
  9157. {
  9158. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9159. "type": "tidelift"
  9160. }
  9161. ],
  9162. "time": "2025-07-08T02:45:35+00:00"
  9163. },
  9164. {
  9165. "name": "symfony/process",
  9166. "version": "v6.4.33",
  9167. "source": {
  9168. "type": "git",
  9169. "url": "https://github.com/symfony/process.git",
  9170. "reference": "c46e854e79b52d07666e43924a20cb6dc546644e"
  9171. },
  9172. "dist": {
  9173. "type": "zip",
  9174. "url": "https://api.github.com/repos/symfony/process/zipball/c46e854e79b52d07666e43924a20cb6dc546644e",
  9175. "reference": "c46e854e79b52d07666e43924a20cb6dc546644e",
  9176. "shasum": ""
  9177. },
  9178. "require": {
  9179. "php": ">=8.1"
  9180. },
  9181. "type": "library",
  9182. "autoload": {
  9183. "psr-4": {
  9184. "Symfony\\Component\\Process\\": ""
  9185. },
  9186. "exclude-from-classmap": [
  9187. "/Tests/"
  9188. ]
  9189. },
  9190. "notification-url": "https://packagist.org/downloads/",
  9191. "license": [
  9192. "MIT"
  9193. ],
  9194. "authors": [
  9195. {
  9196. "name": "Fabien Potencier",
  9197. "email": "fabien@symfony.com"
  9198. },
  9199. {
  9200. "name": "Symfony Community",
  9201. "homepage": "https://symfony.com/contributors"
  9202. }
  9203. ],
  9204. "description": "Executes commands in sub-processes",
  9205. "homepage": "https://symfony.com",
  9206. "support": {
  9207. "source": "https://github.com/symfony/process/tree/v6.4.33"
  9208. },
  9209. "funding": [
  9210. {
  9211. "url": "https://symfony.com/sponsor",
  9212. "type": "custom"
  9213. },
  9214. {
  9215. "url": "https://github.com/fabpot",
  9216. "type": "github"
  9217. },
  9218. {
  9219. "url": "https://github.com/nicolas-grekas",
  9220. "type": "github"
  9221. },
  9222. {
  9223. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9224. "type": "tidelift"
  9225. }
  9226. ],
  9227. "time": "2026-01-23T16:02:12+00:00"
  9228. },
  9229. {
  9230. "name": "symfony/psr-http-message-bridge",
  9231. "version": "v6.4.32",
  9232. "source": {
  9233. "type": "git",
  9234. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9235. "reference": "740017f61ce31b4aca485a18a25c0310ebd0190f"
  9236. },
  9237. "dist": {
  9238. "type": "zip",
  9239. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/740017f61ce31b4aca485a18a25c0310ebd0190f",
  9240. "reference": "740017f61ce31b4aca485a18a25c0310ebd0190f",
  9241. "shasum": ""
  9242. },
  9243. "require": {
  9244. "php": ">=8.1",
  9245. "psr/http-message": "^1.0|^2.0",
  9246. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  9247. },
  9248. "conflict": {
  9249. "php-http/discovery": "<1.15",
  9250. "symfony/http-kernel": "<6.2"
  9251. },
  9252. "require-dev": {
  9253. "nyholm/psr7": "^1.1",
  9254. "php-http/discovery": "^1.15",
  9255. "psr/log": "^1.1.4|^2|^3",
  9256. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  9257. "symfony/config": "^5.4|^6.0|^7.0",
  9258. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  9259. "symfony/framework-bundle": "^6.2|^7.0",
  9260. "symfony/http-kernel": "^6.2|^7.0"
  9261. },
  9262. "type": "symfony-bridge",
  9263. "autoload": {
  9264. "psr-4": {
  9265. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9266. },
  9267. "exclude-from-classmap": [
  9268. "/Tests/"
  9269. ]
  9270. },
  9271. "notification-url": "https://packagist.org/downloads/",
  9272. "license": [
  9273. "MIT"
  9274. ],
  9275. "authors": [
  9276. {
  9277. "name": "Fabien Potencier",
  9278. "email": "fabien@symfony.com"
  9279. },
  9280. {
  9281. "name": "Symfony Community",
  9282. "homepage": "https://symfony.com/contributors"
  9283. }
  9284. ],
  9285. "description": "PSR HTTP message bridge",
  9286. "homepage": "https://symfony.com",
  9287. "keywords": [
  9288. "http",
  9289. "http-message",
  9290. "psr-17",
  9291. "psr-7"
  9292. ],
  9293. "support": {
  9294. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.32"
  9295. },
  9296. "funding": [
  9297. {
  9298. "url": "https://symfony.com/sponsor",
  9299. "type": "custom"
  9300. },
  9301. {
  9302. "url": "https://github.com/fabpot",
  9303. "type": "github"
  9304. },
  9305. {
  9306. "url": "https://github.com/nicolas-grekas",
  9307. "type": "github"
  9308. },
  9309. {
  9310. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9311. "type": "tidelift"
  9312. }
  9313. ],
  9314. "time": "2026-01-02T11:59:06+00:00"
  9315. },
  9316. {
  9317. "name": "symfony/routing",
  9318. "version": "v6.4.34",
  9319. "source": {
  9320. "type": "git",
  9321. "url": "https://github.com/symfony/routing.git",
  9322. "reference": "5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47"
  9323. },
  9324. "dist": {
  9325. "type": "zip",
  9326. "url": "https://api.github.com/repos/symfony/routing/zipball/5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47",
  9327. "reference": "5ab3a3e1a03535ec5ca6ce2d39e4369a1096ae47",
  9328. "shasum": ""
  9329. },
  9330. "require": {
  9331. "php": ">=8.1",
  9332. "symfony/deprecation-contracts": "^2.5|^3"
  9333. },
  9334. "conflict": {
  9335. "doctrine/annotations": "<1.12",
  9336. "symfony/config": "<6.2",
  9337. "symfony/dependency-injection": "<5.4",
  9338. "symfony/yaml": "<5.4"
  9339. },
  9340. "require-dev": {
  9341. "doctrine/annotations": "^1.12|^2",
  9342. "psr/log": "^1|^2|^3",
  9343. "symfony/config": "^6.2|^7.0",
  9344. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9345. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9346. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9347. "symfony/yaml": "^5.4|^6.0|^7.0"
  9348. },
  9349. "type": "library",
  9350. "autoload": {
  9351. "psr-4": {
  9352. "Symfony\\Component\\Routing\\": ""
  9353. },
  9354. "exclude-from-classmap": [
  9355. "/Tests/"
  9356. ]
  9357. },
  9358. "notification-url": "https://packagist.org/downloads/",
  9359. "license": [
  9360. "MIT"
  9361. ],
  9362. "authors": [
  9363. {
  9364. "name": "Fabien Potencier",
  9365. "email": "fabien@symfony.com"
  9366. },
  9367. {
  9368. "name": "Symfony Community",
  9369. "homepage": "https://symfony.com/contributors"
  9370. }
  9371. ],
  9372. "description": "Maps an HTTP request to a set of configuration variables",
  9373. "homepage": "https://symfony.com",
  9374. "keywords": [
  9375. "router",
  9376. "routing",
  9377. "uri",
  9378. "url"
  9379. ],
  9380. "support": {
  9381. "source": "https://github.com/symfony/routing/tree/v6.4.34"
  9382. },
  9383. "funding": [
  9384. {
  9385. "url": "https://symfony.com/sponsor",
  9386. "type": "custom"
  9387. },
  9388. {
  9389. "url": "https://github.com/fabpot",
  9390. "type": "github"
  9391. },
  9392. {
  9393. "url": "https://github.com/nicolas-grekas",
  9394. "type": "github"
  9395. },
  9396. {
  9397. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9398. "type": "tidelift"
  9399. }
  9400. ],
  9401. "time": "2026-02-24T17:34:50+00:00"
  9402. },
  9403. {
  9404. "name": "symfony/serializer",
  9405. "version": "v6.4.35",
  9406. "source": {
  9407. "type": "git",
  9408. "url": "https://github.com/symfony/serializer.git",
  9409. "reference": "fc13cffae86138d3624eff9013724ea1d3e796b4"
  9410. },
  9411. "dist": {
  9412. "type": "zip",
  9413. "url": "https://api.github.com/repos/symfony/serializer/zipball/fc13cffae86138d3624eff9013724ea1d3e796b4",
  9414. "reference": "fc13cffae86138d3624eff9013724ea1d3e796b4",
  9415. "shasum": ""
  9416. },
  9417. "require": {
  9418. "php": ">=8.1",
  9419. "symfony/deprecation-contracts": "^2.5|^3",
  9420. "symfony/polyfill-ctype": "~1.8"
  9421. },
  9422. "conflict": {
  9423. "doctrine/annotations": "<1.12",
  9424. "phpdocumentor/reflection-docblock": "<3.2.2",
  9425. "phpdocumentor/type-resolver": "<1.4.0",
  9426. "symfony/dependency-injection": "<5.4",
  9427. "symfony/property-access": "<5.4",
  9428. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  9429. "symfony/uid": "<5.4",
  9430. "symfony/validator": "<6.4",
  9431. "symfony/yaml": "<5.4"
  9432. },
  9433. "require-dev": {
  9434. "doctrine/annotations": "^1.12|^2",
  9435. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  9436. "seld/jsonlint": "^1.10",
  9437. "symfony/cache": "^5.4|^6.0|^7.0",
  9438. "symfony/config": "^5.4|^6.0|^7.0",
  9439. "symfony/console": "^5.4|^6.0|^7.0",
  9440. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9441. "symfony/error-handler": "^5.4|^6.0|^7.0",
  9442. "symfony/filesystem": "^5.4|^6.0|^7.0",
  9443. "symfony/form": "^5.4|^6.0|^7.0",
  9444. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9445. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9446. "symfony/messenger": "^5.4|^6.0|^7.0",
  9447. "symfony/mime": "^5.4|^6.0|^7.0",
  9448. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  9449. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  9450. "symfony/translation-contracts": "^2.5|^3",
  9451. "symfony/uid": "^5.4|^6.0|^7.0",
  9452. "symfony/validator": "^6.4|^7.0",
  9453. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  9454. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  9455. "symfony/yaml": "^5.4|^6.0|^7.0"
  9456. },
  9457. "type": "library",
  9458. "autoload": {
  9459. "psr-4": {
  9460. "Symfony\\Component\\Serializer\\": ""
  9461. },
  9462. "exclude-from-classmap": [
  9463. "/Tests/"
  9464. ]
  9465. },
  9466. "notification-url": "https://packagist.org/downloads/",
  9467. "license": [
  9468. "MIT"
  9469. ],
  9470. "authors": [
  9471. {
  9472. "name": "Fabien Potencier",
  9473. "email": "fabien@symfony.com"
  9474. },
  9475. {
  9476. "name": "Symfony Community",
  9477. "homepage": "https://symfony.com/contributors"
  9478. }
  9479. ],
  9480. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  9481. "homepage": "https://symfony.com",
  9482. "support": {
  9483. "source": "https://github.com/symfony/serializer/tree/v6.4.35"
  9484. },
  9485. "funding": [
  9486. {
  9487. "url": "https://symfony.com/sponsor",
  9488. "type": "custom"
  9489. },
  9490. {
  9491. "url": "https://github.com/fabpot",
  9492. "type": "github"
  9493. },
  9494. {
  9495. "url": "https://github.com/nicolas-grekas",
  9496. "type": "github"
  9497. },
  9498. {
  9499. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9500. "type": "tidelift"
  9501. }
  9502. ],
  9503. "time": "2026-03-06T11:03:24+00:00"
  9504. },
  9505. {
  9506. "name": "symfony/service-contracts",
  9507. "version": "v3.6.1",
  9508. "source": {
  9509. "type": "git",
  9510. "url": "https://github.com/symfony/service-contracts.git",
  9511. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
  9512. },
  9513. "dist": {
  9514. "type": "zip",
  9515. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
  9516. "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
  9517. "shasum": ""
  9518. },
  9519. "require": {
  9520. "php": ">=8.1",
  9521. "psr/container": "^1.1|^2.0",
  9522. "symfony/deprecation-contracts": "^2.5|^3"
  9523. },
  9524. "conflict": {
  9525. "ext-psr": "<1.1|>=2"
  9526. },
  9527. "type": "library",
  9528. "extra": {
  9529. "thanks": {
  9530. "url": "https://github.com/symfony/contracts",
  9531. "name": "symfony/contracts"
  9532. },
  9533. "branch-alias": {
  9534. "dev-main": "3.6-dev"
  9535. }
  9536. },
  9537. "autoload": {
  9538. "psr-4": {
  9539. "Symfony\\Contracts\\Service\\": ""
  9540. },
  9541. "exclude-from-classmap": [
  9542. "/Test/"
  9543. ]
  9544. },
  9545. "notification-url": "https://packagist.org/downloads/",
  9546. "license": [
  9547. "MIT"
  9548. ],
  9549. "authors": [
  9550. {
  9551. "name": "Nicolas Grekas",
  9552. "email": "p@tchwork.com"
  9553. },
  9554. {
  9555. "name": "Symfony Community",
  9556. "homepage": "https://symfony.com/contributors"
  9557. }
  9558. ],
  9559. "description": "Generic abstractions related to writing services",
  9560. "homepage": "https://symfony.com",
  9561. "keywords": [
  9562. "abstractions",
  9563. "contracts",
  9564. "decoupling",
  9565. "interfaces",
  9566. "interoperability",
  9567. "standards"
  9568. ],
  9569. "support": {
  9570. "source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
  9571. },
  9572. "funding": [
  9573. {
  9574. "url": "https://symfony.com/sponsor",
  9575. "type": "custom"
  9576. },
  9577. {
  9578. "url": "https://github.com/fabpot",
  9579. "type": "github"
  9580. },
  9581. {
  9582. "url": "https://github.com/nicolas-grekas",
  9583. "type": "github"
  9584. },
  9585. {
  9586. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9587. "type": "tidelift"
  9588. }
  9589. ],
  9590. "time": "2025-07-15T11:30:57+00:00"
  9591. },
  9592. {
  9593. "name": "symfony/string",
  9594. "version": "v6.4.34",
  9595. "source": {
  9596. "type": "git",
  9597. "url": "https://github.com/symfony/string.git",
  9598. "reference": "2adaf4106f2ef4c67271971bde6d3fe0a6936432"
  9599. },
  9600. "dist": {
  9601. "type": "zip",
  9602. "url": "https://api.github.com/repos/symfony/string/zipball/2adaf4106f2ef4c67271971bde6d3fe0a6936432",
  9603. "reference": "2adaf4106f2ef4c67271971bde6d3fe0a6936432",
  9604. "shasum": ""
  9605. },
  9606. "require": {
  9607. "php": ">=8.1",
  9608. "symfony/polyfill-ctype": "~1.8",
  9609. "symfony/polyfill-intl-grapheme": "~1.0",
  9610. "symfony/polyfill-intl-normalizer": "~1.0",
  9611. "symfony/polyfill-mbstring": "~1.0"
  9612. },
  9613. "conflict": {
  9614. "symfony/translation-contracts": "<2.5"
  9615. },
  9616. "require-dev": {
  9617. "symfony/http-client": "^5.4|^6.0|^7.0",
  9618. "symfony/intl": "^6.2|^7.0",
  9619. "symfony/translation-contracts": "^2.5|^3.0",
  9620. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  9621. },
  9622. "type": "library",
  9623. "autoload": {
  9624. "files": [
  9625. "Resources/functions.php"
  9626. ],
  9627. "psr-4": {
  9628. "Symfony\\Component\\String\\": ""
  9629. },
  9630. "exclude-from-classmap": [
  9631. "/Tests/"
  9632. ]
  9633. },
  9634. "notification-url": "https://packagist.org/downloads/",
  9635. "license": [
  9636. "MIT"
  9637. ],
  9638. "authors": [
  9639. {
  9640. "name": "Nicolas Grekas",
  9641. "email": "p@tchwork.com"
  9642. },
  9643. {
  9644. "name": "Symfony Community",
  9645. "homepage": "https://symfony.com/contributors"
  9646. }
  9647. ],
  9648. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9649. "homepage": "https://symfony.com",
  9650. "keywords": [
  9651. "grapheme",
  9652. "i18n",
  9653. "string",
  9654. "unicode",
  9655. "utf-8",
  9656. "utf8"
  9657. ],
  9658. "support": {
  9659. "source": "https://github.com/symfony/string/tree/v6.4.34"
  9660. },
  9661. "funding": [
  9662. {
  9663. "url": "https://symfony.com/sponsor",
  9664. "type": "custom"
  9665. },
  9666. {
  9667. "url": "https://github.com/fabpot",
  9668. "type": "github"
  9669. },
  9670. {
  9671. "url": "https://github.com/nicolas-grekas",
  9672. "type": "github"
  9673. },
  9674. {
  9675. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9676. "type": "tidelift"
  9677. }
  9678. ],
  9679. "time": "2026-02-08T20:44:54+00:00"
  9680. },
  9681. {
  9682. "name": "symfony/translation-contracts",
  9683. "version": "v3.6.1",
  9684. "source": {
  9685. "type": "git",
  9686. "url": "https://github.com/symfony/translation-contracts.git",
  9687. "reference": "65a8bc82080447fae78373aa10f8d13b38338977"
  9688. },
  9689. "dist": {
  9690. "type": "zip",
  9691. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/65a8bc82080447fae78373aa10f8d13b38338977",
  9692. "reference": "65a8bc82080447fae78373aa10f8d13b38338977",
  9693. "shasum": ""
  9694. },
  9695. "require": {
  9696. "php": ">=8.1"
  9697. },
  9698. "type": "library",
  9699. "extra": {
  9700. "thanks": {
  9701. "url": "https://github.com/symfony/contracts",
  9702. "name": "symfony/contracts"
  9703. },
  9704. "branch-alias": {
  9705. "dev-main": "3.6-dev"
  9706. }
  9707. },
  9708. "autoload": {
  9709. "psr-4": {
  9710. "Symfony\\Contracts\\Translation\\": ""
  9711. },
  9712. "exclude-from-classmap": [
  9713. "/Test/"
  9714. ]
  9715. },
  9716. "notification-url": "https://packagist.org/downloads/",
  9717. "license": [
  9718. "MIT"
  9719. ],
  9720. "authors": [
  9721. {
  9722. "name": "Nicolas Grekas",
  9723. "email": "p@tchwork.com"
  9724. },
  9725. {
  9726. "name": "Symfony Community",
  9727. "homepage": "https://symfony.com/contributors"
  9728. }
  9729. ],
  9730. "description": "Generic abstractions related to translation",
  9731. "homepage": "https://symfony.com",
  9732. "keywords": [
  9733. "abstractions",
  9734. "contracts",
  9735. "decoupling",
  9736. "interfaces",
  9737. "interoperability",
  9738. "standards"
  9739. ],
  9740. "support": {
  9741. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.1"
  9742. },
  9743. "funding": [
  9744. {
  9745. "url": "https://symfony.com/sponsor",
  9746. "type": "custom"
  9747. },
  9748. {
  9749. "url": "https://github.com/fabpot",
  9750. "type": "github"
  9751. },
  9752. {
  9753. "url": "https://github.com/nicolas-grekas",
  9754. "type": "github"
  9755. },
  9756. {
  9757. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9758. "type": "tidelift"
  9759. }
  9760. ],
  9761. "time": "2025-07-15T13:41:35+00:00"
  9762. },
  9763. {
  9764. "name": "symfony/validator",
  9765. "version": "v6.4.35",
  9766. "source": {
  9767. "type": "git",
  9768. "url": "https://github.com/symfony/validator.git",
  9769. "reference": "9dc02b6c7502f7c4b68a741d2826bbec061c5953"
  9770. },
  9771. "dist": {
  9772. "type": "zip",
  9773. "url": "https://api.github.com/repos/symfony/validator/zipball/9dc02b6c7502f7c4b68a741d2826bbec061c5953",
  9774. "reference": "9dc02b6c7502f7c4b68a741d2826bbec061c5953",
  9775. "shasum": ""
  9776. },
  9777. "require": {
  9778. "php": ">=8.1",
  9779. "symfony/deprecation-contracts": "^2.5|^3",
  9780. "symfony/polyfill-ctype": "~1.8",
  9781. "symfony/polyfill-mbstring": "~1.0",
  9782. "symfony/polyfill-php83": "^1.27",
  9783. "symfony/translation-contracts": "^2.5|^3"
  9784. },
  9785. "conflict": {
  9786. "doctrine/annotations": "<1.13",
  9787. "doctrine/lexer": "<1.1",
  9788. "symfony/dependency-injection": "<5.4",
  9789. "symfony/expression-language": "<5.4",
  9790. "symfony/http-kernel": "<5.4",
  9791. "symfony/intl": "<5.4",
  9792. "symfony/property-info": "<5.4",
  9793. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  9794. "symfony/yaml": "<5.4"
  9795. },
  9796. "require-dev": {
  9797. "doctrine/annotations": "^1.13|^2",
  9798. "egulias/email-validator": "^2.1.10|^3|^4",
  9799. "symfony/cache": "^5.4|^6.0|^7.0",
  9800. "symfony/config": "^5.4|^6.0|^7.0",
  9801. "symfony/console": "^5.4|^6.0|^7.0",
  9802. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  9803. "symfony/expression-language": "^5.4|^6.0|^7.0",
  9804. "symfony/finder": "^5.4|^6.0|^7.0",
  9805. "symfony/http-client": "^5.4|^6.0|^7.0",
  9806. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  9807. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9808. "symfony/intl": "^5.4|^6.0|^7.0",
  9809. "symfony/mime": "^5.4|^6.0|^7.0",
  9810. "symfony/property-access": "^5.4|^6.0|^7.0",
  9811. "symfony/property-info": "^5.4|^6.0|^7.0",
  9812. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  9813. "symfony/yaml": "^5.4|^6.0|^7.0"
  9814. },
  9815. "type": "library",
  9816. "autoload": {
  9817. "psr-4": {
  9818. "Symfony\\Component\\Validator\\": ""
  9819. },
  9820. "exclude-from-classmap": [
  9821. "/Tests/",
  9822. "/Resources/bin/"
  9823. ]
  9824. },
  9825. "notification-url": "https://packagist.org/downloads/",
  9826. "license": [
  9827. "MIT"
  9828. ],
  9829. "authors": [
  9830. {
  9831. "name": "Fabien Potencier",
  9832. "email": "fabien@symfony.com"
  9833. },
  9834. {
  9835. "name": "Symfony Community",
  9836. "homepage": "https://symfony.com/contributors"
  9837. }
  9838. ],
  9839. "description": "Provides tools to validate values",
  9840. "homepage": "https://symfony.com",
  9841. "support": {
  9842. "source": "https://github.com/symfony/validator/tree/v6.4.35"
  9843. },
  9844. "funding": [
  9845. {
  9846. "url": "https://symfony.com/sponsor",
  9847. "type": "custom"
  9848. },
  9849. {
  9850. "url": "https://github.com/fabpot",
  9851. "type": "github"
  9852. },
  9853. {
  9854. "url": "https://github.com/nicolas-grekas",
  9855. "type": "github"
  9856. },
  9857. {
  9858. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9859. "type": "tidelift"
  9860. }
  9861. ],
  9862. "time": "2026-03-02T17:53:19+00:00"
  9863. },
  9864. {
  9865. "name": "symfony/var-dumper",
  9866. "version": "v6.4.32",
  9867. "source": {
  9868. "type": "git",
  9869. "url": "https://github.com/symfony/var-dumper.git",
  9870. "reference": "131fc9915e0343052af5ed5040401b481ca192aa"
  9871. },
  9872. "dist": {
  9873. "type": "zip",
  9874. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/131fc9915e0343052af5ed5040401b481ca192aa",
  9875. "reference": "131fc9915e0343052af5ed5040401b481ca192aa",
  9876. "shasum": ""
  9877. },
  9878. "require": {
  9879. "php": ">=8.1",
  9880. "symfony/deprecation-contracts": "^2.5|^3",
  9881. "symfony/polyfill-mbstring": "~1.0"
  9882. },
  9883. "conflict": {
  9884. "symfony/console": "<5.4"
  9885. },
  9886. "require-dev": {
  9887. "symfony/console": "^5.4|^6.0|^7.0",
  9888. "symfony/error-handler": "^6.3|^7.0",
  9889. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  9890. "symfony/process": "^5.4|^6.0|^7.0",
  9891. "symfony/uid": "^5.4|^6.0|^7.0",
  9892. "twig/twig": "^2.13|^3.0.4"
  9893. },
  9894. "bin": [
  9895. "Resources/bin/var-dump-server"
  9896. ],
  9897. "type": "library",
  9898. "autoload": {
  9899. "files": [
  9900. "Resources/functions/dump.php"
  9901. ],
  9902. "psr-4": {
  9903. "Symfony\\Component\\VarDumper\\": ""
  9904. },
  9905. "exclude-from-classmap": [
  9906. "/Tests/"
  9907. ]
  9908. },
  9909. "notification-url": "https://packagist.org/downloads/",
  9910. "license": [
  9911. "MIT"
  9912. ],
  9913. "authors": [
  9914. {
  9915. "name": "Nicolas Grekas",
  9916. "email": "p@tchwork.com"
  9917. },
  9918. {
  9919. "name": "Symfony Community",
  9920. "homepage": "https://symfony.com/contributors"
  9921. }
  9922. ],
  9923. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9924. "homepage": "https://symfony.com",
  9925. "keywords": [
  9926. "debug",
  9927. "dump"
  9928. ],
  9929. "support": {
  9930. "source": "https://github.com/symfony/var-dumper/tree/v6.4.32"
  9931. },
  9932. "funding": [
  9933. {
  9934. "url": "https://symfony.com/sponsor",
  9935. "type": "custom"
  9936. },
  9937. {
  9938. "url": "https://github.com/fabpot",
  9939. "type": "github"
  9940. },
  9941. {
  9942. "url": "https://github.com/nicolas-grekas",
  9943. "type": "github"
  9944. },
  9945. {
  9946. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9947. "type": "tidelift"
  9948. }
  9949. ],
  9950. "time": "2026-01-01T13:34:06+00:00"
  9951. },
  9952. {
  9953. "name": "symfony/var-exporter",
  9954. "version": "v6.4.26",
  9955. "source": {
  9956. "type": "git",
  9957. "url": "https://github.com/symfony/var-exporter.git",
  9958. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc"
  9959. },
  9960. "dist": {
  9961. "type": "zip",
  9962. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/466fcac5fa2e871f83d31173f80e9c2684743bfc",
  9963. "reference": "466fcac5fa2e871f83d31173f80e9c2684743bfc",
  9964. "shasum": ""
  9965. },
  9966. "require": {
  9967. "php": ">=8.1",
  9968. "symfony/deprecation-contracts": "^2.5|^3"
  9969. },
  9970. "require-dev": {
  9971. "symfony/property-access": "^6.4|^7.0",
  9972. "symfony/serializer": "^6.4|^7.0",
  9973. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  9974. },
  9975. "type": "library",
  9976. "autoload": {
  9977. "psr-4": {
  9978. "Symfony\\Component\\VarExporter\\": ""
  9979. },
  9980. "exclude-from-classmap": [
  9981. "/Tests/"
  9982. ]
  9983. },
  9984. "notification-url": "https://packagist.org/downloads/",
  9985. "license": [
  9986. "MIT"
  9987. ],
  9988. "authors": [
  9989. {
  9990. "name": "Nicolas Grekas",
  9991. "email": "p@tchwork.com"
  9992. },
  9993. {
  9994. "name": "Symfony Community",
  9995. "homepage": "https://symfony.com/contributors"
  9996. }
  9997. ],
  9998. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  9999. "homepage": "https://symfony.com",
  10000. "keywords": [
  10001. "clone",
  10002. "construct",
  10003. "export",
  10004. "hydrate",
  10005. "instantiate",
  10006. "lazy-loading",
  10007. "proxy",
  10008. "serialize"
  10009. ],
  10010. "support": {
  10011. "source": "https://github.com/symfony/var-exporter/tree/v6.4.26"
  10012. },
  10013. "funding": [
  10014. {
  10015. "url": "https://symfony.com/sponsor",
  10016. "type": "custom"
  10017. },
  10018. {
  10019. "url": "https://github.com/fabpot",
  10020. "type": "github"
  10021. },
  10022. {
  10023. "url": "https://github.com/nicolas-grekas",
  10024. "type": "github"
  10025. },
  10026. {
  10027. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10028. "type": "tidelift"
  10029. }
  10030. ],
  10031. "time": "2025-09-11T09:57:09+00:00"
  10032. },
  10033. {
  10034. "name": "symfony/yaml",
  10035. "version": "v6.4.34",
  10036. "source": {
  10037. "type": "git",
  10038. "url": "https://github.com/symfony/yaml.git",
  10039. "reference": "7bca30dabed7900a08c5ad4f1d6483f881a64d0f"
  10040. },
  10041. "dist": {
  10042. "type": "zip",
  10043. "url": "https://api.github.com/repos/symfony/yaml/zipball/7bca30dabed7900a08c5ad4f1d6483f881a64d0f",
  10044. "reference": "7bca30dabed7900a08c5ad4f1d6483f881a64d0f",
  10045. "shasum": ""
  10046. },
  10047. "require": {
  10048. "php": ">=8.1",
  10049. "symfony/deprecation-contracts": "^2.5|^3",
  10050. "symfony/polyfill-ctype": "^1.8"
  10051. },
  10052. "conflict": {
  10053. "symfony/console": "<5.4"
  10054. },
  10055. "require-dev": {
  10056. "symfony/console": "^5.4|^6.0|^7.0"
  10057. },
  10058. "bin": [
  10059. "Resources/bin/yaml-lint"
  10060. ],
  10061. "type": "library",
  10062. "autoload": {
  10063. "psr-4": {
  10064. "Symfony\\Component\\Yaml\\": ""
  10065. },
  10066. "exclude-from-classmap": [
  10067. "/Tests/"
  10068. ]
  10069. },
  10070. "notification-url": "https://packagist.org/downloads/",
  10071. "license": [
  10072. "MIT"
  10073. ],
  10074. "authors": [
  10075. {
  10076. "name": "Fabien Potencier",
  10077. "email": "fabien@symfony.com"
  10078. },
  10079. {
  10080. "name": "Symfony Community",
  10081. "homepage": "https://symfony.com/contributors"
  10082. }
  10083. ],
  10084. "description": "Loads and dumps YAML files",
  10085. "homepage": "https://symfony.com",
  10086. "support": {
  10087. "source": "https://github.com/symfony/yaml/tree/v6.4.34"
  10088. },
  10089. "funding": [
  10090. {
  10091. "url": "https://symfony.com/sponsor",
  10092. "type": "custom"
  10093. },
  10094. {
  10095. "url": "https://github.com/fabpot",
  10096. "type": "github"
  10097. },
  10098. {
  10099. "url": "https://github.com/nicolas-grekas",
  10100. "type": "github"
  10101. },
  10102. {
  10103. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10104. "type": "tidelift"
  10105. }
  10106. ],
  10107. "time": "2026-02-06T18:32:11+00:00"
  10108. },
  10109. {
  10110. "name": "twig/twig",
  10111. "version": "v3.22.2",
  10112. "source": {
  10113. "type": "git",
  10114. "url": "https://github.com/twigphp/Twig.git",
  10115. "reference": "946ddeafa3c9f4ce279d1f34051af041db0e16f2"
  10116. },
  10117. "dist": {
  10118. "type": "zip",
  10119. "url": "https://api.github.com/repos/twigphp/Twig/zipball/946ddeafa3c9f4ce279d1f34051af041db0e16f2",
  10120. "reference": "946ddeafa3c9f4ce279d1f34051af041db0e16f2",
  10121. "shasum": ""
  10122. },
  10123. "require": {
  10124. "php": ">=8.1.0",
  10125. "symfony/deprecation-contracts": "^2.5|^3",
  10126. "symfony/polyfill-ctype": "^1.8",
  10127. "symfony/polyfill-mbstring": "^1.3"
  10128. },
  10129. "require-dev": {
  10130. "phpstan/phpstan": "^2.0",
  10131. "psr/container": "^1.0|^2.0",
  10132. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  10133. },
  10134. "type": "library",
  10135. "autoload": {
  10136. "files": [
  10137. "src/Resources/core.php",
  10138. "src/Resources/debug.php",
  10139. "src/Resources/escaper.php",
  10140. "src/Resources/string_loader.php"
  10141. ],
  10142. "psr-4": {
  10143. "Twig\\": "src/"
  10144. }
  10145. },
  10146. "notification-url": "https://packagist.org/downloads/",
  10147. "license": [
  10148. "BSD-3-Clause"
  10149. ],
  10150. "authors": [
  10151. {
  10152. "name": "Fabien Potencier",
  10153. "email": "fabien@symfony.com",
  10154. "homepage": "http://fabien.potencier.org",
  10155. "role": "Lead Developer"
  10156. },
  10157. {
  10158. "name": "Twig Team",
  10159. "role": "Contributors"
  10160. },
  10161. {
  10162. "name": "Armin Ronacher",
  10163. "email": "armin.ronacher@active-4.com",
  10164. "role": "Project Founder"
  10165. }
  10166. ],
  10167. "description": "Twig, the flexible, fast, and secure template language for PHP",
  10168. "homepage": "https://twig.symfony.com",
  10169. "keywords": [
  10170. "templating"
  10171. ],
  10172. "support": {
  10173. "issues": "https://github.com/twigphp/Twig/issues",
  10174. "source": "https://github.com/twigphp/Twig/tree/v3.22.2"
  10175. },
  10176. "funding": [
  10177. {
  10178. "url": "https://github.com/fabpot",
  10179. "type": "github"
  10180. },
  10181. {
  10182. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  10183. "type": "tidelift"
  10184. }
  10185. ],
  10186. "time": "2025-12-14T11:28:47+00:00"
  10187. },
  10188. {
  10189. "name": "vlucas/phpdotenv",
  10190. "version": "v2.6.9",
  10191. "source": {
  10192. "type": "git",
  10193. "url": "https://github.com/vlucas/phpdotenv.git",
  10194. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141"
  10195. },
  10196. "dist": {
  10197. "type": "zip",
  10198. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10199. "reference": "2e93cc98e2e8e869f8d9cfa61bb3a99ba4fc4141",
  10200. "shasum": ""
  10201. },
  10202. "require": {
  10203. "php": "^5.3.9 || ^7.0 || ^8.0",
  10204. "symfony/polyfill-ctype": "^1.17"
  10205. },
  10206. "require-dev": {
  10207. "ext-filter": "*",
  10208. "ext-pcre": "*",
  10209. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.21"
  10210. },
  10211. "suggest": {
  10212. "ext-filter": "Required to use the boolean validator.",
  10213. "ext-pcre": "Required to use most of the library."
  10214. },
  10215. "type": "library",
  10216. "extra": {
  10217. "branch-alias": {
  10218. "dev-master": "2.6-dev"
  10219. }
  10220. },
  10221. "autoload": {
  10222. "psr-4": {
  10223. "Dotenv\\": "src/"
  10224. }
  10225. },
  10226. "notification-url": "https://packagist.org/downloads/",
  10227. "license": [
  10228. "BSD-3-Clause"
  10229. ],
  10230. "authors": [
  10231. {
  10232. "name": "Graham Campbell",
  10233. "email": "hello@gjcampbell.co.uk",
  10234. "homepage": "https://github.com/GrahamCampbell"
  10235. },
  10236. {
  10237. "name": "Vance Lucas",
  10238. "email": "vance@vancelucas.com",
  10239. "homepage": "https://github.com/vlucas"
  10240. }
  10241. ],
  10242. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10243. "keywords": [
  10244. "dotenv",
  10245. "env",
  10246. "environment"
  10247. ],
  10248. "support": {
  10249. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10250. "source": "https://github.com/vlucas/phpdotenv/tree/v2.6.9"
  10251. },
  10252. "funding": [
  10253. {
  10254. "url": "https://github.com/GrahamCampbell",
  10255. "type": "github"
  10256. },
  10257. {
  10258. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10259. "type": "tidelift"
  10260. }
  10261. ],
  10262. "time": "2021-12-12T22:59:22+00:00"
  10263. },
  10264. {
  10265. "name": "webflo/drupal-finder",
  10266. "version": "1.3.1",
  10267. "source": {
  10268. "type": "git",
  10269. "url": "https://github.com/webflo/drupal-finder.git",
  10270. "reference": "73045060b0894c77962a10cff047f72872d8810c"
  10271. },
  10272. "dist": {
  10273. "type": "zip",
  10274. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
  10275. "reference": "73045060b0894c77962a10cff047f72872d8810c",
  10276. "shasum": ""
  10277. },
  10278. "require": {
  10279. "composer-runtime-api": "^2.2",
  10280. "php": ">=8.1"
  10281. },
  10282. "require-dev": {
  10283. "mikey179/vfsstream": "^1.6",
  10284. "phpunit/phpunit": "^10.4",
  10285. "symfony/process": "^6.4"
  10286. },
  10287. "type": "library",
  10288. "autoload": {
  10289. "psr-4": {
  10290. "DrupalFinder\\": "src/"
  10291. }
  10292. },
  10293. "notification-url": "https://packagist.org/downloads/",
  10294. "license": [
  10295. "GPL-2.0-or-later"
  10296. ],
  10297. "authors": [
  10298. {
  10299. "name": "Florian Weber",
  10300. "email": "florian@webflo.org"
  10301. }
  10302. ],
  10303. "description": "Helper class to locate a Drupal installation.",
  10304. "support": {
  10305. "issues": "https://github.com/webflo/drupal-finder/issues",
  10306. "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
  10307. },
  10308. "time": "2024-06-28T13:45:36+00:00"
  10309. },
  10310. {
  10311. "name": "webmozart/assert",
  10312. "version": "1.12.1",
  10313. "source": {
  10314. "type": "git",
  10315. "url": "https://github.com/webmozarts/assert.git",
  10316. "reference": "9be6926d8b485f55b9229203f962b51ed377ba68"
  10317. },
  10318. "dist": {
  10319. "type": "zip",
  10320. "url": "https://api.github.com/repos/webmozarts/assert/zipball/9be6926d8b485f55b9229203f962b51ed377ba68",
  10321. "reference": "9be6926d8b485f55b9229203f962b51ed377ba68",
  10322. "shasum": ""
  10323. },
  10324. "require": {
  10325. "ext-ctype": "*",
  10326. "ext-date": "*",
  10327. "ext-filter": "*",
  10328. "php": "^7.2 || ^8.0"
  10329. },
  10330. "suggest": {
  10331. "ext-intl": "",
  10332. "ext-simplexml": "",
  10333. "ext-spl": ""
  10334. },
  10335. "type": "library",
  10336. "extra": {
  10337. "branch-alias": {
  10338. "dev-master": "1.10-dev"
  10339. }
  10340. },
  10341. "autoload": {
  10342. "psr-4": {
  10343. "Webmozart\\Assert\\": "src/"
  10344. }
  10345. },
  10346. "notification-url": "https://packagist.org/downloads/",
  10347. "license": [
  10348. "MIT"
  10349. ],
  10350. "authors": [
  10351. {
  10352. "name": "Bernhard Schussek",
  10353. "email": "bschussek@gmail.com"
  10354. }
  10355. ],
  10356. "description": "Assertions to validate method input/output with nice error messages.",
  10357. "keywords": [
  10358. "assert",
  10359. "check",
  10360. "validate"
  10361. ],
  10362. "support": {
  10363. "issues": "https://github.com/webmozarts/assert/issues",
  10364. "source": "https://github.com/webmozarts/assert/tree/1.12.1"
  10365. },
  10366. "time": "2025-10-29T15:56:20+00:00"
  10367. },
  10368. {
  10369. "name": "webmozart/path-util",
  10370. "version": "2.3.0",
  10371. "source": {
  10372. "type": "git",
  10373. "url": "https://github.com/webmozart/path-util.git",
  10374. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725"
  10375. },
  10376. "dist": {
  10377. "type": "zip",
  10378. "url": "https://api.github.com/repos/webmozart/path-util/zipball/d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10379. "reference": "d939f7edc24c9a1bb9c0dee5cb05d8e859490725",
  10380. "shasum": ""
  10381. },
  10382. "require": {
  10383. "php": ">=5.3.3",
  10384. "webmozart/assert": "~1.0"
  10385. },
  10386. "require-dev": {
  10387. "phpunit/phpunit": "^4.6",
  10388. "sebastian/version": "^1.0.1"
  10389. },
  10390. "type": "library",
  10391. "extra": {
  10392. "branch-alias": {
  10393. "dev-master": "2.3-dev"
  10394. }
  10395. },
  10396. "autoload": {
  10397. "psr-4": {
  10398. "Webmozart\\PathUtil\\": "src/"
  10399. }
  10400. },
  10401. "notification-url": "https://packagist.org/downloads/",
  10402. "license": [
  10403. "MIT"
  10404. ],
  10405. "authors": [
  10406. {
  10407. "name": "Bernhard Schussek",
  10408. "email": "bschussek@gmail.com"
  10409. }
  10410. ],
  10411. "description": "A robust cross-platform utility for normalizing, comparing and modifying file paths.",
  10412. "support": {
  10413. "issues": "https://github.com/webmozart/path-util/issues",
  10414. "source": "https://github.com/webmozart/path-util/tree/2.3.0"
  10415. },
  10416. "abandoned": "symfony/filesystem",
  10417. "time": "2015-12-17T08:42:14+00:00"
  10418. }
  10419. ],
  10420. "packages-dev": [],
  10421. "aliases": [],
  10422. "minimum-stability": "dev",
  10423. "stability-flags": {
  10424. "drupal/basic": 15,
  10425. "drupal/bulkdelete": 20,
  10426. "drupal/config_update": 15,
  10427. "drupal/context": 5,
  10428. "drupal/domain": 10,
  10429. "drupal/filefield_sources": 20
  10430. },
  10431. "prefer-stable": true,
  10432. "prefer-lowest": false,
  10433. "platform": {
  10434. "php": ">=5.6"
  10435. },
  10436. "platform-dev": {},
  10437. "plugin-api-version": "2.9.0"
  10438. }