composer.lock 502 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678
  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": "0b2d0a5d52f1ae14e718bd00953d17bc",
  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": "clue/stream-filter",
  127. "version": "v1.7.0",
  128. "source": {
  129. "type": "git",
  130. "url": "https://github.com/clue/stream-filter.git",
  131. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7"
  132. },
  133. "dist": {
  134. "type": "zip",
  135. "url": "https://api.github.com/repos/clue/stream-filter/zipball/049509fef80032cb3f051595029ab75b49a3c2f7",
  136. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7",
  137. "shasum": ""
  138. },
  139. "require": {
  140. "php": ">=5.3"
  141. },
  142. "require-dev": {
  143. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  144. },
  145. "type": "library",
  146. "autoload": {
  147. "files": [
  148. "src/functions_include.php"
  149. ],
  150. "psr-4": {
  151. "Clue\\StreamFilter\\": "src/"
  152. }
  153. },
  154. "notification-url": "https://packagist.org/downloads/",
  155. "license": [
  156. "MIT"
  157. ],
  158. "authors": [
  159. {
  160. "name": "Christian Lück",
  161. "email": "christian@clue.engineering"
  162. }
  163. ],
  164. "description": "A simple and modern approach to stream filtering in PHP",
  165. "homepage": "https://github.com/clue/stream-filter",
  166. "keywords": [
  167. "bucket brigade",
  168. "callback",
  169. "filter",
  170. "php_user_filter",
  171. "stream",
  172. "stream_filter_append",
  173. "stream_filter_register"
  174. ],
  175. "support": {
  176. "issues": "https://github.com/clue/stream-filter/issues",
  177. "source": "https://github.com/clue/stream-filter/tree/v1.7.0"
  178. },
  179. "funding": [
  180. {
  181. "url": "https://clue.engineering/support",
  182. "type": "custom"
  183. },
  184. {
  185. "url": "https://github.com/clue",
  186. "type": "github"
  187. }
  188. ],
  189. "time": "2023-12-20T15:40:13+00:00"
  190. },
  191. {
  192. "name": "commerceguys/addressing",
  193. "version": "v1.4.2",
  194. "source": {
  195. "type": "git",
  196. "url": "https://github.com/commerceguys/addressing.git",
  197. "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308"
  198. },
  199. "dist": {
  200. "type": "zip",
  201. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
  202. "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
  203. "shasum": ""
  204. },
  205. "require": {
  206. "doctrine/collections": "^1.2 || ^2.0",
  207. "php": ">=7.3"
  208. },
  209. "require-dev": {
  210. "ext-json": "*",
  211. "mikey179/vfsstream": "^1.6.10",
  212. "phpunit/phpunit": "^9.5",
  213. "squizlabs/php_codesniffer": "^3.6",
  214. "symfony/validator": "^4.4 || ^5.4 || ^6.0"
  215. },
  216. "suggest": {
  217. "symfony/validator": "to validate addresses"
  218. },
  219. "type": "library",
  220. "extra": {
  221. "branch-alias": {
  222. "dev-master": "1.x-dev"
  223. }
  224. },
  225. "autoload": {
  226. "psr-4": {
  227. "CommerceGuys\\Addressing\\": "src"
  228. }
  229. },
  230. "notification-url": "https://packagist.org/downloads/",
  231. "license": [
  232. "MIT"
  233. ],
  234. "authors": [
  235. {
  236. "name": "Bojan Zivanovic"
  237. },
  238. {
  239. "name": "Damien Tournoud"
  240. }
  241. ],
  242. "description": "Addressing library powered by CLDR and Google's address data.",
  243. "keywords": [
  244. "address",
  245. "internationalization",
  246. "localization",
  247. "postal"
  248. ],
  249. "support": {
  250. "issues": "https://github.com/commerceguys/addressing/issues",
  251. "source": "https://github.com/commerceguys/addressing/tree/v1.4.2"
  252. },
  253. "time": "2023-02-15T10:11:14+00:00"
  254. },
  255. {
  256. "name": "components/highlightjs",
  257. "version": "9.7.0",
  258. "dist": {
  259. "type": "zip",
  260. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip"
  261. },
  262. "type": "drupal-library"
  263. },
  264. {
  265. "name": "composer/installers",
  266. "version": "v1.12.0",
  267. "source": {
  268. "type": "git",
  269. "url": "https://github.com/composer/installers.git",
  270. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19"
  271. },
  272. "dist": {
  273. "type": "zip",
  274. "url": "https://api.github.com/repos/composer/installers/zipball/d20a64ed3c94748397ff5973488761b22f6d3f19",
  275. "reference": "d20a64ed3c94748397ff5973488761b22f6d3f19",
  276. "shasum": ""
  277. },
  278. "require": {
  279. "composer-plugin-api": "^1.0 || ^2.0"
  280. },
  281. "replace": {
  282. "roundcube/plugin-installer": "*",
  283. "shama/baton": "*"
  284. },
  285. "require-dev": {
  286. "composer/composer": "1.6.* || ^2.0",
  287. "composer/semver": "^1 || ^3",
  288. "phpstan/phpstan": "^0.12.55",
  289. "phpstan/phpstan-phpunit": "^0.12.16",
  290. "symfony/phpunit-bridge": "^4.2 || ^5",
  291. "symfony/process": "^2.3"
  292. },
  293. "type": "composer-plugin",
  294. "extra": {
  295. "class": "Composer\\Installers\\Plugin",
  296. "branch-alias": {
  297. "dev-main": "1.x-dev"
  298. }
  299. },
  300. "autoload": {
  301. "psr-4": {
  302. "Composer\\Installers\\": "src/Composer/Installers"
  303. }
  304. },
  305. "notification-url": "https://packagist.org/downloads/",
  306. "license": [
  307. "MIT"
  308. ],
  309. "authors": [
  310. {
  311. "name": "Kyle Robinson Young",
  312. "email": "kyle@dontkry.com",
  313. "homepage": "https://github.com/shama"
  314. }
  315. ],
  316. "description": "A multi-framework Composer library installer",
  317. "homepage": "https://composer.github.io/installers/",
  318. "keywords": [
  319. "Craft",
  320. "Dolibarr",
  321. "Eliasis",
  322. "Hurad",
  323. "ImageCMS",
  324. "Kanboard",
  325. "Lan Management System",
  326. "MODX Evo",
  327. "MantisBT",
  328. "Mautic",
  329. "Maya",
  330. "OXID",
  331. "Plentymarkets",
  332. "Porto",
  333. "RadPHP",
  334. "SMF",
  335. "Starbug",
  336. "Thelia",
  337. "Whmcs",
  338. "WolfCMS",
  339. "agl",
  340. "aimeos",
  341. "annotatecms",
  342. "attogram",
  343. "bitrix",
  344. "cakephp",
  345. "chef",
  346. "cockpit",
  347. "codeigniter",
  348. "concrete5",
  349. "croogo",
  350. "dokuwiki",
  351. "drupal",
  352. "eZ Platform",
  353. "elgg",
  354. "expressionengine",
  355. "fuelphp",
  356. "grav",
  357. "installer",
  358. "itop",
  359. "joomla",
  360. "known",
  361. "kohana",
  362. "laravel",
  363. "lavalite",
  364. "lithium",
  365. "magento",
  366. "majima",
  367. "mako",
  368. "mediawiki",
  369. "miaoxing",
  370. "modulework",
  371. "modx",
  372. "moodle",
  373. "osclass",
  374. "pantheon",
  375. "phpbb",
  376. "piwik",
  377. "ppi",
  378. "processwire",
  379. "puppet",
  380. "pxcms",
  381. "reindex",
  382. "roundcube",
  383. "shopware",
  384. "silverstripe",
  385. "sydes",
  386. "sylius",
  387. "symfony",
  388. "tastyigniter",
  389. "typo3",
  390. "wordpress",
  391. "yawik",
  392. "zend",
  393. "zikula"
  394. ],
  395. "support": {
  396. "issues": "https://github.com/composer/installers/issues",
  397. "source": "https://github.com/composer/installers/tree/v1.12.0"
  398. },
  399. "funding": [
  400. {
  401. "url": "https://packagist.com",
  402. "type": "custom"
  403. },
  404. {
  405. "url": "https://github.com/composer",
  406. "type": "github"
  407. },
  408. {
  409. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  410. "type": "tidelift"
  411. }
  412. ],
  413. "time": "2021-09-13T08:19:44+00:00"
  414. },
  415. {
  416. "name": "composer/semver",
  417. "version": "3.4.3",
  418. "source": {
  419. "type": "git",
  420. "url": "https://github.com/composer/semver.git",
  421. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12"
  422. },
  423. "dist": {
  424. "type": "zip",
  425. "url": "https://api.github.com/repos/composer/semver/zipball/4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  426. "reference": "4313d26ada5e0c4edfbd1dc481a92ff7bff91f12",
  427. "shasum": ""
  428. },
  429. "require": {
  430. "php": "^5.3.2 || ^7.0 || ^8.0"
  431. },
  432. "require-dev": {
  433. "phpstan/phpstan": "^1.11",
  434. "symfony/phpunit-bridge": "^3 || ^7"
  435. },
  436. "type": "library",
  437. "extra": {
  438. "branch-alias": {
  439. "dev-main": "3.x-dev"
  440. }
  441. },
  442. "autoload": {
  443. "psr-4": {
  444. "Composer\\Semver\\": "src"
  445. }
  446. },
  447. "notification-url": "https://packagist.org/downloads/",
  448. "license": [
  449. "MIT"
  450. ],
  451. "authors": [
  452. {
  453. "name": "Nils Adermann",
  454. "email": "naderman@naderman.de",
  455. "homepage": "http://www.naderman.de"
  456. },
  457. {
  458. "name": "Jordi Boggiano",
  459. "email": "j.boggiano@seld.be",
  460. "homepage": "http://seld.be"
  461. },
  462. {
  463. "name": "Rob Bast",
  464. "email": "rob.bast@gmail.com",
  465. "homepage": "http://robbast.nl"
  466. }
  467. ],
  468. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  469. "keywords": [
  470. "semantic",
  471. "semver",
  472. "validation",
  473. "versioning"
  474. ],
  475. "support": {
  476. "irc": "ircs://irc.libera.chat:6697/composer",
  477. "issues": "https://github.com/composer/semver/issues",
  478. "source": "https://github.com/composer/semver/tree/3.4.3"
  479. },
  480. "funding": [
  481. {
  482. "url": "https://packagist.com",
  483. "type": "custom"
  484. },
  485. {
  486. "url": "https://github.com/composer",
  487. "type": "github"
  488. },
  489. {
  490. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  491. "type": "tidelift"
  492. }
  493. ],
  494. "time": "2024-09-19T14:15:21+00:00"
  495. },
  496. {
  497. "name": "consolidation/annotated-command",
  498. "version": "4.10.2",
  499. "source": {
  500. "type": "git",
  501. "url": "https://github.com/consolidation/annotated-command.git",
  502. "reference": "e550ea4f177f199e0e9451168342bf3f321d92b0"
  503. },
  504. "dist": {
  505. "type": "zip",
  506. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/e550ea4f177f199e0e9451168342bf3f321d92b0",
  507. "reference": "e550ea4f177f199e0e9451168342bf3f321d92b0",
  508. "shasum": ""
  509. },
  510. "require": {
  511. "consolidation/output-formatters": "^4.3.1",
  512. "php": ">=7.1.3",
  513. "psr/log": "^1 || ^2 || ^3",
  514. "symfony/console": "^4.4.8 || ^5 || ^6 || ^7",
  515. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6 || ^7",
  516. "symfony/finder": "^4.4.8 || ^5 || ^6 || ^7"
  517. },
  518. "require-dev": {
  519. "composer-runtime-api": "^2.0",
  520. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  521. "squizlabs/php_codesniffer": "^3",
  522. "yoast/phpunit-polyfills": "^0.2.0"
  523. },
  524. "type": "library",
  525. "extra": {
  526. "branch-alias": {
  527. "dev-main": "4.x-dev"
  528. }
  529. },
  530. "autoload": {
  531. "psr-4": {
  532. "Consolidation\\AnnotatedCommand\\": "src"
  533. }
  534. },
  535. "notification-url": "https://packagist.org/downloads/",
  536. "license": [
  537. "MIT"
  538. ],
  539. "authors": [
  540. {
  541. "name": "Greg Anderson",
  542. "email": "greg.1.anderson@greenknowe.org"
  543. }
  544. ],
  545. "description": "Initialize Symfony Console commands from annotated command class methods.",
  546. "support": {
  547. "issues": "https://github.com/consolidation/annotated-command/issues",
  548. "source": "https://github.com/consolidation/annotated-command/tree/4.10.2"
  549. },
  550. "time": "2025-07-16T20:54:09+00:00"
  551. },
  552. {
  553. "name": "consolidation/config",
  554. "version": "2.1.2",
  555. "source": {
  556. "type": "git",
  557. "url": "https://github.com/consolidation/config.git",
  558. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae"
  559. },
  560. "dist": {
  561. "type": "zip",
  562. "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae",
  563. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae",
  564. "shasum": ""
  565. },
  566. "require": {
  567. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  568. "grasmash/expander": "^2.0.1 || ^3",
  569. "php": ">=7.1.3",
  570. "symfony/event-dispatcher": "^4 || ^5 || ^6"
  571. },
  572. "require-dev": {
  573. "ext-json": "*",
  574. "phpunit/phpunit": ">=7.5.20",
  575. "squizlabs/php_codesniffer": "^3",
  576. "symfony/console": "^4 || ^5 || ^6",
  577. "symfony/yaml": "^4 || ^5 || ^6",
  578. "yoast/phpunit-polyfills": "^1"
  579. },
  580. "suggest": {
  581. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  582. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  583. },
  584. "type": "library",
  585. "extra": {
  586. "branch-alias": {
  587. "dev-main": "2.x-dev"
  588. }
  589. },
  590. "autoload": {
  591. "psr-4": {
  592. "Consolidation\\Config\\": "src"
  593. }
  594. },
  595. "notification-url": "https://packagist.org/downloads/",
  596. "license": [
  597. "MIT"
  598. ],
  599. "authors": [
  600. {
  601. "name": "Greg Anderson",
  602. "email": "greg.1.anderson@greenknowe.org"
  603. }
  604. ],
  605. "description": "Provide configuration services for a commandline tool.",
  606. "support": {
  607. "issues": "https://github.com/consolidation/config/issues",
  608. "source": "https://github.com/consolidation/config/tree/2.1.2"
  609. },
  610. "time": "2022-10-06T17:48:03+00:00"
  611. },
  612. {
  613. "name": "consolidation/filter-via-dot-access-data",
  614. "version": "2.0.2",
  615. "source": {
  616. "type": "git",
  617. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  618. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b"
  619. },
  620. "dist": {
  621. "type": "zip",
  622. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  623. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  624. "shasum": ""
  625. },
  626. "require": {
  627. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  628. "php": ">=7.1.3"
  629. },
  630. "require-dev": {
  631. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  632. "squizlabs/php_codesniffer": "^3",
  633. "yoast/phpunit-polyfills": "^0.2.0"
  634. },
  635. "type": "library",
  636. "extra": {
  637. "branch-alias": {
  638. "dev-main": "2.x-dev"
  639. }
  640. },
  641. "autoload": {
  642. "psr-4": {
  643. "Consolidation\\Filter\\": "src"
  644. }
  645. },
  646. "notification-url": "https://packagist.org/downloads/",
  647. "license": [
  648. "MIT"
  649. ],
  650. "authors": [
  651. {
  652. "name": "Greg Anderson",
  653. "email": "greg.1.anderson@greenknowe.org"
  654. }
  655. ],
  656. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  657. "support": {
  658. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2"
  659. },
  660. "time": "2021-12-30T03:56:08+00:00"
  661. },
  662. {
  663. "name": "consolidation/log",
  664. "version": "3.1.0",
  665. "source": {
  666. "type": "git",
  667. "url": "https://github.com/consolidation/log.git",
  668. "reference": "c27a3beb36137c141ccbce0d89f64befb243c015"
  669. },
  670. "dist": {
  671. "type": "zip",
  672. "url": "https://api.github.com/repos/consolidation/log/zipball/c27a3beb36137c141ccbce0d89f64befb243c015",
  673. "reference": "c27a3beb36137c141ccbce0d89f64befb243c015",
  674. "shasum": ""
  675. },
  676. "require": {
  677. "php": ">=8.0.0",
  678. "psr/log": "^3",
  679. "symfony/console": "^5 || ^6 || ^7"
  680. },
  681. "require-dev": {
  682. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  683. "squizlabs/php_codesniffer": "^3",
  684. "yoast/phpunit-polyfills": "^0.2.0"
  685. },
  686. "type": "library",
  687. "extra": {
  688. "platform": {
  689. "php": "8.2.17"
  690. }
  691. },
  692. "autoload": {
  693. "psr-4": {
  694. "Consolidation\\Log\\": "src"
  695. }
  696. },
  697. "notification-url": "https://packagist.org/downloads/",
  698. "license": [
  699. "MIT"
  700. ],
  701. "authors": [
  702. {
  703. "name": "Greg Anderson",
  704. "email": "greg.1.anderson@greenknowe.org"
  705. }
  706. ],
  707. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  708. "support": {
  709. "issues": "https://github.com/consolidation/log/issues",
  710. "source": "https://github.com/consolidation/log/tree/3.1.0"
  711. },
  712. "time": "2024-04-04T23:50:25+00:00"
  713. },
  714. {
  715. "name": "consolidation/output-formatters",
  716. "version": "4.6.0",
  717. "source": {
  718. "type": "git",
  719. "url": "https://github.com/consolidation/output-formatters.git",
  720. "reference": "5fd5656718d7068a02d046f418a7ba873d5abbfe"
  721. },
  722. "dist": {
  723. "type": "zip",
  724. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/5fd5656718d7068a02d046f418a7ba873d5abbfe",
  725. "reference": "5fd5656718d7068a02d046f418a7ba873d5abbfe",
  726. "shasum": ""
  727. },
  728. "require": {
  729. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  730. "php": ">=7.1.3",
  731. "symfony/console": "^4 || ^5 || ^6 || ^7",
  732. "symfony/finder": "^4 || ^5 || ^6 || ^7"
  733. },
  734. "require-dev": {
  735. "php-coveralls/php-coveralls": "^2.4.2",
  736. "phpunit/phpunit": "^7 || ^8 || ^9",
  737. "squizlabs/php_codesniffer": "^3",
  738. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7",
  739. "symfony/yaml": "^4 || ^5 || ^6 || ^7",
  740. "yoast/phpunit-polyfills": "^1"
  741. },
  742. "suggest": {
  743. "symfony/var-dumper": "For using the var_dump formatter"
  744. },
  745. "type": "library",
  746. "autoload": {
  747. "psr-4": {
  748. "Consolidation\\OutputFormatters\\": "src"
  749. }
  750. },
  751. "notification-url": "https://packagist.org/downloads/",
  752. "license": [
  753. "MIT"
  754. ],
  755. "authors": [
  756. {
  757. "name": "Greg Anderson",
  758. "email": "greg.1.anderson@greenknowe.org"
  759. }
  760. ],
  761. "description": "Format text by applying transformations provided by plug-in formatters.",
  762. "support": {
  763. "issues": "https://github.com/consolidation/output-formatters/issues",
  764. "source": "https://github.com/consolidation/output-formatters/tree/4.6.0"
  765. },
  766. "time": "2024-10-18T14:02:48+00:00"
  767. },
  768. {
  769. "name": "consolidation/robo",
  770. "version": "4.0.6",
  771. "source": {
  772. "type": "git",
  773. "url": "https://github.com/consolidation/robo.git",
  774. "reference": "55a272370940607649e5c46eb173c5c54f7c166d"
  775. },
  776. "dist": {
  777. "type": "zip",
  778. "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d",
  779. "reference": "55a272370940607649e5c46eb173c5c54f7c166d",
  780. "shasum": ""
  781. },
  782. "require": {
  783. "consolidation/annotated-command": "^4.8.1",
  784. "consolidation/config": "^2.0.1",
  785. "consolidation/log": "^2.0.2 || ^3",
  786. "consolidation/output-formatters": "^4.1.2",
  787. "consolidation/self-update": "^2.0",
  788. "league/container": "^3.3.1 || ^4.0",
  789. "php": ">=8.0",
  790. "phpowermove/docblock": "^4.0",
  791. "symfony/console": "^6",
  792. "symfony/event-dispatcher": "^6",
  793. "symfony/filesystem": "^6",
  794. "symfony/finder": "^6",
  795. "symfony/process": "^6",
  796. "symfony/yaml": "^6"
  797. },
  798. "conflict": {
  799. "codegyre/robo": "*"
  800. },
  801. "require-dev": {
  802. "natxet/cssmin": "3.0.4",
  803. "patchwork/jsqueeze": "^2",
  804. "pear/archive_tar": "^1.4.4",
  805. "phpunit/phpunit": "^7.5.20 || ^8",
  806. "squizlabs/php_codesniffer": "^3.6",
  807. "yoast/phpunit-polyfills": "^0.2.0"
  808. },
  809. "suggest": {
  810. "natxet/cssmin": "For minifying CSS files in taskMinify",
  811. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  812. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  813. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  814. },
  815. "bin": [
  816. "robo"
  817. ],
  818. "type": "library",
  819. "autoload": {
  820. "psr-4": {
  821. "Robo\\": "src"
  822. }
  823. },
  824. "notification-url": "https://packagist.org/downloads/",
  825. "license": [
  826. "MIT"
  827. ],
  828. "authors": [
  829. {
  830. "name": "Davert",
  831. "email": "davert.php@resend.cc"
  832. }
  833. ],
  834. "description": "Modern task runner",
  835. "support": {
  836. "issues": "https://github.com/consolidation/robo/issues",
  837. "source": "https://github.com/consolidation/robo/tree/4.0.6"
  838. },
  839. "time": "2023-04-30T21:49:04+00:00"
  840. },
  841. {
  842. "name": "consolidation/self-update",
  843. "version": "2.2.0",
  844. "source": {
  845. "type": "git",
  846. "url": "https://github.com/consolidation/self-update.git",
  847. "reference": "972a1016761c9b63314e040836a12795dff6953a"
  848. },
  849. "dist": {
  850. "type": "zip",
  851. "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a",
  852. "reference": "972a1016761c9b63314e040836a12795dff6953a",
  853. "shasum": ""
  854. },
  855. "require": {
  856. "composer/semver": "^3.2",
  857. "php": ">=5.5.0",
  858. "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
  859. "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6"
  860. },
  861. "bin": [
  862. "scripts/release"
  863. ],
  864. "type": "library",
  865. "extra": {
  866. "branch-alias": {
  867. "dev-main": "2.x-dev"
  868. }
  869. },
  870. "autoload": {
  871. "psr-4": {
  872. "SelfUpdate\\": "src"
  873. }
  874. },
  875. "notification-url": "https://packagist.org/downloads/",
  876. "license": [
  877. "MIT"
  878. ],
  879. "authors": [
  880. {
  881. "name": "Alexander Menk",
  882. "email": "menk@mestrona.net"
  883. },
  884. {
  885. "name": "Greg Anderson",
  886. "email": "greg.1.anderson@greenknowe.org"
  887. }
  888. ],
  889. "description": "Provides a self:update command for Symfony Console applications.",
  890. "support": {
  891. "issues": "https://github.com/consolidation/self-update/issues",
  892. "source": "https://github.com/consolidation/self-update/tree/2.2.0"
  893. },
  894. "time": "2023-03-18T01:37:41+00:00"
  895. },
  896. {
  897. "name": "consolidation/site-alias",
  898. "version": "4.1.1",
  899. "source": {
  900. "type": "git",
  901. "url": "https://github.com/consolidation/site-alias.git",
  902. "reference": "aff6189aae17da813d23249cb2fc0fff33f26d40"
  903. },
  904. "dist": {
  905. "type": "zip",
  906. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/aff6189aae17da813d23249cb2fc0fff33f26d40",
  907. "reference": "aff6189aae17da813d23249cb2fc0fff33f26d40",
  908. "shasum": ""
  909. },
  910. "require": {
  911. "consolidation/config": "^1.2.1 || ^2 || ^3",
  912. "php": ">=7.4",
  913. "symfony/filesystem": "^5.4 || ^6 || ^7",
  914. "symfony/finder": "^5 || ^6 || ^7"
  915. },
  916. "require-dev": {
  917. "php-coveralls/php-coveralls": "^2.4.2",
  918. "phpunit/phpunit": ">=7",
  919. "squizlabs/php_codesniffer": "^3",
  920. "symfony/var-dumper": "^4",
  921. "yoast/phpunit-polyfills": "^0.2.0"
  922. },
  923. "type": "library",
  924. "extra": {
  925. "branch-alias": {
  926. "dev-main": "4.x-dev"
  927. }
  928. },
  929. "autoload": {
  930. "psr-4": {
  931. "Consolidation\\SiteAlias\\": "src"
  932. }
  933. },
  934. "notification-url": "https://packagist.org/downloads/",
  935. "license": [
  936. "MIT"
  937. ],
  938. "authors": [
  939. {
  940. "name": "Greg Anderson",
  941. "email": "greg.1.anderson@greenknowe.org"
  942. },
  943. {
  944. "name": "Moshe Weitzman",
  945. "email": "weitzman@tejasa.com"
  946. }
  947. ],
  948. "description": "Manage alias records for local and remote sites.",
  949. "support": {
  950. "issues": "https://github.com/consolidation/site-alias/issues",
  951. "source": "https://github.com/consolidation/site-alias/tree/4.1.1"
  952. },
  953. "time": "2024-12-13T19:05:11+00:00"
  954. },
  955. {
  956. "name": "consolidation/site-process",
  957. "version": "5.4.2",
  958. "source": {
  959. "type": "git",
  960. "url": "https://github.com/consolidation/site-process.git",
  961. "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da"
  962. },
  963. "dist": {
  964. "type": "zip",
  965. "url": "https://api.github.com/repos/consolidation/site-process/zipball/e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da",
  966. "reference": "e7fafc40ebfddc1a5ee99ee66e5d186fc1bed4da",
  967. "shasum": ""
  968. },
  969. "require": {
  970. "consolidation/config": "^2 || ^3",
  971. "consolidation/site-alias": "^3 || ^4",
  972. "php": ">=8.0.14",
  973. "symfony/console": "^5.4 || ^6 || ^7",
  974. "symfony/process": "^6 || ^7"
  975. },
  976. "require-dev": {
  977. "phpunit/phpunit": "^9",
  978. "squizlabs/php_codesniffer": "^3"
  979. },
  980. "type": "library",
  981. "extra": {
  982. "branch-alias": {
  983. "dev-main": "5.x-dev"
  984. }
  985. },
  986. "autoload": {
  987. "psr-4": {
  988. "Consolidation\\SiteProcess\\": "src"
  989. }
  990. },
  991. "notification-url": "https://packagist.org/downloads/",
  992. "license": [
  993. "MIT"
  994. ],
  995. "authors": [
  996. {
  997. "name": "Greg Anderson",
  998. "email": "greg.1.anderson@greenknowe.org"
  999. },
  1000. {
  1001. "name": "Moshe Weitzman",
  1002. "email": "weitzman@tejasa.com"
  1003. }
  1004. ],
  1005. "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.",
  1006. "support": {
  1007. "issues": "https://github.com/consolidation/site-process/issues",
  1008. "source": "https://github.com/consolidation/site-process/tree/5.4.2"
  1009. },
  1010. "time": "2024-12-13T19:25:56+00:00"
  1011. },
  1012. {
  1013. "name": "cweagans/composer-patches",
  1014. "version": "1.7.3",
  1015. "source": {
  1016. "type": "git",
  1017. "url": "https://github.com/cweagans/composer-patches.git",
  1018. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  1019. },
  1020. "dist": {
  1021. "type": "zip",
  1022. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  1023. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  1024. "shasum": ""
  1025. },
  1026. "require": {
  1027. "composer-plugin-api": "^1.0 || ^2.0",
  1028. "php": ">=5.3.0"
  1029. },
  1030. "require-dev": {
  1031. "composer/composer": "~1.0 || ~2.0",
  1032. "phpunit/phpunit": "~4.6"
  1033. },
  1034. "type": "composer-plugin",
  1035. "extra": {
  1036. "class": "cweagans\\Composer\\Patches"
  1037. },
  1038. "autoload": {
  1039. "psr-4": {
  1040. "cweagans\\Composer\\": "src"
  1041. }
  1042. },
  1043. "notification-url": "https://packagist.org/downloads/",
  1044. "license": [
  1045. "BSD-3-Clause"
  1046. ],
  1047. "authors": [
  1048. {
  1049. "name": "Cameron Eagans",
  1050. "email": "me@cweagans.net"
  1051. }
  1052. ],
  1053. "description": "Provides a way to patch Composer packages.",
  1054. "support": {
  1055. "issues": "https://github.com/cweagans/composer-patches/issues",
  1056. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  1057. },
  1058. "time": "2022-12-20T22:53:13+00:00"
  1059. },
  1060. {
  1061. "name": "d3/d3",
  1062. "version": "v3.5.17",
  1063. "dist": {
  1064. "type": "zip",
  1065. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  1066. },
  1067. "type": "drupal-library"
  1068. },
  1069. {
  1070. "name": "davedevelopment/stiphle",
  1071. "version": "0.9.4",
  1072. "source": {
  1073. "type": "git",
  1074. "url": "https://github.com/davedevelopment/stiphle.git",
  1075. "reference": "5d1c244f0525d265e231a65db538b74eb5483768"
  1076. },
  1077. "dist": {
  1078. "type": "zip",
  1079. "url": "https://api.github.com/repos/davedevelopment/stiphle/zipball/5d1c244f0525d265e231a65db538b74eb5483768",
  1080. "reference": "5d1c244f0525d265e231a65db538b74eb5483768",
  1081. "shasum": ""
  1082. },
  1083. "require": {
  1084. "php": "^5.6.0|^7.0|^8.0"
  1085. },
  1086. "require-dev": {
  1087. "doctrine/cache": "^1.0",
  1088. "phpunit/phpunit": "^6.5|^7.5|^8.4",
  1089. "predis/predis": "^1.1",
  1090. "zendframework/zend-cache": "^2.8"
  1091. },
  1092. "suggest": {
  1093. "doctrine/cache": "~1.0",
  1094. "predis/predis": "~1.1",
  1095. "zendframework/zend-cache": "^2.8"
  1096. },
  1097. "type": "library",
  1098. "autoload": {
  1099. "psr-0": {
  1100. "Stiphle": "src/"
  1101. }
  1102. },
  1103. "notification-url": "https://packagist.org/downloads/",
  1104. "license": [
  1105. "MIT"
  1106. ],
  1107. "authors": [
  1108. {
  1109. "name": "Dave Marshall",
  1110. "email": "dave.marshall@atstsolutions.co.uk",
  1111. "homepage": "http://davedevelopment.co.uk"
  1112. }
  1113. ],
  1114. "description": "Simple rate limiting/throttling for php",
  1115. "homepage": "http://github.com/davedevelopment/stiphle",
  1116. "keywords": [
  1117. "rate limit",
  1118. "rate limiting",
  1119. "throttle",
  1120. "throttling"
  1121. ],
  1122. "support": {
  1123. "issues": "https://github.com/davedevelopment/stiphle/issues",
  1124. "source": "https://github.com/davedevelopment/stiphle/tree/0.9.4"
  1125. },
  1126. "time": "2022-11-25T16:30:20+00:00"
  1127. },
  1128. {
  1129. "name": "dekor/php-array-table",
  1130. "version": "2.0",
  1131. "source": {
  1132. "type": "git",
  1133. "url": "https://github.com/deniskoronets/php-array-table.git",
  1134. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5"
  1135. },
  1136. "dist": {
  1137. "type": "zip",
  1138. "url": "https://api.github.com/repos/deniskoronets/php-array-table/zipball/ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  1139. "reference": "ca40b21ba84eee6a9658a33fc5f897d76baaf8e5",
  1140. "shasum": ""
  1141. },
  1142. "require": {
  1143. "ext-mbstring": "*",
  1144. "php": ">=5.6.0"
  1145. },
  1146. "require-dev": {
  1147. "phpunit/phpunit": "^10"
  1148. },
  1149. "type": "library",
  1150. "autoload": {
  1151. "psr-4": {
  1152. "dekor\\": "src"
  1153. }
  1154. },
  1155. "notification-url": "https://packagist.org/downloads/",
  1156. "license": [
  1157. "BSD-3-Clause"
  1158. ],
  1159. "authors": [
  1160. {
  1161. "name": "Denis Koronets",
  1162. "email": "deniskoronets@woo.zp.ua",
  1163. "homepage": "https://woo.zp.ua/"
  1164. }
  1165. ],
  1166. "description": "PHP Library for printing associative arrays as text table (similar to mysql terminal console)",
  1167. "keywords": [
  1168. "library",
  1169. "php"
  1170. ],
  1171. "support": {
  1172. "issues": "https://github.com/deniskoronets/php-array-table/issues",
  1173. "source": "https://github.com/deniskoronets/php-array-table/tree/2.0"
  1174. },
  1175. "time": "2023-02-10T10:13:42+00:00"
  1176. },
  1177. {
  1178. "name": "dflydev/dot-access-data",
  1179. "version": "v3.0.3",
  1180. "source": {
  1181. "type": "git",
  1182. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1183. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  1184. },
  1185. "dist": {
  1186. "type": "zip",
  1187. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1188. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1189. "shasum": ""
  1190. },
  1191. "require": {
  1192. "php": "^7.1 || ^8.0"
  1193. },
  1194. "require-dev": {
  1195. "phpstan/phpstan": "^0.12.42",
  1196. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1197. "scrutinizer/ocular": "1.6.0",
  1198. "squizlabs/php_codesniffer": "^3.5",
  1199. "vimeo/psalm": "^4.0.0"
  1200. },
  1201. "type": "library",
  1202. "extra": {
  1203. "branch-alias": {
  1204. "dev-main": "3.x-dev"
  1205. }
  1206. },
  1207. "autoload": {
  1208. "psr-4": {
  1209. "Dflydev\\DotAccessData\\": "src/"
  1210. }
  1211. },
  1212. "notification-url": "https://packagist.org/downloads/",
  1213. "license": [
  1214. "MIT"
  1215. ],
  1216. "authors": [
  1217. {
  1218. "name": "Dragonfly Development Inc.",
  1219. "email": "info@dflydev.com",
  1220. "homepage": "http://dflydev.com"
  1221. },
  1222. {
  1223. "name": "Beau Simensen",
  1224. "email": "beau@dflydev.com",
  1225. "homepage": "http://beausimensen.com"
  1226. },
  1227. {
  1228. "name": "Carlos Frutos",
  1229. "email": "carlos@kiwing.it",
  1230. "homepage": "https://github.com/cfrutos"
  1231. },
  1232. {
  1233. "name": "Colin O'Dell",
  1234. "email": "colinodell@gmail.com",
  1235. "homepage": "https://www.colinodell.com"
  1236. }
  1237. ],
  1238. "description": "Given a deep data structure, access data by dot notation.",
  1239. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1240. "keywords": [
  1241. "access",
  1242. "data",
  1243. "dot",
  1244. "notation"
  1245. ],
  1246. "support": {
  1247. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1248. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1249. },
  1250. "time": "2024-07-08T12:26:09+00:00"
  1251. },
  1252. {
  1253. "name": "doctrine/annotations",
  1254. "version": "1.14.4",
  1255. "source": {
  1256. "type": "git",
  1257. "url": "https://github.com/doctrine/annotations.git",
  1258. "reference": "253dca476f70808a5aeed3a47cc2cc88c5cab915"
  1259. },
  1260. "dist": {
  1261. "type": "zip",
  1262. "url": "https://api.github.com/repos/doctrine/annotations/zipball/253dca476f70808a5aeed3a47cc2cc88c5cab915",
  1263. "reference": "253dca476f70808a5aeed3a47cc2cc88c5cab915",
  1264. "shasum": ""
  1265. },
  1266. "require": {
  1267. "doctrine/lexer": "^1 || ^2",
  1268. "ext-tokenizer": "*",
  1269. "php": "^7.1 || ^8.0",
  1270. "psr/cache": "^1 || ^2 || ^3"
  1271. },
  1272. "require-dev": {
  1273. "doctrine/cache": "^1.11 || ^2.0",
  1274. "doctrine/coding-standard": "^9 || ^12",
  1275. "phpstan/phpstan": "~1.4.10 || ^1.10.28",
  1276. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1277. "symfony/cache": "^4.4 || ^5.4 || ^6.4 || ^7",
  1278. "vimeo/psalm": "^4.30 || ^5.14"
  1279. },
  1280. "suggest": {
  1281. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  1282. },
  1283. "type": "library",
  1284. "autoload": {
  1285. "psr-4": {
  1286. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1287. }
  1288. },
  1289. "notification-url": "https://packagist.org/downloads/",
  1290. "license": [
  1291. "MIT"
  1292. ],
  1293. "authors": [
  1294. {
  1295. "name": "Guilherme Blanco",
  1296. "email": "guilhermeblanco@gmail.com"
  1297. },
  1298. {
  1299. "name": "Roman Borschel",
  1300. "email": "roman@code-factory.org"
  1301. },
  1302. {
  1303. "name": "Benjamin Eberlei",
  1304. "email": "kontakt@beberlei.de"
  1305. },
  1306. {
  1307. "name": "Jonathan Wage",
  1308. "email": "jonwage@gmail.com"
  1309. },
  1310. {
  1311. "name": "Johannes Schmitt",
  1312. "email": "schmittjoh@gmail.com"
  1313. }
  1314. ],
  1315. "description": "Docblock Annotations Parser",
  1316. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1317. "keywords": [
  1318. "annotations",
  1319. "docblock",
  1320. "parser"
  1321. ],
  1322. "support": {
  1323. "issues": "https://github.com/doctrine/annotations/issues",
  1324. "source": "https://github.com/doctrine/annotations/tree/1.14.4"
  1325. },
  1326. "time": "2024-09-05T10:15:52+00:00"
  1327. },
  1328. {
  1329. "name": "doctrine/collections",
  1330. "version": "2.3.0",
  1331. "source": {
  1332. "type": "git",
  1333. "url": "https://github.com/doctrine/collections.git",
  1334. "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d"
  1335. },
  1336. "dist": {
  1337. "type": "zip",
  1338. "url": "https://api.github.com/repos/doctrine/collections/zipball/2eb07e5953eed811ce1b309a7478a3b236f2273d",
  1339. "reference": "2eb07e5953eed811ce1b309a7478a3b236f2273d",
  1340. "shasum": ""
  1341. },
  1342. "require": {
  1343. "doctrine/deprecations": "^1",
  1344. "php": "^8.1",
  1345. "symfony/polyfill-php84": "^1.30"
  1346. },
  1347. "require-dev": {
  1348. "doctrine/coding-standard": "^12",
  1349. "ext-json": "*",
  1350. "phpstan/phpstan": "^1.8",
  1351. "phpstan/phpstan-phpunit": "^1.0",
  1352. "phpunit/phpunit": "^10.5"
  1353. },
  1354. "type": "library",
  1355. "autoload": {
  1356. "psr-4": {
  1357. "Doctrine\\Common\\Collections\\": "src"
  1358. }
  1359. },
  1360. "notification-url": "https://packagist.org/downloads/",
  1361. "license": [
  1362. "MIT"
  1363. ],
  1364. "authors": [
  1365. {
  1366. "name": "Guilherme Blanco",
  1367. "email": "guilhermeblanco@gmail.com"
  1368. },
  1369. {
  1370. "name": "Roman Borschel",
  1371. "email": "roman@code-factory.org"
  1372. },
  1373. {
  1374. "name": "Benjamin Eberlei",
  1375. "email": "kontakt@beberlei.de"
  1376. },
  1377. {
  1378. "name": "Jonathan Wage",
  1379. "email": "jonwage@gmail.com"
  1380. },
  1381. {
  1382. "name": "Johannes Schmitt",
  1383. "email": "schmittjoh@gmail.com"
  1384. }
  1385. ],
  1386. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1387. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1388. "keywords": [
  1389. "array",
  1390. "collections",
  1391. "iterators",
  1392. "php"
  1393. ],
  1394. "support": {
  1395. "issues": "https://github.com/doctrine/collections/issues",
  1396. "source": "https://github.com/doctrine/collections/tree/2.3.0"
  1397. },
  1398. "funding": [
  1399. {
  1400. "url": "https://www.doctrine-project.org/sponsorship.html",
  1401. "type": "custom"
  1402. },
  1403. {
  1404. "url": "https://www.patreon.com/phpdoctrine",
  1405. "type": "patreon"
  1406. },
  1407. {
  1408. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  1409. "type": "tidelift"
  1410. }
  1411. ],
  1412. "time": "2025-03-22T10:17:19+00:00"
  1413. },
  1414. {
  1415. "name": "doctrine/common",
  1416. "version": "3.5.0",
  1417. "source": {
  1418. "type": "git",
  1419. "url": "https://github.com/doctrine/common.git",
  1420. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5"
  1421. },
  1422. "dist": {
  1423. "type": "zip",
  1424. "url": "https://api.github.com/repos/doctrine/common/zipball/d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  1425. "reference": "d9ea4a54ca2586db781f0265d36bea731ac66ec5",
  1426. "shasum": ""
  1427. },
  1428. "require": {
  1429. "doctrine/persistence": "^2.0 || ^3.0 || ^4.0",
  1430. "php": "^7.1 || ^8.0"
  1431. },
  1432. "require-dev": {
  1433. "doctrine/coding-standard": "^9.0 || ^10.0",
  1434. "doctrine/collections": "^1",
  1435. "phpstan/phpstan": "^1.4.1",
  1436. "phpstan/phpstan-phpunit": "^1",
  1437. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1438. "squizlabs/php_codesniffer": "^3.0",
  1439. "symfony/phpunit-bridge": "^6.1",
  1440. "vimeo/psalm": "^4.4"
  1441. },
  1442. "type": "library",
  1443. "autoload": {
  1444. "psr-4": {
  1445. "Doctrine\\Common\\": "src"
  1446. }
  1447. },
  1448. "notification-url": "https://packagist.org/downloads/",
  1449. "license": [
  1450. "MIT"
  1451. ],
  1452. "authors": [
  1453. {
  1454. "name": "Guilherme Blanco",
  1455. "email": "guilhermeblanco@gmail.com"
  1456. },
  1457. {
  1458. "name": "Roman Borschel",
  1459. "email": "roman@code-factory.org"
  1460. },
  1461. {
  1462. "name": "Benjamin Eberlei",
  1463. "email": "kontakt@beberlei.de"
  1464. },
  1465. {
  1466. "name": "Jonathan Wage",
  1467. "email": "jonwage@gmail.com"
  1468. },
  1469. {
  1470. "name": "Johannes Schmitt",
  1471. "email": "schmittjoh@gmail.com"
  1472. },
  1473. {
  1474. "name": "Marco Pivetta",
  1475. "email": "ocramius@gmail.com"
  1476. }
  1477. ],
  1478. "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.",
  1479. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1480. "keywords": [
  1481. "common",
  1482. "doctrine",
  1483. "php"
  1484. ],
  1485. "support": {
  1486. "issues": "https://github.com/doctrine/common/issues",
  1487. "source": "https://github.com/doctrine/common/tree/3.5.0"
  1488. },
  1489. "funding": [
  1490. {
  1491. "url": "https://www.doctrine-project.org/sponsorship.html",
  1492. "type": "custom"
  1493. },
  1494. {
  1495. "url": "https://www.patreon.com/phpdoctrine",
  1496. "type": "patreon"
  1497. },
  1498. {
  1499. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1500. "type": "tidelift"
  1501. }
  1502. ],
  1503. "time": "2025-01-01T22:12:03+00:00"
  1504. },
  1505. {
  1506. "name": "doctrine/deprecations",
  1507. "version": "1.1.5",
  1508. "source": {
  1509. "type": "git",
  1510. "url": "https://github.com/doctrine/deprecations.git",
  1511. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
  1512. },
  1513. "dist": {
  1514. "type": "zip",
  1515. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  1516. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  1517. "shasum": ""
  1518. },
  1519. "require": {
  1520. "php": "^7.1 || ^8.0"
  1521. },
  1522. "conflict": {
  1523. "phpunit/phpunit": "<=7.5 || >=13"
  1524. },
  1525. "require-dev": {
  1526. "doctrine/coding-standard": "^9 || ^12 || ^13",
  1527. "phpstan/phpstan": "1.4.10 || 2.1.11",
  1528. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  1529. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
  1530. "psr/log": "^1 || ^2 || ^3"
  1531. },
  1532. "suggest": {
  1533. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1534. },
  1535. "type": "library",
  1536. "autoload": {
  1537. "psr-4": {
  1538. "Doctrine\\Deprecations\\": "src"
  1539. }
  1540. },
  1541. "notification-url": "https://packagist.org/downloads/",
  1542. "license": [
  1543. "MIT"
  1544. ],
  1545. "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.",
  1546. "homepage": "https://www.doctrine-project.org/",
  1547. "support": {
  1548. "issues": "https://github.com/doctrine/deprecations/issues",
  1549. "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
  1550. },
  1551. "time": "2025-04-07T20:06:18+00:00"
  1552. },
  1553. {
  1554. "name": "doctrine/event-manager",
  1555. "version": "2.0.1",
  1556. "source": {
  1557. "type": "git",
  1558. "url": "https://github.com/doctrine/event-manager.git",
  1559. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  1560. },
  1561. "dist": {
  1562. "type": "zip",
  1563. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1564. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1565. "shasum": ""
  1566. },
  1567. "require": {
  1568. "php": "^8.1"
  1569. },
  1570. "conflict": {
  1571. "doctrine/common": "<2.9"
  1572. },
  1573. "require-dev": {
  1574. "doctrine/coding-standard": "^12",
  1575. "phpstan/phpstan": "^1.8.8",
  1576. "phpunit/phpunit": "^10.5",
  1577. "vimeo/psalm": "^5.24"
  1578. },
  1579. "type": "library",
  1580. "autoload": {
  1581. "psr-4": {
  1582. "Doctrine\\Common\\": "src"
  1583. }
  1584. },
  1585. "notification-url": "https://packagist.org/downloads/",
  1586. "license": [
  1587. "MIT"
  1588. ],
  1589. "authors": [
  1590. {
  1591. "name": "Guilherme Blanco",
  1592. "email": "guilhermeblanco@gmail.com"
  1593. },
  1594. {
  1595. "name": "Roman Borschel",
  1596. "email": "roman@code-factory.org"
  1597. },
  1598. {
  1599. "name": "Benjamin Eberlei",
  1600. "email": "kontakt@beberlei.de"
  1601. },
  1602. {
  1603. "name": "Jonathan Wage",
  1604. "email": "jonwage@gmail.com"
  1605. },
  1606. {
  1607. "name": "Johannes Schmitt",
  1608. "email": "schmittjoh@gmail.com"
  1609. },
  1610. {
  1611. "name": "Marco Pivetta",
  1612. "email": "ocramius@gmail.com"
  1613. }
  1614. ],
  1615. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1616. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1617. "keywords": [
  1618. "event",
  1619. "event dispatcher",
  1620. "event manager",
  1621. "event system",
  1622. "events"
  1623. ],
  1624. "support": {
  1625. "issues": "https://github.com/doctrine/event-manager/issues",
  1626. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  1627. },
  1628. "funding": [
  1629. {
  1630. "url": "https://www.doctrine-project.org/sponsorship.html",
  1631. "type": "custom"
  1632. },
  1633. {
  1634. "url": "https://www.patreon.com/phpdoctrine",
  1635. "type": "patreon"
  1636. },
  1637. {
  1638. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1639. "type": "tidelift"
  1640. }
  1641. ],
  1642. "time": "2024-05-22T20:47:39+00:00"
  1643. },
  1644. {
  1645. "name": "doctrine/lexer",
  1646. "version": "2.1.1",
  1647. "source": {
  1648. "type": "git",
  1649. "url": "https://github.com/doctrine/lexer.git",
  1650. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  1651. },
  1652. "dist": {
  1653. "type": "zip",
  1654. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1655. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  1656. "shasum": ""
  1657. },
  1658. "require": {
  1659. "doctrine/deprecations": "^1.0",
  1660. "php": "^7.1 || ^8.0"
  1661. },
  1662. "require-dev": {
  1663. "doctrine/coding-standard": "^9 || ^12",
  1664. "phpstan/phpstan": "^1.3",
  1665. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  1666. "psalm/plugin-phpunit": "^0.18.3",
  1667. "vimeo/psalm": "^4.11 || ^5.21"
  1668. },
  1669. "type": "library",
  1670. "autoload": {
  1671. "psr-4": {
  1672. "Doctrine\\Common\\Lexer\\": "src"
  1673. }
  1674. },
  1675. "notification-url": "https://packagist.org/downloads/",
  1676. "license": [
  1677. "MIT"
  1678. ],
  1679. "authors": [
  1680. {
  1681. "name": "Guilherme Blanco",
  1682. "email": "guilhermeblanco@gmail.com"
  1683. },
  1684. {
  1685. "name": "Roman Borschel",
  1686. "email": "roman@code-factory.org"
  1687. },
  1688. {
  1689. "name": "Johannes Schmitt",
  1690. "email": "schmittjoh@gmail.com"
  1691. }
  1692. ],
  1693. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1694. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1695. "keywords": [
  1696. "annotations",
  1697. "docblock",
  1698. "lexer",
  1699. "parser",
  1700. "php"
  1701. ],
  1702. "support": {
  1703. "issues": "https://github.com/doctrine/lexer/issues",
  1704. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  1705. },
  1706. "funding": [
  1707. {
  1708. "url": "https://www.doctrine-project.org/sponsorship.html",
  1709. "type": "custom"
  1710. },
  1711. {
  1712. "url": "https://www.patreon.com/phpdoctrine",
  1713. "type": "patreon"
  1714. },
  1715. {
  1716. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1717. "type": "tidelift"
  1718. }
  1719. ],
  1720. "time": "2024-02-05T11:35:39+00:00"
  1721. },
  1722. {
  1723. "name": "doctrine/persistence",
  1724. "version": "4.0.0",
  1725. "source": {
  1726. "type": "git",
  1727. "url": "https://github.com/doctrine/persistence.git",
  1728. "reference": "45004aca79189474f113cbe3a53847c2115a55fa"
  1729. },
  1730. "dist": {
  1731. "type": "zip",
  1732. "url": "https://api.github.com/repos/doctrine/persistence/zipball/45004aca79189474f113cbe3a53847c2115a55fa",
  1733. "reference": "45004aca79189474f113cbe3a53847c2115a55fa",
  1734. "shasum": ""
  1735. },
  1736. "require": {
  1737. "doctrine/event-manager": "^1 || ^2",
  1738. "php": "^8.1",
  1739. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1740. },
  1741. "conflict": {
  1742. "doctrine/common": "<2.10"
  1743. },
  1744. "require-dev": {
  1745. "doctrine/coding-standard": "^12",
  1746. "phpstan/phpstan": "1.12.7",
  1747. "phpstan/phpstan-phpunit": "^1",
  1748. "phpstan/phpstan-strict-rules": "^1.1",
  1749. "phpunit/phpunit": "^9.6",
  1750. "symfony/cache": "^4.4 || ^5.4 || ^6.0 || ^7.0"
  1751. },
  1752. "type": "library",
  1753. "autoload": {
  1754. "psr-4": {
  1755. "Doctrine\\Persistence\\": "src/Persistence"
  1756. }
  1757. },
  1758. "notification-url": "https://packagist.org/downloads/",
  1759. "license": [
  1760. "MIT"
  1761. ],
  1762. "authors": [
  1763. {
  1764. "name": "Guilherme Blanco",
  1765. "email": "guilhermeblanco@gmail.com"
  1766. },
  1767. {
  1768. "name": "Roman Borschel",
  1769. "email": "roman@code-factory.org"
  1770. },
  1771. {
  1772. "name": "Benjamin Eberlei",
  1773. "email": "kontakt@beberlei.de"
  1774. },
  1775. {
  1776. "name": "Jonathan Wage",
  1777. "email": "jonwage@gmail.com"
  1778. },
  1779. {
  1780. "name": "Johannes Schmitt",
  1781. "email": "schmittjoh@gmail.com"
  1782. },
  1783. {
  1784. "name": "Marco Pivetta",
  1785. "email": "ocramius@gmail.com"
  1786. }
  1787. ],
  1788. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1789. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1790. "keywords": [
  1791. "mapper",
  1792. "object",
  1793. "odm",
  1794. "orm",
  1795. "persistence"
  1796. ],
  1797. "support": {
  1798. "issues": "https://github.com/doctrine/persistence/issues",
  1799. "source": "https://github.com/doctrine/persistence/tree/4.0.0"
  1800. },
  1801. "funding": [
  1802. {
  1803. "url": "https://www.doctrine-project.org/sponsorship.html",
  1804. "type": "custom"
  1805. },
  1806. {
  1807. "url": "https://www.patreon.com/phpdoctrine",
  1808. "type": "patreon"
  1809. },
  1810. {
  1811. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1812. "type": "tidelift"
  1813. }
  1814. ],
  1815. "time": "2024-11-01T21:49:07+00:00"
  1816. },
  1817. {
  1818. "name": "drupal/address",
  1819. "version": "1.12.0",
  1820. "source": {
  1821. "type": "git",
  1822. "url": "https://git.drupalcode.org/project/address.git",
  1823. "reference": "8.x-1.12"
  1824. },
  1825. "dist": {
  1826. "type": "zip",
  1827. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.12.zip",
  1828. "reference": "8.x-1.12",
  1829. "shasum": "67dd4699040aabf0cd6169e437706fa6a39b0b3a"
  1830. },
  1831. "require": {
  1832. "commerceguys/addressing": "^1.4.2",
  1833. "drupal/core": "^9.2 || ^10",
  1834. "php": "^7.3 || ^8.0"
  1835. },
  1836. "require-dev": {
  1837. "drupal/token": "^1.0"
  1838. },
  1839. "type": "drupal-module",
  1840. "extra": {
  1841. "drupal": {
  1842. "version": "8.x-1.12",
  1843. "datestamp": "1684710176",
  1844. "security-coverage": {
  1845. "status": "covered",
  1846. "message": "Covered by Drupal's security advisory policy"
  1847. }
  1848. }
  1849. },
  1850. "notification-url": "https://packages.drupal.org/8/downloads",
  1851. "license": [
  1852. "GPL-2.0-or-later"
  1853. ],
  1854. "authors": [
  1855. {
  1856. "name": "bojanz",
  1857. "homepage": "https://www.drupal.org/user/86106"
  1858. },
  1859. {
  1860. "name": "centarro",
  1861. "homepage": "https://www.drupal.org/user/3661446"
  1862. },
  1863. {
  1864. "name": "dww",
  1865. "homepage": "https://www.drupal.org/user/46549"
  1866. },
  1867. {
  1868. "name": "jsacksick",
  1869. "homepage": "https://www.drupal.org/user/972218"
  1870. },
  1871. {
  1872. "name": "rszrama",
  1873. "homepage": "https://www.drupal.org/user/49344"
  1874. }
  1875. ],
  1876. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1877. "homepage": "http://drupal.org/project/address",
  1878. "support": {
  1879. "source": "https://git.drupalcode.org/project/address"
  1880. }
  1881. },
  1882. {
  1883. "name": "drupal/admin_toolbar",
  1884. "version": "3.6.1",
  1885. "source": {
  1886. "type": "git",
  1887. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1888. "reference": "3.6.1"
  1889. },
  1890. "dist": {
  1891. "type": "zip",
  1892. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.6.1.zip",
  1893. "reference": "3.6.1",
  1894. "shasum": "40e8874bdf100de90e0eec6984be14f0ec7765b0"
  1895. },
  1896. "require": {
  1897. "drupal/core": "^9.5 || ^10 || ^11"
  1898. },
  1899. "require-dev": {
  1900. "drupal/admin_toolbar_tools": "*"
  1901. },
  1902. "type": "drupal-module",
  1903. "extra": {
  1904. "drupal": {
  1905. "version": "3.6.1",
  1906. "datestamp": "1749079734",
  1907. "security-coverage": {
  1908. "status": "covered",
  1909. "message": "Covered by Drupal's security advisory policy"
  1910. }
  1911. }
  1912. },
  1913. "notification-url": "https://packages.drupal.org/8/downloads",
  1914. "license": [
  1915. "GPL-2.0-or-later"
  1916. ],
  1917. "authors": [
  1918. {
  1919. "name": "Wilfrid Roze (eme)",
  1920. "homepage": "https://www.drupal.org/u/eme",
  1921. "role": "Maintainer"
  1922. },
  1923. {
  1924. "name": "Romain Jarraud (romainj)",
  1925. "homepage": "https://www.drupal.org/u/romainj",
  1926. "role": "Maintainer"
  1927. },
  1928. {
  1929. "name": "Adrian Cid Almaguer (adriancid)",
  1930. "homepage": "https://www.drupal.org/u/adriancid",
  1931. "email": "adriancid@gmail.com",
  1932. "role": "Maintainer"
  1933. },
  1934. {
  1935. "name": "Mohamed Anis Taktak (matio89)",
  1936. "homepage": "https://www.drupal.org/u/matio89",
  1937. "role": "Maintainer"
  1938. },
  1939. {
  1940. "name": "fethi.krout",
  1941. "homepage": "https://www.drupal.org/user/3206765"
  1942. },
  1943. {
  1944. "name": "japerry",
  1945. "homepage": "https://www.drupal.org/user/45640"
  1946. },
  1947. {
  1948. "name": "matio89",
  1949. "homepage": "https://www.drupal.org/user/2320090"
  1950. },
  1951. {
  1952. "name": "musa.thomas",
  1953. "homepage": "https://www.drupal.org/user/1213824"
  1954. },
  1955. {
  1956. "name": "romainj",
  1957. "homepage": "https://www.drupal.org/user/370706"
  1958. }
  1959. ],
  1960. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1961. "homepage": "http://drupal.org/project/admin_toolbar",
  1962. "keywords": [
  1963. "Drupal",
  1964. "Toolbar"
  1965. ],
  1966. "support": {
  1967. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1968. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1969. }
  1970. },
  1971. {
  1972. "name": "drupal/adminimal_theme",
  1973. "version": "1.7.0",
  1974. "source": {
  1975. "type": "git",
  1976. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1977. "reference": "8.x-1.7"
  1978. },
  1979. "dist": {
  1980. "type": "zip",
  1981. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1982. "reference": "8.x-1.7",
  1983. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1984. },
  1985. "require": {
  1986. "drupal/core": "^9.3 || ^10",
  1987. "drupal/seven": "~1.0"
  1988. },
  1989. "type": "drupal-theme",
  1990. "extra": {
  1991. "drupal": {
  1992. "version": "8.x-1.7",
  1993. "datestamp": "1691504486",
  1994. "security-coverage": {
  1995. "status": "covered",
  1996. "message": "Covered by Drupal's security advisory policy"
  1997. }
  1998. }
  1999. },
  2000. "notification-url": "https://packages.drupal.org/8/downloads",
  2001. "license": [
  2002. "GPL-2.0+"
  2003. ],
  2004. "authors": [
  2005. {
  2006. "name": "ANDiTKO",
  2007. "homepage": "https://www.drupal.org/user/1428124"
  2008. },
  2009. {
  2010. "name": "andrey.troeglazov",
  2011. "homepage": "https://www.drupal.org/user/3145389"
  2012. },
  2013. {
  2014. "name": "realityloop",
  2015. "homepage": "https://www.drupal.org/user/139189"
  2016. },
  2017. {
  2018. "name": "rjjakes",
  2019. "homepage": "https://www.drupal.org/user/3457245"
  2020. }
  2021. ],
  2022. "description": "Drupal administration theme with modern minimalist design.",
  2023. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2024. "support": {
  2025. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2026. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2027. }
  2028. },
  2029. {
  2030. "name": "drupal/administerusersbyrole",
  2031. "version": "3.5.0",
  2032. "source": {
  2033. "type": "git",
  2034. "url": "https://git.drupalcode.org/project/administerusersbyrole.git",
  2035. "reference": "8.x-3.5"
  2036. },
  2037. "dist": {
  2038. "type": "zip",
  2039. "url": "https://ftp.drupal.org/files/projects/administerusersbyrole-8.x-3.5.zip",
  2040. "reference": "8.x-3.5",
  2041. "shasum": "4595bd1db4592c2eb506b3b1c1b26683f22b73b4"
  2042. },
  2043. "require": {
  2044. "drupal/core": "^10 || ^11"
  2045. },
  2046. "type": "drupal-module",
  2047. "extra": {
  2048. "drupal": {
  2049. "version": "8.x-3.5",
  2050. "datestamp": "1732275602",
  2051. "security-coverage": {
  2052. "status": "covered",
  2053. "message": "Covered by Drupal's security advisory policy"
  2054. }
  2055. }
  2056. },
  2057. "notification-url": "https://packages.drupal.org/8/downloads",
  2058. "license": [
  2059. "GPL-2.0-or-later"
  2060. ],
  2061. "authors": [
  2062. {
  2063. "name": "adamps",
  2064. "homepage": "https://www.drupal.org/user/2650563"
  2065. },
  2066. {
  2067. "name": "mrfelton",
  2068. "homepage": "https://www.drupal.org/user/305669"
  2069. },
  2070. {
  2071. "name": "smokris",
  2072. "homepage": "https://www.drupal.org/user/161913"
  2073. }
  2074. ],
  2075. "description": "Allows site builders to set up fine-grained permissions for allowing \"sub-admin\" users to edit and delete other users.",
  2076. "homepage": "https://www.drupal.org/project/administerusersbyrole",
  2077. "support": {
  2078. "source": "https://git.drupalcode.org/project/administerusersbyrole"
  2079. }
  2080. },
  2081. {
  2082. "name": "drupal/advanced_text_formatter",
  2083. "version": "3.0.0-rc2",
  2084. "source": {
  2085. "type": "git",
  2086. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  2087. "reference": "3.0.0-rc2"
  2088. },
  2089. "dist": {
  2090. "type": "zip",
  2091. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-3.0.0-rc2.zip",
  2092. "reference": "3.0.0-rc2",
  2093. "shasum": "4b0601f135202647e65bd5a43f56ea1fce4bc607"
  2094. },
  2095. "require": {
  2096. "drupal/core": "^8 || ^9 || ^10 || ^11"
  2097. },
  2098. "type": "drupal-module",
  2099. "extra": {
  2100. "drupal": {
  2101. "version": "3.0.0-rc2",
  2102. "datestamp": "1727826727",
  2103. "security-coverage": {
  2104. "status": "not-covered",
  2105. "message": "RC releases are not covered by Drupal security advisories."
  2106. }
  2107. }
  2108. },
  2109. "notification-url": "https://packages.drupal.org/8/downloads",
  2110. "license": [
  2111. "GPL-2.0-or-later"
  2112. ],
  2113. "authors": [
  2114. {
  2115. "name": "azovsky",
  2116. "homepage": "https://www.drupal.org/user/330533"
  2117. },
  2118. {
  2119. "name": "knectar",
  2120. "homepage": "https://www.drupal.org/user/1184414"
  2121. },
  2122. {
  2123. "name": "realityloop",
  2124. "homepage": "https://www.drupal.org/user/139189"
  2125. },
  2126. {
  2127. "name": "thmnhat",
  2128. "homepage": "https://www.drupal.org/user/998946"
  2129. }
  2130. ],
  2131. "description": "Formatter of textfield, text area and text format.",
  2132. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  2133. "support": {
  2134. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  2135. }
  2136. },
  2137. {
  2138. "name": "drupal/audiofield",
  2139. "version": "1.13.0",
  2140. "source": {
  2141. "type": "git",
  2142. "url": "https://git.drupalcode.org/project/audiofield.git",
  2143. "reference": "8.x-1.13"
  2144. },
  2145. "dist": {
  2146. "type": "zip",
  2147. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  2148. "reference": "8.x-1.13",
  2149. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  2150. },
  2151. "require": {
  2152. "drupal/core": "^8 || ^9 || ^10"
  2153. },
  2154. "type": "drupal-module",
  2155. "extra": {
  2156. "drupal": {
  2157. "version": "8.x-1.13",
  2158. "datestamp": "1681143245",
  2159. "security-coverage": {
  2160. "status": "covered",
  2161. "message": "Covered by Drupal's security advisory policy"
  2162. }
  2163. },
  2164. "drush": {
  2165. "services": {
  2166. "drush.services.yml": "^9"
  2167. }
  2168. }
  2169. },
  2170. "notification-url": "https://packages.drupal.org/8/downloads",
  2171. "license": [
  2172. "GPL-2.0-or-later"
  2173. ],
  2174. "authors": [
  2175. {
  2176. "name": "Daniel Moberly",
  2177. "homepage": "https://www.drupal.org/u/danielmoberly",
  2178. "role": "Maintainer"
  2179. },
  2180. {
  2181. "name": "tamerzg",
  2182. "homepage": "https://www.drupal.org/user/464564"
  2183. }
  2184. ],
  2185. "description": "AudioField Module",
  2186. "homepage": "https://www.drupal.org/project/audiofield",
  2187. "support": {
  2188. "source": "https://git.drupalcode.org/project/audiofield",
  2189. "issues": "https://www.drupal.org/project/issues/audiofield"
  2190. }
  2191. },
  2192. {
  2193. "name": "drupal/autocomplete_deluxe",
  2194. "version": "2.1.2",
  2195. "source": {
  2196. "type": "git",
  2197. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2198. "reference": "2.1.2"
  2199. },
  2200. "dist": {
  2201. "type": "zip",
  2202. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.1.2.zip",
  2203. "reference": "2.1.2",
  2204. "shasum": "3e8ba6e205b21305d672a02edb6dc40770ade71e"
  2205. },
  2206. "require": {
  2207. "drupal/core": "^10.3 || ^11"
  2208. },
  2209. "type": "drupal-module",
  2210. "extra": {
  2211. "drupal": {
  2212. "version": "2.1.2",
  2213. "datestamp": "1742303934",
  2214. "security-coverage": {
  2215. "status": "covered",
  2216. "message": "Covered by Drupal's security advisory policy"
  2217. }
  2218. }
  2219. },
  2220. "notification-url": "https://packages.drupal.org/8/downloads",
  2221. "license": [
  2222. "GPL-2.0-or-later"
  2223. ],
  2224. "authors": [
  2225. {
  2226. "name": "Vardot",
  2227. "homepage": "https://www.drupal.org/vardot",
  2228. "role": "Maintenance for Drupal 8/9/10/11 versions"
  2229. },
  2230. {
  2231. "name": "Mediacurrent",
  2232. "homepage": "https://www.drupal.org/mediacurrent",
  2233. "role": "Supporting organization"
  2234. },
  2235. {
  2236. "name": "mohammed j. razem",
  2237. "homepage": "https://www.drupal.org/user/255384"
  2238. },
  2239. {
  2240. "name": "mpriscella",
  2241. "homepage": "https://www.drupal.org/user/2354820"
  2242. },
  2243. {
  2244. "name": "rajab natshah",
  2245. "homepage": "https://www.drupal.org/user/1414312"
  2246. },
  2247. {
  2248. "name": "sepgil",
  2249. "homepage": "https://www.drupal.org/user/512828"
  2250. }
  2251. ],
  2252. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2253. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2254. "support": {
  2255. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2256. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2257. }
  2258. },
  2259. {
  2260. "name": "drupal/autologout",
  2261. "version": "1.6.0",
  2262. "source": {
  2263. "type": "git",
  2264. "url": "https://git.drupalcode.org/project/autologout.git",
  2265. "reference": "8.x-1.6"
  2266. },
  2267. "dist": {
  2268. "type": "zip",
  2269. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.6.zip",
  2270. "reference": "8.x-1.6",
  2271. "shasum": "ec666b324ac8aaffe2f5012b1b21c27d9c1780c9"
  2272. },
  2273. "require": {
  2274. "drupal/core": "^9.2 || ^10 || ^11",
  2275. "drupal/js_cookie": "^1.0"
  2276. },
  2277. "type": "drupal-module",
  2278. "extra": {
  2279. "drupal": {
  2280. "version": "8.x-1.6",
  2281. "datestamp": "1732235148",
  2282. "security-coverage": {
  2283. "status": "covered",
  2284. "message": "Covered by Drupal's security advisory policy"
  2285. }
  2286. }
  2287. },
  2288. "notification-url": "https://packages.drupal.org/8/downloads",
  2289. "license": [
  2290. "GPL-2.0-or-later"
  2291. ],
  2292. "authors": [
  2293. {
  2294. "name": "ajits",
  2295. "homepage": "https://www.drupal.org/user/981944"
  2296. },
  2297. {
  2298. "name": "AjK",
  2299. "homepage": "https://www.drupal.org/user/39030"
  2300. },
  2301. {
  2302. "name": "boshtian",
  2303. "homepage": "https://www.drupal.org/user/1773456"
  2304. },
  2305. {
  2306. "name": "dandrews",
  2307. "homepage": "https://www.drupal.org/user/2014490"
  2308. },
  2309. {
  2310. "name": "darksnow",
  2311. "homepage": "https://www.drupal.org/user/391915"
  2312. },
  2313. {
  2314. "name": "japerry",
  2315. "homepage": "https://www.drupal.org/user/45640"
  2316. },
  2317. {
  2318. "name": "johnennew",
  2319. "homepage": "https://www.drupal.org/user/1150042"
  2320. },
  2321. {
  2322. "name": "jrglasgow",
  2323. "homepage": "https://www.drupal.org/user/36590"
  2324. },
  2325. {
  2326. "name": "kmasood",
  2327. "homepage": "https://www.drupal.org/user/1262860"
  2328. },
  2329. {
  2330. "name": "levelos",
  2331. "homepage": "https://www.drupal.org/user/54135"
  2332. },
  2333. {
  2334. "name": "prabeen.giri",
  2335. "homepage": "https://www.drupal.org/user/913078"
  2336. },
  2337. {
  2338. "name": "scott_earnest",
  2339. "homepage": "https://www.drupal.org/user/416158"
  2340. },
  2341. {
  2342. "name": "str8",
  2343. "homepage": "https://www.drupal.org/user/2865063"
  2344. },
  2345. {
  2346. "name": "the_g_bomb",
  2347. "homepage": "https://www.drupal.org/user/492012"
  2348. }
  2349. ],
  2350. "description": "Adds automated timed logout.",
  2351. "homepage": "http://drupal.org/project/autologout",
  2352. "support": {
  2353. "source": "https://git.drupalcode.org/project/autologout",
  2354. "issues": "https://www.drupal.org/project/issues/autologout"
  2355. }
  2356. },
  2357. {
  2358. "name": "drupal/better_exposed_filters",
  2359. "version": "6.0.6",
  2360. "source": {
  2361. "type": "git",
  2362. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2363. "reference": "6.0.6"
  2364. },
  2365. "dist": {
  2366. "type": "zip",
  2367. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.6.zip",
  2368. "reference": "6.0.6",
  2369. "shasum": "558ca591d450fc64512cae7f98cb4b0241e15ba3"
  2370. },
  2371. "require": {
  2372. "drupal/core": "^9 || ^10",
  2373. "drupal/jquery_ui": "*",
  2374. "drupal/jquery_ui_datepicker": "*",
  2375. "drupal/jquery_ui_slider": "*",
  2376. "drupal/jquery_ui_touch_punch": "*"
  2377. },
  2378. "type": "drupal-module",
  2379. "extra": {
  2380. "drupal": {
  2381. "version": "6.0.6",
  2382. "datestamp": "1716397541",
  2383. "security-coverage": {
  2384. "status": "covered",
  2385. "message": "Covered by Drupal's security advisory policy"
  2386. }
  2387. }
  2388. },
  2389. "notification-url": "https://packages.drupal.org/8/downloads",
  2390. "license": [
  2391. "GPL-2.0-or-later"
  2392. ],
  2393. "authors": [
  2394. {
  2395. "name": "Mike Keran",
  2396. "homepage": "https://www.drupal.org/u/mikeker"
  2397. },
  2398. {
  2399. "name": "Martin Keereman",
  2400. "homepage": "https://www.drupal.org/u/etroid"
  2401. },
  2402. {
  2403. "name": "Neslee Canil Pinto",
  2404. "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
  2405. },
  2406. {
  2407. "name": "mikeker",
  2408. "homepage": "https://www.drupal.org/user/192273"
  2409. },
  2410. {
  2411. "name": "neslee canil pinto",
  2412. "homepage": "https://www.drupal.org/user/3580850"
  2413. },
  2414. {
  2415. "name": "podarok",
  2416. "homepage": "https://www.drupal.org/user/116002"
  2417. },
  2418. {
  2419. "name": "rlhawk",
  2420. "homepage": "https://www.drupal.org/user/352283"
  2421. },
  2422. {
  2423. "name": "smustgrave",
  2424. "homepage": "https://www.drupal.org/user/3252890"
  2425. }
  2426. ],
  2427. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2428. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2429. "support": {
  2430. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2431. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2432. }
  2433. },
  2434. {
  2435. "name": "drupal/betterlogin",
  2436. "version": "2.0.2",
  2437. "source": {
  2438. "type": "git",
  2439. "url": "https://git.drupalcode.org/project/betterlogin.git",
  2440. "reference": "2.0.2"
  2441. },
  2442. "dist": {
  2443. "type": "zip",
  2444. "url": "https://ftp.drupal.org/files/projects/betterlogin-2.0.2.zip",
  2445. "reference": "2.0.2",
  2446. "shasum": "1c05fdea10862ff86c809c84d9eba95b6b52f90a"
  2447. },
  2448. "require": {
  2449. "drupal/core": "^9.0 || ^10.0"
  2450. },
  2451. "type": "drupal-module",
  2452. "extra": {
  2453. "drupal": {
  2454. "version": "2.0.2",
  2455. "datestamp": "1709573077",
  2456. "security-coverage": {
  2457. "status": "covered",
  2458. "message": "Covered by Drupal's security advisory policy"
  2459. }
  2460. }
  2461. },
  2462. "notification-url": "https://packages.drupal.org/8/downloads",
  2463. "license": [
  2464. "GPL-2.0-or-later"
  2465. ],
  2466. "authors": [
  2467. {
  2468. "name": "theamoeba",
  2469. "homepage": "https://www.drupal.org/user/251700"
  2470. },
  2471. {
  2472. "name": "yogeshmpawar",
  2473. "homepage": "https://www.drupal.org/user/2922907"
  2474. }
  2475. ],
  2476. "description": "Make the login screens better :)",
  2477. "homepage": "https://www.drupal.org/project/betterlogin",
  2478. "support": {
  2479. "source": "https://git.drupalcode.org/project/betterlogin"
  2480. }
  2481. },
  2482. {
  2483. "name": "drupal/blazy",
  2484. "version": "2.27.0",
  2485. "source": {
  2486. "type": "git",
  2487. "url": "https://git.drupalcode.org/project/blazy.git",
  2488. "reference": "8.x-2.27"
  2489. },
  2490. "dist": {
  2491. "type": "zip",
  2492. "url": "https://ftp.drupal.org/files/projects/blazy-8.x-2.27.zip",
  2493. "reference": "8.x-2.27",
  2494. "shasum": "3cf511ad1ea33c94a5c4b93f49344bef24456067"
  2495. },
  2496. "require": {
  2497. "drupal/core": "^8.8 || ^9 || ^10"
  2498. },
  2499. "conflict": {
  2500. "drupal/csp": "<1.12"
  2501. },
  2502. "type": "drupal-module",
  2503. "extra": {
  2504. "drupal": {
  2505. "version": "8.x-2.27",
  2506. "datestamp": "1715944090",
  2507. "security-coverage": {
  2508. "status": "covered",
  2509. "message": "Covered by Drupal's security advisory policy"
  2510. }
  2511. }
  2512. },
  2513. "notification-url": "https://packages.drupal.org/8/downloads",
  2514. "license": [
  2515. "GPL-2.0-or-later"
  2516. ],
  2517. "authors": [
  2518. {
  2519. "name": "Gaus Surahman",
  2520. "homepage": "https://www.drupal.org/u/gausarts",
  2521. "role": "Maintainer"
  2522. },
  2523. {
  2524. "name": "Contributors",
  2525. "homepage": "https://www.drupal.org/node/2663268/committers",
  2526. "role": "Contributor"
  2527. },
  2528. {
  2529. "name": "geek-merlin",
  2530. "homepage": "https://www.drupal.org/user/229048"
  2531. },
  2532. {
  2533. "name": "sun",
  2534. "homepage": "https://www.drupal.org/user/54136"
  2535. }
  2536. ],
  2537. "description": "Provides basic bLazy integration for lazy loading and multi-serving images.",
  2538. "homepage": "https://drupal.org/project/blazy",
  2539. "keywords": [
  2540. "Drupal",
  2541. "bLazy",
  2542. "lazyload"
  2543. ],
  2544. "support": {
  2545. "source": "https://git.drupalcode.org/project/blazy",
  2546. "issues": "https://drupal.org/project/issues/blazy"
  2547. }
  2548. },
  2549. {
  2550. "name": "drupal/block_class",
  2551. "version": "4.0.1",
  2552. "source": {
  2553. "type": "git",
  2554. "url": "https://git.drupalcode.org/project/block_class.git",
  2555. "reference": "4.0.1"
  2556. },
  2557. "dist": {
  2558. "type": "zip",
  2559. "url": "https://ftp.drupal.org/files/projects/block_class-4.0.1.zip",
  2560. "reference": "4.0.1",
  2561. "shasum": "46fa2437a8bd272a1f757a7cd957eb2747e28cdb"
  2562. },
  2563. "require": {
  2564. "drupal/core": "^9 || ^10 || ^11"
  2565. },
  2566. "type": "drupal-module",
  2567. "extra": {
  2568. "drupal": {
  2569. "version": "4.0.1",
  2570. "datestamp": "1745427425",
  2571. "security-coverage": {
  2572. "status": "covered",
  2573. "message": "Covered by Drupal's security advisory policy"
  2574. }
  2575. }
  2576. },
  2577. "notification-url": "https://packages.drupal.org/8/downloads",
  2578. "license": [
  2579. "GPL-2.0-or-later"
  2580. ],
  2581. "authors": [
  2582. {
  2583. "name": "Todd Nienkerk",
  2584. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2585. "role": "Maintainer"
  2586. },
  2587. {
  2588. "name": "Renato Gonçalves (RenatoG)",
  2589. "homepage": "https://www.drupal.org/u/RenatoG",
  2590. "role": "Maintainer"
  2591. },
  2592. {
  2593. "name": "Neslee Canil Pinto",
  2594. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2595. "role": "Maintainer"
  2596. },
  2597. {
  2598. "name": "Aaron Stanush",
  2599. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2600. "role": "Maintainer"
  2601. },
  2602. {
  2603. "name": "David Suissa (DYdave)",
  2604. "homepage": "https://www.drupal.org/u/DYdave",
  2605. "role": "Maintainer"
  2606. },
  2607. {
  2608. "name": "Four Kitchens",
  2609. "homepage": "https://www.drupal.org/user/358502",
  2610. "role": "Maintainer"
  2611. },
  2612. {
  2613. "name": "berenddeboer",
  2614. "homepage": "https://www.drupal.org/u/berenddeboer",
  2615. "role": "Maintainer"
  2616. },
  2617. {
  2618. "name": "elliotttf",
  2619. "homepage": "https://www.drupal.org/u/elliotttf",
  2620. "role": "Maintainer"
  2621. },
  2622. {
  2623. "name": "Michal Minecki (mirzu)",
  2624. "homepage": "https://www.drupal.org/u/mirzu",
  2625. "role": "Maintainer"
  2626. },
  2627. {
  2628. "name": "Patrick Coffey (pcoffey)",
  2629. "homepage": "https://www.drupal.org/u/pcoffey",
  2630. "role": "Maintainer"
  2631. },
  2632. {
  2633. "name": "Taylor Smith (tsmith512)",
  2634. "homepage": "https://www.drupal.org/u/tsmith512",
  2635. "role": "Maintainer"
  2636. }
  2637. ],
  2638. "description": "Allows assigning classes to Blocks.",
  2639. "homepage": "https://www.drupal.org/project/block_class",
  2640. "keywords": [
  2641. "Drupal"
  2642. ],
  2643. "support": {
  2644. "source": "https://git.drupalcode.org/project/block_class",
  2645. "issues": "https://www.drupal.org/project/issues/block_class",
  2646. "irc": "irc://irc.freenode.org/drupal-contribute"
  2647. }
  2648. },
  2649. {
  2650. "name": "drupal/computed_field",
  2651. "version": "3.0.0",
  2652. "source": {
  2653. "type": "git",
  2654. "url": "https://git.drupalcode.org/project/computed_field.git",
  2655. "reference": "3.0.0"
  2656. },
  2657. "dist": {
  2658. "type": "zip",
  2659. "url": "https://ftp.drupal.org/files/projects/computed_field-3.0.0.zip",
  2660. "reference": "3.0.0",
  2661. "shasum": "88f060658f30e196b177923dc12bc48df38042df"
  2662. },
  2663. "require": {
  2664. "drupal/core": "^8 || ^9 || ^10"
  2665. },
  2666. "type": "drupal-module",
  2667. "extra": {
  2668. "drupal": {
  2669. "version": "3.0.0",
  2670. "datestamp": "1705775905",
  2671. "security-coverage": {
  2672. "status": "covered",
  2673. "message": "Covered by Drupal's security advisory policy"
  2674. }
  2675. }
  2676. },
  2677. "notification-url": "https://packages.drupal.org/8/downloads",
  2678. "license": [
  2679. "GPL-2.0-or-later"
  2680. ],
  2681. "authors": [
  2682. {
  2683. "name": "agileware",
  2684. "homepage": "https://www.drupal.org/user/89106"
  2685. },
  2686. {
  2687. "name": "colan",
  2688. "homepage": "https://www.drupal.org/user/58704"
  2689. },
  2690. {
  2691. "name": "dealancer",
  2692. "homepage": "https://www.drupal.org/user/243418"
  2693. },
  2694. {
  2695. "name": "joachim",
  2696. "homepage": "https://www.drupal.org/user/107701"
  2697. },
  2698. {
  2699. "name": "markus_petrux",
  2700. "homepage": "https://www.drupal.org/user/39593"
  2701. },
  2702. {
  2703. "name": "Moonshine",
  2704. "homepage": "https://www.drupal.org/user/133705"
  2705. },
  2706. {
  2707. "name": "nickcaballero",
  2708. "homepage": "https://www.drupal.org/user/588336"
  2709. },
  2710. {
  2711. "name": "Pedro Lozano",
  2712. "homepage": "https://www.drupal.org/user/123766"
  2713. },
  2714. {
  2715. "name": "ram4nd",
  2716. "homepage": "https://www.drupal.org/user/601534"
  2717. }
  2718. ],
  2719. "description": "Defines a field type that allows values to be \"computed\" via PHP code.",
  2720. "homepage": "https://www.drupal.org/project/computed_field",
  2721. "support": {
  2722. "source": "https://git.drupalcode.org/project/computed_field"
  2723. }
  2724. },
  2725. {
  2726. "name": "drupal/computed_token_field",
  2727. "version": "1.0.0-beta1",
  2728. "source": {
  2729. "type": "git",
  2730. "url": "https://git.drupalcode.org/project/computed_token_field.git",
  2731. "reference": "1.0.0-beta1"
  2732. },
  2733. "dist": {
  2734. "type": "zip",
  2735. "url": "https://ftp.drupal.org/files/projects/computed_token_field-1.0.0-beta1.zip",
  2736. "reference": "1.0.0-beta1",
  2737. "shasum": "fb4904822b8321c6143990d39d937f3a488980a8"
  2738. },
  2739. "require": {
  2740. "drupal/computed_field": "^3.0",
  2741. "drupal/core": "^8 || ^9 || ^10"
  2742. },
  2743. "require-dev": {
  2744. "drupal/eck": "*",
  2745. "drupal/field_permissions": "*",
  2746. "drupal/hide_revision_field": "*",
  2747. "drupal/inline_entity_form": "*"
  2748. },
  2749. "type": "drupal-module",
  2750. "extra": {
  2751. "drupal": {
  2752. "version": "1.0.0-beta1",
  2753. "datestamp": "1741812647",
  2754. "security-coverage": {
  2755. "status": "not-covered",
  2756. "message": "Beta releases are not covered by Drupal security advisories."
  2757. }
  2758. }
  2759. },
  2760. "notification-url": "https://packages.drupal.org/8/downloads",
  2761. "license": [
  2762. "GPLv2 or later"
  2763. ],
  2764. "authors": [
  2765. {
  2766. "name": "Derek Laventure",
  2767. "homepage": "https://www.drupal.org/user/3082389",
  2768. "email": "derek@consensus.enterprises"
  2769. },
  2770. {
  2771. "name": "colan",
  2772. "homepage": "https://www.drupal.org/user/58704"
  2773. },
  2774. {
  2775. "name": "ergonlogic",
  2776. "homepage": "https://www.drupal.org/user/368613"
  2777. },
  2778. {
  2779. "name": "spiderman",
  2780. "homepage": "https://www.drupal.org/user/1631"
  2781. }
  2782. ],
  2783. "description": "Computed field that accepts a token to calculate its value.",
  2784. "homepage": "https://www.drupal.org/project/computed_token_field",
  2785. "support": {
  2786. "source": "https://git.drupalcode.org/project/computed_token_field"
  2787. }
  2788. },
  2789. {
  2790. "name": "drupal/config_devel",
  2791. "version": "1.10.0",
  2792. "source": {
  2793. "type": "git",
  2794. "url": "https://git.drupalcode.org/project/config_devel.git",
  2795. "reference": "8.x-1.10"
  2796. },
  2797. "dist": {
  2798. "type": "zip",
  2799. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.10.zip",
  2800. "reference": "8.x-1.10",
  2801. "shasum": "d47415b4be32180f27fcd58e86107a9a7b1351f3"
  2802. },
  2803. "require": {
  2804. "drupal/core": "^9.3 || ^10 || ^11"
  2805. },
  2806. "type": "drupal-module",
  2807. "extra": {
  2808. "drupal": {
  2809. "version": "8.x-1.10",
  2810. "datestamp": "1727184343",
  2811. "security-coverage": {
  2812. "status": "covered",
  2813. "message": "Covered by Drupal's security advisory policy"
  2814. }
  2815. }
  2816. },
  2817. "notification-url": "https://packages.drupal.org/8/downloads",
  2818. "license": [
  2819. "GPL-2.0+"
  2820. ],
  2821. "authors": [
  2822. {
  2823. "name": "alexpott",
  2824. "homepage": "https://www.drupal.org/user/157725"
  2825. },
  2826. {
  2827. "name": "benjy",
  2828. "homepage": "https://www.drupal.org/user/1852732"
  2829. },
  2830. {
  2831. "name": "chx",
  2832. "homepage": "https://www.drupal.org/user/9446"
  2833. },
  2834. {
  2835. "name": "joachim",
  2836. "homepage": "https://www.drupal.org/user/107701"
  2837. },
  2838. {
  2839. "name": "vijaycs85",
  2840. "homepage": "https://www.drupal.org/user/93488"
  2841. }
  2842. ],
  2843. "description": "Helps developers work with configuration.",
  2844. "homepage": "https://www.drupal.org/project/config_devel",
  2845. "support": {
  2846. "source": "https://git.drupalcode.org/project/config_devel"
  2847. }
  2848. },
  2849. {
  2850. "name": "drupal/config_enforce",
  2851. "version": "1.0.7",
  2852. "source": {
  2853. "type": "git",
  2854. "url": "https://git.drupalcode.org/project/config_enforce.git",
  2855. "reference": "1.0.7"
  2856. },
  2857. "dist": {
  2858. "type": "zip",
  2859. "url": "https://ftp.drupal.org/files/projects/config_enforce-1.0.7.zip",
  2860. "reference": "1.0.7",
  2861. "shasum": "f90a52c7ce804d45a0c5082925987b730ec0757a"
  2862. },
  2863. "require": {
  2864. "drupal/core": "^8 || ^9 || ^10",
  2865. "php": "^7.4 || ^8"
  2866. },
  2867. "suggest": {
  2868. "drush/drush": "Allows for running enforce commands via the CLI"
  2869. },
  2870. "type": "drupal-module",
  2871. "extra": {
  2872. "drupal": {
  2873. "version": "1.0.7",
  2874. "datestamp": "1723136457",
  2875. "security-coverage": {
  2876. "status": "covered",
  2877. "message": "Covered by Drupal's security advisory policy"
  2878. }
  2879. },
  2880. "drush": {
  2881. "services": {
  2882. "drush.services.yml": "^11"
  2883. }
  2884. }
  2885. },
  2886. "notification-url": "https://packages.drupal.org/8/downloads",
  2887. "license": [
  2888. "GPLv3 or later"
  2889. ],
  2890. "authors": [
  2891. {
  2892. "name": "Christopher Gervais",
  2893. "homepage": "https://www.drupal.org/user/1131532",
  2894. "email": "chris@ergonlogic.com"
  2895. },
  2896. {
  2897. "name": "Dan Friedman",
  2898. "homepage": "https://www.drupal.org/user/58704",
  2899. "email": "dan@consensus.enterprises"
  2900. },
  2901. {
  2902. "name": "Derek Laventure",
  2903. "homepage": "https://www.drupal.org/user/368613",
  2904. "email": "derek@consensus.enterprises"
  2905. },
  2906. {
  2907. "name": "Matei Stanca",
  2908. "homepage": "https://ambientimpact.com"
  2909. },
  2910. {
  2911. "name": "M Parker",
  2912. "homepage": "https://www.drupal.org/u/mparker17"
  2913. },
  2914. {
  2915. "name": "Serena Zhu",
  2916. "homepage": "https://www.drupal.org/u/szhu"
  2917. },
  2918. {
  2919. "name": "spiderman",
  2920. "homepage": "https://www.drupal.org/user/1631"
  2921. },
  2922. {
  2923. "name": "szhu",
  2924. "homepage": "https://www.drupal.org/user/3525295"
  2925. }
  2926. ],
  2927. "description": "This experimental project seeks to make Drupal better-suited to SaaS application development by allowing some configuration to be treated as read-only.",
  2928. "homepage": "https://www.drupal.org/project/config_enforce",
  2929. "support": {
  2930. "source": "https://git.drupalcode.org/project/config_enforce"
  2931. }
  2932. },
  2933. {
  2934. "name": "drupal/config_filter",
  2935. "version": "2.7.0",
  2936. "source": {
  2937. "type": "git",
  2938. "url": "https://git.drupalcode.org/project/config_filter.git",
  2939. "reference": "8.x-2.7"
  2940. },
  2941. "dist": {
  2942. "type": "zip",
  2943. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.7.zip",
  2944. "reference": "8.x-2.7",
  2945. "shasum": "7fe7161b93c7e24c6db135f1cf82d144bef66e50"
  2946. },
  2947. "require": {
  2948. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2949. },
  2950. "conflict": {
  2951. "drush/drush": "<10"
  2952. },
  2953. "suggest": {
  2954. "drupal/config_split": "Split site configuration for different environments."
  2955. },
  2956. "type": "drupal-module",
  2957. "extra": {
  2958. "drupal": {
  2959. "version": "8.x-2.7",
  2960. "datestamp": "1727472458",
  2961. "security-coverage": {
  2962. "status": "covered",
  2963. "message": "Covered by Drupal's security advisory policy"
  2964. }
  2965. }
  2966. },
  2967. "notification-url": "https://packages.drupal.org/8/downloads",
  2968. "license": [
  2969. "GPL-2.0-or-later"
  2970. ],
  2971. "authors": [
  2972. {
  2973. "name": "Fabian Bircher",
  2974. "homepage": "https://www.drupal.org/u/bircher",
  2975. "email": "opensource@fabianbircher.com",
  2976. "role": "Maintainer"
  2977. },
  2978. {
  2979. "name": "Nuvole Web",
  2980. "homepage": "http://nuvole.org",
  2981. "email": "info@nuvole.org",
  2982. "role": "Maintainer"
  2983. },
  2984. {
  2985. "name": "pescetti",
  2986. "homepage": "https://www.drupal.org/user/436244"
  2987. }
  2988. ],
  2989. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2990. "homepage": "https://www.drupal.org/project/config_filter",
  2991. "keywords": [
  2992. "Drupal",
  2993. "configuration",
  2994. "configuration management"
  2995. ],
  2996. "support": {
  2997. "source": "https://git.drupalcode.org/project/config_filter",
  2998. "issues": "https://www.drupal.org/project/issues/config_filter",
  2999. "slack": "https://drupal.slack.com/archives/C45342CDD"
  3000. }
  3001. },
  3002. {
  3003. "name": "drupal/config_ignore",
  3004. "version": "3.3.0",
  3005. "source": {
  3006. "type": "git",
  3007. "url": "https://git.drupalcode.org/project/config_ignore.git",
  3008. "reference": "8.x-3.3"
  3009. },
  3010. "dist": {
  3011. "type": "zip",
  3012. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  3013. "reference": "8.x-3.3",
  3014. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  3015. },
  3016. "require": {
  3017. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  3018. },
  3019. "require-dev": {
  3020. "drupal/config_filter": "^1.8||^2.2",
  3021. "drush/drush": "^10 || ^11 || ^12"
  3022. },
  3023. "type": "drupal-module",
  3024. "extra": {
  3025. "drupal": {
  3026. "version": "8.x-3.3",
  3027. "datestamp": "1713299496",
  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": "Tommy Lynge Jørgensen",
  3041. "homepage": "https://www.drupal.org/u/tlyngej",
  3042. "email": "tlyngej@gmail.com",
  3043. "role": "Maintainer"
  3044. },
  3045. {
  3046. "name": "Fabian Bircher",
  3047. "homepage": "https://www.drupal.org/u/bircher",
  3048. "role": "Maintainer"
  3049. },
  3050. {
  3051. "name": "tlyngej",
  3052. "homepage": "https://www.drupal.org/user/413139"
  3053. }
  3054. ],
  3055. "description": "Ignore certain configuration during import and export.",
  3056. "homepage": "http://drupal.org/project/config_ignore",
  3057. "support": {
  3058. "source": "https://git.drupalcode.org/project/config_ignore",
  3059. "issues": "http://drupal.org/project/config_ignore"
  3060. }
  3061. },
  3062. {
  3063. "name": "drupal/config_pages",
  3064. "version": "2.17.0",
  3065. "source": {
  3066. "type": "git",
  3067. "url": "https://git.drupalcode.org/project/config_pages.git",
  3068. "reference": "8.x-2.17"
  3069. },
  3070. "dist": {
  3071. "type": "zip",
  3072. "url": "https://ftp.drupal.org/files/projects/config_pages-8.x-2.17.zip",
  3073. "reference": "8.x-2.17",
  3074. "shasum": "717b1eb911e30e766a891d45eeefa34825794ac4"
  3075. },
  3076. "require": {
  3077. "drupal/core": "^8.5 | ^9 || ^10 || ^11"
  3078. },
  3079. "type": "drupal-module",
  3080. "extra": {
  3081. "drupal": {
  3082. "version": "8.x-2.17",
  3083. "datestamp": "1736029180",
  3084. "security-coverage": {
  3085. "status": "covered",
  3086. "message": "Covered by Drupal's security advisory policy"
  3087. }
  3088. },
  3089. "drush": {
  3090. "services": {
  3091. "drush.services.yml": "^9"
  3092. }
  3093. }
  3094. },
  3095. "notification-url": "https://packages.drupal.org/8/downloads",
  3096. "license": [
  3097. "GPL-2.0-or-later"
  3098. ],
  3099. "authors": [
  3100. {
  3101. "name": "m.krestnicov",
  3102. "homepage": "https://www.drupal.org/user/3193903"
  3103. },
  3104. {
  3105. "name": "qwaygon",
  3106. "homepage": "https://www.drupal.org/user/636624"
  3107. },
  3108. {
  3109. "name": "shumer",
  3110. "homepage": "https://www.drupal.org/user/2297432"
  3111. }
  3112. ],
  3113. "description": "ConfigPages module",
  3114. "homepage": "http://drupal.org/project/config_pages",
  3115. "keywords": [
  3116. "Drupal"
  3117. ],
  3118. "support": {
  3119. "source": "http://cgit.drupalcode.org/config_pages",
  3120. "issues": "http://drupal.org/project/issues/config_pages"
  3121. }
  3122. },
  3123. {
  3124. "name": "drupal/config_update",
  3125. "version": "2.0.0-alpha4",
  3126. "source": {
  3127. "type": "git",
  3128. "url": "https://git.drupalcode.org/project/config_update.git",
  3129. "reference": "2.0.0-alpha4"
  3130. },
  3131. "dist": {
  3132. "type": "zip",
  3133. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip",
  3134. "reference": "2.0.0-alpha4",
  3135. "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e"
  3136. },
  3137. "require": {
  3138. "drupal/core": "^9.4 || ^10 || ^11"
  3139. },
  3140. "type": "drupal-module",
  3141. "extra": {
  3142. "drupal": {
  3143. "version": "2.0.0-alpha4",
  3144. "datestamp": "1724596931",
  3145. "security-coverage": {
  3146. "status": "not-covered",
  3147. "message": "Alpha releases are not covered by Drupal security advisories."
  3148. }
  3149. }
  3150. },
  3151. "notification-url": "https://packages.drupal.org/8/downloads",
  3152. "license": [
  3153. "GPL-2.0-or-later"
  3154. ],
  3155. "authors": [
  3156. {
  3157. "name": "codebymikey",
  3158. "homepage": "https://www.drupal.org/user/3573206"
  3159. },
  3160. {
  3161. "name": "pasqualle",
  3162. "homepage": "https://www.drupal.org/user/80733"
  3163. },
  3164. {
  3165. "name": "vishalkhode",
  3166. "homepage": "https://www.drupal.org/user/2439156"
  3167. }
  3168. ],
  3169. "description": "Provides basic revert and update functionality for other modules.",
  3170. "homepage": "https://www.drupal.org/project/config_update",
  3171. "support": {
  3172. "source": "https://git.drupalcode.org/project/config_update"
  3173. }
  3174. },
  3175. {
  3176. "name": "drupal/content_lock",
  3177. "version": "2.4.0",
  3178. "source": {
  3179. "type": "git",
  3180. "url": "https://git.drupalcode.org/project/content_lock.git",
  3181. "reference": "8.x-2.4"
  3182. },
  3183. "dist": {
  3184. "type": "zip",
  3185. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.4.zip",
  3186. "reference": "8.x-2.4",
  3187. "shasum": "99d149e530555aae12b44292efe5887d373e862e"
  3188. },
  3189. "require": {
  3190. "drupal/core": "^9.0 || ^10.0"
  3191. },
  3192. "type": "drupal-module",
  3193. "extra": {
  3194. "drupal": {
  3195. "version": "8.x-2.4",
  3196. "datestamp": "1715783058",
  3197. "security-coverage": {
  3198. "status": "covered",
  3199. "message": "Covered by Drupal's security advisory policy"
  3200. }
  3201. }
  3202. },
  3203. "notification-url": "https://packages.drupal.org/8/downloads",
  3204. "license": [
  3205. "GPL-2.0-or-later"
  3206. ],
  3207. "authors": [
  3208. {
  3209. "name": "alexpott",
  3210. "homepage": "https://www.drupal.org/user/157725"
  3211. },
  3212. {
  3213. "name": "astonvictor",
  3214. "homepage": "https://www.drupal.org/user/3466615"
  3215. },
  3216. {
  3217. "name": "chr.fritsch",
  3218. "homepage": "https://www.drupal.org/user/2103716"
  3219. },
  3220. {
  3221. "name": "daniel.bosen",
  3222. "homepage": "https://www.drupal.org/user/404865"
  3223. },
  3224. {
  3225. "name": "ergonlogic",
  3226. "homepage": "https://www.drupal.org/user/368613"
  3227. },
  3228. {
  3229. "name": "mfb",
  3230. "homepage": "https://www.drupal.org/user/12302"
  3231. },
  3232. {
  3233. "name": "volkerk",
  3234. "homepage": "https://www.drupal.org/user/57527"
  3235. }
  3236. ],
  3237. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3238. "homepage": "https://www.drupal.org/project/content_lock",
  3239. "support": {
  3240. "source": "https://git.drupalcode.org/project/content_lock"
  3241. }
  3242. },
  3243. {
  3244. "name": "drupal/context",
  3245. "version": "5.0.0-rc2",
  3246. "source": {
  3247. "type": "git",
  3248. "url": "https://git.drupalcode.org/project/context.git",
  3249. "reference": "5.0.0-rc2"
  3250. },
  3251. "dist": {
  3252. "type": "zip",
  3253. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc2.zip",
  3254. "reference": "5.0.0-rc2",
  3255. "shasum": "05e866f01bc57b5346d52a5b6230fdd13e21695d"
  3256. },
  3257. "require": {
  3258. "drupal/core": "^9.3 || ^10 || ^11"
  3259. },
  3260. "type": "drupal-module",
  3261. "extra": {
  3262. "drupal": {
  3263. "version": "5.0.0-rc2",
  3264. "datestamp": "1741253306",
  3265. "security-coverage": {
  3266. "status": "not-covered",
  3267. "message": "RC releases are not covered by Drupal security advisories."
  3268. }
  3269. }
  3270. },
  3271. "notification-url": "https://packages.drupal.org/8/downloads",
  3272. "license": [
  3273. "MIT"
  3274. ],
  3275. "authors": [
  3276. {
  3277. "name": "Christoffer Palm",
  3278. "homepage": "http://www.oddhill.se/",
  3279. "email": "christoffer.palm@oddhill.se",
  3280. "role": "Developer"
  3281. },
  3282. {
  3283. "name": "boshtian",
  3284. "homepage": "https://www.drupal.org/user/1773456"
  3285. },
  3286. {
  3287. "name": "colan",
  3288. "homepage": "https://www.drupal.org/user/58704"
  3289. },
  3290. {
  3291. "name": "emanaton",
  3292. "homepage": "https://www.drupal.org/user/120853"
  3293. },
  3294. {
  3295. "name": "febbraro",
  3296. "homepage": "https://www.drupal.org/user/43670"
  3297. },
  3298. {
  3299. "name": "fizk",
  3300. "homepage": "https://www.drupal.org/user/473174"
  3301. },
  3302. {
  3303. "name": "hass",
  3304. "homepage": "https://www.drupal.org/user/85918"
  3305. },
  3306. {
  3307. "name": "hefox",
  3308. "homepage": "https://www.drupal.org/user/426416"
  3309. },
  3310. {
  3311. "name": "jmiccolis",
  3312. "homepage": "https://www.drupal.org/user/31731"
  3313. },
  3314. {
  3315. "name": "kristen pol",
  3316. "homepage": "https://www.drupal.org/user/8389"
  3317. },
  3318. {
  3319. "name": "mandclu",
  3320. "homepage": "https://www.drupal.org/user/52136"
  3321. },
  3322. {
  3323. "name": "nedjo",
  3324. "homepage": "https://www.drupal.org/user/4481"
  3325. },
  3326. {
  3327. "name": "NormySan",
  3328. "homepage": "https://www.drupal.org/user/112352"
  3329. },
  3330. {
  3331. "name": "patricksettle",
  3332. "homepage": "https://www.drupal.org/user/26618"
  3333. },
  3334. {
  3335. "name": "paulocs",
  3336. "homepage": "https://www.drupal.org/user/3640109"
  3337. },
  3338. {
  3339. "name": "steven jones",
  3340. "homepage": "https://www.drupal.org/user/99644"
  3341. },
  3342. {
  3343. "name": "tekante",
  3344. "homepage": "https://www.drupal.org/user/640024"
  3345. },
  3346. {
  3347. "name": "yhahn",
  3348. "homepage": "https://www.drupal.org/user/264833"
  3349. }
  3350. ],
  3351. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3352. "homepage": "https://github.com/oddhill/context",
  3353. "keywords": [
  3354. "Drupal",
  3355. "block",
  3356. "conditions",
  3357. "context",
  3358. "visibility"
  3359. ],
  3360. "support": {
  3361. "source": "https://github.com/oddhill/context",
  3362. "issues": "https://github.com/oddhill/context/issues",
  3363. "docs": "https://github.com/oddhill/context"
  3364. }
  3365. },
  3366. {
  3367. "name": "drupal/core",
  3368. "version": "10.5.1",
  3369. "source": {
  3370. "type": "git",
  3371. "url": "https://github.com/drupal/core.git",
  3372. "reference": "551442fec1db69cf6eedb1601a348d8a6268060f"
  3373. },
  3374. "dist": {
  3375. "type": "zip",
  3376. "url": "https://api.github.com/repos/drupal/core/zipball/551442fec1db69cf6eedb1601a348d8a6268060f",
  3377. "reference": "551442fec1db69cf6eedb1601a348d8a6268060f",
  3378. "shasum": ""
  3379. },
  3380. "require": {
  3381. "asm89/stack-cors": "^2.3",
  3382. "composer-runtime-api": "^2.1",
  3383. "composer/semver": "^3.3",
  3384. "doctrine/annotations": "^1.14",
  3385. "egulias/email-validator": "^3.2.1|^4.0",
  3386. "ext-date": "*",
  3387. "ext-dom": "*",
  3388. "ext-filter": "*",
  3389. "ext-gd": "*",
  3390. "ext-hash": "*",
  3391. "ext-json": "*",
  3392. "ext-pcre": "*",
  3393. "ext-pdo": "*",
  3394. "ext-session": "*",
  3395. "ext-simplexml": "*",
  3396. "ext-spl": "*",
  3397. "ext-tokenizer": "*",
  3398. "ext-xml": "*",
  3399. "guzzlehttp/guzzle": "^7.5",
  3400. "guzzlehttp/psr7": "^2.4.5",
  3401. "masterminds/html5": "^2.7",
  3402. "mck89/peast": "^1.14",
  3403. "pear/archive_tar": "^1.4.14",
  3404. "php": ">=8.1.0",
  3405. "psr/log": "^3.0",
  3406. "sebastian/diff": "^4",
  3407. "symfony/console": "^6.4",
  3408. "symfony/dependency-injection": "^6.4",
  3409. "symfony/event-dispatcher": "^6.4",
  3410. "symfony/filesystem": "^6.4",
  3411. "symfony/finder": "^6.4",
  3412. "symfony/http-foundation": "^6.4",
  3413. "symfony/http-kernel": "^6.4",
  3414. "symfony/mailer": "^6.4",
  3415. "symfony/mime": "^6.4",
  3416. "symfony/polyfill-iconv": "^1.26",
  3417. "symfony/process": "^6.4",
  3418. "symfony/psr-http-message-bridge": "^2.1|^6.4",
  3419. "symfony/routing": "^6.4",
  3420. "symfony/serializer": "^6.4",
  3421. "symfony/validator": "^6.4",
  3422. "symfony/yaml": "^6.4",
  3423. "twig/twig": "^3.15.0"
  3424. },
  3425. "conflict": {
  3426. "drush/drush": "<12.4.3"
  3427. },
  3428. "replace": {
  3429. "drupal/core-annotation": "self.version",
  3430. "drupal/core-assertion": "self.version",
  3431. "drupal/core-class-finder": "self.version",
  3432. "drupal/core-datetime": "self.version",
  3433. "drupal/core-dependency-injection": "self.version",
  3434. "drupal/core-diff": "self.version",
  3435. "drupal/core-discovery": "self.version",
  3436. "drupal/core-event-dispatcher": "self.version",
  3437. "drupal/core-file-cache": "self.version",
  3438. "drupal/core-file-security": "self.version",
  3439. "drupal/core-filesystem": "self.version",
  3440. "drupal/core-front-matter": "self.version",
  3441. "drupal/core-gettext": "self.version",
  3442. "drupal/core-graph": "self.version",
  3443. "drupal/core-http-foundation": "self.version",
  3444. "drupal/core-php-storage": "self.version",
  3445. "drupal/core-plugin": "self.version",
  3446. "drupal/core-proxy-builder": "self.version",
  3447. "drupal/core-render": "self.version",
  3448. "drupal/core-serialization": "self.version",
  3449. "drupal/core-transliteration": "self.version",
  3450. "drupal/core-utility": "self.version",
  3451. "drupal/core-uuid": "self.version",
  3452. "drupal/core-version": "self.version"
  3453. },
  3454. "suggest": {
  3455. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  3456. },
  3457. "type": "drupal-core",
  3458. "extra": {
  3459. "drupal-scaffold": {
  3460. "file-mapping": {
  3461. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3462. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  3463. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3464. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3465. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3466. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3467. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3468. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3469. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3470. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3471. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3472. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3473. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3474. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3475. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt",
  3476. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3477. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3478. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3479. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3480. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3481. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3482. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3483. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php"
  3484. }
  3485. }
  3486. },
  3487. "autoload": {
  3488. "files": [
  3489. "includes/bootstrap.inc"
  3490. ],
  3491. "psr-4": {
  3492. "Drupal\\Core\\": "lib/Drupal/Core",
  3493. "Drupal\\Component\\": "lib/Drupal/Component"
  3494. },
  3495. "classmap": [
  3496. "lib/Drupal.php",
  3497. "lib/Drupal/Component/DependencyInjection/Container.php",
  3498. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3499. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3500. "lib/Drupal/Component/Utility/Timer.php",
  3501. "lib/Drupal/Component/Utility/Unicode.php",
  3502. "lib/Drupal/Core/Cache/Cache.php",
  3503. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3504. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3505. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3506. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3507. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3508. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3509. "lib/Drupal/Core/Database/Connection.php",
  3510. "lib/Drupal/Core/Database/Database.php",
  3511. "lib/Drupal/Core/Database/StatementInterface.php",
  3512. "lib/Drupal/Core/DependencyInjection/Container.php",
  3513. "lib/Drupal/Core/DrupalKernel.php",
  3514. "lib/Drupal/Core/DrupalKernelInterface.php",
  3515. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3516. "lib/Drupal/Core/Site/Settings.php",
  3517. "lib/Drupal/Component/Datetime/Time.php"
  3518. ]
  3519. },
  3520. "notification-url": "https://packagist.org/downloads/",
  3521. "license": [
  3522. "GPL-2.0-or-later"
  3523. ],
  3524. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3525. "support": {
  3526. "source": "https://github.com/drupal/core/tree/10.5.1"
  3527. },
  3528. "time": "2025-06-26T14:05:15+00:00"
  3529. },
  3530. {
  3531. "name": "drupal/core-composer-scaffold",
  3532. "version": "10.5.1",
  3533. "source": {
  3534. "type": "git",
  3535. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3536. "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55"
  3537. },
  3538. "dist": {
  3539. "type": "zip",
  3540. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/db17b59620ce1c142a34dc017d9e696ce4771e55",
  3541. "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55",
  3542. "shasum": ""
  3543. },
  3544. "require": {
  3545. "composer-plugin-api": "^2",
  3546. "php": ">=7.3.0"
  3547. },
  3548. "conflict": {
  3549. "drupal-composer/drupal-scaffold": "*"
  3550. },
  3551. "require-dev": {
  3552. "composer/composer": "^1.8@stable"
  3553. },
  3554. "type": "composer-plugin",
  3555. "extra": {
  3556. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3557. "branch-alias": {
  3558. "dev-master": "1.0.x-dev"
  3559. }
  3560. },
  3561. "autoload": {
  3562. "psr-4": {
  3563. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3564. }
  3565. },
  3566. "notification-url": "https://packagist.org/downloads/",
  3567. "license": [
  3568. "GPL-2.0-or-later"
  3569. ],
  3570. "description": "A flexible Composer project scaffold builder.",
  3571. "homepage": "https://www.drupal.org/project/drupal",
  3572. "keywords": [
  3573. "drupal"
  3574. ],
  3575. "support": {
  3576. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.5.1"
  3577. },
  3578. "time": "2024-08-22T14:31:30+00:00"
  3579. },
  3580. {
  3581. "name": "drupal/core-project-message",
  3582. "version": "10.5.1",
  3583. "source": {
  3584. "type": "git",
  3585. "url": "https://github.com/drupal/core-project-message.git",
  3586. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8"
  3587. },
  3588. "dist": {
  3589. "type": "zip",
  3590. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  3591. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  3592. "shasum": ""
  3593. },
  3594. "require": {
  3595. "composer-plugin-api": "^2",
  3596. "php": ">=7.3.0"
  3597. },
  3598. "type": "composer-plugin",
  3599. "extra": {
  3600. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3601. },
  3602. "autoload": {
  3603. "psr-4": {
  3604. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3605. }
  3606. },
  3607. "notification-url": "https://packagist.org/downloads/",
  3608. "license": [
  3609. "GPL-2.0-or-later"
  3610. ],
  3611. "description": "Adds a message after Composer installation.",
  3612. "homepage": "https://www.drupal.org/project/drupal",
  3613. "keywords": [
  3614. "drupal"
  3615. ],
  3616. "support": {
  3617. "source": "https://github.com/drupal/core-project-message/tree/11.1.8"
  3618. },
  3619. "time": "2023-07-24T07:55:25+00:00"
  3620. },
  3621. {
  3622. "name": "drupal/core-recommended",
  3623. "version": "10.5.1",
  3624. "source": {
  3625. "type": "git",
  3626. "url": "https://github.com/drupal/core-recommended.git",
  3627. "reference": "60b76ba11c2ae9088283a1e6963b929ca976f4fc"
  3628. },
  3629. "dist": {
  3630. "type": "zip",
  3631. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/60b76ba11c2ae9088283a1e6963b929ca976f4fc",
  3632. "reference": "60b76ba11c2ae9088283a1e6963b929ca976f4fc",
  3633. "shasum": ""
  3634. },
  3635. "require": {
  3636. "asm89/stack-cors": "~v2.3.0",
  3637. "composer/semver": "~3.4.3",
  3638. "doctrine/annotations": "~1.14.4",
  3639. "doctrine/deprecations": "~1.1.5",
  3640. "doctrine/lexer": "~2.1.1",
  3641. "drupal/core": "10.5.1",
  3642. "egulias/email-validator": "~4.0.4",
  3643. "guzzlehttp/guzzle": "~7.9.3",
  3644. "guzzlehttp/promises": "~2.2.0",
  3645. "guzzlehttp/psr7": "~2.7.1",
  3646. "masterminds/html5": "~2.9.0",
  3647. "mck89/peast": "~v1.17.0",
  3648. "pear/archive_tar": "~1.5.0",
  3649. "pear/console_getopt": "~v1.4.3",
  3650. "pear/pear-core-minimal": "~v1.10.16",
  3651. "pear/pear_exception": "~v1.0.2",
  3652. "psr/cache": "~3.0.0",
  3653. "psr/container": "~2.0.2",
  3654. "psr/event-dispatcher": "~1.0.0",
  3655. "psr/http-client": "~1.0.3",
  3656. "psr/http-factory": "~1.1.0",
  3657. "psr/log": "~3.0.2",
  3658. "ralouphie/getallheaders": "~3.0.3",
  3659. "sebastian/diff": "~4.0.6",
  3660. "symfony/console": "~v6.4.21",
  3661. "symfony/dependency-injection": "~v6.4.20",
  3662. "symfony/deprecation-contracts": "~v3.5.1",
  3663. "symfony/error-handler": "~v6.4.20",
  3664. "symfony/event-dispatcher": "~v6.4.13",
  3665. "symfony/event-dispatcher-contracts": "~v3.5.1",
  3666. "symfony/filesystem": "~v6.4.13",
  3667. "symfony/finder": "~v6.4.17",
  3668. "symfony/http-foundation": "~v6.4.21",
  3669. "symfony/http-kernel": "~v6.4.21",
  3670. "symfony/mailer": "~v6.4.21",
  3671. "symfony/mime": "~v6.4.21",
  3672. "symfony/polyfill-ctype": "~v1.31.0",
  3673. "symfony/polyfill-iconv": "~v1.31.0",
  3674. "symfony/polyfill-intl-grapheme": "~v1.31.0",
  3675. "symfony/polyfill-intl-idn": "~v1.31.0",
  3676. "symfony/polyfill-intl-normalizer": "~v1.31.0",
  3677. "symfony/polyfill-mbstring": "~v1.31.0",
  3678. "symfony/polyfill-php83": "~v1.31.0",
  3679. "symfony/process": "~v6.4.20",
  3680. "symfony/psr-http-message-bridge": "~v6.4.13",
  3681. "symfony/routing": "~v6.4.18",
  3682. "symfony/serializer": "~v6.4.21",
  3683. "symfony/service-contracts": "~v3.5.1",
  3684. "symfony/string": "~v6.4.21",
  3685. "symfony/translation-contracts": "~v3.5.1",
  3686. "symfony/validator": "~v6.4.21",
  3687. "symfony/var-dumper": "~v6.4.21",
  3688. "symfony/var-exporter": "~v6.4.21",
  3689. "symfony/yaml": "~v6.4.21",
  3690. "twig/twig": "~v3.20.0"
  3691. },
  3692. "conflict": {
  3693. "webflo/drupal-core-strict": "*"
  3694. },
  3695. "type": "metapackage",
  3696. "notification-url": "https://packagist.org/downloads/",
  3697. "license": [
  3698. "GPL-2.0-or-later"
  3699. ],
  3700. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3701. "support": {
  3702. "source": "https://github.com/drupal/core-recommended/tree/10.5.1"
  3703. },
  3704. "time": "2025-06-26T14:05:15+00:00"
  3705. },
  3706. {
  3707. "name": "drupal/ctools",
  3708. "version": "4.1.0",
  3709. "source": {
  3710. "type": "git",
  3711. "url": "https://git.drupalcode.org/project/ctools.git",
  3712. "reference": "4.1.0"
  3713. },
  3714. "dist": {
  3715. "type": "zip",
  3716. "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip",
  3717. "reference": "4.1.0",
  3718. "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874"
  3719. },
  3720. "require": {
  3721. "drupal/core": "^9.5 || ^10 || ^11"
  3722. },
  3723. "type": "drupal-module",
  3724. "extra": {
  3725. "drupal": {
  3726. "version": "4.1.0",
  3727. "datestamp": "1718144949",
  3728. "security-coverage": {
  3729. "status": "covered",
  3730. "message": "Covered by Drupal's security advisory policy"
  3731. }
  3732. },
  3733. "branch-alias": {
  3734. "dev-8.x-3.x": "3.x-dev"
  3735. }
  3736. },
  3737. "notification-url": "https://packages.drupal.org/8/downloads",
  3738. "license": [
  3739. "GPL-2.0-or-later"
  3740. ],
  3741. "authors": [
  3742. {
  3743. "name": "Kris Vanderwater (EclipseGc)",
  3744. "homepage": "https://www.drupal.org/u/eclipsegc",
  3745. "role": "Maintainer"
  3746. },
  3747. {
  3748. "name": "Jakob Perry (japerry)",
  3749. "homepage": "https://www.drupal.org/u/japerry",
  3750. "role": "Maintainer"
  3751. },
  3752. {
  3753. "name": "Tim Plunkett (tim.plunkett)",
  3754. "homepage": "https://www.drupal.org/u/timplunkett",
  3755. "role": "Maintainer"
  3756. },
  3757. {
  3758. "name": "James Gilliland (neclimdul)",
  3759. "homepage": "https://www.drupal.org/u/neclimdul",
  3760. "role": "Maintainer"
  3761. },
  3762. {
  3763. "name": "Daniel Wehner (dawehner)",
  3764. "homepage": "https://www.drupal.org/u/dawehner",
  3765. "role": "Maintainer"
  3766. },
  3767. {
  3768. "name": "joelpittet",
  3769. "homepage": "https://www.drupal.org/user/160302"
  3770. },
  3771. {
  3772. "name": "merlinofchaos",
  3773. "homepage": "https://www.drupal.org/user/26979"
  3774. },
  3775. {
  3776. "name": "neclimdul",
  3777. "homepage": "https://www.drupal.org/user/48673"
  3778. },
  3779. {
  3780. "name": "sdboyer",
  3781. "homepage": "https://www.drupal.org/user/146719"
  3782. },
  3783. {
  3784. "name": "sun",
  3785. "homepage": "https://www.drupal.org/user/54136"
  3786. },
  3787. {
  3788. "name": "tim.plunkett",
  3789. "homepage": "https://www.drupal.org/user/241634"
  3790. }
  3791. ],
  3792. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3793. "homepage": "https://www.drupal.org/project/ctools",
  3794. "support": {
  3795. "source": "https://git.drupalcode.org/project/ctools",
  3796. "issues": "https://www.drupal.org/project/issues/ctools"
  3797. }
  3798. },
  3799. {
  3800. "name": "drupal/date_range_formatter",
  3801. "version": "dev-9.0.x",
  3802. "source": {
  3803. "type": "git",
  3804. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3805. "reference": "d909818f1de39d7498e771a2c334ca7b9b4b350e"
  3806. },
  3807. "require": {
  3808. "drupal/core": "^8 || ^9 || ^10"
  3809. },
  3810. "type": "drupal-module",
  3811. "extra": {
  3812. "branch-alias": {
  3813. "dev-9.0.x": "9.0.x-dev"
  3814. },
  3815. "drupal": {
  3816. "version": "9.0.x-dev",
  3817. "datestamp": "1718887202",
  3818. "security-coverage": {
  3819. "status": "not-covered",
  3820. "message": "Dev releases are not covered by Drupal security advisories."
  3821. }
  3822. }
  3823. },
  3824. "notification-url": "https://packages.drupal.org/8/downloads",
  3825. "license": [
  3826. "GPL-2.0-or-later"
  3827. ],
  3828. "authors": [
  3829. {
  3830. "name": "maximpodorov",
  3831. "homepage": "https://www.drupal.org/user/515310"
  3832. },
  3833. {
  3834. "name": "sudishth",
  3835. "homepage": "https://www.drupal.org/user/1440562"
  3836. }
  3837. ],
  3838. "description": "Formats date ranges.",
  3839. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3840. "support": {
  3841. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3842. }
  3843. },
  3844. {
  3845. "name": "drupal/devel",
  3846. "version": "5.4.0",
  3847. "source": {
  3848. "type": "git",
  3849. "url": "https://git.drupalcode.org/project/devel.git",
  3850. "reference": "5.4.0"
  3851. },
  3852. "dist": {
  3853. "type": "zip",
  3854. "url": "https://ftp.drupal.org/files/projects/devel-5.4.0.zip",
  3855. "reference": "5.4.0",
  3856. "shasum": "fc14fe1c396dbff661f9d13e6e3171d9ab781a46"
  3857. },
  3858. "require": {
  3859. "doctrine/common": "^2.7 || ^3.4",
  3860. "drupal/core": "^10.3 || ^11 || ^12",
  3861. "php": ">=8.1",
  3862. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7"
  3863. },
  3864. "conflict": {
  3865. "drupal/core": "<10.3",
  3866. "drush/drush": "<12.5.1"
  3867. },
  3868. "require-dev": {
  3869. "drupal/navigation_extra_tools": "1.0.x-dev",
  3870. "drush/drush": "^13",
  3871. "firephp/firephp-core": "^0.5.3"
  3872. },
  3873. "suggest": {
  3874. "drupal/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3875. },
  3876. "type": "drupal-module",
  3877. "extra": {
  3878. "drupal": {
  3879. "version": "5.4.0",
  3880. "datestamp": "1752755621",
  3881. "security-coverage": {
  3882. "status": "covered",
  3883. "message": "Covered by Drupal's security advisory policy"
  3884. }
  3885. }
  3886. },
  3887. "notification-url": "https://packages.drupal.org/8/downloads",
  3888. "license": [
  3889. "GPL-2.0-or-later"
  3890. ],
  3891. "authors": [
  3892. {
  3893. "name": "moshe weitzman",
  3894. "homepage": "https://www.drupal.org/user/23"
  3895. }
  3896. ],
  3897. "description": "Various blocks, pages, and functions for developers.",
  3898. "homepage": "https://www.drupal.org/project/devel",
  3899. "support": {
  3900. "source": "https://gitlab.com/drupalspoons/devel",
  3901. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3902. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3903. }
  3904. },
  3905. {
  3906. "name": "drupal/devel_kint_extras",
  3907. "version": "1.1.4",
  3908. "source": {
  3909. "type": "git",
  3910. "url": "https://git.drupalcode.org/project/devel_kint_extras.git",
  3911. "reference": "1.1.4"
  3912. },
  3913. "dist": {
  3914. "type": "zip",
  3915. "url": "https://ftp.drupal.org/files/projects/devel_kint_extras-1.1.4.zip",
  3916. "reference": "1.1.4",
  3917. "shasum": "7723086e6edb52b6dacfda4f656f93cbd63b105b"
  3918. },
  3919. "require": {
  3920. "drupal/core": "^9 || ^10 || ^11",
  3921. "drupal/devel": "^4.0 || ^5.0",
  3922. "kint-php/kint": "^3.3 || ^4.0 || ^5.0 || ^6.0"
  3923. },
  3924. "type": "drupal-module",
  3925. "extra": {
  3926. "drupal": {
  3927. "version": "1.1.4",
  3928. "datestamp": "1740995042",
  3929. "security-coverage": {
  3930. "status": "covered",
  3931. "message": "Covered by Drupal's security advisory policy"
  3932. }
  3933. }
  3934. },
  3935. "notification-url": "https://packages.drupal.org/8/downloads",
  3936. "license": [
  3937. "GPL-2.0-or-later"
  3938. ],
  3939. "authors": [
  3940. {
  3941. "name": "Jan Chojnacki",
  3942. "homepage": "https://www.drupal.org/u/janchojnacki"
  3943. },
  3944. {
  3945. "name": "Other contributors",
  3946. "homepage": "https://www.drupal.org/node/3164492/committers"
  3947. }
  3948. ],
  3949. "description": "Shows methods and statics available for an object when using Kint with Devel",
  3950. "homepage": "https://www.drupal.org/project/devel_kint_extras",
  3951. "support": {
  3952. "source": "http://git.drupal.org/project/devel_kint_extras.git",
  3953. "issues": "https://www.drupal.org/project/issues/devel_kint_extras",
  3954. "chat": "irc://irc.freenode.org/drupal-contribute"
  3955. }
  3956. },
  3957. {
  3958. "name": "drupal/email_registration",
  3959. "version": "1.4.0",
  3960. "source": {
  3961. "type": "git",
  3962. "url": "https://git.drupalcode.org/project/email_registration.git",
  3963. "reference": "8.x-1.4"
  3964. },
  3965. "dist": {
  3966. "type": "zip",
  3967. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip",
  3968. "reference": "8.x-1.4",
  3969. "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186"
  3970. },
  3971. "require": {
  3972. "drupal/core": "^9.1 || ^10"
  3973. },
  3974. "conflict": {
  3975. "drupal/commerce": "<2.12"
  3976. },
  3977. "require-dev": {
  3978. "drupal/commerce": "^2.0",
  3979. "drupal/token": "*"
  3980. },
  3981. "type": "drupal-module",
  3982. "extra": {
  3983. "drupal": {
  3984. "version": "8.x-1.4",
  3985. "datestamp": "1700548925",
  3986. "security-coverage": {
  3987. "status": "covered",
  3988. "message": "Covered by Drupal's security advisory policy"
  3989. }
  3990. }
  3991. },
  3992. "notification-url": "https://packages.drupal.org/8/downloads",
  3993. "license": [
  3994. "GPL-2.0-or-later"
  3995. ],
  3996. "authors": [
  3997. {
  3998. "name": "Greg Knaddison (greggles)",
  3999. "homepage": "https://www.drupal.org/u/greggles",
  4000. "role": "Maintainer"
  4001. },
  4002. {
  4003. "name": "Andrey Postnikov (andypost)",
  4004. "homepage": "https://www.drupal.org/u/andypost",
  4005. "role": "Maintainer"
  4006. },
  4007. {
  4008. "name": "Chris Herberte",
  4009. "homepage": "https://www.drupal.org/u/chris-herberte",
  4010. "role": "Maintainer"
  4011. },
  4012. {
  4013. "name": "Moshe Weitzman (moshe weitzman)",
  4014. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4015. "role": "Maintainer"
  4016. },
  4017. {
  4018. "name": "grevil",
  4019. "homepage": "https://www.drupal.org/user/3668491"
  4020. },
  4021. {
  4022. "name": "moshe weitzman",
  4023. "homepage": "https://www.drupal.org/user/23"
  4024. }
  4025. ],
  4026. "description": "Allows users to register with an email address as their username.",
  4027. "homepage": "https://www.drupal.org/project/email_registration",
  4028. "support": {
  4029. "source": "https://git.drupalcode.org/project/email_registration",
  4030. "issues": "http://drupal.org/project/issues/email_registration"
  4031. }
  4032. },
  4033. {
  4034. "name": "drupal/embed",
  4035. "version": "1.10.0",
  4036. "source": {
  4037. "type": "git",
  4038. "url": "https://git.drupalcode.org/project/embed.git",
  4039. "reference": "8.x-1.10"
  4040. },
  4041. "dist": {
  4042. "type": "zip",
  4043. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.10.zip",
  4044. "reference": "8.x-1.10",
  4045. "shasum": "4ac5be0c3a421851c9c60ed82e3bc497be88e61c"
  4046. },
  4047. "require": {
  4048. "drupal/core": "^10.2 || ^11"
  4049. },
  4050. "require-dev": {
  4051. "drupal/ckeditor": "^1.0"
  4052. },
  4053. "type": "drupal-module",
  4054. "extra": {
  4055. "drupal": {
  4056. "version": "8.x-1.10",
  4057. "datestamp": "1737663032",
  4058. "security-coverage": {
  4059. "status": "covered",
  4060. "message": "Covered by Drupal's security advisory policy"
  4061. }
  4062. }
  4063. },
  4064. "notification-url": "https://packages.drupal.org/8/downloads",
  4065. "license": [
  4066. "GPL-2.0-or-later"
  4067. ],
  4068. "authors": [
  4069. {
  4070. "name": "cs_shadow",
  4071. "homepage": "https://www.drupal.org/user/2828287"
  4072. },
  4073. {
  4074. "name": "dave reid",
  4075. "homepage": "https://www.drupal.org/user/53892"
  4076. },
  4077. {
  4078. "name": "devin carlson",
  4079. "homepage": "https://www.drupal.org/user/290182"
  4080. },
  4081. {
  4082. "name": "Drupal Media Team",
  4083. "homepage": "https://www.drupal.org/user/3260690"
  4084. },
  4085. {
  4086. "name": "phenaproxima",
  4087. "homepage": "https://www.drupal.org/user/205645"
  4088. },
  4089. {
  4090. "name": "slashrsm",
  4091. "homepage": "https://www.drupal.org/user/744628"
  4092. }
  4093. ],
  4094. "description": "Provides a framework for different types of embeds in text editors.",
  4095. "homepage": "https://www.drupal.org/project/embed",
  4096. "support": {
  4097. "source": "https://git.drupalcode.org/project/embed"
  4098. }
  4099. },
  4100. {
  4101. "name": "drupal/entity_browser",
  4102. "version": "2.13.0",
  4103. "source": {
  4104. "type": "git",
  4105. "url": "https://git.drupalcode.org/project/entity_browser.git",
  4106. "reference": "8.x-2.13"
  4107. },
  4108. "dist": {
  4109. "type": "zip",
  4110. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.13.zip",
  4111. "reference": "8.x-2.13",
  4112. "shasum": "9c31caed2602a5cb582cb4f1e1feaac44cbbc21b"
  4113. },
  4114. "require": {
  4115. "drupal/core": "^10.2 || ^11"
  4116. },
  4117. "conflict": {
  4118. "drupal/media_entity": "1.*"
  4119. },
  4120. "require-dev": {
  4121. "drupal/embed": "^1.0",
  4122. "drupal/entity_embed": "^1.0",
  4123. "drupal/entity_reference_revisions": "^1.0",
  4124. "drupal/entityqueue": "^1.0",
  4125. "drupal/inline_entity_form": "^1 || ^3",
  4126. "drupal/paragraphs": "^1.0",
  4127. "drupal/search_api": "^1.0",
  4128. "drupal/token": "^1.0"
  4129. },
  4130. "type": "drupal-module",
  4131. "extra": {
  4132. "drupal": {
  4133. "version": "8.x-2.13",
  4134. "datestamp": "1739701403",
  4135. "security-coverage": {
  4136. "status": "covered",
  4137. "message": "Covered by Drupal's security advisory policy"
  4138. }
  4139. }
  4140. },
  4141. "notification-url": "https://packages.drupal.org/8/downloads",
  4142. "license": [
  4143. "GPL-2.0+"
  4144. ],
  4145. "authors": [
  4146. {
  4147. "name": "Janez Urevc",
  4148. "homepage": "https://github.com/slashrsm",
  4149. "role": "Maintainer"
  4150. },
  4151. {
  4152. "name": "Primoz Hmeljak",
  4153. "homepage": "https://github.com/primsi",
  4154. "role": "Maintainer"
  4155. },
  4156. {
  4157. "name": "See other contributors",
  4158. "homepage": "https://www.drupal.org/node/1943336/committers",
  4159. "role": "contributor"
  4160. },
  4161. {
  4162. "name": "Drupal Media Team",
  4163. "homepage": "https://www.drupal.org/user/3260690"
  4164. },
  4165. {
  4166. "name": "marcingy",
  4167. "homepage": "https://www.drupal.org/user/77320"
  4168. },
  4169. {
  4170. "name": "oknate",
  4171. "homepage": "https://www.drupal.org/user/471638"
  4172. },
  4173. {
  4174. "name": "primsi",
  4175. "homepage": "https://www.drupal.org/user/282629"
  4176. },
  4177. {
  4178. "name": "samuel.mortenson",
  4179. "homepage": "https://www.drupal.org/user/2582268"
  4180. },
  4181. {
  4182. "name": "slashrsm",
  4183. "homepage": "https://www.drupal.org/user/744628"
  4184. }
  4185. ],
  4186. "description": "Entity browsing and selecting component.",
  4187. "homepage": "https://drupal.org/project/entity_browser",
  4188. "support": {
  4189. "source": "https://git.drupalcode.org/project/entity_browser",
  4190. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4191. "irc": "irc://irc.freenode.org/drupal-contribute"
  4192. }
  4193. },
  4194. {
  4195. "name": "drupal/entity_browser_enhanced",
  4196. "version": "2.0.1",
  4197. "source": {
  4198. "type": "git",
  4199. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4200. "reference": "2.0.1"
  4201. },
  4202. "dist": {
  4203. "type": "zip",
  4204. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.1.zip",
  4205. "reference": "2.0.1",
  4206. "shasum": "e8640ac806a4302684d5ada8e04d9b92183ebdb8"
  4207. },
  4208. "require": {
  4209. "drupal/core": "^10 || ^11",
  4210. "drupal/entity_browser": "~2.0"
  4211. },
  4212. "type": "drupal-module",
  4213. "extra": {
  4214. "drupal": {
  4215. "version": "2.0.1",
  4216. "datestamp": "1719827338",
  4217. "security-coverage": {
  4218. "status": "covered",
  4219. "message": "Covered by Drupal's security advisory policy"
  4220. }
  4221. }
  4222. },
  4223. "notification-url": "https://packages.drupal.org/8/downloads",
  4224. "license": [
  4225. "GPL-2.0-or-later"
  4226. ],
  4227. "authors": [
  4228. {
  4229. "name": "Vardot",
  4230. "homepage": "https://www.drupal.org/vardot",
  4231. "role": "Maintainer"
  4232. },
  4233. {
  4234. "name": "rajab natshah",
  4235. "homepage": "https://www.drupal.org/user/1414312"
  4236. }
  4237. ],
  4238. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4239. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4240. "support": {
  4241. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4242. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4243. }
  4244. },
  4245. {
  4246. "name": "drupal/entity_clone",
  4247. "version": "dev-2.x",
  4248. "source": {
  4249. "type": "git",
  4250. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4251. "reference": "da8bf644cdfe2720b4eb421fe8948a5665f8d790"
  4252. },
  4253. "require": {
  4254. "drupal/core": "^9 || ^10 || ^11"
  4255. },
  4256. "require-dev": {
  4257. "drupal/entity_browser": "2.x-dev",
  4258. "drupal/entity_usage": "2.x-dev",
  4259. "drupal/paragraphs": "^1.0",
  4260. "drupal/search_api": "^1.0"
  4261. },
  4262. "type": "drupal-module",
  4263. "extra": {
  4264. "branch-alias": {
  4265. "dev-2.x": "2.x-dev"
  4266. },
  4267. "drupal": {
  4268. "version": "2.1.0-beta1+3-dev",
  4269. "datestamp": "1748869926",
  4270. "security-coverage": {
  4271. "status": "not-covered",
  4272. "message": "Dev releases are not covered by Drupal security advisories."
  4273. }
  4274. }
  4275. },
  4276. "notification-url": "https://packages.drupal.org/8/downloads",
  4277. "license": [
  4278. "GPL-2.0-or-later"
  4279. ],
  4280. "authors": [
  4281. {
  4282. "name": "colan",
  4283. "homepage": "https://www.drupal.org/user/58704"
  4284. },
  4285. {
  4286. "name": "joevagyok",
  4287. "homepage": "https://www.drupal.org/user/2876343"
  4288. },
  4289. {
  4290. "name": "nickdickinsonwilde",
  4291. "homepage": "https://www.drupal.org/user/3094661"
  4292. },
  4293. {
  4294. "name": "rajeshreeputra",
  4295. "homepage": "https://www.drupal.org/user/3418561"
  4296. },
  4297. {
  4298. "name": "upchuk",
  4299. "homepage": "https://www.drupal.org/user/1885838"
  4300. },
  4301. {
  4302. "name": "vpeltot",
  4303. "homepage": "https://www.drupal.org/user/1361586"
  4304. }
  4305. ],
  4306. "description": "Add a clone action for all entities.",
  4307. "homepage": "https://drupal.org/project/entity_clone",
  4308. "support": {
  4309. "source": "https://git.drupalcode.org/project/entity_clone"
  4310. }
  4311. },
  4312. {
  4313. "name": "drupal/entity_reference_revisions",
  4314. "version": "1.12.0",
  4315. "source": {
  4316. "type": "git",
  4317. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4318. "reference": "8.x-1.12"
  4319. },
  4320. "dist": {
  4321. "type": "zip",
  4322. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.12.zip",
  4323. "reference": "8.x-1.12",
  4324. "shasum": "2a2ff8617c7ce01b56df1caaf0a563da04948e26"
  4325. },
  4326. "require": {
  4327. "drupal/core": "^9 || ^10 || ^11"
  4328. },
  4329. "require-dev": {
  4330. "drupal/diff": "^1 || ^2"
  4331. },
  4332. "type": "drupal-module",
  4333. "extra": {
  4334. "drupal": {
  4335. "version": "8.x-1.12",
  4336. "datestamp": "1722804497",
  4337. "security-coverage": {
  4338. "status": "covered",
  4339. "message": "Covered by Drupal's security advisory policy"
  4340. }
  4341. },
  4342. "drush": {
  4343. "services": {
  4344. "drush.services.yml": "^9 || ^10 || ^11"
  4345. }
  4346. }
  4347. },
  4348. "notification-url": "https://packages.drupal.org/8/downloads",
  4349. "license": [
  4350. "GPL-2.0-or-later"
  4351. ],
  4352. "authors": [
  4353. {
  4354. "name": "berdir",
  4355. "homepage": "https://www.drupal.org/user/214652"
  4356. },
  4357. {
  4358. "name": "Frans",
  4359. "homepage": "https://www.drupal.org/user/514222"
  4360. },
  4361. {
  4362. "name": "jeroen.b",
  4363. "homepage": "https://www.drupal.org/user/1853532"
  4364. },
  4365. {
  4366. "name": "miro_dietiker",
  4367. "homepage": "https://www.drupal.org/user/227761"
  4368. }
  4369. ],
  4370. "description": "Entity Reference Revisions",
  4371. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  4372. "support": {
  4373. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  4374. }
  4375. },
  4376. {
  4377. "name": "drupal/entity_type_clone",
  4378. "version": "4.0.3",
  4379. "source": {
  4380. "type": "git",
  4381. "url": "https://git.drupalcode.org/project/entity_type_clone.git",
  4382. "reference": "4.0.3"
  4383. },
  4384. "dist": {
  4385. "type": "zip",
  4386. "url": "https://ftp.drupal.org/files/projects/entity_type_clone-4.0.3.zip",
  4387. "reference": "4.0.3",
  4388. "shasum": "684e81fcaa034bfb7a4ffdc3e81c040701fbd8b7"
  4389. },
  4390. "require": {
  4391. "drupal/core": "^8 || ^9 || ^10"
  4392. },
  4393. "type": "drupal-module",
  4394. "extra": {
  4395. "drupal": {
  4396. "version": "4.0.3",
  4397. "datestamp": "1693947342",
  4398. "security-coverage": {
  4399. "status": "covered",
  4400. "message": "Covered by Drupal's security advisory policy"
  4401. }
  4402. }
  4403. },
  4404. "notification-url": "https://packages.drupal.org/8/downloads",
  4405. "license": [
  4406. "GPL-2.0-or-later"
  4407. ],
  4408. "authors": [
  4409. {
  4410. "name": "ajay_reddy",
  4411. "homepage": "https://www.drupal.org/user/3261994"
  4412. },
  4413. {
  4414. "name": "vuil",
  4415. "homepage": "https://www.drupal.org/user/3568458"
  4416. }
  4417. ],
  4418. "description": "This module provide option to clone entity types and role.",
  4419. "homepage": "https://www.drupal.org/project/entity_type_clone",
  4420. "support": {
  4421. "source": "https://git.drupalcode.org/project/entity_type_clone"
  4422. }
  4423. },
  4424. {
  4425. "name": "drupal/extlink",
  4426. "version": "1.7.0",
  4427. "source": {
  4428. "type": "git",
  4429. "url": "https://git.drupalcode.org/project/extlink.git",
  4430. "reference": "8.x-1.7"
  4431. },
  4432. "dist": {
  4433. "type": "zip",
  4434. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.7.zip",
  4435. "reference": "8.x-1.7",
  4436. "shasum": "38650688b5a58496db59f40b2a7f36c4bedcbfb4"
  4437. },
  4438. "require": {
  4439. "drupal/core": "^8 || ^9 || ^10"
  4440. },
  4441. "type": "drupal-module",
  4442. "extra": {
  4443. "drupal": {
  4444. "version": "8.x-1.7",
  4445. "datestamp": "1665770295",
  4446. "security-coverage": {
  4447. "status": "covered",
  4448. "message": "Covered by Drupal's security advisory policy"
  4449. }
  4450. }
  4451. },
  4452. "notification-url": "https://packages.drupal.org/8/downloads",
  4453. "license": [
  4454. "GPL-2.0-or-later"
  4455. ],
  4456. "authors": [
  4457. {
  4458. "name": "Nate Lampton",
  4459. "homepage": "https://www.drupal.org/u/quicksketch",
  4460. "role": "Maintainer"
  4461. },
  4462. {
  4463. "name": "Lachlan Ennis",
  4464. "homepage": "https://www.drupal.org/u/elachlan",
  4465. "role": "Maintainer"
  4466. },
  4467. {
  4468. "name": "Neslee Canil Pinto",
  4469. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4470. "role": "Maintainer"
  4471. },
  4472. {
  4473. "name": "quicksketch",
  4474. "homepage": "https://www.drupal.org/user/35821"
  4475. },
  4476. {
  4477. "name": "smustgrave",
  4478. "homepage": "https://www.drupal.org/user/3252890"
  4479. }
  4480. ],
  4481. "description": "Modify behavior and appearance of external links.",
  4482. "homepage": "https://www.drupal.org/project/extlink",
  4483. "keywords": [
  4484. "Drupal",
  4485. "External Links"
  4486. ],
  4487. "support": {
  4488. "source": "https://git.drupalcode.org/project/extlink",
  4489. "issues": "https://www.drupal.org/project/issues/extlink"
  4490. }
  4491. },
  4492. {
  4493. "name": "drupal/field_group",
  4494. "version": "3.6.0",
  4495. "source": {
  4496. "type": "git",
  4497. "url": "https://git.drupalcode.org/project/field_group.git",
  4498. "reference": "8.x-3.6"
  4499. },
  4500. "dist": {
  4501. "type": "zip",
  4502. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip",
  4503. "reference": "8.x-3.6",
  4504. "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86"
  4505. },
  4506. "require": {
  4507. "drupal/core": "^9.2 || ^10 || ^11"
  4508. },
  4509. "require-dev": {
  4510. "drupal/jquery_ui_accordion": "*"
  4511. },
  4512. "type": "drupal-module",
  4513. "extra": {
  4514. "drupal": {
  4515. "version": "8.x-3.6",
  4516. "datestamp": "1722672510",
  4517. "security-coverage": {
  4518. "status": "covered",
  4519. "message": "Covered by Drupal's security advisory policy"
  4520. }
  4521. }
  4522. },
  4523. "notification-url": "https://packages.drupal.org/8/downloads",
  4524. "license": [
  4525. "GPL-2.0-or-later"
  4526. ],
  4527. "authors": [
  4528. {
  4529. "name": "anybody",
  4530. "homepage": "https://www.drupal.org/user/291091"
  4531. },
  4532. {
  4533. "name": "grevil",
  4534. "homepage": "https://www.drupal.org/user/3668491"
  4535. },
  4536. {
  4537. "name": "hydra",
  4538. "homepage": "https://www.drupal.org/user/647364"
  4539. },
  4540. {
  4541. "name": "joevagyok",
  4542. "homepage": "https://www.drupal.org/user/2876343"
  4543. },
  4544. {
  4545. "name": "jyve",
  4546. "homepage": "https://www.drupal.org/user/591438"
  4547. },
  4548. {
  4549. "name": "nils.destoop",
  4550. "homepage": "https://www.drupal.org/user/361625"
  4551. },
  4552. {
  4553. "name": "Stalski",
  4554. "homepage": "https://www.drupal.org/user/322618"
  4555. },
  4556. {
  4557. "name": "swentel",
  4558. "homepage": "https://www.drupal.org/user/107403"
  4559. }
  4560. ],
  4561. "description": "Provides the field_group module.",
  4562. "homepage": "https://www.drupal.org/project/field_group",
  4563. "support": {
  4564. "source": "https://git.drupalcode.org/project/field_group",
  4565. "issues": "https://www.drupal.org/project/issues/field_group"
  4566. }
  4567. },
  4568. {
  4569. "name": "drupal/filter_perms",
  4570. "version": "2.0.2",
  4571. "source": {
  4572. "type": "git",
  4573. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4574. "reference": "2.0.2"
  4575. },
  4576. "dist": {
  4577. "type": "zip",
  4578. "url": "https://ftp.drupal.org/files/projects/filter_perms-2.0.2.zip",
  4579. "reference": "2.0.2",
  4580. "shasum": "da352ab7bf56429caba3029509afde72e917fcd9"
  4581. },
  4582. "require": {
  4583. "drupal/core": "^10.3 || ^11 || ^12"
  4584. },
  4585. "type": "drupal-module",
  4586. "extra": {
  4587. "drupal": {
  4588. "version": "2.0.2",
  4589. "datestamp": "1745993059",
  4590. "security-coverage": {
  4591. "status": "covered",
  4592. "message": "Covered by Drupal's security advisory policy"
  4593. }
  4594. }
  4595. },
  4596. "notification-url": "https://packages.drupal.org/8/downloads",
  4597. "license": [
  4598. "GPL-2.0+"
  4599. ],
  4600. "authors": [
  4601. {
  4602. "name": "cyu",
  4603. "homepage": "https://www.drupal.org/user/202205"
  4604. },
  4605. {
  4606. "name": "deekayen",
  4607. "homepage": "https://www.drupal.org/user/972"
  4608. },
  4609. {
  4610. "name": "ivavictoria",
  4611. "homepage": "https://www.drupal.org/user/3061533"
  4612. },
  4613. {
  4614. "name": "justcaldwell",
  4615. "homepage": "https://www.drupal.org/user/290069"
  4616. },
  4617. {
  4618. "name": "mgbellaire",
  4619. "homepage": "https://www.drupal.org/user/1831932"
  4620. },
  4621. {
  4622. "name": "scott_euser",
  4623. "homepage": "https://www.drupal.org/user/3267594"
  4624. },
  4625. {
  4626. "name": "willzyx",
  4627. "homepage": "https://www.drupal.org/user/1043862"
  4628. }
  4629. ],
  4630. "description": "Provides role and module filters to simplify the user permissions page.",
  4631. "homepage": "https://www.drupal.org/project/filter_perms",
  4632. "support": {
  4633. "source": "http://cgit.drupalcode.org/filter_perms",
  4634. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  4635. }
  4636. },
  4637. {
  4638. "name": "drupal/formatter_suite",
  4639. "version": "2.1.0",
  4640. "source": {
  4641. "type": "git",
  4642. "url": "https://git.drupalcode.org/project/formatter_suite.git",
  4643. "reference": "2.1.0"
  4644. },
  4645. "dist": {
  4646. "type": "zip",
  4647. "url": "https://ftp.drupal.org/files/projects/formatter_suite-2.1.0.zip",
  4648. "reference": "2.1.0",
  4649. "shasum": "699e14a27dfecfaa4abd3f923102f3256603aa28"
  4650. },
  4651. "require": {
  4652. "drupal/core": "^9 || ^10"
  4653. },
  4654. "type": "drupal-module",
  4655. "extra": {
  4656. "drupal": {
  4657. "version": "2.1.0",
  4658. "datestamp": "1742410413",
  4659. "security-coverage": {
  4660. "status": "covered",
  4661. "message": "Covered by Drupal's security advisory policy"
  4662. }
  4663. }
  4664. },
  4665. "notification-url": "https://packages.drupal.org/8/downloads",
  4666. "license": [
  4667. "GPL-2.0-or-later"
  4668. ],
  4669. "authors": [
  4670. {
  4671. "name": "cyoun",
  4672. "homepage": "https://www.drupal.org/user/3819850"
  4673. },
  4674. {
  4675. "name": "toamit",
  4676. "homepage": "https://www.drupal.org/user/2820523"
  4677. }
  4678. ],
  4679. "description": "Field formaters to present numbers, text, links, etc.",
  4680. "homepage": "https://www.drupal.org/project/formatter_suite",
  4681. "keywords": [
  4682. "Drupal",
  4683. "Format"
  4684. ],
  4685. "support": {
  4686. "source": "http://cgit.drupalcode.org/formatter_suite",
  4687. "issues": "http://drupal.org/project/issues/formatter_suite"
  4688. }
  4689. },
  4690. {
  4691. "name": "drupal/geocoder",
  4692. "version": "4.29.0",
  4693. "source": {
  4694. "type": "git",
  4695. "url": "https://git.drupalcode.org/project/geocoder.git",
  4696. "reference": "8.x-4.29"
  4697. },
  4698. "dist": {
  4699. "type": "zip",
  4700. "url": "https://ftp.drupal.org/files/projects/geocoder-8.x-4.29.zip",
  4701. "reference": "8.x-4.29",
  4702. "shasum": "f874ecd2a743df517e27cdc6a1332e0fe0e97b53"
  4703. },
  4704. "require": {
  4705. "davedevelopment/stiphle": "^0.9.2",
  4706. "drupal/core": "^9.5 || ^10 || ^11",
  4707. "php": ">=7.3.0",
  4708. "php-http/guzzle7-adapter": "^1.0",
  4709. "php-http/message": "^1.6",
  4710. "willdurand/geocoder": "^4.0|^5.0"
  4711. },
  4712. "require-dev": {
  4713. "drupal/address": "^1.11 || ^2.0",
  4714. "drupal/geocoder_field": "*",
  4715. "drupal/geofield": "^1.52",
  4716. "geo6/geocoder-php-addok-provider": "^1.0",
  4717. "geo6/geocoder-php-bpost-provider": "^1.3.0",
  4718. "geo6/geocoder-php-geopunt-provider": "^1.0",
  4719. "geo6/geocoder-php-spw-provider": "^1.0",
  4720. "geocoder-php/arcgis-online-provider": "^4.0",
  4721. "geocoder-php/azure-maps-provider": "^1.2",
  4722. "geocoder-php/bing-maps-provider": "^4.0",
  4723. "geocoder-php/free-geoip-provider": "^4.1",
  4724. "geocoder-php/geo-plugin-provider": "^4.0",
  4725. "geocoder-php/geonames-provider": "^4.1",
  4726. "geocoder-php/google-maps-provider": "^4.2",
  4727. "geocoder-php/graphhopper-provider": "^0.5.0",
  4728. "geocoder-php/host-ip-provider": "^4.0",
  4729. "geocoder-php/ip-info-db-provider": "^4.0",
  4730. "geocoder-php/locationiq-provider": "^1.5",
  4731. "geocoder-php/mapbox-provider": "^1.0",
  4732. "geocoder-php/mapquest-provider": "^4.0",
  4733. "geocoder-php/maptiler-provider": "^1.0",
  4734. "geocoder-php/maxmind-provider": "^4.1",
  4735. "geocoder-php/nominatim-provider": "^5.0",
  4736. "geocoder-php/open-cage-provider": "^4.0",
  4737. "geocoder-php/openrouteservice-provider": "^1.0",
  4738. "geocoder-php/pelias-provider": "^1.1",
  4739. "geocoder-php/photon-provider": "^0.6",
  4740. "geocoder-php/tomtom-provider": "^4.0",
  4741. "geocoder-php/yandex-provider": "^4.0",
  4742. "systonic/ban-france-provider": "^1.0"
  4743. },
  4744. "type": "drupal-module",
  4745. "extra": {
  4746. "drupal": {
  4747. "version": "8.x-4.29",
  4748. "datestamp": "1749505480",
  4749. "security-coverage": {
  4750. "status": "covered",
  4751. "message": "Covered by Drupal's security advisory policy"
  4752. }
  4753. }
  4754. },
  4755. "notification-url": "https://packages.drupal.org/8/downloads",
  4756. "license": [
  4757. "GPL-2.0-or-later"
  4758. ],
  4759. "authors": [
  4760. {
  4761. "name": "Pol Dellaiera (@drupol)",
  4762. "homepage": "https://www.drupal.org/u/pol",
  4763. "role": "Maintainer"
  4764. },
  4765. {
  4766. "name": "Italo Mairo (@itamair)",
  4767. "homepage": "https://www.drupal.org/u/itamair",
  4768. "role": "Co-maintainer"
  4769. },
  4770. {
  4771. "name": "michaelfavia",
  4772. "homepage": "https://www.drupal.org/user/49137"
  4773. },
  4774. {
  4775. "name": "poker10",
  4776. "homepage": "https://www.drupal.org/user/272316"
  4777. }
  4778. ],
  4779. "description": "Module and services based API to perform Geocode & Reverse Geocode operations among GIS data and addresses types & formats.",
  4780. "homepage": "https://drupal.org/project/geocoder",
  4781. "support": {
  4782. "source": "https://git.drupalcode.org/project/geocoder",
  4783. "issues": "https://drupal.org/project/issues/geocoder",
  4784. "irc": "irc://irc.freenode.org/drupal-geo"
  4785. }
  4786. },
  4787. {
  4788. "name": "drupal/geofield",
  4789. "version": "1.64.0",
  4790. "source": {
  4791. "type": "git",
  4792. "url": "https://git.drupalcode.org/project/geofield.git",
  4793. "reference": "8.x-1.64"
  4794. },
  4795. "dist": {
  4796. "type": "zip",
  4797. "url": "https://ftp.drupal.org/files/projects/geofield-8.x-1.64.zip",
  4798. "reference": "8.x-1.64",
  4799. "shasum": "300f8cf8bf4d0cf2660c5a7e81d56146d947b772"
  4800. },
  4801. "require": {
  4802. "drupal/core": "^9 || ^10 || ^11",
  4803. "itamair/geophp": "^1.6"
  4804. },
  4805. "require-dev": {
  4806. "drupal/diff": "^1.3",
  4807. "drupal/feeds": "^3.0@beta"
  4808. },
  4809. "type": "drupal-module",
  4810. "extra": {
  4811. "drupal": {
  4812. "version": "8.x-1.64",
  4813. "datestamp": "1736675456",
  4814. "security-coverage": {
  4815. "status": "covered",
  4816. "message": "Covered by Drupal's security advisory policy"
  4817. }
  4818. }
  4819. },
  4820. "notification-url": "https://packages.drupal.org/8/downloads",
  4821. "license": [
  4822. "GPL-2.0+"
  4823. ],
  4824. "authors": [
  4825. {
  4826. "name": "Italo Mairo",
  4827. "homepage": "https://www.drupal.org/u/itamair",
  4828. "role": "Drupal 8+ Maintainer"
  4829. },
  4830. {
  4831. "name": "Brandon Morrison",
  4832. "homepage": "https://www.drupal.org/u/brandonian",
  4833. "role": "Drupal 7 Maintainer"
  4834. },
  4835. {
  4836. "name": "Pablo López",
  4837. "homepage": "https://www.drupal.org/u/plopesc",
  4838. "role": "Drupal 7 Maintainer"
  4839. }
  4840. ],
  4841. "description": "Stores geographic and location data (points, lines, and polygons).",
  4842. "homepage": "https://www.drupal.org/project/geofield",
  4843. "support": {
  4844. "source": "https://git.drupalcode.org/project/geofield",
  4845. "issues": "https://www.drupal.org/project/issues/geofield",
  4846. "irc": "irc://irc.freenode.org/drupal-contribute"
  4847. }
  4848. },
  4849. {
  4850. "name": "drupal/honeypot",
  4851. "version": "2.2.2",
  4852. "source": {
  4853. "type": "git",
  4854. "url": "https://git.drupalcode.org/project/honeypot.git",
  4855. "reference": "2.2.2"
  4856. },
  4857. "dist": {
  4858. "type": "zip",
  4859. "url": "https://ftp.drupal.org/files/projects/honeypot-2.2.2.zip",
  4860. "reference": "2.2.2",
  4861. "shasum": "828872d31d1a2c37a818cacae7fcd77a60996c66"
  4862. },
  4863. "require": {
  4864. "drupal/core": "^10.3 || ^11"
  4865. },
  4866. "require-dev": {
  4867. "drupal/rules": "^4.0",
  4868. "drupal/webform": "^6.2"
  4869. },
  4870. "type": "drupal-module",
  4871. "extra": {
  4872. "drupal": {
  4873. "version": "2.2.2",
  4874. "datestamp": "1739854442",
  4875. "security-coverage": {
  4876. "status": "covered",
  4877. "message": "Covered by Drupal's security advisory policy"
  4878. }
  4879. }
  4880. },
  4881. "notification-url": "https://packages.drupal.org/8/downloads",
  4882. "license": [
  4883. "GPL-2.0-or-later"
  4884. ],
  4885. "authors": [
  4886. {
  4887. "name": "Jeff Geerling",
  4888. "homepage": "https://www.drupal.org/user/389011",
  4889. "email": "geerlingguy@mac.com"
  4890. },
  4891. {
  4892. "name": "manuel garcia",
  4893. "homepage": "https://www.drupal.org/user/213194"
  4894. },
  4895. {
  4896. "name": "tr",
  4897. "homepage": "https://www.drupal.org/user/202830"
  4898. },
  4899. {
  4900. "name": "vijaycs85",
  4901. "homepage": "https://www.drupal.org/user/93488"
  4902. }
  4903. ],
  4904. "description": "Mitigates spam form submissions using the honeypot method.",
  4905. "homepage": "https://www.drupal.org/project/honeypot",
  4906. "keywords": [
  4907. "deterrent",
  4908. "form",
  4909. "honeypot",
  4910. "honeytrap",
  4911. "php",
  4912. "spam"
  4913. ],
  4914. "support": {
  4915. "source": "https://git.drupalcode.org/project/honeypot",
  4916. "issues": "https://www.drupal.org/project/issues/honeypot"
  4917. }
  4918. },
  4919. {
  4920. "name": "drupal/image_delta_formatter",
  4921. "version": "1.3.0",
  4922. "source": {
  4923. "type": "git",
  4924. "url": "https://git.drupalcode.org/project/image_delta_formatter.git",
  4925. "reference": "8.x-1.3"
  4926. },
  4927. "dist": {
  4928. "type": "zip",
  4929. "url": "https://ftp.drupal.org/files/projects/image_delta_formatter-8.x-1.3.zip",
  4930. "reference": "8.x-1.3",
  4931. "shasum": "6ec48166cb04eda57915dbe28f97fa32c1e77b75"
  4932. },
  4933. "require": {
  4934. "drupal/core": "^10 || ^11"
  4935. },
  4936. "type": "drupal-module",
  4937. "extra": {
  4938. "drupal": {
  4939. "version": "8.x-1.3",
  4940. "datestamp": "1738516937",
  4941. "security-coverage": {
  4942. "status": "covered",
  4943. "message": "Covered by Drupal's security advisory policy"
  4944. }
  4945. }
  4946. },
  4947. "notification-url": "https://packages.drupal.org/8/downloads",
  4948. "license": [
  4949. "GPL-2.0-or-later"
  4950. ],
  4951. "authors": [
  4952. {
  4953. "name": "bojanz",
  4954. "homepage": "https://www.drupal.org/user/86106"
  4955. },
  4956. {
  4957. "name": "fgm",
  4958. "homepage": "https://www.drupal.org/user/27985"
  4959. },
  4960. {
  4961. "name": "jsacksick",
  4962. "homepage": "https://www.drupal.org/user/972218"
  4963. }
  4964. ],
  4965. "description": "Provides a formatter that displays a specific delta of a multi-value image or media field.",
  4966. "homepage": "https://www.drupal.org/project/image_delta_formatter",
  4967. "support": {
  4968. "source": "https://git.drupalcode.org/project/image_delta_formatter"
  4969. }
  4970. },
  4971. {
  4972. "name": "drupal/image_field_caption",
  4973. "version": "2.0.2",
  4974. "source": {
  4975. "type": "git",
  4976. "url": "https://git.drupalcode.org/project/image_field_caption.git",
  4977. "reference": "2.0.2"
  4978. },
  4979. "dist": {
  4980. "type": "zip",
  4981. "url": "https://ftp.drupal.org/files/projects/image_field_caption-2.0.2.zip",
  4982. "reference": "2.0.2",
  4983. "shasum": "9b1f7d780adb66755626b925a80fe2b855f4975d"
  4984. },
  4985. "require": {
  4986. "drupal/core": "^9 || ^10"
  4987. },
  4988. "type": "drupal-module",
  4989. "extra": {
  4990. "drupal": {
  4991. "version": "2.0.2",
  4992. "datestamp": "1738422190",
  4993. "security-coverage": {
  4994. "status": "covered",
  4995. "message": "Covered by Drupal's security advisory policy"
  4996. }
  4997. }
  4998. },
  4999. "notification-url": "https://packages.drupal.org/8/downloads",
  5000. "license": [
  5001. "GPL-2.0+"
  5002. ],
  5003. "authors": [
  5004. {
  5005. "name": "awm",
  5006. "homepage": "https://www.drupal.org/user/1059398"
  5007. },
  5008. {
  5009. "name": "foxy-vikvik",
  5010. "homepage": "https://www.drupal.org/user/3706169"
  5011. },
  5012. {
  5013. "name": "hanoii",
  5014. "homepage": "https://www.drupal.org/user/23157"
  5015. },
  5016. {
  5017. "name": "ironsizide",
  5018. "homepage": "https://www.drupal.org/user/787980"
  5019. },
  5020. {
  5021. "name": "istryker",
  5022. "homepage": "https://www.drupal.org/user/303676"
  5023. },
  5024. {
  5025. "name": "robloach",
  5026. "homepage": "https://www.drupal.org/user/61114"
  5027. },
  5028. {
  5029. "name": "tyler.frankenstein",
  5030. "homepage": "https://www.drupal.org/user/150680"
  5031. }
  5032. ],
  5033. "description": "Add caption to image field.",
  5034. "homepage": "https://www.drupal.org/project/image_field_caption",
  5035. "support": {
  5036. "source": "https://git.drupalcode.org/project/image_field_caption",
  5037. "issues": "https://www.drupal.org/project/issues/image_field_caption"
  5038. }
  5039. },
  5040. {
  5041. "name": "drupal/inline_entity_form",
  5042. "version": "1.0.0-rc17",
  5043. "source": {
  5044. "type": "git",
  5045. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  5046. "reference": "8.x-1.0-rc17"
  5047. },
  5048. "dist": {
  5049. "type": "zip",
  5050. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc17.zip",
  5051. "reference": "8.x-1.0-rc17",
  5052. "shasum": "626622e01cf7a2d2977fdc06ae09afd5a814e09b"
  5053. },
  5054. "require": {
  5055. "drupal/core": "^8.8 || ^9 || ^10",
  5056. "php": ">=7.1"
  5057. },
  5058. "require-dev": {
  5059. "drupal/entity_reference_revisions": "^1.0"
  5060. },
  5061. "type": "drupal-module",
  5062. "extra": {
  5063. "drupal": {
  5064. "version": "8.x-1.0-rc17",
  5065. "datestamp": "1703020130",
  5066. "security-coverage": {
  5067. "status": "not-covered",
  5068. "message": "RC releases are not covered by Drupal security advisories."
  5069. }
  5070. }
  5071. },
  5072. "notification-url": "https://packages.drupal.org/8/downloads",
  5073. "license": [
  5074. "GPL-2.0-or-later"
  5075. ],
  5076. "authors": [
  5077. {
  5078. "name": "bojanz",
  5079. "homepage": "https://www.drupal.org/user/86106"
  5080. },
  5081. {
  5082. "name": "centarro",
  5083. "homepage": "https://www.drupal.org/user/3661446"
  5084. },
  5085. {
  5086. "name": "dawehner",
  5087. "homepage": "https://www.drupal.org/user/99340"
  5088. },
  5089. {
  5090. "name": "dww",
  5091. "homepage": "https://www.drupal.org/user/46549"
  5092. },
  5093. {
  5094. "name": "geek-merlin",
  5095. "homepage": "https://www.drupal.org/user/229048"
  5096. },
  5097. {
  5098. "name": "joachim",
  5099. "homepage": "https://www.drupal.org/user/107701"
  5100. },
  5101. {
  5102. "name": "jsacksick",
  5103. "homepage": "https://www.drupal.org/user/972218"
  5104. },
  5105. {
  5106. "name": "oknate",
  5107. "homepage": "https://www.drupal.org/user/471638"
  5108. },
  5109. {
  5110. "name": "ram4nd",
  5111. "homepage": "https://www.drupal.org/user/601534"
  5112. },
  5113. {
  5114. "name": "rszrama",
  5115. "homepage": "https://www.drupal.org/user/49344"
  5116. },
  5117. {
  5118. "name": "slashrsm",
  5119. "homepage": "https://www.drupal.org/user/744628"
  5120. },
  5121. {
  5122. "name": "webflo",
  5123. "homepage": "https://www.drupal.org/user/254778"
  5124. }
  5125. ],
  5126. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5127. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5128. "support": {
  5129. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5130. }
  5131. },
  5132. {
  5133. "name": "drupal/jquery_ui",
  5134. "version": "1.7.0",
  5135. "source": {
  5136. "type": "git",
  5137. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5138. "reference": "8.x-1.7"
  5139. },
  5140. "dist": {
  5141. "type": "zip",
  5142. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.7.zip",
  5143. "reference": "8.x-1.7",
  5144. "shasum": "3f893843ec30fed18fa1b0cb326e51880b0cb686"
  5145. },
  5146. "require": {
  5147. "drupal/core": "^9.2 || ^10 || ^11"
  5148. },
  5149. "type": "drupal-module",
  5150. "extra": {
  5151. "drupal": {
  5152. "version": "8.x-1.7",
  5153. "datestamp": "1717002098",
  5154. "security-coverage": {
  5155. "status": "covered",
  5156. "message": "Covered by Drupal's security advisory policy"
  5157. }
  5158. }
  5159. },
  5160. "notification-url": "https://packages.drupal.org/8/downloads",
  5161. "license": [
  5162. "GPL-2.0-or-later"
  5163. ],
  5164. "authors": [
  5165. {
  5166. "name": "bnjmnm",
  5167. "homepage": "https://www.drupal.org/user/2369194"
  5168. },
  5169. {
  5170. "name": "jjeff",
  5171. "homepage": "https://www.drupal.org/user/17190"
  5172. },
  5173. {
  5174. "name": "lauriii",
  5175. "homepage": "https://www.drupal.org/user/1078742"
  5176. },
  5177. {
  5178. "name": "litwol",
  5179. "homepage": "https://www.drupal.org/user/78134"
  5180. },
  5181. {
  5182. "name": "mfb",
  5183. "homepage": "https://www.drupal.org/user/12302"
  5184. },
  5185. {
  5186. "name": "mfer",
  5187. "homepage": "https://www.drupal.org/user/25701"
  5188. },
  5189. {
  5190. "name": "mikelutz",
  5191. "homepage": "https://www.drupal.org/user/2972409"
  5192. },
  5193. {
  5194. "name": "nod_",
  5195. "homepage": "https://www.drupal.org/user/598310"
  5196. },
  5197. {
  5198. "name": "phenaproxima",
  5199. "homepage": "https://www.drupal.org/user/205645"
  5200. },
  5201. {
  5202. "name": "RobLoach",
  5203. "homepage": "https://www.drupal.org/user/61114"
  5204. },
  5205. {
  5206. "name": "sun",
  5207. "homepage": "https://www.drupal.org/user/54136"
  5208. },
  5209. {
  5210. "name": "webchick",
  5211. "homepage": "https://www.drupal.org/user/24967"
  5212. },
  5213. {
  5214. "name": "Wim Leers",
  5215. "homepage": "https://www.drupal.org/user/99777"
  5216. },
  5217. {
  5218. "name": "zrpnr",
  5219. "homepage": "https://www.drupal.org/user/1448368"
  5220. }
  5221. ],
  5222. "description": "Provides jQuery UI library.",
  5223. "homepage": "https://www.drupal.org/project/jquery_ui",
  5224. "support": {
  5225. "source": "https://git.drupalcode.org/project/jquery_ui"
  5226. }
  5227. },
  5228. {
  5229. "name": "drupal/jquery_ui_datepicker",
  5230. "version": "2.1.1",
  5231. "source": {
  5232. "type": "git",
  5233. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5234. "reference": "2.1.1"
  5235. },
  5236. "dist": {
  5237. "type": "zip",
  5238. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.1.1.zip",
  5239. "reference": "2.1.1",
  5240. "shasum": "29e56e8fa351fefd34e80529768ddc69a460149d"
  5241. },
  5242. "require": {
  5243. "drupal/core": "^9.2 || ^10 || ^11",
  5244. "drupal/jquery_ui": "^1.7"
  5245. },
  5246. "type": "drupal-module",
  5247. "extra": {
  5248. "drupal": {
  5249. "version": "2.1.1",
  5250. "datestamp": "1730932612",
  5251. "security-coverage": {
  5252. "status": "covered",
  5253. "message": "Covered by Drupal's security advisory policy"
  5254. }
  5255. }
  5256. },
  5257. "notification-url": "https://packages.drupal.org/8/downloads",
  5258. "license": [
  5259. "GPL-2.0-or-later"
  5260. ],
  5261. "authors": [
  5262. {
  5263. "name": "bnjmnm",
  5264. "homepage": "https://www.drupal.org/user/2369194"
  5265. },
  5266. {
  5267. "name": "jrockowitz",
  5268. "homepage": "https://www.drupal.org/user/371407"
  5269. },
  5270. {
  5271. "name": "lauriii",
  5272. "homepage": "https://www.drupal.org/user/1078742"
  5273. },
  5274. {
  5275. "name": "nod_",
  5276. "homepage": "https://www.drupal.org/user/598310"
  5277. },
  5278. {
  5279. "name": "phenaproxima",
  5280. "homepage": "https://www.drupal.org/user/205645"
  5281. },
  5282. {
  5283. "name": "zrpnr",
  5284. "homepage": "https://www.drupal.org/user/1448368"
  5285. }
  5286. ],
  5287. "description": "Provides jQuery UI Datepicker library.",
  5288. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5289. "support": {
  5290. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  5291. }
  5292. },
  5293. {
  5294. "name": "drupal/jquery_ui_draggable",
  5295. "version": "2.1.0",
  5296. "source": {
  5297. "type": "git",
  5298. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  5299. "reference": "2.1.0"
  5300. },
  5301. "dist": {
  5302. "type": "zip",
  5303. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.1.0.zip",
  5304. "reference": "2.1.0",
  5305. "shasum": "0d014cfff20993d8051efb8f6c9093a4fe5136f3"
  5306. },
  5307. "require": {
  5308. "drupal/core": "^9.2 || ^10 || ^11",
  5309. "drupal/jquery_ui": "^1.7"
  5310. },
  5311. "type": "drupal-module",
  5312. "extra": {
  5313. "drupal": {
  5314. "version": "2.1.0",
  5315. "datestamp": "1717015492",
  5316. "security-coverage": {
  5317. "status": "covered",
  5318. "message": "Covered by Drupal's security advisory policy"
  5319. }
  5320. }
  5321. },
  5322. "notification-url": "https://packages.drupal.org/8/downloads",
  5323. "license": [
  5324. "GPL-2.0-or-later"
  5325. ],
  5326. "authors": [
  5327. {
  5328. "name": "bnjmnm",
  5329. "homepage": "https://www.drupal.org/user/2369194"
  5330. },
  5331. {
  5332. "name": "lauriii",
  5333. "homepage": "https://www.drupal.org/user/1078742"
  5334. },
  5335. {
  5336. "name": "zrpnr",
  5337. "homepage": "https://www.drupal.org/user/1448368"
  5338. }
  5339. ],
  5340. "description": "Provides jQuery UI Draggable library.",
  5341. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  5342. "support": {
  5343. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  5344. }
  5345. },
  5346. {
  5347. "name": "drupal/jquery_ui_droppable",
  5348. "version": "2.1.0",
  5349. "source": {
  5350. "type": "git",
  5351. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  5352. "reference": "2.1.0"
  5353. },
  5354. "dist": {
  5355. "type": "zip",
  5356. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.1.0.zip",
  5357. "reference": "2.1.0",
  5358. "shasum": "4a254056d13d7f4208929142d1a37464404c0870"
  5359. },
  5360. "require": {
  5361. "drupal/core": "^9.2 || ^10 || ^11",
  5362. "drupal/jquery_ui": "^1.7",
  5363. "drupal/jquery_ui_draggable": "^2.1"
  5364. },
  5365. "type": "drupal-module",
  5366. "extra": {
  5367. "drupal": {
  5368. "version": "2.1.0",
  5369. "datestamp": "1717031391",
  5370. "security-coverage": {
  5371. "status": "covered",
  5372. "message": "Covered by Drupal's security advisory policy"
  5373. }
  5374. }
  5375. },
  5376. "notification-url": "https://packages.drupal.org/8/downloads",
  5377. "license": [
  5378. "GPL-2.0-or-later"
  5379. ],
  5380. "authors": [
  5381. {
  5382. "name": "bnjmnm",
  5383. "homepage": "https://www.drupal.org/user/2369194"
  5384. },
  5385. {
  5386. "name": "lauriii",
  5387. "homepage": "https://www.drupal.org/user/1078742"
  5388. },
  5389. {
  5390. "name": "zrpnr",
  5391. "homepage": "https://www.drupal.org/user/1448368"
  5392. }
  5393. ],
  5394. "description": "Provides jQuery UI Droppable library.",
  5395. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  5396. "support": {
  5397. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  5398. }
  5399. },
  5400. {
  5401. "name": "drupal/jquery_ui_slider",
  5402. "version": "2.1.0",
  5403. "source": {
  5404. "type": "git",
  5405. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  5406. "reference": "2.1.0"
  5407. },
  5408. "dist": {
  5409. "type": "zip",
  5410. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.1.0.zip",
  5411. "reference": "2.1.0",
  5412. "shasum": "89e54ccf787ad3eb11fb2ca9e25ea4bfce3df5b1"
  5413. },
  5414. "require": {
  5415. "drupal/core": "^9.2 || ^10 || ^11",
  5416. "drupal/jquery_ui": "^1.7"
  5417. },
  5418. "type": "drupal-module",
  5419. "extra": {
  5420. "drupal": {
  5421. "version": "2.1.0",
  5422. "datestamp": "1717031321",
  5423. "security-coverage": {
  5424. "status": "covered",
  5425. "message": "Covered by Drupal's security advisory policy"
  5426. }
  5427. }
  5428. },
  5429. "notification-url": "https://packages.drupal.org/8/downloads",
  5430. "license": [
  5431. "GPL-2.0-or-later"
  5432. ],
  5433. "authors": [
  5434. {
  5435. "name": "bnjmnm",
  5436. "homepage": "https://www.drupal.org/user/2369194"
  5437. },
  5438. {
  5439. "name": "lauriii",
  5440. "homepage": "https://www.drupal.org/user/1078742"
  5441. },
  5442. {
  5443. "name": "zrpnr",
  5444. "homepage": "https://www.drupal.org/user/1448368"
  5445. }
  5446. ],
  5447. "description": "Provides jQuery UI Slider library.",
  5448. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  5449. "support": {
  5450. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  5451. }
  5452. },
  5453. {
  5454. "name": "drupal/jquery_ui_touch_punch",
  5455. "version": "1.1.1",
  5456. "source": {
  5457. "type": "git",
  5458. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  5459. "reference": "1.1.1"
  5460. },
  5461. "dist": {
  5462. "type": "zip",
  5463. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.1.zip",
  5464. "reference": "1.1.1",
  5465. "shasum": "f16bc2ffa500131f43c84427ff213e753de9b6a6"
  5466. },
  5467. "require": {
  5468. "drupal/core": "^9.2 || ^10 || ^11",
  5469. "drupal/jquery_ui": "^1.0",
  5470. "politsin/jquery-ui-touch-punch": "^1.0"
  5471. },
  5472. "type": "drupal-module",
  5473. "extra": {
  5474. "drupal": {
  5475. "version": "1.1.1",
  5476. "datestamp": "1717663479",
  5477. "security-coverage": {
  5478. "status": "covered",
  5479. "message": "Covered by Drupal's security advisory policy"
  5480. }
  5481. }
  5482. },
  5483. "notification-url": "https://packages.drupal.org/8/downloads",
  5484. "license": [
  5485. "GPL-2.0-or-later"
  5486. ],
  5487. "authors": [
  5488. {
  5489. "name": "Naveen Valecha",
  5490. "homepage": "https://drupal.org/u/naveenvalecha",
  5491. "role": "Maintainer"
  5492. },
  5493. {
  5494. "name": "naveenvalecha",
  5495. "homepage": "https://www.drupal.org/user/2665733"
  5496. }
  5497. ],
  5498. "description": "Provides jQuery UI Touch Punch library.",
  5499. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5500. "keywords": [
  5501. "Drupal",
  5502. "jquery_ui_touch_punch"
  5503. ],
  5504. "support": {
  5505. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5506. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch"
  5507. }
  5508. },
  5509. {
  5510. "name": "drupal/js_cookie",
  5511. "version": "1.0.1",
  5512. "source": {
  5513. "type": "git",
  5514. "url": "https://git.drupalcode.org/project/js_cookie.git",
  5515. "reference": "1.0.1"
  5516. },
  5517. "dist": {
  5518. "type": "zip",
  5519. "url": "https://ftp.drupal.org/files/projects/js_cookie-1.0.1.zip",
  5520. "reference": "1.0.1",
  5521. "shasum": "e010b3de64a0d57eef9c1773c4dd7e3d9bd9118c"
  5522. },
  5523. "require": {
  5524. "drupal/core": "^9 || ^10 || ^11"
  5525. },
  5526. "type": "drupal-module",
  5527. "extra": {
  5528. "drupal": {
  5529. "version": "1.0.1",
  5530. "datestamp": "1693951097",
  5531. "security-coverage": {
  5532. "status": "covered",
  5533. "message": "Covered by Drupal's security advisory policy"
  5534. }
  5535. }
  5536. },
  5537. "notification-url": "https://packages.drupal.org/8/downloads",
  5538. "license": [
  5539. "GPL-2.0-or-later"
  5540. ],
  5541. "authors": [
  5542. {
  5543. "name": "Dave Reid",
  5544. "homepage": "https://www.drupal.org/user/53892"
  5545. }
  5546. ],
  5547. "description": "Provides the js-cookie library as a dependency.",
  5548. "homepage": "https://www.drupal.org/project/js_cookie",
  5549. "support": {
  5550. "source": "https://git.drupalcode.org/project/js_cookie"
  5551. }
  5552. },
  5553. {
  5554. "name": "drupal/leaflet",
  5555. "version": "10.3.5",
  5556. "source": {
  5557. "type": "git",
  5558. "url": "https://git.drupalcode.org/project/leaflet.git",
  5559. "reference": "10.3.5"
  5560. },
  5561. "dist": {
  5562. "type": "zip",
  5563. "url": "https://ftp.drupal.org/files/projects/leaflet-10.3.5.zip",
  5564. "reference": "10.3.5",
  5565. "shasum": "9707462243b2f344e5d85341084d33fdd296ef7b"
  5566. },
  5567. "require": {
  5568. "drupal/core": "^9.3 || ^10 || ^11",
  5569. "drupal/geofield": "^1.31"
  5570. },
  5571. "type": "drupal-module",
  5572. "extra": {
  5573. "drupal": {
  5574. "version": "10.3.5",
  5575. "datestamp": "1751834089",
  5576. "security-coverage": {
  5577. "status": "covered",
  5578. "message": "Covered by Drupal's security advisory policy"
  5579. }
  5580. }
  5581. },
  5582. "notification-url": "https://packages.drupal.org/8/downloads",
  5583. "license": [
  5584. "GPL-2.0+"
  5585. ],
  5586. "authors": [
  5587. {
  5588. "name": "Italo Mairo",
  5589. "homepage": "https://www.drupal.org/u/itamair",
  5590. "role": "Maintainer"
  5591. },
  5592. {
  5593. "name": "Peter Vanhee (pvhee)",
  5594. "homepage": "https://www.drupal.org/u/pvhee",
  5595. "role": "Maintainer"
  5596. },
  5597. {
  5598. "name": "Rik de Boer (RdeBoer)",
  5599. "homepage": "https://www.drupal.org/u/rdeboer",
  5600. "role": "Maintainer"
  5601. },
  5602. {
  5603. "name": "Gabriel Carleton-Barnes (gcb)",
  5604. "homepage": "https://www.drupal.org/u/gcb",
  5605. "role": "Maintainer"
  5606. },
  5607. {
  5608. "name": "Lev Tsypin (levelos)",
  5609. "homepage": "https://www.drupal.org/u/levelos",
  5610. "role": "Maintainer"
  5611. },
  5612. {
  5613. "name": "Sean Larkin (seanberto)",
  5614. "homepage": "https://www.drupal.org/u/seanberto",
  5615. "role": "Maintainer"
  5616. }
  5617. ],
  5618. "description": "Integration with the Leaflet map scripting library.",
  5619. "homepage": "https://www.drupal.org/project/leaflet",
  5620. "support": {
  5621. "source": "https://git.drupalcode.org/project/leaflet",
  5622. "issues": "https://www.drupal.org/project/issues/leaflet"
  5623. }
  5624. },
  5625. {
  5626. "name": "drupal/leaflet_more_maps",
  5627. "version": "2.2.3",
  5628. "source": {
  5629. "type": "git",
  5630. "url": "https://git.drupalcode.org/project/leaflet_more_maps.git",
  5631. "reference": "2.2.3"
  5632. },
  5633. "dist": {
  5634. "type": "zip",
  5635. "url": "https://ftp.drupal.org/files/projects/leaflet_more_maps-2.2.3.zip",
  5636. "reference": "2.2.3",
  5637. "shasum": "73b39b8acb7cfe68a2a9251eff32f64fb4851bc7"
  5638. },
  5639. "require": {
  5640. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  5641. "drupal/leaflet": "^2.1.0 || ^10.0"
  5642. },
  5643. "require-dev": {
  5644. "drupal/leaflet": "*"
  5645. },
  5646. "type": "drupal-module",
  5647. "extra": {
  5648. "drupal": {
  5649. "version": "2.2.3",
  5650. "datestamp": "1737668201",
  5651. "security-coverage": {
  5652. "status": "covered",
  5653. "message": "Covered by Drupal's security advisory policy"
  5654. }
  5655. },
  5656. "branch-alias": {
  5657. "dev-8.x-1.x": "1.x-dev"
  5658. }
  5659. },
  5660. "notification-url": "https://packages.drupal.org/8/downloads",
  5661. "license": [
  5662. "GPL-2.0-or-later"
  5663. ],
  5664. "authors": [
  5665. {
  5666. "name": "berramou",
  5667. "homepage": "https://www.drupal.org/user/3535998"
  5668. },
  5669. {
  5670. "name": "itamair",
  5671. "homepage": "https://www.drupal.org/user/1179076"
  5672. },
  5673. {
  5674. "name": "japerry",
  5675. "homepage": "https://www.drupal.org/user/45640"
  5676. },
  5677. {
  5678. "name": "rachel_norfolk",
  5679. "homepage": "https://www.drupal.org/user/66273"
  5680. },
  5681. {
  5682. "name": "rdeboer",
  5683. "homepage": "https://www.drupal.org/user/404007"
  5684. }
  5685. ],
  5686. "description": "Adds a swag of map styles to Leaflet, e.g Thunderforest, Esri, Stamen, Google.",
  5687. "homepage": "https://www.drupal.org/project/leaflet_more_maps",
  5688. "support": {
  5689. "source": "https://git.drupalcode.org/project/leaflet_more_maps",
  5690. "issues": "https://www.drupal.org/project/issues/leaflet_more_maps"
  5691. }
  5692. },
  5693. {
  5694. "name": "drupal/leaflet_more_markers",
  5695. "version": "1.1.3",
  5696. "source": {
  5697. "type": "git",
  5698. "url": "https://git.drupalcode.org/project/leaflet_more_markers.git",
  5699. "reference": "1.1.3"
  5700. },
  5701. "dist": {
  5702. "type": "zip",
  5703. "url": "https://ftp.drupal.org/files/projects/leaflet_more_markers-1.1.3.zip",
  5704. "reference": "1.1.3",
  5705. "shasum": "79a102d0df2278bc2238d86a960902a837f5434b"
  5706. },
  5707. "require": {
  5708. "drupal/core": "^9.3 || ^10 || ^11",
  5709. "drupal/leaflet": "*",
  5710. "drupal/token": "*"
  5711. },
  5712. "type": "drupal-module",
  5713. "extra": {
  5714. "drupal": {
  5715. "version": "1.1.3",
  5716. "datestamp": "1733213620",
  5717. "security-coverage": {
  5718. "status": "covered",
  5719. "message": "Covered by Drupal's security advisory policy"
  5720. }
  5721. }
  5722. },
  5723. "notification-url": "https://packages.drupal.org/8/downloads",
  5724. "license": [
  5725. "GPL-2.0-or-later"
  5726. ],
  5727. "authors": [
  5728. {
  5729. "name": "itamair",
  5730. "homepage": "https://www.drupal.org/user/1179076"
  5731. },
  5732. {
  5733. "name": "rdeboer",
  5734. "homepage": "https://www.drupal.org/user/404007"
  5735. }
  5736. ],
  5737. "description": "Allows every location to feature its own emoji marker or font icon.",
  5738. "homepage": "https://www.drupal.org/project/leaflet_more_markers",
  5739. "support": {
  5740. "source": "https://git.drupalcode.org/project/leaflet_more_markers"
  5741. }
  5742. },
  5743. {
  5744. "name": "drupal/link_attributes",
  5745. "version": "2.1.1",
  5746. "source": {
  5747. "type": "git",
  5748. "url": "https://git.drupalcode.org/project/link_attributes.git",
  5749. "reference": "2.1.1"
  5750. },
  5751. "dist": {
  5752. "type": "zip",
  5753. "url": "https://ftp.drupal.org/files/projects/link_attributes-2.1.1.zip",
  5754. "reference": "2.1.1",
  5755. "shasum": "fc71571fc41adeda6b39ccefd3c8e21955c0d96f"
  5756. },
  5757. "require": {
  5758. "drupal/core": "^9 || ^10 || ^11",
  5759. "php": ">=8.0"
  5760. },
  5761. "require-dev": {
  5762. "drupal/linkit": "~6 || ~7"
  5763. },
  5764. "type": "drupal-module",
  5765. "extra": {
  5766. "drupal": {
  5767. "version": "2.1.1",
  5768. "datestamp": "1721366572",
  5769. "security-coverage": {
  5770. "status": "covered",
  5771. "message": "Covered by Drupal's security advisory policy"
  5772. }
  5773. }
  5774. },
  5775. "notification-url": "https://packages.drupal.org/8/downloads",
  5776. "license": [
  5777. "GPL-2.0-or-later"
  5778. ],
  5779. "authors": [
  5780. {
  5781. "name": "larowlan",
  5782. "homepage": "https://www.drupal.org/user/395439"
  5783. }
  5784. ],
  5785. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5786. "homepage": "https://www.drupal.org/project/link_attributes",
  5787. "keywords": [
  5788. "Drupal"
  5789. ],
  5790. "support": {
  5791. "source": "https://git.drupalcode.org/project/link_attributes",
  5792. "issues": "https://www.drupal.org/project/issues/link_attributes"
  5793. }
  5794. },
  5795. {
  5796. "name": "drupal/linked_field",
  5797. "version": "1.7.0",
  5798. "source": {
  5799. "type": "git",
  5800. "url": "https://git.drupalcode.org/project/linked_field.git",
  5801. "reference": "8.x-1.7"
  5802. },
  5803. "dist": {
  5804. "type": "zip",
  5805. "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.7.zip",
  5806. "reference": "8.x-1.7",
  5807. "shasum": "c304792746a92d105f08931d2b6e09b20ee8d618"
  5808. },
  5809. "require": {
  5810. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  5811. },
  5812. "type": "drupal-module",
  5813. "extra": {
  5814. "drupal": {
  5815. "version": "8.x-1.7",
  5816. "datestamp": "1748842765",
  5817. "security-coverage": {
  5818. "status": "covered",
  5819. "message": "Covered by Drupal's security advisory policy"
  5820. }
  5821. }
  5822. },
  5823. "notification-url": "https://packages.drupal.org/8/downloads",
  5824. "license": [
  5825. "GPL-2.0-or-later"
  5826. ],
  5827. "authors": [
  5828. {
  5829. "name": "jcnventura",
  5830. "homepage": "https://www.drupal.org/user/122464"
  5831. },
  5832. {
  5833. "name": "yannickoo",
  5834. "homepage": "https://www.drupal.org/user/531118"
  5835. }
  5836. ],
  5837. "description": "Adds the functionality to link fields to a specific destination.",
  5838. "homepage": "https://www.drupal.org/project/linked_field",
  5839. "support": {
  5840. "source": "https://git.drupalcode.org/project/linked_field"
  5841. }
  5842. },
  5843. {
  5844. "name": "drupal/linkit",
  5845. "version": "7.0.7",
  5846. "source": {
  5847. "type": "git",
  5848. "url": "https://git.drupalcode.org/project/linkit.git",
  5849. "reference": "7.0.7"
  5850. },
  5851. "dist": {
  5852. "type": "zip",
  5853. "url": "https://ftp.drupal.org/files/projects/linkit-7.0.7.zip",
  5854. "reference": "7.0.7",
  5855. "shasum": "aa10493dfa34f4f8ce51313d47c66b21b9596f3e"
  5856. },
  5857. "require": {
  5858. "drupal/core": "^10.1 || ^11"
  5859. },
  5860. "require-dev": {
  5861. "drupal/ckeditor": "*",
  5862. "drupal/imce": "*"
  5863. },
  5864. "type": "drupal-module",
  5865. "extra": {
  5866. "drupal": {
  5867. "version": "7.0.7",
  5868. "datestamp": "1753116879",
  5869. "security-coverage": {
  5870. "status": "covered",
  5871. "message": "Covered by Drupal's security advisory policy"
  5872. }
  5873. }
  5874. },
  5875. "notification-url": "https://packages.drupal.org/8/downloads",
  5876. "license": [
  5877. "GPL-2.0-or-later"
  5878. ],
  5879. "authors": [
  5880. {
  5881. "name": "Emil Stjerneman",
  5882. "homepage": "https://stjerneman.com",
  5883. "email": "emil@stjerneman.com",
  5884. "role": "Maintainer"
  5885. },
  5886. {
  5887. "name": "johnwebdev",
  5888. "homepage": "https://www.drupal.org/user/3331569"
  5889. },
  5890. {
  5891. "name": "mark_fullmer",
  5892. "homepage": "https://www.drupal.org/user/2612816"
  5893. }
  5894. ],
  5895. "description": "Linkit - Enriched linking experience",
  5896. "homepage": "http://drupal.org/project/linkit",
  5897. "support": {
  5898. "source": "http://cgit.drupalcode.org/linkit",
  5899. "issues": "http://drupal.org/project/linkit"
  5900. }
  5901. },
  5902. {
  5903. "name": "drupal/mailsystem",
  5904. "version": "4.5.0",
  5905. "source": {
  5906. "type": "git",
  5907. "url": "https://git.drupalcode.org/project/mailsystem.git",
  5908. "reference": "8.x-4.5"
  5909. },
  5910. "dist": {
  5911. "type": "zip",
  5912. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.5.zip",
  5913. "reference": "8.x-4.5",
  5914. "shasum": "e52a814a87b343ab69f8d8ef462a9873c1d01158"
  5915. },
  5916. "require": {
  5917. "drupal/core": "^9 || ^10.1 || ^11"
  5918. },
  5919. "type": "drupal-module",
  5920. "extra": {
  5921. "drupal": {
  5922. "version": "8.x-4.5",
  5923. "datestamp": "1723379369",
  5924. "security-coverage": {
  5925. "status": "covered",
  5926. "message": "Covered by Drupal's security advisory policy"
  5927. }
  5928. }
  5929. },
  5930. "notification-url": "https://packages.drupal.org/8/downloads",
  5931. "license": [
  5932. "GPL-2.0-or-later"
  5933. ],
  5934. "authors": [
  5935. {
  5936. "name": "berdir",
  5937. "homepage": "https://www.drupal.org/user/214652"
  5938. },
  5939. {
  5940. "name": "emartoni",
  5941. "homepage": "https://www.drupal.org/user/3225331"
  5942. },
  5943. {
  5944. "name": "joseph.olstad",
  5945. "homepage": "https://www.drupal.org/user/1321830"
  5946. },
  5947. {
  5948. "name": "les lim",
  5949. "homepage": "https://www.drupal.org/user/84263"
  5950. },
  5951. {
  5952. "name": "manuel garcia",
  5953. "homepage": "https://www.drupal.org/user/213194"
  5954. },
  5955. {
  5956. "name": "miro_dietiker",
  5957. "homepage": "https://www.drupal.org/user/227761"
  5958. },
  5959. {
  5960. "name": "Nafes",
  5961. "homepage": "https://www.drupal.org/user/2489926"
  5962. },
  5963. {
  5964. "name": "pillarsdotnet",
  5965. "homepage": "https://www.drupal.org/user/36148"
  5966. },
  5967. {
  5968. "name": "renatog",
  5969. "homepage": "https://www.drupal.org/user/3326031"
  5970. },
  5971. {
  5972. "name": "tr",
  5973. "homepage": "https://www.drupal.org/user/202830"
  5974. }
  5975. ],
  5976. "description": "Mail System",
  5977. "homepage": "https://www.drupal.org/project/mailsystem",
  5978. "support": {
  5979. "source": "https://git.drupalcode.org/project/mailsystem"
  5980. }
  5981. },
  5982. {
  5983. "name": "drupal/manage_display",
  5984. "version": "3.0.1",
  5985. "source": {
  5986. "type": "git",
  5987. "url": "https://git.drupalcode.org/project/manage_display.git",
  5988. "reference": "3.0.1"
  5989. },
  5990. "dist": {
  5991. "type": "zip",
  5992. "url": "https://ftp.drupal.org/files/projects/manage_display-3.0.1.zip",
  5993. "reference": "3.0.1",
  5994. "shasum": "23838a88412db17163ad6c78102bf02e5c52a8a3"
  5995. },
  5996. "require": {
  5997. "drupal/core": "^9.4 || ^10 || ^11"
  5998. },
  5999. "type": "drupal-module",
  6000. "extra": {
  6001. "drupal": {
  6002. "version": "3.0.1",
  6003. "datestamp": "1714834549",
  6004. "security-coverage": {
  6005. "status": "covered",
  6006. "message": "Covered by Drupal's security advisory policy"
  6007. }
  6008. }
  6009. },
  6010. "notification-url": "https://packages.drupal.org/8/downloads",
  6011. "license": [
  6012. "GPL-2.0-or-later"
  6013. ],
  6014. "authors": [
  6015. {
  6016. "name": "Adam Shepherd (AdamPS)",
  6017. "homepage": "https://www.drupal.org/u/adamps",
  6018. "role": "Maintainer"
  6019. },
  6020. {
  6021. "name": "Viktor Holovachek (AstonVictor)",
  6022. "homepage": "https://www.drupal.org/u/astonvictor",
  6023. "role": "Maintainer"
  6024. }
  6025. ],
  6026. "description": "This project makes base fields such as 'title' available in 'Manage Display'.",
  6027. "homepage": "https://www.drupal.org/project/manage_display",
  6028. "keywords": [
  6029. "Drupal"
  6030. ],
  6031. "support": {
  6032. "source": "https://git.drupalcode.org/project/manage_display",
  6033. "issues": "https://www.drupal.org/project/issues/manage_display"
  6034. }
  6035. },
  6036. {
  6037. "name": "drupal/matomo",
  6038. "version": "1.25.0",
  6039. "source": {
  6040. "type": "git",
  6041. "url": "https://git.drupalcode.org/project/matomo.git",
  6042. "reference": "8.x-1.25"
  6043. },
  6044. "dist": {
  6045. "type": "zip",
  6046. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.25.zip",
  6047. "reference": "8.x-1.25",
  6048. "shasum": "5e65764f4499061fa33cb5c46afcc26a85b8725e"
  6049. },
  6050. "require": {
  6051. "drupal/core": "^9.0 || ^10"
  6052. },
  6053. "conflict": {
  6054. "drupal/csp": "<1.12"
  6055. },
  6056. "require-dev": {
  6057. "drupal/csp": "~1.12",
  6058. "drupal/php": "~1.1",
  6059. "drupal/token": "~1.9"
  6060. },
  6061. "type": "drupal-module",
  6062. "extra": {
  6063. "drupal": {
  6064. "version": "8.x-1.25",
  6065. "datestamp": "1738948462",
  6066. "security-coverage": {
  6067. "status": "covered",
  6068. "message": "Covered by Drupal's security advisory policy"
  6069. }
  6070. }
  6071. },
  6072. "notification-url": "https://packages.drupal.org/8/downloads",
  6073. "license": [
  6074. "GPL-2.0-or-later"
  6075. ],
  6076. "authors": [
  6077. {
  6078. "name": "c-logemann",
  6079. "homepage": "https://www.drupal.org/user/218368"
  6080. },
  6081. {
  6082. "name": "grimreaper",
  6083. "homepage": "https://www.drupal.org/user/2388214"
  6084. },
  6085. {
  6086. "name": "hass",
  6087. "homepage": "https://www.drupal.org/user/85918"
  6088. },
  6089. {
  6090. "name": "shelane",
  6091. "homepage": "https://www.drupal.org/user/2674989"
  6092. }
  6093. ],
  6094. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  6095. "homepage": "https://www.drupal.org/project/matomo",
  6096. "support": {
  6097. "source": "https://git.drupalcode.org/project/matomo"
  6098. }
  6099. },
  6100. {
  6101. "name": "drupal/maxlength",
  6102. "version": "2.1.4",
  6103. "source": {
  6104. "type": "git",
  6105. "url": "https://git.drupalcode.org/project/maxlength.git",
  6106. "reference": "2.1.4"
  6107. },
  6108. "dist": {
  6109. "type": "zip",
  6110. "url": "https://ftp.drupal.org/files/projects/maxlength-2.1.4.zip",
  6111. "reference": "2.1.4",
  6112. "shasum": "a7ffb649b24901da4b586add16385555d1dd7bd5"
  6113. },
  6114. "require": {
  6115. "drupal/core": "^9.5 || ^10"
  6116. },
  6117. "type": "drupal-module",
  6118. "extra": {
  6119. "drupal": {
  6120. "version": "2.1.4",
  6121. "datestamp": "1738341582",
  6122. "security-coverage": {
  6123. "status": "covered",
  6124. "message": "Covered by Drupal's security advisory policy"
  6125. }
  6126. }
  6127. },
  6128. "notification-url": "https://packages.drupal.org/8/downloads",
  6129. "license": [
  6130. "GPL-2.0-or-later"
  6131. ],
  6132. "authors": [
  6133. {
  6134. "name": "Marius Scurtescu (mariuss)",
  6135. "homepage": "https://www.drupal.org/u/mariuss",
  6136. "role": "Maintainer"
  6137. },
  6138. {
  6139. "name": "Clayton Dewey (cedewey)",
  6140. "homepage": "https://www.drupal.org/u/cedewey",
  6141. "role": "Maintainer"
  6142. },
  6143. {
  6144. "name": "Daniel Wehner (dawehner)",
  6145. "homepage": "https://www.drupal.org/u/dawehner",
  6146. "role": "Maintainer"
  6147. },
  6148. {
  6149. "name": "Paulino Michelazzo (pmichelazzo)",
  6150. "homepage": "https://www.drupal.org/u/pmichelazzo",
  6151. "role": "Maintainer"
  6152. },
  6153. {
  6154. "name": "Jeff Hipp (hipp2bsquare)",
  6155. "homepage": "https://www.drupal.org/u/hipp2bsquare",
  6156. "role": "Maintainer"
  6157. },
  6158. {
  6159. "name": "Steven DuBois (srdtwc)",
  6160. "homepage": "https://www.drupal.org/u/srdtwc",
  6161. "role": "Maintainer"
  6162. },
  6163. {
  6164. "name": "srdtwc",
  6165. "homepage": "https://www.drupal.org/user/3422763"
  6166. }
  6167. ],
  6168. "description": "MaxLength allows a soft or hard character limit to be set on titles, text fields and link fields.",
  6169. "homepage": "https://www.drupal.org/project/maxlength",
  6170. "support": {
  6171. "source": "https://git.drupalcode.org/project/maxlength",
  6172. "issues": "https://www.drupal.org/project/issues/maxlength"
  6173. }
  6174. },
  6175. {
  6176. "name": "drupal/menu_admin_per_menu",
  6177. "version": "1.7.0",
  6178. "source": {
  6179. "type": "git",
  6180. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6181. "reference": "8.x-1.7"
  6182. },
  6183. "dist": {
  6184. "type": "zip",
  6185. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.7.zip",
  6186. "reference": "8.x-1.7",
  6187. "shasum": "ce9faed09c95de7c7a57653aab66c5afc3e946a2"
  6188. },
  6189. "require": {
  6190. "drupal/core": "^10.2 || ^11.0 || ^12"
  6191. },
  6192. "type": "drupal-module",
  6193. "extra": {
  6194. "drupal": {
  6195. "version": "8.x-1.7",
  6196. "datestamp": "1750246188",
  6197. "security-coverage": {
  6198. "status": "covered",
  6199. "message": "Covered by Drupal's security advisory policy"
  6200. }
  6201. }
  6202. },
  6203. "notification-url": "https://packages.drupal.org/8/downloads",
  6204. "license": [
  6205. "GPL-2.0-or-later"
  6206. ],
  6207. "authors": [
  6208. {
  6209. "name": "anrikun",
  6210. "homepage": "https://www.drupal.org/user/410199"
  6211. },
  6212. {
  6213. "name": "jeroent",
  6214. "homepage": "https://www.drupal.org/user/2228934"
  6215. },
  6216. {
  6217. "name": "jonas139",
  6218. "homepage": "https://www.drupal.org/user/2873401"
  6219. },
  6220. {
  6221. "name": "mkdok",
  6222. "homepage": "https://www.drupal.org/user/3308753"
  6223. }
  6224. ],
  6225. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6226. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6227. "keywords": [
  6228. "Drupal"
  6229. ],
  6230. "support": {
  6231. "source": "https://git.drupalcode.org/project/menu_admin_per_menu",
  6232. "issues": "https://drupal.org/project/issues/menu_admin_per_menu"
  6233. }
  6234. },
  6235. {
  6236. "name": "drupal/menu_block",
  6237. "version": "1.14.0",
  6238. "source": {
  6239. "type": "git",
  6240. "url": "https://git.drupalcode.org/project/menu_block.git",
  6241. "reference": "8.x-1.14"
  6242. },
  6243. "dist": {
  6244. "type": "zip",
  6245. "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.14.zip",
  6246. "reference": "8.x-1.14",
  6247. "shasum": "c71e60acaba8a7553e8cf423a56328771cbdedf4"
  6248. },
  6249. "require": {
  6250. "drupal/core": "^10.1 || ^11"
  6251. },
  6252. "type": "drupal-module",
  6253. "extra": {
  6254. "drupal": {
  6255. "version": "8.x-1.14",
  6256. "datestamp": "1740624449",
  6257. "security-coverage": {
  6258. "status": "covered",
  6259. "message": "Covered by Drupal's security advisory policy"
  6260. }
  6261. }
  6262. },
  6263. "notification-url": "https://packages.drupal.org/8/downloads",
  6264. "license": [
  6265. "GPL-2.0-or-later"
  6266. ],
  6267. "authors": [
  6268. {
  6269. "name": "dave reid",
  6270. "homepage": "https://www.drupal.org/user/53892"
  6271. },
  6272. {
  6273. "name": "joelpittet",
  6274. "homepage": "https://www.drupal.org/user/160302"
  6275. },
  6276. {
  6277. "name": "johnalbin",
  6278. "homepage": "https://www.drupal.org/user/32095"
  6279. },
  6280. {
  6281. "name": "kim.pepper",
  6282. "homepage": "https://www.drupal.org/user/370574"
  6283. },
  6284. {
  6285. "name": "renatog",
  6286. "homepage": "https://www.drupal.org/user/3326031"
  6287. },
  6288. {
  6289. "name": "rrrob",
  6290. "homepage": "https://www.drupal.org/user/273533"
  6291. }
  6292. ],
  6293. "description": "Provides configurable blocks of menu links.",
  6294. "homepage": "https://www.drupal.org/project/menu_block",
  6295. "support": {
  6296. "source": "https://git.drupalcode.org/project/menu_block"
  6297. }
  6298. },
  6299. {
  6300. "name": "drupal/page_manager",
  6301. "version": "4.0.0-rc3",
  6302. "source": {
  6303. "type": "git",
  6304. "url": "https://git.drupalcode.org/project/page_manager.git",
  6305. "reference": "8.x-4.0-rc3"
  6306. },
  6307. "dist": {
  6308. "type": "zip",
  6309. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc3.zip",
  6310. "reference": "8.x-4.0-rc3",
  6311. "shasum": "9c68ed3e87196e42ceeb80d53064494d7a104abc"
  6312. },
  6313. "require": {
  6314. "drupal/core": "^9.5 || ^10 || ^11",
  6315. "drupal/ctools": "^3.15 || ^4.1"
  6316. },
  6317. "type": "drupal-module",
  6318. "extra": {
  6319. "drupal": {
  6320. "version": "8.x-4.0-rc3",
  6321. "datestamp": "1721976404",
  6322. "security-coverage": {
  6323. "status": "not-covered",
  6324. "message": "RC releases are not covered by Drupal security advisories."
  6325. }
  6326. },
  6327. "branch-alias": {
  6328. "dev-8.x-4.x": "4.x-dev"
  6329. }
  6330. },
  6331. "notification-url": "https://packages.drupal.org/8/downloads",
  6332. "license": [
  6333. "GPL-2.0-or-later"
  6334. ],
  6335. "authors": [
  6336. {
  6337. "name": "Tim Plunkett",
  6338. "homepage": "https://www.drupal.org/u/tim.plunkett",
  6339. "role": "Maintainer"
  6340. },
  6341. {
  6342. "name": "EclipseGc",
  6343. "homepage": "https://www.drupal.org/user/61203"
  6344. },
  6345. {
  6346. "name": "japerry",
  6347. "homepage": "https://www.drupal.org/user/45640"
  6348. },
  6349. {
  6350. "name": "joelpittet",
  6351. "homepage": "https://www.drupal.org/user/160302"
  6352. },
  6353. {
  6354. "name": "manuel.adan",
  6355. "homepage": "https://www.drupal.org/user/516420"
  6356. },
  6357. {
  6358. "name": "phenaproxima",
  6359. "homepage": "https://www.drupal.org/user/205645"
  6360. }
  6361. ],
  6362. "description": "Provides a way to place blocks on a custom page.",
  6363. "homepage": "https://www.drupal.org/project/page_manager",
  6364. "support": {
  6365. "source": "https://git.drupal.org/project/page_manager.git",
  6366. "issues": "https://www.drupal.org/project/issues/page_manager",
  6367. "irc": "irc://irc.freenode.org/drupal-contribute"
  6368. }
  6369. },
  6370. {
  6371. "name": "drupal/panels",
  6372. "version": "4.9.0",
  6373. "source": {
  6374. "type": "git",
  6375. "url": "https://git.drupalcode.org/project/panels.git",
  6376. "reference": "8.x-4.9"
  6377. },
  6378. "dist": {
  6379. "type": "zip",
  6380. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.9.zip",
  6381. "reference": "8.x-4.9",
  6382. "shasum": "7c05719e3af591947159c071c3bacff9d24d2be5"
  6383. },
  6384. "require": {
  6385. "drupal/core": "^9.5 || ^10 || ^11",
  6386. "drupal/ctools": "^3.15 || ^4.1",
  6387. "drupal/jquery_ui_droppable": "^1.0 || ^2.0"
  6388. },
  6389. "require-dev": {
  6390. "drupal/jquery_ui_droppable": "*",
  6391. "drupal/page_manager": "^4"
  6392. },
  6393. "type": "drupal-module",
  6394. "extra": {
  6395. "drupal": {
  6396. "version": "8.x-4.9",
  6397. "datestamp": "1744218203",
  6398. "security-coverage": {
  6399. "status": "covered",
  6400. "message": "Covered by Drupal's security advisory policy"
  6401. }
  6402. },
  6403. "branch-alias": {
  6404. "dev-8.x-4.x": "4.x-dev"
  6405. }
  6406. },
  6407. "notification-url": "https://packages.drupal.org/8/downloads",
  6408. "license": [
  6409. "GPL-2.0+"
  6410. ],
  6411. "authors": [
  6412. {
  6413. "name": "Jakob Perry",
  6414. "homepage": "https://www.drupal.org/u/japerry"
  6415. },
  6416. {
  6417. "name": "Samuel Mortenson",
  6418. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  6419. },
  6420. {
  6421. "name": "See other contributors",
  6422. "homepage": "https://www.drupal.org/node/74958/committers"
  6423. },
  6424. {
  6425. "name": "joelpittet",
  6426. "homepage": "https://www.drupal.org/user/160302"
  6427. },
  6428. {
  6429. "name": "Letharion",
  6430. "homepage": "https://www.drupal.org/user/373603"
  6431. },
  6432. {
  6433. "name": "merlinofchaos",
  6434. "homepage": "https://www.drupal.org/user/26979"
  6435. },
  6436. {
  6437. "name": "neclimdul",
  6438. "homepage": "https://www.drupal.org/user/48673"
  6439. },
  6440. {
  6441. "name": "phenaproxima",
  6442. "homepage": "https://www.drupal.org/user/205645"
  6443. },
  6444. {
  6445. "name": "samuel.mortenson",
  6446. "homepage": "https://www.drupal.org/user/2582268"
  6447. }
  6448. ],
  6449. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  6450. "homepage": "https://www.drupal.org/project/panels",
  6451. "support": {
  6452. "source": "https://git.drupalcode.org/project/panels",
  6453. "issues": "https://www.drupal.org/project/issues/panels",
  6454. "irc": "irc://irc.freenode.org/drupal-scotch"
  6455. }
  6456. },
  6457. {
  6458. "name": "drupal/paragraphs",
  6459. "version": "1.19.0",
  6460. "source": {
  6461. "type": "git",
  6462. "url": "https://git.drupalcode.org/project/paragraphs.git",
  6463. "reference": "8.x-1.19"
  6464. },
  6465. "dist": {
  6466. "type": "zip",
  6467. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.19.zip",
  6468. "reference": "8.x-1.19",
  6469. "shasum": "831a81a11eac419e8410db45efef5b283c4d117c"
  6470. },
  6471. "require": {
  6472. "drupal/core": "^10.2 || ^11",
  6473. "drupal/entity_reference_revisions": "~1.3"
  6474. },
  6475. "require-dev": {
  6476. "drupal/block_field": "1.x-dev",
  6477. "drupal/diff": "1.x-dev",
  6478. "drupal/entity_browser": "2.x-dev",
  6479. "drupal/entity_usage": "2.x-dev",
  6480. "drupal/feeds": "^3",
  6481. "drupal/field_group": "3.x-dev",
  6482. "drupal/inline_entity_form": "3.x-dev",
  6483. "drupal/paragraphs-paragraphs_library": "*",
  6484. "drupal/replicate": "1.x-dev",
  6485. "drupal/search_api": "^1",
  6486. "drupal/search_api_db": "*"
  6487. },
  6488. "suggest": {
  6489. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  6490. },
  6491. "type": "drupal-module",
  6492. "extra": {
  6493. "drupal": {
  6494. "version": "8.x-1.19",
  6495. "datestamp": "1740907076",
  6496. "security-coverage": {
  6497. "status": "covered",
  6498. "message": "Covered by Drupal's security advisory policy"
  6499. }
  6500. }
  6501. },
  6502. "notification-url": "https://packages.drupal.org/8/downloads",
  6503. "license": [
  6504. "GPL-2.0-or-later"
  6505. ],
  6506. "authors": [
  6507. {
  6508. "name": "berdir",
  6509. "homepage": "https://www.drupal.org/user/214652"
  6510. },
  6511. {
  6512. "name": "frans",
  6513. "homepage": "https://www.drupal.org/user/514222"
  6514. },
  6515. {
  6516. "name": "jeroen.b",
  6517. "homepage": "https://www.drupal.org/user/1853532"
  6518. },
  6519. {
  6520. "name": "jstoller",
  6521. "homepage": "https://www.drupal.org/user/99012"
  6522. },
  6523. {
  6524. "name": "miro_dietiker",
  6525. "homepage": "https://www.drupal.org/user/227761"
  6526. },
  6527. {
  6528. "name": "primsi",
  6529. "homepage": "https://www.drupal.org/user/282629"
  6530. }
  6531. ],
  6532. "description": "Enables the creation of Paragraphs entities.",
  6533. "homepage": "https://www.drupal.org/project/paragraphs",
  6534. "support": {
  6535. "source": "https://git.drupalcode.org/project/paragraphs"
  6536. }
  6537. },
  6538. {
  6539. "name": "drupal/pathauto",
  6540. "version": "1.13.0",
  6541. "source": {
  6542. "type": "git",
  6543. "url": "https://git.drupalcode.org/project/pathauto.git",
  6544. "reference": "8.x-1.13"
  6545. },
  6546. "dist": {
  6547. "type": "zip",
  6548. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.13.zip",
  6549. "reference": "8.x-1.13",
  6550. "shasum": "e64b5a82cf1b8ab48bce400b21ae6fc99c8078fd"
  6551. },
  6552. "require": {
  6553. "drupal/core": "^9.4 || ^10 || ^11",
  6554. "drupal/ctools": "*",
  6555. "drupal/token": "*"
  6556. },
  6557. "require-dev": {
  6558. "drupal/forum": "*"
  6559. },
  6560. "suggest": {
  6561. "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."
  6562. },
  6563. "type": "drupal-module",
  6564. "extra": {
  6565. "drupal": {
  6566. "version": "8.x-1.13",
  6567. "datestamp": "1739552840",
  6568. "security-coverage": {
  6569. "status": "covered",
  6570. "message": "Covered by Drupal's security advisory policy"
  6571. }
  6572. },
  6573. "drush": {
  6574. "services": {
  6575. "drush.services.yml": "^9 || ^10"
  6576. }
  6577. }
  6578. },
  6579. "notification-url": "https://packages.drupal.org/8/downloads",
  6580. "license": [
  6581. "GPL-2.0-or-later"
  6582. ],
  6583. "authors": [
  6584. {
  6585. "name": "berdir",
  6586. "homepage": "https://www.drupal.org/user/214652"
  6587. },
  6588. {
  6589. "name": "dave reid",
  6590. "homepage": "https://www.drupal.org/user/53892"
  6591. },
  6592. {
  6593. "name": "Freso",
  6594. "homepage": "https://www.drupal.org/user/27504"
  6595. },
  6596. {
  6597. "name": "greggles",
  6598. "homepage": "https://www.drupal.org/user/36762"
  6599. }
  6600. ],
  6601. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6602. "homepage": "https://www.drupal.org/project/pathauto",
  6603. "support": {
  6604. "source": "https://cgit.drupalcode.org/pathauto",
  6605. "issues": "https://www.drupal.org/project/issues/pathauto",
  6606. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6607. }
  6608. },
  6609. {
  6610. "name": "drupal/pathologic",
  6611. "version": "2.0.0-alpha3",
  6612. "source": {
  6613. "type": "git",
  6614. "url": "https://git.drupalcode.org/project/pathologic.git",
  6615. "reference": "2.0.0-alpha3"
  6616. },
  6617. "dist": {
  6618. "type": "zip",
  6619. "url": "https://ftp.drupal.org/files/projects/pathologic-2.0.0-alpha3.zip",
  6620. "reference": "2.0.0-alpha3",
  6621. "shasum": "f59c465b7070c3e6d12a204a55ee1117b991ae93"
  6622. },
  6623. "require": {
  6624. "drupal/core": "^9 || ^10 || ^11"
  6625. },
  6626. "type": "drupal-module",
  6627. "extra": {
  6628. "drupal": {
  6629. "version": "2.0.0-alpha3",
  6630. "datestamp": "1733441073",
  6631. "security-coverage": {
  6632. "status": "not-covered",
  6633. "message": "Alpha releases are not covered by Drupal security advisories."
  6634. }
  6635. }
  6636. },
  6637. "notification-url": "https://packages.drupal.org/8/downloads",
  6638. "license": [
  6639. "GPL-2.0+"
  6640. ],
  6641. "authors": [
  6642. {
  6643. "name": "berdir",
  6644. "homepage": "https://www.drupal.org/user/214652"
  6645. },
  6646. {
  6647. "name": "dww",
  6648. "homepage": "https://www.drupal.org/user/46549"
  6649. },
  6650. {
  6651. "name": "Garrett Albright",
  6652. "homepage": "https://www.drupal.org/user/191212"
  6653. },
  6654. {
  6655. "name": "mark_fullmer",
  6656. "homepage": "https://www.drupal.org/user/2612816"
  6657. }
  6658. ],
  6659. "description": "Helps avoid broken links and incorrect paths in content.",
  6660. "homepage": "https://www.drupal.org/project/pathologic",
  6661. "support": {
  6662. "source": "https://git.drupalcode.org/project/pathologic"
  6663. }
  6664. },
  6665. {
  6666. "name": "drupal/persistent_login",
  6667. "version": "1.10.0",
  6668. "source": {
  6669. "type": "git",
  6670. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6671. "reference": "8.x-1.10"
  6672. },
  6673. "dist": {
  6674. "type": "zip",
  6675. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.10.zip",
  6676. "reference": "8.x-1.10",
  6677. "shasum": "eea0d9cf0cf2ebb6063a3edc244a78ffab0aad53"
  6678. },
  6679. "require": {
  6680. "drupal/core": "^9.2 || ^10"
  6681. },
  6682. "type": "drupal-module",
  6683. "extra": {
  6684. "drupal": {
  6685. "version": "8.x-1.10",
  6686. "datestamp": "1728082629",
  6687. "security-coverage": {
  6688. "status": "covered",
  6689. "message": "Covered by Drupal's security advisory policy"
  6690. }
  6691. }
  6692. },
  6693. "notification-url": "https://packages.drupal.org/8/downloads",
  6694. "license": [
  6695. "GPL-2.0-or-later"
  6696. ],
  6697. "authors": [
  6698. {
  6699. "name": "gapple",
  6700. "homepage": "https://www.drupal.org/user/490940"
  6701. }
  6702. ],
  6703. "description": "Provides a \"Remember Me\" feature on the login form.",
  6704. "homepage": "https://www.drupal.org/project/persistent_login",
  6705. "keywords": [
  6706. "Drupal"
  6707. ],
  6708. "support": {
  6709. "source": "https://git.drupalcode.org/project/persistent_login",
  6710. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6711. }
  6712. },
  6713. {
  6714. "name": "drupal/redirect",
  6715. "version": "1.11.0",
  6716. "source": {
  6717. "type": "git",
  6718. "url": "https://git.drupalcode.org/project/redirect.git",
  6719. "reference": "8.x-1.11"
  6720. },
  6721. "dist": {
  6722. "type": "zip",
  6723. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.11.zip",
  6724. "reference": "8.x-1.11",
  6725. "shasum": "7df8b3524bbde07d254216039636947a689140ef"
  6726. },
  6727. "require": {
  6728. "drupal/core": "^9.2 || ^10 || ^11"
  6729. },
  6730. "type": "drupal-module",
  6731. "extra": {
  6732. "drupal": {
  6733. "version": "8.x-1.11",
  6734. "datestamp": "1737382886",
  6735. "security-coverage": {
  6736. "status": "covered",
  6737. "message": "Covered by Drupal's security advisory policy"
  6738. }
  6739. }
  6740. },
  6741. "notification-url": "https://packages.drupal.org/8/downloads",
  6742. "license": [
  6743. "GPL-2.0-or-later"
  6744. ],
  6745. "authors": [
  6746. {
  6747. "name": "berdir",
  6748. "homepage": "https://www.drupal.org/user/214652"
  6749. },
  6750. {
  6751. "name": "dave reid",
  6752. "homepage": "https://www.drupal.org/user/53892"
  6753. },
  6754. {
  6755. "name": "kristen pol",
  6756. "homepage": "https://www.drupal.org/user/8389"
  6757. },
  6758. {
  6759. "name": "pifagor",
  6760. "homepage": "https://www.drupal.org/user/2375692"
  6761. }
  6762. ],
  6763. "description": "Allows users to redirect from old URLs to new URLs.",
  6764. "homepage": "https://www.drupal.org/project/redirect",
  6765. "support": {
  6766. "source": "https://git.drupalcode.org/project/redirect"
  6767. }
  6768. },
  6769. {
  6770. "name": "drupal/redis",
  6771. "version": "1.9.0",
  6772. "source": {
  6773. "type": "git",
  6774. "url": "https://git.drupalcode.org/project/redis.git",
  6775. "reference": "8.x-1.9"
  6776. },
  6777. "dist": {
  6778. "type": "zip",
  6779. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.9.zip",
  6780. "reference": "8.x-1.9",
  6781. "shasum": "77e2e8ddb95be08f3fe9f74182c7ff0476e15674"
  6782. },
  6783. "require": {
  6784. "drupal/core": "^9.3 || ^10 || ^11"
  6785. },
  6786. "suggest": {
  6787. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  6788. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  6789. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  6790. },
  6791. "type": "drupal-module",
  6792. "extra": {
  6793. "drupal": {
  6794. "version": "8.x-1.9",
  6795. "datestamp": "1737932099",
  6796. "security-coverage": {
  6797. "status": "covered",
  6798. "message": "Covered by Drupal's security advisory policy"
  6799. }
  6800. }
  6801. },
  6802. "autoload": {
  6803. "psr-4": {
  6804. "Drupal\\redis\\": "src"
  6805. }
  6806. },
  6807. "notification-url": "https://packages.drupal.org/8/downloads",
  6808. "license": [
  6809. "GPL-2.0-or-later"
  6810. ],
  6811. "authors": [
  6812. {
  6813. "name": "berdir",
  6814. "homepage": "https://www.drupal.org/user/214652"
  6815. },
  6816. {
  6817. "name": "greg.1.anderson",
  6818. "homepage": "https://www.drupal.org/user/438598"
  6819. },
  6820. {
  6821. "name": "kporras07",
  6822. "homepage": "https://www.drupal.org/user/1349780"
  6823. },
  6824. {
  6825. "name": "pounard",
  6826. "homepage": "https://www.drupal.org/user/240164"
  6827. }
  6828. ],
  6829. "description": "Integration of Drupal with the Redis key-value store.",
  6830. "homepage": "https://www.drupal.org/project/redis",
  6831. "support": {
  6832. "source": "https://git.drupalcode.org/project/redis"
  6833. }
  6834. },
  6835. {
  6836. "name": "drupal/role_delegation",
  6837. "version": "1.4.0",
  6838. "source": {
  6839. "type": "git",
  6840. "url": "https://git.drupalcode.org/project/role_delegation.git",
  6841. "reference": "8.x-1.4"
  6842. },
  6843. "dist": {
  6844. "type": "zip",
  6845. "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.4.zip",
  6846. "reference": "8.x-1.4",
  6847. "shasum": "7637fb2506b134bc888c74d3dcfa79c8a0c207aa"
  6848. },
  6849. "require": {
  6850. "drupal/core": "^10.3 || ^11"
  6851. },
  6852. "type": "drupal-module",
  6853. "extra": {
  6854. "drupal": {
  6855. "version": "8.x-1.4",
  6856. "datestamp": "1751012870",
  6857. "security-coverage": {
  6858. "status": "covered",
  6859. "message": "Covered by Drupal's security advisory policy"
  6860. }
  6861. }
  6862. },
  6863. "notification-url": "https://packages.drupal.org/8/downloads",
  6864. "license": [
  6865. "GPL-2.0-or-later"
  6866. ],
  6867. "authors": [
  6868. {
  6869. "name": "Jeroen Tubex",
  6870. "homepage": "https://www.drupal.org/u/jeroent",
  6871. "role": "Maintainer"
  6872. },
  6873. {
  6874. "name": "benjy",
  6875. "homepage": "https://www.drupal.org/user/1852732"
  6876. },
  6877. {
  6878. "name": "dieterholvoet",
  6879. "homepage": "https://www.drupal.org/user/3567222"
  6880. },
  6881. {
  6882. "name": "jeroent",
  6883. "homepage": "https://www.drupal.org/user/2228934"
  6884. }
  6885. ],
  6886. "description": "Allows site administrators to grant some roles the authority to assign selected roles to users.",
  6887. "homepage": "http://drupal.org/project/role_delegation",
  6888. "support": {
  6889. "source": "https://git.drupalcode.org/project/role_delegation",
  6890. "issues": "http://drupal.org/project/role_delegation"
  6891. }
  6892. },
  6893. {
  6894. "name": "drupal/search_api",
  6895. "version": "1.38.0",
  6896. "source": {
  6897. "type": "git",
  6898. "url": "https://git.drupalcode.org/project/search_api.git",
  6899. "reference": "8.x-1.38"
  6900. },
  6901. "dist": {
  6902. "type": "zip",
  6903. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.38.zip",
  6904. "reference": "8.x-1.38",
  6905. "shasum": "d1c83ba74e553eca07d3ea4b15e5d9c7f009a496"
  6906. },
  6907. "require": {
  6908. "drupal/core": "^10.2 || ^11"
  6909. },
  6910. "conflict": {
  6911. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  6912. },
  6913. "require-dev": {
  6914. "drupal/language_fallback_fix": "@dev",
  6915. "drupal/search_api_autocomplete": "@dev",
  6916. "drupal/search_api_db": "*"
  6917. },
  6918. "suggest": {
  6919. "drupal/facets": "Adds the ability to create faceted searches.",
  6920. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6921. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6922. },
  6923. "type": "drupal-module",
  6924. "extra": {
  6925. "drupal": {
  6926. "version": "8.x-1.38",
  6927. "datestamp": "1740298961",
  6928. "security-coverage": {
  6929. "status": "covered",
  6930. "message": "Covered by Drupal's security advisory policy"
  6931. }
  6932. }
  6933. },
  6934. "notification-url": "https://packages.drupal.org/8/downloads",
  6935. "license": [
  6936. "GPL-2.0-or-later"
  6937. ],
  6938. "authors": [
  6939. {
  6940. "name": "Thomas Seidl",
  6941. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6942. },
  6943. {
  6944. "name": "Nick Veenhof",
  6945. "homepage": "https://www.drupal.org/u/nick_vh"
  6946. },
  6947. {
  6948. "name": "See other contributors",
  6949. "homepage": "https://www.drupal.org/node/790418/committers"
  6950. }
  6951. ],
  6952. "description": "Provides a generic framework for modules offering search capabilities.",
  6953. "homepage": "https://www.drupal.org/project/search_api",
  6954. "support": {
  6955. "source": "https://git.drupalcode.org/project/search_api",
  6956. "issues": "https://www.drupal.org/project/issues/search_api",
  6957. "irc": "irc://irc.freenode.org/drupal-search-api"
  6958. }
  6959. },
  6960. {
  6961. "name": "drupal/search_api_db",
  6962. "version": "1.38.0",
  6963. "require": {
  6964. "drupal/core": "^10.2 || ^11",
  6965. "drupal/search_api": "*"
  6966. },
  6967. "type": "metapackage",
  6968. "extra": {
  6969. "drupal": {
  6970. "version": "8.x-1.38",
  6971. "datestamp": "1740298961",
  6972. "security-coverage": {
  6973. "status": "covered",
  6974. "message": "Covered by Drupal's security advisory policy"
  6975. }
  6976. }
  6977. },
  6978. "notification-url": "https://packages.drupal.org/8/downloads",
  6979. "license": [
  6980. "GPL-2.0-or-later"
  6981. ],
  6982. "authors": [
  6983. {
  6984. "name": "borisson_",
  6985. "homepage": "https://www.drupal.org/user/2393360"
  6986. },
  6987. {
  6988. "name": "drunken monkey",
  6989. "homepage": "https://www.drupal.org/user/205582"
  6990. },
  6991. {
  6992. "name": "nick_vh",
  6993. "homepage": "https://www.drupal.org/user/122682"
  6994. }
  6995. ],
  6996. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6997. "homepage": "https://www.drupal.org/project/search_api",
  6998. "support": {
  6999. "source": "https://git.drupalcode.org/project/search_api"
  7000. }
  7001. },
  7002. {
  7003. "name": "drupal/seven",
  7004. "version": "1.0.0",
  7005. "source": {
  7006. "type": "git",
  7007. "url": "https://git.drupalcode.org/project/seven.git",
  7008. "reference": "1.0.0"
  7009. },
  7010. "dist": {
  7011. "type": "zip",
  7012. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  7013. "reference": "1.0.0",
  7014. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  7015. },
  7016. "require": {
  7017. "drupal/core": "^9 || ^10"
  7018. },
  7019. "type": "drupal-theme",
  7020. "extra": {
  7021. "drupal": {
  7022. "version": "1.0.0",
  7023. "datestamp": "1683652106",
  7024. "security-coverage": {
  7025. "status": "covered",
  7026. "message": "Covered by Drupal's security advisory policy"
  7027. }
  7028. }
  7029. },
  7030. "notification-url": "https://packages.drupal.org/8/downloads",
  7031. "license": [
  7032. "GPL-2.0-or-later"
  7033. ],
  7034. "authors": [
  7035. {
  7036. "name": "avpaderno",
  7037. "homepage": "https://www.drupal.org/user/55077"
  7038. },
  7039. {
  7040. "name": "bnjmnm",
  7041. "homepage": "https://www.drupal.org/user/2369194"
  7042. },
  7043. {
  7044. "name": "krakenbite",
  7045. "homepage": "https://www.drupal.org/user/3805933"
  7046. },
  7047. {
  7048. "name": "lauriii",
  7049. "homepage": "https://www.drupal.org/user/1078742"
  7050. },
  7051. {
  7052. "name": "mcrittenden",
  7053. "homepage": "https://www.drupal.org/user/420631"
  7054. },
  7055. {
  7056. "name": "mrfelton",
  7057. "homepage": "https://www.drupal.org/user/305669"
  7058. }
  7059. ],
  7060. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  7061. "homepage": "https://www.drupal.org/project/seven",
  7062. "support": {
  7063. "source": "https://git.drupalcode.org/project/seven"
  7064. }
  7065. },
  7066. {
  7067. "name": "drupal/slick",
  7068. "version": "2.11.0",
  7069. "source": {
  7070. "type": "git",
  7071. "url": "https://git.drupalcode.org/project/slick.git",
  7072. "reference": "8.x-2.11"
  7073. },
  7074. "dist": {
  7075. "type": "zip",
  7076. "url": "https://ftp.drupal.org/files/projects/slick-8.x-2.11.zip",
  7077. "reference": "8.x-2.11",
  7078. "shasum": "81c8364992578aadec46955c494085d3d04e01f3"
  7079. },
  7080. "require": {
  7081. "drupal/blazy": "^2.17",
  7082. "drupal/core": "^8.8 || ^9 || ^10"
  7083. },
  7084. "type": "drupal-module",
  7085. "extra": {
  7086. "drupal": {
  7087. "version": "8.x-2.11",
  7088. "datestamp": "1712817716",
  7089. "security-coverage": {
  7090. "status": "covered",
  7091. "message": "Covered by Drupal's security advisory policy"
  7092. }
  7093. }
  7094. },
  7095. "notification-url": "https://packages.drupal.org/8/downloads",
  7096. "license": [
  7097. "GPL-2.0-or-later"
  7098. ],
  7099. "authors": [
  7100. {
  7101. "name": "Contributors",
  7102. "homepage": "https://www.drupal.org/node/2232779/committers",
  7103. "role": "Contributors"
  7104. },
  7105. {
  7106. "name": "shadcn",
  7107. "homepage": "https://www.drupal.org/user/571032"
  7108. },
  7109. {
  7110. "name": "thalles",
  7111. "homepage": "https://www.drupal.org/user/3589086"
  7112. }
  7113. ],
  7114. "description": "Slick carousel, the last carousel you'll ever need.",
  7115. "homepage": "https://drupal.org/project/slick",
  7116. "keywords": [
  7117. "Drupal",
  7118. "carousel",
  7119. "slideshow"
  7120. ],
  7121. "support": {
  7122. "source": "https://git.drupalcode.org/project/slick",
  7123. "issues": "https://drupal.org/project/issues/slick"
  7124. }
  7125. },
  7126. {
  7127. "name": "drupal/smart_trim",
  7128. "version": "2.2.0",
  7129. "source": {
  7130. "type": "git",
  7131. "url": "https://git.drupalcode.org/project/smart_trim.git",
  7132. "reference": "2.2.0"
  7133. },
  7134. "dist": {
  7135. "type": "zip",
  7136. "url": "https://ftp.drupal.org/files/projects/smart_trim-2.2.0.zip",
  7137. "reference": "2.2.0",
  7138. "shasum": "564737cf0895e1b8a38af575ab7ca23f55335d9a"
  7139. },
  7140. "require": {
  7141. "drupal/core": "^9.5 || ^10 || ^11",
  7142. "drupal/token": "^1.0",
  7143. "php": ">=8.1"
  7144. },
  7145. "require-dev": {
  7146. "drupal/token_filter": "^2.1 || ^2.2"
  7147. },
  7148. "type": "drupal-module",
  7149. "extra": {
  7150. "drupal": {
  7151. "version": "2.2.0",
  7152. "datestamp": "1723847275",
  7153. "security-coverage": {
  7154. "status": "covered",
  7155. "message": "Covered by Drupal's security advisory policy"
  7156. }
  7157. }
  7158. },
  7159. "notification-url": "https://packages.drupal.org/8/downloads",
  7160. "license": [
  7161. "GPL-2.0-or-later"
  7162. ],
  7163. "authors": [
  7164. {
  7165. "name": "Mark Casias (markie)",
  7166. "homepage": "https://www.drupal.org/u/markie",
  7167. "role": "Maintainer"
  7168. },
  7169. {
  7170. "name": "AmyJune Hineline (volkswagenchick)",
  7171. "homepage": "https://www.drupal.org/u/volkswagenchick",
  7172. "role": "Maintainer"
  7173. },
  7174. {
  7175. "name": "Michael Anello (ultimike)",
  7176. "homepage": "https://www.drupal.org/u/ultimike",
  7177. "role": "Maintainer"
  7178. }
  7179. ],
  7180. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  7181. "homepage": "https://drupal.org/project/smart_trim",
  7182. "support": {
  7183. "source": "https://git.drupalcode.org/project/smart_trim",
  7184. "issues": "https://drupal.org/project/issues/smart_trim"
  7185. }
  7186. },
  7187. {
  7188. "name": "drupal/smtp",
  7189. "version": "1.4.0",
  7190. "source": {
  7191. "type": "git",
  7192. "url": "https://git.drupalcode.org/project/smtp.git",
  7193. "reference": "8.x-1.4"
  7194. },
  7195. "dist": {
  7196. "type": "zip",
  7197. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.4.zip",
  7198. "reference": "8.x-1.4",
  7199. "shasum": "963b4670dc609f30a8c003d888d88893d0841b21"
  7200. },
  7201. "require": {
  7202. "drupal/core": "^9.5 || ^10 || ^11",
  7203. "phpmailer/phpmailer": "^6.1.7"
  7204. },
  7205. "suggest": {
  7206. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7207. },
  7208. "type": "drupal-module",
  7209. "extra": {
  7210. "drupal": {
  7211. "version": "8.x-1.4",
  7212. "datestamp": "1722032780",
  7213. "security-coverage": {
  7214. "status": "covered",
  7215. "message": "Covered by Drupal's security advisory policy"
  7216. }
  7217. },
  7218. "branch-alias": {
  7219. "dev-8.x-1.x": "1.x-dev"
  7220. }
  7221. },
  7222. "notification-url": "https://packages.drupal.org/8/downloads",
  7223. "license": [
  7224. "GPL-2.0-or-later"
  7225. ],
  7226. "authors": [
  7227. {
  7228. "name": "japerry",
  7229. "homepage": "https://www.drupal.org/user/45640"
  7230. },
  7231. {
  7232. "name": "joseph.olstad",
  7233. "homepage": "https://www.drupal.org/user/1321830"
  7234. },
  7235. {
  7236. "name": "LukeLast",
  7237. "homepage": "https://www.drupal.org/user/30151"
  7238. },
  7239. {
  7240. "name": "oadaeh",
  7241. "homepage": "https://www.drupal.org/user/4649"
  7242. },
  7243. {
  7244. "name": "sadashiv",
  7245. "homepage": "https://www.drupal.org/user/1773304"
  7246. },
  7247. {
  7248. "name": "wundo",
  7249. "homepage": "https://www.drupal.org/user/25523"
  7250. },
  7251. {
  7252. "name": "yettyn",
  7253. "homepage": "https://www.drupal.org/user/93281"
  7254. }
  7255. ],
  7256. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7257. "homepage": "https://www.drupal.org/project/smtp",
  7258. "support": {
  7259. "source": "https://git.drupalcode.org/project/smtp",
  7260. "issues": "https://www.drupal.org/project/issues/smtp"
  7261. }
  7262. },
  7263. {
  7264. "name": "drupal/structure_sync",
  7265. "version": "2.0.8",
  7266. "source": {
  7267. "type": "git",
  7268. "url": "https://git.drupalcode.org/project/structure_sync.git",
  7269. "reference": "2.0.8"
  7270. },
  7271. "dist": {
  7272. "type": "zip",
  7273. "url": "https://ftp.drupal.org/files/projects/structure_sync-2.0.8.zip",
  7274. "reference": "2.0.8",
  7275. "shasum": "3f1bd24d7f048cdd9f49e178af9fa47d291d3525"
  7276. },
  7277. "require": {
  7278. "drupal/core": "^8 || ^9 || ^10 || ^11",
  7279. "php": ">=7.1"
  7280. },
  7281. "require-dev": {
  7282. "drush/drush": "^9 || ^10 || ^11 || ^12 || ^13"
  7283. },
  7284. "type": "drupal-module",
  7285. "extra": {
  7286. "drupal": {
  7287. "version": "2.0.8",
  7288. "datestamp": "1728580642",
  7289. "security-coverage": {
  7290. "status": "covered",
  7291. "message": "Covered by Drupal's security advisory policy"
  7292. }
  7293. },
  7294. "drush": {
  7295. "services": {
  7296. "drush.services.yml": "^9 || ^10 || ^11 || ^12 || ^13"
  7297. }
  7298. }
  7299. },
  7300. "notification-url": "https://packages.drupal.org/8/downloads",
  7301. "license": [
  7302. "GPL-2.0-or-later"
  7303. ],
  7304. "authors": [
  7305. {
  7306. "name": "colan",
  7307. "homepage": "https://www.drupal.org/user/58704"
  7308. },
  7309. {
  7310. "name": "fidovdbos",
  7311. "homepage": "https://www.drupal.org/user/1494332"
  7312. },
  7313. {
  7314. "name": "joachim",
  7315. "homepage": "https://www.drupal.org/user/107701"
  7316. },
  7317. {
  7318. "name": "louis-cuny",
  7319. "homepage": "https://www.drupal.org/user/3606332"
  7320. },
  7321. {
  7322. "name": "mparker17",
  7323. "homepage": "https://www.drupal.org/user/536298"
  7324. },
  7325. {
  7326. "name": "spiderman",
  7327. "homepage": "https://www.drupal.org/user/1631"
  7328. },
  7329. {
  7330. "name": "timKruijsen",
  7331. "homepage": "https://www.drupal.org/user/3513437"
  7332. },
  7333. {
  7334. "name": "vinlaurens",
  7335. "homepage": "https://www.drupal.org/user/2945689"
  7336. }
  7337. ],
  7338. "description": "Tool for syncing structural data that is stored as content.",
  7339. "homepage": "https://www.drupal.org/project/structure_sync",
  7340. "support": {
  7341. "source": "https://git.drupalcode.org/project/structure_sync"
  7342. }
  7343. },
  7344. {
  7345. "name": "drupal/synonyms",
  7346. "version": "2.1.4",
  7347. "source": {
  7348. "type": "git",
  7349. "url": "https://git.drupalcode.org/project/synonyms.git",
  7350. "reference": "2.1.4"
  7351. },
  7352. "dist": {
  7353. "type": "zip",
  7354. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.4.zip",
  7355. "reference": "2.1.4",
  7356. "shasum": "ee0f1a7e0d1f565c35cafeb437b59366b76684b3"
  7357. },
  7358. "require": {
  7359. "drupal/core": "^9 || ^10 || ^11"
  7360. },
  7361. "require-dev": {
  7362. "drupal/synonyms_list_field": "*"
  7363. },
  7364. "type": "drupal-module",
  7365. "extra": {
  7366. "drupal": {
  7367. "version": "2.1.4",
  7368. "datestamp": "1723069842",
  7369. "security-coverage": {
  7370. "status": "covered",
  7371. "message": "Covered by Drupal's security advisory policy"
  7372. }
  7373. }
  7374. },
  7375. "notification-url": "https://packages.drupal.org/8/downloads",
  7376. "license": [
  7377. "GPL-2.0-or-later"
  7378. ],
  7379. "authors": [
  7380. {
  7381. "name": "Bojan Zivanovic",
  7382. "homepage": "https://www.drupal.org/u/bojanz",
  7383. "role": "Author and D5, D6 and D7 versions developer."
  7384. },
  7385. {
  7386. "name": "Alex Trosenko",
  7387. "homepage": "https://www.drupal.org/u/bucefal91",
  7388. "role": "D7 and D8 versions developer."
  7389. },
  7390. {
  7391. "name": "Duro Arezina",
  7392. "homepage": "https://www.drupal.org/u/devad",
  7393. "role": "D8+ versions maintenance"
  7394. },
  7395. {
  7396. "name": "See other contributors",
  7397. "homepage": "https://www.drupal.org/node/148775/committers"
  7398. }
  7399. ],
  7400. "description": "Provides synonyms feature for all entities.",
  7401. "homepage": "https://www.drupal.org/project/synonyms",
  7402. "support": {
  7403. "source": "https://git.drupalcode.org/project/synonyms",
  7404. "issues": "https://www.drupal.org/project/issues/synonyms"
  7405. }
  7406. },
  7407. {
  7408. "name": "drupal/token",
  7409. "version": "1.15.0",
  7410. "source": {
  7411. "type": "git",
  7412. "url": "https://git.drupalcode.org/project/token.git",
  7413. "reference": "8.x-1.15"
  7414. },
  7415. "dist": {
  7416. "type": "zip",
  7417. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.15.zip",
  7418. "reference": "8.x-1.15",
  7419. "shasum": "5916fbccc86458a5f51e71f832ac70ff4c84ebdf"
  7420. },
  7421. "require": {
  7422. "drupal/core": "^9.2 || ^10 || ^11"
  7423. },
  7424. "require-dev": {
  7425. "drupal/book": "*"
  7426. },
  7427. "type": "drupal-module",
  7428. "extra": {
  7429. "drupal": {
  7430. "version": "8.x-1.15",
  7431. "datestamp": "1722206211",
  7432. "security-coverage": {
  7433. "status": "covered",
  7434. "message": "Covered by Drupal's security advisory policy"
  7435. }
  7436. },
  7437. "drush": {
  7438. "services": {
  7439. "drush.services.yml": ">=9"
  7440. }
  7441. }
  7442. },
  7443. "notification-url": "https://packages.drupal.org/8/downloads",
  7444. "license": [
  7445. "GPL-2.0-or-later"
  7446. ],
  7447. "authors": [
  7448. {
  7449. "name": "berdir",
  7450. "homepage": "https://www.drupal.org/user/214652"
  7451. },
  7452. {
  7453. "name": "dave reid",
  7454. "homepage": "https://www.drupal.org/user/53892"
  7455. },
  7456. {
  7457. "name": "eaton",
  7458. "homepage": "https://www.drupal.org/user/16496"
  7459. },
  7460. {
  7461. "name": "fago",
  7462. "homepage": "https://www.drupal.org/user/16747"
  7463. },
  7464. {
  7465. "name": "greggles",
  7466. "homepage": "https://www.drupal.org/user/36762"
  7467. },
  7468. {
  7469. "name": "mikeryan",
  7470. "homepage": "https://www.drupal.org/user/4420"
  7471. }
  7472. ],
  7473. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7474. "homepage": "https://www.drupal.org/project/token",
  7475. "support": {
  7476. "source": "https://git.drupalcode.org/project/token"
  7477. }
  7478. },
  7479. {
  7480. "name": "drupal/translation_views",
  7481. "version": "1.0.0-alpha11",
  7482. "source": {
  7483. "type": "git",
  7484. "url": "https://git.drupalcode.org/project/translation_views.git",
  7485. "reference": "8.x-1.0-alpha11"
  7486. },
  7487. "dist": {
  7488. "type": "zip",
  7489. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  7490. "reference": "8.x-1.0-alpha11",
  7491. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  7492. },
  7493. "require": {
  7494. "drupal/core": "^8.8 || ^9 || ^10"
  7495. },
  7496. "require-dev": {
  7497. "drupal/translators_content": "^1.0@alpha"
  7498. },
  7499. "type": "drupal-module",
  7500. "extra": {
  7501. "drupal": {
  7502. "version": "8.x-1.0-alpha11",
  7503. "datestamp": "1679660668",
  7504. "security-coverage": {
  7505. "status": "not-covered",
  7506. "message": "Alpha releases are not covered by Drupal security advisories."
  7507. }
  7508. }
  7509. },
  7510. "notification-url": "https://packages.drupal.org/8/downloads",
  7511. "license": [
  7512. "GPL-2.0-or-later"
  7513. ],
  7514. "authors": [
  7515. {
  7516. "name": "matsbla",
  7517. "homepage": "https://www.drupal.org/user/2325394"
  7518. },
  7519. {
  7520. "name": "vlad.dancer",
  7521. "homepage": "https://www.drupal.org/user/903844"
  7522. }
  7523. ],
  7524. "description": "Create customized lists and queries of translations from your database.",
  7525. "homepage": "https://www.drupal.org/project/translation_views",
  7526. "support": {
  7527. "source": "https://git.drupalcode.org/project/translation_views"
  7528. }
  7529. },
  7530. {
  7531. "name": "drupal/ultimate_cron",
  7532. "version": "2.0.0-beta1",
  7533. "source": {
  7534. "type": "git",
  7535. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7536. "reference": "8.x-2.0-beta1"
  7537. },
  7538. "dist": {
  7539. "type": "zip",
  7540. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-beta1.zip",
  7541. "reference": "8.x-2.0-beta1",
  7542. "shasum": "f3408d1a2734f2a13b341f8aeb131eb5cbef3e90"
  7543. },
  7544. "require": {
  7545. "drupal/core": "^9.3 || ^10.1 || ^11"
  7546. },
  7547. "type": "drupal-module",
  7548. "extra": {
  7549. "drupal": {
  7550. "version": "8.x-2.0-beta1",
  7551. "datestamp": "1732830342",
  7552. "security-coverage": {
  7553. "status": "not-covered",
  7554. "message": "Beta releases are not covered by Drupal security advisories."
  7555. }
  7556. },
  7557. "drush": {
  7558. "services": {
  7559. "drush.services.yml": "^10 || ^11 || ^12 || ^13"
  7560. }
  7561. }
  7562. },
  7563. "notification-url": "https://packages.drupal.org/8/downloads",
  7564. "license": [
  7565. "GPL-2.0+"
  7566. ],
  7567. "authors": [
  7568. {
  7569. "name": "arnested",
  7570. "homepage": "https://www.drupal.org/user/245635"
  7571. },
  7572. {
  7573. "name": "berdir",
  7574. "homepage": "https://www.drupal.org/user/214652"
  7575. },
  7576. {
  7577. "name": "gielfeldt",
  7578. "homepage": "https://www.drupal.org/user/366993"
  7579. },
  7580. {
  7581. "name": "miro_dietiker",
  7582. "homepage": "https://www.drupal.org/user/227761"
  7583. },
  7584. {
  7585. "name": "primsi",
  7586. "homepage": "https://www.drupal.org/user/282629"
  7587. }
  7588. ],
  7589. "description": "Ultimate cron",
  7590. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7591. "support": {
  7592. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7593. }
  7594. },
  7595. {
  7596. "name": "drupal/upgrade_status",
  7597. "version": "4.3.8",
  7598. "source": {
  7599. "type": "git",
  7600. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  7601. "reference": "4.3.8"
  7602. },
  7603. "dist": {
  7604. "type": "zip",
  7605. "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.8.zip",
  7606. "reference": "4.3.8",
  7607. "shasum": "4526741f6d0991f2165d4d79c8830602f5ac8bca"
  7608. },
  7609. "require": {
  7610. "dekor/php-array-table": "^2.0",
  7611. "drupal/core": "^9 || ^10 || ^11",
  7612. "mglaman/phpstan-drupal": "^1.2.11|^2.0",
  7613. "nikic/php-parser": "^4.0.0|^5.0.0",
  7614. "phpstan/phpstan-deprecation-rules": "^1.0.0|^2.0",
  7615. "symfony/process": "^3.4|^4.0|^5.0|^6.0|^7.0",
  7616. "webflo/drupal-finder": "^1.2"
  7617. },
  7618. "require-dev": {
  7619. "drush/drush": "^11|^12|^13"
  7620. },
  7621. "type": "drupal-module",
  7622. "extra": {
  7623. "drupal": {
  7624. "version": "4.3.8",
  7625. "datestamp": "1751485112",
  7626. "security-coverage": {
  7627. "status": "covered",
  7628. "message": "Covered by Drupal's security advisory policy"
  7629. }
  7630. },
  7631. "drush": {
  7632. "services": {
  7633. "drush.services.yml": "^9 || ^10"
  7634. }
  7635. }
  7636. },
  7637. "notification-url": "https://packages.drupal.org/8/downloads",
  7638. "license": [
  7639. "GPL-2.0-or-later"
  7640. ],
  7641. "authors": [
  7642. {
  7643. "name": "gábor hojtsy",
  7644. "homepage": "https://www.drupal.org/user/4166"
  7645. }
  7646. ],
  7647. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  7648. "homepage": "http://drupal.org/project/upgrade_status",
  7649. "support": {
  7650. "source": "https://git.drupalcode.org/project/upgrade_status"
  7651. }
  7652. },
  7653. {
  7654. "name": "drupal/video_embed_dailymotion",
  7655. "version": "2.0.0",
  7656. "source": {
  7657. "type": "git",
  7658. "url": "https://git.drupalcode.org/project/video_embed_dailymotion.git",
  7659. "reference": "2.0.0"
  7660. },
  7661. "dist": {
  7662. "type": "zip",
  7663. "url": "https://ftp.drupal.org/files/projects/video_embed_dailymotion-2.0.0.zip",
  7664. "reference": "2.0.0",
  7665. "shasum": "60832daca1cbe857bab778e547cb1aa359d2bd1d"
  7666. },
  7667. "require": {
  7668. "drupal/core": "^9 || ^10",
  7669. "drupal/video_embed_field": "*"
  7670. },
  7671. "type": "drupal-module",
  7672. "extra": {
  7673. "drupal": {
  7674. "version": "2.0.0",
  7675. "datestamp": "1699434830",
  7676. "security-coverage": {
  7677. "status": "covered",
  7678. "message": "Covered by Drupal's security advisory policy"
  7679. }
  7680. }
  7681. },
  7682. "notification-url": "https://packages.drupal.org/8/downloads",
  7683. "license": [
  7684. "GPL-2.0-or-later"
  7685. ],
  7686. "authors": [
  7687. {
  7688. "name": "flocondetoile",
  7689. "homepage": "https://www.drupal.org/user/2006064"
  7690. },
  7691. {
  7692. "name": "mohs3n71",
  7693. "homepage": "https://www.drupal.org/user/2295854"
  7694. },
  7695. {
  7696. "name": "Sam152",
  7697. "homepage": "https://www.drupal.org/user/1485048"
  7698. }
  7699. ],
  7700. "description": "A video_embed_field integration with Dailymotion.",
  7701. "homepage": "https://www.drupal.org/project/video_embed_dailymotion",
  7702. "support": {
  7703. "source": "https://git.drupalcode.org/project/video_embed_dailymotion"
  7704. }
  7705. },
  7706. {
  7707. "name": "drupal/video_embed_field",
  7708. "version": "2.5.0",
  7709. "source": {
  7710. "type": "git",
  7711. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7712. "reference": "8.x-2.5"
  7713. },
  7714. "dist": {
  7715. "type": "zip",
  7716. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  7717. "reference": "8.x-2.5",
  7718. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  7719. },
  7720. "require": {
  7721. "drupal/core": "^9.2 || ^10"
  7722. },
  7723. "require-dev": {
  7724. "drupal/ckeditor": "^1",
  7725. "drupal/colorbox": "^2",
  7726. "drupal/video_embed_media": "*"
  7727. },
  7728. "type": "drupal-module",
  7729. "extra": {
  7730. "drupal": {
  7731. "version": "8.x-2.5",
  7732. "datestamp": "1671413311",
  7733. "security-coverage": {
  7734. "status": "covered",
  7735. "message": "Covered by Drupal's security advisory policy"
  7736. }
  7737. }
  7738. },
  7739. "notification-url": "https://packages.drupal.org/8/downloads",
  7740. "license": [
  7741. "GPL-2.0-or-later"
  7742. ],
  7743. "authors": [
  7744. {
  7745. "name": "abhinesh",
  7746. "homepage": "https://www.drupal.org/user/3645979"
  7747. },
  7748. {
  7749. "name": "jec006",
  7750. "homepage": "https://www.drupal.org/user/855980"
  7751. },
  7752. {
  7753. "name": "mably",
  7754. "homepage": "https://www.drupal.org/user/3375160"
  7755. },
  7756. {
  7757. "name": "plopesc",
  7758. "homepage": "https://www.drupal.org/user/282415"
  7759. },
  7760. {
  7761. "name": "sam152",
  7762. "homepage": "https://www.drupal.org/user/1485048"
  7763. }
  7764. ],
  7765. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7766. "homepage": "https://www.drupal.org/project/video_embed_field",
  7767. "support": {
  7768. "source": "https://git.drupalcode.org/project/video_embed_field"
  7769. }
  7770. },
  7771. {
  7772. "name": "drupal/views_bulk_edit",
  7773. "version": "2.9.0",
  7774. "source": {
  7775. "type": "git",
  7776. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  7777. "reference": "8.x-2.9"
  7778. },
  7779. "dist": {
  7780. "type": "zip",
  7781. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.9.zip",
  7782. "reference": "8.x-2.9",
  7783. "shasum": "db45a8cc9ac629859374b24974eafcef257e4387"
  7784. },
  7785. "require": {
  7786. "drupal/core": "^9.4 || ^10"
  7787. },
  7788. "require-dev": {
  7789. "drupal/views_bulk_operations": "~4.2.4"
  7790. },
  7791. "suggest": {
  7792. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  7793. },
  7794. "type": "drupal-module",
  7795. "extra": {
  7796. "drupal": {
  7797. "version": "8.x-2.9",
  7798. "datestamp": "1690222256",
  7799. "security-coverage": {
  7800. "status": "covered",
  7801. "message": "Covered by Drupal's security advisory policy"
  7802. }
  7803. }
  7804. },
  7805. "notification-url": "https://packages.drupal.org/8/downloads",
  7806. "license": [
  7807. "GPL-2.0+"
  7808. ],
  7809. "authors": [
  7810. {
  7811. "name": "Marcin Grabias",
  7812. "homepage": "https://www.drupal.org/u/graber"
  7813. },
  7814. {
  7815. "name": "benjy",
  7816. "homepage": "https://www.drupal.org/user/1852732"
  7817. },
  7818. {
  7819. "name": "graber",
  7820. "homepage": "https://www.drupal.org/user/1599440"
  7821. },
  7822. {
  7823. "name": "grevil",
  7824. "homepage": "https://www.drupal.org/user/3668491"
  7825. },
  7826. {
  7827. "name": "joseph.olstad",
  7828. "homepage": "https://www.drupal.org/user/1321830"
  7829. }
  7830. ],
  7831. "description": "Allows bulk edition of entity field values.",
  7832. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  7833. "support": {
  7834. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  7835. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  7836. }
  7837. },
  7838. {
  7839. "name": "drupal/views_bulk_operations",
  7840. "version": "4.3.4",
  7841. "source": {
  7842. "type": "git",
  7843. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  7844. "reference": "4.3.4"
  7845. },
  7846. "dist": {
  7847. "type": "zip",
  7848. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.3.4.zip",
  7849. "reference": "4.3.4",
  7850. "shasum": "c0974356f26d49ad9e99450e9db9650de94c6010"
  7851. },
  7852. "require": {
  7853. "drupal/core": "^10.3 || ^11"
  7854. },
  7855. "conflict": {
  7856. "drush/drush": "<12.5.1"
  7857. },
  7858. "require-dev": {
  7859. "drush/drush": "^12 || ^13"
  7860. },
  7861. "suggest": {
  7862. "drush/drush": "^12 || ^13"
  7863. },
  7864. "type": "drupal-module",
  7865. "extra": {
  7866. "drupal": {
  7867. "version": "4.3.4",
  7868. "datestamp": "1741604495",
  7869. "security-coverage": {
  7870. "status": "covered",
  7871. "message": "Covered by Drupal's security advisory policy"
  7872. }
  7873. }
  7874. },
  7875. "notification-url": "https://packages.drupal.org/8/downloads",
  7876. "license": [
  7877. "GPL-2.0-or-later"
  7878. ],
  7879. "authors": [
  7880. {
  7881. "name": "Marcin Grabias",
  7882. "homepage": "https://www.drupal.org/u/graber"
  7883. },
  7884. {
  7885. "name": "graber",
  7886. "homepage": "https://www.drupal.org/user/1599440"
  7887. },
  7888. {
  7889. "name": "joelpittet",
  7890. "homepage": "https://www.drupal.org/user/160302"
  7891. }
  7892. ],
  7893. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7894. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7895. "support": {
  7896. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  7897. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=any_4.",
  7898. "docs": "https://www.drupal.org/docs/contributed-modules/views-bulk-operations-vbo"
  7899. }
  7900. },
  7901. {
  7902. "name": "drupal/views_conditional",
  7903. "version": "1.10.0",
  7904. "source": {
  7905. "type": "git",
  7906. "url": "https://git.drupalcode.org/project/views_conditional.git",
  7907. "reference": "8.x-1.10"
  7908. },
  7909. "dist": {
  7910. "type": "zip",
  7911. "url": "https://ftp.drupal.org/files/projects/views_conditional-8.x-1.10.zip",
  7912. "reference": "8.x-1.10",
  7913. "shasum": "54997357c05b7f08b87411018eed3aafd3e65547"
  7914. },
  7915. "require": {
  7916. "drupal/core": "^9 || ^10 || ^11"
  7917. },
  7918. "type": "drupal-module",
  7919. "extra": {
  7920. "drupal": {
  7921. "version": "8.x-1.10",
  7922. "datestamp": "1727901408",
  7923. "security-coverage": {
  7924. "status": "covered",
  7925. "message": "Covered by Drupal's security advisory policy"
  7926. }
  7927. }
  7928. },
  7929. "notification-url": "https://packages.drupal.org/8/downloads",
  7930. "license": [
  7931. "GPL-2.0-or-later"
  7932. ],
  7933. "authors": [
  7934. {
  7935. "name": "anand.toshniwal93",
  7936. "homepage": "https://www.drupal.org/user/3345088"
  7937. },
  7938. {
  7939. "name": "joelpittet",
  7940. "homepage": "https://www.drupal.org/user/160302"
  7941. },
  7942. {
  7943. "name": "MChittenden",
  7944. "homepage": "https://www.drupal.org/user/2288348"
  7945. },
  7946. {
  7947. "name": "shelane",
  7948. "homepage": "https://www.drupal.org/user/2674989"
  7949. }
  7950. ],
  7951. "description": "Allows conditional views output.",
  7952. "homepage": "https://www.drupal.org/project/views_conditional",
  7953. "support": {
  7954. "source": "https://git.drupalcode.org/project/views_conditional"
  7955. }
  7956. },
  7957. {
  7958. "name": "drupal/views_ef_fieldset",
  7959. "version": "1.10.0",
  7960. "source": {
  7961. "type": "git",
  7962. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  7963. "reference": "8.x-1.10"
  7964. },
  7965. "dist": {
  7966. "type": "zip",
  7967. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.10.zip",
  7968. "reference": "8.x-1.10",
  7969. "shasum": "a34ad1ece1ee3fcd0f37c5d2dc212dd0bcfad07a"
  7970. },
  7971. "require": {
  7972. "drupal/core": "^10 || ^11"
  7973. },
  7974. "type": "drupal-module",
  7975. "extra": {
  7976. "drupal": {
  7977. "version": "8.x-1.10",
  7978. "datestamp": "1731071552",
  7979. "security-coverage": {
  7980. "status": "covered",
  7981. "message": "Covered by Drupal's security advisory policy"
  7982. }
  7983. }
  7984. },
  7985. "notification-url": "https://packages.drupal.org/8/downloads",
  7986. "license": [
  7987. "GPL-2.0-or-later"
  7988. ],
  7989. "authors": [
  7990. {
  7991. "name": "ciss",
  7992. "homepage": "https://www.drupal.org/user/1632364"
  7993. },
  7994. {
  7995. "name": "eli-t",
  7996. "homepage": "https://www.drupal.org/user/516878"
  7997. },
  7998. {
  7999. "name": "pol",
  8000. "homepage": "https://www.drupal.org/user/47194"
  8001. }
  8002. ],
  8003. "description": "Provide an option to render the \"exposed form widgets\" in a fieldset.",
  8004. "homepage": "https://www.drupal.org/project/views_ef_fieldset",
  8005. "support": {
  8006. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  8007. }
  8008. },
  8009. {
  8010. "name": "drupal/webform",
  8011. "version": "6.2.9",
  8012. "source": {
  8013. "type": "git",
  8014. "url": "https://git.drupalcode.org/project/webform.git",
  8015. "reference": "6.2.9"
  8016. },
  8017. "dist": {
  8018. "type": "zip",
  8019. "url": "https://ftp.drupal.org/files/projects/webform-6.2.9.zip",
  8020. "reference": "6.2.9",
  8021. "shasum": "650752c3cc6d0144c6f378b8d25d45c083e23600"
  8022. },
  8023. "require": {
  8024. "drupal/core": "^10.2",
  8025. "php": ">=8.1"
  8026. },
  8027. "require-dev": {
  8028. "drupal/address": "1.x-dev",
  8029. "drupal/bootstrap": "3.x-dev",
  8030. "drupal/captcha": "^1 || ^2",
  8031. "drupal/chosen": "3.0.x-dev",
  8032. "drupal/ckeditor": "1.0.x-dev",
  8033. "drupal/clientside_validation": "^3 || ^4",
  8034. "drupal/clientside_validation_jquery": "*",
  8035. "drupal/devel": "5.x-dev",
  8036. "drupal/entity": "1.x-dev",
  8037. "drupal/entity_print": "2.x-dev",
  8038. "drupal/group": "1.x-dev",
  8039. "drupal/hal": "1 - 2",
  8040. "drupal/jquery_ui": "1.x-dev",
  8041. "drupal/jquery_ui_button": "2.x-dev",
  8042. "drupal/jquery_ui_checkboxradio": "2.x-dev",
  8043. "drupal/jquery_ui_datepicker": "2.x-dev",
  8044. "drupal/mailsystem": "4.x-dev",
  8045. "drupal/metatag": "1.x-dev",
  8046. "drupal/paragraphs": "1.x-dev",
  8047. "drupal/select2": "1.x-dev",
  8048. "drupal/smtp": "1.x-dev",
  8049. "drupal/styleguide": "^1 || ^2",
  8050. "drupal/telephone_validation": "2.x-dev",
  8051. "drupal/token": "1.x-dev",
  8052. "drupal/variationcache": "1.x-dev",
  8053. "drupal/webform_access": "*",
  8054. "drupal/webform_attachment": "*",
  8055. "drupal/webform_clientside_validation": "*",
  8056. "drupal/webform_devel": "*",
  8057. "drupal/webform_entity_print": "*",
  8058. "drupal/webform_node": "*",
  8059. "drupal/webform_options_limit": "*",
  8060. "drupal/webform_scheduled_email": "*",
  8061. "drupal/webform_share": "*",
  8062. "drupal/webform_ui": "*"
  8063. },
  8064. "suggest": {
  8065. "drupal/jquery_ui_buttons": "Provides jQuery UI Checkboxradio library. Required by the Webform jQueryUI Buttons module. The Webform jQueryUI Buttons module is deprecated because jQueryUI is no longer maintained.",
  8066. "drupal/jquery_ui_datepicker": "Provides jQuery UI Datepicker library. Required to support datepickers. The Webform jQueryUI Datepicker module is deprecated because jQueryUI is no longer maintained."
  8067. },
  8068. "type": "drupal-module",
  8069. "extra": {
  8070. "drupal": {
  8071. "version": "6.2.9",
  8072. "datestamp": "1733851063",
  8073. "security-coverage": {
  8074. "status": "covered",
  8075. "message": "Covered by Drupal's security advisory policy"
  8076. }
  8077. },
  8078. "drush": {
  8079. "services": {
  8080. "drush.services.yml": ">=9"
  8081. }
  8082. }
  8083. },
  8084. "notification-url": "https://packages.drupal.org/8/downloads",
  8085. "license": [
  8086. "GPL-2.0-or-later"
  8087. ],
  8088. "authors": [
  8089. {
  8090. "name": "Jacob Rockowitz (jrockowitz)",
  8091. "homepage": "https://www.drupal.org/u/jrockowitz",
  8092. "role": "Maintainer"
  8093. },
  8094. {
  8095. "name": "Contributors",
  8096. "homepage": "https://www.drupal.org/node/7404/committers",
  8097. "role": "Contributor"
  8098. },
  8099. {
  8100. "name": "liam morland",
  8101. "homepage": "https://www.drupal.org/user/493050"
  8102. },
  8103. {
  8104. "name": "mandclu",
  8105. "homepage": "https://www.drupal.org/user/52136"
  8106. },
  8107. {
  8108. "name": "quicksketch",
  8109. "homepage": "https://www.drupal.org/user/35821"
  8110. }
  8111. ],
  8112. "description": "Enables the creation of webforms and questionnaires.",
  8113. "homepage": "https://drupal.org/project/webform",
  8114. "support": {
  8115. "source": "https://git.drupalcode.org/project/webform",
  8116. "issues": "https://www.drupal.org/project/issues/webform?version=8.x",
  8117. "docs": "https://www.drupal.org/docs/8/modules/webform",
  8118. "forum": "https://drupal.stackexchange.com/questions/tagged/webform"
  8119. }
  8120. },
  8121. {
  8122. "name": "drush/drush",
  8123. "version": "12.5.3",
  8124. "source": {
  8125. "type": "git",
  8126. "url": "https://github.com/drush-ops/drush.git",
  8127. "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6"
  8128. },
  8129. "dist": {
  8130. "type": "zip",
  8131. "url": "https://api.github.com/repos/drush-ops/drush/zipball/7fe0a492d5126c457c5fb184c4668a132b0aaac6",
  8132. "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6",
  8133. "shasum": ""
  8134. },
  8135. "require": {
  8136. "chi-teck/drupal-code-generator": "^3.0",
  8137. "composer-runtime-api": "^2.2",
  8138. "composer/semver": "^1.4 || ^3",
  8139. "consolidation/annotated-command": "^4.9.2",
  8140. "consolidation/config": "^2.1.2",
  8141. "consolidation/filter-via-dot-access-data": "^2.0.2",
  8142. "consolidation/output-formatters": "^4.3.2",
  8143. "consolidation/robo": "^4.0.6",
  8144. "consolidation/site-alias": "^4",
  8145. "consolidation/site-process": "^5.2.0",
  8146. "ext-dom": "*",
  8147. "grasmash/yaml-cli": "^3.1",
  8148. "guzzlehttp/guzzle": "^7.0",
  8149. "league/container": "^4",
  8150. "php": ">=8.1",
  8151. "psy/psysh": "~0.11",
  8152. "symfony/event-dispatcher": "^6",
  8153. "symfony/filesystem": "^6.1",
  8154. "symfony/finder": "^6",
  8155. "symfony/var-dumper": "^6.0",
  8156. "symfony/yaml": "^6.0",
  8157. "webflo/drupal-finder": "^1.2"
  8158. },
  8159. "conflict": {
  8160. "drupal/core": "< 10.0",
  8161. "drupal/migrate_run": "*",
  8162. "drupal/migrate_tools": "<= 5"
  8163. },
  8164. "require-dev": {
  8165. "composer/installers": "^2",
  8166. "cweagans/composer-patches": "~1.0",
  8167. "drupal/core-recommended": "^10",
  8168. "drupal/semver_example": "2.3.0",
  8169. "phpunit/phpunit": "^9",
  8170. "rector/rector": "^0.12",
  8171. "squizlabs/php_codesniffer": "^3.7"
  8172. },
  8173. "bin": [
  8174. "drush"
  8175. ],
  8176. "type": "library",
  8177. "extra": {
  8178. "installer-paths": {
  8179. "sut/core": [
  8180. "type:drupal-core"
  8181. ],
  8182. "sut/libraries/{$name}": [
  8183. "type:drupal-library"
  8184. ],
  8185. "sut/themes/unish/{$name}": [
  8186. "drupal/empty_theme"
  8187. ],
  8188. "sut/drush/contrib/{$name}": [
  8189. "type:drupal-drush"
  8190. ],
  8191. "sut/modules/unish/{$name}": [
  8192. "drupal/devel"
  8193. ],
  8194. "sut/themes/contrib/{$name}": [
  8195. "type:drupal-theme"
  8196. ],
  8197. "sut/modules/contrib/{$name}": [
  8198. "type:drupal-module"
  8199. ],
  8200. "sut/profiles/contrib/{$name}": [
  8201. "type:drupal-profile"
  8202. ]
  8203. }
  8204. },
  8205. "autoload": {
  8206. "psr-4": {
  8207. "Drush\\": "src/"
  8208. }
  8209. },
  8210. "notification-url": "https://packagist.org/downloads/",
  8211. "license": [
  8212. "GPL-2.0-or-later"
  8213. ],
  8214. "authors": [
  8215. {
  8216. "name": "Moshe Weitzman",
  8217. "email": "weitzman@tejasa.com"
  8218. },
  8219. {
  8220. "name": "Owen Barton",
  8221. "email": "drupal@owenbarton.com"
  8222. },
  8223. {
  8224. "name": "Greg Anderson",
  8225. "email": "greg.1.anderson@greenknowe.org"
  8226. },
  8227. {
  8228. "name": "Jonathan Araña Cruz",
  8229. "email": "jonhattan@faita.net"
  8230. },
  8231. {
  8232. "name": "Jonathan Hedstrom",
  8233. "email": "jhedstrom@gmail.com"
  8234. },
  8235. {
  8236. "name": "Christopher Gervais",
  8237. "email": "chris@ergonlogic.com"
  8238. },
  8239. {
  8240. "name": "Dave Reid",
  8241. "email": "dave@davereid.net"
  8242. },
  8243. {
  8244. "name": "Damian Lee",
  8245. "email": "damiankloip@googlemail.com"
  8246. }
  8247. ],
  8248. "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.",
  8249. "homepage": "http://www.drush.org",
  8250. "support": {
  8251. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  8252. "issues": "https://github.com/drush-ops/drush/issues",
  8253. "security": "https://github.com/drush-ops/drush/security/advisories",
  8254. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  8255. "source": "https://github.com/drush-ops/drush/tree/12.5.3"
  8256. },
  8257. "funding": [
  8258. {
  8259. "url": "https://github.com/weitzman",
  8260. "type": "github"
  8261. }
  8262. ],
  8263. "time": "2024-08-02T11:57:29+00:00"
  8264. },
  8265. {
  8266. "name": "egulias/email-validator",
  8267. "version": "4.0.4",
  8268. "source": {
  8269. "type": "git",
  8270. "url": "https://github.com/egulias/EmailValidator.git",
  8271. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  8272. },
  8273. "dist": {
  8274. "type": "zip",
  8275. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  8276. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  8277. "shasum": ""
  8278. },
  8279. "require": {
  8280. "doctrine/lexer": "^2.0 || ^3.0",
  8281. "php": ">=8.1",
  8282. "symfony/polyfill-intl-idn": "^1.26"
  8283. },
  8284. "require-dev": {
  8285. "phpunit/phpunit": "^10.2",
  8286. "vimeo/psalm": "^5.12"
  8287. },
  8288. "suggest": {
  8289. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  8290. },
  8291. "type": "library",
  8292. "extra": {
  8293. "branch-alias": {
  8294. "dev-master": "4.0.x-dev"
  8295. }
  8296. },
  8297. "autoload": {
  8298. "psr-4": {
  8299. "Egulias\\EmailValidator\\": "src"
  8300. }
  8301. },
  8302. "notification-url": "https://packagist.org/downloads/",
  8303. "license": [
  8304. "MIT"
  8305. ],
  8306. "authors": [
  8307. {
  8308. "name": "Eduardo Gulias Davis"
  8309. }
  8310. ],
  8311. "description": "A library for validating emails against several RFCs",
  8312. "homepage": "https://github.com/egulias/EmailValidator",
  8313. "keywords": [
  8314. "email",
  8315. "emailvalidation",
  8316. "emailvalidator",
  8317. "validation",
  8318. "validator"
  8319. ],
  8320. "support": {
  8321. "issues": "https://github.com/egulias/EmailValidator/issues",
  8322. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  8323. },
  8324. "funding": [
  8325. {
  8326. "url": "https://github.com/egulias",
  8327. "type": "github"
  8328. }
  8329. ],
  8330. "time": "2025-03-06T22:45:56+00:00"
  8331. },
  8332. {
  8333. "name": "geocoder-php/common-http",
  8334. "version": "4.7.0",
  8335. "source": {
  8336. "type": "git",
  8337. "url": "https://github.com/geocoder-php/php-common-http.git",
  8338. "reference": "4209be6c31946ed5a658f6240ab21faaf5413f61"
  8339. },
  8340. "dist": {
  8341. "type": "zip",
  8342. "url": "https://api.github.com/repos/geocoder-php/php-common-http/zipball/4209be6c31946ed5a658f6240ab21faaf5413f61",
  8343. "reference": "4209be6c31946ed5a658f6240ab21faaf5413f61",
  8344. "shasum": ""
  8345. },
  8346. "require": {
  8347. "php": "^8.0",
  8348. "php-http/discovery": "^1.17",
  8349. "psr/http-client-implementation": "^1.0",
  8350. "psr/http-factory-implementation": "^1.0",
  8351. "willdurand/geocoder": "^4.0|^5.0"
  8352. },
  8353. "require-dev": {
  8354. "nyholm/psr7": "^1.0",
  8355. "php-http/message": "^1.0",
  8356. "php-http/mock-client": "^1.0",
  8357. "phpunit/phpunit": "^9.5",
  8358. "symfony/stopwatch": "~2.5 || ~5.0"
  8359. },
  8360. "type": "library",
  8361. "extra": {
  8362. "branch-alias": {
  8363. "dev-master": "4.0-dev"
  8364. }
  8365. },
  8366. "autoload": {
  8367. "psr-4": {
  8368. "Geocoder\\Http\\": ""
  8369. },
  8370. "exclude-from-classmap": [
  8371. "/Tests/"
  8372. ]
  8373. },
  8374. "notification-url": "https://packagist.org/downloads/",
  8375. "license": [
  8376. "MIT"
  8377. ],
  8378. "authors": [
  8379. {
  8380. "name": "Tobias Nyholm",
  8381. "email": "tobias.nyholm@gmail.com"
  8382. }
  8383. ],
  8384. "description": "Common files for HTTP based Geocoders",
  8385. "homepage": "http://geocoder-php.org",
  8386. "keywords": [
  8387. "http geocoder"
  8388. ],
  8389. "support": {
  8390. "source": "https://github.com/geocoder-php/php-common-http/tree/4.7.0"
  8391. },
  8392. "time": "2025-04-15T12:38:11+00:00"
  8393. },
  8394. {
  8395. "name": "geocoder-php/mapquest-provider",
  8396. "version": "4.4.0",
  8397. "source": {
  8398. "type": "git",
  8399. "url": "https://github.com/geocoder-php/mapquest-provider.git",
  8400. "reference": "7d563294dfe1f68d847b08e9c17a13138e2a31ed"
  8401. },
  8402. "dist": {
  8403. "type": "zip",
  8404. "url": "https://api.github.com/repos/geocoder-php/mapquest-provider/zipball/7d563294dfe1f68d847b08e9c17a13138e2a31ed",
  8405. "reference": "7d563294dfe1f68d847b08e9c17a13138e2a31ed",
  8406. "shasum": ""
  8407. },
  8408. "require": {
  8409. "geocoder-php/common-http": "^4.6",
  8410. "php": "^8.0",
  8411. "willdurand/geocoder": "^4.0|^5.0"
  8412. },
  8413. "provide": {
  8414. "geocoder-php/provider-implementation": "1.0"
  8415. },
  8416. "require-dev": {
  8417. "geocoder-php/provider-integration-tests": "^1.6.3",
  8418. "php-http/message": "^1.0",
  8419. "phpunit/phpunit": "^9.5"
  8420. },
  8421. "type": "library",
  8422. "extra": {
  8423. "branch-alias": {
  8424. "dev-master": "4.0-dev"
  8425. }
  8426. },
  8427. "autoload": {
  8428. "psr-4": {
  8429. "Geocoder\\Provider\\MapQuest\\": ""
  8430. },
  8431. "exclude-from-classmap": [
  8432. "/Tests/"
  8433. ]
  8434. },
  8435. "notification-url": "https://packagist.org/downloads/",
  8436. "license": [
  8437. "MIT"
  8438. ],
  8439. "authors": [
  8440. {
  8441. "name": "William Durand",
  8442. "email": "william.durand1@gmail.com"
  8443. }
  8444. ],
  8445. "description": "Geocoder MapQuest adapter",
  8446. "homepage": "http://geocoder-php.org/Geocoder/",
  8447. "support": {
  8448. "source": "https://github.com/geocoder-php/mapquest-provider/tree/4.4.0"
  8449. },
  8450. "time": "2025-04-15T13:24:32+00:00"
  8451. },
  8452. {
  8453. "name": "grasmash/expander",
  8454. "version": "3.0.1",
  8455. "source": {
  8456. "type": "git",
  8457. "url": "https://github.com/grasmash/expander.git",
  8458. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4"
  8459. },
  8460. "dist": {
  8461. "type": "zip",
  8462. "url": "https://api.github.com/repos/grasmash/expander/zipball/eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  8463. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  8464. "shasum": ""
  8465. },
  8466. "require": {
  8467. "dflydev/dot-access-data": "^3.0.0",
  8468. "php": ">=8.0",
  8469. "psr/log": "^2 | ^3"
  8470. },
  8471. "require-dev": {
  8472. "greg-1-anderson/composer-test-scenarios": "^1",
  8473. "php-coveralls/php-coveralls": "^2.5",
  8474. "phpunit/phpunit": "^9",
  8475. "squizlabs/php_codesniffer": "^3.3"
  8476. },
  8477. "type": "library",
  8478. "extra": {
  8479. "branch-alias": {
  8480. "dev-master": "1.x-dev"
  8481. }
  8482. },
  8483. "autoload": {
  8484. "psr-4": {
  8485. "Grasmash\\Expander\\": "src/"
  8486. }
  8487. },
  8488. "notification-url": "https://packagist.org/downloads/",
  8489. "license": [
  8490. "MIT"
  8491. ],
  8492. "authors": [
  8493. {
  8494. "name": "Matthew Grasmick"
  8495. }
  8496. ],
  8497. "description": "Expands internal property references in PHP arrays file.",
  8498. "support": {
  8499. "issues": "https://github.com/grasmash/expander/issues",
  8500. "source": "https://github.com/grasmash/expander/tree/3.0.1"
  8501. },
  8502. "time": "2024-11-25T23:28:05+00:00"
  8503. },
  8504. {
  8505. "name": "grasmash/yaml-cli",
  8506. "version": "3.2.1",
  8507. "source": {
  8508. "type": "git",
  8509. "url": "https://github.com/grasmash/yaml-cli.git",
  8510. "reference": "09a8860566958a1576cc54bbe910a03477e54971"
  8511. },
  8512. "dist": {
  8513. "type": "zip",
  8514. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971",
  8515. "reference": "09a8860566958a1576cc54bbe910a03477e54971",
  8516. "shasum": ""
  8517. },
  8518. "require": {
  8519. "dflydev/dot-access-data": "^3",
  8520. "php": ">=8.0",
  8521. "symfony/console": "^6 || ^7",
  8522. "symfony/filesystem": "^6 || ^7",
  8523. "symfony/yaml": "^6 || ^7"
  8524. },
  8525. "require-dev": {
  8526. "php-coveralls/php-coveralls": "^2",
  8527. "phpunit/phpunit": "^9",
  8528. "squizlabs/php_codesniffer": "^3.0"
  8529. },
  8530. "bin": [
  8531. "bin/yaml-cli"
  8532. ],
  8533. "type": "library",
  8534. "extra": {
  8535. "branch-alias": {
  8536. "dev-master": "3.x-dev"
  8537. }
  8538. },
  8539. "autoload": {
  8540. "psr-4": {
  8541. "Grasmash\\YamlCli\\": "src/"
  8542. }
  8543. },
  8544. "notification-url": "https://packagist.org/downloads/",
  8545. "license": [
  8546. "MIT"
  8547. ],
  8548. "authors": [
  8549. {
  8550. "name": "Matthew Grasmick"
  8551. }
  8552. ],
  8553. "description": "A command line tool for reading and manipulating yaml files.",
  8554. "support": {
  8555. "issues": "https://github.com/grasmash/yaml-cli/issues",
  8556. "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1"
  8557. },
  8558. "time": "2024-04-23T02:10:57+00:00"
  8559. },
  8560. {
  8561. "name": "guzzlehttp/guzzle",
  8562. "version": "7.9.3",
  8563. "source": {
  8564. "type": "git",
  8565. "url": "https://github.com/guzzle/guzzle.git",
  8566. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77"
  8567. },
  8568. "dist": {
  8569. "type": "zip",
  8570. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  8571. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  8572. "shasum": ""
  8573. },
  8574. "require": {
  8575. "ext-json": "*",
  8576. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  8577. "guzzlehttp/psr7": "^2.7.0",
  8578. "php": "^7.2.5 || ^8.0",
  8579. "psr/http-client": "^1.0",
  8580. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8581. },
  8582. "provide": {
  8583. "psr/http-client-implementation": "1.0"
  8584. },
  8585. "require-dev": {
  8586. "bamarni/composer-bin-plugin": "^1.8.2",
  8587. "ext-curl": "*",
  8588. "guzzle/client-integration-tests": "3.0.2",
  8589. "php-http/message-factory": "^1.1",
  8590. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  8591. "psr/log": "^1.1 || ^2.0 || ^3.0"
  8592. },
  8593. "suggest": {
  8594. "ext-curl": "Required for CURL handler support",
  8595. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  8596. "psr/log": "Required for using the Log middleware"
  8597. },
  8598. "type": "library",
  8599. "extra": {
  8600. "bamarni-bin": {
  8601. "bin-links": true,
  8602. "forward-command": false
  8603. }
  8604. },
  8605. "autoload": {
  8606. "files": [
  8607. "src/functions_include.php"
  8608. ],
  8609. "psr-4": {
  8610. "GuzzleHttp\\": "src/"
  8611. }
  8612. },
  8613. "notification-url": "https://packagist.org/downloads/",
  8614. "license": [
  8615. "MIT"
  8616. ],
  8617. "authors": [
  8618. {
  8619. "name": "Graham Campbell",
  8620. "email": "hello@gjcampbell.co.uk",
  8621. "homepage": "https://github.com/GrahamCampbell"
  8622. },
  8623. {
  8624. "name": "Michael Dowling",
  8625. "email": "mtdowling@gmail.com",
  8626. "homepage": "https://github.com/mtdowling"
  8627. },
  8628. {
  8629. "name": "Jeremy Lindblom",
  8630. "email": "jeremeamia@gmail.com",
  8631. "homepage": "https://github.com/jeremeamia"
  8632. },
  8633. {
  8634. "name": "George Mponos",
  8635. "email": "gmponos@gmail.com",
  8636. "homepage": "https://github.com/gmponos"
  8637. },
  8638. {
  8639. "name": "Tobias Nyholm",
  8640. "email": "tobias.nyholm@gmail.com",
  8641. "homepage": "https://github.com/Nyholm"
  8642. },
  8643. {
  8644. "name": "Márk Sági-Kazár",
  8645. "email": "mark.sagikazar@gmail.com",
  8646. "homepage": "https://github.com/sagikazarmark"
  8647. },
  8648. {
  8649. "name": "Tobias Schultze",
  8650. "email": "webmaster@tubo-world.de",
  8651. "homepage": "https://github.com/Tobion"
  8652. }
  8653. ],
  8654. "description": "Guzzle is a PHP HTTP client library",
  8655. "keywords": [
  8656. "client",
  8657. "curl",
  8658. "framework",
  8659. "http",
  8660. "http client",
  8661. "psr-18",
  8662. "psr-7",
  8663. "rest",
  8664. "web service"
  8665. ],
  8666. "support": {
  8667. "issues": "https://github.com/guzzle/guzzle/issues",
  8668. "source": "https://github.com/guzzle/guzzle/tree/7.9.3"
  8669. },
  8670. "funding": [
  8671. {
  8672. "url": "https://github.com/GrahamCampbell",
  8673. "type": "github"
  8674. },
  8675. {
  8676. "url": "https://github.com/Nyholm",
  8677. "type": "github"
  8678. },
  8679. {
  8680. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  8681. "type": "tidelift"
  8682. }
  8683. ],
  8684. "time": "2025-03-27T13:37:11+00:00"
  8685. },
  8686. {
  8687. "name": "guzzlehttp/promises",
  8688. "version": "2.2.0",
  8689. "source": {
  8690. "type": "git",
  8691. "url": "https://github.com/guzzle/promises.git",
  8692. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
  8693. },
  8694. "dist": {
  8695. "type": "zip",
  8696. "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c",
  8697. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
  8698. "shasum": ""
  8699. },
  8700. "require": {
  8701. "php": "^7.2.5 || ^8.0"
  8702. },
  8703. "require-dev": {
  8704. "bamarni/composer-bin-plugin": "^1.8.2",
  8705. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  8706. },
  8707. "type": "library",
  8708. "extra": {
  8709. "bamarni-bin": {
  8710. "bin-links": true,
  8711. "forward-command": false
  8712. }
  8713. },
  8714. "autoload": {
  8715. "psr-4": {
  8716. "GuzzleHttp\\Promise\\": "src/"
  8717. }
  8718. },
  8719. "notification-url": "https://packagist.org/downloads/",
  8720. "license": [
  8721. "MIT"
  8722. ],
  8723. "authors": [
  8724. {
  8725. "name": "Graham Campbell",
  8726. "email": "hello@gjcampbell.co.uk",
  8727. "homepage": "https://github.com/GrahamCampbell"
  8728. },
  8729. {
  8730. "name": "Michael Dowling",
  8731. "email": "mtdowling@gmail.com",
  8732. "homepage": "https://github.com/mtdowling"
  8733. },
  8734. {
  8735. "name": "Tobias Nyholm",
  8736. "email": "tobias.nyholm@gmail.com",
  8737. "homepage": "https://github.com/Nyholm"
  8738. },
  8739. {
  8740. "name": "Tobias Schultze",
  8741. "email": "webmaster@tubo-world.de",
  8742. "homepage": "https://github.com/Tobion"
  8743. }
  8744. ],
  8745. "description": "Guzzle promises library",
  8746. "keywords": [
  8747. "promise"
  8748. ],
  8749. "support": {
  8750. "issues": "https://github.com/guzzle/promises/issues",
  8751. "source": "https://github.com/guzzle/promises/tree/2.2.0"
  8752. },
  8753. "funding": [
  8754. {
  8755. "url": "https://github.com/GrahamCampbell",
  8756. "type": "github"
  8757. },
  8758. {
  8759. "url": "https://github.com/Nyholm",
  8760. "type": "github"
  8761. },
  8762. {
  8763. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  8764. "type": "tidelift"
  8765. }
  8766. ],
  8767. "time": "2025-03-27T13:27:01+00:00"
  8768. },
  8769. {
  8770. "name": "guzzlehttp/psr7",
  8771. "version": "2.7.1",
  8772. "source": {
  8773. "type": "git",
  8774. "url": "https://github.com/guzzle/psr7.git",
  8775. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
  8776. },
  8777. "dist": {
  8778. "type": "zip",
  8779. "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  8780. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  8781. "shasum": ""
  8782. },
  8783. "require": {
  8784. "php": "^7.2.5 || ^8.0",
  8785. "psr/http-factory": "^1.0",
  8786. "psr/http-message": "^1.1 || ^2.0",
  8787. "ralouphie/getallheaders": "^3.0"
  8788. },
  8789. "provide": {
  8790. "psr/http-factory-implementation": "1.0",
  8791. "psr/http-message-implementation": "1.0"
  8792. },
  8793. "require-dev": {
  8794. "bamarni/composer-bin-plugin": "^1.8.2",
  8795. "http-interop/http-factory-tests": "0.9.0",
  8796. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  8797. },
  8798. "suggest": {
  8799. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8800. },
  8801. "type": "library",
  8802. "extra": {
  8803. "bamarni-bin": {
  8804. "bin-links": true,
  8805. "forward-command": false
  8806. }
  8807. },
  8808. "autoload": {
  8809. "psr-4": {
  8810. "GuzzleHttp\\Psr7\\": "src/"
  8811. }
  8812. },
  8813. "notification-url": "https://packagist.org/downloads/",
  8814. "license": [
  8815. "MIT"
  8816. ],
  8817. "authors": [
  8818. {
  8819. "name": "Graham Campbell",
  8820. "email": "hello@gjcampbell.co.uk",
  8821. "homepage": "https://github.com/GrahamCampbell"
  8822. },
  8823. {
  8824. "name": "Michael Dowling",
  8825. "email": "mtdowling@gmail.com",
  8826. "homepage": "https://github.com/mtdowling"
  8827. },
  8828. {
  8829. "name": "George Mponos",
  8830. "email": "gmponos@gmail.com",
  8831. "homepage": "https://github.com/gmponos"
  8832. },
  8833. {
  8834. "name": "Tobias Nyholm",
  8835. "email": "tobias.nyholm@gmail.com",
  8836. "homepage": "https://github.com/Nyholm"
  8837. },
  8838. {
  8839. "name": "Márk Sági-Kazár",
  8840. "email": "mark.sagikazar@gmail.com",
  8841. "homepage": "https://github.com/sagikazarmark"
  8842. },
  8843. {
  8844. "name": "Tobias Schultze",
  8845. "email": "webmaster@tubo-world.de",
  8846. "homepage": "https://github.com/Tobion"
  8847. },
  8848. {
  8849. "name": "Márk Sági-Kazár",
  8850. "email": "mark.sagikazar@gmail.com",
  8851. "homepage": "https://sagikazarmark.hu"
  8852. }
  8853. ],
  8854. "description": "PSR-7 message implementation that also provides common utility methods",
  8855. "keywords": [
  8856. "http",
  8857. "message",
  8858. "psr-7",
  8859. "request",
  8860. "response",
  8861. "stream",
  8862. "uri",
  8863. "url"
  8864. ],
  8865. "support": {
  8866. "issues": "https://github.com/guzzle/psr7/issues",
  8867. "source": "https://github.com/guzzle/psr7/tree/2.7.1"
  8868. },
  8869. "funding": [
  8870. {
  8871. "url": "https://github.com/GrahamCampbell",
  8872. "type": "github"
  8873. },
  8874. {
  8875. "url": "https://github.com/Nyholm",
  8876. "type": "github"
  8877. },
  8878. {
  8879. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  8880. "type": "tidelift"
  8881. }
  8882. ],
  8883. "time": "2025-03-27T12:30:47+00:00"
  8884. },
  8885. {
  8886. "name": "itamair/geophp",
  8887. "version": "1.7",
  8888. "source": {
  8889. "type": "git",
  8890. "url": "https://github.com/itamair/geoPHP.git",
  8891. "reference": "c8cf587256cdd1a72a732f59138ee3bfa3372956"
  8892. },
  8893. "dist": {
  8894. "type": "zip",
  8895. "url": "https://api.github.com/repos/itamair/geoPHP/zipball/c8cf587256cdd1a72a732f59138ee3bfa3372956",
  8896. "reference": "c8cf587256cdd1a72a732f59138ee3bfa3372956",
  8897. "shasum": ""
  8898. },
  8899. "require-dev": {
  8900. "phpunit/phpunit": "4.1.* || 9.5.*"
  8901. },
  8902. "type": "library",
  8903. "autoload": {
  8904. "classmap": [
  8905. "geoPHP.inc"
  8906. ]
  8907. },
  8908. "notification-url": "https://packagist.org/downloads/",
  8909. "license": [
  8910. "GPL-2.0+"
  8911. ],
  8912. "authors": [
  8913. {
  8914. "name": "Italo Mairo",
  8915. "homepage": "https://www.linkedin.com/in/italomairo/",
  8916. "role": "Maintanier of this Library Repo"
  8917. },
  8918. {
  8919. "name": "Patrick Hayes",
  8920. "homepage": "https://www.linkedin.com/in/patrickdhayes/",
  8921. "role": "Maintanier of original Repositary/Library (https://github.com/phayes/geoPHP)"
  8922. }
  8923. ],
  8924. "description": "GeoPHP is a open-source native PHP library for doing geometry operations. It is written entirely in PHP and can therefore run on shared hosts. It can read and write a wide variety of formats: WKT (including EWKT), WKB (including EWKB), GeoJSON, KML, GPX, GeoRSS). It works with all Simple-Feature geometries (Point, LineString, Polygon, GeometryCollection etc.) and can be used to get centroids, bounding-boxes, area, and a wide variety of other useful information.",
  8925. "homepage": "https://github.com/itamair/geoPHP",
  8926. "support": {
  8927. "source": "https://github.com/itamair/geoPHP/tree/1.7"
  8928. },
  8929. "time": "2025-05-31T05:12:53+00:00"
  8930. },
  8931. {
  8932. "name": "kint-php/kint",
  8933. "version": "3.3",
  8934. "source": {
  8935. "type": "git",
  8936. "url": "https://github.com/kint-php/kint.git",
  8937. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  8938. },
  8939. "dist": {
  8940. "type": "zip",
  8941. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8942. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8943. "shasum": ""
  8944. },
  8945. "require": {
  8946. "php": ">=5.3.6"
  8947. },
  8948. "require-dev": {
  8949. "friendsofphp/php-cs-fixer": "^2.0",
  8950. "phpunit/phpunit": "^4.0",
  8951. "seld/phar-utils": "^1.0",
  8952. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  8953. "vimeo/psalm": "^3.0"
  8954. },
  8955. "suggest": {
  8956. "ext-ctype": "Simple data type tests",
  8957. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  8958. "ext-mbstring": "Provides string encoding detection",
  8959. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  8960. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  8961. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  8962. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  8963. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  8964. },
  8965. "type": "library",
  8966. "autoload": {
  8967. "files": [
  8968. "init.php"
  8969. ],
  8970. "psr-4": {
  8971. "Kint\\": "src/"
  8972. }
  8973. },
  8974. "notification-url": "https://packagist.org/downloads/",
  8975. "license": [
  8976. "MIT"
  8977. ],
  8978. "authors": [
  8979. {
  8980. "name": "Jonathan Vollebregt",
  8981. "homepage": "https://github.com/jnvsor"
  8982. },
  8983. {
  8984. "name": "Rokas Šleinius",
  8985. "homepage": "https://github.com/raveren"
  8986. },
  8987. {
  8988. "name": "Contributors",
  8989. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  8990. }
  8991. ],
  8992. "description": "Kint - debugging tool for PHP developers",
  8993. "homepage": "https://kint-php.github.io/kint/",
  8994. "keywords": [
  8995. "debug",
  8996. "kint",
  8997. "php"
  8998. ],
  8999. "support": {
  9000. "issues": "https://github.com/kint-php/kint/issues",
  9001. "source": "https://github.com/kint-php/kint/tree/master"
  9002. },
  9003. "time": "2019-10-17T18:05:24+00:00"
  9004. },
  9005. {
  9006. "name": "league/container",
  9007. "version": "4.2.5",
  9008. "source": {
  9009. "type": "git",
  9010. "url": "https://github.com/thephpleague/container.git",
  9011. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00"
  9012. },
  9013. "dist": {
  9014. "type": "zip",
  9015. "url": "https://api.github.com/repos/thephpleague/container/zipball/d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  9016. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  9017. "shasum": ""
  9018. },
  9019. "require": {
  9020. "php": "^7.2 || ^8.0",
  9021. "psr/container": "^1.1 || ^2.0"
  9022. },
  9023. "provide": {
  9024. "psr/container-implementation": "^1.0"
  9025. },
  9026. "replace": {
  9027. "orno/di": "~2.0"
  9028. },
  9029. "require-dev": {
  9030. "nette/php-generator": "^3.4",
  9031. "nikic/php-parser": "^4.10",
  9032. "phpstan/phpstan": "^0.12.47",
  9033. "phpunit/phpunit": "^8.5.17",
  9034. "roave/security-advisories": "dev-latest",
  9035. "scrutinizer/ocular": "^1.8",
  9036. "squizlabs/php_codesniffer": "^3.6"
  9037. },
  9038. "type": "library",
  9039. "extra": {
  9040. "branch-alias": {
  9041. "dev-1.x": "1.x-dev",
  9042. "dev-2.x": "2.x-dev",
  9043. "dev-3.x": "3.x-dev",
  9044. "dev-4.x": "4.x-dev",
  9045. "dev-master": "4.x-dev"
  9046. }
  9047. },
  9048. "autoload": {
  9049. "psr-4": {
  9050. "League\\Container\\": "src"
  9051. }
  9052. },
  9053. "notification-url": "https://packagist.org/downloads/",
  9054. "license": [
  9055. "MIT"
  9056. ],
  9057. "authors": [
  9058. {
  9059. "name": "Phil Bennett",
  9060. "email": "mail@philbennett.co.uk",
  9061. "role": "Developer"
  9062. }
  9063. ],
  9064. "description": "A fast and intuitive dependency injection container.",
  9065. "homepage": "https://github.com/thephpleague/container",
  9066. "keywords": [
  9067. "container",
  9068. "dependency",
  9069. "di",
  9070. "injection",
  9071. "league",
  9072. "provider",
  9073. "service"
  9074. ],
  9075. "support": {
  9076. "issues": "https://github.com/thephpleague/container/issues",
  9077. "source": "https://github.com/thephpleague/container/tree/4.2.5"
  9078. },
  9079. "funding": [
  9080. {
  9081. "url": "https://github.com/philipobenito",
  9082. "type": "github"
  9083. }
  9084. ],
  9085. "time": "2025-05-20T12:55:37+00:00"
  9086. },
  9087. {
  9088. "name": "masterminds/html5",
  9089. "version": "2.9.0",
  9090. "source": {
  9091. "type": "git",
  9092. "url": "https://github.com/Masterminds/html5-php.git",
  9093. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  9094. },
  9095. "dist": {
  9096. "type": "zip",
  9097. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  9098. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  9099. "shasum": ""
  9100. },
  9101. "require": {
  9102. "ext-dom": "*",
  9103. "php": ">=5.3.0"
  9104. },
  9105. "require-dev": {
  9106. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  9107. },
  9108. "type": "library",
  9109. "extra": {
  9110. "branch-alias": {
  9111. "dev-master": "2.7-dev"
  9112. }
  9113. },
  9114. "autoload": {
  9115. "psr-4": {
  9116. "Masterminds\\": "src"
  9117. }
  9118. },
  9119. "notification-url": "https://packagist.org/downloads/",
  9120. "license": [
  9121. "MIT"
  9122. ],
  9123. "authors": [
  9124. {
  9125. "name": "Matt Butcher",
  9126. "email": "technosophos@gmail.com"
  9127. },
  9128. {
  9129. "name": "Matt Farina",
  9130. "email": "matt@mattfarina.com"
  9131. },
  9132. {
  9133. "name": "Asmir Mustafic",
  9134. "email": "goetas@gmail.com"
  9135. }
  9136. ],
  9137. "description": "An HTML5 parser and serializer.",
  9138. "homepage": "http://masterminds.github.io/html5-php",
  9139. "keywords": [
  9140. "HTML5",
  9141. "dom",
  9142. "html",
  9143. "parser",
  9144. "querypath",
  9145. "serializer",
  9146. "xml"
  9147. ],
  9148. "support": {
  9149. "issues": "https://github.com/Masterminds/html5-php/issues",
  9150. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  9151. },
  9152. "time": "2024-03-31T07:05:07+00:00"
  9153. },
  9154. {
  9155. "name": "mck89/peast",
  9156. "version": "v1.17.2",
  9157. "source": {
  9158. "type": "git",
  9159. "url": "https://github.com/mck89/peast.git",
  9160. "reference": "465810689c477fbba17f4f949b75e4d0bdab13ea"
  9161. },
  9162. "dist": {
  9163. "type": "zip",
  9164. "url": "https://api.github.com/repos/mck89/peast/zipball/465810689c477fbba17f4f949b75e4d0bdab13ea",
  9165. "reference": "465810689c477fbba17f4f949b75e4d0bdab13ea",
  9166. "shasum": ""
  9167. },
  9168. "require": {
  9169. "ext-mbstring": "*",
  9170. "php": ">=5.4.0"
  9171. },
  9172. "require-dev": {
  9173. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  9174. },
  9175. "type": "library",
  9176. "extra": {
  9177. "branch-alias": {
  9178. "dev-master": "1.17.2-dev"
  9179. }
  9180. },
  9181. "autoload": {
  9182. "psr-4": {
  9183. "Peast\\": "lib/Peast/"
  9184. }
  9185. },
  9186. "notification-url": "https://packagist.org/downloads/",
  9187. "license": [
  9188. "BSD-3-Clause"
  9189. ],
  9190. "authors": [
  9191. {
  9192. "name": "Marco Marchiò",
  9193. "email": "marco.mm89@gmail.com"
  9194. }
  9195. ],
  9196. "description": "Peast is PHP library that generates AST for JavaScript code",
  9197. "support": {
  9198. "issues": "https://github.com/mck89/peast/issues",
  9199. "source": "https://github.com/mck89/peast/tree/v1.17.2"
  9200. },
  9201. "time": "2025-07-01T09:30:45+00:00"
  9202. },
  9203. {
  9204. "name": "mglaman/phpstan-drupal",
  9205. "version": "2.0.7",
  9206. "source": {
  9207. "type": "git",
  9208. "url": "https://github.com/mglaman/phpstan-drupal.git",
  9209. "reference": "42cca54ee8bccec83a674ac45d1d17586777187e"
  9210. },
  9211. "dist": {
  9212. "type": "zip",
  9213. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/42cca54ee8bccec83a674ac45d1d17586777187e",
  9214. "reference": "42cca54ee8bccec83a674ac45d1d17586777187e",
  9215. "shasum": ""
  9216. },
  9217. "require": {
  9218. "php": "^8.1",
  9219. "phpstan/phpstan": "^2.1",
  9220. "phpstan/phpstan-deprecation-rules": "^2.0",
  9221. "symfony/finder": "^6.2 || ^7.0",
  9222. "symfony/yaml": "^6.2 || ^7.0",
  9223. "webflo/drupal-finder": "^1.3.1"
  9224. },
  9225. "require-dev": {
  9226. "behat/mink": "^1.10",
  9227. "composer/installers": "^1.9",
  9228. "drupal/core-recommended": "^10",
  9229. "drush/drush": "^11 || ^12 || ^13",
  9230. "phpstan/extension-installer": "^1.4.3",
  9231. "phpstan/phpstan-strict-rules": "^2.0",
  9232. "phpunit/phpunit": "^9 || ^10 || ^11",
  9233. "slevomat/coding-standard": "^8.6",
  9234. "squizlabs/php_codesniffer": "^3.7",
  9235. "symfony/phpunit-bridge": "^6.2 || ^7.0"
  9236. },
  9237. "suggest": {
  9238. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  9239. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  9240. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  9241. },
  9242. "type": "phpstan-extension",
  9243. "extra": {
  9244. "phpstan": {
  9245. "includes": [
  9246. "extension.neon",
  9247. "rules.neon"
  9248. ]
  9249. },
  9250. "installer-paths": {
  9251. "tests/fixtures/drupal/core": [
  9252. "type:drupal-core"
  9253. ],
  9254. "tests/fixtures/drupal/libraries/{$name}": [
  9255. "type:drupal-library"
  9256. ],
  9257. "tests/fixtures/drupal/themes/contrib/{$name}": [
  9258. "type:drupal-theme"
  9259. ],
  9260. "tests/fixtures/drupal/modules/contrib/{$name}": [
  9261. "type:drupal-module"
  9262. ],
  9263. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  9264. "type:drupal-profile"
  9265. ]
  9266. }
  9267. },
  9268. "autoload": {
  9269. "psr-4": {
  9270. "mglaman\\PHPStanDrupal\\": "src/"
  9271. }
  9272. },
  9273. "notification-url": "https://packagist.org/downloads/",
  9274. "license": [
  9275. "MIT"
  9276. ],
  9277. "authors": [
  9278. {
  9279. "name": "Matt Glaman",
  9280. "email": "nmd.matt@gmail.com"
  9281. }
  9282. ],
  9283. "description": "Drupal extension and rules for PHPStan",
  9284. "support": {
  9285. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  9286. "source": "https://github.com/mglaman/phpstan-drupal/tree/2.0.7"
  9287. },
  9288. "funding": [
  9289. {
  9290. "url": "https://github.com/mglaman",
  9291. "type": "github"
  9292. },
  9293. {
  9294. "url": "https://opencollective.com/phpstan-drupal",
  9295. "type": "open_collective"
  9296. },
  9297. {
  9298. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  9299. "type": "tidelift"
  9300. }
  9301. ],
  9302. "time": "2025-05-22T18:06:14+00:00"
  9303. },
  9304. {
  9305. "name": "nikic/php-parser",
  9306. "version": "v5.5.0",
  9307. "source": {
  9308. "type": "git",
  9309. "url": "https://github.com/nikic/PHP-Parser.git",
  9310. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9"
  9311. },
  9312. "dist": {
  9313. "type": "zip",
  9314. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/ae59794362fe85e051a58ad36b289443f57be7a9",
  9315. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9",
  9316. "shasum": ""
  9317. },
  9318. "require": {
  9319. "ext-ctype": "*",
  9320. "ext-json": "*",
  9321. "ext-tokenizer": "*",
  9322. "php": ">=7.4"
  9323. },
  9324. "require-dev": {
  9325. "ircmaxell/php-yacc": "^0.0.7",
  9326. "phpunit/phpunit": "^9.0"
  9327. },
  9328. "bin": [
  9329. "bin/php-parse"
  9330. ],
  9331. "type": "library",
  9332. "extra": {
  9333. "branch-alias": {
  9334. "dev-master": "5.0-dev"
  9335. }
  9336. },
  9337. "autoload": {
  9338. "psr-4": {
  9339. "PhpParser\\": "lib/PhpParser"
  9340. }
  9341. },
  9342. "notification-url": "https://packagist.org/downloads/",
  9343. "license": [
  9344. "BSD-3-Clause"
  9345. ],
  9346. "authors": [
  9347. {
  9348. "name": "Nikita Popov"
  9349. }
  9350. ],
  9351. "description": "A PHP parser written in PHP",
  9352. "keywords": [
  9353. "parser",
  9354. "php"
  9355. ],
  9356. "support": {
  9357. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9358. "source": "https://github.com/nikic/PHP-Parser/tree/v5.5.0"
  9359. },
  9360. "time": "2025-05-31T08:24:38+00:00"
  9361. },
  9362. {
  9363. "name": "pear/archive_tar",
  9364. "version": "1.5.0",
  9365. "source": {
  9366. "type": "git",
  9367. "url": "https://github.com/pear/Archive_Tar.git",
  9368. "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602"
  9369. },
  9370. "dist": {
  9371. "type": "zip",
  9372. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/b439c859564f5cbb0f64ad6002d0afe84a889602",
  9373. "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602",
  9374. "shasum": ""
  9375. },
  9376. "require": {
  9377. "pear/pear-core-minimal": "^1.10.0alpha2",
  9378. "php": ">=5.2.0"
  9379. },
  9380. "require-dev": {
  9381. "phpunit/phpunit": "*"
  9382. },
  9383. "suggest": {
  9384. "ext-bz2": "Bz2 compression support.",
  9385. "ext-xz": "Lzma2 compression support.",
  9386. "ext-zlib": "Gzip compression support."
  9387. },
  9388. "type": "library",
  9389. "extra": {
  9390. "branch-alias": {
  9391. "dev-master": "1.4.x-dev"
  9392. }
  9393. },
  9394. "autoload": {
  9395. "psr-0": {
  9396. "Archive_Tar": ""
  9397. }
  9398. },
  9399. "notification-url": "https://packagist.org/downloads/",
  9400. "include-path": [
  9401. "./"
  9402. ],
  9403. "license": [
  9404. "BSD-2-Clause"
  9405. ],
  9406. "authors": [
  9407. {
  9408. "name": "Vincent Blavet",
  9409. "email": "vincent@phpconcept.net"
  9410. },
  9411. {
  9412. "name": "Greg Beaver",
  9413. "email": "greg@chiaraquartet.net"
  9414. },
  9415. {
  9416. "name": "Michiel Rook",
  9417. "email": "mrook@php.net"
  9418. }
  9419. ],
  9420. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  9421. "homepage": "https://github.com/pear/Archive_Tar",
  9422. "keywords": [
  9423. "archive",
  9424. "tar"
  9425. ],
  9426. "support": {
  9427. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  9428. "source": "https://github.com/pear/Archive_Tar"
  9429. },
  9430. "time": "2024-03-16T16:21:40+00:00"
  9431. },
  9432. {
  9433. "name": "pear/console_getopt",
  9434. "version": "v1.4.3",
  9435. "source": {
  9436. "type": "git",
  9437. "url": "https://github.com/pear/Console_Getopt.git",
  9438. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  9439. },
  9440. "dist": {
  9441. "type": "zip",
  9442. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9443. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9444. "shasum": ""
  9445. },
  9446. "type": "library",
  9447. "autoload": {
  9448. "psr-0": {
  9449. "Console": "./"
  9450. }
  9451. },
  9452. "notification-url": "https://packagist.org/downloads/",
  9453. "include-path": [
  9454. "./"
  9455. ],
  9456. "license": [
  9457. "BSD-2-Clause"
  9458. ],
  9459. "authors": [
  9460. {
  9461. "name": "Andrei Zmievski",
  9462. "email": "andrei@php.net",
  9463. "role": "Lead"
  9464. },
  9465. {
  9466. "name": "Stig Bakken",
  9467. "email": "stig@php.net",
  9468. "role": "Developer"
  9469. },
  9470. {
  9471. "name": "Greg Beaver",
  9472. "email": "cellog@php.net",
  9473. "role": "Helper"
  9474. }
  9475. ],
  9476. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  9477. "support": {
  9478. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  9479. "source": "https://github.com/pear/Console_Getopt"
  9480. },
  9481. "time": "2019-11-20T18:27:48+00:00"
  9482. },
  9483. {
  9484. "name": "pear/pear-core-minimal",
  9485. "version": "v1.10.16",
  9486. "source": {
  9487. "type": "git",
  9488. "url": "https://github.com/pear/pear-core-minimal.git",
  9489. "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033"
  9490. },
  9491. "dist": {
  9492. "type": "zip",
  9493. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c0f51b45f50683bf5bbf558036854ebc9b54d033",
  9494. "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033",
  9495. "shasum": ""
  9496. },
  9497. "require": {
  9498. "pear/console_getopt": "~1.4",
  9499. "pear/pear_exception": "~1.0",
  9500. "php": ">=5.4"
  9501. },
  9502. "replace": {
  9503. "rsky/pear-core-min": "self.version"
  9504. },
  9505. "type": "library",
  9506. "autoload": {
  9507. "classmap": [
  9508. "src/"
  9509. ]
  9510. },
  9511. "notification-url": "https://packagist.org/downloads/",
  9512. "include-path": [
  9513. "src/"
  9514. ],
  9515. "license": [
  9516. "BSD-3-Clause"
  9517. ],
  9518. "authors": [
  9519. {
  9520. "name": "Christian Weiske",
  9521. "email": "cweiske@php.net",
  9522. "role": "Lead"
  9523. }
  9524. ],
  9525. "description": "Minimal set of PEAR core files to be used as composer dependency",
  9526. "support": {
  9527. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  9528. "source": "https://github.com/pear/pear-core-minimal"
  9529. },
  9530. "time": "2024-11-24T22:27:58+00:00"
  9531. },
  9532. {
  9533. "name": "pear/pear_exception",
  9534. "version": "v1.0.2",
  9535. "source": {
  9536. "type": "git",
  9537. "url": "https://github.com/pear/PEAR_Exception.git",
  9538. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  9539. },
  9540. "dist": {
  9541. "type": "zip",
  9542. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9543. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9544. "shasum": ""
  9545. },
  9546. "require": {
  9547. "php": ">=5.2.0"
  9548. },
  9549. "require-dev": {
  9550. "phpunit/phpunit": "<9"
  9551. },
  9552. "type": "class",
  9553. "extra": {
  9554. "branch-alias": {
  9555. "dev-master": "1.0.x-dev"
  9556. }
  9557. },
  9558. "autoload": {
  9559. "classmap": [
  9560. "PEAR/"
  9561. ]
  9562. },
  9563. "notification-url": "https://packagist.org/downloads/",
  9564. "include-path": [
  9565. "."
  9566. ],
  9567. "license": [
  9568. "BSD-2-Clause"
  9569. ],
  9570. "authors": [
  9571. {
  9572. "name": "Helgi Thormar",
  9573. "email": "dufuz@php.net"
  9574. },
  9575. {
  9576. "name": "Greg Beaver",
  9577. "email": "cellog@php.net"
  9578. }
  9579. ],
  9580. "description": "The PEAR Exception base class.",
  9581. "homepage": "https://github.com/pear/PEAR_Exception",
  9582. "keywords": [
  9583. "exception"
  9584. ],
  9585. "support": {
  9586. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  9587. "source": "https://github.com/pear/PEAR_Exception"
  9588. },
  9589. "time": "2021-03-21T15:43:46+00:00"
  9590. },
  9591. {
  9592. "name": "phootwork/collection",
  9593. "version": "v3.2.3",
  9594. "source": {
  9595. "type": "git",
  9596. "url": "https://github.com/phootwork/collection.git",
  9597. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  9598. },
  9599. "dist": {
  9600. "type": "zip",
  9601. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  9602. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  9603. "shasum": ""
  9604. },
  9605. "require": {
  9606. "phootwork/lang": "^3.0",
  9607. "php": ">=8.0"
  9608. },
  9609. "type": "library",
  9610. "autoload": {
  9611. "psr-4": {
  9612. "phootwork\\collection\\": ""
  9613. }
  9614. },
  9615. "notification-url": "https://packagist.org/downloads/",
  9616. "license": [
  9617. "MIT"
  9618. ],
  9619. "authors": [
  9620. {
  9621. "name": "Thomas Gossmann",
  9622. "homepage": "http://gos.si"
  9623. }
  9624. ],
  9625. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  9626. "homepage": "https://phootwork.github.io/collection/",
  9627. "keywords": [
  9628. "Array object",
  9629. "Text object",
  9630. "collection",
  9631. "collections",
  9632. "json",
  9633. "list",
  9634. "map",
  9635. "queue",
  9636. "set",
  9637. "stack",
  9638. "xml"
  9639. ],
  9640. "support": {
  9641. "issues": "https://github.com/phootwork/phootwork/issues",
  9642. "source": "https://github.com/phootwork/collection/tree/v3.2.3"
  9643. },
  9644. "time": "2022-08-27T12:51:24+00:00"
  9645. },
  9646. {
  9647. "name": "phootwork/lang",
  9648. "version": "v3.2.3",
  9649. "source": {
  9650. "type": "git",
  9651. "url": "https://github.com/phootwork/lang.git",
  9652. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e"
  9653. },
  9654. "dist": {
  9655. "type": "zip",
  9656. "url": "https://api.github.com/repos/phootwork/lang/zipball/52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  9657. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  9658. "shasum": ""
  9659. },
  9660. "require": {
  9661. "php": ">=8.0",
  9662. "symfony/polyfill-mbstring": "^1.12",
  9663. "symfony/polyfill-php81": "^1.22"
  9664. },
  9665. "type": "library",
  9666. "autoload": {
  9667. "psr-4": {
  9668. "phootwork\\lang\\": ""
  9669. }
  9670. },
  9671. "notification-url": "https://packagist.org/downloads/",
  9672. "license": [
  9673. "MIT"
  9674. ],
  9675. "authors": [
  9676. {
  9677. "name": "Thomas Gossmann",
  9678. "homepage": "http://gos.si"
  9679. }
  9680. ],
  9681. "description": "Missing PHP language constructs",
  9682. "homepage": "https://phootwork.github.io/lang/",
  9683. "keywords": [
  9684. "array",
  9685. "comparator",
  9686. "comparison",
  9687. "string"
  9688. ],
  9689. "support": {
  9690. "issues": "https://github.com/phootwork/phootwork/issues",
  9691. "source": "https://github.com/phootwork/lang/tree/v3.2.3"
  9692. },
  9693. "time": "2024-10-03T13:43:19+00:00"
  9694. },
  9695. {
  9696. "name": "php-http/discovery",
  9697. "version": "1.20.0",
  9698. "source": {
  9699. "type": "git",
  9700. "url": "https://github.com/php-http/discovery.git",
  9701. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d"
  9702. },
  9703. "dist": {
  9704. "type": "zip",
  9705. "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d",
  9706. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
  9707. "shasum": ""
  9708. },
  9709. "require": {
  9710. "composer-plugin-api": "^1.0|^2.0",
  9711. "php": "^7.1 || ^8.0"
  9712. },
  9713. "conflict": {
  9714. "nyholm/psr7": "<1.0",
  9715. "zendframework/zend-diactoros": "*"
  9716. },
  9717. "provide": {
  9718. "php-http/async-client-implementation": "*",
  9719. "php-http/client-implementation": "*",
  9720. "psr/http-client-implementation": "*",
  9721. "psr/http-factory-implementation": "*",
  9722. "psr/http-message-implementation": "*"
  9723. },
  9724. "require-dev": {
  9725. "composer/composer": "^1.0.2|^2.0",
  9726. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  9727. "php-http/httplug": "^1.0 || ^2.0",
  9728. "php-http/message-factory": "^1.0",
  9729. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  9730. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  9731. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  9732. },
  9733. "type": "composer-plugin",
  9734. "extra": {
  9735. "class": "Http\\Discovery\\Composer\\Plugin",
  9736. "plugin-optional": true
  9737. },
  9738. "autoload": {
  9739. "psr-4": {
  9740. "Http\\Discovery\\": "src/"
  9741. },
  9742. "exclude-from-classmap": [
  9743. "src/Composer/Plugin.php"
  9744. ]
  9745. },
  9746. "notification-url": "https://packagist.org/downloads/",
  9747. "license": [
  9748. "MIT"
  9749. ],
  9750. "authors": [
  9751. {
  9752. "name": "Márk Sági-Kazár",
  9753. "email": "mark.sagikazar@gmail.com"
  9754. }
  9755. ],
  9756. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  9757. "homepage": "http://php-http.org",
  9758. "keywords": [
  9759. "adapter",
  9760. "client",
  9761. "discovery",
  9762. "factory",
  9763. "http",
  9764. "message",
  9765. "psr17",
  9766. "psr7"
  9767. ],
  9768. "support": {
  9769. "issues": "https://github.com/php-http/discovery/issues",
  9770. "source": "https://github.com/php-http/discovery/tree/1.20.0"
  9771. },
  9772. "time": "2024-10-02T11:20:13+00:00"
  9773. },
  9774. {
  9775. "name": "php-http/guzzle7-adapter",
  9776. "version": "1.1.0",
  9777. "source": {
  9778. "type": "git",
  9779. "url": "https://github.com/php-http/guzzle7-adapter.git",
  9780. "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb"
  9781. },
  9782. "dist": {
  9783. "type": "zip",
  9784. "url": "https://api.github.com/repos/php-http/guzzle7-adapter/zipball/03a415fde709c2f25539790fecf4d9a31bc3d0eb",
  9785. "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb",
  9786. "shasum": ""
  9787. },
  9788. "require": {
  9789. "guzzlehttp/guzzle": "^7.0",
  9790. "php": "^7.3 | ^8.0",
  9791. "php-http/httplug": "^2.0",
  9792. "psr/http-client": "^1.0"
  9793. },
  9794. "provide": {
  9795. "php-http/async-client-implementation": "1.0",
  9796. "php-http/client-implementation": "1.0",
  9797. "psr/http-client-implementation": "1.0"
  9798. },
  9799. "require-dev": {
  9800. "php-http/client-integration-tests": "^3.0",
  9801. "php-http/message-factory": "^1.1",
  9802. "phpspec/prophecy-phpunit": "^2.0",
  9803. "phpunit/phpunit": "^8.0|^9.3"
  9804. },
  9805. "type": "library",
  9806. "autoload": {
  9807. "psr-4": {
  9808. "Http\\Adapter\\Guzzle7\\": "src/"
  9809. }
  9810. },
  9811. "notification-url": "https://packagist.org/downloads/",
  9812. "license": [
  9813. "MIT"
  9814. ],
  9815. "authors": [
  9816. {
  9817. "name": "Tobias Nyholm",
  9818. "email": "tobias.nyholm@gmail.com"
  9819. }
  9820. ],
  9821. "description": "Guzzle 7 HTTP Adapter",
  9822. "homepage": "http://httplug.io",
  9823. "keywords": [
  9824. "Guzzle",
  9825. "http"
  9826. ],
  9827. "support": {
  9828. "issues": "https://github.com/php-http/guzzle7-adapter/issues",
  9829. "source": "https://github.com/php-http/guzzle7-adapter/tree/1.1.0"
  9830. },
  9831. "time": "2024-11-26T11:14:36+00:00"
  9832. },
  9833. {
  9834. "name": "php-http/httplug",
  9835. "version": "2.4.1",
  9836. "source": {
  9837. "type": "git",
  9838. "url": "https://github.com/php-http/httplug.git",
  9839. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4"
  9840. },
  9841. "dist": {
  9842. "type": "zip",
  9843. "url": "https://api.github.com/repos/php-http/httplug/zipball/5cad731844891a4c282f3f3e1b582c46839d22f4",
  9844. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4",
  9845. "shasum": ""
  9846. },
  9847. "require": {
  9848. "php": "^7.1 || ^8.0",
  9849. "php-http/promise": "^1.1",
  9850. "psr/http-client": "^1.0",
  9851. "psr/http-message": "^1.0 || ^2.0"
  9852. },
  9853. "require-dev": {
  9854. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  9855. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  9856. },
  9857. "type": "library",
  9858. "autoload": {
  9859. "psr-4": {
  9860. "Http\\Client\\": "src/"
  9861. }
  9862. },
  9863. "notification-url": "https://packagist.org/downloads/",
  9864. "license": [
  9865. "MIT"
  9866. ],
  9867. "authors": [
  9868. {
  9869. "name": "Eric GELOEN",
  9870. "email": "geloen.eric@gmail.com"
  9871. },
  9872. {
  9873. "name": "Márk Sági-Kazár",
  9874. "email": "mark.sagikazar@gmail.com",
  9875. "homepage": "https://sagikazarmark.hu"
  9876. }
  9877. ],
  9878. "description": "HTTPlug, the HTTP client abstraction for PHP",
  9879. "homepage": "http://httplug.io",
  9880. "keywords": [
  9881. "client",
  9882. "http"
  9883. ],
  9884. "support": {
  9885. "issues": "https://github.com/php-http/httplug/issues",
  9886. "source": "https://github.com/php-http/httplug/tree/2.4.1"
  9887. },
  9888. "time": "2024-09-23T11:39:58+00:00"
  9889. },
  9890. {
  9891. "name": "php-http/message",
  9892. "version": "1.16.2",
  9893. "source": {
  9894. "type": "git",
  9895. "url": "https://github.com/php-http/message.git",
  9896. "reference": "06dd5e8562f84e641bf929bfe699ee0f5ce8080a"
  9897. },
  9898. "dist": {
  9899. "type": "zip",
  9900. "url": "https://api.github.com/repos/php-http/message/zipball/06dd5e8562f84e641bf929bfe699ee0f5ce8080a",
  9901. "reference": "06dd5e8562f84e641bf929bfe699ee0f5ce8080a",
  9902. "shasum": ""
  9903. },
  9904. "require": {
  9905. "clue/stream-filter": "^1.5",
  9906. "php": "^7.2 || ^8.0",
  9907. "psr/http-message": "^1.1 || ^2.0"
  9908. },
  9909. "provide": {
  9910. "php-http/message-factory-implementation": "1.0"
  9911. },
  9912. "require-dev": {
  9913. "ergebnis/composer-normalize": "^2.6",
  9914. "ext-zlib": "*",
  9915. "guzzlehttp/psr7": "^1.0 || ^2.0",
  9916. "laminas/laminas-diactoros": "^2.0 || ^3.0",
  9917. "php-http/message-factory": "^1.0.2",
  9918. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  9919. "slim/slim": "^3.0"
  9920. },
  9921. "suggest": {
  9922. "ext-zlib": "Used with compressor/decompressor streams",
  9923. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  9924. "laminas/laminas-diactoros": "Used with Diactoros Factories",
  9925. "slim/slim": "Used with Slim Framework PSR-7 implementation"
  9926. },
  9927. "type": "library",
  9928. "autoload": {
  9929. "files": [
  9930. "src/filters.php"
  9931. ],
  9932. "psr-4": {
  9933. "Http\\Message\\": "src/"
  9934. }
  9935. },
  9936. "notification-url": "https://packagist.org/downloads/",
  9937. "license": [
  9938. "MIT"
  9939. ],
  9940. "authors": [
  9941. {
  9942. "name": "Márk Sági-Kazár",
  9943. "email": "mark.sagikazar@gmail.com"
  9944. }
  9945. ],
  9946. "description": "HTTP Message related tools",
  9947. "homepage": "http://php-http.org",
  9948. "keywords": [
  9949. "http",
  9950. "message",
  9951. "psr-7"
  9952. ],
  9953. "support": {
  9954. "issues": "https://github.com/php-http/message/issues",
  9955. "source": "https://github.com/php-http/message/tree/1.16.2"
  9956. },
  9957. "time": "2024-10-02T11:34:13+00:00"
  9958. },
  9959. {
  9960. "name": "php-http/promise",
  9961. "version": "1.3.1",
  9962. "source": {
  9963. "type": "git",
  9964. "url": "https://github.com/php-http/promise.git",
  9965. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83"
  9966. },
  9967. "dist": {
  9968. "type": "zip",
  9969. "url": "https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  9970. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  9971. "shasum": ""
  9972. },
  9973. "require": {
  9974. "php": "^7.1 || ^8.0"
  9975. },
  9976. "require-dev": {
  9977. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
  9978. "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
  9979. },
  9980. "type": "library",
  9981. "autoload": {
  9982. "psr-4": {
  9983. "Http\\Promise\\": "src/"
  9984. }
  9985. },
  9986. "notification-url": "https://packagist.org/downloads/",
  9987. "license": [
  9988. "MIT"
  9989. ],
  9990. "authors": [
  9991. {
  9992. "name": "Joel Wurtz",
  9993. "email": "joel.wurtz@gmail.com"
  9994. },
  9995. {
  9996. "name": "Márk Sági-Kazár",
  9997. "email": "mark.sagikazar@gmail.com"
  9998. }
  9999. ],
  10000. "description": "Promise used for asynchronous HTTP requests",
  10001. "homepage": "http://httplug.io",
  10002. "keywords": [
  10003. "promise"
  10004. ],
  10005. "support": {
  10006. "issues": "https://github.com/php-http/promise/issues",
  10007. "source": "https://github.com/php-http/promise/tree/1.3.1"
  10008. },
  10009. "time": "2024-03-15T13:55:21+00:00"
  10010. },
  10011. {
  10012. "name": "phpmailer/phpmailer",
  10013. "version": "v6.10.0",
  10014. "source": {
  10015. "type": "git",
  10016. "url": "https://github.com/PHPMailer/PHPMailer.git",
  10017. "reference": "bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144"
  10018. },
  10019. "dist": {
  10020. "type": "zip",
  10021. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144",
  10022. "reference": "bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144",
  10023. "shasum": ""
  10024. },
  10025. "require": {
  10026. "ext-ctype": "*",
  10027. "ext-filter": "*",
  10028. "ext-hash": "*",
  10029. "php": ">=5.5.0"
  10030. },
  10031. "require-dev": {
  10032. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  10033. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  10034. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  10035. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  10036. "phpcompatibility/php-compatibility": "^9.3.5",
  10037. "roave/security-advisories": "dev-latest",
  10038. "squizlabs/php_codesniffer": "^3.7.2",
  10039. "yoast/phpunit-polyfills": "^1.0.4"
  10040. },
  10041. "suggest": {
  10042. "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication",
  10043. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  10044. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  10045. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  10046. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  10047. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  10048. "psr/log": "For optional PSR-3 debug logging",
  10049. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  10050. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  10051. },
  10052. "type": "library",
  10053. "autoload": {
  10054. "psr-4": {
  10055. "PHPMailer\\PHPMailer\\": "src/"
  10056. }
  10057. },
  10058. "notification-url": "https://packagist.org/downloads/",
  10059. "license": [
  10060. "LGPL-2.1-only"
  10061. ],
  10062. "authors": [
  10063. {
  10064. "name": "Marcus Bointon",
  10065. "email": "phpmailer@synchromedia.co.uk"
  10066. },
  10067. {
  10068. "name": "Jim Jagielski",
  10069. "email": "jimjag@gmail.com"
  10070. },
  10071. {
  10072. "name": "Andy Prevost",
  10073. "email": "codeworxtech@users.sourceforge.net"
  10074. },
  10075. {
  10076. "name": "Brent R. Matzelle"
  10077. }
  10078. ],
  10079. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  10080. "support": {
  10081. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  10082. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.10.0"
  10083. },
  10084. "funding": [
  10085. {
  10086. "url": "https://github.com/Synchro",
  10087. "type": "github"
  10088. }
  10089. ],
  10090. "time": "2025-04-24T15:19:31+00:00"
  10091. },
  10092. {
  10093. "name": "phpowermove/docblock",
  10094. "version": "v4.0",
  10095. "source": {
  10096. "type": "git",
  10097. "url": "https://github.com/phpowermove/docblock.git",
  10098. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  10099. },
  10100. "dist": {
  10101. "type": "zip",
  10102. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  10103. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  10104. "shasum": ""
  10105. },
  10106. "require": {
  10107. "phootwork/collection": "^3.0",
  10108. "phootwork/lang": "^3.0",
  10109. "php": ">=8.0"
  10110. },
  10111. "require-dev": {
  10112. "phootwork/php-cs-fixer-config": "^0.4",
  10113. "phpunit/phpunit": "^9.0",
  10114. "psalm/phar": "^4.3"
  10115. },
  10116. "type": "library",
  10117. "autoload": {
  10118. "psr-4": {
  10119. "phpowermove\\docblock\\": "src/"
  10120. }
  10121. },
  10122. "notification-url": "https://packagist.org/downloads/",
  10123. "license": [
  10124. "MIT"
  10125. ],
  10126. "authors": [
  10127. {
  10128. "name": "Thomas Gossmann",
  10129. "homepage": "http://gos.si"
  10130. }
  10131. ],
  10132. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  10133. "keywords": [
  10134. "docblock",
  10135. "generator",
  10136. "parser"
  10137. ],
  10138. "support": {
  10139. "issues": "https://github.com/phpowermove/docblock/issues",
  10140. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  10141. },
  10142. "time": "2021-09-22T16:57:06+00:00"
  10143. },
  10144. {
  10145. "name": "phpstan/phpstan",
  10146. "version": "2.1.19",
  10147. "source": {
  10148. "type": "git",
  10149. "url": "https://github.com/phpstan/phpstan.git",
  10150. "reference": "473a8c30e450d87099f76313edcbb90852f9afdf"
  10151. },
  10152. "dist": {
  10153. "type": "zip",
  10154. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/473a8c30e450d87099f76313edcbb90852f9afdf",
  10155. "reference": "473a8c30e450d87099f76313edcbb90852f9afdf",
  10156. "shasum": ""
  10157. },
  10158. "require": {
  10159. "php": "^7.4|^8.0"
  10160. },
  10161. "conflict": {
  10162. "phpstan/phpstan-shim": "*"
  10163. },
  10164. "bin": [
  10165. "phpstan",
  10166. "phpstan.phar"
  10167. ],
  10168. "type": "library",
  10169. "autoload": {
  10170. "files": [
  10171. "bootstrap.php"
  10172. ]
  10173. },
  10174. "notification-url": "https://packagist.org/downloads/",
  10175. "license": [
  10176. "MIT"
  10177. ],
  10178. "description": "PHPStan - PHP Static Analysis Tool",
  10179. "keywords": [
  10180. "dev",
  10181. "static analysis"
  10182. ],
  10183. "support": {
  10184. "docs": "https://phpstan.org/user-guide/getting-started",
  10185. "forum": "https://github.com/phpstan/phpstan/discussions",
  10186. "issues": "https://github.com/phpstan/phpstan/issues",
  10187. "security": "https://github.com/phpstan/phpstan/security/policy",
  10188. "source": "https://github.com/phpstan/phpstan-src"
  10189. },
  10190. "funding": [
  10191. {
  10192. "url": "https://github.com/ondrejmirtes",
  10193. "type": "github"
  10194. },
  10195. {
  10196. "url": "https://github.com/phpstan",
  10197. "type": "github"
  10198. }
  10199. ],
  10200. "time": "2025-07-21T19:58:24+00:00"
  10201. },
  10202. {
  10203. "name": "phpstan/phpstan-deprecation-rules",
  10204. "version": "2.0.3",
  10205. "source": {
  10206. "type": "git",
  10207. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  10208. "reference": "468e02c9176891cc901143da118f09dc9505fc2f"
  10209. },
  10210. "dist": {
  10211. "type": "zip",
  10212. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/468e02c9176891cc901143da118f09dc9505fc2f",
  10213. "reference": "468e02c9176891cc901143da118f09dc9505fc2f",
  10214. "shasum": ""
  10215. },
  10216. "require": {
  10217. "php": "^7.4 || ^8.0",
  10218. "phpstan/phpstan": "^2.1.15"
  10219. },
  10220. "require-dev": {
  10221. "php-parallel-lint/php-parallel-lint": "^1.2",
  10222. "phpstan/phpstan-phpunit": "^2.0",
  10223. "phpunit/phpunit": "^9.6"
  10224. },
  10225. "type": "phpstan-extension",
  10226. "extra": {
  10227. "phpstan": {
  10228. "includes": [
  10229. "rules.neon"
  10230. ]
  10231. }
  10232. },
  10233. "autoload": {
  10234. "psr-4": {
  10235. "PHPStan\\": "src/"
  10236. }
  10237. },
  10238. "notification-url": "https://packagist.org/downloads/",
  10239. "license": [
  10240. "MIT"
  10241. ],
  10242. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  10243. "support": {
  10244. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  10245. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/2.0.3"
  10246. },
  10247. "time": "2025-05-14T10:56:57+00:00"
  10248. },
  10249. {
  10250. "name": "politsin/jquery-ui-touch-punch",
  10251. "version": "1.0",
  10252. "source": {
  10253. "type": "git",
  10254. "url": "https://github.com/politsin/jquery-ui-touch-punch.git",
  10255. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd"
  10256. },
  10257. "dist": {
  10258. "type": "zip",
  10259. "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd",
  10260. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd",
  10261. "shasum": ""
  10262. },
  10263. "type": "drupal-library",
  10264. "notification-url": "https://packagist.org/downloads/",
  10265. "license": [
  10266. "MIT"
  10267. ],
  10268. "authors": [
  10269. {
  10270. "name": "Dave Furfero",
  10271. "email": "furf@furf.com"
  10272. }
  10273. ],
  10274. "description": "Extension to jQuery UI for mobile touch event support.",
  10275. "homepage": "http://touchpunch.furf.com/",
  10276. "keywords": [
  10277. "gestures",
  10278. "mobile",
  10279. "touch"
  10280. ],
  10281. "support": {
  10282. "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
  10283. "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
  10284. },
  10285. "time": "2020-12-15T10:26:18+00:00"
  10286. },
  10287. {
  10288. "name": "psr/cache",
  10289. "version": "3.0.0",
  10290. "source": {
  10291. "type": "git",
  10292. "url": "https://github.com/php-fig/cache.git",
  10293. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  10294. },
  10295. "dist": {
  10296. "type": "zip",
  10297. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  10298. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  10299. "shasum": ""
  10300. },
  10301. "require": {
  10302. "php": ">=8.0.0"
  10303. },
  10304. "type": "library",
  10305. "extra": {
  10306. "branch-alias": {
  10307. "dev-master": "1.0.x-dev"
  10308. }
  10309. },
  10310. "autoload": {
  10311. "psr-4": {
  10312. "Psr\\Cache\\": "src/"
  10313. }
  10314. },
  10315. "notification-url": "https://packagist.org/downloads/",
  10316. "license": [
  10317. "MIT"
  10318. ],
  10319. "authors": [
  10320. {
  10321. "name": "PHP-FIG",
  10322. "homepage": "https://www.php-fig.org/"
  10323. }
  10324. ],
  10325. "description": "Common interface for caching libraries",
  10326. "keywords": [
  10327. "cache",
  10328. "psr",
  10329. "psr-6"
  10330. ],
  10331. "support": {
  10332. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  10333. },
  10334. "time": "2021-02-03T23:26:27+00:00"
  10335. },
  10336. {
  10337. "name": "psr/container",
  10338. "version": "2.0.2",
  10339. "source": {
  10340. "type": "git",
  10341. "url": "https://github.com/php-fig/container.git",
  10342. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  10343. },
  10344. "dist": {
  10345. "type": "zip",
  10346. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  10347. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  10348. "shasum": ""
  10349. },
  10350. "require": {
  10351. "php": ">=7.4.0"
  10352. },
  10353. "type": "library",
  10354. "extra": {
  10355. "branch-alias": {
  10356. "dev-master": "2.0.x-dev"
  10357. }
  10358. },
  10359. "autoload": {
  10360. "psr-4": {
  10361. "Psr\\Container\\": "src/"
  10362. }
  10363. },
  10364. "notification-url": "https://packagist.org/downloads/",
  10365. "license": [
  10366. "MIT"
  10367. ],
  10368. "authors": [
  10369. {
  10370. "name": "PHP-FIG",
  10371. "homepage": "https://www.php-fig.org/"
  10372. }
  10373. ],
  10374. "description": "Common Container Interface (PHP FIG PSR-11)",
  10375. "homepage": "https://github.com/php-fig/container",
  10376. "keywords": [
  10377. "PSR-11",
  10378. "container",
  10379. "container-interface",
  10380. "container-interop",
  10381. "psr"
  10382. ],
  10383. "support": {
  10384. "issues": "https://github.com/php-fig/container/issues",
  10385. "source": "https://github.com/php-fig/container/tree/2.0.2"
  10386. },
  10387. "time": "2021-11-05T16:47:00+00:00"
  10388. },
  10389. {
  10390. "name": "psr/event-dispatcher",
  10391. "version": "1.0.0",
  10392. "source": {
  10393. "type": "git",
  10394. "url": "https://github.com/php-fig/event-dispatcher.git",
  10395. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  10396. },
  10397. "dist": {
  10398. "type": "zip",
  10399. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  10400. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  10401. "shasum": ""
  10402. },
  10403. "require": {
  10404. "php": ">=7.2.0"
  10405. },
  10406. "type": "library",
  10407. "extra": {
  10408. "branch-alias": {
  10409. "dev-master": "1.0.x-dev"
  10410. }
  10411. },
  10412. "autoload": {
  10413. "psr-4": {
  10414. "Psr\\EventDispatcher\\": "src/"
  10415. }
  10416. },
  10417. "notification-url": "https://packagist.org/downloads/",
  10418. "license": [
  10419. "MIT"
  10420. ],
  10421. "authors": [
  10422. {
  10423. "name": "PHP-FIG",
  10424. "homepage": "http://www.php-fig.org/"
  10425. }
  10426. ],
  10427. "description": "Standard interfaces for event handling.",
  10428. "keywords": [
  10429. "events",
  10430. "psr",
  10431. "psr-14"
  10432. ],
  10433. "support": {
  10434. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  10435. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  10436. },
  10437. "time": "2019-01-08T18:20:26+00:00"
  10438. },
  10439. {
  10440. "name": "psr/http-client",
  10441. "version": "1.0.3",
  10442. "source": {
  10443. "type": "git",
  10444. "url": "https://github.com/php-fig/http-client.git",
  10445. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  10446. },
  10447. "dist": {
  10448. "type": "zip",
  10449. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  10450. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  10451. "shasum": ""
  10452. },
  10453. "require": {
  10454. "php": "^7.0 || ^8.0",
  10455. "psr/http-message": "^1.0 || ^2.0"
  10456. },
  10457. "type": "library",
  10458. "extra": {
  10459. "branch-alias": {
  10460. "dev-master": "1.0.x-dev"
  10461. }
  10462. },
  10463. "autoload": {
  10464. "psr-4": {
  10465. "Psr\\Http\\Client\\": "src/"
  10466. }
  10467. },
  10468. "notification-url": "https://packagist.org/downloads/",
  10469. "license": [
  10470. "MIT"
  10471. ],
  10472. "authors": [
  10473. {
  10474. "name": "PHP-FIG",
  10475. "homepage": "https://www.php-fig.org/"
  10476. }
  10477. ],
  10478. "description": "Common interface for HTTP clients",
  10479. "homepage": "https://github.com/php-fig/http-client",
  10480. "keywords": [
  10481. "http",
  10482. "http-client",
  10483. "psr",
  10484. "psr-18"
  10485. ],
  10486. "support": {
  10487. "source": "https://github.com/php-fig/http-client"
  10488. },
  10489. "time": "2023-09-23T14:17:50+00:00"
  10490. },
  10491. {
  10492. "name": "psr/http-factory",
  10493. "version": "1.1.0",
  10494. "source": {
  10495. "type": "git",
  10496. "url": "https://github.com/php-fig/http-factory.git",
  10497. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  10498. },
  10499. "dist": {
  10500. "type": "zip",
  10501. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  10502. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  10503. "shasum": ""
  10504. },
  10505. "require": {
  10506. "php": ">=7.1",
  10507. "psr/http-message": "^1.0 || ^2.0"
  10508. },
  10509. "type": "library",
  10510. "extra": {
  10511. "branch-alias": {
  10512. "dev-master": "1.0.x-dev"
  10513. }
  10514. },
  10515. "autoload": {
  10516. "psr-4": {
  10517. "Psr\\Http\\Message\\": "src/"
  10518. }
  10519. },
  10520. "notification-url": "https://packagist.org/downloads/",
  10521. "license": [
  10522. "MIT"
  10523. ],
  10524. "authors": [
  10525. {
  10526. "name": "PHP-FIG",
  10527. "homepage": "https://www.php-fig.org/"
  10528. }
  10529. ],
  10530. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  10531. "keywords": [
  10532. "factory",
  10533. "http",
  10534. "message",
  10535. "psr",
  10536. "psr-17",
  10537. "psr-7",
  10538. "request",
  10539. "response"
  10540. ],
  10541. "support": {
  10542. "source": "https://github.com/php-fig/http-factory"
  10543. },
  10544. "time": "2024-04-15T12:06:14+00:00"
  10545. },
  10546. {
  10547. "name": "psr/http-message",
  10548. "version": "2.0",
  10549. "source": {
  10550. "type": "git",
  10551. "url": "https://github.com/php-fig/http-message.git",
  10552. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  10553. },
  10554. "dist": {
  10555. "type": "zip",
  10556. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  10557. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  10558. "shasum": ""
  10559. },
  10560. "require": {
  10561. "php": "^7.2 || ^8.0"
  10562. },
  10563. "type": "library",
  10564. "extra": {
  10565. "branch-alias": {
  10566. "dev-master": "2.0.x-dev"
  10567. }
  10568. },
  10569. "autoload": {
  10570. "psr-4": {
  10571. "Psr\\Http\\Message\\": "src/"
  10572. }
  10573. },
  10574. "notification-url": "https://packagist.org/downloads/",
  10575. "license": [
  10576. "MIT"
  10577. ],
  10578. "authors": [
  10579. {
  10580. "name": "PHP-FIG",
  10581. "homepage": "https://www.php-fig.org/"
  10582. }
  10583. ],
  10584. "description": "Common interface for HTTP messages",
  10585. "homepage": "https://github.com/php-fig/http-message",
  10586. "keywords": [
  10587. "http",
  10588. "http-message",
  10589. "psr",
  10590. "psr-7",
  10591. "request",
  10592. "response"
  10593. ],
  10594. "support": {
  10595. "source": "https://github.com/php-fig/http-message/tree/2.0"
  10596. },
  10597. "time": "2023-04-04T09:54:51+00:00"
  10598. },
  10599. {
  10600. "name": "psr/log",
  10601. "version": "3.0.2",
  10602. "source": {
  10603. "type": "git",
  10604. "url": "https://github.com/php-fig/log.git",
  10605. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  10606. },
  10607. "dist": {
  10608. "type": "zip",
  10609. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  10610. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  10611. "shasum": ""
  10612. },
  10613. "require": {
  10614. "php": ">=8.0.0"
  10615. },
  10616. "type": "library",
  10617. "extra": {
  10618. "branch-alias": {
  10619. "dev-master": "3.x-dev"
  10620. }
  10621. },
  10622. "autoload": {
  10623. "psr-4": {
  10624. "Psr\\Log\\": "src"
  10625. }
  10626. },
  10627. "notification-url": "https://packagist.org/downloads/",
  10628. "license": [
  10629. "MIT"
  10630. ],
  10631. "authors": [
  10632. {
  10633. "name": "PHP-FIG",
  10634. "homepage": "https://www.php-fig.org/"
  10635. }
  10636. ],
  10637. "description": "Common interface for logging libraries",
  10638. "homepage": "https://github.com/php-fig/log",
  10639. "keywords": [
  10640. "log",
  10641. "psr",
  10642. "psr-3"
  10643. ],
  10644. "support": {
  10645. "source": "https://github.com/php-fig/log/tree/3.0.2"
  10646. },
  10647. "time": "2024-09-11T13:17:53+00:00"
  10648. },
  10649. {
  10650. "name": "psy/psysh",
  10651. "version": "v0.12.9",
  10652. "source": {
  10653. "type": "git",
  10654. "url": "https://github.com/bobthecow/psysh.git",
  10655. "reference": "1b801844becfe648985372cb4b12ad6840245ace"
  10656. },
  10657. "dist": {
  10658. "type": "zip",
  10659. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/1b801844becfe648985372cb4b12ad6840245ace",
  10660. "reference": "1b801844becfe648985372cb4b12ad6840245ace",
  10661. "shasum": ""
  10662. },
  10663. "require": {
  10664. "ext-json": "*",
  10665. "ext-tokenizer": "*",
  10666. "nikic/php-parser": "^5.0 || ^4.0",
  10667. "php": "^8.0 || ^7.4",
  10668. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  10669. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  10670. },
  10671. "conflict": {
  10672. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  10673. },
  10674. "require-dev": {
  10675. "bamarni/composer-bin-plugin": "^1.2"
  10676. },
  10677. "suggest": {
  10678. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  10679. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  10680. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  10681. },
  10682. "bin": [
  10683. "bin/psysh"
  10684. ],
  10685. "type": "library",
  10686. "extra": {
  10687. "bamarni-bin": {
  10688. "bin-links": false,
  10689. "forward-command": false
  10690. },
  10691. "branch-alias": {
  10692. "dev-main": "0.12.x-dev"
  10693. }
  10694. },
  10695. "autoload": {
  10696. "files": [
  10697. "src/functions.php"
  10698. ],
  10699. "psr-4": {
  10700. "Psy\\": "src/"
  10701. }
  10702. },
  10703. "notification-url": "https://packagist.org/downloads/",
  10704. "license": [
  10705. "MIT"
  10706. ],
  10707. "authors": [
  10708. {
  10709. "name": "Justin Hileman",
  10710. "email": "justin@justinhileman.info",
  10711. "homepage": "http://justinhileman.com"
  10712. }
  10713. ],
  10714. "description": "An interactive shell for modern PHP.",
  10715. "homepage": "http://psysh.org",
  10716. "keywords": [
  10717. "REPL",
  10718. "console",
  10719. "interactive",
  10720. "shell"
  10721. ],
  10722. "support": {
  10723. "issues": "https://github.com/bobthecow/psysh/issues",
  10724. "source": "https://github.com/bobthecow/psysh/tree/v0.12.9"
  10725. },
  10726. "time": "2025-06-23T02:35:06+00:00"
  10727. },
  10728. {
  10729. "name": "ralouphie/getallheaders",
  10730. "version": "3.0.3",
  10731. "source": {
  10732. "type": "git",
  10733. "url": "https://github.com/ralouphie/getallheaders.git",
  10734. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  10735. },
  10736. "dist": {
  10737. "type": "zip",
  10738. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  10739. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  10740. "shasum": ""
  10741. },
  10742. "require": {
  10743. "php": ">=5.6"
  10744. },
  10745. "require-dev": {
  10746. "php-coveralls/php-coveralls": "^2.1",
  10747. "phpunit/phpunit": "^5 || ^6.5"
  10748. },
  10749. "type": "library",
  10750. "autoload": {
  10751. "files": [
  10752. "src/getallheaders.php"
  10753. ]
  10754. },
  10755. "notification-url": "https://packagist.org/downloads/",
  10756. "license": [
  10757. "MIT"
  10758. ],
  10759. "authors": [
  10760. {
  10761. "name": "Ralph Khattar",
  10762. "email": "ralph.khattar@gmail.com"
  10763. }
  10764. ],
  10765. "description": "A polyfill for getallheaders.",
  10766. "support": {
  10767. "issues": "https://github.com/ralouphie/getallheaders/issues",
  10768. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  10769. },
  10770. "time": "2019-03-08T08:55:37+00:00"
  10771. },
  10772. {
  10773. "name": "sebastian/diff",
  10774. "version": "4.0.6",
  10775. "source": {
  10776. "type": "git",
  10777. "url": "https://github.com/sebastianbergmann/diff.git",
  10778. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  10779. },
  10780. "dist": {
  10781. "type": "zip",
  10782. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10783. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10784. "shasum": ""
  10785. },
  10786. "require": {
  10787. "php": ">=7.3"
  10788. },
  10789. "require-dev": {
  10790. "phpunit/phpunit": "^9.3",
  10791. "symfony/process": "^4.2 || ^5"
  10792. },
  10793. "type": "library",
  10794. "extra": {
  10795. "branch-alias": {
  10796. "dev-master": "4.0-dev"
  10797. }
  10798. },
  10799. "autoload": {
  10800. "classmap": [
  10801. "src/"
  10802. ]
  10803. },
  10804. "notification-url": "https://packagist.org/downloads/",
  10805. "license": [
  10806. "BSD-3-Clause"
  10807. ],
  10808. "authors": [
  10809. {
  10810. "name": "Sebastian Bergmann",
  10811. "email": "sebastian@phpunit.de"
  10812. },
  10813. {
  10814. "name": "Kore Nordmann",
  10815. "email": "mail@kore-nordmann.de"
  10816. }
  10817. ],
  10818. "description": "Diff implementation",
  10819. "homepage": "https://github.com/sebastianbergmann/diff",
  10820. "keywords": [
  10821. "diff",
  10822. "udiff",
  10823. "unidiff",
  10824. "unified diff"
  10825. ],
  10826. "support": {
  10827. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10828. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  10829. },
  10830. "funding": [
  10831. {
  10832. "url": "https://github.com/sebastianbergmann",
  10833. "type": "github"
  10834. }
  10835. ],
  10836. "time": "2024-03-02T06:30:58+00:00"
  10837. },
  10838. {
  10839. "name": "symfony/console",
  10840. "version": "v6.4.23",
  10841. "source": {
  10842. "type": "git",
  10843. "url": "https://github.com/symfony/console.git",
  10844. "reference": "9056771b8eca08d026cd3280deeec3cfd99c4d93"
  10845. },
  10846. "dist": {
  10847. "type": "zip",
  10848. "url": "https://api.github.com/repos/symfony/console/zipball/9056771b8eca08d026cd3280deeec3cfd99c4d93",
  10849. "reference": "9056771b8eca08d026cd3280deeec3cfd99c4d93",
  10850. "shasum": ""
  10851. },
  10852. "require": {
  10853. "php": ">=8.1",
  10854. "symfony/deprecation-contracts": "^2.5|^3",
  10855. "symfony/polyfill-mbstring": "~1.0",
  10856. "symfony/service-contracts": "^2.5|^3",
  10857. "symfony/string": "^5.4|^6.0|^7.0"
  10858. },
  10859. "conflict": {
  10860. "symfony/dependency-injection": "<5.4",
  10861. "symfony/dotenv": "<5.4",
  10862. "symfony/event-dispatcher": "<5.4",
  10863. "symfony/lock": "<5.4",
  10864. "symfony/process": "<5.4"
  10865. },
  10866. "provide": {
  10867. "psr/log-implementation": "1.0|2.0|3.0"
  10868. },
  10869. "require-dev": {
  10870. "psr/log": "^1|^2|^3",
  10871. "symfony/config": "^5.4|^6.0|^7.0",
  10872. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10873. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  10874. "symfony/http-foundation": "^6.4|^7.0",
  10875. "symfony/http-kernel": "^6.4|^7.0",
  10876. "symfony/lock": "^5.4|^6.0|^7.0",
  10877. "symfony/messenger": "^5.4|^6.0|^7.0",
  10878. "symfony/process": "^5.4|^6.0|^7.0",
  10879. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  10880. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  10881. },
  10882. "type": "library",
  10883. "autoload": {
  10884. "psr-4": {
  10885. "Symfony\\Component\\Console\\": ""
  10886. },
  10887. "exclude-from-classmap": [
  10888. "/Tests/"
  10889. ]
  10890. },
  10891. "notification-url": "https://packagist.org/downloads/",
  10892. "license": [
  10893. "MIT"
  10894. ],
  10895. "authors": [
  10896. {
  10897. "name": "Fabien Potencier",
  10898. "email": "fabien@symfony.com"
  10899. },
  10900. {
  10901. "name": "Symfony Community",
  10902. "homepage": "https://symfony.com/contributors"
  10903. }
  10904. ],
  10905. "description": "Eases the creation of beautiful and testable command line interfaces",
  10906. "homepage": "https://symfony.com",
  10907. "keywords": [
  10908. "cli",
  10909. "command-line",
  10910. "console",
  10911. "terminal"
  10912. ],
  10913. "support": {
  10914. "source": "https://github.com/symfony/console/tree/v6.4.23"
  10915. },
  10916. "funding": [
  10917. {
  10918. "url": "https://symfony.com/sponsor",
  10919. "type": "custom"
  10920. },
  10921. {
  10922. "url": "https://github.com/fabpot",
  10923. "type": "github"
  10924. },
  10925. {
  10926. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10927. "type": "tidelift"
  10928. }
  10929. ],
  10930. "time": "2025-06-27T19:37:22+00:00"
  10931. },
  10932. {
  10933. "name": "symfony/dependency-injection",
  10934. "version": "v6.4.23",
  10935. "source": {
  10936. "type": "git",
  10937. "url": "https://github.com/symfony/dependency-injection.git",
  10938. "reference": "0d9f24f3de0a83573fce5c9ed025d6306c6e166b"
  10939. },
  10940. "dist": {
  10941. "type": "zip",
  10942. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/0d9f24f3de0a83573fce5c9ed025d6306c6e166b",
  10943. "reference": "0d9f24f3de0a83573fce5c9ed025d6306c6e166b",
  10944. "shasum": ""
  10945. },
  10946. "require": {
  10947. "php": ">=8.1",
  10948. "psr/container": "^1.1|^2.0",
  10949. "symfony/deprecation-contracts": "^2.5|^3",
  10950. "symfony/service-contracts": "^2.5|^3.0",
  10951. "symfony/var-exporter": "^6.4.20|^7.2.5"
  10952. },
  10953. "conflict": {
  10954. "ext-psr": "<1.1|>=2",
  10955. "symfony/config": "<6.1",
  10956. "symfony/finder": "<5.4",
  10957. "symfony/proxy-manager-bridge": "<6.3",
  10958. "symfony/yaml": "<5.4"
  10959. },
  10960. "provide": {
  10961. "psr/container-implementation": "1.1|2.0",
  10962. "symfony/service-implementation": "1.1|2.0|3.0"
  10963. },
  10964. "require-dev": {
  10965. "symfony/config": "^6.1|^7.0",
  10966. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10967. "symfony/yaml": "^5.4|^6.0|^7.0"
  10968. },
  10969. "type": "library",
  10970. "autoload": {
  10971. "psr-4": {
  10972. "Symfony\\Component\\DependencyInjection\\": ""
  10973. },
  10974. "exclude-from-classmap": [
  10975. "/Tests/"
  10976. ]
  10977. },
  10978. "notification-url": "https://packagist.org/downloads/",
  10979. "license": [
  10980. "MIT"
  10981. ],
  10982. "authors": [
  10983. {
  10984. "name": "Fabien Potencier",
  10985. "email": "fabien@symfony.com"
  10986. },
  10987. {
  10988. "name": "Symfony Community",
  10989. "homepage": "https://symfony.com/contributors"
  10990. }
  10991. ],
  10992. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  10993. "homepage": "https://symfony.com",
  10994. "support": {
  10995. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.23"
  10996. },
  10997. "funding": [
  10998. {
  10999. "url": "https://symfony.com/sponsor",
  11000. "type": "custom"
  11001. },
  11002. {
  11003. "url": "https://github.com/fabpot",
  11004. "type": "github"
  11005. },
  11006. {
  11007. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11008. "type": "tidelift"
  11009. }
  11010. ],
  11011. "time": "2025-06-23T06:49:06+00:00"
  11012. },
  11013. {
  11014. "name": "symfony/deprecation-contracts",
  11015. "version": "v3.5.1",
  11016. "source": {
  11017. "type": "git",
  11018. "url": "https://github.com/symfony/deprecation-contracts.git",
  11019. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  11020. },
  11021. "dist": {
  11022. "type": "zip",
  11023. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  11024. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  11025. "shasum": ""
  11026. },
  11027. "require": {
  11028. "php": ">=8.1"
  11029. },
  11030. "type": "library",
  11031. "extra": {
  11032. "thanks": {
  11033. "url": "https://github.com/symfony/contracts",
  11034. "name": "symfony/contracts"
  11035. },
  11036. "branch-alias": {
  11037. "dev-main": "3.5-dev"
  11038. }
  11039. },
  11040. "autoload": {
  11041. "files": [
  11042. "function.php"
  11043. ]
  11044. },
  11045. "notification-url": "https://packagist.org/downloads/",
  11046. "license": [
  11047. "MIT"
  11048. ],
  11049. "authors": [
  11050. {
  11051. "name": "Nicolas Grekas",
  11052. "email": "p@tchwork.com"
  11053. },
  11054. {
  11055. "name": "Symfony Community",
  11056. "homepage": "https://symfony.com/contributors"
  11057. }
  11058. ],
  11059. "description": "A generic function and convention to trigger deprecation notices",
  11060. "homepage": "https://symfony.com",
  11061. "support": {
  11062. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  11063. },
  11064. "funding": [
  11065. {
  11066. "url": "https://symfony.com/sponsor",
  11067. "type": "custom"
  11068. },
  11069. {
  11070. "url": "https://github.com/fabpot",
  11071. "type": "github"
  11072. },
  11073. {
  11074. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11075. "type": "tidelift"
  11076. }
  11077. ],
  11078. "time": "2024-09-25T14:20:29+00:00"
  11079. },
  11080. {
  11081. "name": "symfony/error-handler",
  11082. "version": "v6.4.23",
  11083. "source": {
  11084. "type": "git",
  11085. "url": "https://github.com/symfony/error-handler.git",
  11086. "reference": "b088e0b175c30b4e06d8085200fa465b586f44fa"
  11087. },
  11088. "dist": {
  11089. "type": "zip",
  11090. "url": "https://api.github.com/repos/symfony/error-handler/zipball/b088e0b175c30b4e06d8085200fa465b586f44fa",
  11091. "reference": "b088e0b175c30b4e06d8085200fa465b586f44fa",
  11092. "shasum": ""
  11093. },
  11094. "require": {
  11095. "php": ">=8.1",
  11096. "psr/log": "^1|^2|^3",
  11097. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  11098. },
  11099. "conflict": {
  11100. "symfony/deprecation-contracts": "<2.5",
  11101. "symfony/http-kernel": "<6.4"
  11102. },
  11103. "require-dev": {
  11104. "symfony/deprecation-contracts": "^2.5|^3",
  11105. "symfony/http-kernel": "^6.4|^7.0",
  11106. "symfony/serializer": "^5.4|^6.0|^7.0"
  11107. },
  11108. "bin": [
  11109. "Resources/bin/patch-type-declarations"
  11110. ],
  11111. "type": "library",
  11112. "autoload": {
  11113. "psr-4": {
  11114. "Symfony\\Component\\ErrorHandler\\": ""
  11115. },
  11116. "exclude-from-classmap": [
  11117. "/Tests/"
  11118. ]
  11119. },
  11120. "notification-url": "https://packagist.org/downloads/",
  11121. "license": [
  11122. "MIT"
  11123. ],
  11124. "authors": [
  11125. {
  11126. "name": "Fabien Potencier",
  11127. "email": "fabien@symfony.com"
  11128. },
  11129. {
  11130. "name": "Symfony Community",
  11131. "homepage": "https://symfony.com/contributors"
  11132. }
  11133. ],
  11134. "description": "Provides tools to manage errors and ease debugging PHP code",
  11135. "homepage": "https://symfony.com",
  11136. "support": {
  11137. "source": "https://github.com/symfony/error-handler/tree/v6.4.23"
  11138. },
  11139. "funding": [
  11140. {
  11141. "url": "https://symfony.com/sponsor",
  11142. "type": "custom"
  11143. },
  11144. {
  11145. "url": "https://github.com/fabpot",
  11146. "type": "github"
  11147. },
  11148. {
  11149. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11150. "type": "tidelift"
  11151. }
  11152. ],
  11153. "time": "2025-06-13T07:39:48+00:00"
  11154. },
  11155. {
  11156. "name": "symfony/event-dispatcher",
  11157. "version": "v6.4.13",
  11158. "source": {
  11159. "type": "git",
  11160. "url": "https://github.com/symfony/event-dispatcher.git",
  11161. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  11162. },
  11163. "dist": {
  11164. "type": "zip",
  11165. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11166. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11167. "shasum": ""
  11168. },
  11169. "require": {
  11170. "php": ">=8.1",
  11171. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11172. },
  11173. "conflict": {
  11174. "symfony/dependency-injection": "<5.4",
  11175. "symfony/service-contracts": "<2.5"
  11176. },
  11177. "provide": {
  11178. "psr/event-dispatcher-implementation": "1.0",
  11179. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11180. },
  11181. "require-dev": {
  11182. "psr/log": "^1|^2|^3",
  11183. "symfony/config": "^5.4|^6.0|^7.0",
  11184. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11185. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11186. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11187. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11188. "symfony/service-contracts": "^2.5|^3",
  11189. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11190. },
  11191. "type": "library",
  11192. "autoload": {
  11193. "psr-4": {
  11194. "Symfony\\Component\\EventDispatcher\\": ""
  11195. },
  11196. "exclude-from-classmap": [
  11197. "/Tests/"
  11198. ]
  11199. },
  11200. "notification-url": "https://packagist.org/downloads/",
  11201. "license": [
  11202. "MIT"
  11203. ],
  11204. "authors": [
  11205. {
  11206. "name": "Fabien Potencier",
  11207. "email": "fabien@symfony.com"
  11208. },
  11209. {
  11210. "name": "Symfony Community",
  11211. "homepage": "https://symfony.com/contributors"
  11212. }
  11213. ],
  11214. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11215. "homepage": "https://symfony.com",
  11216. "support": {
  11217. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  11218. },
  11219. "funding": [
  11220. {
  11221. "url": "https://symfony.com/sponsor",
  11222. "type": "custom"
  11223. },
  11224. {
  11225. "url": "https://github.com/fabpot",
  11226. "type": "github"
  11227. },
  11228. {
  11229. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11230. "type": "tidelift"
  11231. }
  11232. ],
  11233. "time": "2024-09-25T14:18:03+00:00"
  11234. },
  11235. {
  11236. "name": "symfony/event-dispatcher-contracts",
  11237. "version": "v3.5.1",
  11238. "source": {
  11239. "type": "git",
  11240. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11241. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  11242. },
  11243. "dist": {
  11244. "type": "zip",
  11245. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11246. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11247. "shasum": ""
  11248. },
  11249. "require": {
  11250. "php": ">=8.1",
  11251. "psr/event-dispatcher": "^1"
  11252. },
  11253. "type": "library",
  11254. "extra": {
  11255. "thanks": {
  11256. "url": "https://github.com/symfony/contracts",
  11257. "name": "symfony/contracts"
  11258. },
  11259. "branch-alias": {
  11260. "dev-main": "3.5-dev"
  11261. }
  11262. },
  11263. "autoload": {
  11264. "psr-4": {
  11265. "Symfony\\Contracts\\EventDispatcher\\": ""
  11266. }
  11267. },
  11268. "notification-url": "https://packagist.org/downloads/",
  11269. "license": [
  11270. "MIT"
  11271. ],
  11272. "authors": [
  11273. {
  11274. "name": "Nicolas Grekas",
  11275. "email": "p@tchwork.com"
  11276. },
  11277. {
  11278. "name": "Symfony Community",
  11279. "homepage": "https://symfony.com/contributors"
  11280. }
  11281. ],
  11282. "description": "Generic abstractions related to dispatching event",
  11283. "homepage": "https://symfony.com",
  11284. "keywords": [
  11285. "abstractions",
  11286. "contracts",
  11287. "decoupling",
  11288. "interfaces",
  11289. "interoperability",
  11290. "standards"
  11291. ],
  11292. "support": {
  11293. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  11294. },
  11295. "funding": [
  11296. {
  11297. "url": "https://symfony.com/sponsor",
  11298. "type": "custom"
  11299. },
  11300. {
  11301. "url": "https://github.com/fabpot",
  11302. "type": "github"
  11303. },
  11304. {
  11305. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11306. "type": "tidelift"
  11307. }
  11308. ],
  11309. "time": "2024-09-25T14:20:29+00:00"
  11310. },
  11311. {
  11312. "name": "symfony/filesystem",
  11313. "version": "v6.4.13",
  11314. "source": {
  11315. "type": "git",
  11316. "url": "https://github.com/symfony/filesystem.git",
  11317. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  11318. },
  11319. "dist": {
  11320. "type": "zip",
  11321. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11322. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11323. "shasum": ""
  11324. },
  11325. "require": {
  11326. "php": ">=8.1",
  11327. "symfony/polyfill-ctype": "~1.8",
  11328. "symfony/polyfill-mbstring": "~1.8"
  11329. },
  11330. "require-dev": {
  11331. "symfony/process": "^5.4|^6.4|^7.0"
  11332. },
  11333. "type": "library",
  11334. "autoload": {
  11335. "psr-4": {
  11336. "Symfony\\Component\\Filesystem\\": ""
  11337. },
  11338. "exclude-from-classmap": [
  11339. "/Tests/"
  11340. ]
  11341. },
  11342. "notification-url": "https://packagist.org/downloads/",
  11343. "license": [
  11344. "MIT"
  11345. ],
  11346. "authors": [
  11347. {
  11348. "name": "Fabien Potencier",
  11349. "email": "fabien@symfony.com"
  11350. },
  11351. {
  11352. "name": "Symfony Community",
  11353. "homepage": "https://symfony.com/contributors"
  11354. }
  11355. ],
  11356. "description": "Provides basic utilities for the filesystem",
  11357. "homepage": "https://symfony.com",
  11358. "support": {
  11359. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  11360. },
  11361. "funding": [
  11362. {
  11363. "url": "https://symfony.com/sponsor",
  11364. "type": "custom"
  11365. },
  11366. {
  11367. "url": "https://github.com/fabpot",
  11368. "type": "github"
  11369. },
  11370. {
  11371. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11372. "type": "tidelift"
  11373. }
  11374. ],
  11375. "time": "2024-10-25T15:07:50+00:00"
  11376. },
  11377. {
  11378. "name": "symfony/finder",
  11379. "version": "v6.4.17",
  11380. "source": {
  11381. "type": "git",
  11382. "url": "https://github.com/symfony/finder.git",
  11383. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7"
  11384. },
  11385. "dist": {
  11386. "type": "zip",
  11387. "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  11388. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  11389. "shasum": ""
  11390. },
  11391. "require": {
  11392. "php": ">=8.1"
  11393. },
  11394. "require-dev": {
  11395. "symfony/filesystem": "^6.0|^7.0"
  11396. },
  11397. "type": "library",
  11398. "autoload": {
  11399. "psr-4": {
  11400. "Symfony\\Component\\Finder\\": ""
  11401. },
  11402. "exclude-from-classmap": [
  11403. "/Tests/"
  11404. ]
  11405. },
  11406. "notification-url": "https://packagist.org/downloads/",
  11407. "license": [
  11408. "MIT"
  11409. ],
  11410. "authors": [
  11411. {
  11412. "name": "Fabien Potencier",
  11413. "email": "fabien@symfony.com"
  11414. },
  11415. {
  11416. "name": "Symfony Community",
  11417. "homepage": "https://symfony.com/contributors"
  11418. }
  11419. ],
  11420. "description": "Finds files and directories via an intuitive fluent interface",
  11421. "homepage": "https://symfony.com",
  11422. "support": {
  11423. "source": "https://github.com/symfony/finder/tree/v6.4.17"
  11424. },
  11425. "funding": [
  11426. {
  11427. "url": "https://symfony.com/sponsor",
  11428. "type": "custom"
  11429. },
  11430. {
  11431. "url": "https://github.com/fabpot",
  11432. "type": "github"
  11433. },
  11434. {
  11435. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11436. "type": "tidelift"
  11437. }
  11438. ],
  11439. "time": "2024-12-29T13:51:37+00:00"
  11440. },
  11441. {
  11442. "name": "symfony/http-foundation",
  11443. "version": "v6.4.23",
  11444. "source": {
  11445. "type": "git",
  11446. "url": "https://github.com/symfony/http-foundation.git",
  11447. "reference": "452d19f945ee41345fd8a50c18b60783546b7bd3"
  11448. },
  11449. "dist": {
  11450. "type": "zip",
  11451. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/452d19f945ee41345fd8a50c18b60783546b7bd3",
  11452. "reference": "452d19f945ee41345fd8a50c18b60783546b7bd3",
  11453. "shasum": ""
  11454. },
  11455. "require": {
  11456. "php": ">=8.1",
  11457. "symfony/deprecation-contracts": "^2.5|^3",
  11458. "symfony/polyfill-mbstring": "~1.1",
  11459. "symfony/polyfill-php83": "^1.27"
  11460. },
  11461. "conflict": {
  11462. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11463. },
  11464. "require-dev": {
  11465. "doctrine/dbal": "^2.13.1|^3|^4",
  11466. "predis/predis": "^1.1|^2.0",
  11467. "symfony/cache": "^6.4.12|^7.1.5",
  11468. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11469. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11470. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11471. "symfony/mime": "^5.4|^6.0|^7.0",
  11472. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11473. },
  11474. "type": "library",
  11475. "autoload": {
  11476. "psr-4": {
  11477. "Symfony\\Component\\HttpFoundation\\": ""
  11478. },
  11479. "exclude-from-classmap": [
  11480. "/Tests/"
  11481. ]
  11482. },
  11483. "notification-url": "https://packagist.org/downloads/",
  11484. "license": [
  11485. "MIT"
  11486. ],
  11487. "authors": [
  11488. {
  11489. "name": "Fabien Potencier",
  11490. "email": "fabien@symfony.com"
  11491. },
  11492. {
  11493. "name": "Symfony Community",
  11494. "homepage": "https://symfony.com/contributors"
  11495. }
  11496. ],
  11497. "description": "Defines an object-oriented layer for the HTTP specification",
  11498. "homepage": "https://symfony.com",
  11499. "support": {
  11500. "source": "https://github.com/symfony/http-foundation/tree/v6.4.23"
  11501. },
  11502. "funding": [
  11503. {
  11504. "url": "https://symfony.com/sponsor",
  11505. "type": "custom"
  11506. },
  11507. {
  11508. "url": "https://github.com/fabpot",
  11509. "type": "github"
  11510. },
  11511. {
  11512. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11513. "type": "tidelift"
  11514. }
  11515. ],
  11516. "time": "2025-05-26T09:17:58+00:00"
  11517. },
  11518. {
  11519. "name": "symfony/http-kernel",
  11520. "version": "v6.4.23",
  11521. "source": {
  11522. "type": "git",
  11523. "url": "https://github.com/symfony/http-kernel.git",
  11524. "reference": "2bb2cba685aabd859f22cf6946554e8e7f3c329a"
  11525. },
  11526. "dist": {
  11527. "type": "zip",
  11528. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/2bb2cba685aabd859f22cf6946554e8e7f3c329a",
  11529. "reference": "2bb2cba685aabd859f22cf6946554e8e7f3c329a",
  11530. "shasum": ""
  11531. },
  11532. "require": {
  11533. "php": ">=8.1",
  11534. "psr/log": "^1|^2|^3",
  11535. "symfony/deprecation-contracts": "^2.5|^3",
  11536. "symfony/error-handler": "^6.4|^7.0",
  11537. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  11538. "symfony/http-foundation": "^6.4|^7.0",
  11539. "symfony/polyfill-ctype": "^1.8"
  11540. },
  11541. "conflict": {
  11542. "symfony/browser-kit": "<5.4",
  11543. "symfony/cache": "<5.4",
  11544. "symfony/config": "<6.1",
  11545. "symfony/console": "<5.4",
  11546. "symfony/dependency-injection": "<6.4",
  11547. "symfony/doctrine-bridge": "<5.4",
  11548. "symfony/form": "<5.4",
  11549. "symfony/http-client": "<5.4",
  11550. "symfony/http-client-contracts": "<2.5",
  11551. "symfony/mailer": "<5.4",
  11552. "symfony/messenger": "<5.4",
  11553. "symfony/translation": "<5.4",
  11554. "symfony/translation-contracts": "<2.5",
  11555. "symfony/twig-bridge": "<5.4",
  11556. "symfony/validator": "<6.4",
  11557. "symfony/var-dumper": "<6.3",
  11558. "twig/twig": "<2.13"
  11559. },
  11560. "provide": {
  11561. "psr/log-implementation": "1.0|2.0|3.0"
  11562. },
  11563. "require-dev": {
  11564. "psr/cache": "^1.0|^2.0|^3.0",
  11565. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  11566. "symfony/clock": "^6.2|^7.0",
  11567. "symfony/config": "^6.1|^7.0",
  11568. "symfony/console": "^5.4|^6.0|^7.0",
  11569. "symfony/css-selector": "^5.4|^6.0|^7.0",
  11570. "symfony/dependency-injection": "^6.4|^7.0",
  11571. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  11572. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11573. "symfony/finder": "^5.4|^6.0|^7.0",
  11574. "symfony/http-client-contracts": "^2.5|^3",
  11575. "symfony/process": "^5.4|^6.0|^7.0",
  11576. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  11577. "symfony/routing": "^5.4|^6.0|^7.0",
  11578. "symfony/serializer": "^6.4.4|^7.0.4",
  11579. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  11580. "symfony/translation": "^5.4|^6.0|^7.0",
  11581. "symfony/translation-contracts": "^2.5|^3",
  11582. "symfony/uid": "^5.4|^6.0|^7.0",
  11583. "symfony/validator": "^6.4|^7.0",
  11584. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  11585. "symfony/var-exporter": "^6.2|^7.0",
  11586. "twig/twig": "^2.13|^3.0.4"
  11587. },
  11588. "type": "library",
  11589. "autoload": {
  11590. "psr-4": {
  11591. "Symfony\\Component\\HttpKernel\\": ""
  11592. },
  11593. "exclude-from-classmap": [
  11594. "/Tests/"
  11595. ]
  11596. },
  11597. "notification-url": "https://packagist.org/downloads/",
  11598. "license": [
  11599. "MIT"
  11600. ],
  11601. "authors": [
  11602. {
  11603. "name": "Fabien Potencier",
  11604. "email": "fabien@symfony.com"
  11605. },
  11606. {
  11607. "name": "Symfony Community",
  11608. "homepage": "https://symfony.com/contributors"
  11609. }
  11610. ],
  11611. "description": "Provides a structured process for converting a Request into a Response",
  11612. "homepage": "https://symfony.com",
  11613. "support": {
  11614. "source": "https://github.com/symfony/http-kernel/tree/v6.4.23"
  11615. },
  11616. "funding": [
  11617. {
  11618. "url": "https://symfony.com/sponsor",
  11619. "type": "custom"
  11620. },
  11621. {
  11622. "url": "https://github.com/fabpot",
  11623. "type": "github"
  11624. },
  11625. {
  11626. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11627. "type": "tidelift"
  11628. }
  11629. ],
  11630. "time": "2025-06-28T08:14:51+00:00"
  11631. },
  11632. {
  11633. "name": "symfony/mailer",
  11634. "version": "v6.4.23",
  11635. "source": {
  11636. "type": "git",
  11637. "url": "https://github.com/symfony/mailer.git",
  11638. "reference": "a480322ddf8e54de262c9bca31fdcbe26b553de5"
  11639. },
  11640. "dist": {
  11641. "type": "zip",
  11642. "url": "https://api.github.com/repos/symfony/mailer/zipball/a480322ddf8e54de262c9bca31fdcbe26b553de5",
  11643. "reference": "a480322ddf8e54de262c9bca31fdcbe26b553de5",
  11644. "shasum": ""
  11645. },
  11646. "require": {
  11647. "egulias/email-validator": "^2.1.10|^3|^4",
  11648. "php": ">=8.1",
  11649. "psr/event-dispatcher": "^1",
  11650. "psr/log": "^1|^2|^3",
  11651. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  11652. "symfony/mime": "^6.2|^7.0",
  11653. "symfony/service-contracts": "^2.5|^3"
  11654. },
  11655. "conflict": {
  11656. "symfony/http-client-contracts": "<2.5",
  11657. "symfony/http-kernel": "<5.4",
  11658. "symfony/messenger": "<6.2",
  11659. "symfony/mime": "<6.2",
  11660. "symfony/twig-bridge": "<6.2.1"
  11661. },
  11662. "require-dev": {
  11663. "symfony/console": "^5.4|^6.0|^7.0",
  11664. "symfony/http-client": "^5.4|^6.0|^7.0",
  11665. "symfony/messenger": "^6.2|^7.0",
  11666. "symfony/twig-bridge": "^6.2|^7.0"
  11667. },
  11668. "type": "library",
  11669. "autoload": {
  11670. "psr-4": {
  11671. "Symfony\\Component\\Mailer\\": ""
  11672. },
  11673. "exclude-from-classmap": [
  11674. "/Tests/"
  11675. ]
  11676. },
  11677. "notification-url": "https://packagist.org/downloads/",
  11678. "license": [
  11679. "MIT"
  11680. ],
  11681. "authors": [
  11682. {
  11683. "name": "Fabien Potencier",
  11684. "email": "fabien@symfony.com"
  11685. },
  11686. {
  11687. "name": "Symfony Community",
  11688. "homepage": "https://symfony.com/contributors"
  11689. }
  11690. ],
  11691. "description": "Helps sending emails",
  11692. "homepage": "https://symfony.com",
  11693. "support": {
  11694. "source": "https://github.com/symfony/mailer/tree/v6.4.23"
  11695. },
  11696. "funding": [
  11697. {
  11698. "url": "https://symfony.com/sponsor",
  11699. "type": "custom"
  11700. },
  11701. {
  11702. "url": "https://github.com/fabpot",
  11703. "type": "github"
  11704. },
  11705. {
  11706. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11707. "type": "tidelift"
  11708. }
  11709. ],
  11710. "time": "2025-06-26T21:24:02+00:00"
  11711. },
  11712. {
  11713. "name": "symfony/mime",
  11714. "version": "v6.4.21",
  11715. "source": {
  11716. "type": "git",
  11717. "url": "https://github.com/symfony/mime.git",
  11718. "reference": "fec8aa5231f3904754955fad33c2db50594d22d1"
  11719. },
  11720. "dist": {
  11721. "type": "zip",
  11722. "url": "https://api.github.com/repos/symfony/mime/zipball/fec8aa5231f3904754955fad33c2db50594d22d1",
  11723. "reference": "fec8aa5231f3904754955fad33c2db50594d22d1",
  11724. "shasum": ""
  11725. },
  11726. "require": {
  11727. "php": ">=8.1",
  11728. "symfony/deprecation-contracts": "^2.5|^3",
  11729. "symfony/polyfill-intl-idn": "^1.10",
  11730. "symfony/polyfill-mbstring": "^1.0"
  11731. },
  11732. "conflict": {
  11733. "egulias/email-validator": "~3.0.0",
  11734. "phpdocumentor/reflection-docblock": "<3.2.2",
  11735. "phpdocumentor/type-resolver": "<1.4.0",
  11736. "symfony/mailer": "<5.4",
  11737. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  11738. },
  11739. "require-dev": {
  11740. "egulias/email-validator": "^2.1.10|^3.1|^4",
  11741. "league/html-to-markdown": "^5.0",
  11742. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  11743. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11744. "symfony/process": "^5.4|^6.4|^7.0",
  11745. "symfony/property-access": "^5.4|^6.0|^7.0",
  11746. "symfony/property-info": "^5.4|^6.0|^7.0",
  11747. "symfony/serializer": "^6.4.3|^7.0.3"
  11748. },
  11749. "type": "library",
  11750. "autoload": {
  11751. "psr-4": {
  11752. "Symfony\\Component\\Mime\\": ""
  11753. },
  11754. "exclude-from-classmap": [
  11755. "/Tests/"
  11756. ]
  11757. },
  11758. "notification-url": "https://packagist.org/downloads/",
  11759. "license": [
  11760. "MIT"
  11761. ],
  11762. "authors": [
  11763. {
  11764. "name": "Fabien Potencier",
  11765. "email": "fabien@symfony.com"
  11766. },
  11767. {
  11768. "name": "Symfony Community",
  11769. "homepage": "https://symfony.com/contributors"
  11770. }
  11771. ],
  11772. "description": "Allows manipulating MIME messages",
  11773. "homepage": "https://symfony.com",
  11774. "keywords": [
  11775. "mime",
  11776. "mime-type"
  11777. ],
  11778. "support": {
  11779. "source": "https://github.com/symfony/mime/tree/v6.4.21"
  11780. },
  11781. "funding": [
  11782. {
  11783. "url": "https://symfony.com/sponsor",
  11784. "type": "custom"
  11785. },
  11786. {
  11787. "url": "https://github.com/fabpot",
  11788. "type": "github"
  11789. },
  11790. {
  11791. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11792. "type": "tidelift"
  11793. }
  11794. ],
  11795. "time": "2025-04-27T13:27:38+00:00"
  11796. },
  11797. {
  11798. "name": "symfony/polyfill-ctype",
  11799. "version": "v1.31.0",
  11800. "source": {
  11801. "type": "git",
  11802. "url": "https://github.com/symfony/polyfill-ctype.git",
  11803. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  11804. },
  11805. "dist": {
  11806. "type": "zip",
  11807. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  11808. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  11809. "shasum": ""
  11810. },
  11811. "require": {
  11812. "php": ">=7.2"
  11813. },
  11814. "provide": {
  11815. "ext-ctype": "*"
  11816. },
  11817. "suggest": {
  11818. "ext-ctype": "For best performance"
  11819. },
  11820. "type": "library",
  11821. "extra": {
  11822. "thanks": {
  11823. "url": "https://github.com/symfony/polyfill",
  11824. "name": "symfony/polyfill"
  11825. }
  11826. },
  11827. "autoload": {
  11828. "files": [
  11829. "bootstrap.php"
  11830. ],
  11831. "psr-4": {
  11832. "Symfony\\Polyfill\\Ctype\\": ""
  11833. }
  11834. },
  11835. "notification-url": "https://packagist.org/downloads/",
  11836. "license": [
  11837. "MIT"
  11838. ],
  11839. "authors": [
  11840. {
  11841. "name": "Gert de Pagter",
  11842. "email": "BackEndTea@gmail.com"
  11843. },
  11844. {
  11845. "name": "Symfony Community",
  11846. "homepage": "https://symfony.com/contributors"
  11847. }
  11848. ],
  11849. "description": "Symfony polyfill for ctype functions",
  11850. "homepage": "https://symfony.com",
  11851. "keywords": [
  11852. "compatibility",
  11853. "ctype",
  11854. "polyfill",
  11855. "portable"
  11856. ],
  11857. "support": {
  11858. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  11859. },
  11860. "funding": [
  11861. {
  11862. "url": "https://symfony.com/sponsor",
  11863. "type": "custom"
  11864. },
  11865. {
  11866. "url": "https://github.com/fabpot",
  11867. "type": "github"
  11868. },
  11869. {
  11870. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11871. "type": "tidelift"
  11872. }
  11873. ],
  11874. "time": "2024-09-09T11:45:10+00:00"
  11875. },
  11876. {
  11877. "name": "symfony/polyfill-iconv",
  11878. "version": "v1.31.0",
  11879. "source": {
  11880. "type": "git",
  11881. "url": "https://github.com/symfony/polyfill-iconv.git",
  11882. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956"
  11883. },
  11884. "dist": {
  11885. "type": "zip",
  11886. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956",
  11887. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956",
  11888. "shasum": ""
  11889. },
  11890. "require": {
  11891. "php": ">=7.2"
  11892. },
  11893. "provide": {
  11894. "ext-iconv": "*"
  11895. },
  11896. "suggest": {
  11897. "ext-iconv": "For best performance"
  11898. },
  11899. "type": "library",
  11900. "extra": {
  11901. "thanks": {
  11902. "url": "https://github.com/symfony/polyfill",
  11903. "name": "symfony/polyfill"
  11904. }
  11905. },
  11906. "autoload": {
  11907. "files": [
  11908. "bootstrap.php"
  11909. ],
  11910. "psr-4": {
  11911. "Symfony\\Polyfill\\Iconv\\": ""
  11912. }
  11913. },
  11914. "notification-url": "https://packagist.org/downloads/",
  11915. "license": [
  11916. "MIT"
  11917. ],
  11918. "authors": [
  11919. {
  11920. "name": "Nicolas Grekas",
  11921. "email": "p@tchwork.com"
  11922. },
  11923. {
  11924. "name": "Symfony Community",
  11925. "homepage": "https://symfony.com/contributors"
  11926. }
  11927. ],
  11928. "description": "Symfony polyfill for the Iconv extension",
  11929. "homepage": "https://symfony.com",
  11930. "keywords": [
  11931. "compatibility",
  11932. "iconv",
  11933. "polyfill",
  11934. "portable",
  11935. "shim"
  11936. ],
  11937. "support": {
  11938. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0"
  11939. },
  11940. "funding": [
  11941. {
  11942. "url": "https://symfony.com/sponsor",
  11943. "type": "custom"
  11944. },
  11945. {
  11946. "url": "https://github.com/fabpot",
  11947. "type": "github"
  11948. },
  11949. {
  11950. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11951. "type": "tidelift"
  11952. }
  11953. ],
  11954. "time": "2024-09-09T11:45:10+00:00"
  11955. },
  11956. {
  11957. "name": "symfony/polyfill-intl-grapheme",
  11958. "version": "v1.31.0",
  11959. "source": {
  11960. "type": "git",
  11961. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  11962. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  11963. },
  11964. "dist": {
  11965. "type": "zip",
  11966. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  11967. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  11968. "shasum": ""
  11969. },
  11970. "require": {
  11971. "php": ">=7.2"
  11972. },
  11973. "suggest": {
  11974. "ext-intl": "For best performance"
  11975. },
  11976. "type": "library",
  11977. "extra": {
  11978. "thanks": {
  11979. "url": "https://github.com/symfony/polyfill",
  11980. "name": "symfony/polyfill"
  11981. }
  11982. },
  11983. "autoload": {
  11984. "files": [
  11985. "bootstrap.php"
  11986. ],
  11987. "psr-4": {
  11988. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  11989. }
  11990. },
  11991. "notification-url": "https://packagist.org/downloads/",
  11992. "license": [
  11993. "MIT"
  11994. ],
  11995. "authors": [
  11996. {
  11997. "name": "Nicolas Grekas",
  11998. "email": "p@tchwork.com"
  11999. },
  12000. {
  12001. "name": "Symfony Community",
  12002. "homepage": "https://symfony.com/contributors"
  12003. }
  12004. ],
  12005. "description": "Symfony polyfill for intl's grapheme_* functions",
  12006. "homepage": "https://symfony.com",
  12007. "keywords": [
  12008. "compatibility",
  12009. "grapheme",
  12010. "intl",
  12011. "polyfill",
  12012. "portable",
  12013. "shim"
  12014. ],
  12015. "support": {
  12016. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  12017. },
  12018. "funding": [
  12019. {
  12020. "url": "https://symfony.com/sponsor",
  12021. "type": "custom"
  12022. },
  12023. {
  12024. "url": "https://github.com/fabpot",
  12025. "type": "github"
  12026. },
  12027. {
  12028. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12029. "type": "tidelift"
  12030. }
  12031. ],
  12032. "time": "2024-09-09T11:45:10+00:00"
  12033. },
  12034. {
  12035. "name": "symfony/polyfill-intl-idn",
  12036. "version": "v1.31.0",
  12037. "source": {
  12038. "type": "git",
  12039. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  12040. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  12041. },
  12042. "dist": {
  12043. "type": "zip",
  12044. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  12045. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  12046. "shasum": ""
  12047. },
  12048. "require": {
  12049. "php": ">=7.2",
  12050. "symfony/polyfill-intl-normalizer": "^1.10"
  12051. },
  12052. "suggest": {
  12053. "ext-intl": "For best performance"
  12054. },
  12055. "type": "library",
  12056. "extra": {
  12057. "thanks": {
  12058. "url": "https://github.com/symfony/polyfill",
  12059. "name": "symfony/polyfill"
  12060. }
  12061. },
  12062. "autoload": {
  12063. "files": [
  12064. "bootstrap.php"
  12065. ],
  12066. "psr-4": {
  12067. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  12068. }
  12069. },
  12070. "notification-url": "https://packagist.org/downloads/",
  12071. "license": [
  12072. "MIT"
  12073. ],
  12074. "authors": [
  12075. {
  12076. "name": "Laurent Bassin",
  12077. "email": "laurent@bassin.info"
  12078. },
  12079. {
  12080. "name": "Trevor Rowbotham",
  12081. "email": "trevor.rowbotham@pm.me"
  12082. },
  12083. {
  12084. "name": "Symfony Community",
  12085. "homepage": "https://symfony.com/contributors"
  12086. }
  12087. ],
  12088. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  12089. "homepage": "https://symfony.com",
  12090. "keywords": [
  12091. "compatibility",
  12092. "idn",
  12093. "intl",
  12094. "polyfill",
  12095. "portable",
  12096. "shim"
  12097. ],
  12098. "support": {
  12099. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  12100. },
  12101. "funding": [
  12102. {
  12103. "url": "https://symfony.com/sponsor",
  12104. "type": "custom"
  12105. },
  12106. {
  12107. "url": "https://github.com/fabpot",
  12108. "type": "github"
  12109. },
  12110. {
  12111. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12112. "type": "tidelift"
  12113. }
  12114. ],
  12115. "time": "2024-09-09T11:45:10+00:00"
  12116. },
  12117. {
  12118. "name": "symfony/polyfill-intl-normalizer",
  12119. "version": "v1.31.0",
  12120. "source": {
  12121. "type": "git",
  12122. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  12123. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  12124. },
  12125. "dist": {
  12126. "type": "zip",
  12127. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  12128. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  12129. "shasum": ""
  12130. },
  12131. "require": {
  12132. "php": ">=7.2"
  12133. },
  12134. "suggest": {
  12135. "ext-intl": "For best performance"
  12136. },
  12137. "type": "library",
  12138. "extra": {
  12139. "thanks": {
  12140. "url": "https://github.com/symfony/polyfill",
  12141. "name": "symfony/polyfill"
  12142. }
  12143. },
  12144. "autoload": {
  12145. "files": [
  12146. "bootstrap.php"
  12147. ],
  12148. "psr-4": {
  12149. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  12150. },
  12151. "classmap": [
  12152. "Resources/stubs"
  12153. ]
  12154. },
  12155. "notification-url": "https://packagist.org/downloads/",
  12156. "license": [
  12157. "MIT"
  12158. ],
  12159. "authors": [
  12160. {
  12161. "name": "Nicolas Grekas",
  12162. "email": "p@tchwork.com"
  12163. },
  12164. {
  12165. "name": "Symfony Community",
  12166. "homepage": "https://symfony.com/contributors"
  12167. }
  12168. ],
  12169. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  12170. "homepage": "https://symfony.com",
  12171. "keywords": [
  12172. "compatibility",
  12173. "intl",
  12174. "normalizer",
  12175. "polyfill",
  12176. "portable",
  12177. "shim"
  12178. ],
  12179. "support": {
  12180. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  12181. },
  12182. "funding": [
  12183. {
  12184. "url": "https://symfony.com/sponsor",
  12185. "type": "custom"
  12186. },
  12187. {
  12188. "url": "https://github.com/fabpot",
  12189. "type": "github"
  12190. },
  12191. {
  12192. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12193. "type": "tidelift"
  12194. }
  12195. ],
  12196. "time": "2024-09-09T11:45:10+00:00"
  12197. },
  12198. {
  12199. "name": "symfony/polyfill-mbstring",
  12200. "version": "v1.31.0",
  12201. "source": {
  12202. "type": "git",
  12203. "url": "https://github.com/symfony/polyfill-mbstring.git",
  12204. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  12205. },
  12206. "dist": {
  12207. "type": "zip",
  12208. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  12209. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  12210. "shasum": ""
  12211. },
  12212. "require": {
  12213. "php": ">=7.2"
  12214. },
  12215. "provide": {
  12216. "ext-mbstring": "*"
  12217. },
  12218. "suggest": {
  12219. "ext-mbstring": "For best performance"
  12220. },
  12221. "type": "library",
  12222. "extra": {
  12223. "thanks": {
  12224. "url": "https://github.com/symfony/polyfill",
  12225. "name": "symfony/polyfill"
  12226. }
  12227. },
  12228. "autoload": {
  12229. "files": [
  12230. "bootstrap.php"
  12231. ],
  12232. "psr-4": {
  12233. "Symfony\\Polyfill\\Mbstring\\": ""
  12234. }
  12235. },
  12236. "notification-url": "https://packagist.org/downloads/",
  12237. "license": [
  12238. "MIT"
  12239. ],
  12240. "authors": [
  12241. {
  12242. "name": "Nicolas Grekas",
  12243. "email": "p@tchwork.com"
  12244. },
  12245. {
  12246. "name": "Symfony Community",
  12247. "homepage": "https://symfony.com/contributors"
  12248. }
  12249. ],
  12250. "description": "Symfony polyfill for the Mbstring extension",
  12251. "homepage": "https://symfony.com",
  12252. "keywords": [
  12253. "compatibility",
  12254. "mbstring",
  12255. "polyfill",
  12256. "portable",
  12257. "shim"
  12258. ],
  12259. "support": {
  12260. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  12261. },
  12262. "funding": [
  12263. {
  12264. "url": "https://symfony.com/sponsor",
  12265. "type": "custom"
  12266. },
  12267. {
  12268. "url": "https://github.com/fabpot",
  12269. "type": "github"
  12270. },
  12271. {
  12272. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12273. "type": "tidelift"
  12274. }
  12275. ],
  12276. "time": "2024-09-09T11:45:10+00:00"
  12277. },
  12278. {
  12279. "name": "symfony/polyfill-php81",
  12280. "version": "v1.32.0",
  12281. "source": {
  12282. "type": "git",
  12283. "url": "https://github.com/symfony/polyfill-php81.git",
  12284. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  12285. },
  12286. "dist": {
  12287. "type": "zip",
  12288. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12289. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12290. "shasum": ""
  12291. },
  12292. "require": {
  12293. "php": ">=7.2"
  12294. },
  12295. "type": "library",
  12296. "extra": {
  12297. "thanks": {
  12298. "url": "https://github.com/symfony/polyfill",
  12299. "name": "symfony/polyfill"
  12300. }
  12301. },
  12302. "autoload": {
  12303. "files": [
  12304. "bootstrap.php"
  12305. ],
  12306. "psr-4": {
  12307. "Symfony\\Polyfill\\Php81\\": ""
  12308. },
  12309. "classmap": [
  12310. "Resources/stubs"
  12311. ]
  12312. },
  12313. "notification-url": "https://packagist.org/downloads/",
  12314. "license": [
  12315. "MIT"
  12316. ],
  12317. "authors": [
  12318. {
  12319. "name": "Nicolas Grekas",
  12320. "email": "p@tchwork.com"
  12321. },
  12322. {
  12323. "name": "Symfony Community",
  12324. "homepage": "https://symfony.com/contributors"
  12325. }
  12326. ],
  12327. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  12328. "homepage": "https://symfony.com",
  12329. "keywords": [
  12330. "compatibility",
  12331. "polyfill",
  12332. "portable",
  12333. "shim"
  12334. ],
  12335. "support": {
  12336. "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0"
  12337. },
  12338. "funding": [
  12339. {
  12340. "url": "https://symfony.com/sponsor",
  12341. "type": "custom"
  12342. },
  12343. {
  12344. "url": "https://github.com/fabpot",
  12345. "type": "github"
  12346. },
  12347. {
  12348. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12349. "type": "tidelift"
  12350. }
  12351. ],
  12352. "time": "2024-09-09T11:45:10+00:00"
  12353. },
  12354. {
  12355. "name": "symfony/polyfill-php83",
  12356. "version": "v1.31.0",
  12357. "source": {
  12358. "type": "git",
  12359. "url": "https://github.com/symfony/polyfill-php83.git",
  12360. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  12361. },
  12362. "dist": {
  12363. "type": "zip",
  12364. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  12365. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  12366. "shasum": ""
  12367. },
  12368. "require": {
  12369. "php": ">=7.2"
  12370. },
  12371. "type": "library",
  12372. "extra": {
  12373. "thanks": {
  12374. "url": "https://github.com/symfony/polyfill",
  12375. "name": "symfony/polyfill"
  12376. }
  12377. },
  12378. "autoload": {
  12379. "files": [
  12380. "bootstrap.php"
  12381. ],
  12382. "psr-4": {
  12383. "Symfony\\Polyfill\\Php83\\": ""
  12384. },
  12385. "classmap": [
  12386. "Resources/stubs"
  12387. ]
  12388. },
  12389. "notification-url": "https://packagist.org/downloads/",
  12390. "license": [
  12391. "MIT"
  12392. ],
  12393. "authors": [
  12394. {
  12395. "name": "Nicolas Grekas",
  12396. "email": "p@tchwork.com"
  12397. },
  12398. {
  12399. "name": "Symfony Community",
  12400. "homepage": "https://symfony.com/contributors"
  12401. }
  12402. ],
  12403. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  12404. "homepage": "https://symfony.com",
  12405. "keywords": [
  12406. "compatibility",
  12407. "polyfill",
  12408. "portable",
  12409. "shim"
  12410. ],
  12411. "support": {
  12412. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  12413. },
  12414. "funding": [
  12415. {
  12416. "url": "https://symfony.com/sponsor",
  12417. "type": "custom"
  12418. },
  12419. {
  12420. "url": "https://github.com/fabpot",
  12421. "type": "github"
  12422. },
  12423. {
  12424. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12425. "type": "tidelift"
  12426. }
  12427. ],
  12428. "time": "2024-09-09T11:45:10+00:00"
  12429. },
  12430. {
  12431. "name": "symfony/polyfill-php84",
  12432. "version": "v1.32.0",
  12433. "source": {
  12434. "type": "git",
  12435. "url": "https://github.com/symfony/polyfill-php84.git",
  12436. "reference": "000df7860439609837bbe28670b0be15783b7fbf"
  12437. },
  12438. "dist": {
  12439. "type": "zip",
  12440. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/000df7860439609837bbe28670b0be15783b7fbf",
  12441. "reference": "000df7860439609837bbe28670b0be15783b7fbf",
  12442. "shasum": ""
  12443. },
  12444. "require": {
  12445. "php": ">=7.2"
  12446. },
  12447. "type": "library",
  12448. "extra": {
  12449. "thanks": {
  12450. "url": "https://github.com/symfony/polyfill",
  12451. "name": "symfony/polyfill"
  12452. }
  12453. },
  12454. "autoload": {
  12455. "files": [
  12456. "bootstrap.php"
  12457. ],
  12458. "psr-4": {
  12459. "Symfony\\Polyfill\\Php84\\": ""
  12460. },
  12461. "classmap": [
  12462. "Resources/stubs"
  12463. ]
  12464. },
  12465. "notification-url": "https://packagist.org/downloads/",
  12466. "license": [
  12467. "MIT"
  12468. ],
  12469. "authors": [
  12470. {
  12471. "name": "Nicolas Grekas",
  12472. "email": "p@tchwork.com"
  12473. },
  12474. {
  12475. "name": "Symfony Community",
  12476. "homepage": "https://symfony.com/contributors"
  12477. }
  12478. ],
  12479. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  12480. "homepage": "https://symfony.com",
  12481. "keywords": [
  12482. "compatibility",
  12483. "polyfill",
  12484. "portable",
  12485. "shim"
  12486. ],
  12487. "support": {
  12488. "source": "https://github.com/symfony/polyfill-php84/tree/v1.32.0"
  12489. },
  12490. "funding": [
  12491. {
  12492. "url": "https://symfony.com/sponsor",
  12493. "type": "custom"
  12494. },
  12495. {
  12496. "url": "https://github.com/fabpot",
  12497. "type": "github"
  12498. },
  12499. {
  12500. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12501. "type": "tidelift"
  12502. }
  12503. ],
  12504. "time": "2025-02-20T12:04:08+00:00"
  12505. },
  12506. {
  12507. "name": "symfony/process",
  12508. "version": "v6.4.20",
  12509. "source": {
  12510. "type": "git",
  12511. "url": "https://github.com/symfony/process.git",
  12512. "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20"
  12513. },
  12514. "dist": {
  12515. "type": "zip",
  12516. "url": "https://api.github.com/repos/symfony/process/zipball/e2a61c16af36c9a07e5c9906498b73e091949a20",
  12517. "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20",
  12518. "shasum": ""
  12519. },
  12520. "require": {
  12521. "php": ">=8.1"
  12522. },
  12523. "type": "library",
  12524. "autoload": {
  12525. "psr-4": {
  12526. "Symfony\\Component\\Process\\": ""
  12527. },
  12528. "exclude-from-classmap": [
  12529. "/Tests/"
  12530. ]
  12531. },
  12532. "notification-url": "https://packagist.org/downloads/",
  12533. "license": [
  12534. "MIT"
  12535. ],
  12536. "authors": [
  12537. {
  12538. "name": "Fabien Potencier",
  12539. "email": "fabien@symfony.com"
  12540. },
  12541. {
  12542. "name": "Symfony Community",
  12543. "homepage": "https://symfony.com/contributors"
  12544. }
  12545. ],
  12546. "description": "Executes commands in sub-processes",
  12547. "homepage": "https://symfony.com",
  12548. "support": {
  12549. "source": "https://github.com/symfony/process/tree/v6.4.20"
  12550. },
  12551. "funding": [
  12552. {
  12553. "url": "https://symfony.com/sponsor",
  12554. "type": "custom"
  12555. },
  12556. {
  12557. "url": "https://github.com/fabpot",
  12558. "type": "github"
  12559. },
  12560. {
  12561. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12562. "type": "tidelift"
  12563. }
  12564. ],
  12565. "time": "2025-03-10T17:11:00+00:00"
  12566. },
  12567. {
  12568. "name": "symfony/psr-http-message-bridge",
  12569. "version": "v6.4.13",
  12570. "source": {
  12571. "type": "git",
  12572. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  12573. "reference": "c9cf83326a1074f83a738fc5320945abf7fb7fec"
  12574. },
  12575. "dist": {
  12576. "type": "zip",
  12577. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/c9cf83326a1074f83a738fc5320945abf7fb7fec",
  12578. "reference": "c9cf83326a1074f83a738fc5320945abf7fb7fec",
  12579. "shasum": ""
  12580. },
  12581. "require": {
  12582. "php": ">=8.1",
  12583. "psr/http-message": "^1.0|^2.0",
  12584. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  12585. },
  12586. "conflict": {
  12587. "php-http/discovery": "<1.15",
  12588. "symfony/http-kernel": "<6.2"
  12589. },
  12590. "require-dev": {
  12591. "nyholm/psr7": "^1.1",
  12592. "php-http/discovery": "^1.15",
  12593. "psr/log": "^1.1.4|^2|^3",
  12594. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  12595. "symfony/config": "^5.4|^6.0|^7.0",
  12596. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  12597. "symfony/framework-bundle": "^6.2|^7.0",
  12598. "symfony/http-kernel": "^6.2|^7.0"
  12599. },
  12600. "type": "symfony-bridge",
  12601. "autoload": {
  12602. "psr-4": {
  12603. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  12604. },
  12605. "exclude-from-classmap": [
  12606. "/Tests/"
  12607. ]
  12608. },
  12609. "notification-url": "https://packagist.org/downloads/",
  12610. "license": [
  12611. "MIT"
  12612. ],
  12613. "authors": [
  12614. {
  12615. "name": "Fabien Potencier",
  12616. "email": "fabien@symfony.com"
  12617. },
  12618. {
  12619. "name": "Symfony Community",
  12620. "homepage": "https://symfony.com/contributors"
  12621. }
  12622. ],
  12623. "description": "PSR HTTP message bridge",
  12624. "homepage": "https://symfony.com",
  12625. "keywords": [
  12626. "http",
  12627. "http-message",
  12628. "psr-17",
  12629. "psr-7"
  12630. ],
  12631. "support": {
  12632. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.13"
  12633. },
  12634. "funding": [
  12635. {
  12636. "url": "https://symfony.com/sponsor",
  12637. "type": "custom"
  12638. },
  12639. {
  12640. "url": "https://github.com/fabpot",
  12641. "type": "github"
  12642. },
  12643. {
  12644. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12645. "type": "tidelift"
  12646. }
  12647. ],
  12648. "time": "2024-09-25T14:18:03+00:00"
  12649. },
  12650. {
  12651. "name": "symfony/routing",
  12652. "version": "v6.4.22",
  12653. "source": {
  12654. "type": "git",
  12655. "url": "https://github.com/symfony/routing.git",
  12656. "reference": "1f5234e8457164a3a0038a4c0a4ba27876a9c670"
  12657. },
  12658. "dist": {
  12659. "type": "zip",
  12660. "url": "https://api.github.com/repos/symfony/routing/zipball/1f5234e8457164a3a0038a4c0a4ba27876a9c670",
  12661. "reference": "1f5234e8457164a3a0038a4c0a4ba27876a9c670",
  12662. "shasum": ""
  12663. },
  12664. "require": {
  12665. "php": ">=8.1",
  12666. "symfony/deprecation-contracts": "^2.5|^3"
  12667. },
  12668. "conflict": {
  12669. "doctrine/annotations": "<1.12",
  12670. "symfony/config": "<6.2",
  12671. "symfony/dependency-injection": "<5.4",
  12672. "symfony/yaml": "<5.4"
  12673. },
  12674. "require-dev": {
  12675. "doctrine/annotations": "^1.12|^2",
  12676. "psr/log": "^1|^2|^3",
  12677. "symfony/config": "^6.2|^7.0",
  12678. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12679. "symfony/expression-language": "^5.4|^6.0|^7.0",
  12680. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  12681. "symfony/yaml": "^5.4|^6.0|^7.0"
  12682. },
  12683. "type": "library",
  12684. "autoload": {
  12685. "psr-4": {
  12686. "Symfony\\Component\\Routing\\": ""
  12687. },
  12688. "exclude-from-classmap": [
  12689. "/Tests/"
  12690. ]
  12691. },
  12692. "notification-url": "https://packagist.org/downloads/",
  12693. "license": [
  12694. "MIT"
  12695. ],
  12696. "authors": [
  12697. {
  12698. "name": "Fabien Potencier",
  12699. "email": "fabien@symfony.com"
  12700. },
  12701. {
  12702. "name": "Symfony Community",
  12703. "homepage": "https://symfony.com/contributors"
  12704. }
  12705. ],
  12706. "description": "Maps an HTTP request to a set of configuration variables",
  12707. "homepage": "https://symfony.com",
  12708. "keywords": [
  12709. "router",
  12710. "routing",
  12711. "uri",
  12712. "url"
  12713. ],
  12714. "support": {
  12715. "source": "https://github.com/symfony/routing/tree/v6.4.22"
  12716. },
  12717. "funding": [
  12718. {
  12719. "url": "https://symfony.com/sponsor",
  12720. "type": "custom"
  12721. },
  12722. {
  12723. "url": "https://github.com/fabpot",
  12724. "type": "github"
  12725. },
  12726. {
  12727. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12728. "type": "tidelift"
  12729. }
  12730. ],
  12731. "time": "2025-04-27T16:08:38+00:00"
  12732. },
  12733. {
  12734. "name": "symfony/serializer",
  12735. "version": "v6.4.23",
  12736. "source": {
  12737. "type": "git",
  12738. "url": "https://github.com/symfony/serializer.git",
  12739. "reference": "b40a697a2bb2c3d841a1f9e34a8a9f50bf9d1d06"
  12740. },
  12741. "dist": {
  12742. "type": "zip",
  12743. "url": "https://api.github.com/repos/symfony/serializer/zipball/b40a697a2bb2c3d841a1f9e34a8a9f50bf9d1d06",
  12744. "reference": "b40a697a2bb2c3d841a1f9e34a8a9f50bf9d1d06",
  12745. "shasum": ""
  12746. },
  12747. "require": {
  12748. "php": ">=8.1",
  12749. "symfony/deprecation-contracts": "^2.5|^3",
  12750. "symfony/polyfill-ctype": "~1.8"
  12751. },
  12752. "conflict": {
  12753. "doctrine/annotations": "<1.12",
  12754. "phpdocumentor/reflection-docblock": "<3.2.2",
  12755. "phpdocumentor/type-resolver": "<1.4.0",
  12756. "symfony/dependency-injection": "<5.4",
  12757. "symfony/property-access": "<5.4",
  12758. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  12759. "symfony/uid": "<5.4",
  12760. "symfony/validator": "<6.4",
  12761. "symfony/yaml": "<5.4"
  12762. },
  12763. "require-dev": {
  12764. "doctrine/annotations": "^1.12|^2",
  12765. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  12766. "seld/jsonlint": "^1.10",
  12767. "symfony/cache": "^5.4|^6.0|^7.0",
  12768. "symfony/config": "^5.4|^6.0|^7.0",
  12769. "symfony/console": "^5.4|^6.0|^7.0",
  12770. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12771. "symfony/error-handler": "^5.4|^6.0|^7.0",
  12772. "symfony/filesystem": "^5.4|^6.0|^7.0",
  12773. "symfony/form": "^5.4|^6.0|^7.0",
  12774. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  12775. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  12776. "symfony/messenger": "^5.4|^6.0|^7.0",
  12777. "symfony/mime": "^5.4|^6.0|^7.0",
  12778. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  12779. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  12780. "symfony/translation-contracts": "^2.5|^3",
  12781. "symfony/uid": "^5.4|^6.0|^7.0",
  12782. "symfony/validator": "^6.4|^7.0",
  12783. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  12784. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  12785. "symfony/yaml": "^5.4|^6.0|^7.0"
  12786. },
  12787. "type": "library",
  12788. "autoload": {
  12789. "psr-4": {
  12790. "Symfony\\Component\\Serializer\\": ""
  12791. },
  12792. "exclude-from-classmap": [
  12793. "/Tests/"
  12794. ]
  12795. },
  12796. "notification-url": "https://packagist.org/downloads/",
  12797. "license": [
  12798. "MIT"
  12799. ],
  12800. "authors": [
  12801. {
  12802. "name": "Fabien Potencier",
  12803. "email": "fabien@symfony.com"
  12804. },
  12805. {
  12806. "name": "Symfony Community",
  12807. "homepage": "https://symfony.com/contributors"
  12808. }
  12809. ],
  12810. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  12811. "homepage": "https://symfony.com",
  12812. "support": {
  12813. "source": "https://github.com/symfony/serializer/tree/v6.4.23"
  12814. },
  12815. "funding": [
  12816. {
  12817. "url": "https://symfony.com/sponsor",
  12818. "type": "custom"
  12819. },
  12820. {
  12821. "url": "https://github.com/fabpot",
  12822. "type": "github"
  12823. },
  12824. {
  12825. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12826. "type": "tidelift"
  12827. }
  12828. ],
  12829. "time": "2025-06-27T15:34:20+00:00"
  12830. },
  12831. {
  12832. "name": "symfony/service-contracts",
  12833. "version": "v3.5.1",
  12834. "source": {
  12835. "type": "git",
  12836. "url": "https://github.com/symfony/service-contracts.git",
  12837. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  12838. },
  12839. "dist": {
  12840. "type": "zip",
  12841. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  12842. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  12843. "shasum": ""
  12844. },
  12845. "require": {
  12846. "php": ">=8.1",
  12847. "psr/container": "^1.1|^2.0",
  12848. "symfony/deprecation-contracts": "^2.5|^3"
  12849. },
  12850. "conflict": {
  12851. "ext-psr": "<1.1|>=2"
  12852. },
  12853. "type": "library",
  12854. "extra": {
  12855. "thanks": {
  12856. "url": "https://github.com/symfony/contracts",
  12857. "name": "symfony/contracts"
  12858. },
  12859. "branch-alias": {
  12860. "dev-main": "3.5-dev"
  12861. }
  12862. },
  12863. "autoload": {
  12864. "psr-4": {
  12865. "Symfony\\Contracts\\Service\\": ""
  12866. },
  12867. "exclude-from-classmap": [
  12868. "/Test/"
  12869. ]
  12870. },
  12871. "notification-url": "https://packagist.org/downloads/",
  12872. "license": [
  12873. "MIT"
  12874. ],
  12875. "authors": [
  12876. {
  12877. "name": "Nicolas Grekas",
  12878. "email": "p@tchwork.com"
  12879. },
  12880. {
  12881. "name": "Symfony Community",
  12882. "homepage": "https://symfony.com/contributors"
  12883. }
  12884. ],
  12885. "description": "Generic abstractions related to writing services",
  12886. "homepage": "https://symfony.com",
  12887. "keywords": [
  12888. "abstractions",
  12889. "contracts",
  12890. "decoupling",
  12891. "interfaces",
  12892. "interoperability",
  12893. "standards"
  12894. ],
  12895. "support": {
  12896. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  12897. },
  12898. "funding": [
  12899. {
  12900. "url": "https://symfony.com/sponsor",
  12901. "type": "custom"
  12902. },
  12903. {
  12904. "url": "https://github.com/fabpot",
  12905. "type": "github"
  12906. },
  12907. {
  12908. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12909. "type": "tidelift"
  12910. }
  12911. ],
  12912. "time": "2024-09-25T14:20:29+00:00"
  12913. },
  12914. {
  12915. "name": "symfony/string",
  12916. "version": "v6.4.21",
  12917. "source": {
  12918. "type": "git",
  12919. "url": "https://github.com/symfony/string.git",
  12920. "reference": "73e2c6966a5aef1d4892873ed5322245295370c6"
  12921. },
  12922. "dist": {
  12923. "type": "zip",
  12924. "url": "https://api.github.com/repos/symfony/string/zipball/73e2c6966a5aef1d4892873ed5322245295370c6",
  12925. "reference": "73e2c6966a5aef1d4892873ed5322245295370c6",
  12926. "shasum": ""
  12927. },
  12928. "require": {
  12929. "php": ">=8.1",
  12930. "symfony/polyfill-ctype": "~1.8",
  12931. "symfony/polyfill-intl-grapheme": "~1.0",
  12932. "symfony/polyfill-intl-normalizer": "~1.0",
  12933. "symfony/polyfill-mbstring": "~1.0"
  12934. },
  12935. "conflict": {
  12936. "symfony/translation-contracts": "<2.5"
  12937. },
  12938. "require-dev": {
  12939. "symfony/error-handler": "^5.4|^6.0|^7.0",
  12940. "symfony/http-client": "^5.4|^6.0|^7.0",
  12941. "symfony/intl": "^6.2|^7.0",
  12942. "symfony/translation-contracts": "^2.5|^3.0",
  12943. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  12944. },
  12945. "type": "library",
  12946. "autoload": {
  12947. "files": [
  12948. "Resources/functions.php"
  12949. ],
  12950. "psr-4": {
  12951. "Symfony\\Component\\String\\": ""
  12952. },
  12953. "exclude-from-classmap": [
  12954. "/Tests/"
  12955. ]
  12956. },
  12957. "notification-url": "https://packagist.org/downloads/",
  12958. "license": [
  12959. "MIT"
  12960. ],
  12961. "authors": [
  12962. {
  12963. "name": "Nicolas Grekas",
  12964. "email": "p@tchwork.com"
  12965. },
  12966. {
  12967. "name": "Symfony Community",
  12968. "homepage": "https://symfony.com/contributors"
  12969. }
  12970. ],
  12971. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  12972. "homepage": "https://symfony.com",
  12973. "keywords": [
  12974. "grapheme",
  12975. "i18n",
  12976. "string",
  12977. "unicode",
  12978. "utf-8",
  12979. "utf8"
  12980. ],
  12981. "support": {
  12982. "source": "https://github.com/symfony/string/tree/v6.4.21"
  12983. },
  12984. "funding": [
  12985. {
  12986. "url": "https://symfony.com/sponsor",
  12987. "type": "custom"
  12988. },
  12989. {
  12990. "url": "https://github.com/fabpot",
  12991. "type": "github"
  12992. },
  12993. {
  12994. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12995. "type": "tidelift"
  12996. }
  12997. ],
  12998. "time": "2025-04-18T15:23:29+00:00"
  12999. },
  13000. {
  13001. "name": "symfony/translation-contracts",
  13002. "version": "v3.5.1",
  13003. "source": {
  13004. "type": "git",
  13005. "url": "https://github.com/symfony/translation-contracts.git",
  13006. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  13007. },
  13008. "dist": {
  13009. "type": "zip",
  13010. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  13011. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  13012. "shasum": ""
  13013. },
  13014. "require": {
  13015. "php": ">=8.1"
  13016. },
  13017. "type": "library",
  13018. "extra": {
  13019. "thanks": {
  13020. "url": "https://github.com/symfony/contracts",
  13021. "name": "symfony/contracts"
  13022. },
  13023. "branch-alias": {
  13024. "dev-main": "3.5-dev"
  13025. }
  13026. },
  13027. "autoload": {
  13028. "psr-4": {
  13029. "Symfony\\Contracts\\Translation\\": ""
  13030. },
  13031. "exclude-from-classmap": [
  13032. "/Test/"
  13033. ]
  13034. },
  13035. "notification-url": "https://packagist.org/downloads/",
  13036. "license": [
  13037. "MIT"
  13038. ],
  13039. "authors": [
  13040. {
  13041. "name": "Nicolas Grekas",
  13042. "email": "p@tchwork.com"
  13043. },
  13044. {
  13045. "name": "Symfony Community",
  13046. "homepage": "https://symfony.com/contributors"
  13047. }
  13048. ],
  13049. "description": "Generic abstractions related to translation",
  13050. "homepage": "https://symfony.com",
  13051. "keywords": [
  13052. "abstractions",
  13053. "contracts",
  13054. "decoupling",
  13055. "interfaces",
  13056. "interoperability",
  13057. "standards"
  13058. ],
  13059. "support": {
  13060. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  13061. },
  13062. "funding": [
  13063. {
  13064. "url": "https://symfony.com/sponsor",
  13065. "type": "custom"
  13066. },
  13067. {
  13068. "url": "https://github.com/fabpot",
  13069. "type": "github"
  13070. },
  13071. {
  13072. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13073. "type": "tidelift"
  13074. }
  13075. ],
  13076. "time": "2024-09-25T14:20:29+00:00"
  13077. },
  13078. {
  13079. "name": "symfony/validator",
  13080. "version": "v6.4.23",
  13081. "source": {
  13082. "type": "git",
  13083. "url": "https://github.com/symfony/validator.git",
  13084. "reference": "6506760ab57e7cda5bde9cdaed736526162284bc"
  13085. },
  13086. "dist": {
  13087. "type": "zip",
  13088. "url": "https://api.github.com/repos/symfony/validator/zipball/6506760ab57e7cda5bde9cdaed736526162284bc",
  13089. "reference": "6506760ab57e7cda5bde9cdaed736526162284bc",
  13090. "shasum": ""
  13091. },
  13092. "require": {
  13093. "php": ">=8.1",
  13094. "symfony/deprecation-contracts": "^2.5|^3",
  13095. "symfony/polyfill-ctype": "~1.8",
  13096. "symfony/polyfill-mbstring": "~1.0",
  13097. "symfony/polyfill-php83": "^1.27",
  13098. "symfony/translation-contracts": "^2.5|^3"
  13099. },
  13100. "conflict": {
  13101. "doctrine/annotations": "<1.13",
  13102. "doctrine/lexer": "<1.1",
  13103. "symfony/dependency-injection": "<5.4",
  13104. "symfony/expression-language": "<5.4",
  13105. "symfony/http-kernel": "<5.4",
  13106. "symfony/intl": "<5.4",
  13107. "symfony/property-info": "<5.4",
  13108. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  13109. "symfony/yaml": "<5.4"
  13110. },
  13111. "require-dev": {
  13112. "doctrine/annotations": "^1.13|^2",
  13113. "egulias/email-validator": "^2.1.10|^3|^4",
  13114. "symfony/cache": "^5.4|^6.0|^7.0",
  13115. "symfony/config": "^5.4|^6.0|^7.0",
  13116. "symfony/console": "^5.4|^6.0|^7.0",
  13117. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  13118. "symfony/expression-language": "^5.4|^6.0|^7.0",
  13119. "symfony/finder": "^5.4|^6.0|^7.0",
  13120. "symfony/http-client": "^5.4|^6.0|^7.0",
  13121. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  13122. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  13123. "symfony/intl": "^5.4|^6.0|^7.0",
  13124. "symfony/mime": "^5.4|^6.0|^7.0",
  13125. "symfony/property-access": "^5.4|^6.0|^7.0",
  13126. "symfony/property-info": "^5.4|^6.0|^7.0",
  13127. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  13128. "symfony/yaml": "^5.4|^6.0|^7.0"
  13129. },
  13130. "type": "library",
  13131. "autoload": {
  13132. "psr-4": {
  13133. "Symfony\\Component\\Validator\\": ""
  13134. },
  13135. "exclude-from-classmap": [
  13136. "/Tests/",
  13137. "/Resources/bin/"
  13138. ]
  13139. },
  13140. "notification-url": "https://packagist.org/downloads/",
  13141. "license": [
  13142. "MIT"
  13143. ],
  13144. "authors": [
  13145. {
  13146. "name": "Fabien Potencier",
  13147. "email": "fabien@symfony.com"
  13148. },
  13149. {
  13150. "name": "Symfony Community",
  13151. "homepage": "https://symfony.com/contributors"
  13152. }
  13153. ],
  13154. "description": "Provides tools to validate values",
  13155. "homepage": "https://symfony.com",
  13156. "support": {
  13157. "source": "https://github.com/symfony/validator/tree/v6.4.23"
  13158. },
  13159. "funding": [
  13160. {
  13161. "url": "https://symfony.com/sponsor",
  13162. "type": "custom"
  13163. },
  13164. {
  13165. "url": "https://github.com/fabpot",
  13166. "type": "github"
  13167. },
  13168. {
  13169. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13170. "type": "tidelift"
  13171. }
  13172. ],
  13173. "time": "2025-06-26T07:25:45+00:00"
  13174. },
  13175. {
  13176. "name": "symfony/var-dumper",
  13177. "version": "v6.4.23",
  13178. "source": {
  13179. "type": "git",
  13180. "url": "https://github.com/symfony/var-dumper.git",
  13181. "reference": "d55b1834cdbfcc31bc2cd7e095ba5ed9a88f6600"
  13182. },
  13183. "dist": {
  13184. "type": "zip",
  13185. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/d55b1834cdbfcc31bc2cd7e095ba5ed9a88f6600",
  13186. "reference": "d55b1834cdbfcc31bc2cd7e095ba5ed9a88f6600",
  13187. "shasum": ""
  13188. },
  13189. "require": {
  13190. "php": ">=8.1",
  13191. "symfony/deprecation-contracts": "^2.5|^3",
  13192. "symfony/polyfill-mbstring": "~1.0"
  13193. },
  13194. "conflict": {
  13195. "symfony/console": "<5.4"
  13196. },
  13197. "require-dev": {
  13198. "ext-iconv": "*",
  13199. "symfony/console": "^5.4|^6.0|^7.0",
  13200. "symfony/error-handler": "^6.3|^7.0",
  13201. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  13202. "symfony/process": "^5.4|^6.0|^7.0",
  13203. "symfony/uid": "^5.4|^6.0|^7.0",
  13204. "twig/twig": "^2.13|^3.0.4"
  13205. },
  13206. "bin": [
  13207. "Resources/bin/var-dump-server"
  13208. ],
  13209. "type": "library",
  13210. "autoload": {
  13211. "files": [
  13212. "Resources/functions/dump.php"
  13213. ],
  13214. "psr-4": {
  13215. "Symfony\\Component\\VarDumper\\": ""
  13216. },
  13217. "exclude-from-classmap": [
  13218. "/Tests/"
  13219. ]
  13220. },
  13221. "notification-url": "https://packagist.org/downloads/",
  13222. "license": [
  13223. "MIT"
  13224. ],
  13225. "authors": [
  13226. {
  13227. "name": "Nicolas Grekas",
  13228. "email": "p@tchwork.com"
  13229. },
  13230. {
  13231. "name": "Symfony Community",
  13232. "homepage": "https://symfony.com/contributors"
  13233. }
  13234. ],
  13235. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  13236. "homepage": "https://symfony.com",
  13237. "keywords": [
  13238. "debug",
  13239. "dump"
  13240. ],
  13241. "support": {
  13242. "source": "https://github.com/symfony/var-dumper/tree/v6.4.23"
  13243. },
  13244. "funding": [
  13245. {
  13246. "url": "https://symfony.com/sponsor",
  13247. "type": "custom"
  13248. },
  13249. {
  13250. "url": "https://github.com/fabpot",
  13251. "type": "github"
  13252. },
  13253. {
  13254. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13255. "type": "tidelift"
  13256. }
  13257. ],
  13258. "time": "2025-06-27T15:05:27+00:00"
  13259. },
  13260. {
  13261. "name": "symfony/var-exporter",
  13262. "version": "v6.4.22",
  13263. "source": {
  13264. "type": "git",
  13265. "url": "https://github.com/symfony/var-exporter.git",
  13266. "reference": "f28cf841f5654955c9f88ceaf4b9dc29571988a9"
  13267. },
  13268. "dist": {
  13269. "type": "zip",
  13270. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/f28cf841f5654955c9f88ceaf4b9dc29571988a9",
  13271. "reference": "f28cf841f5654955c9f88ceaf4b9dc29571988a9",
  13272. "shasum": ""
  13273. },
  13274. "require": {
  13275. "php": ">=8.1",
  13276. "symfony/deprecation-contracts": "^2.5|^3"
  13277. },
  13278. "require-dev": {
  13279. "symfony/property-access": "^6.4|^7.0",
  13280. "symfony/serializer": "^6.4|^7.0",
  13281. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  13282. },
  13283. "type": "library",
  13284. "autoload": {
  13285. "psr-4": {
  13286. "Symfony\\Component\\VarExporter\\": ""
  13287. },
  13288. "exclude-from-classmap": [
  13289. "/Tests/"
  13290. ]
  13291. },
  13292. "notification-url": "https://packagist.org/downloads/",
  13293. "license": [
  13294. "MIT"
  13295. ],
  13296. "authors": [
  13297. {
  13298. "name": "Nicolas Grekas",
  13299. "email": "p@tchwork.com"
  13300. },
  13301. {
  13302. "name": "Symfony Community",
  13303. "homepage": "https://symfony.com/contributors"
  13304. }
  13305. ],
  13306. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  13307. "homepage": "https://symfony.com",
  13308. "keywords": [
  13309. "clone",
  13310. "construct",
  13311. "export",
  13312. "hydrate",
  13313. "instantiate",
  13314. "lazy-loading",
  13315. "proxy",
  13316. "serialize"
  13317. ],
  13318. "support": {
  13319. "source": "https://github.com/symfony/var-exporter/tree/v6.4.22"
  13320. },
  13321. "funding": [
  13322. {
  13323. "url": "https://symfony.com/sponsor",
  13324. "type": "custom"
  13325. },
  13326. {
  13327. "url": "https://github.com/fabpot",
  13328. "type": "github"
  13329. },
  13330. {
  13331. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13332. "type": "tidelift"
  13333. }
  13334. ],
  13335. "time": "2025-05-14T13:00:13+00:00"
  13336. },
  13337. {
  13338. "name": "symfony/yaml",
  13339. "version": "v6.4.23",
  13340. "source": {
  13341. "type": "git",
  13342. "url": "https://github.com/symfony/yaml.git",
  13343. "reference": "93e29e0deb5f1b2e360adfb389a20d25eb81a27b"
  13344. },
  13345. "dist": {
  13346. "type": "zip",
  13347. "url": "https://api.github.com/repos/symfony/yaml/zipball/93e29e0deb5f1b2e360adfb389a20d25eb81a27b",
  13348. "reference": "93e29e0deb5f1b2e360adfb389a20d25eb81a27b",
  13349. "shasum": ""
  13350. },
  13351. "require": {
  13352. "php": ">=8.1",
  13353. "symfony/deprecation-contracts": "^2.5|^3",
  13354. "symfony/polyfill-ctype": "^1.8"
  13355. },
  13356. "conflict": {
  13357. "symfony/console": "<5.4"
  13358. },
  13359. "require-dev": {
  13360. "symfony/console": "^5.4|^6.0|^7.0"
  13361. },
  13362. "bin": [
  13363. "Resources/bin/yaml-lint"
  13364. ],
  13365. "type": "library",
  13366. "autoload": {
  13367. "psr-4": {
  13368. "Symfony\\Component\\Yaml\\": ""
  13369. },
  13370. "exclude-from-classmap": [
  13371. "/Tests/"
  13372. ]
  13373. },
  13374. "notification-url": "https://packagist.org/downloads/",
  13375. "license": [
  13376. "MIT"
  13377. ],
  13378. "authors": [
  13379. {
  13380. "name": "Fabien Potencier",
  13381. "email": "fabien@symfony.com"
  13382. },
  13383. {
  13384. "name": "Symfony Community",
  13385. "homepage": "https://symfony.com/contributors"
  13386. }
  13387. ],
  13388. "description": "Loads and dumps YAML files",
  13389. "homepage": "https://symfony.com",
  13390. "support": {
  13391. "source": "https://github.com/symfony/yaml/tree/v6.4.23"
  13392. },
  13393. "funding": [
  13394. {
  13395. "url": "https://symfony.com/sponsor",
  13396. "type": "custom"
  13397. },
  13398. {
  13399. "url": "https://github.com/fabpot",
  13400. "type": "github"
  13401. },
  13402. {
  13403. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13404. "type": "tidelift"
  13405. }
  13406. ],
  13407. "time": "2025-06-03T06:46:12+00:00"
  13408. },
  13409. {
  13410. "name": "twig/twig",
  13411. "version": "v3.20.0",
  13412. "source": {
  13413. "type": "git",
  13414. "url": "https://github.com/twigphp/Twig.git",
  13415. "reference": "3468920399451a384bef53cf7996965f7cd40183"
  13416. },
  13417. "dist": {
  13418. "type": "zip",
  13419. "url": "https://api.github.com/repos/twigphp/Twig/zipball/3468920399451a384bef53cf7996965f7cd40183",
  13420. "reference": "3468920399451a384bef53cf7996965f7cd40183",
  13421. "shasum": ""
  13422. },
  13423. "require": {
  13424. "php": ">=8.1.0",
  13425. "symfony/deprecation-contracts": "^2.5|^3",
  13426. "symfony/polyfill-ctype": "^1.8",
  13427. "symfony/polyfill-mbstring": "^1.3"
  13428. },
  13429. "require-dev": {
  13430. "phpstan/phpstan": "^2.0",
  13431. "psr/container": "^1.0|^2.0",
  13432. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  13433. },
  13434. "type": "library",
  13435. "autoload": {
  13436. "files": [
  13437. "src/Resources/core.php",
  13438. "src/Resources/debug.php",
  13439. "src/Resources/escaper.php",
  13440. "src/Resources/string_loader.php"
  13441. ],
  13442. "psr-4": {
  13443. "Twig\\": "src/"
  13444. }
  13445. },
  13446. "notification-url": "https://packagist.org/downloads/",
  13447. "license": [
  13448. "BSD-3-Clause"
  13449. ],
  13450. "authors": [
  13451. {
  13452. "name": "Fabien Potencier",
  13453. "email": "fabien@symfony.com",
  13454. "homepage": "http://fabien.potencier.org",
  13455. "role": "Lead Developer"
  13456. },
  13457. {
  13458. "name": "Twig Team",
  13459. "role": "Contributors"
  13460. },
  13461. {
  13462. "name": "Armin Ronacher",
  13463. "email": "armin.ronacher@active-4.com",
  13464. "role": "Project Founder"
  13465. }
  13466. ],
  13467. "description": "Twig, the flexible, fast, and secure template language for PHP",
  13468. "homepage": "https://twig.symfony.com",
  13469. "keywords": [
  13470. "templating"
  13471. ],
  13472. "support": {
  13473. "issues": "https://github.com/twigphp/Twig/issues",
  13474. "source": "https://github.com/twigphp/Twig/tree/v3.20.0"
  13475. },
  13476. "funding": [
  13477. {
  13478. "url": "https://github.com/fabpot",
  13479. "type": "github"
  13480. },
  13481. {
  13482. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  13483. "type": "tidelift"
  13484. }
  13485. ],
  13486. "time": "2025-02-13T08:34:43+00:00"
  13487. },
  13488. {
  13489. "name": "webflo/drupal-finder",
  13490. "version": "1.3.1",
  13491. "source": {
  13492. "type": "git",
  13493. "url": "https://github.com/webflo/drupal-finder.git",
  13494. "reference": "73045060b0894c77962a10cff047f72872d8810c"
  13495. },
  13496. "dist": {
  13497. "type": "zip",
  13498. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
  13499. "reference": "73045060b0894c77962a10cff047f72872d8810c",
  13500. "shasum": ""
  13501. },
  13502. "require": {
  13503. "composer-runtime-api": "^2.2",
  13504. "php": ">=8.1"
  13505. },
  13506. "require-dev": {
  13507. "mikey179/vfsstream": "^1.6",
  13508. "phpunit/phpunit": "^10.4",
  13509. "symfony/process": "^6.4"
  13510. },
  13511. "type": "library",
  13512. "autoload": {
  13513. "psr-4": {
  13514. "DrupalFinder\\": "src/"
  13515. }
  13516. },
  13517. "notification-url": "https://packagist.org/downloads/",
  13518. "license": [
  13519. "GPL-2.0-or-later"
  13520. ],
  13521. "authors": [
  13522. {
  13523. "name": "Florian Weber",
  13524. "email": "florian@webflo.org"
  13525. }
  13526. ],
  13527. "description": "Helper class to locate a Drupal installation.",
  13528. "support": {
  13529. "issues": "https://github.com/webflo/drupal-finder/issues",
  13530. "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
  13531. },
  13532. "time": "2024-06-28T13:45:36+00:00"
  13533. },
  13534. {
  13535. "name": "wikimedia/composer-merge-plugin",
  13536. "version": "v2.1.0",
  13537. "source": {
  13538. "type": "git",
  13539. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  13540. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc"
  13541. },
  13542. "dist": {
  13543. "type": "zip",
  13544. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  13545. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  13546. "shasum": ""
  13547. },
  13548. "require": {
  13549. "composer-plugin-api": "^1.1||^2.0",
  13550. "php": ">=7.2.0"
  13551. },
  13552. "require-dev": {
  13553. "composer/composer": "^1.1||^2.0",
  13554. "ext-json": "*",
  13555. "mediawiki/mediawiki-phan-config": "0.11.1",
  13556. "php-parallel-lint/php-parallel-lint": "~1.3.1",
  13557. "phpspec/prophecy": "~1.15.0",
  13558. "phpunit/phpunit": "^8.5||^9.0",
  13559. "squizlabs/php_codesniffer": "~3.7.1"
  13560. },
  13561. "type": "composer-plugin",
  13562. "extra": {
  13563. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin",
  13564. "branch-alias": {
  13565. "dev-master": "2.x-dev"
  13566. }
  13567. },
  13568. "autoload": {
  13569. "psr-4": {
  13570. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  13571. }
  13572. },
  13573. "notification-url": "https://packagist.org/downloads/",
  13574. "license": [
  13575. "MIT"
  13576. ],
  13577. "authors": [
  13578. {
  13579. "name": "Bryan Davis",
  13580. "email": "bd808@wikimedia.org"
  13581. }
  13582. ],
  13583. "description": "Composer plugin to merge multiple composer.json files",
  13584. "support": {
  13585. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  13586. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0"
  13587. },
  13588. "time": "2023-04-15T19:07:00+00:00"
  13589. },
  13590. {
  13591. "name": "willdurand/geocoder",
  13592. "version": "4.6.0",
  13593. "source": {
  13594. "type": "git",
  13595. "url": "https://github.com/geocoder-php/php-common.git",
  13596. "reference": "be3d9ed0fddf8c698ee079d8a07ae9520b4a49a1"
  13597. },
  13598. "dist": {
  13599. "type": "zip",
  13600. "url": "https://api.github.com/repos/geocoder-php/php-common/zipball/be3d9ed0fddf8c698ee079d8a07ae9520b4a49a1",
  13601. "reference": "be3d9ed0fddf8c698ee079d8a07ae9520b4a49a1",
  13602. "shasum": ""
  13603. },
  13604. "require": {
  13605. "php": "^7.4 || ^8.0"
  13606. },
  13607. "require-dev": {
  13608. "nyholm/nsa": "^1.1",
  13609. "phpunit/phpunit": "^9.5",
  13610. "symfony/stopwatch": "~2.5"
  13611. },
  13612. "suggest": {
  13613. "symfony/stopwatch": "If you want to use the TimedGeocoder"
  13614. },
  13615. "type": "library",
  13616. "extra": {
  13617. "branch-alias": {
  13618. "dev-master": "4.1-dev"
  13619. }
  13620. },
  13621. "autoload": {
  13622. "psr-4": {
  13623. "Geocoder\\": ""
  13624. },
  13625. "exclude-from-classmap": [
  13626. "/Tests/"
  13627. ]
  13628. },
  13629. "notification-url": "https://packagist.org/downloads/",
  13630. "license": [
  13631. "MIT"
  13632. ],
  13633. "authors": [
  13634. {
  13635. "name": "William Durand",
  13636. "email": "william.durand1@gmail.com"
  13637. }
  13638. ],
  13639. "description": "Common files for PHP Geocoder",
  13640. "homepage": "http://geocoder-php.org",
  13641. "keywords": [
  13642. "abstraction",
  13643. "geocoder",
  13644. "geocoding",
  13645. "geoip"
  13646. ],
  13647. "support": {
  13648. "source": "https://github.com/geocoder-php/php-common/tree/4.6.0"
  13649. },
  13650. "time": "2022-07-30T11:09:43+00:00"
  13651. }
  13652. ],
  13653. "packages-dev": [],
  13654. "aliases": [],
  13655. "minimum-stability": "stable",
  13656. "stability-flags": {
  13657. "drupal/advanced_text_formatter": 5,
  13658. "drupal/computed_token_field": 10,
  13659. "drupal/config_update": 15,
  13660. "drupal/context": 5,
  13661. "drupal/date_range_formatter": 20,
  13662. "drupal/email_registration": 5,
  13663. "drupal/entity_clone": 20,
  13664. "drupal/inline_entity_form": 5,
  13665. "drupal/maxlength": 10,
  13666. "drupal/page_manager": 5,
  13667. "drupal/pathologic": 15,
  13668. "drupal/smtp": 10,
  13669. "drupal/synonyms": 10,
  13670. "drupal/translation_views": 15,
  13671. "drupal/ultimate_cron": 15
  13672. },
  13673. "prefer-stable": true,
  13674. "prefer-lowest": false,
  13675. "platform": {},
  13676. "platform-dev": {},
  13677. "plugin-api-version": "2.6.0"
  13678. }