composer.lock 503 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222132231322413225132261322713228132291323013231132321323313234132351323613237132381323913240132411324213243132441324513246132471324813249132501325113252132531325413255132561325713258132591326013261132621326313264132651326613267132681326913270132711327213273132741327513276132771327813279132801328113282132831328413285132861328713288132891329013291132921329313294132951329613297132981329913300133011330213303133041330513306133071330813309133101331113312133131331413315133161331713318133191332013321133221332313324133251332613327133281332913330133311333213333133341333513336133371333813339133401334113342133431334413345133461334713348133491335013351133521335313354133551335613357133581335913360133611336213363133641336513366133671336813369133701337113372133731337413375133761337713378133791338013381133821338313384133851338613387133881338913390133911339213393133941339513396133971339813399134001340113402134031340413405134061340713408134091341013411134121341313414134151341613417134181341913420134211342213423134241342513426134271342813429134301343113432134331343413435134361343713438134391344013441134421344313444134451344613447134481344913450134511345213453134541345513456134571345813459134601346113462134631346413465134661346713468134691347013471134721347313474134751347613477134781347913480134811348213483134841348513486134871348813489134901349113492134931349413495134961349713498134991350013501135021350313504135051350613507135081350913510135111351213513135141351513516135171351813519135201352113522135231352413525135261352713528135291353013531135321353313534135351353613537135381353913540135411354213543135441354513546135471354813549135501355113552135531355413555135561355713558135591356013561135621356313564135651356613567135681356913570135711357213573135741357513576135771357813579135801358113582135831358413585135861358713588135891359013591135921359313594135951359613597135981359913600136011360213603136041360513606136071360813609136101361113612136131361413615136161361713618136191362013621136221362313624136251362613627136281362913630136311363213633136341363513636136371363813639136401364113642136431364413645136461364713648136491365013651136521365313654136551365613657136581365913660136611366213663136641366513666136671366813669136701367113672136731367413675136761367713678136791368013681
  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": "1ac0dfa31dad9112f41dffb76ee80556",
  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": "v2.2.4",
  194. "source": {
  195. "type": "git",
  196. "url": "https://github.com/commerceguys/addressing.git",
  197. "reference": "ea826dbe5b3fe76960073a2167d5cf996c811cda"
  198. },
  199. "dist": {
  200. "type": "zip",
  201. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/ea826dbe5b3fe76960073a2167d5cf996c811cda",
  202. "reference": "ea826dbe5b3fe76960073a2167d5cf996c811cda",
  203. "shasum": ""
  204. },
  205. "require": {
  206. "doctrine/collections": "^1.6 || ^2.0",
  207. "php": ">=8.0"
  208. },
  209. "require-dev": {
  210. "ext-json": "*",
  211. "mikey179/vfsstream": "^1.6.11",
  212. "phpunit/phpunit": "^9.6",
  213. "squizlabs/php_codesniffer": "^3.7",
  214. "symfony/validator": "^5.4 || ^6.3 || ^7.0"
  215. },
  216. "suggest": {
  217. "symfony/validator": "to validate addresses"
  218. },
  219. "type": "library",
  220. "extra": {
  221. "branch-alias": {
  222. "dev-master": "2.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/v2.2.4"
  252. },
  253. "time": "2025-01-13T16:03:24+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": "2.0.4",
  1820. "source": {
  1821. "type": "git",
  1822. "url": "https://git.drupalcode.org/project/address.git",
  1823. "reference": "2.0.4"
  1824. },
  1825. "dist": {
  1826. "type": "zip",
  1827. "url": "https://ftp.drupal.org/files/projects/address-2.0.4.zip",
  1828. "reference": "2.0.4",
  1829. "shasum": "5a86f7abc028f3d9833784dbf0791a6e4463da8e"
  1830. },
  1831. "require": {
  1832. "commerceguys/addressing": "^2.1.1",
  1833. "drupal/core": "^9.5 || ^10 || ^11",
  1834. "php": "^8.0"
  1835. },
  1836. "require-dev": {
  1837. "drupal/diff": "^1",
  1838. "drupal/feeds": "^3",
  1839. "drupal/token": "^1"
  1840. },
  1841. "type": "drupal-module",
  1842. "extra": {
  1843. "drupal": {
  1844. "version": "2.0.4",
  1845. "datestamp": "1746462054",
  1846. "security-coverage": {
  1847. "status": "covered",
  1848. "message": "Covered by Drupal's security advisory policy"
  1849. }
  1850. }
  1851. },
  1852. "notification-url": "https://packages.drupal.org/8/downloads",
  1853. "license": [
  1854. "GPL-2.0-or-later"
  1855. ],
  1856. "authors": [
  1857. {
  1858. "name": "bojanz",
  1859. "homepage": "https://www.drupal.org/user/86106"
  1860. },
  1861. {
  1862. "name": "centarro",
  1863. "homepage": "https://www.drupal.org/user/3661446"
  1864. },
  1865. {
  1866. "name": "dww",
  1867. "homepage": "https://www.drupal.org/user/46549"
  1868. },
  1869. {
  1870. "name": "jsacksick",
  1871. "homepage": "https://www.drupal.org/user/972218"
  1872. },
  1873. {
  1874. "name": "rszrama",
  1875. "homepage": "https://www.drupal.org/user/49344"
  1876. }
  1877. ],
  1878. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1879. "homepage": "http://drupal.org/project/address",
  1880. "support": {
  1881. "source": "https://git.drupalcode.org/project/address"
  1882. }
  1883. },
  1884. {
  1885. "name": "drupal/admin_toolbar",
  1886. "version": "3.6.1",
  1887. "source": {
  1888. "type": "git",
  1889. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1890. "reference": "3.6.1"
  1891. },
  1892. "dist": {
  1893. "type": "zip",
  1894. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.6.1.zip",
  1895. "reference": "3.6.1",
  1896. "shasum": "40e8874bdf100de90e0eec6984be14f0ec7765b0"
  1897. },
  1898. "require": {
  1899. "drupal/core": "^9.5 || ^10 || ^11"
  1900. },
  1901. "require-dev": {
  1902. "drupal/admin_toolbar_tools": "*"
  1903. },
  1904. "type": "drupal-module",
  1905. "extra": {
  1906. "drupal": {
  1907. "version": "3.6.1",
  1908. "datestamp": "1749079734",
  1909. "security-coverage": {
  1910. "status": "covered",
  1911. "message": "Covered by Drupal's security advisory policy"
  1912. }
  1913. }
  1914. },
  1915. "notification-url": "https://packages.drupal.org/8/downloads",
  1916. "license": [
  1917. "GPL-2.0-or-later"
  1918. ],
  1919. "authors": [
  1920. {
  1921. "name": "Wilfrid Roze (eme)",
  1922. "homepage": "https://www.drupal.org/u/eme",
  1923. "role": "Maintainer"
  1924. },
  1925. {
  1926. "name": "Romain Jarraud (romainj)",
  1927. "homepage": "https://www.drupal.org/u/romainj",
  1928. "role": "Maintainer"
  1929. },
  1930. {
  1931. "name": "Adrian Cid Almaguer (adriancid)",
  1932. "homepage": "https://www.drupal.org/u/adriancid",
  1933. "email": "adriancid@gmail.com",
  1934. "role": "Maintainer"
  1935. },
  1936. {
  1937. "name": "Mohamed Anis Taktak (matio89)",
  1938. "homepage": "https://www.drupal.org/u/matio89",
  1939. "role": "Maintainer"
  1940. },
  1941. {
  1942. "name": "fethi.krout",
  1943. "homepage": "https://www.drupal.org/user/3206765"
  1944. },
  1945. {
  1946. "name": "japerry",
  1947. "homepage": "https://www.drupal.org/user/45640"
  1948. },
  1949. {
  1950. "name": "matio89",
  1951. "homepage": "https://www.drupal.org/user/2320090"
  1952. },
  1953. {
  1954. "name": "musa.thomas",
  1955. "homepage": "https://www.drupal.org/user/1213824"
  1956. },
  1957. {
  1958. "name": "romainj",
  1959. "homepage": "https://www.drupal.org/user/370706"
  1960. }
  1961. ],
  1962. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1963. "homepage": "http://drupal.org/project/admin_toolbar",
  1964. "keywords": [
  1965. "Drupal",
  1966. "Toolbar"
  1967. ],
  1968. "support": {
  1969. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1970. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1971. }
  1972. },
  1973. {
  1974. "name": "drupal/adminimal_theme",
  1975. "version": "1.7.0",
  1976. "source": {
  1977. "type": "git",
  1978. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1979. "reference": "8.x-1.7"
  1980. },
  1981. "dist": {
  1982. "type": "zip",
  1983. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1984. "reference": "8.x-1.7",
  1985. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1986. },
  1987. "require": {
  1988. "drupal/core": "^9.3 || ^10",
  1989. "drupal/seven": "~1.0"
  1990. },
  1991. "type": "drupal-theme",
  1992. "extra": {
  1993. "drupal": {
  1994. "version": "8.x-1.7",
  1995. "datestamp": "1691504486",
  1996. "security-coverage": {
  1997. "status": "covered",
  1998. "message": "Covered by Drupal's security advisory policy"
  1999. }
  2000. }
  2001. },
  2002. "notification-url": "https://packages.drupal.org/8/downloads",
  2003. "license": [
  2004. "GPL-2.0+"
  2005. ],
  2006. "authors": [
  2007. {
  2008. "name": "ANDiTKO",
  2009. "homepage": "https://www.drupal.org/user/1428124"
  2010. },
  2011. {
  2012. "name": "andrey.troeglazov",
  2013. "homepage": "https://www.drupal.org/user/3145389"
  2014. },
  2015. {
  2016. "name": "realityloop",
  2017. "homepage": "https://www.drupal.org/user/139189"
  2018. },
  2019. {
  2020. "name": "rjjakes",
  2021. "homepage": "https://www.drupal.org/user/3457245"
  2022. }
  2023. ],
  2024. "description": "Drupal administration theme with modern minimalist design.",
  2025. "homepage": "https://www.drupal.org/project/adminimal_theme",
  2026. "support": {
  2027. "source": "https://git.drupalcode.org/project/adminimal_theme",
  2028. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  2029. }
  2030. },
  2031. {
  2032. "name": "drupal/administerusersbyrole",
  2033. "version": "3.5.0",
  2034. "source": {
  2035. "type": "git",
  2036. "url": "https://git.drupalcode.org/project/administerusersbyrole.git",
  2037. "reference": "8.x-3.5"
  2038. },
  2039. "dist": {
  2040. "type": "zip",
  2041. "url": "https://ftp.drupal.org/files/projects/administerusersbyrole-8.x-3.5.zip",
  2042. "reference": "8.x-3.5",
  2043. "shasum": "4595bd1db4592c2eb506b3b1c1b26683f22b73b4"
  2044. },
  2045. "require": {
  2046. "drupal/core": "^10 || ^11"
  2047. },
  2048. "type": "drupal-module",
  2049. "extra": {
  2050. "drupal": {
  2051. "version": "8.x-3.5",
  2052. "datestamp": "1732275602",
  2053. "security-coverage": {
  2054. "status": "covered",
  2055. "message": "Covered by Drupal's security advisory policy"
  2056. }
  2057. }
  2058. },
  2059. "notification-url": "https://packages.drupal.org/8/downloads",
  2060. "license": [
  2061. "GPL-2.0-or-later"
  2062. ],
  2063. "authors": [
  2064. {
  2065. "name": "adamps",
  2066. "homepage": "https://www.drupal.org/user/2650563"
  2067. },
  2068. {
  2069. "name": "mrfelton",
  2070. "homepage": "https://www.drupal.org/user/305669"
  2071. },
  2072. {
  2073. "name": "smokris",
  2074. "homepage": "https://www.drupal.org/user/161913"
  2075. }
  2076. ],
  2077. "description": "Allows site builders to set up fine-grained permissions for allowing \"sub-admin\" users to edit and delete other users.",
  2078. "homepage": "https://www.drupal.org/project/administerusersbyrole",
  2079. "support": {
  2080. "source": "https://git.drupalcode.org/project/administerusersbyrole"
  2081. }
  2082. },
  2083. {
  2084. "name": "drupal/advanced_text_formatter",
  2085. "version": "3.0.0-rc2",
  2086. "source": {
  2087. "type": "git",
  2088. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  2089. "reference": "3.0.0-rc2"
  2090. },
  2091. "dist": {
  2092. "type": "zip",
  2093. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-3.0.0-rc2.zip",
  2094. "reference": "3.0.0-rc2",
  2095. "shasum": "4b0601f135202647e65bd5a43f56ea1fce4bc607"
  2096. },
  2097. "require": {
  2098. "drupal/core": "^8 || ^9 || ^10 || ^11"
  2099. },
  2100. "type": "drupal-module",
  2101. "extra": {
  2102. "drupal": {
  2103. "version": "3.0.0-rc2",
  2104. "datestamp": "1727826727",
  2105. "security-coverage": {
  2106. "status": "not-covered",
  2107. "message": "RC releases are not covered by Drupal security advisories."
  2108. }
  2109. }
  2110. },
  2111. "notification-url": "https://packages.drupal.org/8/downloads",
  2112. "license": [
  2113. "GPL-2.0-or-later"
  2114. ],
  2115. "authors": [
  2116. {
  2117. "name": "azovsky",
  2118. "homepage": "https://www.drupal.org/user/330533"
  2119. },
  2120. {
  2121. "name": "knectar",
  2122. "homepage": "https://www.drupal.org/user/1184414"
  2123. },
  2124. {
  2125. "name": "realityloop",
  2126. "homepage": "https://www.drupal.org/user/139189"
  2127. },
  2128. {
  2129. "name": "thmnhat",
  2130. "homepage": "https://www.drupal.org/user/998946"
  2131. }
  2132. ],
  2133. "description": "Formatter of textfield, text area and text format.",
  2134. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  2135. "support": {
  2136. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  2137. }
  2138. },
  2139. {
  2140. "name": "drupal/audiofield",
  2141. "version": "1.13.0",
  2142. "source": {
  2143. "type": "git",
  2144. "url": "https://git.drupalcode.org/project/audiofield.git",
  2145. "reference": "8.x-1.13"
  2146. },
  2147. "dist": {
  2148. "type": "zip",
  2149. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  2150. "reference": "8.x-1.13",
  2151. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  2152. },
  2153. "require": {
  2154. "drupal/core": "^8 || ^9 || ^10"
  2155. },
  2156. "type": "drupal-module",
  2157. "extra": {
  2158. "drupal": {
  2159. "version": "8.x-1.13",
  2160. "datestamp": "1681143245",
  2161. "security-coverage": {
  2162. "status": "covered",
  2163. "message": "Covered by Drupal's security advisory policy"
  2164. }
  2165. },
  2166. "drush": {
  2167. "services": {
  2168. "drush.services.yml": "^9"
  2169. }
  2170. }
  2171. },
  2172. "notification-url": "https://packages.drupal.org/8/downloads",
  2173. "license": [
  2174. "GPL-2.0-or-later"
  2175. ],
  2176. "authors": [
  2177. {
  2178. "name": "Daniel Moberly",
  2179. "homepage": "https://www.drupal.org/u/danielmoberly",
  2180. "role": "Maintainer"
  2181. },
  2182. {
  2183. "name": "tamerzg",
  2184. "homepage": "https://www.drupal.org/user/464564"
  2185. }
  2186. ],
  2187. "description": "AudioField Module",
  2188. "homepage": "https://www.drupal.org/project/audiofield",
  2189. "support": {
  2190. "source": "https://git.drupalcode.org/project/audiofield",
  2191. "issues": "https://www.drupal.org/project/issues/audiofield"
  2192. }
  2193. },
  2194. {
  2195. "name": "drupal/autocomplete_deluxe",
  2196. "version": "2.1.2",
  2197. "source": {
  2198. "type": "git",
  2199. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2200. "reference": "2.1.2"
  2201. },
  2202. "dist": {
  2203. "type": "zip",
  2204. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.1.2.zip",
  2205. "reference": "2.1.2",
  2206. "shasum": "3e8ba6e205b21305d672a02edb6dc40770ade71e"
  2207. },
  2208. "require": {
  2209. "drupal/core": "^10.3 || ^11"
  2210. },
  2211. "type": "drupal-module",
  2212. "extra": {
  2213. "drupal": {
  2214. "version": "2.1.2",
  2215. "datestamp": "1742303934",
  2216. "security-coverage": {
  2217. "status": "covered",
  2218. "message": "Covered by Drupal's security advisory policy"
  2219. }
  2220. }
  2221. },
  2222. "notification-url": "https://packages.drupal.org/8/downloads",
  2223. "license": [
  2224. "GPL-2.0-or-later"
  2225. ],
  2226. "authors": [
  2227. {
  2228. "name": "Vardot",
  2229. "homepage": "https://www.drupal.org/vardot",
  2230. "role": "Maintenance for Drupal 8/9/10/11 versions"
  2231. },
  2232. {
  2233. "name": "Mediacurrent",
  2234. "homepage": "https://www.drupal.org/mediacurrent",
  2235. "role": "Supporting organization"
  2236. },
  2237. {
  2238. "name": "mohammed j. razem",
  2239. "homepage": "https://www.drupal.org/user/255384"
  2240. },
  2241. {
  2242. "name": "mpriscella",
  2243. "homepage": "https://www.drupal.org/user/2354820"
  2244. },
  2245. {
  2246. "name": "rajab natshah",
  2247. "homepage": "https://www.drupal.org/user/1414312"
  2248. },
  2249. {
  2250. "name": "sepgil",
  2251. "homepage": "https://www.drupal.org/user/512828"
  2252. }
  2253. ],
  2254. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2255. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2256. "support": {
  2257. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2258. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2259. }
  2260. },
  2261. {
  2262. "name": "drupal/autologout",
  2263. "version": "1.6.0",
  2264. "source": {
  2265. "type": "git",
  2266. "url": "https://git.drupalcode.org/project/autologout.git",
  2267. "reference": "8.x-1.6"
  2268. },
  2269. "dist": {
  2270. "type": "zip",
  2271. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.6.zip",
  2272. "reference": "8.x-1.6",
  2273. "shasum": "ec666b324ac8aaffe2f5012b1b21c27d9c1780c9"
  2274. },
  2275. "require": {
  2276. "drupal/core": "^9.2 || ^10 || ^11",
  2277. "drupal/js_cookie": "^1.0"
  2278. },
  2279. "type": "drupal-module",
  2280. "extra": {
  2281. "drupal": {
  2282. "version": "8.x-1.6",
  2283. "datestamp": "1732235148",
  2284. "security-coverage": {
  2285. "status": "covered",
  2286. "message": "Covered by Drupal's security advisory policy"
  2287. }
  2288. }
  2289. },
  2290. "notification-url": "https://packages.drupal.org/8/downloads",
  2291. "license": [
  2292. "GPL-2.0-or-later"
  2293. ],
  2294. "authors": [
  2295. {
  2296. "name": "ajits",
  2297. "homepage": "https://www.drupal.org/user/981944"
  2298. },
  2299. {
  2300. "name": "AjK",
  2301. "homepage": "https://www.drupal.org/user/39030"
  2302. },
  2303. {
  2304. "name": "boshtian",
  2305. "homepage": "https://www.drupal.org/user/1773456"
  2306. },
  2307. {
  2308. "name": "dandrews",
  2309. "homepage": "https://www.drupal.org/user/2014490"
  2310. },
  2311. {
  2312. "name": "darksnow",
  2313. "homepage": "https://www.drupal.org/user/391915"
  2314. },
  2315. {
  2316. "name": "japerry",
  2317. "homepage": "https://www.drupal.org/user/45640"
  2318. },
  2319. {
  2320. "name": "johnennew",
  2321. "homepage": "https://www.drupal.org/user/1150042"
  2322. },
  2323. {
  2324. "name": "jrglasgow",
  2325. "homepage": "https://www.drupal.org/user/36590"
  2326. },
  2327. {
  2328. "name": "kmasood",
  2329. "homepage": "https://www.drupal.org/user/1262860"
  2330. },
  2331. {
  2332. "name": "levelos",
  2333. "homepage": "https://www.drupal.org/user/54135"
  2334. },
  2335. {
  2336. "name": "prabeen.giri",
  2337. "homepage": "https://www.drupal.org/user/913078"
  2338. },
  2339. {
  2340. "name": "scott_earnest",
  2341. "homepage": "https://www.drupal.org/user/416158"
  2342. },
  2343. {
  2344. "name": "str8",
  2345. "homepage": "https://www.drupal.org/user/2865063"
  2346. },
  2347. {
  2348. "name": "the_g_bomb",
  2349. "homepage": "https://www.drupal.org/user/492012"
  2350. }
  2351. ],
  2352. "description": "Adds automated timed logout.",
  2353. "homepage": "http://drupal.org/project/autologout",
  2354. "support": {
  2355. "source": "https://git.drupalcode.org/project/autologout",
  2356. "issues": "https://www.drupal.org/project/issues/autologout"
  2357. }
  2358. },
  2359. {
  2360. "name": "drupal/better_exposed_filters",
  2361. "version": "6.0.6",
  2362. "source": {
  2363. "type": "git",
  2364. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2365. "reference": "6.0.6"
  2366. },
  2367. "dist": {
  2368. "type": "zip",
  2369. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.6.zip",
  2370. "reference": "6.0.6",
  2371. "shasum": "558ca591d450fc64512cae7f98cb4b0241e15ba3"
  2372. },
  2373. "require": {
  2374. "drupal/core": "^9 || ^10",
  2375. "drupal/jquery_ui": "*",
  2376. "drupal/jquery_ui_datepicker": "*",
  2377. "drupal/jquery_ui_slider": "*",
  2378. "drupal/jquery_ui_touch_punch": "*"
  2379. },
  2380. "type": "drupal-module",
  2381. "extra": {
  2382. "drupal": {
  2383. "version": "6.0.6",
  2384. "datestamp": "1716397541",
  2385. "security-coverage": {
  2386. "status": "covered",
  2387. "message": "Covered by Drupal's security advisory policy"
  2388. }
  2389. }
  2390. },
  2391. "notification-url": "https://packages.drupal.org/8/downloads",
  2392. "license": [
  2393. "GPL-2.0-or-later"
  2394. ],
  2395. "authors": [
  2396. {
  2397. "name": "Mike Keran",
  2398. "homepage": "https://www.drupal.org/u/mikeker"
  2399. },
  2400. {
  2401. "name": "Martin Keereman",
  2402. "homepage": "https://www.drupal.org/u/etroid"
  2403. },
  2404. {
  2405. "name": "Neslee Canil Pinto",
  2406. "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
  2407. },
  2408. {
  2409. "name": "mikeker",
  2410. "homepage": "https://www.drupal.org/user/192273"
  2411. },
  2412. {
  2413. "name": "neslee canil pinto",
  2414. "homepage": "https://www.drupal.org/user/3580850"
  2415. },
  2416. {
  2417. "name": "podarok",
  2418. "homepage": "https://www.drupal.org/user/116002"
  2419. },
  2420. {
  2421. "name": "rlhawk",
  2422. "homepage": "https://www.drupal.org/user/352283"
  2423. },
  2424. {
  2425. "name": "smustgrave",
  2426. "homepage": "https://www.drupal.org/user/3252890"
  2427. }
  2428. ],
  2429. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2430. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2431. "support": {
  2432. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2433. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2434. }
  2435. },
  2436. {
  2437. "name": "drupal/betterlogin",
  2438. "version": "2.0.2",
  2439. "source": {
  2440. "type": "git",
  2441. "url": "https://git.drupalcode.org/project/betterlogin.git",
  2442. "reference": "2.0.2"
  2443. },
  2444. "dist": {
  2445. "type": "zip",
  2446. "url": "https://ftp.drupal.org/files/projects/betterlogin-2.0.2.zip",
  2447. "reference": "2.0.2",
  2448. "shasum": "1c05fdea10862ff86c809c84d9eba95b6b52f90a"
  2449. },
  2450. "require": {
  2451. "drupal/core": "^9.0 || ^10.0"
  2452. },
  2453. "type": "drupal-module",
  2454. "extra": {
  2455. "drupal": {
  2456. "version": "2.0.2",
  2457. "datestamp": "1709573077",
  2458. "security-coverage": {
  2459. "status": "covered",
  2460. "message": "Covered by Drupal's security advisory policy"
  2461. }
  2462. }
  2463. },
  2464. "notification-url": "https://packages.drupal.org/8/downloads",
  2465. "license": [
  2466. "GPL-2.0-or-later"
  2467. ],
  2468. "authors": [
  2469. {
  2470. "name": "theamoeba",
  2471. "homepage": "https://www.drupal.org/user/251700"
  2472. },
  2473. {
  2474. "name": "yogeshmpawar",
  2475. "homepage": "https://www.drupal.org/user/2922907"
  2476. }
  2477. ],
  2478. "description": "Make the login screens better :)",
  2479. "homepage": "https://www.drupal.org/project/betterlogin",
  2480. "support": {
  2481. "source": "https://git.drupalcode.org/project/betterlogin"
  2482. }
  2483. },
  2484. {
  2485. "name": "drupal/blazy",
  2486. "version": "2.27.0",
  2487. "source": {
  2488. "type": "git",
  2489. "url": "https://git.drupalcode.org/project/blazy.git",
  2490. "reference": "8.x-2.27"
  2491. },
  2492. "dist": {
  2493. "type": "zip",
  2494. "url": "https://ftp.drupal.org/files/projects/blazy-8.x-2.27.zip",
  2495. "reference": "8.x-2.27",
  2496. "shasum": "3cf511ad1ea33c94a5c4b93f49344bef24456067"
  2497. },
  2498. "require": {
  2499. "drupal/core": "^8.8 || ^9 || ^10"
  2500. },
  2501. "conflict": {
  2502. "drupal/csp": "<1.12"
  2503. },
  2504. "type": "drupal-module",
  2505. "extra": {
  2506. "drupal": {
  2507. "version": "8.x-2.27",
  2508. "datestamp": "1715944090",
  2509. "security-coverage": {
  2510. "status": "covered",
  2511. "message": "Covered by Drupal's security advisory policy"
  2512. }
  2513. }
  2514. },
  2515. "notification-url": "https://packages.drupal.org/8/downloads",
  2516. "license": [
  2517. "GPL-2.0-or-later"
  2518. ],
  2519. "authors": [
  2520. {
  2521. "name": "Gaus Surahman",
  2522. "homepage": "https://www.drupal.org/u/gausarts",
  2523. "role": "Maintainer"
  2524. },
  2525. {
  2526. "name": "Contributors",
  2527. "homepage": "https://www.drupal.org/node/2663268/committers",
  2528. "role": "Contributor"
  2529. },
  2530. {
  2531. "name": "geek-merlin",
  2532. "homepage": "https://www.drupal.org/user/229048"
  2533. },
  2534. {
  2535. "name": "sun",
  2536. "homepage": "https://www.drupal.org/user/54136"
  2537. }
  2538. ],
  2539. "description": "Provides basic bLazy integration for lazy loading and multi-serving images.",
  2540. "homepage": "https://drupal.org/project/blazy",
  2541. "keywords": [
  2542. "Drupal",
  2543. "bLazy",
  2544. "lazyload"
  2545. ],
  2546. "support": {
  2547. "source": "https://git.drupalcode.org/project/blazy",
  2548. "issues": "https://drupal.org/project/issues/blazy"
  2549. }
  2550. },
  2551. {
  2552. "name": "drupal/block_class",
  2553. "version": "4.0.1",
  2554. "source": {
  2555. "type": "git",
  2556. "url": "https://git.drupalcode.org/project/block_class.git",
  2557. "reference": "4.0.1"
  2558. },
  2559. "dist": {
  2560. "type": "zip",
  2561. "url": "https://ftp.drupal.org/files/projects/block_class-4.0.1.zip",
  2562. "reference": "4.0.1",
  2563. "shasum": "46fa2437a8bd272a1f757a7cd957eb2747e28cdb"
  2564. },
  2565. "require": {
  2566. "drupal/core": "^9 || ^10 || ^11"
  2567. },
  2568. "type": "drupal-module",
  2569. "extra": {
  2570. "drupal": {
  2571. "version": "4.0.1",
  2572. "datestamp": "1745427425",
  2573. "security-coverage": {
  2574. "status": "covered",
  2575. "message": "Covered by Drupal's security advisory policy"
  2576. }
  2577. }
  2578. },
  2579. "notification-url": "https://packages.drupal.org/8/downloads",
  2580. "license": [
  2581. "GPL-2.0-or-later"
  2582. ],
  2583. "authors": [
  2584. {
  2585. "name": "Todd Nienkerk",
  2586. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2587. "role": "Maintainer"
  2588. },
  2589. {
  2590. "name": "Renato Gonçalves (RenatoG)",
  2591. "homepage": "https://www.drupal.org/u/RenatoG",
  2592. "role": "Maintainer"
  2593. },
  2594. {
  2595. "name": "Neslee Canil Pinto",
  2596. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2597. "role": "Maintainer"
  2598. },
  2599. {
  2600. "name": "Aaron Stanush",
  2601. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2602. "role": "Maintainer"
  2603. },
  2604. {
  2605. "name": "David Suissa (DYdave)",
  2606. "homepage": "https://www.drupal.org/u/DYdave",
  2607. "role": "Maintainer"
  2608. },
  2609. {
  2610. "name": "Four Kitchens",
  2611. "homepage": "https://www.drupal.org/user/358502",
  2612. "role": "Maintainer"
  2613. },
  2614. {
  2615. "name": "berenddeboer",
  2616. "homepage": "https://www.drupal.org/u/berenddeboer",
  2617. "role": "Maintainer"
  2618. },
  2619. {
  2620. "name": "elliotttf",
  2621. "homepage": "https://www.drupal.org/u/elliotttf",
  2622. "role": "Maintainer"
  2623. },
  2624. {
  2625. "name": "Michal Minecki (mirzu)",
  2626. "homepage": "https://www.drupal.org/u/mirzu",
  2627. "role": "Maintainer"
  2628. },
  2629. {
  2630. "name": "Patrick Coffey (pcoffey)",
  2631. "homepage": "https://www.drupal.org/u/pcoffey",
  2632. "role": "Maintainer"
  2633. },
  2634. {
  2635. "name": "Taylor Smith (tsmith512)",
  2636. "homepage": "https://www.drupal.org/u/tsmith512",
  2637. "role": "Maintainer"
  2638. }
  2639. ],
  2640. "description": "Allows assigning classes to Blocks.",
  2641. "homepage": "https://www.drupal.org/project/block_class",
  2642. "keywords": [
  2643. "Drupal"
  2644. ],
  2645. "support": {
  2646. "source": "https://git.drupalcode.org/project/block_class",
  2647. "issues": "https://www.drupal.org/project/issues/block_class",
  2648. "irc": "irc://irc.freenode.org/drupal-contribute"
  2649. }
  2650. },
  2651. {
  2652. "name": "drupal/computed_field",
  2653. "version": "3.0.0",
  2654. "source": {
  2655. "type": "git",
  2656. "url": "https://git.drupalcode.org/project/computed_field.git",
  2657. "reference": "3.0.0"
  2658. },
  2659. "dist": {
  2660. "type": "zip",
  2661. "url": "https://ftp.drupal.org/files/projects/computed_field-3.0.0.zip",
  2662. "reference": "3.0.0",
  2663. "shasum": "88f060658f30e196b177923dc12bc48df38042df"
  2664. },
  2665. "require": {
  2666. "drupal/core": "^8 || ^9 || ^10"
  2667. },
  2668. "type": "drupal-module",
  2669. "extra": {
  2670. "drupal": {
  2671. "version": "3.0.0",
  2672. "datestamp": "1705775905",
  2673. "security-coverage": {
  2674. "status": "covered",
  2675. "message": "Covered by Drupal's security advisory policy"
  2676. }
  2677. }
  2678. },
  2679. "notification-url": "https://packages.drupal.org/8/downloads",
  2680. "license": [
  2681. "GPL-2.0-or-later"
  2682. ],
  2683. "authors": [
  2684. {
  2685. "name": "agileware",
  2686. "homepage": "https://www.drupal.org/user/89106"
  2687. },
  2688. {
  2689. "name": "colan",
  2690. "homepage": "https://www.drupal.org/user/58704"
  2691. },
  2692. {
  2693. "name": "dealancer",
  2694. "homepage": "https://www.drupal.org/user/243418"
  2695. },
  2696. {
  2697. "name": "joachim",
  2698. "homepage": "https://www.drupal.org/user/107701"
  2699. },
  2700. {
  2701. "name": "markus_petrux",
  2702. "homepage": "https://www.drupal.org/user/39593"
  2703. },
  2704. {
  2705. "name": "Moonshine",
  2706. "homepage": "https://www.drupal.org/user/133705"
  2707. },
  2708. {
  2709. "name": "nickcaballero",
  2710. "homepage": "https://www.drupal.org/user/588336"
  2711. },
  2712. {
  2713. "name": "Pedro Lozano",
  2714. "homepage": "https://www.drupal.org/user/123766"
  2715. },
  2716. {
  2717. "name": "ram4nd",
  2718. "homepage": "https://www.drupal.org/user/601534"
  2719. }
  2720. ],
  2721. "description": "Defines a field type that allows values to be \"computed\" via PHP code.",
  2722. "homepage": "https://www.drupal.org/project/computed_field",
  2723. "support": {
  2724. "source": "https://git.drupalcode.org/project/computed_field"
  2725. }
  2726. },
  2727. {
  2728. "name": "drupal/computed_token_field",
  2729. "version": "1.0.0-beta1",
  2730. "source": {
  2731. "type": "git",
  2732. "url": "https://git.drupalcode.org/project/computed_token_field.git",
  2733. "reference": "1.0.0-beta1"
  2734. },
  2735. "dist": {
  2736. "type": "zip",
  2737. "url": "https://ftp.drupal.org/files/projects/computed_token_field-1.0.0-beta1.zip",
  2738. "reference": "1.0.0-beta1",
  2739. "shasum": "fb4904822b8321c6143990d39d937f3a488980a8"
  2740. },
  2741. "require": {
  2742. "drupal/computed_field": "^3.0",
  2743. "drupal/core": "^8 || ^9 || ^10"
  2744. },
  2745. "require-dev": {
  2746. "drupal/eck": "*",
  2747. "drupal/field_permissions": "*",
  2748. "drupal/hide_revision_field": "*",
  2749. "drupal/inline_entity_form": "*"
  2750. },
  2751. "type": "drupal-module",
  2752. "extra": {
  2753. "drupal": {
  2754. "version": "1.0.0-beta1",
  2755. "datestamp": "1741812647",
  2756. "security-coverage": {
  2757. "status": "not-covered",
  2758. "message": "Beta releases are not covered by Drupal security advisories."
  2759. }
  2760. }
  2761. },
  2762. "notification-url": "https://packages.drupal.org/8/downloads",
  2763. "license": [
  2764. "GPLv2 or later"
  2765. ],
  2766. "authors": [
  2767. {
  2768. "name": "Derek Laventure",
  2769. "homepage": "https://www.drupal.org/user/3082389",
  2770. "email": "derek@consensus.enterprises"
  2771. },
  2772. {
  2773. "name": "colan",
  2774. "homepage": "https://www.drupal.org/user/58704"
  2775. },
  2776. {
  2777. "name": "ergonlogic",
  2778. "homepage": "https://www.drupal.org/user/368613"
  2779. },
  2780. {
  2781. "name": "spiderman",
  2782. "homepage": "https://www.drupal.org/user/1631"
  2783. }
  2784. ],
  2785. "description": "Computed field that accepts a token to calculate its value.",
  2786. "homepage": "https://www.drupal.org/project/computed_token_field",
  2787. "support": {
  2788. "source": "https://git.drupalcode.org/project/computed_token_field"
  2789. }
  2790. },
  2791. {
  2792. "name": "drupal/config_devel",
  2793. "version": "1.10.0",
  2794. "source": {
  2795. "type": "git",
  2796. "url": "https://git.drupalcode.org/project/config_devel.git",
  2797. "reference": "8.x-1.10"
  2798. },
  2799. "dist": {
  2800. "type": "zip",
  2801. "url": "https://ftp.drupal.org/files/projects/config_devel-8.x-1.10.zip",
  2802. "reference": "8.x-1.10",
  2803. "shasum": "d47415b4be32180f27fcd58e86107a9a7b1351f3"
  2804. },
  2805. "require": {
  2806. "drupal/core": "^9.3 || ^10 || ^11"
  2807. },
  2808. "type": "drupal-module",
  2809. "extra": {
  2810. "drupal": {
  2811. "version": "8.x-1.10",
  2812. "datestamp": "1727184343",
  2813. "security-coverage": {
  2814. "status": "covered",
  2815. "message": "Covered by Drupal's security advisory policy"
  2816. }
  2817. }
  2818. },
  2819. "notification-url": "https://packages.drupal.org/8/downloads",
  2820. "license": [
  2821. "GPL-2.0+"
  2822. ],
  2823. "authors": [
  2824. {
  2825. "name": "alexpott",
  2826. "homepage": "https://www.drupal.org/user/157725"
  2827. },
  2828. {
  2829. "name": "benjy",
  2830. "homepage": "https://www.drupal.org/user/1852732"
  2831. },
  2832. {
  2833. "name": "chx",
  2834. "homepage": "https://www.drupal.org/user/9446"
  2835. },
  2836. {
  2837. "name": "joachim",
  2838. "homepage": "https://www.drupal.org/user/107701"
  2839. },
  2840. {
  2841. "name": "vijaycs85",
  2842. "homepage": "https://www.drupal.org/user/93488"
  2843. }
  2844. ],
  2845. "description": "Helps developers work with configuration.",
  2846. "homepage": "https://www.drupal.org/project/config_devel",
  2847. "support": {
  2848. "source": "https://git.drupalcode.org/project/config_devel"
  2849. }
  2850. },
  2851. {
  2852. "name": "drupal/config_enforce",
  2853. "version": "1.0.7",
  2854. "source": {
  2855. "type": "git",
  2856. "url": "https://git.drupalcode.org/project/config_enforce.git",
  2857. "reference": "1.0.7"
  2858. },
  2859. "dist": {
  2860. "type": "zip",
  2861. "url": "https://ftp.drupal.org/files/projects/config_enforce-1.0.7.zip",
  2862. "reference": "1.0.7",
  2863. "shasum": "f90a52c7ce804d45a0c5082925987b730ec0757a"
  2864. },
  2865. "require": {
  2866. "drupal/core": "^8 || ^9 || ^10",
  2867. "php": "^7.4 || ^8"
  2868. },
  2869. "suggest": {
  2870. "drush/drush": "Allows for running enforce commands via the CLI"
  2871. },
  2872. "type": "drupal-module",
  2873. "extra": {
  2874. "drupal": {
  2875. "version": "1.0.7",
  2876. "datestamp": "1723136457",
  2877. "security-coverage": {
  2878. "status": "covered",
  2879. "message": "Covered by Drupal's security advisory policy"
  2880. }
  2881. },
  2882. "drush": {
  2883. "services": {
  2884. "drush.services.yml": "^11"
  2885. }
  2886. }
  2887. },
  2888. "notification-url": "https://packages.drupal.org/8/downloads",
  2889. "license": [
  2890. "GPLv3 or later"
  2891. ],
  2892. "authors": [
  2893. {
  2894. "name": "Christopher Gervais",
  2895. "homepage": "https://www.drupal.org/user/1131532",
  2896. "email": "chris@ergonlogic.com"
  2897. },
  2898. {
  2899. "name": "Dan Friedman",
  2900. "homepage": "https://www.drupal.org/user/58704",
  2901. "email": "dan@consensus.enterprises"
  2902. },
  2903. {
  2904. "name": "Derek Laventure",
  2905. "homepage": "https://www.drupal.org/user/368613",
  2906. "email": "derek@consensus.enterprises"
  2907. },
  2908. {
  2909. "name": "Matei Stanca",
  2910. "homepage": "https://ambientimpact.com"
  2911. },
  2912. {
  2913. "name": "M Parker",
  2914. "homepage": "https://www.drupal.org/u/mparker17"
  2915. },
  2916. {
  2917. "name": "Serena Zhu",
  2918. "homepage": "https://www.drupal.org/u/szhu"
  2919. },
  2920. {
  2921. "name": "spiderman",
  2922. "homepage": "https://www.drupal.org/user/1631"
  2923. },
  2924. {
  2925. "name": "szhu",
  2926. "homepage": "https://www.drupal.org/user/3525295"
  2927. }
  2928. ],
  2929. "description": "This experimental project seeks to make Drupal better-suited to SaaS application development by allowing some configuration to be treated as read-only.",
  2930. "homepage": "https://www.drupal.org/project/config_enforce",
  2931. "support": {
  2932. "source": "https://git.drupalcode.org/project/config_enforce"
  2933. }
  2934. },
  2935. {
  2936. "name": "drupal/config_filter",
  2937. "version": "2.7.0",
  2938. "source": {
  2939. "type": "git",
  2940. "url": "https://git.drupalcode.org/project/config_filter.git",
  2941. "reference": "8.x-2.7"
  2942. },
  2943. "dist": {
  2944. "type": "zip",
  2945. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.7.zip",
  2946. "reference": "8.x-2.7",
  2947. "shasum": "7fe7161b93c7e24c6db135f1cf82d144bef66e50"
  2948. },
  2949. "require": {
  2950. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  2951. },
  2952. "conflict": {
  2953. "drush/drush": "<10"
  2954. },
  2955. "suggest": {
  2956. "drupal/config_split": "Split site configuration for different environments."
  2957. },
  2958. "type": "drupal-module",
  2959. "extra": {
  2960. "drupal": {
  2961. "version": "8.x-2.7",
  2962. "datestamp": "1727472458",
  2963. "security-coverage": {
  2964. "status": "covered",
  2965. "message": "Covered by Drupal's security advisory policy"
  2966. }
  2967. }
  2968. },
  2969. "notification-url": "https://packages.drupal.org/8/downloads",
  2970. "license": [
  2971. "GPL-2.0-or-later"
  2972. ],
  2973. "authors": [
  2974. {
  2975. "name": "Fabian Bircher",
  2976. "homepage": "https://www.drupal.org/u/bircher",
  2977. "email": "opensource@fabianbircher.com",
  2978. "role": "Maintainer"
  2979. },
  2980. {
  2981. "name": "Nuvole Web",
  2982. "homepage": "http://nuvole.org",
  2983. "email": "info@nuvole.org",
  2984. "role": "Maintainer"
  2985. },
  2986. {
  2987. "name": "pescetti",
  2988. "homepage": "https://www.drupal.org/user/436244"
  2989. }
  2990. ],
  2991. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2992. "homepage": "https://www.drupal.org/project/config_filter",
  2993. "keywords": [
  2994. "Drupal",
  2995. "configuration",
  2996. "configuration management"
  2997. ],
  2998. "support": {
  2999. "source": "https://git.drupalcode.org/project/config_filter",
  3000. "issues": "https://www.drupal.org/project/issues/config_filter",
  3001. "slack": "https://drupal.slack.com/archives/C45342CDD"
  3002. }
  3003. },
  3004. {
  3005. "name": "drupal/config_ignore",
  3006. "version": "3.3.0",
  3007. "source": {
  3008. "type": "git",
  3009. "url": "https://git.drupalcode.org/project/config_ignore.git",
  3010. "reference": "8.x-3.3"
  3011. },
  3012. "dist": {
  3013. "type": "zip",
  3014. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-3.3.zip",
  3015. "reference": "8.x-3.3",
  3016. "shasum": "4446811ecb023820a57c227d35c034e0d4363a70"
  3017. },
  3018. "require": {
  3019. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  3020. },
  3021. "require-dev": {
  3022. "drupal/config_filter": "^1.8||^2.2",
  3023. "drush/drush": "^10 || ^11 || ^12"
  3024. },
  3025. "type": "drupal-module",
  3026. "extra": {
  3027. "drupal": {
  3028. "version": "8.x-3.3",
  3029. "datestamp": "1713299496",
  3030. "security-coverage": {
  3031. "status": "covered",
  3032. "message": "Covered by Drupal's security advisory policy"
  3033. }
  3034. }
  3035. },
  3036. "notification-url": "https://packages.drupal.org/8/downloads",
  3037. "license": [
  3038. "GPL-2.0-or-later"
  3039. ],
  3040. "authors": [
  3041. {
  3042. "name": "Tommy Lynge Jørgensen",
  3043. "homepage": "https://www.drupal.org/u/tlyngej",
  3044. "email": "tlyngej@gmail.com",
  3045. "role": "Maintainer"
  3046. },
  3047. {
  3048. "name": "Fabian Bircher",
  3049. "homepage": "https://www.drupal.org/u/bircher",
  3050. "role": "Maintainer"
  3051. },
  3052. {
  3053. "name": "tlyngej",
  3054. "homepage": "https://www.drupal.org/user/413139"
  3055. }
  3056. ],
  3057. "description": "Ignore certain configuration during import and export.",
  3058. "homepage": "http://drupal.org/project/config_ignore",
  3059. "support": {
  3060. "source": "https://git.drupalcode.org/project/config_ignore",
  3061. "issues": "http://drupal.org/project/config_ignore"
  3062. }
  3063. },
  3064. {
  3065. "name": "drupal/config_pages",
  3066. "version": "2.17.0",
  3067. "source": {
  3068. "type": "git",
  3069. "url": "https://git.drupalcode.org/project/config_pages.git",
  3070. "reference": "8.x-2.17"
  3071. },
  3072. "dist": {
  3073. "type": "zip",
  3074. "url": "https://ftp.drupal.org/files/projects/config_pages-8.x-2.17.zip",
  3075. "reference": "8.x-2.17",
  3076. "shasum": "717b1eb911e30e766a891d45eeefa34825794ac4"
  3077. },
  3078. "require": {
  3079. "drupal/core": "^8.5 | ^9 || ^10 || ^11"
  3080. },
  3081. "type": "drupal-module",
  3082. "extra": {
  3083. "drupal": {
  3084. "version": "8.x-2.17",
  3085. "datestamp": "1736029180",
  3086. "security-coverage": {
  3087. "status": "covered",
  3088. "message": "Covered by Drupal's security advisory policy"
  3089. }
  3090. },
  3091. "drush": {
  3092. "services": {
  3093. "drush.services.yml": "^9"
  3094. }
  3095. }
  3096. },
  3097. "notification-url": "https://packages.drupal.org/8/downloads",
  3098. "license": [
  3099. "GPL-2.0-or-later"
  3100. ],
  3101. "authors": [
  3102. {
  3103. "name": "m.krestnicov",
  3104. "homepage": "https://www.drupal.org/user/3193903"
  3105. },
  3106. {
  3107. "name": "qwaygon",
  3108. "homepage": "https://www.drupal.org/user/636624"
  3109. },
  3110. {
  3111. "name": "shumer",
  3112. "homepage": "https://www.drupal.org/user/2297432"
  3113. }
  3114. ],
  3115. "description": "ConfigPages module",
  3116. "homepage": "http://drupal.org/project/config_pages",
  3117. "keywords": [
  3118. "Drupal"
  3119. ],
  3120. "support": {
  3121. "source": "http://cgit.drupalcode.org/config_pages",
  3122. "issues": "http://drupal.org/project/issues/config_pages"
  3123. }
  3124. },
  3125. {
  3126. "name": "drupal/config_update",
  3127. "version": "2.0.0-alpha4",
  3128. "source": {
  3129. "type": "git",
  3130. "url": "https://git.drupalcode.org/project/config_update.git",
  3131. "reference": "2.0.0-alpha4"
  3132. },
  3133. "dist": {
  3134. "type": "zip",
  3135. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha4.zip",
  3136. "reference": "2.0.0-alpha4",
  3137. "shasum": "d8ea528b0b3e24918356bb72bef61408f650aa8e"
  3138. },
  3139. "require": {
  3140. "drupal/core": "^9.4 || ^10 || ^11"
  3141. },
  3142. "type": "drupal-module",
  3143. "extra": {
  3144. "drupal": {
  3145. "version": "2.0.0-alpha4",
  3146. "datestamp": "1724596931",
  3147. "security-coverage": {
  3148. "status": "not-covered",
  3149. "message": "Alpha releases are not covered by Drupal security advisories."
  3150. }
  3151. }
  3152. },
  3153. "notification-url": "https://packages.drupal.org/8/downloads",
  3154. "license": [
  3155. "GPL-2.0-or-later"
  3156. ],
  3157. "authors": [
  3158. {
  3159. "name": "codebymikey",
  3160. "homepage": "https://www.drupal.org/user/3573206"
  3161. },
  3162. {
  3163. "name": "pasqualle",
  3164. "homepage": "https://www.drupal.org/user/80733"
  3165. },
  3166. {
  3167. "name": "vishalkhode",
  3168. "homepage": "https://www.drupal.org/user/2439156"
  3169. }
  3170. ],
  3171. "description": "Provides basic revert and update functionality for other modules.",
  3172. "homepage": "https://www.drupal.org/project/config_update",
  3173. "support": {
  3174. "source": "https://git.drupalcode.org/project/config_update"
  3175. }
  3176. },
  3177. {
  3178. "name": "drupal/content_lock",
  3179. "version": "2.4.0",
  3180. "source": {
  3181. "type": "git",
  3182. "url": "https://git.drupalcode.org/project/content_lock.git",
  3183. "reference": "8.x-2.4"
  3184. },
  3185. "dist": {
  3186. "type": "zip",
  3187. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.4.zip",
  3188. "reference": "8.x-2.4",
  3189. "shasum": "99d149e530555aae12b44292efe5887d373e862e"
  3190. },
  3191. "require": {
  3192. "drupal/core": "^9.0 || ^10.0"
  3193. },
  3194. "type": "drupal-module",
  3195. "extra": {
  3196. "drupal": {
  3197. "version": "8.x-2.4",
  3198. "datestamp": "1715783058",
  3199. "security-coverage": {
  3200. "status": "covered",
  3201. "message": "Covered by Drupal's security advisory policy"
  3202. }
  3203. }
  3204. },
  3205. "notification-url": "https://packages.drupal.org/8/downloads",
  3206. "license": [
  3207. "GPL-2.0-or-later"
  3208. ],
  3209. "authors": [
  3210. {
  3211. "name": "alexpott",
  3212. "homepage": "https://www.drupal.org/user/157725"
  3213. },
  3214. {
  3215. "name": "astonvictor",
  3216. "homepage": "https://www.drupal.org/user/3466615"
  3217. },
  3218. {
  3219. "name": "chr.fritsch",
  3220. "homepage": "https://www.drupal.org/user/2103716"
  3221. },
  3222. {
  3223. "name": "daniel.bosen",
  3224. "homepage": "https://www.drupal.org/user/404865"
  3225. },
  3226. {
  3227. "name": "ergonlogic",
  3228. "homepage": "https://www.drupal.org/user/368613"
  3229. },
  3230. {
  3231. "name": "mfb",
  3232. "homepage": "https://www.drupal.org/user/12302"
  3233. },
  3234. {
  3235. "name": "volkerk",
  3236. "homepage": "https://www.drupal.org/user/57527"
  3237. }
  3238. ],
  3239. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3240. "homepage": "https://www.drupal.org/project/content_lock",
  3241. "support": {
  3242. "source": "https://git.drupalcode.org/project/content_lock"
  3243. }
  3244. },
  3245. {
  3246. "name": "drupal/context",
  3247. "version": "5.0.0-rc2",
  3248. "source": {
  3249. "type": "git",
  3250. "url": "https://git.drupalcode.org/project/context.git",
  3251. "reference": "5.0.0-rc2"
  3252. },
  3253. "dist": {
  3254. "type": "zip",
  3255. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc2.zip",
  3256. "reference": "5.0.0-rc2",
  3257. "shasum": "05e866f01bc57b5346d52a5b6230fdd13e21695d"
  3258. },
  3259. "require": {
  3260. "drupal/core": "^9.3 || ^10 || ^11"
  3261. },
  3262. "type": "drupal-module",
  3263. "extra": {
  3264. "drupal": {
  3265. "version": "5.0.0-rc2",
  3266. "datestamp": "1741253306",
  3267. "security-coverage": {
  3268. "status": "not-covered",
  3269. "message": "RC releases are not covered by Drupal security advisories."
  3270. }
  3271. }
  3272. },
  3273. "notification-url": "https://packages.drupal.org/8/downloads",
  3274. "license": [
  3275. "MIT"
  3276. ],
  3277. "authors": [
  3278. {
  3279. "name": "Christoffer Palm",
  3280. "homepage": "http://www.oddhill.se/",
  3281. "email": "christoffer.palm@oddhill.se",
  3282. "role": "Developer"
  3283. },
  3284. {
  3285. "name": "boshtian",
  3286. "homepage": "https://www.drupal.org/user/1773456"
  3287. },
  3288. {
  3289. "name": "colan",
  3290. "homepage": "https://www.drupal.org/user/58704"
  3291. },
  3292. {
  3293. "name": "emanaton",
  3294. "homepage": "https://www.drupal.org/user/120853"
  3295. },
  3296. {
  3297. "name": "febbraro",
  3298. "homepage": "https://www.drupal.org/user/43670"
  3299. },
  3300. {
  3301. "name": "fizk",
  3302. "homepage": "https://www.drupal.org/user/473174"
  3303. },
  3304. {
  3305. "name": "hass",
  3306. "homepage": "https://www.drupal.org/user/85918"
  3307. },
  3308. {
  3309. "name": "hefox",
  3310. "homepage": "https://www.drupal.org/user/426416"
  3311. },
  3312. {
  3313. "name": "jmiccolis",
  3314. "homepage": "https://www.drupal.org/user/31731"
  3315. },
  3316. {
  3317. "name": "kristen pol",
  3318. "homepage": "https://www.drupal.org/user/8389"
  3319. },
  3320. {
  3321. "name": "mandclu",
  3322. "homepage": "https://www.drupal.org/user/52136"
  3323. },
  3324. {
  3325. "name": "nedjo",
  3326. "homepage": "https://www.drupal.org/user/4481"
  3327. },
  3328. {
  3329. "name": "NormySan",
  3330. "homepage": "https://www.drupal.org/user/112352"
  3331. },
  3332. {
  3333. "name": "patricksettle",
  3334. "homepage": "https://www.drupal.org/user/26618"
  3335. },
  3336. {
  3337. "name": "paulocs",
  3338. "homepage": "https://www.drupal.org/user/3640109"
  3339. },
  3340. {
  3341. "name": "steven jones",
  3342. "homepage": "https://www.drupal.org/user/99644"
  3343. },
  3344. {
  3345. "name": "tekante",
  3346. "homepage": "https://www.drupal.org/user/640024"
  3347. },
  3348. {
  3349. "name": "yhahn",
  3350. "homepage": "https://www.drupal.org/user/264833"
  3351. }
  3352. ],
  3353. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3354. "homepage": "https://github.com/oddhill/context",
  3355. "keywords": [
  3356. "Drupal",
  3357. "block",
  3358. "conditions",
  3359. "context",
  3360. "visibility"
  3361. ],
  3362. "support": {
  3363. "source": "https://github.com/oddhill/context",
  3364. "issues": "https://github.com/oddhill/context/issues",
  3365. "docs": "https://github.com/oddhill/context"
  3366. }
  3367. },
  3368. {
  3369. "name": "drupal/core",
  3370. "version": "10.5.1",
  3371. "source": {
  3372. "type": "git",
  3373. "url": "https://github.com/drupal/core.git",
  3374. "reference": "551442fec1db69cf6eedb1601a348d8a6268060f"
  3375. },
  3376. "dist": {
  3377. "type": "zip",
  3378. "url": "https://api.github.com/repos/drupal/core/zipball/551442fec1db69cf6eedb1601a348d8a6268060f",
  3379. "reference": "551442fec1db69cf6eedb1601a348d8a6268060f",
  3380. "shasum": ""
  3381. },
  3382. "require": {
  3383. "asm89/stack-cors": "^2.3",
  3384. "composer-runtime-api": "^2.1",
  3385. "composer/semver": "^3.3",
  3386. "doctrine/annotations": "^1.14",
  3387. "egulias/email-validator": "^3.2.1|^4.0",
  3388. "ext-date": "*",
  3389. "ext-dom": "*",
  3390. "ext-filter": "*",
  3391. "ext-gd": "*",
  3392. "ext-hash": "*",
  3393. "ext-json": "*",
  3394. "ext-pcre": "*",
  3395. "ext-pdo": "*",
  3396. "ext-session": "*",
  3397. "ext-simplexml": "*",
  3398. "ext-spl": "*",
  3399. "ext-tokenizer": "*",
  3400. "ext-xml": "*",
  3401. "guzzlehttp/guzzle": "^7.5",
  3402. "guzzlehttp/psr7": "^2.4.5",
  3403. "masterminds/html5": "^2.7",
  3404. "mck89/peast": "^1.14",
  3405. "pear/archive_tar": "^1.4.14",
  3406. "php": ">=8.1.0",
  3407. "psr/log": "^3.0",
  3408. "sebastian/diff": "^4",
  3409. "symfony/console": "^6.4",
  3410. "symfony/dependency-injection": "^6.4",
  3411. "symfony/event-dispatcher": "^6.4",
  3412. "symfony/filesystem": "^6.4",
  3413. "symfony/finder": "^6.4",
  3414. "symfony/http-foundation": "^6.4",
  3415. "symfony/http-kernel": "^6.4",
  3416. "symfony/mailer": "^6.4",
  3417. "symfony/mime": "^6.4",
  3418. "symfony/polyfill-iconv": "^1.26",
  3419. "symfony/process": "^6.4",
  3420. "symfony/psr-http-message-bridge": "^2.1|^6.4",
  3421. "symfony/routing": "^6.4",
  3422. "symfony/serializer": "^6.4",
  3423. "symfony/validator": "^6.4",
  3424. "symfony/yaml": "^6.4",
  3425. "twig/twig": "^3.15.0"
  3426. },
  3427. "conflict": {
  3428. "drush/drush": "<12.4.3"
  3429. },
  3430. "replace": {
  3431. "drupal/core-annotation": "self.version",
  3432. "drupal/core-assertion": "self.version",
  3433. "drupal/core-class-finder": "self.version",
  3434. "drupal/core-datetime": "self.version",
  3435. "drupal/core-dependency-injection": "self.version",
  3436. "drupal/core-diff": "self.version",
  3437. "drupal/core-discovery": "self.version",
  3438. "drupal/core-event-dispatcher": "self.version",
  3439. "drupal/core-file-cache": "self.version",
  3440. "drupal/core-file-security": "self.version",
  3441. "drupal/core-filesystem": "self.version",
  3442. "drupal/core-front-matter": "self.version",
  3443. "drupal/core-gettext": "self.version",
  3444. "drupal/core-graph": "self.version",
  3445. "drupal/core-http-foundation": "self.version",
  3446. "drupal/core-php-storage": "self.version",
  3447. "drupal/core-plugin": "self.version",
  3448. "drupal/core-proxy-builder": "self.version",
  3449. "drupal/core-render": "self.version",
  3450. "drupal/core-serialization": "self.version",
  3451. "drupal/core-transliteration": "self.version",
  3452. "drupal/core-utility": "self.version",
  3453. "drupal/core-uuid": "self.version",
  3454. "drupal/core-version": "self.version"
  3455. },
  3456. "suggest": {
  3457. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  3458. },
  3459. "type": "drupal-core",
  3460. "extra": {
  3461. "drupal-scaffold": {
  3462. "file-mapping": {
  3463. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3464. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  3465. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3466. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3467. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3468. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3469. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3470. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3471. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3472. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3473. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3474. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3475. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3476. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3477. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt",
  3478. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3479. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3480. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3481. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3482. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3483. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3484. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3485. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php"
  3486. }
  3487. }
  3488. },
  3489. "autoload": {
  3490. "files": [
  3491. "includes/bootstrap.inc"
  3492. ],
  3493. "psr-4": {
  3494. "Drupal\\Core\\": "lib/Drupal/Core",
  3495. "Drupal\\Component\\": "lib/Drupal/Component"
  3496. },
  3497. "classmap": [
  3498. "lib/Drupal.php",
  3499. "lib/Drupal/Component/DependencyInjection/Container.php",
  3500. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3501. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3502. "lib/Drupal/Component/Utility/Timer.php",
  3503. "lib/Drupal/Component/Utility/Unicode.php",
  3504. "lib/Drupal/Core/Cache/Cache.php",
  3505. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3506. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3507. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3508. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3509. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3510. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3511. "lib/Drupal/Core/Database/Connection.php",
  3512. "lib/Drupal/Core/Database/Database.php",
  3513. "lib/Drupal/Core/Database/StatementInterface.php",
  3514. "lib/Drupal/Core/DependencyInjection/Container.php",
  3515. "lib/Drupal/Core/DrupalKernel.php",
  3516. "lib/Drupal/Core/DrupalKernelInterface.php",
  3517. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3518. "lib/Drupal/Core/Site/Settings.php",
  3519. "lib/Drupal/Component/Datetime/Time.php"
  3520. ]
  3521. },
  3522. "notification-url": "https://packagist.org/downloads/",
  3523. "license": [
  3524. "GPL-2.0-or-later"
  3525. ],
  3526. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3527. "support": {
  3528. "source": "https://github.com/drupal/core/tree/10.5.1"
  3529. },
  3530. "time": "2025-06-26T14:05:15+00:00"
  3531. },
  3532. {
  3533. "name": "drupal/core-composer-scaffold",
  3534. "version": "10.5.1",
  3535. "source": {
  3536. "type": "git",
  3537. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3538. "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55"
  3539. },
  3540. "dist": {
  3541. "type": "zip",
  3542. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/db17b59620ce1c142a34dc017d9e696ce4771e55",
  3543. "reference": "db17b59620ce1c142a34dc017d9e696ce4771e55",
  3544. "shasum": ""
  3545. },
  3546. "require": {
  3547. "composer-plugin-api": "^2",
  3548. "php": ">=7.3.0"
  3549. },
  3550. "conflict": {
  3551. "drupal-composer/drupal-scaffold": "*"
  3552. },
  3553. "require-dev": {
  3554. "composer/composer": "^1.8@stable"
  3555. },
  3556. "type": "composer-plugin",
  3557. "extra": {
  3558. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3559. "branch-alias": {
  3560. "dev-master": "1.0.x-dev"
  3561. }
  3562. },
  3563. "autoload": {
  3564. "psr-4": {
  3565. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3566. }
  3567. },
  3568. "notification-url": "https://packagist.org/downloads/",
  3569. "license": [
  3570. "GPL-2.0-or-later"
  3571. ],
  3572. "description": "A flexible Composer project scaffold builder.",
  3573. "homepage": "https://www.drupal.org/project/drupal",
  3574. "keywords": [
  3575. "drupal"
  3576. ],
  3577. "support": {
  3578. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.5.1"
  3579. },
  3580. "time": "2024-08-22T14:31:30+00:00"
  3581. },
  3582. {
  3583. "name": "drupal/core-project-message",
  3584. "version": "10.5.1",
  3585. "source": {
  3586. "type": "git",
  3587. "url": "https://github.com/drupal/core-project-message.git",
  3588. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8"
  3589. },
  3590. "dist": {
  3591. "type": "zip",
  3592. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  3593. "reference": "d1da83722735cb0f7ccabf9fef7b5607b442c3a8",
  3594. "shasum": ""
  3595. },
  3596. "require": {
  3597. "composer-plugin-api": "^2",
  3598. "php": ">=7.3.0"
  3599. },
  3600. "type": "composer-plugin",
  3601. "extra": {
  3602. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3603. },
  3604. "autoload": {
  3605. "psr-4": {
  3606. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3607. }
  3608. },
  3609. "notification-url": "https://packagist.org/downloads/",
  3610. "license": [
  3611. "GPL-2.0-or-later"
  3612. ],
  3613. "description": "Adds a message after Composer installation.",
  3614. "homepage": "https://www.drupal.org/project/drupal",
  3615. "keywords": [
  3616. "drupal"
  3617. ],
  3618. "support": {
  3619. "source": "https://github.com/drupal/core-project-message/tree/11.1.8"
  3620. },
  3621. "time": "2023-07-24T07:55:25+00:00"
  3622. },
  3623. {
  3624. "name": "drupal/core-recommended",
  3625. "version": "10.5.1",
  3626. "source": {
  3627. "type": "git",
  3628. "url": "https://github.com/drupal/core-recommended.git",
  3629. "reference": "60b76ba11c2ae9088283a1e6963b929ca976f4fc"
  3630. },
  3631. "dist": {
  3632. "type": "zip",
  3633. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/60b76ba11c2ae9088283a1e6963b929ca976f4fc",
  3634. "reference": "60b76ba11c2ae9088283a1e6963b929ca976f4fc",
  3635. "shasum": ""
  3636. },
  3637. "require": {
  3638. "asm89/stack-cors": "~v2.3.0",
  3639. "composer/semver": "~3.4.3",
  3640. "doctrine/annotations": "~1.14.4",
  3641. "doctrine/deprecations": "~1.1.5",
  3642. "doctrine/lexer": "~2.1.1",
  3643. "drupal/core": "10.5.1",
  3644. "egulias/email-validator": "~4.0.4",
  3645. "guzzlehttp/guzzle": "~7.9.3",
  3646. "guzzlehttp/promises": "~2.2.0",
  3647. "guzzlehttp/psr7": "~2.7.1",
  3648. "masterminds/html5": "~2.9.0",
  3649. "mck89/peast": "~v1.17.0",
  3650. "pear/archive_tar": "~1.5.0",
  3651. "pear/console_getopt": "~v1.4.3",
  3652. "pear/pear-core-minimal": "~v1.10.16",
  3653. "pear/pear_exception": "~v1.0.2",
  3654. "psr/cache": "~3.0.0",
  3655. "psr/container": "~2.0.2",
  3656. "psr/event-dispatcher": "~1.0.0",
  3657. "psr/http-client": "~1.0.3",
  3658. "psr/http-factory": "~1.1.0",
  3659. "psr/log": "~3.0.2",
  3660. "ralouphie/getallheaders": "~3.0.3",
  3661. "sebastian/diff": "~4.0.6",
  3662. "symfony/console": "~v6.4.21",
  3663. "symfony/dependency-injection": "~v6.4.20",
  3664. "symfony/deprecation-contracts": "~v3.5.1",
  3665. "symfony/error-handler": "~v6.4.20",
  3666. "symfony/event-dispatcher": "~v6.4.13",
  3667. "symfony/event-dispatcher-contracts": "~v3.5.1",
  3668. "symfony/filesystem": "~v6.4.13",
  3669. "symfony/finder": "~v6.4.17",
  3670. "symfony/http-foundation": "~v6.4.21",
  3671. "symfony/http-kernel": "~v6.4.21",
  3672. "symfony/mailer": "~v6.4.21",
  3673. "symfony/mime": "~v6.4.21",
  3674. "symfony/polyfill-ctype": "~v1.31.0",
  3675. "symfony/polyfill-iconv": "~v1.31.0",
  3676. "symfony/polyfill-intl-grapheme": "~v1.31.0",
  3677. "symfony/polyfill-intl-idn": "~v1.31.0",
  3678. "symfony/polyfill-intl-normalizer": "~v1.31.0",
  3679. "symfony/polyfill-mbstring": "~v1.31.0",
  3680. "symfony/polyfill-php83": "~v1.31.0",
  3681. "symfony/process": "~v6.4.20",
  3682. "symfony/psr-http-message-bridge": "~v6.4.13",
  3683. "symfony/routing": "~v6.4.18",
  3684. "symfony/serializer": "~v6.4.21",
  3685. "symfony/service-contracts": "~v3.5.1",
  3686. "symfony/string": "~v6.4.21",
  3687. "symfony/translation-contracts": "~v3.5.1",
  3688. "symfony/validator": "~v6.4.21",
  3689. "symfony/var-dumper": "~v6.4.21",
  3690. "symfony/var-exporter": "~v6.4.21",
  3691. "symfony/yaml": "~v6.4.21",
  3692. "twig/twig": "~v3.20.0"
  3693. },
  3694. "conflict": {
  3695. "webflo/drupal-core-strict": "*"
  3696. },
  3697. "type": "metapackage",
  3698. "notification-url": "https://packagist.org/downloads/",
  3699. "license": [
  3700. "GPL-2.0-or-later"
  3701. ],
  3702. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3703. "support": {
  3704. "source": "https://github.com/drupal/core-recommended/tree/10.5.1"
  3705. },
  3706. "time": "2025-06-26T14:05:15+00:00"
  3707. },
  3708. {
  3709. "name": "drupal/ctools",
  3710. "version": "4.1.0",
  3711. "source": {
  3712. "type": "git",
  3713. "url": "https://git.drupalcode.org/project/ctools.git",
  3714. "reference": "4.1.0"
  3715. },
  3716. "dist": {
  3717. "type": "zip",
  3718. "url": "https://ftp.drupal.org/files/projects/ctools-4.1.0.zip",
  3719. "reference": "4.1.0",
  3720. "shasum": "69f5889cf557df9e55519390e6a95cfa31b67874"
  3721. },
  3722. "require": {
  3723. "drupal/core": "^9.5 || ^10 || ^11"
  3724. },
  3725. "type": "drupal-module",
  3726. "extra": {
  3727. "drupal": {
  3728. "version": "4.1.0",
  3729. "datestamp": "1718144949",
  3730. "security-coverage": {
  3731. "status": "covered",
  3732. "message": "Covered by Drupal's security advisory policy"
  3733. }
  3734. },
  3735. "branch-alias": {
  3736. "dev-8.x-3.x": "3.x-dev"
  3737. }
  3738. },
  3739. "notification-url": "https://packages.drupal.org/8/downloads",
  3740. "license": [
  3741. "GPL-2.0-or-later"
  3742. ],
  3743. "authors": [
  3744. {
  3745. "name": "Kris Vanderwater (EclipseGc)",
  3746. "homepage": "https://www.drupal.org/u/eclipsegc",
  3747. "role": "Maintainer"
  3748. },
  3749. {
  3750. "name": "Jakob Perry (japerry)",
  3751. "homepage": "https://www.drupal.org/u/japerry",
  3752. "role": "Maintainer"
  3753. },
  3754. {
  3755. "name": "Tim Plunkett (tim.plunkett)",
  3756. "homepage": "https://www.drupal.org/u/timplunkett",
  3757. "role": "Maintainer"
  3758. },
  3759. {
  3760. "name": "James Gilliland (neclimdul)",
  3761. "homepage": "https://www.drupal.org/u/neclimdul",
  3762. "role": "Maintainer"
  3763. },
  3764. {
  3765. "name": "Daniel Wehner (dawehner)",
  3766. "homepage": "https://www.drupal.org/u/dawehner",
  3767. "role": "Maintainer"
  3768. },
  3769. {
  3770. "name": "joelpittet",
  3771. "homepage": "https://www.drupal.org/user/160302"
  3772. },
  3773. {
  3774. "name": "merlinofchaos",
  3775. "homepage": "https://www.drupal.org/user/26979"
  3776. },
  3777. {
  3778. "name": "neclimdul",
  3779. "homepage": "https://www.drupal.org/user/48673"
  3780. },
  3781. {
  3782. "name": "sdboyer",
  3783. "homepage": "https://www.drupal.org/user/146719"
  3784. },
  3785. {
  3786. "name": "sun",
  3787. "homepage": "https://www.drupal.org/user/54136"
  3788. },
  3789. {
  3790. "name": "tim.plunkett",
  3791. "homepage": "https://www.drupal.org/user/241634"
  3792. }
  3793. ],
  3794. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3795. "homepage": "https://www.drupal.org/project/ctools",
  3796. "support": {
  3797. "source": "https://git.drupalcode.org/project/ctools",
  3798. "issues": "https://www.drupal.org/project/issues/ctools"
  3799. }
  3800. },
  3801. {
  3802. "name": "drupal/date_range_formatter",
  3803. "version": "dev-9.0.x",
  3804. "source": {
  3805. "type": "git",
  3806. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3807. "reference": "d909818f1de39d7498e771a2c334ca7b9b4b350e"
  3808. },
  3809. "require": {
  3810. "drupal/core": "^8 || ^9 || ^10"
  3811. },
  3812. "type": "drupal-module",
  3813. "extra": {
  3814. "branch-alias": {
  3815. "dev-9.0.x": "9.0.x-dev"
  3816. },
  3817. "drupal": {
  3818. "version": "9.0.x-dev",
  3819. "datestamp": "1718887202",
  3820. "security-coverage": {
  3821. "status": "not-covered",
  3822. "message": "Dev releases are not covered by Drupal security advisories."
  3823. }
  3824. }
  3825. },
  3826. "notification-url": "https://packages.drupal.org/8/downloads",
  3827. "license": [
  3828. "GPL-2.0-or-later"
  3829. ],
  3830. "authors": [
  3831. {
  3832. "name": "maximpodorov",
  3833. "homepage": "https://www.drupal.org/user/515310"
  3834. },
  3835. {
  3836. "name": "sudishth",
  3837. "homepage": "https://www.drupal.org/user/1440562"
  3838. }
  3839. ],
  3840. "description": "Formats date ranges.",
  3841. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3842. "support": {
  3843. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3844. }
  3845. },
  3846. {
  3847. "name": "drupal/devel",
  3848. "version": "5.4.0",
  3849. "source": {
  3850. "type": "git",
  3851. "url": "https://git.drupalcode.org/project/devel.git",
  3852. "reference": "5.4.0"
  3853. },
  3854. "dist": {
  3855. "type": "zip",
  3856. "url": "https://ftp.drupal.org/files/projects/devel-5.4.0.zip",
  3857. "reference": "5.4.0",
  3858. "shasum": "fc14fe1c396dbff661f9d13e6e3171d9ab781a46"
  3859. },
  3860. "require": {
  3861. "doctrine/common": "^2.7 || ^3.4",
  3862. "drupal/core": "^10.3 || ^11 || ^12",
  3863. "php": ">=8.1",
  3864. "symfony/var-dumper": "^4 || ^5 || ^6 || ^7"
  3865. },
  3866. "conflict": {
  3867. "drupal/core": "<10.3",
  3868. "drush/drush": "<12.5.1"
  3869. },
  3870. "require-dev": {
  3871. "drupal/navigation_extra_tools": "1.0.x-dev",
  3872. "drush/drush": "^13",
  3873. "firephp/firephp-core": "^0.5.3"
  3874. },
  3875. "suggest": {
  3876. "drupal/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3877. },
  3878. "type": "drupal-module",
  3879. "extra": {
  3880. "drupal": {
  3881. "version": "5.4.0",
  3882. "datestamp": "1752755621",
  3883. "security-coverage": {
  3884. "status": "covered",
  3885. "message": "Covered by Drupal's security advisory policy"
  3886. }
  3887. }
  3888. },
  3889. "notification-url": "https://packages.drupal.org/8/downloads",
  3890. "license": [
  3891. "GPL-2.0-or-later"
  3892. ],
  3893. "authors": [
  3894. {
  3895. "name": "moshe weitzman",
  3896. "homepage": "https://www.drupal.org/user/23"
  3897. }
  3898. ],
  3899. "description": "Various blocks, pages, and functions for developers.",
  3900. "homepage": "https://www.drupal.org/project/devel",
  3901. "support": {
  3902. "source": "https://gitlab.com/drupalspoons/devel",
  3903. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3904. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3905. }
  3906. },
  3907. {
  3908. "name": "drupal/devel_kint_extras",
  3909. "version": "1.1.4",
  3910. "source": {
  3911. "type": "git",
  3912. "url": "https://git.drupalcode.org/project/devel_kint_extras.git",
  3913. "reference": "1.1.4"
  3914. },
  3915. "dist": {
  3916. "type": "zip",
  3917. "url": "https://ftp.drupal.org/files/projects/devel_kint_extras-1.1.4.zip",
  3918. "reference": "1.1.4",
  3919. "shasum": "7723086e6edb52b6dacfda4f656f93cbd63b105b"
  3920. },
  3921. "require": {
  3922. "drupal/core": "^9 || ^10 || ^11",
  3923. "drupal/devel": "^4.0 || ^5.0",
  3924. "kint-php/kint": "^3.3 || ^4.0 || ^5.0 || ^6.0"
  3925. },
  3926. "type": "drupal-module",
  3927. "extra": {
  3928. "drupal": {
  3929. "version": "1.1.4",
  3930. "datestamp": "1740995042",
  3931. "security-coverage": {
  3932. "status": "covered",
  3933. "message": "Covered by Drupal's security advisory policy"
  3934. }
  3935. }
  3936. },
  3937. "notification-url": "https://packages.drupal.org/8/downloads",
  3938. "license": [
  3939. "GPL-2.0-or-later"
  3940. ],
  3941. "authors": [
  3942. {
  3943. "name": "Jan Chojnacki",
  3944. "homepage": "https://www.drupal.org/u/janchojnacki"
  3945. },
  3946. {
  3947. "name": "Other contributors",
  3948. "homepage": "https://www.drupal.org/node/3164492/committers"
  3949. }
  3950. ],
  3951. "description": "Shows methods and statics available for an object when using Kint with Devel",
  3952. "homepage": "https://www.drupal.org/project/devel_kint_extras",
  3953. "support": {
  3954. "source": "http://git.drupal.org/project/devel_kint_extras.git",
  3955. "issues": "https://www.drupal.org/project/issues/devel_kint_extras",
  3956. "chat": "irc://irc.freenode.org/drupal-contribute"
  3957. }
  3958. },
  3959. {
  3960. "name": "drupal/email_registration",
  3961. "version": "1.4.0",
  3962. "source": {
  3963. "type": "git",
  3964. "url": "https://git.drupalcode.org/project/email_registration.git",
  3965. "reference": "8.x-1.4"
  3966. },
  3967. "dist": {
  3968. "type": "zip",
  3969. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.4.zip",
  3970. "reference": "8.x-1.4",
  3971. "shasum": "fe7a91b858a98533fc1d7550b0917fc80523f186"
  3972. },
  3973. "require": {
  3974. "drupal/core": "^9.1 || ^10"
  3975. },
  3976. "conflict": {
  3977. "drupal/commerce": "<2.12"
  3978. },
  3979. "require-dev": {
  3980. "drupal/commerce": "^2.0",
  3981. "drupal/token": "*"
  3982. },
  3983. "type": "drupal-module",
  3984. "extra": {
  3985. "drupal": {
  3986. "version": "8.x-1.4",
  3987. "datestamp": "1700548925",
  3988. "security-coverage": {
  3989. "status": "covered",
  3990. "message": "Covered by Drupal's security advisory policy"
  3991. }
  3992. }
  3993. },
  3994. "notification-url": "https://packages.drupal.org/8/downloads",
  3995. "license": [
  3996. "GPL-2.0-or-later"
  3997. ],
  3998. "authors": [
  3999. {
  4000. "name": "Greg Knaddison (greggles)",
  4001. "homepage": "https://www.drupal.org/u/greggles",
  4002. "role": "Maintainer"
  4003. },
  4004. {
  4005. "name": "Andrey Postnikov (andypost)",
  4006. "homepage": "https://www.drupal.org/u/andypost",
  4007. "role": "Maintainer"
  4008. },
  4009. {
  4010. "name": "Chris Herberte",
  4011. "homepage": "https://www.drupal.org/u/chris-herberte",
  4012. "role": "Maintainer"
  4013. },
  4014. {
  4015. "name": "Moshe Weitzman (moshe weitzman)",
  4016. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  4017. "role": "Maintainer"
  4018. },
  4019. {
  4020. "name": "grevil",
  4021. "homepage": "https://www.drupal.org/user/3668491"
  4022. },
  4023. {
  4024. "name": "moshe weitzman",
  4025. "homepage": "https://www.drupal.org/user/23"
  4026. }
  4027. ],
  4028. "description": "Allows users to register with an email address as their username.",
  4029. "homepage": "https://www.drupal.org/project/email_registration",
  4030. "support": {
  4031. "source": "https://git.drupalcode.org/project/email_registration",
  4032. "issues": "http://drupal.org/project/issues/email_registration"
  4033. }
  4034. },
  4035. {
  4036. "name": "drupal/embed",
  4037. "version": "1.10.0",
  4038. "source": {
  4039. "type": "git",
  4040. "url": "https://git.drupalcode.org/project/embed.git",
  4041. "reference": "8.x-1.10"
  4042. },
  4043. "dist": {
  4044. "type": "zip",
  4045. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.10.zip",
  4046. "reference": "8.x-1.10",
  4047. "shasum": "4ac5be0c3a421851c9c60ed82e3bc497be88e61c"
  4048. },
  4049. "require": {
  4050. "drupal/core": "^10.2 || ^11"
  4051. },
  4052. "require-dev": {
  4053. "drupal/ckeditor": "^1.0"
  4054. },
  4055. "type": "drupal-module",
  4056. "extra": {
  4057. "drupal": {
  4058. "version": "8.x-1.10",
  4059. "datestamp": "1737663032",
  4060. "security-coverage": {
  4061. "status": "covered",
  4062. "message": "Covered by Drupal's security advisory policy"
  4063. }
  4064. }
  4065. },
  4066. "notification-url": "https://packages.drupal.org/8/downloads",
  4067. "license": [
  4068. "GPL-2.0-or-later"
  4069. ],
  4070. "authors": [
  4071. {
  4072. "name": "cs_shadow",
  4073. "homepage": "https://www.drupal.org/user/2828287"
  4074. },
  4075. {
  4076. "name": "dave reid",
  4077. "homepage": "https://www.drupal.org/user/53892"
  4078. },
  4079. {
  4080. "name": "devin carlson",
  4081. "homepage": "https://www.drupal.org/user/290182"
  4082. },
  4083. {
  4084. "name": "Drupal Media Team",
  4085. "homepage": "https://www.drupal.org/user/3260690"
  4086. },
  4087. {
  4088. "name": "phenaproxima",
  4089. "homepage": "https://www.drupal.org/user/205645"
  4090. },
  4091. {
  4092. "name": "slashrsm",
  4093. "homepage": "https://www.drupal.org/user/744628"
  4094. }
  4095. ],
  4096. "description": "Provides a framework for different types of embeds in text editors.",
  4097. "homepage": "https://www.drupal.org/project/embed",
  4098. "support": {
  4099. "source": "https://git.drupalcode.org/project/embed"
  4100. }
  4101. },
  4102. {
  4103. "name": "drupal/entity_browser",
  4104. "version": "2.13.0",
  4105. "source": {
  4106. "type": "git",
  4107. "url": "https://git.drupalcode.org/project/entity_browser.git",
  4108. "reference": "8.x-2.13"
  4109. },
  4110. "dist": {
  4111. "type": "zip",
  4112. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.13.zip",
  4113. "reference": "8.x-2.13",
  4114. "shasum": "9c31caed2602a5cb582cb4f1e1feaac44cbbc21b"
  4115. },
  4116. "require": {
  4117. "drupal/core": "^10.2 || ^11"
  4118. },
  4119. "conflict": {
  4120. "drupal/media_entity": "1.*"
  4121. },
  4122. "require-dev": {
  4123. "drupal/embed": "^1.0",
  4124. "drupal/entity_embed": "^1.0",
  4125. "drupal/entity_reference_revisions": "^1.0",
  4126. "drupal/entityqueue": "^1.0",
  4127. "drupal/inline_entity_form": "^1 || ^3",
  4128. "drupal/paragraphs": "^1.0",
  4129. "drupal/search_api": "^1.0",
  4130. "drupal/token": "^1.0"
  4131. },
  4132. "type": "drupal-module",
  4133. "extra": {
  4134. "drupal": {
  4135. "version": "8.x-2.13",
  4136. "datestamp": "1739701403",
  4137. "security-coverage": {
  4138. "status": "covered",
  4139. "message": "Covered by Drupal's security advisory policy"
  4140. }
  4141. }
  4142. },
  4143. "notification-url": "https://packages.drupal.org/8/downloads",
  4144. "license": [
  4145. "GPL-2.0+"
  4146. ],
  4147. "authors": [
  4148. {
  4149. "name": "Janez Urevc",
  4150. "homepage": "https://github.com/slashrsm",
  4151. "role": "Maintainer"
  4152. },
  4153. {
  4154. "name": "Primoz Hmeljak",
  4155. "homepage": "https://github.com/primsi",
  4156. "role": "Maintainer"
  4157. },
  4158. {
  4159. "name": "See other contributors",
  4160. "homepage": "https://www.drupal.org/node/1943336/committers",
  4161. "role": "contributor"
  4162. },
  4163. {
  4164. "name": "Drupal Media Team",
  4165. "homepage": "https://www.drupal.org/user/3260690"
  4166. },
  4167. {
  4168. "name": "marcingy",
  4169. "homepage": "https://www.drupal.org/user/77320"
  4170. },
  4171. {
  4172. "name": "oknate",
  4173. "homepage": "https://www.drupal.org/user/471638"
  4174. },
  4175. {
  4176. "name": "primsi",
  4177. "homepage": "https://www.drupal.org/user/282629"
  4178. },
  4179. {
  4180. "name": "samuel.mortenson",
  4181. "homepage": "https://www.drupal.org/user/2582268"
  4182. },
  4183. {
  4184. "name": "slashrsm",
  4185. "homepage": "https://www.drupal.org/user/744628"
  4186. }
  4187. ],
  4188. "description": "Entity browsing and selecting component.",
  4189. "homepage": "https://drupal.org/project/entity_browser",
  4190. "support": {
  4191. "source": "https://git.drupalcode.org/project/entity_browser",
  4192. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4193. "irc": "irc://irc.freenode.org/drupal-contribute"
  4194. }
  4195. },
  4196. {
  4197. "name": "drupal/entity_browser_enhanced",
  4198. "version": "2.0.1",
  4199. "source": {
  4200. "type": "git",
  4201. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4202. "reference": "2.0.1"
  4203. },
  4204. "dist": {
  4205. "type": "zip",
  4206. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.1.zip",
  4207. "reference": "2.0.1",
  4208. "shasum": "e8640ac806a4302684d5ada8e04d9b92183ebdb8"
  4209. },
  4210. "require": {
  4211. "drupal/core": "^10 || ^11",
  4212. "drupal/entity_browser": "~2.0"
  4213. },
  4214. "type": "drupal-module",
  4215. "extra": {
  4216. "drupal": {
  4217. "version": "2.0.1",
  4218. "datestamp": "1719827338",
  4219. "security-coverage": {
  4220. "status": "covered",
  4221. "message": "Covered by Drupal's security advisory policy"
  4222. }
  4223. }
  4224. },
  4225. "notification-url": "https://packages.drupal.org/8/downloads",
  4226. "license": [
  4227. "GPL-2.0-or-later"
  4228. ],
  4229. "authors": [
  4230. {
  4231. "name": "Vardot",
  4232. "homepage": "https://www.drupal.org/vardot",
  4233. "role": "Maintainer"
  4234. },
  4235. {
  4236. "name": "rajab natshah",
  4237. "homepage": "https://www.drupal.org/user/1414312"
  4238. }
  4239. ],
  4240. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4241. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4242. "support": {
  4243. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4244. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4245. }
  4246. },
  4247. {
  4248. "name": "drupal/entity_clone",
  4249. "version": "dev-2.x",
  4250. "source": {
  4251. "type": "git",
  4252. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4253. "reference": "da8bf644cdfe2720b4eb421fe8948a5665f8d790"
  4254. },
  4255. "require": {
  4256. "drupal/core": "^9 || ^10 || ^11"
  4257. },
  4258. "require-dev": {
  4259. "drupal/entity_browser": "2.x-dev",
  4260. "drupal/entity_usage": "2.x-dev",
  4261. "drupal/paragraphs": "^1.0",
  4262. "drupal/search_api": "^1.0"
  4263. },
  4264. "type": "drupal-module",
  4265. "extra": {
  4266. "branch-alias": {
  4267. "dev-2.x": "2.x-dev"
  4268. },
  4269. "drupal": {
  4270. "version": "2.1.0-beta1+3-dev",
  4271. "datestamp": "1748869926",
  4272. "security-coverage": {
  4273. "status": "not-covered",
  4274. "message": "Dev releases are not covered by Drupal security advisories."
  4275. }
  4276. }
  4277. },
  4278. "notification-url": "https://packages.drupal.org/8/downloads",
  4279. "license": [
  4280. "GPL-2.0-or-later"
  4281. ],
  4282. "authors": [
  4283. {
  4284. "name": "colan",
  4285. "homepage": "https://www.drupal.org/user/58704"
  4286. },
  4287. {
  4288. "name": "joevagyok",
  4289. "homepage": "https://www.drupal.org/user/2876343"
  4290. },
  4291. {
  4292. "name": "nickdickinsonwilde",
  4293. "homepage": "https://www.drupal.org/user/3094661"
  4294. },
  4295. {
  4296. "name": "rajeshreeputra",
  4297. "homepage": "https://www.drupal.org/user/3418561"
  4298. },
  4299. {
  4300. "name": "upchuk",
  4301. "homepage": "https://www.drupal.org/user/1885838"
  4302. },
  4303. {
  4304. "name": "vpeltot",
  4305. "homepage": "https://www.drupal.org/user/1361586"
  4306. }
  4307. ],
  4308. "description": "Add a clone action for all entities.",
  4309. "homepage": "https://drupal.org/project/entity_clone",
  4310. "support": {
  4311. "source": "https://git.drupalcode.org/project/entity_clone"
  4312. }
  4313. },
  4314. {
  4315. "name": "drupal/entity_reference_revisions",
  4316. "version": "1.12.0",
  4317. "source": {
  4318. "type": "git",
  4319. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4320. "reference": "8.x-1.12"
  4321. },
  4322. "dist": {
  4323. "type": "zip",
  4324. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.12.zip",
  4325. "reference": "8.x-1.12",
  4326. "shasum": "2a2ff8617c7ce01b56df1caaf0a563da04948e26"
  4327. },
  4328. "require": {
  4329. "drupal/core": "^9 || ^10 || ^11"
  4330. },
  4331. "require-dev": {
  4332. "drupal/diff": "^1 || ^2"
  4333. },
  4334. "type": "drupal-module",
  4335. "extra": {
  4336. "drupal": {
  4337. "version": "8.x-1.12",
  4338. "datestamp": "1722804497",
  4339. "security-coverage": {
  4340. "status": "covered",
  4341. "message": "Covered by Drupal's security advisory policy"
  4342. }
  4343. },
  4344. "drush": {
  4345. "services": {
  4346. "drush.services.yml": "^9 || ^10 || ^11"
  4347. }
  4348. }
  4349. },
  4350. "notification-url": "https://packages.drupal.org/8/downloads",
  4351. "license": [
  4352. "GPL-2.0-or-later"
  4353. ],
  4354. "authors": [
  4355. {
  4356. "name": "berdir",
  4357. "homepage": "https://www.drupal.org/user/214652"
  4358. },
  4359. {
  4360. "name": "Frans",
  4361. "homepage": "https://www.drupal.org/user/514222"
  4362. },
  4363. {
  4364. "name": "jeroen.b",
  4365. "homepage": "https://www.drupal.org/user/1853532"
  4366. },
  4367. {
  4368. "name": "miro_dietiker",
  4369. "homepage": "https://www.drupal.org/user/227761"
  4370. }
  4371. ],
  4372. "description": "Entity Reference Revisions",
  4373. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  4374. "support": {
  4375. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  4376. }
  4377. },
  4378. {
  4379. "name": "drupal/entity_type_clone",
  4380. "version": "4.0.3",
  4381. "source": {
  4382. "type": "git",
  4383. "url": "https://git.drupalcode.org/project/entity_type_clone.git",
  4384. "reference": "4.0.3"
  4385. },
  4386. "dist": {
  4387. "type": "zip",
  4388. "url": "https://ftp.drupal.org/files/projects/entity_type_clone-4.0.3.zip",
  4389. "reference": "4.0.3",
  4390. "shasum": "684e81fcaa034bfb7a4ffdc3e81c040701fbd8b7"
  4391. },
  4392. "require": {
  4393. "drupal/core": "^8 || ^9 || ^10"
  4394. },
  4395. "type": "drupal-module",
  4396. "extra": {
  4397. "drupal": {
  4398. "version": "4.0.3",
  4399. "datestamp": "1693947342",
  4400. "security-coverage": {
  4401. "status": "covered",
  4402. "message": "Covered by Drupal's security advisory policy"
  4403. }
  4404. }
  4405. },
  4406. "notification-url": "https://packages.drupal.org/8/downloads",
  4407. "license": [
  4408. "GPL-2.0-or-later"
  4409. ],
  4410. "authors": [
  4411. {
  4412. "name": "ajay_reddy",
  4413. "homepage": "https://www.drupal.org/user/3261994"
  4414. },
  4415. {
  4416. "name": "vuil",
  4417. "homepage": "https://www.drupal.org/user/3568458"
  4418. }
  4419. ],
  4420. "description": "This module provide option to clone entity types and role.",
  4421. "homepage": "https://www.drupal.org/project/entity_type_clone",
  4422. "support": {
  4423. "source": "https://git.drupalcode.org/project/entity_type_clone"
  4424. }
  4425. },
  4426. {
  4427. "name": "drupal/extlink",
  4428. "version": "2.0.4",
  4429. "source": {
  4430. "type": "git",
  4431. "url": "https://git.drupalcode.org/project/extlink.git",
  4432. "reference": "2.0.4"
  4433. },
  4434. "dist": {
  4435. "type": "zip",
  4436. "url": "https://ftp.drupal.org/files/projects/extlink-2.0.4.zip",
  4437. "reference": "2.0.4",
  4438. "shasum": "0331ef3457d3a1701f01e04f8256bdd823ea3512"
  4439. },
  4440. "require": {
  4441. "drupal/core": "^10 || ^11"
  4442. },
  4443. "type": "drupal-module",
  4444. "extra": {
  4445. "drupal": {
  4446. "version": "2.0.4",
  4447. "datestamp": "1732565828",
  4448. "security-coverage": {
  4449. "status": "covered",
  4450. "message": "Covered by Drupal's security advisory policy"
  4451. }
  4452. }
  4453. },
  4454. "notification-url": "https://packages.drupal.org/8/downloads",
  4455. "license": [
  4456. "GPL-2.0-or-later"
  4457. ],
  4458. "authors": [
  4459. {
  4460. "name": "Nate Lampton",
  4461. "homepage": "https://www.drupal.org/u/quicksketch",
  4462. "role": "Maintainer"
  4463. },
  4464. {
  4465. "name": "Lachlan Ennis",
  4466. "homepage": "https://www.drupal.org/u/elachlan",
  4467. "role": "Maintainer"
  4468. },
  4469. {
  4470. "name": "Neslee Canil Pinto",
  4471. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4472. "role": "Maintainer"
  4473. },
  4474. {
  4475. "name": "quicksketch",
  4476. "homepage": "https://www.drupal.org/user/35821"
  4477. },
  4478. {
  4479. "name": "smustgrave",
  4480. "homepage": "https://www.drupal.org/user/3252890"
  4481. }
  4482. ],
  4483. "description": "Modify behavior and appearance of external links.",
  4484. "homepage": "https://www.drupal.org/project/extlink",
  4485. "keywords": [
  4486. "Drupal",
  4487. "External Links"
  4488. ],
  4489. "support": {
  4490. "source": "https://git.drupalcode.org/project/extlink",
  4491. "issues": "https://www.drupal.org/project/issues/extlink"
  4492. }
  4493. },
  4494. {
  4495. "name": "drupal/field_group",
  4496. "version": "3.6.0",
  4497. "source": {
  4498. "type": "git",
  4499. "url": "https://git.drupalcode.org/project/field_group.git",
  4500. "reference": "8.x-3.6"
  4501. },
  4502. "dist": {
  4503. "type": "zip",
  4504. "url": "https://ftp.drupal.org/files/projects/field_group-8.x-3.6.zip",
  4505. "reference": "8.x-3.6",
  4506. "shasum": "427c0a65dc1936e69e60c120776056cfe5b43e86"
  4507. },
  4508. "require": {
  4509. "drupal/core": "^9.2 || ^10 || ^11"
  4510. },
  4511. "require-dev": {
  4512. "drupal/jquery_ui_accordion": "*"
  4513. },
  4514. "type": "drupal-module",
  4515. "extra": {
  4516. "drupal": {
  4517. "version": "8.x-3.6",
  4518. "datestamp": "1722672510",
  4519. "security-coverage": {
  4520. "status": "covered",
  4521. "message": "Covered by Drupal's security advisory policy"
  4522. }
  4523. }
  4524. },
  4525. "notification-url": "https://packages.drupal.org/8/downloads",
  4526. "license": [
  4527. "GPL-2.0-or-later"
  4528. ],
  4529. "authors": [
  4530. {
  4531. "name": "anybody",
  4532. "homepage": "https://www.drupal.org/user/291091"
  4533. },
  4534. {
  4535. "name": "grevil",
  4536. "homepage": "https://www.drupal.org/user/3668491"
  4537. },
  4538. {
  4539. "name": "hydra",
  4540. "homepage": "https://www.drupal.org/user/647364"
  4541. },
  4542. {
  4543. "name": "joevagyok",
  4544. "homepage": "https://www.drupal.org/user/2876343"
  4545. },
  4546. {
  4547. "name": "jyve",
  4548. "homepage": "https://www.drupal.org/user/591438"
  4549. },
  4550. {
  4551. "name": "nils.destoop",
  4552. "homepage": "https://www.drupal.org/user/361625"
  4553. },
  4554. {
  4555. "name": "Stalski",
  4556. "homepage": "https://www.drupal.org/user/322618"
  4557. },
  4558. {
  4559. "name": "swentel",
  4560. "homepage": "https://www.drupal.org/user/107403"
  4561. }
  4562. ],
  4563. "description": "Provides the field_group module.",
  4564. "homepage": "https://www.drupal.org/project/field_group",
  4565. "support": {
  4566. "source": "https://git.drupalcode.org/project/field_group",
  4567. "issues": "https://www.drupal.org/project/issues/field_group"
  4568. }
  4569. },
  4570. {
  4571. "name": "drupal/filter_perms",
  4572. "version": "2.0.2",
  4573. "source": {
  4574. "type": "git",
  4575. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4576. "reference": "2.0.2"
  4577. },
  4578. "dist": {
  4579. "type": "zip",
  4580. "url": "https://ftp.drupal.org/files/projects/filter_perms-2.0.2.zip",
  4581. "reference": "2.0.2",
  4582. "shasum": "da352ab7bf56429caba3029509afde72e917fcd9"
  4583. },
  4584. "require": {
  4585. "drupal/core": "^10.3 || ^11 || ^12"
  4586. },
  4587. "type": "drupal-module",
  4588. "extra": {
  4589. "drupal": {
  4590. "version": "2.0.2",
  4591. "datestamp": "1745993059",
  4592. "security-coverage": {
  4593. "status": "covered",
  4594. "message": "Covered by Drupal's security advisory policy"
  4595. }
  4596. }
  4597. },
  4598. "notification-url": "https://packages.drupal.org/8/downloads",
  4599. "license": [
  4600. "GPL-2.0+"
  4601. ],
  4602. "authors": [
  4603. {
  4604. "name": "cyu",
  4605. "homepage": "https://www.drupal.org/user/202205"
  4606. },
  4607. {
  4608. "name": "deekayen",
  4609. "homepage": "https://www.drupal.org/user/972"
  4610. },
  4611. {
  4612. "name": "ivavictoria",
  4613. "homepage": "https://www.drupal.org/user/3061533"
  4614. },
  4615. {
  4616. "name": "justcaldwell",
  4617. "homepage": "https://www.drupal.org/user/290069"
  4618. },
  4619. {
  4620. "name": "mgbellaire",
  4621. "homepage": "https://www.drupal.org/user/1831932"
  4622. },
  4623. {
  4624. "name": "scott_euser",
  4625. "homepage": "https://www.drupal.org/user/3267594"
  4626. },
  4627. {
  4628. "name": "willzyx",
  4629. "homepage": "https://www.drupal.org/user/1043862"
  4630. }
  4631. ],
  4632. "description": "Provides role and module filters to simplify the user permissions page.",
  4633. "homepage": "https://www.drupal.org/project/filter_perms",
  4634. "support": {
  4635. "source": "http://cgit.drupalcode.org/filter_perms",
  4636. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  4637. }
  4638. },
  4639. {
  4640. "name": "drupal/formatter_suite",
  4641. "version": "2.1.0",
  4642. "source": {
  4643. "type": "git",
  4644. "url": "https://git.drupalcode.org/project/formatter_suite.git",
  4645. "reference": "2.1.0"
  4646. },
  4647. "dist": {
  4648. "type": "zip",
  4649. "url": "https://ftp.drupal.org/files/projects/formatter_suite-2.1.0.zip",
  4650. "reference": "2.1.0",
  4651. "shasum": "699e14a27dfecfaa4abd3f923102f3256603aa28"
  4652. },
  4653. "require": {
  4654. "drupal/core": "^9 || ^10"
  4655. },
  4656. "type": "drupal-module",
  4657. "extra": {
  4658. "drupal": {
  4659. "version": "2.1.0",
  4660. "datestamp": "1742410413",
  4661. "security-coverage": {
  4662. "status": "covered",
  4663. "message": "Covered by Drupal's security advisory policy"
  4664. }
  4665. }
  4666. },
  4667. "notification-url": "https://packages.drupal.org/8/downloads",
  4668. "license": [
  4669. "GPL-2.0-or-later"
  4670. ],
  4671. "authors": [
  4672. {
  4673. "name": "cyoun",
  4674. "homepage": "https://www.drupal.org/user/3819850"
  4675. },
  4676. {
  4677. "name": "toamit",
  4678. "homepage": "https://www.drupal.org/user/2820523"
  4679. }
  4680. ],
  4681. "description": "Field formaters to present numbers, text, links, etc.",
  4682. "homepage": "https://www.drupal.org/project/formatter_suite",
  4683. "keywords": [
  4684. "Drupal",
  4685. "Format"
  4686. ],
  4687. "support": {
  4688. "source": "http://cgit.drupalcode.org/formatter_suite",
  4689. "issues": "http://drupal.org/project/issues/formatter_suite"
  4690. }
  4691. },
  4692. {
  4693. "name": "drupal/geocoder",
  4694. "version": "4.29.0",
  4695. "source": {
  4696. "type": "git",
  4697. "url": "https://git.drupalcode.org/project/geocoder.git",
  4698. "reference": "8.x-4.29"
  4699. },
  4700. "dist": {
  4701. "type": "zip",
  4702. "url": "https://ftp.drupal.org/files/projects/geocoder-8.x-4.29.zip",
  4703. "reference": "8.x-4.29",
  4704. "shasum": "f874ecd2a743df517e27cdc6a1332e0fe0e97b53"
  4705. },
  4706. "require": {
  4707. "davedevelopment/stiphle": "^0.9.2",
  4708. "drupal/core": "^9.5 || ^10 || ^11",
  4709. "php": ">=7.3.0",
  4710. "php-http/guzzle7-adapter": "^1.0",
  4711. "php-http/message": "^1.6",
  4712. "willdurand/geocoder": "^4.0|^5.0"
  4713. },
  4714. "require-dev": {
  4715. "drupal/address": "^1.11 || ^2.0",
  4716. "drupal/geocoder_field": "*",
  4717. "drupal/geofield": "^1.52",
  4718. "geo6/geocoder-php-addok-provider": "^1.0",
  4719. "geo6/geocoder-php-bpost-provider": "^1.3.0",
  4720. "geo6/geocoder-php-geopunt-provider": "^1.0",
  4721. "geo6/geocoder-php-spw-provider": "^1.0",
  4722. "geocoder-php/arcgis-online-provider": "^4.0",
  4723. "geocoder-php/azure-maps-provider": "^1.2",
  4724. "geocoder-php/bing-maps-provider": "^4.0",
  4725. "geocoder-php/free-geoip-provider": "^4.1",
  4726. "geocoder-php/geo-plugin-provider": "^4.0",
  4727. "geocoder-php/geonames-provider": "^4.1",
  4728. "geocoder-php/google-maps-provider": "^4.2",
  4729. "geocoder-php/graphhopper-provider": "^0.5.0",
  4730. "geocoder-php/host-ip-provider": "^4.0",
  4731. "geocoder-php/ip-info-db-provider": "^4.0",
  4732. "geocoder-php/locationiq-provider": "^1.5",
  4733. "geocoder-php/mapbox-provider": "^1.0",
  4734. "geocoder-php/mapquest-provider": "^4.0",
  4735. "geocoder-php/maptiler-provider": "^1.0",
  4736. "geocoder-php/maxmind-provider": "^4.1",
  4737. "geocoder-php/nominatim-provider": "^5.0",
  4738. "geocoder-php/open-cage-provider": "^4.0",
  4739. "geocoder-php/openrouteservice-provider": "^1.0",
  4740. "geocoder-php/pelias-provider": "^1.1",
  4741. "geocoder-php/photon-provider": "^0.6",
  4742. "geocoder-php/tomtom-provider": "^4.0",
  4743. "geocoder-php/yandex-provider": "^4.0",
  4744. "systonic/ban-france-provider": "^1.0"
  4745. },
  4746. "type": "drupal-module",
  4747. "extra": {
  4748. "drupal": {
  4749. "version": "8.x-4.29",
  4750. "datestamp": "1749505480",
  4751. "security-coverage": {
  4752. "status": "covered",
  4753. "message": "Covered by Drupal's security advisory policy"
  4754. }
  4755. }
  4756. },
  4757. "notification-url": "https://packages.drupal.org/8/downloads",
  4758. "license": [
  4759. "GPL-2.0-or-later"
  4760. ],
  4761. "authors": [
  4762. {
  4763. "name": "Pol Dellaiera (@drupol)",
  4764. "homepage": "https://www.drupal.org/u/pol",
  4765. "role": "Maintainer"
  4766. },
  4767. {
  4768. "name": "Italo Mairo (@itamair)",
  4769. "homepage": "https://www.drupal.org/u/itamair",
  4770. "role": "Co-maintainer"
  4771. },
  4772. {
  4773. "name": "michaelfavia",
  4774. "homepage": "https://www.drupal.org/user/49137"
  4775. },
  4776. {
  4777. "name": "poker10",
  4778. "homepage": "https://www.drupal.org/user/272316"
  4779. }
  4780. ],
  4781. "description": "Module and services based API to perform Geocode & Reverse Geocode operations among GIS data and addresses types & formats.",
  4782. "homepage": "https://drupal.org/project/geocoder",
  4783. "support": {
  4784. "source": "https://git.drupalcode.org/project/geocoder",
  4785. "issues": "https://drupal.org/project/issues/geocoder",
  4786. "irc": "irc://irc.freenode.org/drupal-geo"
  4787. }
  4788. },
  4789. {
  4790. "name": "drupal/geofield",
  4791. "version": "1.64.0",
  4792. "source": {
  4793. "type": "git",
  4794. "url": "https://git.drupalcode.org/project/geofield.git",
  4795. "reference": "8.x-1.64"
  4796. },
  4797. "dist": {
  4798. "type": "zip",
  4799. "url": "https://ftp.drupal.org/files/projects/geofield-8.x-1.64.zip",
  4800. "reference": "8.x-1.64",
  4801. "shasum": "300f8cf8bf4d0cf2660c5a7e81d56146d947b772"
  4802. },
  4803. "require": {
  4804. "drupal/core": "^9 || ^10 || ^11",
  4805. "itamair/geophp": "^1.6"
  4806. },
  4807. "require-dev": {
  4808. "drupal/diff": "^1.3",
  4809. "drupal/feeds": "^3.0@beta"
  4810. },
  4811. "type": "drupal-module",
  4812. "extra": {
  4813. "drupal": {
  4814. "version": "8.x-1.64",
  4815. "datestamp": "1736675456",
  4816. "security-coverage": {
  4817. "status": "covered",
  4818. "message": "Covered by Drupal's security advisory policy"
  4819. }
  4820. }
  4821. },
  4822. "notification-url": "https://packages.drupal.org/8/downloads",
  4823. "license": [
  4824. "GPL-2.0+"
  4825. ],
  4826. "authors": [
  4827. {
  4828. "name": "Italo Mairo",
  4829. "homepage": "https://www.drupal.org/u/itamair",
  4830. "role": "Drupal 8+ Maintainer"
  4831. },
  4832. {
  4833. "name": "Brandon Morrison",
  4834. "homepage": "https://www.drupal.org/u/brandonian",
  4835. "role": "Drupal 7 Maintainer"
  4836. },
  4837. {
  4838. "name": "Pablo López",
  4839. "homepage": "https://www.drupal.org/u/plopesc",
  4840. "role": "Drupal 7 Maintainer"
  4841. }
  4842. ],
  4843. "description": "Stores geographic and location data (points, lines, and polygons).",
  4844. "homepage": "https://www.drupal.org/project/geofield",
  4845. "support": {
  4846. "source": "https://git.drupalcode.org/project/geofield",
  4847. "issues": "https://www.drupal.org/project/issues/geofield",
  4848. "irc": "irc://irc.freenode.org/drupal-contribute"
  4849. }
  4850. },
  4851. {
  4852. "name": "drupal/honeypot",
  4853. "version": "2.2.2",
  4854. "source": {
  4855. "type": "git",
  4856. "url": "https://git.drupalcode.org/project/honeypot.git",
  4857. "reference": "2.2.2"
  4858. },
  4859. "dist": {
  4860. "type": "zip",
  4861. "url": "https://ftp.drupal.org/files/projects/honeypot-2.2.2.zip",
  4862. "reference": "2.2.2",
  4863. "shasum": "828872d31d1a2c37a818cacae7fcd77a60996c66"
  4864. },
  4865. "require": {
  4866. "drupal/core": "^10.3 || ^11"
  4867. },
  4868. "require-dev": {
  4869. "drupal/rules": "^4.0",
  4870. "drupal/webform": "^6.2"
  4871. },
  4872. "type": "drupal-module",
  4873. "extra": {
  4874. "drupal": {
  4875. "version": "2.2.2",
  4876. "datestamp": "1739854442",
  4877. "security-coverage": {
  4878. "status": "covered",
  4879. "message": "Covered by Drupal's security advisory policy"
  4880. }
  4881. }
  4882. },
  4883. "notification-url": "https://packages.drupal.org/8/downloads",
  4884. "license": [
  4885. "GPL-2.0-or-later"
  4886. ],
  4887. "authors": [
  4888. {
  4889. "name": "Jeff Geerling",
  4890. "homepage": "https://www.drupal.org/user/389011",
  4891. "email": "geerlingguy@mac.com"
  4892. },
  4893. {
  4894. "name": "manuel garcia",
  4895. "homepage": "https://www.drupal.org/user/213194"
  4896. },
  4897. {
  4898. "name": "tr",
  4899. "homepage": "https://www.drupal.org/user/202830"
  4900. },
  4901. {
  4902. "name": "vijaycs85",
  4903. "homepage": "https://www.drupal.org/user/93488"
  4904. }
  4905. ],
  4906. "description": "Mitigates spam form submissions using the honeypot method.",
  4907. "homepage": "https://www.drupal.org/project/honeypot",
  4908. "keywords": [
  4909. "deterrent",
  4910. "form",
  4911. "honeypot",
  4912. "honeytrap",
  4913. "php",
  4914. "spam"
  4915. ],
  4916. "support": {
  4917. "source": "https://git.drupalcode.org/project/honeypot",
  4918. "issues": "https://www.drupal.org/project/issues/honeypot"
  4919. }
  4920. },
  4921. {
  4922. "name": "drupal/image_delta_formatter",
  4923. "version": "1.3.0",
  4924. "source": {
  4925. "type": "git",
  4926. "url": "https://git.drupalcode.org/project/image_delta_formatter.git",
  4927. "reference": "8.x-1.3"
  4928. },
  4929. "dist": {
  4930. "type": "zip",
  4931. "url": "https://ftp.drupal.org/files/projects/image_delta_formatter-8.x-1.3.zip",
  4932. "reference": "8.x-1.3",
  4933. "shasum": "6ec48166cb04eda57915dbe28f97fa32c1e77b75"
  4934. },
  4935. "require": {
  4936. "drupal/core": "^10 || ^11"
  4937. },
  4938. "type": "drupal-module",
  4939. "extra": {
  4940. "drupal": {
  4941. "version": "8.x-1.3",
  4942. "datestamp": "1738516937",
  4943. "security-coverage": {
  4944. "status": "covered",
  4945. "message": "Covered by Drupal's security advisory policy"
  4946. }
  4947. }
  4948. },
  4949. "notification-url": "https://packages.drupal.org/8/downloads",
  4950. "license": [
  4951. "GPL-2.0-or-later"
  4952. ],
  4953. "authors": [
  4954. {
  4955. "name": "bojanz",
  4956. "homepage": "https://www.drupal.org/user/86106"
  4957. },
  4958. {
  4959. "name": "fgm",
  4960. "homepage": "https://www.drupal.org/user/27985"
  4961. },
  4962. {
  4963. "name": "jsacksick",
  4964. "homepage": "https://www.drupal.org/user/972218"
  4965. }
  4966. ],
  4967. "description": "Provides a formatter that displays a specific delta of a multi-value image or media field.",
  4968. "homepage": "https://www.drupal.org/project/image_delta_formatter",
  4969. "support": {
  4970. "source": "https://git.drupalcode.org/project/image_delta_formatter"
  4971. }
  4972. },
  4973. {
  4974. "name": "drupal/image_field_caption",
  4975. "version": "3.0.1",
  4976. "source": {
  4977. "type": "git",
  4978. "url": "https://git.drupalcode.org/project/image_field_caption.git",
  4979. "reference": "3.0.1"
  4980. },
  4981. "dist": {
  4982. "type": "zip",
  4983. "url": "https://ftp.drupal.org/files/projects/image_field_caption-3.0.1.zip",
  4984. "reference": "3.0.1",
  4985. "shasum": "e84c3b9534d5824b6a67885187b1c24d4eccaf60"
  4986. },
  4987. "require": {
  4988. "drupal/core": "^10 || ^11"
  4989. },
  4990. "type": "drupal-module",
  4991. "extra": {
  4992. "drupal": {
  4993. "version": "3.0.1",
  4994. "datestamp": "1739400507",
  4995. "security-coverage": {
  4996. "status": "covered",
  4997. "message": "Covered by Drupal's security advisory policy"
  4998. }
  4999. }
  5000. },
  5001. "notification-url": "https://packages.drupal.org/8/downloads",
  5002. "license": [
  5003. "GPL-2.0+"
  5004. ],
  5005. "authors": [
  5006. {
  5007. "name": "awm",
  5008. "homepage": "https://www.drupal.org/user/1059398"
  5009. },
  5010. {
  5011. "name": "foxy-vikvik",
  5012. "homepage": "https://www.drupal.org/user/3706169"
  5013. },
  5014. {
  5015. "name": "hanoii",
  5016. "homepage": "https://www.drupal.org/user/23157"
  5017. },
  5018. {
  5019. "name": "ironsizide",
  5020. "homepage": "https://www.drupal.org/user/787980"
  5021. },
  5022. {
  5023. "name": "istryker",
  5024. "homepage": "https://www.drupal.org/user/303676"
  5025. },
  5026. {
  5027. "name": "robloach",
  5028. "homepage": "https://www.drupal.org/user/61114"
  5029. },
  5030. {
  5031. "name": "tyler.frankenstein",
  5032. "homepage": "https://www.drupal.org/user/150680"
  5033. }
  5034. ],
  5035. "description": "Add caption to image field.",
  5036. "homepage": "https://www.drupal.org/project/image_field_caption",
  5037. "support": {
  5038. "source": "https://git.drupalcode.org/project/image_field_caption",
  5039. "issues": "https://www.drupal.org/project/issues/image_field_caption"
  5040. }
  5041. },
  5042. {
  5043. "name": "drupal/inline_entity_form",
  5044. "version": "1.0.0-rc17",
  5045. "source": {
  5046. "type": "git",
  5047. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  5048. "reference": "8.x-1.0-rc17"
  5049. },
  5050. "dist": {
  5051. "type": "zip",
  5052. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc17.zip",
  5053. "reference": "8.x-1.0-rc17",
  5054. "shasum": "626622e01cf7a2d2977fdc06ae09afd5a814e09b"
  5055. },
  5056. "require": {
  5057. "drupal/core": "^8.8 || ^9 || ^10",
  5058. "php": ">=7.1"
  5059. },
  5060. "require-dev": {
  5061. "drupal/entity_reference_revisions": "^1.0"
  5062. },
  5063. "type": "drupal-module",
  5064. "extra": {
  5065. "drupal": {
  5066. "version": "8.x-1.0-rc17",
  5067. "datestamp": "1703020130",
  5068. "security-coverage": {
  5069. "status": "not-covered",
  5070. "message": "RC releases are not covered by Drupal security advisories."
  5071. }
  5072. }
  5073. },
  5074. "notification-url": "https://packages.drupal.org/8/downloads",
  5075. "license": [
  5076. "GPL-2.0-or-later"
  5077. ],
  5078. "authors": [
  5079. {
  5080. "name": "bojanz",
  5081. "homepage": "https://www.drupal.org/user/86106"
  5082. },
  5083. {
  5084. "name": "centarro",
  5085. "homepage": "https://www.drupal.org/user/3661446"
  5086. },
  5087. {
  5088. "name": "dawehner",
  5089. "homepage": "https://www.drupal.org/user/99340"
  5090. },
  5091. {
  5092. "name": "dww",
  5093. "homepage": "https://www.drupal.org/user/46549"
  5094. },
  5095. {
  5096. "name": "geek-merlin",
  5097. "homepage": "https://www.drupal.org/user/229048"
  5098. },
  5099. {
  5100. "name": "joachim",
  5101. "homepage": "https://www.drupal.org/user/107701"
  5102. },
  5103. {
  5104. "name": "jsacksick",
  5105. "homepage": "https://www.drupal.org/user/972218"
  5106. },
  5107. {
  5108. "name": "oknate",
  5109. "homepage": "https://www.drupal.org/user/471638"
  5110. },
  5111. {
  5112. "name": "ram4nd",
  5113. "homepage": "https://www.drupal.org/user/601534"
  5114. },
  5115. {
  5116. "name": "rszrama",
  5117. "homepage": "https://www.drupal.org/user/49344"
  5118. },
  5119. {
  5120. "name": "slashrsm",
  5121. "homepage": "https://www.drupal.org/user/744628"
  5122. },
  5123. {
  5124. "name": "webflo",
  5125. "homepage": "https://www.drupal.org/user/254778"
  5126. }
  5127. ],
  5128. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  5129. "homepage": "https://www.drupal.org/project/inline_entity_form",
  5130. "support": {
  5131. "source": "https://git.drupalcode.org/project/inline_entity_form"
  5132. }
  5133. },
  5134. {
  5135. "name": "drupal/jquery_ui",
  5136. "version": "1.7.0",
  5137. "source": {
  5138. "type": "git",
  5139. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  5140. "reference": "8.x-1.7"
  5141. },
  5142. "dist": {
  5143. "type": "zip",
  5144. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.7.zip",
  5145. "reference": "8.x-1.7",
  5146. "shasum": "3f893843ec30fed18fa1b0cb326e51880b0cb686"
  5147. },
  5148. "require": {
  5149. "drupal/core": "^9.2 || ^10 || ^11"
  5150. },
  5151. "type": "drupal-module",
  5152. "extra": {
  5153. "drupal": {
  5154. "version": "8.x-1.7",
  5155. "datestamp": "1717002098",
  5156. "security-coverage": {
  5157. "status": "covered",
  5158. "message": "Covered by Drupal's security advisory policy"
  5159. }
  5160. }
  5161. },
  5162. "notification-url": "https://packages.drupal.org/8/downloads",
  5163. "license": [
  5164. "GPL-2.0-or-later"
  5165. ],
  5166. "authors": [
  5167. {
  5168. "name": "bnjmnm",
  5169. "homepage": "https://www.drupal.org/user/2369194"
  5170. },
  5171. {
  5172. "name": "jjeff",
  5173. "homepage": "https://www.drupal.org/user/17190"
  5174. },
  5175. {
  5176. "name": "lauriii",
  5177. "homepage": "https://www.drupal.org/user/1078742"
  5178. },
  5179. {
  5180. "name": "litwol",
  5181. "homepage": "https://www.drupal.org/user/78134"
  5182. },
  5183. {
  5184. "name": "mfb",
  5185. "homepage": "https://www.drupal.org/user/12302"
  5186. },
  5187. {
  5188. "name": "mfer",
  5189. "homepage": "https://www.drupal.org/user/25701"
  5190. },
  5191. {
  5192. "name": "mikelutz",
  5193. "homepage": "https://www.drupal.org/user/2972409"
  5194. },
  5195. {
  5196. "name": "nod_",
  5197. "homepage": "https://www.drupal.org/user/598310"
  5198. },
  5199. {
  5200. "name": "phenaproxima",
  5201. "homepage": "https://www.drupal.org/user/205645"
  5202. },
  5203. {
  5204. "name": "RobLoach",
  5205. "homepage": "https://www.drupal.org/user/61114"
  5206. },
  5207. {
  5208. "name": "sun",
  5209. "homepage": "https://www.drupal.org/user/54136"
  5210. },
  5211. {
  5212. "name": "webchick",
  5213. "homepage": "https://www.drupal.org/user/24967"
  5214. },
  5215. {
  5216. "name": "Wim Leers",
  5217. "homepage": "https://www.drupal.org/user/99777"
  5218. },
  5219. {
  5220. "name": "zrpnr",
  5221. "homepage": "https://www.drupal.org/user/1448368"
  5222. }
  5223. ],
  5224. "description": "Provides jQuery UI library.",
  5225. "homepage": "https://www.drupal.org/project/jquery_ui",
  5226. "support": {
  5227. "source": "https://git.drupalcode.org/project/jquery_ui"
  5228. }
  5229. },
  5230. {
  5231. "name": "drupal/jquery_ui_datepicker",
  5232. "version": "2.1.1",
  5233. "source": {
  5234. "type": "git",
  5235. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5236. "reference": "2.1.1"
  5237. },
  5238. "dist": {
  5239. "type": "zip",
  5240. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.1.1.zip",
  5241. "reference": "2.1.1",
  5242. "shasum": "29e56e8fa351fefd34e80529768ddc69a460149d"
  5243. },
  5244. "require": {
  5245. "drupal/core": "^9.2 || ^10 || ^11",
  5246. "drupal/jquery_ui": "^1.7"
  5247. },
  5248. "type": "drupal-module",
  5249. "extra": {
  5250. "drupal": {
  5251. "version": "2.1.1",
  5252. "datestamp": "1730932612",
  5253. "security-coverage": {
  5254. "status": "covered",
  5255. "message": "Covered by Drupal's security advisory policy"
  5256. }
  5257. }
  5258. },
  5259. "notification-url": "https://packages.drupal.org/8/downloads",
  5260. "license": [
  5261. "GPL-2.0-or-later"
  5262. ],
  5263. "authors": [
  5264. {
  5265. "name": "bnjmnm",
  5266. "homepage": "https://www.drupal.org/user/2369194"
  5267. },
  5268. {
  5269. "name": "jrockowitz",
  5270. "homepage": "https://www.drupal.org/user/371407"
  5271. },
  5272. {
  5273. "name": "lauriii",
  5274. "homepage": "https://www.drupal.org/user/1078742"
  5275. },
  5276. {
  5277. "name": "nod_",
  5278. "homepage": "https://www.drupal.org/user/598310"
  5279. },
  5280. {
  5281. "name": "phenaproxima",
  5282. "homepage": "https://www.drupal.org/user/205645"
  5283. },
  5284. {
  5285. "name": "zrpnr",
  5286. "homepage": "https://www.drupal.org/user/1448368"
  5287. }
  5288. ],
  5289. "description": "Provides jQuery UI Datepicker library.",
  5290. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5291. "support": {
  5292. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  5293. }
  5294. },
  5295. {
  5296. "name": "drupal/jquery_ui_draggable",
  5297. "version": "2.1.0",
  5298. "source": {
  5299. "type": "git",
  5300. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  5301. "reference": "2.1.0"
  5302. },
  5303. "dist": {
  5304. "type": "zip",
  5305. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.1.0.zip",
  5306. "reference": "2.1.0",
  5307. "shasum": "0d014cfff20993d8051efb8f6c9093a4fe5136f3"
  5308. },
  5309. "require": {
  5310. "drupal/core": "^9.2 || ^10 || ^11",
  5311. "drupal/jquery_ui": "^1.7"
  5312. },
  5313. "type": "drupal-module",
  5314. "extra": {
  5315. "drupal": {
  5316. "version": "2.1.0",
  5317. "datestamp": "1717015492",
  5318. "security-coverage": {
  5319. "status": "covered",
  5320. "message": "Covered by Drupal's security advisory policy"
  5321. }
  5322. }
  5323. },
  5324. "notification-url": "https://packages.drupal.org/8/downloads",
  5325. "license": [
  5326. "GPL-2.0-or-later"
  5327. ],
  5328. "authors": [
  5329. {
  5330. "name": "bnjmnm",
  5331. "homepage": "https://www.drupal.org/user/2369194"
  5332. },
  5333. {
  5334. "name": "lauriii",
  5335. "homepage": "https://www.drupal.org/user/1078742"
  5336. },
  5337. {
  5338. "name": "zrpnr",
  5339. "homepage": "https://www.drupal.org/user/1448368"
  5340. }
  5341. ],
  5342. "description": "Provides jQuery UI Draggable library.",
  5343. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  5344. "support": {
  5345. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  5346. }
  5347. },
  5348. {
  5349. "name": "drupal/jquery_ui_droppable",
  5350. "version": "2.1.0",
  5351. "source": {
  5352. "type": "git",
  5353. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  5354. "reference": "2.1.0"
  5355. },
  5356. "dist": {
  5357. "type": "zip",
  5358. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-2.1.0.zip",
  5359. "reference": "2.1.0",
  5360. "shasum": "4a254056d13d7f4208929142d1a37464404c0870"
  5361. },
  5362. "require": {
  5363. "drupal/core": "^9.2 || ^10 || ^11",
  5364. "drupal/jquery_ui": "^1.7",
  5365. "drupal/jquery_ui_draggable": "^2.1"
  5366. },
  5367. "type": "drupal-module",
  5368. "extra": {
  5369. "drupal": {
  5370. "version": "2.1.0",
  5371. "datestamp": "1717031391",
  5372. "security-coverage": {
  5373. "status": "covered",
  5374. "message": "Covered by Drupal's security advisory policy"
  5375. }
  5376. }
  5377. },
  5378. "notification-url": "https://packages.drupal.org/8/downloads",
  5379. "license": [
  5380. "GPL-2.0-or-later"
  5381. ],
  5382. "authors": [
  5383. {
  5384. "name": "bnjmnm",
  5385. "homepage": "https://www.drupal.org/user/2369194"
  5386. },
  5387. {
  5388. "name": "lauriii",
  5389. "homepage": "https://www.drupal.org/user/1078742"
  5390. },
  5391. {
  5392. "name": "zrpnr",
  5393. "homepage": "https://www.drupal.org/user/1448368"
  5394. }
  5395. ],
  5396. "description": "Provides jQuery UI Droppable library.",
  5397. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  5398. "support": {
  5399. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  5400. }
  5401. },
  5402. {
  5403. "name": "drupal/jquery_ui_slider",
  5404. "version": "2.1.0",
  5405. "source": {
  5406. "type": "git",
  5407. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  5408. "reference": "2.1.0"
  5409. },
  5410. "dist": {
  5411. "type": "zip",
  5412. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.1.0.zip",
  5413. "reference": "2.1.0",
  5414. "shasum": "89e54ccf787ad3eb11fb2ca9e25ea4bfce3df5b1"
  5415. },
  5416. "require": {
  5417. "drupal/core": "^9.2 || ^10 || ^11",
  5418. "drupal/jquery_ui": "^1.7"
  5419. },
  5420. "type": "drupal-module",
  5421. "extra": {
  5422. "drupal": {
  5423. "version": "2.1.0",
  5424. "datestamp": "1717031321",
  5425. "security-coverage": {
  5426. "status": "covered",
  5427. "message": "Covered by Drupal's security advisory policy"
  5428. }
  5429. }
  5430. },
  5431. "notification-url": "https://packages.drupal.org/8/downloads",
  5432. "license": [
  5433. "GPL-2.0-or-later"
  5434. ],
  5435. "authors": [
  5436. {
  5437. "name": "bnjmnm",
  5438. "homepage": "https://www.drupal.org/user/2369194"
  5439. },
  5440. {
  5441. "name": "lauriii",
  5442. "homepage": "https://www.drupal.org/user/1078742"
  5443. },
  5444. {
  5445. "name": "zrpnr",
  5446. "homepage": "https://www.drupal.org/user/1448368"
  5447. }
  5448. ],
  5449. "description": "Provides jQuery UI Slider library.",
  5450. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  5451. "support": {
  5452. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  5453. }
  5454. },
  5455. {
  5456. "name": "drupal/jquery_ui_touch_punch",
  5457. "version": "1.1.1",
  5458. "source": {
  5459. "type": "git",
  5460. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  5461. "reference": "1.1.1"
  5462. },
  5463. "dist": {
  5464. "type": "zip",
  5465. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.1.zip",
  5466. "reference": "1.1.1",
  5467. "shasum": "f16bc2ffa500131f43c84427ff213e753de9b6a6"
  5468. },
  5469. "require": {
  5470. "drupal/core": "^9.2 || ^10 || ^11",
  5471. "drupal/jquery_ui": "^1.0",
  5472. "politsin/jquery-ui-touch-punch": "^1.0"
  5473. },
  5474. "type": "drupal-module",
  5475. "extra": {
  5476. "drupal": {
  5477. "version": "1.1.1",
  5478. "datestamp": "1717663479",
  5479. "security-coverage": {
  5480. "status": "covered",
  5481. "message": "Covered by Drupal's security advisory policy"
  5482. }
  5483. }
  5484. },
  5485. "notification-url": "https://packages.drupal.org/8/downloads",
  5486. "license": [
  5487. "GPL-2.0-or-later"
  5488. ],
  5489. "authors": [
  5490. {
  5491. "name": "Naveen Valecha",
  5492. "homepage": "https://drupal.org/u/naveenvalecha",
  5493. "role": "Maintainer"
  5494. },
  5495. {
  5496. "name": "naveenvalecha",
  5497. "homepage": "https://www.drupal.org/user/2665733"
  5498. }
  5499. ],
  5500. "description": "Provides jQuery UI Touch Punch library.",
  5501. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5502. "keywords": [
  5503. "Drupal",
  5504. "jquery_ui_touch_punch"
  5505. ],
  5506. "support": {
  5507. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5508. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch"
  5509. }
  5510. },
  5511. {
  5512. "name": "drupal/js_cookie",
  5513. "version": "1.0.1",
  5514. "source": {
  5515. "type": "git",
  5516. "url": "https://git.drupalcode.org/project/js_cookie.git",
  5517. "reference": "1.0.1"
  5518. },
  5519. "dist": {
  5520. "type": "zip",
  5521. "url": "https://ftp.drupal.org/files/projects/js_cookie-1.0.1.zip",
  5522. "reference": "1.0.1",
  5523. "shasum": "e010b3de64a0d57eef9c1773c4dd7e3d9bd9118c"
  5524. },
  5525. "require": {
  5526. "drupal/core": "^9 || ^10 || ^11"
  5527. },
  5528. "type": "drupal-module",
  5529. "extra": {
  5530. "drupal": {
  5531. "version": "1.0.1",
  5532. "datestamp": "1693951097",
  5533. "security-coverage": {
  5534. "status": "covered",
  5535. "message": "Covered by Drupal's security advisory policy"
  5536. }
  5537. }
  5538. },
  5539. "notification-url": "https://packages.drupal.org/8/downloads",
  5540. "license": [
  5541. "GPL-2.0-or-later"
  5542. ],
  5543. "authors": [
  5544. {
  5545. "name": "Dave Reid",
  5546. "homepage": "https://www.drupal.org/user/53892"
  5547. }
  5548. ],
  5549. "description": "Provides the js-cookie library as a dependency.",
  5550. "homepage": "https://www.drupal.org/project/js_cookie",
  5551. "support": {
  5552. "source": "https://git.drupalcode.org/project/js_cookie"
  5553. }
  5554. },
  5555. {
  5556. "name": "drupal/leaflet",
  5557. "version": "10.3.5",
  5558. "source": {
  5559. "type": "git",
  5560. "url": "https://git.drupalcode.org/project/leaflet.git",
  5561. "reference": "10.3.5"
  5562. },
  5563. "dist": {
  5564. "type": "zip",
  5565. "url": "https://ftp.drupal.org/files/projects/leaflet-10.3.5.zip",
  5566. "reference": "10.3.5",
  5567. "shasum": "9707462243b2f344e5d85341084d33fdd296ef7b"
  5568. },
  5569. "require": {
  5570. "drupal/core": "^9.3 || ^10 || ^11",
  5571. "drupal/geofield": "^1.31"
  5572. },
  5573. "type": "drupal-module",
  5574. "extra": {
  5575. "drupal": {
  5576. "version": "10.3.5",
  5577. "datestamp": "1751834089",
  5578. "security-coverage": {
  5579. "status": "covered",
  5580. "message": "Covered by Drupal's security advisory policy"
  5581. }
  5582. }
  5583. },
  5584. "notification-url": "https://packages.drupal.org/8/downloads",
  5585. "license": [
  5586. "GPL-2.0+"
  5587. ],
  5588. "authors": [
  5589. {
  5590. "name": "Italo Mairo",
  5591. "homepage": "https://www.drupal.org/u/itamair",
  5592. "role": "Maintainer"
  5593. },
  5594. {
  5595. "name": "Peter Vanhee (pvhee)",
  5596. "homepage": "https://www.drupal.org/u/pvhee",
  5597. "role": "Maintainer"
  5598. },
  5599. {
  5600. "name": "Rik de Boer (RdeBoer)",
  5601. "homepage": "https://www.drupal.org/u/rdeboer",
  5602. "role": "Maintainer"
  5603. },
  5604. {
  5605. "name": "Gabriel Carleton-Barnes (gcb)",
  5606. "homepage": "https://www.drupal.org/u/gcb",
  5607. "role": "Maintainer"
  5608. },
  5609. {
  5610. "name": "Lev Tsypin (levelos)",
  5611. "homepage": "https://www.drupal.org/u/levelos",
  5612. "role": "Maintainer"
  5613. },
  5614. {
  5615. "name": "Sean Larkin (seanberto)",
  5616. "homepage": "https://www.drupal.org/u/seanberto",
  5617. "role": "Maintainer"
  5618. }
  5619. ],
  5620. "description": "Integration with the Leaflet map scripting library.",
  5621. "homepage": "https://www.drupal.org/project/leaflet",
  5622. "support": {
  5623. "source": "https://git.drupalcode.org/project/leaflet",
  5624. "issues": "https://www.drupal.org/project/issues/leaflet"
  5625. }
  5626. },
  5627. {
  5628. "name": "drupal/leaflet_more_maps",
  5629. "version": "2.2.3",
  5630. "source": {
  5631. "type": "git",
  5632. "url": "https://git.drupalcode.org/project/leaflet_more_maps.git",
  5633. "reference": "2.2.3"
  5634. },
  5635. "dist": {
  5636. "type": "zip",
  5637. "url": "https://ftp.drupal.org/files/projects/leaflet_more_maps-2.2.3.zip",
  5638. "reference": "2.2.3",
  5639. "shasum": "73b39b8acb7cfe68a2a9251eff32f64fb4851bc7"
  5640. },
  5641. "require": {
  5642. "drupal/core": "^8.8 || ^9 || ^10 || ^11",
  5643. "drupal/leaflet": "^2.1.0 || ^10.0"
  5644. },
  5645. "require-dev": {
  5646. "drupal/leaflet": "*"
  5647. },
  5648. "type": "drupal-module",
  5649. "extra": {
  5650. "drupal": {
  5651. "version": "2.2.3",
  5652. "datestamp": "1737668201",
  5653. "security-coverage": {
  5654. "status": "covered",
  5655. "message": "Covered by Drupal's security advisory policy"
  5656. }
  5657. },
  5658. "branch-alias": {
  5659. "dev-8.x-1.x": "1.x-dev"
  5660. }
  5661. },
  5662. "notification-url": "https://packages.drupal.org/8/downloads",
  5663. "license": [
  5664. "GPL-2.0-or-later"
  5665. ],
  5666. "authors": [
  5667. {
  5668. "name": "berramou",
  5669. "homepage": "https://www.drupal.org/user/3535998"
  5670. },
  5671. {
  5672. "name": "itamair",
  5673. "homepage": "https://www.drupal.org/user/1179076"
  5674. },
  5675. {
  5676. "name": "japerry",
  5677. "homepage": "https://www.drupal.org/user/45640"
  5678. },
  5679. {
  5680. "name": "rachel_norfolk",
  5681. "homepage": "https://www.drupal.org/user/66273"
  5682. },
  5683. {
  5684. "name": "rdeboer",
  5685. "homepage": "https://www.drupal.org/user/404007"
  5686. }
  5687. ],
  5688. "description": "Adds a swag of map styles to Leaflet, e.g Thunderforest, Esri, Stamen, Google.",
  5689. "homepage": "https://www.drupal.org/project/leaflet_more_maps",
  5690. "support": {
  5691. "source": "https://git.drupalcode.org/project/leaflet_more_maps",
  5692. "issues": "https://www.drupal.org/project/issues/leaflet_more_maps"
  5693. }
  5694. },
  5695. {
  5696. "name": "drupal/leaflet_more_markers",
  5697. "version": "1.1.3",
  5698. "source": {
  5699. "type": "git",
  5700. "url": "https://git.drupalcode.org/project/leaflet_more_markers.git",
  5701. "reference": "1.1.3"
  5702. },
  5703. "dist": {
  5704. "type": "zip",
  5705. "url": "https://ftp.drupal.org/files/projects/leaflet_more_markers-1.1.3.zip",
  5706. "reference": "1.1.3",
  5707. "shasum": "79a102d0df2278bc2238d86a960902a837f5434b"
  5708. },
  5709. "require": {
  5710. "drupal/core": "^9.3 || ^10 || ^11",
  5711. "drupal/leaflet": "*",
  5712. "drupal/token": "*"
  5713. },
  5714. "type": "drupal-module",
  5715. "extra": {
  5716. "drupal": {
  5717. "version": "1.1.3",
  5718. "datestamp": "1733213620",
  5719. "security-coverage": {
  5720. "status": "covered",
  5721. "message": "Covered by Drupal's security advisory policy"
  5722. }
  5723. }
  5724. },
  5725. "notification-url": "https://packages.drupal.org/8/downloads",
  5726. "license": [
  5727. "GPL-2.0-or-later"
  5728. ],
  5729. "authors": [
  5730. {
  5731. "name": "itamair",
  5732. "homepage": "https://www.drupal.org/user/1179076"
  5733. },
  5734. {
  5735. "name": "rdeboer",
  5736. "homepage": "https://www.drupal.org/user/404007"
  5737. }
  5738. ],
  5739. "description": "Allows every location to feature its own emoji marker or font icon.",
  5740. "homepage": "https://www.drupal.org/project/leaflet_more_markers",
  5741. "support": {
  5742. "source": "https://git.drupalcode.org/project/leaflet_more_markers"
  5743. }
  5744. },
  5745. {
  5746. "name": "drupal/link_attributes",
  5747. "version": "2.1.1",
  5748. "source": {
  5749. "type": "git",
  5750. "url": "https://git.drupalcode.org/project/link_attributes.git",
  5751. "reference": "2.1.1"
  5752. },
  5753. "dist": {
  5754. "type": "zip",
  5755. "url": "https://ftp.drupal.org/files/projects/link_attributes-2.1.1.zip",
  5756. "reference": "2.1.1",
  5757. "shasum": "fc71571fc41adeda6b39ccefd3c8e21955c0d96f"
  5758. },
  5759. "require": {
  5760. "drupal/core": "^9 || ^10 || ^11",
  5761. "php": ">=8.0"
  5762. },
  5763. "require-dev": {
  5764. "drupal/linkit": "~6 || ~7"
  5765. },
  5766. "type": "drupal-module",
  5767. "extra": {
  5768. "drupal": {
  5769. "version": "2.1.1",
  5770. "datestamp": "1721366572",
  5771. "security-coverage": {
  5772. "status": "covered",
  5773. "message": "Covered by Drupal's security advisory policy"
  5774. }
  5775. }
  5776. },
  5777. "notification-url": "https://packages.drupal.org/8/downloads",
  5778. "license": [
  5779. "GPL-2.0-or-later"
  5780. ],
  5781. "authors": [
  5782. {
  5783. "name": "larowlan",
  5784. "homepage": "https://www.drupal.org/user/395439"
  5785. }
  5786. ],
  5787. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5788. "homepage": "https://www.drupal.org/project/link_attributes",
  5789. "keywords": [
  5790. "Drupal"
  5791. ],
  5792. "support": {
  5793. "source": "https://git.drupalcode.org/project/link_attributes",
  5794. "issues": "https://www.drupal.org/project/issues/link_attributes"
  5795. }
  5796. },
  5797. {
  5798. "name": "drupal/linked_field",
  5799. "version": "1.7.0",
  5800. "source": {
  5801. "type": "git",
  5802. "url": "https://git.drupalcode.org/project/linked_field.git",
  5803. "reference": "8.x-1.7"
  5804. },
  5805. "dist": {
  5806. "type": "zip",
  5807. "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.7.zip",
  5808. "reference": "8.x-1.7",
  5809. "shasum": "c304792746a92d105f08931d2b6e09b20ee8d618"
  5810. },
  5811. "require": {
  5812. "drupal/core": "^8.8 || ^9 || ^10 || ^11"
  5813. },
  5814. "type": "drupal-module",
  5815. "extra": {
  5816. "drupal": {
  5817. "version": "8.x-1.7",
  5818. "datestamp": "1748842765",
  5819. "security-coverage": {
  5820. "status": "covered",
  5821. "message": "Covered by Drupal's security advisory policy"
  5822. }
  5823. }
  5824. },
  5825. "notification-url": "https://packages.drupal.org/8/downloads",
  5826. "license": [
  5827. "GPL-2.0-or-later"
  5828. ],
  5829. "authors": [
  5830. {
  5831. "name": "jcnventura",
  5832. "homepage": "https://www.drupal.org/user/122464"
  5833. },
  5834. {
  5835. "name": "yannickoo",
  5836. "homepage": "https://www.drupal.org/user/531118"
  5837. }
  5838. ],
  5839. "description": "Adds the functionality to link fields to a specific destination.",
  5840. "homepage": "https://www.drupal.org/project/linked_field",
  5841. "support": {
  5842. "source": "https://git.drupalcode.org/project/linked_field"
  5843. }
  5844. },
  5845. {
  5846. "name": "drupal/linkit",
  5847. "version": "7.0.7",
  5848. "source": {
  5849. "type": "git",
  5850. "url": "https://git.drupalcode.org/project/linkit.git",
  5851. "reference": "7.0.7"
  5852. },
  5853. "dist": {
  5854. "type": "zip",
  5855. "url": "https://ftp.drupal.org/files/projects/linkit-7.0.7.zip",
  5856. "reference": "7.0.7",
  5857. "shasum": "aa10493dfa34f4f8ce51313d47c66b21b9596f3e"
  5858. },
  5859. "require": {
  5860. "drupal/core": "^10.1 || ^11"
  5861. },
  5862. "require-dev": {
  5863. "drupal/ckeditor": "*",
  5864. "drupal/imce": "*"
  5865. },
  5866. "type": "drupal-module",
  5867. "extra": {
  5868. "drupal": {
  5869. "version": "7.0.7",
  5870. "datestamp": "1753116879",
  5871. "security-coverage": {
  5872. "status": "covered",
  5873. "message": "Covered by Drupal's security advisory policy"
  5874. }
  5875. }
  5876. },
  5877. "notification-url": "https://packages.drupal.org/8/downloads",
  5878. "license": [
  5879. "GPL-2.0-or-later"
  5880. ],
  5881. "authors": [
  5882. {
  5883. "name": "Emil Stjerneman",
  5884. "homepage": "https://stjerneman.com",
  5885. "email": "emil@stjerneman.com",
  5886. "role": "Maintainer"
  5887. },
  5888. {
  5889. "name": "johnwebdev",
  5890. "homepage": "https://www.drupal.org/user/3331569"
  5891. },
  5892. {
  5893. "name": "mark_fullmer",
  5894. "homepage": "https://www.drupal.org/user/2612816"
  5895. }
  5896. ],
  5897. "description": "Linkit - Enriched linking experience",
  5898. "homepage": "http://drupal.org/project/linkit",
  5899. "support": {
  5900. "source": "http://cgit.drupalcode.org/linkit",
  5901. "issues": "http://drupal.org/project/linkit"
  5902. }
  5903. },
  5904. {
  5905. "name": "drupal/mailsystem",
  5906. "version": "4.5.0",
  5907. "source": {
  5908. "type": "git",
  5909. "url": "https://git.drupalcode.org/project/mailsystem.git",
  5910. "reference": "8.x-4.5"
  5911. },
  5912. "dist": {
  5913. "type": "zip",
  5914. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.5.zip",
  5915. "reference": "8.x-4.5",
  5916. "shasum": "e52a814a87b343ab69f8d8ef462a9873c1d01158"
  5917. },
  5918. "require": {
  5919. "drupal/core": "^9 || ^10.1 || ^11"
  5920. },
  5921. "type": "drupal-module",
  5922. "extra": {
  5923. "drupal": {
  5924. "version": "8.x-4.5",
  5925. "datestamp": "1723379369",
  5926. "security-coverage": {
  5927. "status": "covered",
  5928. "message": "Covered by Drupal's security advisory policy"
  5929. }
  5930. }
  5931. },
  5932. "notification-url": "https://packages.drupal.org/8/downloads",
  5933. "license": [
  5934. "GPL-2.0-or-later"
  5935. ],
  5936. "authors": [
  5937. {
  5938. "name": "berdir",
  5939. "homepage": "https://www.drupal.org/user/214652"
  5940. },
  5941. {
  5942. "name": "emartoni",
  5943. "homepage": "https://www.drupal.org/user/3225331"
  5944. },
  5945. {
  5946. "name": "joseph.olstad",
  5947. "homepage": "https://www.drupal.org/user/1321830"
  5948. },
  5949. {
  5950. "name": "les lim",
  5951. "homepage": "https://www.drupal.org/user/84263"
  5952. },
  5953. {
  5954. "name": "manuel garcia",
  5955. "homepage": "https://www.drupal.org/user/213194"
  5956. },
  5957. {
  5958. "name": "miro_dietiker",
  5959. "homepage": "https://www.drupal.org/user/227761"
  5960. },
  5961. {
  5962. "name": "Nafes",
  5963. "homepage": "https://www.drupal.org/user/2489926"
  5964. },
  5965. {
  5966. "name": "pillarsdotnet",
  5967. "homepage": "https://www.drupal.org/user/36148"
  5968. },
  5969. {
  5970. "name": "renatog",
  5971. "homepage": "https://www.drupal.org/user/3326031"
  5972. },
  5973. {
  5974. "name": "tr",
  5975. "homepage": "https://www.drupal.org/user/202830"
  5976. }
  5977. ],
  5978. "description": "Mail System",
  5979. "homepage": "https://www.drupal.org/project/mailsystem",
  5980. "support": {
  5981. "source": "https://git.drupalcode.org/project/mailsystem"
  5982. }
  5983. },
  5984. {
  5985. "name": "drupal/manage_display",
  5986. "version": "3.0.1",
  5987. "source": {
  5988. "type": "git",
  5989. "url": "https://git.drupalcode.org/project/manage_display.git",
  5990. "reference": "3.0.1"
  5991. },
  5992. "dist": {
  5993. "type": "zip",
  5994. "url": "https://ftp.drupal.org/files/projects/manage_display-3.0.1.zip",
  5995. "reference": "3.0.1",
  5996. "shasum": "23838a88412db17163ad6c78102bf02e5c52a8a3"
  5997. },
  5998. "require": {
  5999. "drupal/core": "^9.4 || ^10 || ^11"
  6000. },
  6001. "type": "drupal-module",
  6002. "extra": {
  6003. "drupal": {
  6004. "version": "3.0.1",
  6005. "datestamp": "1714834549",
  6006. "security-coverage": {
  6007. "status": "covered",
  6008. "message": "Covered by Drupal's security advisory policy"
  6009. }
  6010. }
  6011. },
  6012. "notification-url": "https://packages.drupal.org/8/downloads",
  6013. "license": [
  6014. "GPL-2.0-or-later"
  6015. ],
  6016. "authors": [
  6017. {
  6018. "name": "Adam Shepherd (AdamPS)",
  6019. "homepage": "https://www.drupal.org/u/adamps",
  6020. "role": "Maintainer"
  6021. },
  6022. {
  6023. "name": "Viktor Holovachek (AstonVictor)",
  6024. "homepage": "https://www.drupal.org/u/astonvictor",
  6025. "role": "Maintainer"
  6026. }
  6027. ],
  6028. "description": "This project makes base fields such as 'title' available in 'Manage Display'.",
  6029. "homepage": "https://www.drupal.org/project/manage_display",
  6030. "keywords": [
  6031. "Drupal"
  6032. ],
  6033. "support": {
  6034. "source": "https://git.drupalcode.org/project/manage_display",
  6035. "issues": "https://www.drupal.org/project/issues/manage_display"
  6036. }
  6037. },
  6038. {
  6039. "name": "drupal/matomo",
  6040. "version": "1.25.0",
  6041. "source": {
  6042. "type": "git",
  6043. "url": "https://git.drupalcode.org/project/matomo.git",
  6044. "reference": "8.x-1.25"
  6045. },
  6046. "dist": {
  6047. "type": "zip",
  6048. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.25.zip",
  6049. "reference": "8.x-1.25",
  6050. "shasum": "5e65764f4499061fa33cb5c46afcc26a85b8725e"
  6051. },
  6052. "require": {
  6053. "drupal/core": "^9.0 || ^10"
  6054. },
  6055. "conflict": {
  6056. "drupal/csp": "<1.12"
  6057. },
  6058. "require-dev": {
  6059. "drupal/csp": "~1.12",
  6060. "drupal/php": "~1.1",
  6061. "drupal/token": "~1.9"
  6062. },
  6063. "type": "drupal-module",
  6064. "extra": {
  6065. "drupal": {
  6066. "version": "8.x-1.25",
  6067. "datestamp": "1738948462",
  6068. "security-coverage": {
  6069. "status": "covered",
  6070. "message": "Covered by Drupal's security advisory policy"
  6071. }
  6072. }
  6073. },
  6074. "notification-url": "https://packages.drupal.org/8/downloads",
  6075. "license": [
  6076. "GPL-2.0-or-later"
  6077. ],
  6078. "authors": [
  6079. {
  6080. "name": "c-logemann",
  6081. "homepage": "https://www.drupal.org/user/218368"
  6082. },
  6083. {
  6084. "name": "grimreaper",
  6085. "homepage": "https://www.drupal.org/user/2388214"
  6086. },
  6087. {
  6088. "name": "hass",
  6089. "homepage": "https://www.drupal.org/user/85918"
  6090. },
  6091. {
  6092. "name": "shelane",
  6093. "homepage": "https://www.drupal.org/user/2674989"
  6094. }
  6095. ],
  6096. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  6097. "homepage": "https://www.drupal.org/project/matomo",
  6098. "support": {
  6099. "source": "https://git.drupalcode.org/project/matomo"
  6100. }
  6101. },
  6102. {
  6103. "name": "drupal/maxlength",
  6104. "version": "3.1.1",
  6105. "source": {
  6106. "type": "git",
  6107. "url": "https://git.drupalcode.org/project/maxlength.git",
  6108. "reference": "3.1.1"
  6109. },
  6110. "dist": {
  6111. "type": "zip",
  6112. "url": "https://ftp.drupal.org/files/projects/maxlength-3.1.1.zip",
  6113. "reference": "3.1.1",
  6114. "shasum": "85059a5d5107a13c780536aa05972e5e97c1308b"
  6115. },
  6116. "require": {
  6117. "drupal/core": "^10 || ^11"
  6118. },
  6119. "type": "drupal-module",
  6120. "extra": {
  6121. "drupal": {
  6122. "version": "3.1.1",
  6123. "datestamp": "1738341546",
  6124. "security-coverage": {
  6125. "status": "covered",
  6126. "message": "Covered by Drupal's security advisory policy"
  6127. }
  6128. }
  6129. },
  6130. "notification-url": "https://packages.drupal.org/8/downloads",
  6131. "license": [
  6132. "GPL-2.0-or-later"
  6133. ],
  6134. "authors": [
  6135. {
  6136. "name": "Marius Scurtescu (mariuss)",
  6137. "homepage": "https://www.drupal.org/u/mariuss",
  6138. "role": "Maintainer"
  6139. },
  6140. {
  6141. "name": "Clayton Dewey (cedewey)",
  6142. "homepage": "https://www.drupal.org/u/cedewey",
  6143. "role": "Maintainer"
  6144. },
  6145. {
  6146. "name": "Daniel Wehner (dawehner)",
  6147. "homepage": "https://www.drupal.org/u/dawehner",
  6148. "role": "Maintainer"
  6149. },
  6150. {
  6151. "name": "Paulino Michelazzo (pmichelazzo)",
  6152. "homepage": "https://www.drupal.org/u/pmichelazzo",
  6153. "role": "Maintainer"
  6154. },
  6155. {
  6156. "name": "Jeff Hipp (hipp2bsquare)",
  6157. "homepage": "https://www.drupal.org/u/hipp2bsquare",
  6158. "role": "Maintainer"
  6159. },
  6160. {
  6161. "name": "Steven DuBois (srdtwc)",
  6162. "homepage": "https://www.drupal.org/u/srdtwc",
  6163. "role": "Maintainer"
  6164. },
  6165. {
  6166. "name": "Adam Nagy (joevagyok)",
  6167. "homepage": "https://www.drupal.org/u/joevagyok",
  6168. "role": "Maintainer"
  6169. }
  6170. ],
  6171. "description": "MaxLength allows a soft or hard character limit to be set on titles, text fields and link fields.",
  6172. "homepage": "https://www.drupal.org/project/maxlength",
  6173. "support": {
  6174. "source": "https://git.drupalcode.org/project/maxlength",
  6175. "issues": "https://www.drupal.org/project/issues/maxlength"
  6176. }
  6177. },
  6178. {
  6179. "name": "drupal/menu_admin_per_menu",
  6180. "version": "1.7.0",
  6181. "source": {
  6182. "type": "git",
  6183. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  6184. "reference": "8.x-1.7"
  6185. },
  6186. "dist": {
  6187. "type": "zip",
  6188. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.7.zip",
  6189. "reference": "8.x-1.7",
  6190. "shasum": "ce9faed09c95de7c7a57653aab66c5afc3e946a2"
  6191. },
  6192. "require": {
  6193. "drupal/core": "^10.2 || ^11.0 || ^12"
  6194. },
  6195. "type": "drupal-module",
  6196. "extra": {
  6197. "drupal": {
  6198. "version": "8.x-1.7",
  6199. "datestamp": "1750246188",
  6200. "security-coverage": {
  6201. "status": "covered",
  6202. "message": "Covered by Drupal's security advisory policy"
  6203. }
  6204. }
  6205. },
  6206. "notification-url": "https://packages.drupal.org/8/downloads",
  6207. "license": [
  6208. "GPL-2.0-or-later"
  6209. ],
  6210. "authors": [
  6211. {
  6212. "name": "anrikun",
  6213. "homepage": "https://www.drupal.org/user/410199"
  6214. },
  6215. {
  6216. "name": "jeroent",
  6217. "homepage": "https://www.drupal.org/user/2228934"
  6218. },
  6219. {
  6220. "name": "jonas139",
  6221. "homepage": "https://www.drupal.org/user/2873401"
  6222. },
  6223. {
  6224. "name": "mkdok",
  6225. "homepage": "https://www.drupal.org/user/3308753"
  6226. }
  6227. ],
  6228. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  6229. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  6230. "keywords": [
  6231. "Drupal"
  6232. ],
  6233. "support": {
  6234. "source": "https://git.drupalcode.org/project/menu_admin_per_menu",
  6235. "issues": "https://drupal.org/project/issues/menu_admin_per_menu"
  6236. }
  6237. },
  6238. {
  6239. "name": "drupal/menu_block",
  6240. "version": "1.14.0",
  6241. "source": {
  6242. "type": "git",
  6243. "url": "https://git.drupalcode.org/project/menu_block.git",
  6244. "reference": "8.x-1.14"
  6245. },
  6246. "dist": {
  6247. "type": "zip",
  6248. "url": "https://ftp.drupal.org/files/projects/menu_block-8.x-1.14.zip",
  6249. "reference": "8.x-1.14",
  6250. "shasum": "c71e60acaba8a7553e8cf423a56328771cbdedf4"
  6251. },
  6252. "require": {
  6253. "drupal/core": "^10.1 || ^11"
  6254. },
  6255. "type": "drupal-module",
  6256. "extra": {
  6257. "drupal": {
  6258. "version": "8.x-1.14",
  6259. "datestamp": "1740624449",
  6260. "security-coverage": {
  6261. "status": "covered",
  6262. "message": "Covered by Drupal's security advisory policy"
  6263. }
  6264. }
  6265. },
  6266. "notification-url": "https://packages.drupal.org/8/downloads",
  6267. "license": [
  6268. "GPL-2.0-or-later"
  6269. ],
  6270. "authors": [
  6271. {
  6272. "name": "dave reid",
  6273. "homepage": "https://www.drupal.org/user/53892"
  6274. },
  6275. {
  6276. "name": "joelpittet",
  6277. "homepage": "https://www.drupal.org/user/160302"
  6278. },
  6279. {
  6280. "name": "johnalbin",
  6281. "homepage": "https://www.drupal.org/user/32095"
  6282. },
  6283. {
  6284. "name": "kim.pepper",
  6285. "homepage": "https://www.drupal.org/user/370574"
  6286. },
  6287. {
  6288. "name": "renatog",
  6289. "homepage": "https://www.drupal.org/user/3326031"
  6290. },
  6291. {
  6292. "name": "rrrob",
  6293. "homepage": "https://www.drupal.org/user/273533"
  6294. }
  6295. ],
  6296. "description": "Provides configurable blocks of menu links.",
  6297. "homepage": "https://www.drupal.org/project/menu_block",
  6298. "support": {
  6299. "source": "https://git.drupalcode.org/project/menu_block"
  6300. }
  6301. },
  6302. {
  6303. "name": "drupal/page_manager",
  6304. "version": "4.0.0-rc3",
  6305. "source": {
  6306. "type": "git",
  6307. "url": "https://git.drupalcode.org/project/page_manager.git",
  6308. "reference": "8.x-4.0-rc3"
  6309. },
  6310. "dist": {
  6311. "type": "zip",
  6312. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc3.zip",
  6313. "reference": "8.x-4.0-rc3",
  6314. "shasum": "9c68ed3e87196e42ceeb80d53064494d7a104abc"
  6315. },
  6316. "require": {
  6317. "drupal/core": "^9.5 || ^10 || ^11",
  6318. "drupal/ctools": "^3.15 || ^4.1"
  6319. },
  6320. "type": "drupal-module",
  6321. "extra": {
  6322. "drupal": {
  6323. "version": "8.x-4.0-rc3",
  6324. "datestamp": "1721976404",
  6325. "security-coverage": {
  6326. "status": "not-covered",
  6327. "message": "RC releases are not covered by Drupal security advisories."
  6328. }
  6329. },
  6330. "branch-alias": {
  6331. "dev-8.x-4.x": "4.x-dev"
  6332. }
  6333. },
  6334. "notification-url": "https://packages.drupal.org/8/downloads",
  6335. "license": [
  6336. "GPL-2.0-or-later"
  6337. ],
  6338. "authors": [
  6339. {
  6340. "name": "Tim Plunkett",
  6341. "homepage": "https://www.drupal.org/u/tim.plunkett",
  6342. "role": "Maintainer"
  6343. },
  6344. {
  6345. "name": "EclipseGc",
  6346. "homepage": "https://www.drupal.org/user/61203"
  6347. },
  6348. {
  6349. "name": "japerry",
  6350. "homepage": "https://www.drupal.org/user/45640"
  6351. },
  6352. {
  6353. "name": "joelpittet",
  6354. "homepage": "https://www.drupal.org/user/160302"
  6355. },
  6356. {
  6357. "name": "manuel.adan",
  6358. "homepage": "https://www.drupal.org/user/516420"
  6359. },
  6360. {
  6361. "name": "phenaproxima",
  6362. "homepage": "https://www.drupal.org/user/205645"
  6363. }
  6364. ],
  6365. "description": "Provides a way to place blocks on a custom page.",
  6366. "homepage": "https://www.drupal.org/project/page_manager",
  6367. "support": {
  6368. "source": "https://git.drupal.org/project/page_manager.git",
  6369. "issues": "https://www.drupal.org/project/issues/page_manager",
  6370. "irc": "irc://irc.freenode.org/drupal-contribute"
  6371. }
  6372. },
  6373. {
  6374. "name": "drupal/panels",
  6375. "version": "4.9.0",
  6376. "source": {
  6377. "type": "git",
  6378. "url": "https://git.drupalcode.org/project/panels.git",
  6379. "reference": "8.x-4.9"
  6380. },
  6381. "dist": {
  6382. "type": "zip",
  6383. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.9.zip",
  6384. "reference": "8.x-4.9",
  6385. "shasum": "7c05719e3af591947159c071c3bacff9d24d2be5"
  6386. },
  6387. "require": {
  6388. "drupal/core": "^9.5 || ^10 || ^11",
  6389. "drupal/ctools": "^3.15 || ^4.1",
  6390. "drupal/jquery_ui_droppable": "^1.0 || ^2.0"
  6391. },
  6392. "require-dev": {
  6393. "drupal/jquery_ui_droppable": "*",
  6394. "drupal/page_manager": "^4"
  6395. },
  6396. "type": "drupal-module",
  6397. "extra": {
  6398. "drupal": {
  6399. "version": "8.x-4.9",
  6400. "datestamp": "1744218203",
  6401. "security-coverage": {
  6402. "status": "covered",
  6403. "message": "Covered by Drupal's security advisory policy"
  6404. }
  6405. },
  6406. "branch-alias": {
  6407. "dev-8.x-4.x": "4.x-dev"
  6408. }
  6409. },
  6410. "notification-url": "https://packages.drupal.org/8/downloads",
  6411. "license": [
  6412. "GPL-2.0+"
  6413. ],
  6414. "authors": [
  6415. {
  6416. "name": "Jakob Perry",
  6417. "homepage": "https://www.drupal.org/u/japerry"
  6418. },
  6419. {
  6420. "name": "Samuel Mortenson",
  6421. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  6422. },
  6423. {
  6424. "name": "See other contributors",
  6425. "homepage": "https://www.drupal.org/node/74958/committers"
  6426. },
  6427. {
  6428. "name": "joelpittet",
  6429. "homepage": "https://www.drupal.org/user/160302"
  6430. },
  6431. {
  6432. "name": "Letharion",
  6433. "homepage": "https://www.drupal.org/user/373603"
  6434. },
  6435. {
  6436. "name": "merlinofchaos",
  6437. "homepage": "https://www.drupal.org/user/26979"
  6438. },
  6439. {
  6440. "name": "neclimdul",
  6441. "homepage": "https://www.drupal.org/user/48673"
  6442. },
  6443. {
  6444. "name": "phenaproxima",
  6445. "homepage": "https://www.drupal.org/user/205645"
  6446. },
  6447. {
  6448. "name": "samuel.mortenson",
  6449. "homepage": "https://www.drupal.org/user/2582268"
  6450. }
  6451. ],
  6452. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  6453. "homepage": "https://www.drupal.org/project/panels",
  6454. "support": {
  6455. "source": "https://git.drupalcode.org/project/panels",
  6456. "issues": "https://www.drupal.org/project/issues/panels",
  6457. "irc": "irc://irc.freenode.org/drupal-scotch"
  6458. }
  6459. },
  6460. {
  6461. "name": "drupal/paragraphs",
  6462. "version": "1.19.0",
  6463. "source": {
  6464. "type": "git",
  6465. "url": "https://git.drupalcode.org/project/paragraphs.git",
  6466. "reference": "8.x-1.19"
  6467. },
  6468. "dist": {
  6469. "type": "zip",
  6470. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.19.zip",
  6471. "reference": "8.x-1.19",
  6472. "shasum": "831a81a11eac419e8410db45efef5b283c4d117c"
  6473. },
  6474. "require": {
  6475. "drupal/core": "^10.2 || ^11",
  6476. "drupal/entity_reference_revisions": "~1.3"
  6477. },
  6478. "require-dev": {
  6479. "drupal/block_field": "1.x-dev",
  6480. "drupal/diff": "1.x-dev",
  6481. "drupal/entity_browser": "2.x-dev",
  6482. "drupal/entity_usage": "2.x-dev",
  6483. "drupal/feeds": "^3",
  6484. "drupal/field_group": "3.x-dev",
  6485. "drupal/inline_entity_form": "3.x-dev",
  6486. "drupal/paragraphs-paragraphs_library": "*",
  6487. "drupal/replicate": "1.x-dev",
  6488. "drupal/search_api": "^1",
  6489. "drupal/search_api_db": "*"
  6490. },
  6491. "suggest": {
  6492. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  6493. },
  6494. "type": "drupal-module",
  6495. "extra": {
  6496. "drupal": {
  6497. "version": "8.x-1.19",
  6498. "datestamp": "1740907076",
  6499. "security-coverage": {
  6500. "status": "covered",
  6501. "message": "Covered by Drupal's security advisory policy"
  6502. }
  6503. }
  6504. },
  6505. "notification-url": "https://packages.drupal.org/8/downloads",
  6506. "license": [
  6507. "GPL-2.0-or-later"
  6508. ],
  6509. "authors": [
  6510. {
  6511. "name": "berdir",
  6512. "homepage": "https://www.drupal.org/user/214652"
  6513. },
  6514. {
  6515. "name": "frans",
  6516. "homepage": "https://www.drupal.org/user/514222"
  6517. },
  6518. {
  6519. "name": "jeroen.b",
  6520. "homepage": "https://www.drupal.org/user/1853532"
  6521. },
  6522. {
  6523. "name": "jstoller",
  6524. "homepage": "https://www.drupal.org/user/99012"
  6525. },
  6526. {
  6527. "name": "miro_dietiker",
  6528. "homepage": "https://www.drupal.org/user/227761"
  6529. },
  6530. {
  6531. "name": "primsi",
  6532. "homepage": "https://www.drupal.org/user/282629"
  6533. }
  6534. ],
  6535. "description": "Enables the creation of Paragraphs entities.",
  6536. "homepage": "https://www.drupal.org/project/paragraphs",
  6537. "support": {
  6538. "source": "https://git.drupalcode.org/project/paragraphs"
  6539. }
  6540. },
  6541. {
  6542. "name": "drupal/pathauto",
  6543. "version": "1.13.0",
  6544. "source": {
  6545. "type": "git",
  6546. "url": "https://git.drupalcode.org/project/pathauto.git",
  6547. "reference": "8.x-1.13"
  6548. },
  6549. "dist": {
  6550. "type": "zip",
  6551. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.13.zip",
  6552. "reference": "8.x-1.13",
  6553. "shasum": "e64b5a82cf1b8ab48bce400b21ae6fc99c8078fd"
  6554. },
  6555. "require": {
  6556. "drupal/core": "^9.4 || ^10 || ^11",
  6557. "drupal/ctools": "*",
  6558. "drupal/token": "*"
  6559. },
  6560. "require-dev": {
  6561. "drupal/forum": "*"
  6562. },
  6563. "suggest": {
  6564. "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."
  6565. },
  6566. "type": "drupal-module",
  6567. "extra": {
  6568. "drupal": {
  6569. "version": "8.x-1.13",
  6570. "datestamp": "1739552840",
  6571. "security-coverage": {
  6572. "status": "covered",
  6573. "message": "Covered by Drupal's security advisory policy"
  6574. }
  6575. },
  6576. "drush": {
  6577. "services": {
  6578. "drush.services.yml": "^9 || ^10"
  6579. }
  6580. }
  6581. },
  6582. "notification-url": "https://packages.drupal.org/8/downloads",
  6583. "license": [
  6584. "GPL-2.0-or-later"
  6585. ],
  6586. "authors": [
  6587. {
  6588. "name": "berdir",
  6589. "homepage": "https://www.drupal.org/user/214652"
  6590. },
  6591. {
  6592. "name": "dave reid",
  6593. "homepage": "https://www.drupal.org/user/53892"
  6594. },
  6595. {
  6596. "name": "Freso",
  6597. "homepage": "https://www.drupal.org/user/27504"
  6598. },
  6599. {
  6600. "name": "greggles",
  6601. "homepage": "https://www.drupal.org/user/36762"
  6602. }
  6603. ],
  6604. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6605. "homepage": "https://www.drupal.org/project/pathauto",
  6606. "support": {
  6607. "source": "https://cgit.drupalcode.org/pathauto",
  6608. "issues": "https://www.drupal.org/project/issues/pathauto",
  6609. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6610. }
  6611. },
  6612. {
  6613. "name": "drupal/pathologic",
  6614. "version": "2.0.0-alpha3",
  6615. "source": {
  6616. "type": "git",
  6617. "url": "https://git.drupalcode.org/project/pathologic.git",
  6618. "reference": "2.0.0-alpha3"
  6619. },
  6620. "dist": {
  6621. "type": "zip",
  6622. "url": "https://ftp.drupal.org/files/projects/pathologic-2.0.0-alpha3.zip",
  6623. "reference": "2.0.0-alpha3",
  6624. "shasum": "f59c465b7070c3e6d12a204a55ee1117b991ae93"
  6625. },
  6626. "require": {
  6627. "drupal/core": "^9 || ^10 || ^11"
  6628. },
  6629. "type": "drupal-module",
  6630. "extra": {
  6631. "drupal": {
  6632. "version": "2.0.0-alpha3",
  6633. "datestamp": "1733441073",
  6634. "security-coverage": {
  6635. "status": "not-covered",
  6636. "message": "Alpha releases are not covered by Drupal security advisories."
  6637. }
  6638. }
  6639. },
  6640. "notification-url": "https://packages.drupal.org/8/downloads",
  6641. "license": [
  6642. "GPL-2.0+"
  6643. ],
  6644. "authors": [
  6645. {
  6646. "name": "berdir",
  6647. "homepage": "https://www.drupal.org/user/214652"
  6648. },
  6649. {
  6650. "name": "dww",
  6651. "homepage": "https://www.drupal.org/user/46549"
  6652. },
  6653. {
  6654. "name": "Garrett Albright",
  6655. "homepage": "https://www.drupal.org/user/191212"
  6656. },
  6657. {
  6658. "name": "mark_fullmer",
  6659. "homepage": "https://www.drupal.org/user/2612816"
  6660. }
  6661. ],
  6662. "description": "Helps avoid broken links and incorrect paths in content.",
  6663. "homepage": "https://www.drupal.org/project/pathologic",
  6664. "support": {
  6665. "source": "https://git.drupalcode.org/project/pathologic"
  6666. }
  6667. },
  6668. {
  6669. "name": "drupal/persistent_login",
  6670. "version": "2.2.4",
  6671. "source": {
  6672. "type": "git",
  6673. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6674. "reference": "2.2.4"
  6675. },
  6676. "dist": {
  6677. "type": "zip",
  6678. "url": "https://ftp.drupal.org/files/projects/persistent_login-2.2.4.zip",
  6679. "reference": "2.2.4",
  6680. "shasum": "7048ecf440938f0245f87bfb8c21f61292fce12d"
  6681. },
  6682. "require": {
  6683. "drupal/core": "^10 || ^11"
  6684. },
  6685. "type": "drupal-module",
  6686. "extra": {
  6687. "drupal": {
  6688. "version": "2.2.4",
  6689. "datestamp": "1728082564",
  6690. "security-coverage": {
  6691. "status": "covered",
  6692. "message": "Covered by Drupal's security advisory policy"
  6693. }
  6694. }
  6695. },
  6696. "notification-url": "https://packages.drupal.org/8/downloads",
  6697. "license": [
  6698. "GPL-2.0-or-later"
  6699. ],
  6700. "authors": [
  6701. {
  6702. "name": "gapple",
  6703. "homepage": "https://www.drupal.org/user/490940"
  6704. }
  6705. ],
  6706. "description": "Provides a \"Remember Me\" feature on the login form.",
  6707. "homepage": "https://www.drupal.org/project/persistent_login",
  6708. "keywords": [
  6709. "Drupal"
  6710. ],
  6711. "support": {
  6712. "source": "https://git.drupalcode.org/project/persistent_login",
  6713. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6714. }
  6715. },
  6716. {
  6717. "name": "drupal/redirect",
  6718. "version": "1.11.0",
  6719. "source": {
  6720. "type": "git",
  6721. "url": "https://git.drupalcode.org/project/redirect.git",
  6722. "reference": "8.x-1.11"
  6723. },
  6724. "dist": {
  6725. "type": "zip",
  6726. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.11.zip",
  6727. "reference": "8.x-1.11",
  6728. "shasum": "7df8b3524bbde07d254216039636947a689140ef"
  6729. },
  6730. "require": {
  6731. "drupal/core": "^9.2 || ^10 || ^11"
  6732. },
  6733. "type": "drupal-module",
  6734. "extra": {
  6735. "drupal": {
  6736. "version": "8.x-1.11",
  6737. "datestamp": "1737382886",
  6738. "security-coverage": {
  6739. "status": "covered",
  6740. "message": "Covered by Drupal's security advisory policy"
  6741. }
  6742. }
  6743. },
  6744. "notification-url": "https://packages.drupal.org/8/downloads",
  6745. "license": [
  6746. "GPL-2.0-or-later"
  6747. ],
  6748. "authors": [
  6749. {
  6750. "name": "berdir",
  6751. "homepage": "https://www.drupal.org/user/214652"
  6752. },
  6753. {
  6754. "name": "dave reid",
  6755. "homepage": "https://www.drupal.org/user/53892"
  6756. },
  6757. {
  6758. "name": "kristen pol",
  6759. "homepage": "https://www.drupal.org/user/8389"
  6760. },
  6761. {
  6762. "name": "pifagor",
  6763. "homepage": "https://www.drupal.org/user/2375692"
  6764. }
  6765. ],
  6766. "description": "Allows users to redirect from old URLs to new URLs.",
  6767. "homepage": "https://www.drupal.org/project/redirect",
  6768. "support": {
  6769. "source": "https://git.drupalcode.org/project/redirect"
  6770. }
  6771. },
  6772. {
  6773. "name": "drupal/redis",
  6774. "version": "1.9.0",
  6775. "source": {
  6776. "type": "git",
  6777. "url": "https://git.drupalcode.org/project/redis.git",
  6778. "reference": "8.x-1.9"
  6779. },
  6780. "dist": {
  6781. "type": "zip",
  6782. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.9.zip",
  6783. "reference": "8.x-1.9",
  6784. "shasum": "77e2e8ddb95be08f3fe9f74182c7ff0476e15674"
  6785. },
  6786. "require": {
  6787. "drupal/core": "^9.3 || ^10 || ^11"
  6788. },
  6789. "suggest": {
  6790. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  6791. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  6792. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  6793. },
  6794. "type": "drupal-module",
  6795. "extra": {
  6796. "drupal": {
  6797. "version": "8.x-1.9",
  6798. "datestamp": "1737932099",
  6799. "security-coverage": {
  6800. "status": "covered",
  6801. "message": "Covered by Drupal's security advisory policy"
  6802. }
  6803. }
  6804. },
  6805. "autoload": {
  6806. "psr-4": {
  6807. "Drupal\\redis\\": "src"
  6808. }
  6809. },
  6810. "notification-url": "https://packages.drupal.org/8/downloads",
  6811. "license": [
  6812. "GPL-2.0-or-later"
  6813. ],
  6814. "authors": [
  6815. {
  6816. "name": "berdir",
  6817. "homepage": "https://www.drupal.org/user/214652"
  6818. },
  6819. {
  6820. "name": "greg.1.anderson",
  6821. "homepage": "https://www.drupal.org/user/438598"
  6822. },
  6823. {
  6824. "name": "kporras07",
  6825. "homepage": "https://www.drupal.org/user/1349780"
  6826. },
  6827. {
  6828. "name": "pounard",
  6829. "homepage": "https://www.drupal.org/user/240164"
  6830. }
  6831. ],
  6832. "description": "Integration of Drupal with the Redis key-value store.",
  6833. "homepage": "https://www.drupal.org/project/redis",
  6834. "support": {
  6835. "source": "https://git.drupalcode.org/project/redis"
  6836. }
  6837. },
  6838. {
  6839. "name": "drupal/role_delegation",
  6840. "version": "1.4.0",
  6841. "source": {
  6842. "type": "git",
  6843. "url": "https://git.drupalcode.org/project/role_delegation.git",
  6844. "reference": "8.x-1.4"
  6845. },
  6846. "dist": {
  6847. "type": "zip",
  6848. "url": "https://ftp.drupal.org/files/projects/role_delegation-8.x-1.4.zip",
  6849. "reference": "8.x-1.4",
  6850. "shasum": "7637fb2506b134bc888c74d3dcfa79c8a0c207aa"
  6851. },
  6852. "require": {
  6853. "drupal/core": "^10.3 || ^11"
  6854. },
  6855. "type": "drupal-module",
  6856. "extra": {
  6857. "drupal": {
  6858. "version": "8.x-1.4",
  6859. "datestamp": "1751012870",
  6860. "security-coverage": {
  6861. "status": "covered",
  6862. "message": "Covered by Drupal's security advisory policy"
  6863. }
  6864. }
  6865. },
  6866. "notification-url": "https://packages.drupal.org/8/downloads",
  6867. "license": [
  6868. "GPL-2.0-or-later"
  6869. ],
  6870. "authors": [
  6871. {
  6872. "name": "Jeroen Tubex",
  6873. "homepage": "https://www.drupal.org/u/jeroent",
  6874. "role": "Maintainer"
  6875. },
  6876. {
  6877. "name": "benjy",
  6878. "homepage": "https://www.drupal.org/user/1852732"
  6879. },
  6880. {
  6881. "name": "dieterholvoet",
  6882. "homepage": "https://www.drupal.org/user/3567222"
  6883. },
  6884. {
  6885. "name": "jeroent",
  6886. "homepage": "https://www.drupal.org/user/2228934"
  6887. }
  6888. ],
  6889. "description": "Allows site administrators to grant some roles the authority to assign selected roles to users.",
  6890. "homepage": "http://drupal.org/project/role_delegation",
  6891. "support": {
  6892. "source": "https://git.drupalcode.org/project/role_delegation",
  6893. "issues": "http://drupal.org/project/role_delegation"
  6894. }
  6895. },
  6896. {
  6897. "name": "drupal/search_api",
  6898. "version": "1.38.0",
  6899. "source": {
  6900. "type": "git",
  6901. "url": "https://git.drupalcode.org/project/search_api.git",
  6902. "reference": "8.x-1.38"
  6903. },
  6904. "dist": {
  6905. "type": "zip",
  6906. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.38.zip",
  6907. "reference": "8.x-1.38",
  6908. "shasum": "d1c83ba74e553eca07d3ea4b15e5d9c7f009a496"
  6909. },
  6910. "require": {
  6911. "drupal/core": "^10.2 || ^11"
  6912. },
  6913. "conflict": {
  6914. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  6915. },
  6916. "require-dev": {
  6917. "drupal/language_fallback_fix": "@dev",
  6918. "drupal/search_api_autocomplete": "@dev",
  6919. "drupal/search_api_db": "*"
  6920. },
  6921. "suggest": {
  6922. "drupal/facets": "Adds the ability to create faceted searches.",
  6923. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6924. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6925. },
  6926. "type": "drupal-module",
  6927. "extra": {
  6928. "drupal": {
  6929. "version": "8.x-1.38",
  6930. "datestamp": "1740298961",
  6931. "security-coverage": {
  6932. "status": "covered",
  6933. "message": "Covered by Drupal's security advisory policy"
  6934. }
  6935. }
  6936. },
  6937. "notification-url": "https://packages.drupal.org/8/downloads",
  6938. "license": [
  6939. "GPL-2.0-or-later"
  6940. ],
  6941. "authors": [
  6942. {
  6943. "name": "Thomas Seidl",
  6944. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6945. },
  6946. {
  6947. "name": "Nick Veenhof",
  6948. "homepage": "https://www.drupal.org/u/nick_vh"
  6949. },
  6950. {
  6951. "name": "See other contributors",
  6952. "homepage": "https://www.drupal.org/node/790418/committers"
  6953. }
  6954. ],
  6955. "description": "Provides a generic framework for modules offering search capabilities.",
  6956. "homepage": "https://www.drupal.org/project/search_api",
  6957. "support": {
  6958. "source": "https://git.drupalcode.org/project/search_api",
  6959. "issues": "https://www.drupal.org/project/issues/search_api",
  6960. "irc": "irc://irc.freenode.org/drupal-search-api"
  6961. }
  6962. },
  6963. {
  6964. "name": "drupal/search_api_db",
  6965. "version": "1.38.0",
  6966. "require": {
  6967. "drupal/core": "^10.2 || ^11",
  6968. "drupal/search_api": "*"
  6969. },
  6970. "type": "metapackage",
  6971. "extra": {
  6972. "drupal": {
  6973. "version": "8.x-1.38",
  6974. "datestamp": "1740298961",
  6975. "security-coverage": {
  6976. "status": "covered",
  6977. "message": "Covered by Drupal's security advisory policy"
  6978. }
  6979. }
  6980. },
  6981. "notification-url": "https://packages.drupal.org/8/downloads",
  6982. "license": [
  6983. "GPL-2.0-or-later"
  6984. ],
  6985. "authors": [
  6986. {
  6987. "name": "borisson_",
  6988. "homepage": "https://www.drupal.org/user/2393360"
  6989. },
  6990. {
  6991. "name": "drunken monkey",
  6992. "homepage": "https://www.drupal.org/user/205582"
  6993. },
  6994. {
  6995. "name": "nick_vh",
  6996. "homepage": "https://www.drupal.org/user/122682"
  6997. }
  6998. ],
  6999. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  7000. "homepage": "https://www.drupal.org/project/search_api",
  7001. "support": {
  7002. "source": "https://git.drupalcode.org/project/search_api"
  7003. }
  7004. },
  7005. {
  7006. "name": "drupal/seven",
  7007. "version": "1.0.0",
  7008. "source": {
  7009. "type": "git",
  7010. "url": "https://git.drupalcode.org/project/seven.git",
  7011. "reference": "1.0.0"
  7012. },
  7013. "dist": {
  7014. "type": "zip",
  7015. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  7016. "reference": "1.0.0",
  7017. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  7018. },
  7019. "require": {
  7020. "drupal/core": "^9 || ^10"
  7021. },
  7022. "type": "drupal-theme",
  7023. "extra": {
  7024. "drupal": {
  7025. "version": "1.0.0",
  7026. "datestamp": "1683652106",
  7027. "security-coverage": {
  7028. "status": "covered",
  7029. "message": "Covered by Drupal's security advisory policy"
  7030. }
  7031. }
  7032. },
  7033. "notification-url": "https://packages.drupal.org/8/downloads",
  7034. "license": [
  7035. "GPL-2.0-or-later"
  7036. ],
  7037. "authors": [
  7038. {
  7039. "name": "avpaderno",
  7040. "homepage": "https://www.drupal.org/user/55077"
  7041. },
  7042. {
  7043. "name": "bnjmnm",
  7044. "homepage": "https://www.drupal.org/user/2369194"
  7045. },
  7046. {
  7047. "name": "krakenbite",
  7048. "homepage": "https://www.drupal.org/user/3805933"
  7049. },
  7050. {
  7051. "name": "lauriii",
  7052. "homepage": "https://www.drupal.org/user/1078742"
  7053. },
  7054. {
  7055. "name": "mcrittenden",
  7056. "homepage": "https://www.drupal.org/user/420631"
  7057. },
  7058. {
  7059. "name": "mrfelton",
  7060. "homepage": "https://www.drupal.org/user/305669"
  7061. }
  7062. ],
  7063. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  7064. "homepage": "https://www.drupal.org/project/seven",
  7065. "support": {
  7066. "source": "https://git.drupalcode.org/project/seven"
  7067. }
  7068. },
  7069. {
  7070. "name": "drupal/slick",
  7071. "version": "2.11.0",
  7072. "source": {
  7073. "type": "git",
  7074. "url": "https://git.drupalcode.org/project/slick.git",
  7075. "reference": "8.x-2.11"
  7076. },
  7077. "dist": {
  7078. "type": "zip",
  7079. "url": "https://ftp.drupal.org/files/projects/slick-8.x-2.11.zip",
  7080. "reference": "8.x-2.11",
  7081. "shasum": "81c8364992578aadec46955c494085d3d04e01f3"
  7082. },
  7083. "require": {
  7084. "drupal/blazy": "^2.17",
  7085. "drupal/core": "^8.8 || ^9 || ^10"
  7086. },
  7087. "type": "drupal-module",
  7088. "extra": {
  7089. "drupal": {
  7090. "version": "8.x-2.11",
  7091. "datestamp": "1712817716",
  7092. "security-coverage": {
  7093. "status": "covered",
  7094. "message": "Covered by Drupal's security advisory policy"
  7095. }
  7096. }
  7097. },
  7098. "notification-url": "https://packages.drupal.org/8/downloads",
  7099. "license": [
  7100. "GPL-2.0-or-later"
  7101. ],
  7102. "authors": [
  7103. {
  7104. "name": "Contributors",
  7105. "homepage": "https://www.drupal.org/node/2232779/committers",
  7106. "role": "Contributors"
  7107. },
  7108. {
  7109. "name": "shadcn",
  7110. "homepage": "https://www.drupal.org/user/571032"
  7111. },
  7112. {
  7113. "name": "thalles",
  7114. "homepage": "https://www.drupal.org/user/3589086"
  7115. }
  7116. ],
  7117. "description": "Slick carousel, the last carousel you'll ever need.",
  7118. "homepage": "https://drupal.org/project/slick",
  7119. "keywords": [
  7120. "Drupal",
  7121. "carousel",
  7122. "slideshow"
  7123. ],
  7124. "support": {
  7125. "source": "https://git.drupalcode.org/project/slick",
  7126. "issues": "https://drupal.org/project/issues/slick"
  7127. }
  7128. },
  7129. {
  7130. "name": "drupal/smart_trim",
  7131. "version": "2.2.0",
  7132. "source": {
  7133. "type": "git",
  7134. "url": "https://git.drupalcode.org/project/smart_trim.git",
  7135. "reference": "2.2.0"
  7136. },
  7137. "dist": {
  7138. "type": "zip",
  7139. "url": "https://ftp.drupal.org/files/projects/smart_trim-2.2.0.zip",
  7140. "reference": "2.2.0",
  7141. "shasum": "564737cf0895e1b8a38af575ab7ca23f55335d9a"
  7142. },
  7143. "require": {
  7144. "drupal/core": "^9.5 || ^10 || ^11",
  7145. "drupal/token": "^1.0",
  7146. "php": ">=8.1"
  7147. },
  7148. "require-dev": {
  7149. "drupal/token_filter": "^2.1 || ^2.2"
  7150. },
  7151. "type": "drupal-module",
  7152. "extra": {
  7153. "drupal": {
  7154. "version": "2.2.0",
  7155. "datestamp": "1723847275",
  7156. "security-coverage": {
  7157. "status": "covered",
  7158. "message": "Covered by Drupal's security advisory policy"
  7159. }
  7160. }
  7161. },
  7162. "notification-url": "https://packages.drupal.org/8/downloads",
  7163. "license": [
  7164. "GPL-2.0-or-later"
  7165. ],
  7166. "authors": [
  7167. {
  7168. "name": "Mark Casias (markie)",
  7169. "homepage": "https://www.drupal.org/u/markie",
  7170. "role": "Maintainer"
  7171. },
  7172. {
  7173. "name": "AmyJune Hineline (volkswagenchick)",
  7174. "homepage": "https://www.drupal.org/u/volkswagenchick",
  7175. "role": "Maintainer"
  7176. },
  7177. {
  7178. "name": "Michael Anello (ultimike)",
  7179. "homepage": "https://www.drupal.org/u/ultimike",
  7180. "role": "Maintainer"
  7181. }
  7182. ],
  7183. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  7184. "homepage": "https://drupal.org/project/smart_trim",
  7185. "support": {
  7186. "source": "https://git.drupalcode.org/project/smart_trim",
  7187. "issues": "https://drupal.org/project/issues/smart_trim"
  7188. }
  7189. },
  7190. {
  7191. "name": "drupal/smtp",
  7192. "version": "1.4.0",
  7193. "source": {
  7194. "type": "git",
  7195. "url": "https://git.drupalcode.org/project/smtp.git",
  7196. "reference": "8.x-1.4"
  7197. },
  7198. "dist": {
  7199. "type": "zip",
  7200. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.4.zip",
  7201. "reference": "8.x-1.4",
  7202. "shasum": "963b4670dc609f30a8c003d888d88893d0841b21"
  7203. },
  7204. "require": {
  7205. "drupal/core": "^9.5 || ^10 || ^11",
  7206. "phpmailer/phpmailer": "^6.1.7"
  7207. },
  7208. "suggest": {
  7209. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7210. },
  7211. "type": "drupal-module",
  7212. "extra": {
  7213. "drupal": {
  7214. "version": "8.x-1.4",
  7215. "datestamp": "1722032780",
  7216. "security-coverage": {
  7217. "status": "covered",
  7218. "message": "Covered by Drupal's security advisory policy"
  7219. }
  7220. },
  7221. "branch-alias": {
  7222. "dev-8.x-1.x": "1.x-dev"
  7223. }
  7224. },
  7225. "notification-url": "https://packages.drupal.org/8/downloads",
  7226. "license": [
  7227. "GPL-2.0-or-later"
  7228. ],
  7229. "authors": [
  7230. {
  7231. "name": "japerry",
  7232. "homepage": "https://www.drupal.org/user/45640"
  7233. },
  7234. {
  7235. "name": "joseph.olstad",
  7236. "homepage": "https://www.drupal.org/user/1321830"
  7237. },
  7238. {
  7239. "name": "LukeLast",
  7240. "homepage": "https://www.drupal.org/user/30151"
  7241. },
  7242. {
  7243. "name": "oadaeh",
  7244. "homepage": "https://www.drupal.org/user/4649"
  7245. },
  7246. {
  7247. "name": "sadashiv",
  7248. "homepage": "https://www.drupal.org/user/1773304"
  7249. },
  7250. {
  7251. "name": "wundo",
  7252. "homepage": "https://www.drupal.org/user/25523"
  7253. },
  7254. {
  7255. "name": "yettyn",
  7256. "homepage": "https://www.drupal.org/user/93281"
  7257. }
  7258. ],
  7259. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7260. "homepage": "https://www.drupal.org/project/smtp",
  7261. "support": {
  7262. "source": "https://git.drupalcode.org/project/smtp",
  7263. "issues": "https://www.drupal.org/project/issues/smtp"
  7264. }
  7265. },
  7266. {
  7267. "name": "drupal/structure_sync",
  7268. "version": "2.0.8",
  7269. "source": {
  7270. "type": "git",
  7271. "url": "https://git.drupalcode.org/project/structure_sync.git",
  7272. "reference": "2.0.8"
  7273. },
  7274. "dist": {
  7275. "type": "zip",
  7276. "url": "https://ftp.drupal.org/files/projects/structure_sync-2.0.8.zip",
  7277. "reference": "2.0.8",
  7278. "shasum": "3f1bd24d7f048cdd9f49e178af9fa47d291d3525"
  7279. },
  7280. "require": {
  7281. "drupal/core": "^8 || ^9 || ^10 || ^11",
  7282. "php": ">=7.1"
  7283. },
  7284. "require-dev": {
  7285. "drush/drush": "^9 || ^10 || ^11 || ^12 || ^13"
  7286. },
  7287. "type": "drupal-module",
  7288. "extra": {
  7289. "drupal": {
  7290. "version": "2.0.8",
  7291. "datestamp": "1728580642",
  7292. "security-coverage": {
  7293. "status": "covered",
  7294. "message": "Covered by Drupal's security advisory policy"
  7295. }
  7296. },
  7297. "drush": {
  7298. "services": {
  7299. "drush.services.yml": "^9 || ^10 || ^11 || ^12 || ^13"
  7300. }
  7301. }
  7302. },
  7303. "notification-url": "https://packages.drupal.org/8/downloads",
  7304. "license": [
  7305. "GPL-2.0-or-later"
  7306. ],
  7307. "authors": [
  7308. {
  7309. "name": "colan",
  7310. "homepage": "https://www.drupal.org/user/58704"
  7311. },
  7312. {
  7313. "name": "fidovdbos",
  7314. "homepage": "https://www.drupal.org/user/1494332"
  7315. },
  7316. {
  7317. "name": "joachim",
  7318. "homepage": "https://www.drupal.org/user/107701"
  7319. },
  7320. {
  7321. "name": "louis-cuny",
  7322. "homepage": "https://www.drupal.org/user/3606332"
  7323. },
  7324. {
  7325. "name": "mparker17",
  7326. "homepage": "https://www.drupal.org/user/536298"
  7327. },
  7328. {
  7329. "name": "spiderman",
  7330. "homepage": "https://www.drupal.org/user/1631"
  7331. },
  7332. {
  7333. "name": "timKruijsen",
  7334. "homepage": "https://www.drupal.org/user/3513437"
  7335. },
  7336. {
  7337. "name": "vinlaurens",
  7338. "homepage": "https://www.drupal.org/user/2945689"
  7339. }
  7340. ],
  7341. "description": "Tool for syncing structural data that is stored as content.",
  7342. "homepage": "https://www.drupal.org/project/structure_sync",
  7343. "support": {
  7344. "source": "https://git.drupalcode.org/project/structure_sync"
  7345. }
  7346. },
  7347. {
  7348. "name": "drupal/synonyms",
  7349. "version": "2.1.4",
  7350. "source": {
  7351. "type": "git",
  7352. "url": "https://git.drupalcode.org/project/synonyms.git",
  7353. "reference": "2.1.4"
  7354. },
  7355. "dist": {
  7356. "type": "zip",
  7357. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.4.zip",
  7358. "reference": "2.1.4",
  7359. "shasum": "ee0f1a7e0d1f565c35cafeb437b59366b76684b3"
  7360. },
  7361. "require": {
  7362. "drupal/core": "^9 || ^10 || ^11"
  7363. },
  7364. "require-dev": {
  7365. "drupal/synonyms_list_field": "*"
  7366. },
  7367. "type": "drupal-module",
  7368. "extra": {
  7369. "drupal": {
  7370. "version": "2.1.4",
  7371. "datestamp": "1723069842",
  7372. "security-coverage": {
  7373. "status": "covered",
  7374. "message": "Covered by Drupal's security advisory policy"
  7375. }
  7376. }
  7377. },
  7378. "notification-url": "https://packages.drupal.org/8/downloads",
  7379. "license": [
  7380. "GPL-2.0-or-later"
  7381. ],
  7382. "authors": [
  7383. {
  7384. "name": "Bojan Zivanovic",
  7385. "homepage": "https://www.drupal.org/u/bojanz",
  7386. "role": "Author and D5, D6 and D7 versions developer."
  7387. },
  7388. {
  7389. "name": "Alex Trosenko",
  7390. "homepage": "https://www.drupal.org/u/bucefal91",
  7391. "role": "D7 and D8 versions developer."
  7392. },
  7393. {
  7394. "name": "Duro Arezina",
  7395. "homepage": "https://www.drupal.org/u/devad",
  7396. "role": "D8+ versions maintenance"
  7397. },
  7398. {
  7399. "name": "See other contributors",
  7400. "homepage": "https://www.drupal.org/node/148775/committers"
  7401. }
  7402. ],
  7403. "description": "Provides synonyms feature for all entities.",
  7404. "homepage": "https://www.drupal.org/project/synonyms",
  7405. "support": {
  7406. "source": "https://git.drupalcode.org/project/synonyms",
  7407. "issues": "https://www.drupal.org/project/issues/synonyms"
  7408. }
  7409. },
  7410. {
  7411. "name": "drupal/token",
  7412. "version": "1.15.0",
  7413. "source": {
  7414. "type": "git",
  7415. "url": "https://git.drupalcode.org/project/token.git",
  7416. "reference": "8.x-1.15"
  7417. },
  7418. "dist": {
  7419. "type": "zip",
  7420. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.15.zip",
  7421. "reference": "8.x-1.15",
  7422. "shasum": "5916fbccc86458a5f51e71f832ac70ff4c84ebdf"
  7423. },
  7424. "require": {
  7425. "drupal/core": "^9.2 || ^10 || ^11"
  7426. },
  7427. "require-dev": {
  7428. "drupal/book": "*"
  7429. },
  7430. "type": "drupal-module",
  7431. "extra": {
  7432. "drupal": {
  7433. "version": "8.x-1.15",
  7434. "datestamp": "1722206211",
  7435. "security-coverage": {
  7436. "status": "covered",
  7437. "message": "Covered by Drupal's security advisory policy"
  7438. }
  7439. },
  7440. "drush": {
  7441. "services": {
  7442. "drush.services.yml": ">=9"
  7443. }
  7444. }
  7445. },
  7446. "notification-url": "https://packages.drupal.org/8/downloads",
  7447. "license": [
  7448. "GPL-2.0-or-later"
  7449. ],
  7450. "authors": [
  7451. {
  7452. "name": "berdir",
  7453. "homepage": "https://www.drupal.org/user/214652"
  7454. },
  7455. {
  7456. "name": "dave reid",
  7457. "homepage": "https://www.drupal.org/user/53892"
  7458. },
  7459. {
  7460. "name": "eaton",
  7461. "homepage": "https://www.drupal.org/user/16496"
  7462. },
  7463. {
  7464. "name": "fago",
  7465. "homepage": "https://www.drupal.org/user/16747"
  7466. },
  7467. {
  7468. "name": "greggles",
  7469. "homepage": "https://www.drupal.org/user/36762"
  7470. },
  7471. {
  7472. "name": "mikeryan",
  7473. "homepage": "https://www.drupal.org/user/4420"
  7474. }
  7475. ],
  7476. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7477. "homepage": "https://www.drupal.org/project/token",
  7478. "support": {
  7479. "source": "https://git.drupalcode.org/project/token"
  7480. }
  7481. },
  7482. {
  7483. "name": "drupal/translation_views",
  7484. "version": "1.0.0-alpha11",
  7485. "source": {
  7486. "type": "git",
  7487. "url": "https://git.drupalcode.org/project/translation_views.git",
  7488. "reference": "8.x-1.0-alpha11"
  7489. },
  7490. "dist": {
  7491. "type": "zip",
  7492. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  7493. "reference": "8.x-1.0-alpha11",
  7494. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  7495. },
  7496. "require": {
  7497. "drupal/core": "^8.8 || ^9 || ^10"
  7498. },
  7499. "require-dev": {
  7500. "drupal/translators_content": "^1.0@alpha"
  7501. },
  7502. "type": "drupal-module",
  7503. "extra": {
  7504. "drupal": {
  7505. "version": "8.x-1.0-alpha11",
  7506. "datestamp": "1679660668",
  7507. "security-coverage": {
  7508. "status": "not-covered",
  7509. "message": "Alpha releases are not covered by Drupal security advisories."
  7510. }
  7511. }
  7512. },
  7513. "notification-url": "https://packages.drupal.org/8/downloads",
  7514. "license": [
  7515. "GPL-2.0-or-later"
  7516. ],
  7517. "authors": [
  7518. {
  7519. "name": "matsbla",
  7520. "homepage": "https://www.drupal.org/user/2325394"
  7521. },
  7522. {
  7523. "name": "vlad.dancer",
  7524. "homepage": "https://www.drupal.org/user/903844"
  7525. }
  7526. ],
  7527. "description": "Create customized lists and queries of translations from your database.",
  7528. "homepage": "https://www.drupal.org/project/translation_views",
  7529. "support": {
  7530. "source": "https://git.drupalcode.org/project/translation_views"
  7531. }
  7532. },
  7533. {
  7534. "name": "drupal/ultimate_cron",
  7535. "version": "2.0.0-beta1",
  7536. "source": {
  7537. "type": "git",
  7538. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7539. "reference": "8.x-2.0-beta1"
  7540. },
  7541. "dist": {
  7542. "type": "zip",
  7543. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-beta1.zip",
  7544. "reference": "8.x-2.0-beta1",
  7545. "shasum": "f3408d1a2734f2a13b341f8aeb131eb5cbef3e90"
  7546. },
  7547. "require": {
  7548. "drupal/core": "^9.3 || ^10.1 || ^11"
  7549. },
  7550. "type": "drupal-module",
  7551. "extra": {
  7552. "drupal": {
  7553. "version": "8.x-2.0-beta1",
  7554. "datestamp": "1732830342",
  7555. "security-coverage": {
  7556. "status": "not-covered",
  7557. "message": "Beta releases are not covered by Drupal security advisories."
  7558. }
  7559. },
  7560. "drush": {
  7561. "services": {
  7562. "drush.services.yml": "^10 || ^11 || ^12 || ^13"
  7563. }
  7564. }
  7565. },
  7566. "notification-url": "https://packages.drupal.org/8/downloads",
  7567. "license": [
  7568. "GPL-2.0+"
  7569. ],
  7570. "authors": [
  7571. {
  7572. "name": "arnested",
  7573. "homepage": "https://www.drupal.org/user/245635"
  7574. },
  7575. {
  7576. "name": "berdir",
  7577. "homepage": "https://www.drupal.org/user/214652"
  7578. },
  7579. {
  7580. "name": "gielfeldt",
  7581. "homepage": "https://www.drupal.org/user/366993"
  7582. },
  7583. {
  7584. "name": "miro_dietiker",
  7585. "homepage": "https://www.drupal.org/user/227761"
  7586. },
  7587. {
  7588. "name": "primsi",
  7589. "homepage": "https://www.drupal.org/user/282629"
  7590. }
  7591. ],
  7592. "description": "Ultimate cron",
  7593. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7594. "support": {
  7595. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7596. }
  7597. },
  7598. {
  7599. "name": "drupal/upgrade_status",
  7600. "version": "4.3.8",
  7601. "source": {
  7602. "type": "git",
  7603. "url": "https://git.drupalcode.org/project/upgrade_status.git",
  7604. "reference": "4.3.8"
  7605. },
  7606. "dist": {
  7607. "type": "zip",
  7608. "url": "https://ftp.drupal.org/files/projects/upgrade_status-4.3.8.zip",
  7609. "reference": "4.3.8",
  7610. "shasum": "4526741f6d0991f2165d4d79c8830602f5ac8bca"
  7611. },
  7612. "require": {
  7613. "dekor/php-array-table": "^2.0",
  7614. "drupal/core": "^9 || ^10 || ^11",
  7615. "mglaman/phpstan-drupal": "^1.2.11|^2.0",
  7616. "nikic/php-parser": "^4.0.0|^5.0.0",
  7617. "phpstan/phpstan-deprecation-rules": "^1.0.0|^2.0",
  7618. "symfony/process": "^3.4|^4.0|^5.0|^6.0|^7.0",
  7619. "webflo/drupal-finder": "^1.2"
  7620. },
  7621. "require-dev": {
  7622. "drush/drush": "^11|^12|^13"
  7623. },
  7624. "type": "drupal-module",
  7625. "extra": {
  7626. "drupal": {
  7627. "version": "4.3.8",
  7628. "datestamp": "1751485112",
  7629. "security-coverage": {
  7630. "status": "covered",
  7631. "message": "Covered by Drupal's security advisory policy"
  7632. }
  7633. },
  7634. "drush": {
  7635. "services": {
  7636. "drush.services.yml": "^9 || ^10"
  7637. }
  7638. }
  7639. },
  7640. "notification-url": "https://packages.drupal.org/8/downloads",
  7641. "license": [
  7642. "GPL-2.0-or-later"
  7643. ],
  7644. "authors": [
  7645. {
  7646. "name": "gábor hojtsy",
  7647. "homepage": "https://www.drupal.org/user/4166"
  7648. }
  7649. ],
  7650. "description": "Review Drupal major upgrade readiness of the environment and components of the site.",
  7651. "homepage": "http://drupal.org/project/upgrade_status",
  7652. "support": {
  7653. "source": "https://git.drupalcode.org/project/upgrade_status"
  7654. }
  7655. },
  7656. {
  7657. "name": "drupal/video_embed_dailymotion",
  7658. "version": "2.0.0",
  7659. "source": {
  7660. "type": "git",
  7661. "url": "https://git.drupalcode.org/project/video_embed_dailymotion.git",
  7662. "reference": "2.0.0"
  7663. },
  7664. "dist": {
  7665. "type": "zip",
  7666. "url": "https://ftp.drupal.org/files/projects/video_embed_dailymotion-2.0.0.zip",
  7667. "reference": "2.0.0",
  7668. "shasum": "60832daca1cbe857bab778e547cb1aa359d2bd1d"
  7669. },
  7670. "require": {
  7671. "drupal/core": "^9 || ^10",
  7672. "drupal/video_embed_field": "*"
  7673. },
  7674. "type": "drupal-module",
  7675. "extra": {
  7676. "drupal": {
  7677. "version": "2.0.0",
  7678. "datestamp": "1699434830",
  7679. "security-coverage": {
  7680. "status": "covered",
  7681. "message": "Covered by Drupal's security advisory policy"
  7682. }
  7683. }
  7684. },
  7685. "notification-url": "https://packages.drupal.org/8/downloads",
  7686. "license": [
  7687. "GPL-2.0-or-later"
  7688. ],
  7689. "authors": [
  7690. {
  7691. "name": "flocondetoile",
  7692. "homepage": "https://www.drupal.org/user/2006064"
  7693. },
  7694. {
  7695. "name": "mohs3n71",
  7696. "homepage": "https://www.drupal.org/user/2295854"
  7697. },
  7698. {
  7699. "name": "Sam152",
  7700. "homepage": "https://www.drupal.org/user/1485048"
  7701. }
  7702. ],
  7703. "description": "A video_embed_field integration with Dailymotion.",
  7704. "homepage": "https://www.drupal.org/project/video_embed_dailymotion",
  7705. "support": {
  7706. "source": "https://git.drupalcode.org/project/video_embed_dailymotion"
  7707. }
  7708. },
  7709. {
  7710. "name": "drupal/video_embed_field",
  7711. "version": "2.5.0",
  7712. "source": {
  7713. "type": "git",
  7714. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7715. "reference": "8.x-2.5"
  7716. },
  7717. "dist": {
  7718. "type": "zip",
  7719. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  7720. "reference": "8.x-2.5",
  7721. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  7722. },
  7723. "require": {
  7724. "drupal/core": "^9.2 || ^10"
  7725. },
  7726. "require-dev": {
  7727. "drupal/ckeditor": "^1",
  7728. "drupal/colorbox": "^2",
  7729. "drupal/video_embed_media": "*"
  7730. },
  7731. "type": "drupal-module",
  7732. "extra": {
  7733. "drupal": {
  7734. "version": "8.x-2.5",
  7735. "datestamp": "1671413311",
  7736. "security-coverage": {
  7737. "status": "covered",
  7738. "message": "Covered by Drupal's security advisory policy"
  7739. }
  7740. }
  7741. },
  7742. "notification-url": "https://packages.drupal.org/8/downloads",
  7743. "license": [
  7744. "GPL-2.0-or-later"
  7745. ],
  7746. "authors": [
  7747. {
  7748. "name": "abhinesh",
  7749. "homepage": "https://www.drupal.org/user/3645979"
  7750. },
  7751. {
  7752. "name": "jec006",
  7753. "homepage": "https://www.drupal.org/user/855980"
  7754. },
  7755. {
  7756. "name": "mably",
  7757. "homepage": "https://www.drupal.org/user/3375160"
  7758. },
  7759. {
  7760. "name": "plopesc",
  7761. "homepage": "https://www.drupal.org/user/282415"
  7762. },
  7763. {
  7764. "name": "sam152",
  7765. "homepage": "https://www.drupal.org/user/1485048"
  7766. }
  7767. ],
  7768. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7769. "homepage": "https://www.drupal.org/project/video_embed_field",
  7770. "support": {
  7771. "source": "https://git.drupalcode.org/project/video_embed_field"
  7772. }
  7773. },
  7774. {
  7775. "name": "drupal/views_bulk_edit",
  7776. "version": "3.0.0",
  7777. "source": {
  7778. "type": "git",
  7779. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  7780. "reference": "3.0.0"
  7781. },
  7782. "dist": {
  7783. "type": "zip",
  7784. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-3.0.0.zip",
  7785. "reference": "3.0.0",
  7786. "shasum": "3b16079aa95fb4834561fcfd1197cce73b7f4b88"
  7787. },
  7788. "require": {
  7789. "drupal/core": "^9.4 || ^10 || ^11",
  7790. "php": ">=8.1"
  7791. },
  7792. "require-dev": {
  7793. "drupal/views_bulk_operations": "~4.2.4"
  7794. },
  7795. "suggest": {
  7796. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  7797. },
  7798. "type": "drupal-module",
  7799. "extra": {
  7800. "drupal": {
  7801. "version": "3.0.0",
  7802. "datestamp": "1725358398",
  7803. "security-coverage": {
  7804. "status": "covered",
  7805. "message": "Covered by Drupal's security advisory policy"
  7806. }
  7807. }
  7808. },
  7809. "notification-url": "https://packages.drupal.org/8/downloads",
  7810. "license": [
  7811. "GPL-2.0+"
  7812. ],
  7813. "authors": [
  7814. {
  7815. "name": "Marcin Grabias",
  7816. "homepage": "https://www.drupal.org/u/graber"
  7817. },
  7818. {
  7819. "name": "benjy",
  7820. "homepage": "https://www.drupal.org/user/1852732"
  7821. },
  7822. {
  7823. "name": "graber",
  7824. "homepage": "https://www.drupal.org/user/1599440"
  7825. },
  7826. {
  7827. "name": "grevil",
  7828. "homepage": "https://www.drupal.org/user/3668491"
  7829. },
  7830. {
  7831. "name": "joseph.olstad",
  7832. "homepage": "https://www.drupal.org/user/1321830"
  7833. }
  7834. ],
  7835. "description": "Allows bulk edition of entity field values.",
  7836. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  7837. "support": {
  7838. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  7839. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  7840. }
  7841. },
  7842. {
  7843. "name": "drupal/views_bulk_operations",
  7844. "version": "4.3.4",
  7845. "source": {
  7846. "type": "git",
  7847. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  7848. "reference": "4.3.4"
  7849. },
  7850. "dist": {
  7851. "type": "zip",
  7852. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.3.4.zip",
  7853. "reference": "4.3.4",
  7854. "shasum": "c0974356f26d49ad9e99450e9db9650de94c6010"
  7855. },
  7856. "require": {
  7857. "drupal/core": "^10.3 || ^11"
  7858. },
  7859. "conflict": {
  7860. "drush/drush": "<12.5.1"
  7861. },
  7862. "require-dev": {
  7863. "drush/drush": "^12 || ^13"
  7864. },
  7865. "suggest": {
  7866. "drush/drush": "^12 || ^13"
  7867. },
  7868. "type": "drupal-module",
  7869. "extra": {
  7870. "drupal": {
  7871. "version": "4.3.4",
  7872. "datestamp": "1741604495",
  7873. "security-coverage": {
  7874. "status": "covered",
  7875. "message": "Covered by Drupal's security advisory policy"
  7876. }
  7877. }
  7878. },
  7879. "notification-url": "https://packages.drupal.org/8/downloads",
  7880. "license": [
  7881. "GPL-2.0-or-later"
  7882. ],
  7883. "authors": [
  7884. {
  7885. "name": "Marcin Grabias",
  7886. "homepage": "https://www.drupal.org/u/graber"
  7887. },
  7888. {
  7889. "name": "graber",
  7890. "homepage": "https://www.drupal.org/user/1599440"
  7891. },
  7892. {
  7893. "name": "joelpittet",
  7894. "homepage": "https://www.drupal.org/user/160302"
  7895. }
  7896. ],
  7897. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7898. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7899. "support": {
  7900. "source": "https://git.drupalcode.org/project/views_bulk_operations",
  7901. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=any_4.",
  7902. "docs": "https://www.drupal.org/docs/contributed-modules/views-bulk-operations-vbo"
  7903. }
  7904. },
  7905. {
  7906. "name": "drupal/views_conditional",
  7907. "version": "1.10.0",
  7908. "source": {
  7909. "type": "git",
  7910. "url": "https://git.drupalcode.org/project/views_conditional.git",
  7911. "reference": "8.x-1.10"
  7912. },
  7913. "dist": {
  7914. "type": "zip",
  7915. "url": "https://ftp.drupal.org/files/projects/views_conditional-8.x-1.10.zip",
  7916. "reference": "8.x-1.10",
  7917. "shasum": "54997357c05b7f08b87411018eed3aafd3e65547"
  7918. },
  7919. "require": {
  7920. "drupal/core": "^9 || ^10 || ^11"
  7921. },
  7922. "type": "drupal-module",
  7923. "extra": {
  7924. "drupal": {
  7925. "version": "8.x-1.10",
  7926. "datestamp": "1727901408",
  7927. "security-coverage": {
  7928. "status": "covered",
  7929. "message": "Covered by Drupal's security advisory policy"
  7930. }
  7931. }
  7932. },
  7933. "notification-url": "https://packages.drupal.org/8/downloads",
  7934. "license": [
  7935. "GPL-2.0-or-later"
  7936. ],
  7937. "authors": [
  7938. {
  7939. "name": "anand.toshniwal93",
  7940. "homepage": "https://www.drupal.org/user/3345088"
  7941. },
  7942. {
  7943. "name": "joelpittet",
  7944. "homepage": "https://www.drupal.org/user/160302"
  7945. },
  7946. {
  7947. "name": "MChittenden",
  7948. "homepage": "https://www.drupal.org/user/2288348"
  7949. },
  7950. {
  7951. "name": "shelane",
  7952. "homepage": "https://www.drupal.org/user/2674989"
  7953. }
  7954. ],
  7955. "description": "Allows conditional views output.",
  7956. "homepage": "https://www.drupal.org/project/views_conditional",
  7957. "support": {
  7958. "source": "https://git.drupalcode.org/project/views_conditional"
  7959. }
  7960. },
  7961. {
  7962. "name": "drupal/views_ef_fieldset",
  7963. "version": "1.10.0",
  7964. "source": {
  7965. "type": "git",
  7966. "url": "https://git.drupalcode.org/project/views_ef_fieldset.git",
  7967. "reference": "8.x-1.10"
  7968. },
  7969. "dist": {
  7970. "type": "zip",
  7971. "url": "https://ftp.drupal.org/files/projects/views_ef_fieldset-8.x-1.10.zip",
  7972. "reference": "8.x-1.10",
  7973. "shasum": "a34ad1ece1ee3fcd0f37c5d2dc212dd0bcfad07a"
  7974. },
  7975. "require": {
  7976. "drupal/core": "^10 || ^11"
  7977. },
  7978. "type": "drupal-module",
  7979. "extra": {
  7980. "drupal": {
  7981. "version": "8.x-1.10",
  7982. "datestamp": "1731071552",
  7983. "security-coverage": {
  7984. "status": "covered",
  7985. "message": "Covered by Drupal's security advisory policy"
  7986. }
  7987. }
  7988. },
  7989. "notification-url": "https://packages.drupal.org/8/downloads",
  7990. "license": [
  7991. "GPL-2.0-or-later"
  7992. ],
  7993. "authors": [
  7994. {
  7995. "name": "ciss",
  7996. "homepage": "https://www.drupal.org/user/1632364"
  7997. },
  7998. {
  7999. "name": "eli-t",
  8000. "homepage": "https://www.drupal.org/user/516878"
  8001. },
  8002. {
  8003. "name": "pol",
  8004. "homepage": "https://www.drupal.org/user/47194"
  8005. }
  8006. ],
  8007. "description": "Provide an option to render the \"exposed form widgets\" in a fieldset.",
  8008. "homepage": "https://www.drupal.org/project/views_ef_fieldset",
  8009. "support": {
  8010. "source": "https://git.drupalcode.org/project/views_ef_fieldset"
  8011. }
  8012. },
  8013. {
  8014. "name": "drupal/webform",
  8015. "version": "6.2.9",
  8016. "source": {
  8017. "type": "git",
  8018. "url": "https://git.drupalcode.org/project/webform.git",
  8019. "reference": "6.2.9"
  8020. },
  8021. "dist": {
  8022. "type": "zip",
  8023. "url": "https://ftp.drupal.org/files/projects/webform-6.2.9.zip",
  8024. "reference": "6.2.9",
  8025. "shasum": "650752c3cc6d0144c6f378b8d25d45c083e23600"
  8026. },
  8027. "require": {
  8028. "drupal/core": "^10.2",
  8029. "php": ">=8.1"
  8030. },
  8031. "require-dev": {
  8032. "drupal/address": "1.x-dev",
  8033. "drupal/bootstrap": "3.x-dev",
  8034. "drupal/captcha": "^1 || ^2",
  8035. "drupal/chosen": "3.0.x-dev",
  8036. "drupal/ckeditor": "1.0.x-dev",
  8037. "drupal/clientside_validation": "^3 || ^4",
  8038. "drupal/clientside_validation_jquery": "*",
  8039. "drupal/devel": "5.x-dev",
  8040. "drupal/entity": "1.x-dev",
  8041. "drupal/entity_print": "2.x-dev",
  8042. "drupal/group": "1.x-dev",
  8043. "drupal/hal": "1 - 2",
  8044. "drupal/jquery_ui": "1.x-dev",
  8045. "drupal/jquery_ui_button": "2.x-dev",
  8046. "drupal/jquery_ui_checkboxradio": "2.x-dev",
  8047. "drupal/jquery_ui_datepicker": "2.x-dev",
  8048. "drupal/mailsystem": "4.x-dev",
  8049. "drupal/metatag": "1.x-dev",
  8050. "drupal/paragraphs": "1.x-dev",
  8051. "drupal/select2": "1.x-dev",
  8052. "drupal/smtp": "1.x-dev",
  8053. "drupal/styleguide": "^1 || ^2",
  8054. "drupal/telephone_validation": "2.x-dev",
  8055. "drupal/token": "1.x-dev",
  8056. "drupal/variationcache": "1.x-dev",
  8057. "drupal/webform_access": "*",
  8058. "drupal/webform_attachment": "*",
  8059. "drupal/webform_clientside_validation": "*",
  8060. "drupal/webform_devel": "*",
  8061. "drupal/webform_entity_print": "*",
  8062. "drupal/webform_node": "*",
  8063. "drupal/webform_options_limit": "*",
  8064. "drupal/webform_scheduled_email": "*",
  8065. "drupal/webform_share": "*",
  8066. "drupal/webform_ui": "*"
  8067. },
  8068. "suggest": {
  8069. "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.",
  8070. "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."
  8071. },
  8072. "type": "drupal-module",
  8073. "extra": {
  8074. "drupal": {
  8075. "version": "6.2.9",
  8076. "datestamp": "1733851063",
  8077. "security-coverage": {
  8078. "status": "covered",
  8079. "message": "Covered by Drupal's security advisory policy"
  8080. }
  8081. },
  8082. "drush": {
  8083. "services": {
  8084. "drush.services.yml": ">=9"
  8085. }
  8086. }
  8087. },
  8088. "notification-url": "https://packages.drupal.org/8/downloads",
  8089. "license": [
  8090. "GPL-2.0-or-later"
  8091. ],
  8092. "authors": [
  8093. {
  8094. "name": "Jacob Rockowitz (jrockowitz)",
  8095. "homepage": "https://www.drupal.org/u/jrockowitz",
  8096. "role": "Maintainer"
  8097. },
  8098. {
  8099. "name": "Contributors",
  8100. "homepage": "https://www.drupal.org/node/7404/committers",
  8101. "role": "Contributor"
  8102. },
  8103. {
  8104. "name": "liam morland",
  8105. "homepage": "https://www.drupal.org/user/493050"
  8106. },
  8107. {
  8108. "name": "mandclu",
  8109. "homepage": "https://www.drupal.org/user/52136"
  8110. },
  8111. {
  8112. "name": "quicksketch",
  8113. "homepage": "https://www.drupal.org/user/35821"
  8114. }
  8115. ],
  8116. "description": "Enables the creation of webforms and questionnaires.",
  8117. "homepage": "https://drupal.org/project/webform",
  8118. "support": {
  8119. "source": "https://git.drupalcode.org/project/webform",
  8120. "issues": "https://www.drupal.org/project/issues/webform?version=8.x",
  8121. "docs": "https://www.drupal.org/docs/8/modules/webform",
  8122. "forum": "https://drupal.stackexchange.com/questions/tagged/webform"
  8123. }
  8124. },
  8125. {
  8126. "name": "drush/drush",
  8127. "version": "12.5.3",
  8128. "source": {
  8129. "type": "git",
  8130. "url": "https://github.com/drush-ops/drush.git",
  8131. "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6"
  8132. },
  8133. "dist": {
  8134. "type": "zip",
  8135. "url": "https://api.github.com/repos/drush-ops/drush/zipball/7fe0a492d5126c457c5fb184c4668a132b0aaac6",
  8136. "reference": "7fe0a492d5126c457c5fb184c4668a132b0aaac6",
  8137. "shasum": ""
  8138. },
  8139. "require": {
  8140. "chi-teck/drupal-code-generator": "^3.0",
  8141. "composer-runtime-api": "^2.2",
  8142. "composer/semver": "^1.4 || ^3",
  8143. "consolidation/annotated-command": "^4.9.2",
  8144. "consolidation/config": "^2.1.2",
  8145. "consolidation/filter-via-dot-access-data": "^2.0.2",
  8146. "consolidation/output-formatters": "^4.3.2",
  8147. "consolidation/robo": "^4.0.6",
  8148. "consolidation/site-alias": "^4",
  8149. "consolidation/site-process": "^5.2.0",
  8150. "ext-dom": "*",
  8151. "grasmash/yaml-cli": "^3.1",
  8152. "guzzlehttp/guzzle": "^7.0",
  8153. "league/container": "^4",
  8154. "php": ">=8.1",
  8155. "psy/psysh": "~0.11",
  8156. "symfony/event-dispatcher": "^6",
  8157. "symfony/filesystem": "^6.1",
  8158. "symfony/finder": "^6",
  8159. "symfony/var-dumper": "^6.0",
  8160. "symfony/yaml": "^6.0",
  8161. "webflo/drupal-finder": "^1.2"
  8162. },
  8163. "conflict": {
  8164. "drupal/core": "< 10.0",
  8165. "drupal/migrate_run": "*",
  8166. "drupal/migrate_tools": "<= 5"
  8167. },
  8168. "require-dev": {
  8169. "composer/installers": "^2",
  8170. "cweagans/composer-patches": "~1.0",
  8171. "drupal/core-recommended": "^10",
  8172. "drupal/semver_example": "2.3.0",
  8173. "phpunit/phpunit": "^9",
  8174. "rector/rector": "^0.12",
  8175. "squizlabs/php_codesniffer": "^3.7"
  8176. },
  8177. "bin": [
  8178. "drush"
  8179. ],
  8180. "type": "library",
  8181. "extra": {
  8182. "installer-paths": {
  8183. "sut/core": [
  8184. "type:drupal-core"
  8185. ],
  8186. "sut/libraries/{$name}": [
  8187. "type:drupal-library"
  8188. ],
  8189. "sut/themes/unish/{$name}": [
  8190. "drupal/empty_theme"
  8191. ],
  8192. "sut/drush/contrib/{$name}": [
  8193. "type:drupal-drush"
  8194. ],
  8195. "sut/modules/unish/{$name}": [
  8196. "drupal/devel"
  8197. ],
  8198. "sut/themes/contrib/{$name}": [
  8199. "type:drupal-theme"
  8200. ],
  8201. "sut/modules/contrib/{$name}": [
  8202. "type:drupal-module"
  8203. ],
  8204. "sut/profiles/contrib/{$name}": [
  8205. "type:drupal-profile"
  8206. ]
  8207. }
  8208. },
  8209. "autoload": {
  8210. "psr-4": {
  8211. "Drush\\": "src/"
  8212. }
  8213. },
  8214. "notification-url": "https://packagist.org/downloads/",
  8215. "license": [
  8216. "GPL-2.0-or-later"
  8217. ],
  8218. "authors": [
  8219. {
  8220. "name": "Moshe Weitzman",
  8221. "email": "weitzman@tejasa.com"
  8222. },
  8223. {
  8224. "name": "Owen Barton",
  8225. "email": "drupal@owenbarton.com"
  8226. },
  8227. {
  8228. "name": "Greg Anderson",
  8229. "email": "greg.1.anderson@greenknowe.org"
  8230. },
  8231. {
  8232. "name": "Jonathan Araña Cruz",
  8233. "email": "jonhattan@faita.net"
  8234. },
  8235. {
  8236. "name": "Jonathan Hedstrom",
  8237. "email": "jhedstrom@gmail.com"
  8238. },
  8239. {
  8240. "name": "Christopher Gervais",
  8241. "email": "chris@ergonlogic.com"
  8242. },
  8243. {
  8244. "name": "Dave Reid",
  8245. "email": "dave@davereid.net"
  8246. },
  8247. {
  8248. "name": "Damian Lee",
  8249. "email": "damiankloip@googlemail.com"
  8250. }
  8251. ],
  8252. "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.",
  8253. "homepage": "http://www.drush.org",
  8254. "support": {
  8255. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  8256. "issues": "https://github.com/drush-ops/drush/issues",
  8257. "security": "https://github.com/drush-ops/drush/security/advisories",
  8258. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  8259. "source": "https://github.com/drush-ops/drush/tree/12.5.3"
  8260. },
  8261. "funding": [
  8262. {
  8263. "url": "https://github.com/weitzman",
  8264. "type": "github"
  8265. }
  8266. ],
  8267. "time": "2024-08-02T11:57:29+00:00"
  8268. },
  8269. {
  8270. "name": "egulias/email-validator",
  8271. "version": "4.0.4",
  8272. "source": {
  8273. "type": "git",
  8274. "url": "https://github.com/egulias/EmailValidator.git",
  8275. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  8276. },
  8277. "dist": {
  8278. "type": "zip",
  8279. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  8280. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  8281. "shasum": ""
  8282. },
  8283. "require": {
  8284. "doctrine/lexer": "^2.0 || ^3.0",
  8285. "php": ">=8.1",
  8286. "symfony/polyfill-intl-idn": "^1.26"
  8287. },
  8288. "require-dev": {
  8289. "phpunit/phpunit": "^10.2",
  8290. "vimeo/psalm": "^5.12"
  8291. },
  8292. "suggest": {
  8293. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  8294. },
  8295. "type": "library",
  8296. "extra": {
  8297. "branch-alias": {
  8298. "dev-master": "4.0.x-dev"
  8299. }
  8300. },
  8301. "autoload": {
  8302. "psr-4": {
  8303. "Egulias\\EmailValidator\\": "src"
  8304. }
  8305. },
  8306. "notification-url": "https://packagist.org/downloads/",
  8307. "license": [
  8308. "MIT"
  8309. ],
  8310. "authors": [
  8311. {
  8312. "name": "Eduardo Gulias Davis"
  8313. }
  8314. ],
  8315. "description": "A library for validating emails against several RFCs",
  8316. "homepage": "https://github.com/egulias/EmailValidator",
  8317. "keywords": [
  8318. "email",
  8319. "emailvalidation",
  8320. "emailvalidator",
  8321. "validation",
  8322. "validator"
  8323. ],
  8324. "support": {
  8325. "issues": "https://github.com/egulias/EmailValidator/issues",
  8326. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  8327. },
  8328. "funding": [
  8329. {
  8330. "url": "https://github.com/egulias",
  8331. "type": "github"
  8332. }
  8333. ],
  8334. "time": "2025-03-06T22:45:56+00:00"
  8335. },
  8336. {
  8337. "name": "geocoder-php/common-http",
  8338. "version": "4.7.0",
  8339. "source": {
  8340. "type": "git",
  8341. "url": "https://github.com/geocoder-php/php-common-http.git",
  8342. "reference": "4209be6c31946ed5a658f6240ab21faaf5413f61"
  8343. },
  8344. "dist": {
  8345. "type": "zip",
  8346. "url": "https://api.github.com/repos/geocoder-php/php-common-http/zipball/4209be6c31946ed5a658f6240ab21faaf5413f61",
  8347. "reference": "4209be6c31946ed5a658f6240ab21faaf5413f61",
  8348. "shasum": ""
  8349. },
  8350. "require": {
  8351. "php": "^8.0",
  8352. "php-http/discovery": "^1.17",
  8353. "psr/http-client-implementation": "^1.0",
  8354. "psr/http-factory-implementation": "^1.0",
  8355. "willdurand/geocoder": "^4.0|^5.0"
  8356. },
  8357. "require-dev": {
  8358. "nyholm/psr7": "^1.0",
  8359. "php-http/message": "^1.0",
  8360. "php-http/mock-client": "^1.0",
  8361. "phpunit/phpunit": "^9.5",
  8362. "symfony/stopwatch": "~2.5 || ~5.0"
  8363. },
  8364. "type": "library",
  8365. "extra": {
  8366. "branch-alias": {
  8367. "dev-master": "4.0-dev"
  8368. }
  8369. },
  8370. "autoload": {
  8371. "psr-4": {
  8372. "Geocoder\\Http\\": ""
  8373. },
  8374. "exclude-from-classmap": [
  8375. "/Tests/"
  8376. ]
  8377. },
  8378. "notification-url": "https://packagist.org/downloads/",
  8379. "license": [
  8380. "MIT"
  8381. ],
  8382. "authors": [
  8383. {
  8384. "name": "Tobias Nyholm",
  8385. "email": "tobias.nyholm@gmail.com"
  8386. }
  8387. ],
  8388. "description": "Common files for HTTP based Geocoders",
  8389. "homepage": "http://geocoder-php.org",
  8390. "keywords": [
  8391. "http geocoder"
  8392. ],
  8393. "support": {
  8394. "source": "https://github.com/geocoder-php/php-common-http/tree/4.7.0"
  8395. },
  8396. "time": "2025-04-15T12:38:11+00:00"
  8397. },
  8398. {
  8399. "name": "geocoder-php/mapquest-provider",
  8400. "version": "4.4.0",
  8401. "source": {
  8402. "type": "git",
  8403. "url": "https://github.com/geocoder-php/mapquest-provider.git",
  8404. "reference": "7d563294dfe1f68d847b08e9c17a13138e2a31ed"
  8405. },
  8406. "dist": {
  8407. "type": "zip",
  8408. "url": "https://api.github.com/repos/geocoder-php/mapquest-provider/zipball/7d563294dfe1f68d847b08e9c17a13138e2a31ed",
  8409. "reference": "7d563294dfe1f68d847b08e9c17a13138e2a31ed",
  8410. "shasum": ""
  8411. },
  8412. "require": {
  8413. "geocoder-php/common-http": "^4.6",
  8414. "php": "^8.0",
  8415. "willdurand/geocoder": "^4.0|^5.0"
  8416. },
  8417. "provide": {
  8418. "geocoder-php/provider-implementation": "1.0"
  8419. },
  8420. "require-dev": {
  8421. "geocoder-php/provider-integration-tests": "^1.6.3",
  8422. "php-http/message": "^1.0",
  8423. "phpunit/phpunit": "^9.5"
  8424. },
  8425. "type": "library",
  8426. "extra": {
  8427. "branch-alias": {
  8428. "dev-master": "4.0-dev"
  8429. }
  8430. },
  8431. "autoload": {
  8432. "psr-4": {
  8433. "Geocoder\\Provider\\MapQuest\\": ""
  8434. },
  8435. "exclude-from-classmap": [
  8436. "/Tests/"
  8437. ]
  8438. },
  8439. "notification-url": "https://packagist.org/downloads/",
  8440. "license": [
  8441. "MIT"
  8442. ],
  8443. "authors": [
  8444. {
  8445. "name": "William Durand",
  8446. "email": "william.durand1@gmail.com"
  8447. }
  8448. ],
  8449. "description": "Geocoder MapQuest adapter",
  8450. "homepage": "http://geocoder-php.org/Geocoder/",
  8451. "support": {
  8452. "source": "https://github.com/geocoder-php/mapquest-provider/tree/4.4.0"
  8453. },
  8454. "time": "2025-04-15T13:24:32+00:00"
  8455. },
  8456. {
  8457. "name": "grasmash/expander",
  8458. "version": "3.0.1",
  8459. "source": {
  8460. "type": "git",
  8461. "url": "https://github.com/grasmash/expander.git",
  8462. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4"
  8463. },
  8464. "dist": {
  8465. "type": "zip",
  8466. "url": "https://api.github.com/repos/grasmash/expander/zipball/eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  8467. "reference": "eea11b9afb0c32483b18b9009f4ca07b770e39f4",
  8468. "shasum": ""
  8469. },
  8470. "require": {
  8471. "dflydev/dot-access-data": "^3.0.0",
  8472. "php": ">=8.0",
  8473. "psr/log": "^2 | ^3"
  8474. },
  8475. "require-dev": {
  8476. "greg-1-anderson/composer-test-scenarios": "^1",
  8477. "php-coveralls/php-coveralls": "^2.5",
  8478. "phpunit/phpunit": "^9",
  8479. "squizlabs/php_codesniffer": "^3.3"
  8480. },
  8481. "type": "library",
  8482. "extra": {
  8483. "branch-alias": {
  8484. "dev-master": "1.x-dev"
  8485. }
  8486. },
  8487. "autoload": {
  8488. "psr-4": {
  8489. "Grasmash\\Expander\\": "src/"
  8490. }
  8491. },
  8492. "notification-url": "https://packagist.org/downloads/",
  8493. "license": [
  8494. "MIT"
  8495. ],
  8496. "authors": [
  8497. {
  8498. "name": "Matthew Grasmick"
  8499. }
  8500. ],
  8501. "description": "Expands internal property references in PHP arrays file.",
  8502. "support": {
  8503. "issues": "https://github.com/grasmash/expander/issues",
  8504. "source": "https://github.com/grasmash/expander/tree/3.0.1"
  8505. },
  8506. "time": "2024-11-25T23:28:05+00:00"
  8507. },
  8508. {
  8509. "name": "grasmash/yaml-cli",
  8510. "version": "3.2.1",
  8511. "source": {
  8512. "type": "git",
  8513. "url": "https://github.com/grasmash/yaml-cli.git",
  8514. "reference": "09a8860566958a1576cc54bbe910a03477e54971"
  8515. },
  8516. "dist": {
  8517. "type": "zip",
  8518. "url": "https://api.github.com/repos/grasmash/yaml-cli/zipball/09a8860566958a1576cc54bbe910a03477e54971",
  8519. "reference": "09a8860566958a1576cc54bbe910a03477e54971",
  8520. "shasum": ""
  8521. },
  8522. "require": {
  8523. "dflydev/dot-access-data": "^3",
  8524. "php": ">=8.0",
  8525. "symfony/console": "^6 || ^7",
  8526. "symfony/filesystem": "^6 || ^7",
  8527. "symfony/yaml": "^6 || ^7"
  8528. },
  8529. "require-dev": {
  8530. "php-coveralls/php-coveralls": "^2",
  8531. "phpunit/phpunit": "^9",
  8532. "squizlabs/php_codesniffer": "^3.0"
  8533. },
  8534. "bin": [
  8535. "bin/yaml-cli"
  8536. ],
  8537. "type": "library",
  8538. "extra": {
  8539. "branch-alias": {
  8540. "dev-master": "3.x-dev"
  8541. }
  8542. },
  8543. "autoload": {
  8544. "psr-4": {
  8545. "Grasmash\\YamlCli\\": "src/"
  8546. }
  8547. },
  8548. "notification-url": "https://packagist.org/downloads/",
  8549. "license": [
  8550. "MIT"
  8551. ],
  8552. "authors": [
  8553. {
  8554. "name": "Matthew Grasmick"
  8555. }
  8556. ],
  8557. "description": "A command line tool for reading and manipulating yaml files.",
  8558. "support": {
  8559. "issues": "https://github.com/grasmash/yaml-cli/issues",
  8560. "source": "https://github.com/grasmash/yaml-cli/tree/3.2.1"
  8561. },
  8562. "time": "2024-04-23T02:10:57+00:00"
  8563. },
  8564. {
  8565. "name": "guzzlehttp/guzzle",
  8566. "version": "7.9.3",
  8567. "source": {
  8568. "type": "git",
  8569. "url": "https://github.com/guzzle/guzzle.git",
  8570. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77"
  8571. },
  8572. "dist": {
  8573. "type": "zip",
  8574. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  8575. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  8576. "shasum": ""
  8577. },
  8578. "require": {
  8579. "ext-json": "*",
  8580. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  8581. "guzzlehttp/psr7": "^2.7.0",
  8582. "php": "^7.2.5 || ^8.0",
  8583. "psr/http-client": "^1.0",
  8584. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8585. },
  8586. "provide": {
  8587. "psr/http-client-implementation": "1.0"
  8588. },
  8589. "require-dev": {
  8590. "bamarni/composer-bin-plugin": "^1.8.2",
  8591. "ext-curl": "*",
  8592. "guzzle/client-integration-tests": "3.0.2",
  8593. "php-http/message-factory": "^1.1",
  8594. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  8595. "psr/log": "^1.1 || ^2.0 || ^3.0"
  8596. },
  8597. "suggest": {
  8598. "ext-curl": "Required for CURL handler support",
  8599. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  8600. "psr/log": "Required for using the Log middleware"
  8601. },
  8602. "type": "library",
  8603. "extra": {
  8604. "bamarni-bin": {
  8605. "bin-links": true,
  8606. "forward-command": false
  8607. }
  8608. },
  8609. "autoload": {
  8610. "files": [
  8611. "src/functions_include.php"
  8612. ],
  8613. "psr-4": {
  8614. "GuzzleHttp\\": "src/"
  8615. }
  8616. },
  8617. "notification-url": "https://packagist.org/downloads/",
  8618. "license": [
  8619. "MIT"
  8620. ],
  8621. "authors": [
  8622. {
  8623. "name": "Graham Campbell",
  8624. "email": "hello@gjcampbell.co.uk",
  8625. "homepage": "https://github.com/GrahamCampbell"
  8626. },
  8627. {
  8628. "name": "Michael Dowling",
  8629. "email": "mtdowling@gmail.com",
  8630. "homepage": "https://github.com/mtdowling"
  8631. },
  8632. {
  8633. "name": "Jeremy Lindblom",
  8634. "email": "jeremeamia@gmail.com",
  8635. "homepage": "https://github.com/jeremeamia"
  8636. },
  8637. {
  8638. "name": "George Mponos",
  8639. "email": "gmponos@gmail.com",
  8640. "homepage": "https://github.com/gmponos"
  8641. },
  8642. {
  8643. "name": "Tobias Nyholm",
  8644. "email": "tobias.nyholm@gmail.com",
  8645. "homepage": "https://github.com/Nyholm"
  8646. },
  8647. {
  8648. "name": "Márk Sági-Kazár",
  8649. "email": "mark.sagikazar@gmail.com",
  8650. "homepage": "https://github.com/sagikazarmark"
  8651. },
  8652. {
  8653. "name": "Tobias Schultze",
  8654. "email": "webmaster@tubo-world.de",
  8655. "homepage": "https://github.com/Tobion"
  8656. }
  8657. ],
  8658. "description": "Guzzle is a PHP HTTP client library",
  8659. "keywords": [
  8660. "client",
  8661. "curl",
  8662. "framework",
  8663. "http",
  8664. "http client",
  8665. "psr-18",
  8666. "psr-7",
  8667. "rest",
  8668. "web service"
  8669. ],
  8670. "support": {
  8671. "issues": "https://github.com/guzzle/guzzle/issues",
  8672. "source": "https://github.com/guzzle/guzzle/tree/7.9.3"
  8673. },
  8674. "funding": [
  8675. {
  8676. "url": "https://github.com/GrahamCampbell",
  8677. "type": "github"
  8678. },
  8679. {
  8680. "url": "https://github.com/Nyholm",
  8681. "type": "github"
  8682. },
  8683. {
  8684. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  8685. "type": "tidelift"
  8686. }
  8687. ],
  8688. "time": "2025-03-27T13:37:11+00:00"
  8689. },
  8690. {
  8691. "name": "guzzlehttp/promises",
  8692. "version": "2.2.0",
  8693. "source": {
  8694. "type": "git",
  8695. "url": "https://github.com/guzzle/promises.git",
  8696. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
  8697. },
  8698. "dist": {
  8699. "type": "zip",
  8700. "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c",
  8701. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
  8702. "shasum": ""
  8703. },
  8704. "require": {
  8705. "php": "^7.2.5 || ^8.0"
  8706. },
  8707. "require-dev": {
  8708. "bamarni/composer-bin-plugin": "^1.8.2",
  8709. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  8710. },
  8711. "type": "library",
  8712. "extra": {
  8713. "bamarni-bin": {
  8714. "bin-links": true,
  8715. "forward-command": false
  8716. }
  8717. },
  8718. "autoload": {
  8719. "psr-4": {
  8720. "GuzzleHttp\\Promise\\": "src/"
  8721. }
  8722. },
  8723. "notification-url": "https://packagist.org/downloads/",
  8724. "license": [
  8725. "MIT"
  8726. ],
  8727. "authors": [
  8728. {
  8729. "name": "Graham Campbell",
  8730. "email": "hello@gjcampbell.co.uk",
  8731. "homepage": "https://github.com/GrahamCampbell"
  8732. },
  8733. {
  8734. "name": "Michael Dowling",
  8735. "email": "mtdowling@gmail.com",
  8736. "homepage": "https://github.com/mtdowling"
  8737. },
  8738. {
  8739. "name": "Tobias Nyholm",
  8740. "email": "tobias.nyholm@gmail.com",
  8741. "homepage": "https://github.com/Nyholm"
  8742. },
  8743. {
  8744. "name": "Tobias Schultze",
  8745. "email": "webmaster@tubo-world.de",
  8746. "homepage": "https://github.com/Tobion"
  8747. }
  8748. ],
  8749. "description": "Guzzle promises library",
  8750. "keywords": [
  8751. "promise"
  8752. ],
  8753. "support": {
  8754. "issues": "https://github.com/guzzle/promises/issues",
  8755. "source": "https://github.com/guzzle/promises/tree/2.2.0"
  8756. },
  8757. "funding": [
  8758. {
  8759. "url": "https://github.com/GrahamCampbell",
  8760. "type": "github"
  8761. },
  8762. {
  8763. "url": "https://github.com/Nyholm",
  8764. "type": "github"
  8765. },
  8766. {
  8767. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  8768. "type": "tidelift"
  8769. }
  8770. ],
  8771. "time": "2025-03-27T13:27:01+00:00"
  8772. },
  8773. {
  8774. "name": "guzzlehttp/psr7",
  8775. "version": "2.7.1",
  8776. "source": {
  8777. "type": "git",
  8778. "url": "https://github.com/guzzle/psr7.git",
  8779. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
  8780. },
  8781. "dist": {
  8782. "type": "zip",
  8783. "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  8784. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  8785. "shasum": ""
  8786. },
  8787. "require": {
  8788. "php": "^7.2.5 || ^8.0",
  8789. "psr/http-factory": "^1.0",
  8790. "psr/http-message": "^1.1 || ^2.0",
  8791. "ralouphie/getallheaders": "^3.0"
  8792. },
  8793. "provide": {
  8794. "psr/http-factory-implementation": "1.0",
  8795. "psr/http-message-implementation": "1.0"
  8796. },
  8797. "require-dev": {
  8798. "bamarni/composer-bin-plugin": "^1.8.2",
  8799. "http-interop/http-factory-tests": "0.9.0",
  8800. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  8801. },
  8802. "suggest": {
  8803. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8804. },
  8805. "type": "library",
  8806. "extra": {
  8807. "bamarni-bin": {
  8808. "bin-links": true,
  8809. "forward-command": false
  8810. }
  8811. },
  8812. "autoload": {
  8813. "psr-4": {
  8814. "GuzzleHttp\\Psr7\\": "src/"
  8815. }
  8816. },
  8817. "notification-url": "https://packagist.org/downloads/",
  8818. "license": [
  8819. "MIT"
  8820. ],
  8821. "authors": [
  8822. {
  8823. "name": "Graham Campbell",
  8824. "email": "hello@gjcampbell.co.uk",
  8825. "homepage": "https://github.com/GrahamCampbell"
  8826. },
  8827. {
  8828. "name": "Michael Dowling",
  8829. "email": "mtdowling@gmail.com",
  8830. "homepage": "https://github.com/mtdowling"
  8831. },
  8832. {
  8833. "name": "George Mponos",
  8834. "email": "gmponos@gmail.com",
  8835. "homepage": "https://github.com/gmponos"
  8836. },
  8837. {
  8838. "name": "Tobias Nyholm",
  8839. "email": "tobias.nyholm@gmail.com",
  8840. "homepage": "https://github.com/Nyholm"
  8841. },
  8842. {
  8843. "name": "Márk Sági-Kazár",
  8844. "email": "mark.sagikazar@gmail.com",
  8845. "homepage": "https://github.com/sagikazarmark"
  8846. },
  8847. {
  8848. "name": "Tobias Schultze",
  8849. "email": "webmaster@tubo-world.de",
  8850. "homepage": "https://github.com/Tobion"
  8851. },
  8852. {
  8853. "name": "Márk Sági-Kazár",
  8854. "email": "mark.sagikazar@gmail.com",
  8855. "homepage": "https://sagikazarmark.hu"
  8856. }
  8857. ],
  8858. "description": "PSR-7 message implementation that also provides common utility methods",
  8859. "keywords": [
  8860. "http",
  8861. "message",
  8862. "psr-7",
  8863. "request",
  8864. "response",
  8865. "stream",
  8866. "uri",
  8867. "url"
  8868. ],
  8869. "support": {
  8870. "issues": "https://github.com/guzzle/psr7/issues",
  8871. "source": "https://github.com/guzzle/psr7/tree/2.7.1"
  8872. },
  8873. "funding": [
  8874. {
  8875. "url": "https://github.com/GrahamCampbell",
  8876. "type": "github"
  8877. },
  8878. {
  8879. "url": "https://github.com/Nyholm",
  8880. "type": "github"
  8881. },
  8882. {
  8883. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  8884. "type": "tidelift"
  8885. }
  8886. ],
  8887. "time": "2025-03-27T12:30:47+00:00"
  8888. },
  8889. {
  8890. "name": "itamair/geophp",
  8891. "version": "1.7",
  8892. "source": {
  8893. "type": "git",
  8894. "url": "https://github.com/itamair/geoPHP.git",
  8895. "reference": "c8cf587256cdd1a72a732f59138ee3bfa3372956"
  8896. },
  8897. "dist": {
  8898. "type": "zip",
  8899. "url": "https://api.github.com/repos/itamair/geoPHP/zipball/c8cf587256cdd1a72a732f59138ee3bfa3372956",
  8900. "reference": "c8cf587256cdd1a72a732f59138ee3bfa3372956",
  8901. "shasum": ""
  8902. },
  8903. "require-dev": {
  8904. "phpunit/phpunit": "4.1.* || 9.5.*"
  8905. },
  8906. "type": "library",
  8907. "autoload": {
  8908. "classmap": [
  8909. "geoPHP.inc"
  8910. ]
  8911. },
  8912. "notification-url": "https://packagist.org/downloads/",
  8913. "license": [
  8914. "GPL-2.0+"
  8915. ],
  8916. "authors": [
  8917. {
  8918. "name": "Italo Mairo",
  8919. "homepage": "https://www.linkedin.com/in/italomairo/",
  8920. "role": "Maintanier of this Library Repo"
  8921. },
  8922. {
  8923. "name": "Patrick Hayes",
  8924. "homepage": "https://www.linkedin.com/in/patrickdhayes/",
  8925. "role": "Maintanier of original Repositary/Library (https://github.com/phayes/geoPHP)"
  8926. }
  8927. ],
  8928. "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.",
  8929. "homepage": "https://github.com/itamair/geoPHP",
  8930. "support": {
  8931. "source": "https://github.com/itamair/geoPHP/tree/1.7"
  8932. },
  8933. "time": "2025-05-31T05:12:53+00:00"
  8934. },
  8935. {
  8936. "name": "kint-php/kint",
  8937. "version": "3.3",
  8938. "source": {
  8939. "type": "git",
  8940. "url": "https://github.com/kint-php/kint.git",
  8941. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  8942. },
  8943. "dist": {
  8944. "type": "zip",
  8945. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8946. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8947. "shasum": ""
  8948. },
  8949. "require": {
  8950. "php": ">=5.3.6"
  8951. },
  8952. "require-dev": {
  8953. "friendsofphp/php-cs-fixer": "^2.0",
  8954. "phpunit/phpunit": "^4.0",
  8955. "seld/phar-utils": "^1.0",
  8956. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  8957. "vimeo/psalm": "^3.0"
  8958. },
  8959. "suggest": {
  8960. "ext-ctype": "Simple data type tests",
  8961. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  8962. "ext-mbstring": "Provides string encoding detection",
  8963. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  8964. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  8965. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  8966. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  8967. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  8968. },
  8969. "type": "library",
  8970. "autoload": {
  8971. "files": [
  8972. "init.php"
  8973. ],
  8974. "psr-4": {
  8975. "Kint\\": "src/"
  8976. }
  8977. },
  8978. "notification-url": "https://packagist.org/downloads/",
  8979. "license": [
  8980. "MIT"
  8981. ],
  8982. "authors": [
  8983. {
  8984. "name": "Jonathan Vollebregt",
  8985. "homepage": "https://github.com/jnvsor"
  8986. },
  8987. {
  8988. "name": "Rokas Šleinius",
  8989. "homepage": "https://github.com/raveren"
  8990. },
  8991. {
  8992. "name": "Contributors",
  8993. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  8994. }
  8995. ],
  8996. "description": "Kint - debugging tool for PHP developers",
  8997. "homepage": "https://kint-php.github.io/kint/",
  8998. "keywords": [
  8999. "debug",
  9000. "kint",
  9001. "php"
  9002. ],
  9003. "support": {
  9004. "issues": "https://github.com/kint-php/kint/issues",
  9005. "source": "https://github.com/kint-php/kint/tree/master"
  9006. },
  9007. "time": "2019-10-17T18:05:24+00:00"
  9008. },
  9009. {
  9010. "name": "league/container",
  9011. "version": "4.2.5",
  9012. "source": {
  9013. "type": "git",
  9014. "url": "https://github.com/thephpleague/container.git",
  9015. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00"
  9016. },
  9017. "dist": {
  9018. "type": "zip",
  9019. "url": "https://api.github.com/repos/thephpleague/container/zipball/d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  9020. "reference": "d3cebb0ff4685ff61c749e54b27db49319e2ec00",
  9021. "shasum": ""
  9022. },
  9023. "require": {
  9024. "php": "^7.2 || ^8.0",
  9025. "psr/container": "^1.1 || ^2.0"
  9026. },
  9027. "provide": {
  9028. "psr/container-implementation": "^1.0"
  9029. },
  9030. "replace": {
  9031. "orno/di": "~2.0"
  9032. },
  9033. "require-dev": {
  9034. "nette/php-generator": "^3.4",
  9035. "nikic/php-parser": "^4.10",
  9036. "phpstan/phpstan": "^0.12.47",
  9037. "phpunit/phpunit": "^8.5.17",
  9038. "roave/security-advisories": "dev-latest",
  9039. "scrutinizer/ocular": "^1.8",
  9040. "squizlabs/php_codesniffer": "^3.6"
  9041. },
  9042. "type": "library",
  9043. "extra": {
  9044. "branch-alias": {
  9045. "dev-1.x": "1.x-dev",
  9046. "dev-2.x": "2.x-dev",
  9047. "dev-3.x": "3.x-dev",
  9048. "dev-4.x": "4.x-dev",
  9049. "dev-master": "4.x-dev"
  9050. }
  9051. },
  9052. "autoload": {
  9053. "psr-4": {
  9054. "League\\Container\\": "src"
  9055. }
  9056. },
  9057. "notification-url": "https://packagist.org/downloads/",
  9058. "license": [
  9059. "MIT"
  9060. ],
  9061. "authors": [
  9062. {
  9063. "name": "Phil Bennett",
  9064. "email": "mail@philbennett.co.uk",
  9065. "role": "Developer"
  9066. }
  9067. ],
  9068. "description": "A fast and intuitive dependency injection container.",
  9069. "homepage": "https://github.com/thephpleague/container",
  9070. "keywords": [
  9071. "container",
  9072. "dependency",
  9073. "di",
  9074. "injection",
  9075. "league",
  9076. "provider",
  9077. "service"
  9078. ],
  9079. "support": {
  9080. "issues": "https://github.com/thephpleague/container/issues",
  9081. "source": "https://github.com/thephpleague/container/tree/4.2.5"
  9082. },
  9083. "funding": [
  9084. {
  9085. "url": "https://github.com/philipobenito",
  9086. "type": "github"
  9087. }
  9088. ],
  9089. "time": "2025-05-20T12:55:37+00:00"
  9090. },
  9091. {
  9092. "name": "masterminds/html5",
  9093. "version": "2.9.0",
  9094. "source": {
  9095. "type": "git",
  9096. "url": "https://github.com/Masterminds/html5-php.git",
  9097. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  9098. },
  9099. "dist": {
  9100. "type": "zip",
  9101. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  9102. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  9103. "shasum": ""
  9104. },
  9105. "require": {
  9106. "ext-dom": "*",
  9107. "php": ">=5.3.0"
  9108. },
  9109. "require-dev": {
  9110. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  9111. },
  9112. "type": "library",
  9113. "extra": {
  9114. "branch-alias": {
  9115. "dev-master": "2.7-dev"
  9116. }
  9117. },
  9118. "autoload": {
  9119. "psr-4": {
  9120. "Masterminds\\": "src"
  9121. }
  9122. },
  9123. "notification-url": "https://packagist.org/downloads/",
  9124. "license": [
  9125. "MIT"
  9126. ],
  9127. "authors": [
  9128. {
  9129. "name": "Matt Butcher",
  9130. "email": "technosophos@gmail.com"
  9131. },
  9132. {
  9133. "name": "Matt Farina",
  9134. "email": "matt@mattfarina.com"
  9135. },
  9136. {
  9137. "name": "Asmir Mustafic",
  9138. "email": "goetas@gmail.com"
  9139. }
  9140. ],
  9141. "description": "An HTML5 parser and serializer.",
  9142. "homepage": "http://masterminds.github.io/html5-php",
  9143. "keywords": [
  9144. "HTML5",
  9145. "dom",
  9146. "html",
  9147. "parser",
  9148. "querypath",
  9149. "serializer",
  9150. "xml"
  9151. ],
  9152. "support": {
  9153. "issues": "https://github.com/Masterminds/html5-php/issues",
  9154. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  9155. },
  9156. "time": "2024-03-31T07:05:07+00:00"
  9157. },
  9158. {
  9159. "name": "mck89/peast",
  9160. "version": "v1.17.2",
  9161. "source": {
  9162. "type": "git",
  9163. "url": "https://github.com/mck89/peast.git",
  9164. "reference": "465810689c477fbba17f4f949b75e4d0bdab13ea"
  9165. },
  9166. "dist": {
  9167. "type": "zip",
  9168. "url": "https://api.github.com/repos/mck89/peast/zipball/465810689c477fbba17f4f949b75e4d0bdab13ea",
  9169. "reference": "465810689c477fbba17f4f949b75e4d0bdab13ea",
  9170. "shasum": ""
  9171. },
  9172. "require": {
  9173. "ext-mbstring": "*",
  9174. "php": ">=5.4.0"
  9175. },
  9176. "require-dev": {
  9177. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  9178. },
  9179. "type": "library",
  9180. "extra": {
  9181. "branch-alias": {
  9182. "dev-master": "1.17.2-dev"
  9183. }
  9184. },
  9185. "autoload": {
  9186. "psr-4": {
  9187. "Peast\\": "lib/Peast/"
  9188. }
  9189. },
  9190. "notification-url": "https://packagist.org/downloads/",
  9191. "license": [
  9192. "BSD-3-Clause"
  9193. ],
  9194. "authors": [
  9195. {
  9196. "name": "Marco Marchiò",
  9197. "email": "marco.mm89@gmail.com"
  9198. }
  9199. ],
  9200. "description": "Peast is PHP library that generates AST for JavaScript code",
  9201. "support": {
  9202. "issues": "https://github.com/mck89/peast/issues",
  9203. "source": "https://github.com/mck89/peast/tree/v1.17.2"
  9204. },
  9205. "time": "2025-07-01T09:30:45+00:00"
  9206. },
  9207. {
  9208. "name": "mglaman/phpstan-drupal",
  9209. "version": "2.0.7",
  9210. "source": {
  9211. "type": "git",
  9212. "url": "https://github.com/mglaman/phpstan-drupal.git",
  9213. "reference": "42cca54ee8bccec83a674ac45d1d17586777187e"
  9214. },
  9215. "dist": {
  9216. "type": "zip",
  9217. "url": "https://api.github.com/repos/mglaman/phpstan-drupal/zipball/42cca54ee8bccec83a674ac45d1d17586777187e",
  9218. "reference": "42cca54ee8bccec83a674ac45d1d17586777187e",
  9219. "shasum": ""
  9220. },
  9221. "require": {
  9222. "php": "^8.1",
  9223. "phpstan/phpstan": "^2.1",
  9224. "phpstan/phpstan-deprecation-rules": "^2.0",
  9225. "symfony/finder": "^6.2 || ^7.0",
  9226. "symfony/yaml": "^6.2 || ^7.0",
  9227. "webflo/drupal-finder": "^1.3.1"
  9228. },
  9229. "require-dev": {
  9230. "behat/mink": "^1.10",
  9231. "composer/installers": "^1.9",
  9232. "drupal/core-recommended": "^10",
  9233. "drush/drush": "^11 || ^12 || ^13",
  9234. "phpstan/extension-installer": "^1.4.3",
  9235. "phpstan/phpstan-strict-rules": "^2.0",
  9236. "phpunit/phpunit": "^9 || ^10 || ^11",
  9237. "slevomat/coding-standard": "^8.6",
  9238. "squizlabs/php_codesniffer": "^3.7",
  9239. "symfony/phpunit-bridge": "^6.2 || ^7.0"
  9240. },
  9241. "suggest": {
  9242. "jangregor/phpstan-prophecy": "Provides a prophecy/prophecy extension for phpstan/phpstan.",
  9243. "phpstan/phpstan-deprecation-rules": "For catching deprecations, especially in Drupal core.",
  9244. "phpstan/phpstan-phpunit": "PHPUnit extensions and rules for PHPStan."
  9245. },
  9246. "type": "phpstan-extension",
  9247. "extra": {
  9248. "phpstan": {
  9249. "includes": [
  9250. "extension.neon",
  9251. "rules.neon"
  9252. ]
  9253. },
  9254. "installer-paths": {
  9255. "tests/fixtures/drupal/core": [
  9256. "type:drupal-core"
  9257. ],
  9258. "tests/fixtures/drupal/libraries/{$name}": [
  9259. "type:drupal-library"
  9260. ],
  9261. "tests/fixtures/drupal/themes/contrib/{$name}": [
  9262. "type:drupal-theme"
  9263. ],
  9264. "tests/fixtures/drupal/modules/contrib/{$name}": [
  9265. "type:drupal-module"
  9266. ],
  9267. "tests/fixtures/drupal/profiles/contrib/{$name}": [
  9268. "type:drupal-profile"
  9269. ]
  9270. }
  9271. },
  9272. "autoload": {
  9273. "psr-4": {
  9274. "mglaman\\PHPStanDrupal\\": "src/"
  9275. }
  9276. },
  9277. "notification-url": "https://packagist.org/downloads/",
  9278. "license": [
  9279. "MIT"
  9280. ],
  9281. "authors": [
  9282. {
  9283. "name": "Matt Glaman",
  9284. "email": "nmd.matt@gmail.com"
  9285. }
  9286. ],
  9287. "description": "Drupal extension and rules for PHPStan",
  9288. "support": {
  9289. "issues": "https://github.com/mglaman/phpstan-drupal/issues",
  9290. "source": "https://github.com/mglaman/phpstan-drupal/tree/2.0.7"
  9291. },
  9292. "funding": [
  9293. {
  9294. "url": "https://github.com/mglaman",
  9295. "type": "github"
  9296. },
  9297. {
  9298. "url": "https://opencollective.com/phpstan-drupal",
  9299. "type": "open_collective"
  9300. },
  9301. {
  9302. "url": "https://tidelift.com/funding/github/packagist/mglaman/phpstan-drupal",
  9303. "type": "tidelift"
  9304. }
  9305. ],
  9306. "time": "2025-05-22T18:06:14+00:00"
  9307. },
  9308. {
  9309. "name": "nikic/php-parser",
  9310. "version": "v5.5.0",
  9311. "source": {
  9312. "type": "git",
  9313. "url": "https://github.com/nikic/PHP-Parser.git",
  9314. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9"
  9315. },
  9316. "dist": {
  9317. "type": "zip",
  9318. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/ae59794362fe85e051a58ad36b289443f57be7a9",
  9319. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9",
  9320. "shasum": ""
  9321. },
  9322. "require": {
  9323. "ext-ctype": "*",
  9324. "ext-json": "*",
  9325. "ext-tokenizer": "*",
  9326. "php": ">=7.4"
  9327. },
  9328. "require-dev": {
  9329. "ircmaxell/php-yacc": "^0.0.7",
  9330. "phpunit/phpunit": "^9.0"
  9331. },
  9332. "bin": [
  9333. "bin/php-parse"
  9334. ],
  9335. "type": "library",
  9336. "extra": {
  9337. "branch-alias": {
  9338. "dev-master": "5.0-dev"
  9339. }
  9340. },
  9341. "autoload": {
  9342. "psr-4": {
  9343. "PhpParser\\": "lib/PhpParser"
  9344. }
  9345. },
  9346. "notification-url": "https://packagist.org/downloads/",
  9347. "license": [
  9348. "BSD-3-Clause"
  9349. ],
  9350. "authors": [
  9351. {
  9352. "name": "Nikita Popov"
  9353. }
  9354. ],
  9355. "description": "A PHP parser written in PHP",
  9356. "keywords": [
  9357. "parser",
  9358. "php"
  9359. ],
  9360. "support": {
  9361. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9362. "source": "https://github.com/nikic/PHP-Parser/tree/v5.5.0"
  9363. },
  9364. "time": "2025-05-31T08:24:38+00:00"
  9365. },
  9366. {
  9367. "name": "pear/archive_tar",
  9368. "version": "1.5.0",
  9369. "source": {
  9370. "type": "git",
  9371. "url": "https://github.com/pear/Archive_Tar.git",
  9372. "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602"
  9373. },
  9374. "dist": {
  9375. "type": "zip",
  9376. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/b439c859564f5cbb0f64ad6002d0afe84a889602",
  9377. "reference": "b439c859564f5cbb0f64ad6002d0afe84a889602",
  9378. "shasum": ""
  9379. },
  9380. "require": {
  9381. "pear/pear-core-minimal": "^1.10.0alpha2",
  9382. "php": ">=5.2.0"
  9383. },
  9384. "require-dev": {
  9385. "phpunit/phpunit": "*"
  9386. },
  9387. "suggest": {
  9388. "ext-bz2": "Bz2 compression support.",
  9389. "ext-xz": "Lzma2 compression support.",
  9390. "ext-zlib": "Gzip compression support."
  9391. },
  9392. "type": "library",
  9393. "extra": {
  9394. "branch-alias": {
  9395. "dev-master": "1.4.x-dev"
  9396. }
  9397. },
  9398. "autoload": {
  9399. "psr-0": {
  9400. "Archive_Tar": ""
  9401. }
  9402. },
  9403. "notification-url": "https://packagist.org/downloads/",
  9404. "include-path": [
  9405. "./"
  9406. ],
  9407. "license": [
  9408. "BSD-2-Clause"
  9409. ],
  9410. "authors": [
  9411. {
  9412. "name": "Vincent Blavet",
  9413. "email": "vincent@phpconcept.net"
  9414. },
  9415. {
  9416. "name": "Greg Beaver",
  9417. "email": "greg@chiaraquartet.net"
  9418. },
  9419. {
  9420. "name": "Michiel Rook",
  9421. "email": "mrook@php.net"
  9422. }
  9423. ],
  9424. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  9425. "homepage": "https://github.com/pear/Archive_Tar",
  9426. "keywords": [
  9427. "archive",
  9428. "tar"
  9429. ],
  9430. "support": {
  9431. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  9432. "source": "https://github.com/pear/Archive_Tar"
  9433. },
  9434. "time": "2024-03-16T16:21:40+00:00"
  9435. },
  9436. {
  9437. "name": "pear/console_getopt",
  9438. "version": "v1.4.3",
  9439. "source": {
  9440. "type": "git",
  9441. "url": "https://github.com/pear/Console_Getopt.git",
  9442. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  9443. },
  9444. "dist": {
  9445. "type": "zip",
  9446. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9447. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9448. "shasum": ""
  9449. },
  9450. "type": "library",
  9451. "autoload": {
  9452. "psr-0": {
  9453. "Console": "./"
  9454. }
  9455. },
  9456. "notification-url": "https://packagist.org/downloads/",
  9457. "include-path": [
  9458. "./"
  9459. ],
  9460. "license": [
  9461. "BSD-2-Clause"
  9462. ],
  9463. "authors": [
  9464. {
  9465. "name": "Andrei Zmievski",
  9466. "email": "andrei@php.net",
  9467. "role": "Lead"
  9468. },
  9469. {
  9470. "name": "Stig Bakken",
  9471. "email": "stig@php.net",
  9472. "role": "Developer"
  9473. },
  9474. {
  9475. "name": "Greg Beaver",
  9476. "email": "cellog@php.net",
  9477. "role": "Helper"
  9478. }
  9479. ],
  9480. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  9481. "support": {
  9482. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  9483. "source": "https://github.com/pear/Console_Getopt"
  9484. },
  9485. "time": "2019-11-20T18:27:48+00:00"
  9486. },
  9487. {
  9488. "name": "pear/pear-core-minimal",
  9489. "version": "v1.10.16",
  9490. "source": {
  9491. "type": "git",
  9492. "url": "https://github.com/pear/pear-core-minimal.git",
  9493. "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033"
  9494. },
  9495. "dist": {
  9496. "type": "zip",
  9497. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/c0f51b45f50683bf5bbf558036854ebc9b54d033",
  9498. "reference": "c0f51b45f50683bf5bbf558036854ebc9b54d033",
  9499. "shasum": ""
  9500. },
  9501. "require": {
  9502. "pear/console_getopt": "~1.4",
  9503. "pear/pear_exception": "~1.0",
  9504. "php": ">=5.4"
  9505. },
  9506. "replace": {
  9507. "rsky/pear-core-min": "self.version"
  9508. },
  9509. "type": "library",
  9510. "autoload": {
  9511. "classmap": [
  9512. "src/"
  9513. ]
  9514. },
  9515. "notification-url": "https://packagist.org/downloads/",
  9516. "include-path": [
  9517. "src/"
  9518. ],
  9519. "license": [
  9520. "BSD-3-Clause"
  9521. ],
  9522. "authors": [
  9523. {
  9524. "name": "Christian Weiske",
  9525. "email": "cweiske@php.net",
  9526. "role": "Lead"
  9527. }
  9528. ],
  9529. "description": "Minimal set of PEAR core files to be used as composer dependency",
  9530. "support": {
  9531. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  9532. "source": "https://github.com/pear/pear-core-minimal"
  9533. },
  9534. "time": "2024-11-24T22:27:58+00:00"
  9535. },
  9536. {
  9537. "name": "pear/pear_exception",
  9538. "version": "v1.0.2",
  9539. "source": {
  9540. "type": "git",
  9541. "url": "https://github.com/pear/PEAR_Exception.git",
  9542. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  9543. },
  9544. "dist": {
  9545. "type": "zip",
  9546. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9547. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9548. "shasum": ""
  9549. },
  9550. "require": {
  9551. "php": ">=5.2.0"
  9552. },
  9553. "require-dev": {
  9554. "phpunit/phpunit": "<9"
  9555. },
  9556. "type": "class",
  9557. "extra": {
  9558. "branch-alias": {
  9559. "dev-master": "1.0.x-dev"
  9560. }
  9561. },
  9562. "autoload": {
  9563. "classmap": [
  9564. "PEAR/"
  9565. ]
  9566. },
  9567. "notification-url": "https://packagist.org/downloads/",
  9568. "include-path": [
  9569. "."
  9570. ],
  9571. "license": [
  9572. "BSD-2-Clause"
  9573. ],
  9574. "authors": [
  9575. {
  9576. "name": "Helgi Thormar",
  9577. "email": "dufuz@php.net"
  9578. },
  9579. {
  9580. "name": "Greg Beaver",
  9581. "email": "cellog@php.net"
  9582. }
  9583. ],
  9584. "description": "The PEAR Exception base class.",
  9585. "homepage": "https://github.com/pear/PEAR_Exception",
  9586. "keywords": [
  9587. "exception"
  9588. ],
  9589. "support": {
  9590. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  9591. "source": "https://github.com/pear/PEAR_Exception"
  9592. },
  9593. "time": "2021-03-21T15:43:46+00:00"
  9594. },
  9595. {
  9596. "name": "phootwork/collection",
  9597. "version": "v3.2.3",
  9598. "source": {
  9599. "type": "git",
  9600. "url": "https://github.com/phootwork/collection.git",
  9601. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  9602. },
  9603. "dist": {
  9604. "type": "zip",
  9605. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  9606. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  9607. "shasum": ""
  9608. },
  9609. "require": {
  9610. "phootwork/lang": "^3.0",
  9611. "php": ">=8.0"
  9612. },
  9613. "type": "library",
  9614. "autoload": {
  9615. "psr-4": {
  9616. "phootwork\\collection\\": ""
  9617. }
  9618. },
  9619. "notification-url": "https://packagist.org/downloads/",
  9620. "license": [
  9621. "MIT"
  9622. ],
  9623. "authors": [
  9624. {
  9625. "name": "Thomas Gossmann",
  9626. "homepage": "http://gos.si"
  9627. }
  9628. ],
  9629. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  9630. "homepage": "https://phootwork.github.io/collection/",
  9631. "keywords": [
  9632. "Array object",
  9633. "Text object",
  9634. "collection",
  9635. "collections",
  9636. "json",
  9637. "list",
  9638. "map",
  9639. "queue",
  9640. "set",
  9641. "stack",
  9642. "xml"
  9643. ],
  9644. "support": {
  9645. "issues": "https://github.com/phootwork/phootwork/issues",
  9646. "source": "https://github.com/phootwork/collection/tree/v3.2.3"
  9647. },
  9648. "time": "2022-08-27T12:51:24+00:00"
  9649. },
  9650. {
  9651. "name": "phootwork/lang",
  9652. "version": "v3.2.3",
  9653. "source": {
  9654. "type": "git",
  9655. "url": "https://github.com/phootwork/lang.git",
  9656. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e"
  9657. },
  9658. "dist": {
  9659. "type": "zip",
  9660. "url": "https://api.github.com/repos/phootwork/lang/zipball/52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  9661. "reference": "52ec8cce740ce1c424eef02f43b43d5ddfec7b5e",
  9662. "shasum": ""
  9663. },
  9664. "require": {
  9665. "php": ">=8.0",
  9666. "symfony/polyfill-mbstring": "^1.12",
  9667. "symfony/polyfill-php81": "^1.22"
  9668. },
  9669. "type": "library",
  9670. "autoload": {
  9671. "psr-4": {
  9672. "phootwork\\lang\\": ""
  9673. }
  9674. },
  9675. "notification-url": "https://packagist.org/downloads/",
  9676. "license": [
  9677. "MIT"
  9678. ],
  9679. "authors": [
  9680. {
  9681. "name": "Thomas Gossmann",
  9682. "homepage": "http://gos.si"
  9683. }
  9684. ],
  9685. "description": "Missing PHP language constructs",
  9686. "homepage": "https://phootwork.github.io/lang/",
  9687. "keywords": [
  9688. "array",
  9689. "comparator",
  9690. "comparison",
  9691. "string"
  9692. ],
  9693. "support": {
  9694. "issues": "https://github.com/phootwork/phootwork/issues",
  9695. "source": "https://github.com/phootwork/lang/tree/v3.2.3"
  9696. },
  9697. "time": "2024-10-03T13:43:19+00:00"
  9698. },
  9699. {
  9700. "name": "php-http/discovery",
  9701. "version": "1.20.0",
  9702. "source": {
  9703. "type": "git",
  9704. "url": "https://github.com/php-http/discovery.git",
  9705. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d"
  9706. },
  9707. "dist": {
  9708. "type": "zip",
  9709. "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d",
  9710. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
  9711. "shasum": ""
  9712. },
  9713. "require": {
  9714. "composer-plugin-api": "^1.0|^2.0",
  9715. "php": "^7.1 || ^8.0"
  9716. },
  9717. "conflict": {
  9718. "nyholm/psr7": "<1.0",
  9719. "zendframework/zend-diactoros": "*"
  9720. },
  9721. "provide": {
  9722. "php-http/async-client-implementation": "*",
  9723. "php-http/client-implementation": "*",
  9724. "psr/http-client-implementation": "*",
  9725. "psr/http-factory-implementation": "*",
  9726. "psr/http-message-implementation": "*"
  9727. },
  9728. "require-dev": {
  9729. "composer/composer": "^1.0.2|^2.0",
  9730. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  9731. "php-http/httplug": "^1.0 || ^2.0",
  9732. "php-http/message-factory": "^1.0",
  9733. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  9734. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  9735. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  9736. },
  9737. "type": "composer-plugin",
  9738. "extra": {
  9739. "class": "Http\\Discovery\\Composer\\Plugin",
  9740. "plugin-optional": true
  9741. },
  9742. "autoload": {
  9743. "psr-4": {
  9744. "Http\\Discovery\\": "src/"
  9745. },
  9746. "exclude-from-classmap": [
  9747. "src/Composer/Plugin.php"
  9748. ]
  9749. },
  9750. "notification-url": "https://packagist.org/downloads/",
  9751. "license": [
  9752. "MIT"
  9753. ],
  9754. "authors": [
  9755. {
  9756. "name": "Márk Sági-Kazár",
  9757. "email": "mark.sagikazar@gmail.com"
  9758. }
  9759. ],
  9760. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  9761. "homepage": "http://php-http.org",
  9762. "keywords": [
  9763. "adapter",
  9764. "client",
  9765. "discovery",
  9766. "factory",
  9767. "http",
  9768. "message",
  9769. "psr17",
  9770. "psr7"
  9771. ],
  9772. "support": {
  9773. "issues": "https://github.com/php-http/discovery/issues",
  9774. "source": "https://github.com/php-http/discovery/tree/1.20.0"
  9775. },
  9776. "time": "2024-10-02T11:20:13+00:00"
  9777. },
  9778. {
  9779. "name": "php-http/guzzle7-adapter",
  9780. "version": "1.1.0",
  9781. "source": {
  9782. "type": "git",
  9783. "url": "https://github.com/php-http/guzzle7-adapter.git",
  9784. "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb"
  9785. },
  9786. "dist": {
  9787. "type": "zip",
  9788. "url": "https://api.github.com/repos/php-http/guzzle7-adapter/zipball/03a415fde709c2f25539790fecf4d9a31bc3d0eb",
  9789. "reference": "03a415fde709c2f25539790fecf4d9a31bc3d0eb",
  9790. "shasum": ""
  9791. },
  9792. "require": {
  9793. "guzzlehttp/guzzle": "^7.0",
  9794. "php": "^7.3 | ^8.0",
  9795. "php-http/httplug": "^2.0",
  9796. "psr/http-client": "^1.0"
  9797. },
  9798. "provide": {
  9799. "php-http/async-client-implementation": "1.0",
  9800. "php-http/client-implementation": "1.0",
  9801. "psr/http-client-implementation": "1.0"
  9802. },
  9803. "require-dev": {
  9804. "php-http/client-integration-tests": "^3.0",
  9805. "php-http/message-factory": "^1.1",
  9806. "phpspec/prophecy-phpunit": "^2.0",
  9807. "phpunit/phpunit": "^8.0|^9.3"
  9808. },
  9809. "type": "library",
  9810. "autoload": {
  9811. "psr-4": {
  9812. "Http\\Adapter\\Guzzle7\\": "src/"
  9813. }
  9814. },
  9815. "notification-url": "https://packagist.org/downloads/",
  9816. "license": [
  9817. "MIT"
  9818. ],
  9819. "authors": [
  9820. {
  9821. "name": "Tobias Nyholm",
  9822. "email": "tobias.nyholm@gmail.com"
  9823. }
  9824. ],
  9825. "description": "Guzzle 7 HTTP Adapter",
  9826. "homepage": "http://httplug.io",
  9827. "keywords": [
  9828. "Guzzle",
  9829. "http"
  9830. ],
  9831. "support": {
  9832. "issues": "https://github.com/php-http/guzzle7-adapter/issues",
  9833. "source": "https://github.com/php-http/guzzle7-adapter/tree/1.1.0"
  9834. },
  9835. "time": "2024-11-26T11:14:36+00:00"
  9836. },
  9837. {
  9838. "name": "php-http/httplug",
  9839. "version": "2.4.1",
  9840. "source": {
  9841. "type": "git",
  9842. "url": "https://github.com/php-http/httplug.git",
  9843. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4"
  9844. },
  9845. "dist": {
  9846. "type": "zip",
  9847. "url": "https://api.github.com/repos/php-http/httplug/zipball/5cad731844891a4c282f3f3e1b582c46839d22f4",
  9848. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4",
  9849. "shasum": ""
  9850. },
  9851. "require": {
  9852. "php": "^7.1 || ^8.0",
  9853. "php-http/promise": "^1.1",
  9854. "psr/http-client": "^1.0",
  9855. "psr/http-message": "^1.0 || ^2.0"
  9856. },
  9857. "require-dev": {
  9858. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  9859. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  9860. },
  9861. "type": "library",
  9862. "autoload": {
  9863. "psr-4": {
  9864. "Http\\Client\\": "src/"
  9865. }
  9866. },
  9867. "notification-url": "https://packagist.org/downloads/",
  9868. "license": [
  9869. "MIT"
  9870. ],
  9871. "authors": [
  9872. {
  9873. "name": "Eric GELOEN",
  9874. "email": "geloen.eric@gmail.com"
  9875. },
  9876. {
  9877. "name": "Márk Sági-Kazár",
  9878. "email": "mark.sagikazar@gmail.com",
  9879. "homepage": "https://sagikazarmark.hu"
  9880. }
  9881. ],
  9882. "description": "HTTPlug, the HTTP client abstraction for PHP",
  9883. "homepage": "http://httplug.io",
  9884. "keywords": [
  9885. "client",
  9886. "http"
  9887. ],
  9888. "support": {
  9889. "issues": "https://github.com/php-http/httplug/issues",
  9890. "source": "https://github.com/php-http/httplug/tree/2.4.1"
  9891. },
  9892. "time": "2024-09-23T11:39:58+00:00"
  9893. },
  9894. {
  9895. "name": "php-http/message",
  9896. "version": "1.16.2",
  9897. "source": {
  9898. "type": "git",
  9899. "url": "https://github.com/php-http/message.git",
  9900. "reference": "06dd5e8562f84e641bf929bfe699ee0f5ce8080a"
  9901. },
  9902. "dist": {
  9903. "type": "zip",
  9904. "url": "https://api.github.com/repos/php-http/message/zipball/06dd5e8562f84e641bf929bfe699ee0f5ce8080a",
  9905. "reference": "06dd5e8562f84e641bf929bfe699ee0f5ce8080a",
  9906. "shasum": ""
  9907. },
  9908. "require": {
  9909. "clue/stream-filter": "^1.5",
  9910. "php": "^7.2 || ^8.0",
  9911. "psr/http-message": "^1.1 || ^2.0"
  9912. },
  9913. "provide": {
  9914. "php-http/message-factory-implementation": "1.0"
  9915. },
  9916. "require-dev": {
  9917. "ergebnis/composer-normalize": "^2.6",
  9918. "ext-zlib": "*",
  9919. "guzzlehttp/psr7": "^1.0 || ^2.0",
  9920. "laminas/laminas-diactoros": "^2.0 || ^3.0",
  9921. "php-http/message-factory": "^1.0.2",
  9922. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  9923. "slim/slim": "^3.0"
  9924. },
  9925. "suggest": {
  9926. "ext-zlib": "Used with compressor/decompressor streams",
  9927. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  9928. "laminas/laminas-diactoros": "Used with Diactoros Factories",
  9929. "slim/slim": "Used with Slim Framework PSR-7 implementation"
  9930. },
  9931. "type": "library",
  9932. "autoload": {
  9933. "files": [
  9934. "src/filters.php"
  9935. ],
  9936. "psr-4": {
  9937. "Http\\Message\\": "src/"
  9938. }
  9939. },
  9940. "notification-url": "https://packagist.org/downloads/",
  9941. "license": [
  9942. "MIT"
  9943. ],
  9944. "authors": [
  9945. {
  9946. "name": "Márk Sági-Kazár",
  9947. "email": "mark.sagikazar@gmail.com"
  9948. }
  9949. ],
  9950. "description": "HTTP Message related tools",
  9951. "homepage": "http://php-http.org",
  9952. "keywords": [
  9953. "http",
  9954. "message",
  9955. "psr-7"
  9956. ],
  9957. "support": {
  9958. "issues": "https://github.com/php-http/message/issues",
  9959. "source": "https://github.com/php-http/message/tree/1.16.2"
  9960. },
  9961. "time": "2024-10-02T11:34:13+00:00"
  9962. },
  9963. {
  9964. "name": "php-http/promise",
  9965. "version": "1.3.1",
  9966. "source": {
  9967. "type": "git",
  9968. "url": "https://github.com/php-http/promise.git",
  9969. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83"
  9970. },
  9971. "dist": {
  9972. "type": "zip",
  9973. "url": "https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  9974. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  9975. "shasum": ""
  9976. },
  9977. "require": {
  9978. "php": "^7.1 || ^8.0"
  9979. },
  9980. "require-dev": {
  9981. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
  9982. "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
  9983. },
  9984. "type": "library",
  9985. "autoload": {
  9986. "psr-4": {
  9987. "Http\\Promise\\": "src/"
  9988. }
  9989. },
  9990. "notification-url": "https://packagist.org/downloads/",
  9991. "license": [
  9992. "MIT"
  9993. ],
  9994. "authors": [
  9995. {
  9996. "name": "Joel Wurtz",
  9997. "email": "joel.wurtz@gmail.com"
  9998. },
  9999. {
  10000. "name": "Márk Sági-Kazár",
  10001. "email": "mark.sagikazar@gmail.com"
  10002. }
  10003. ],
  10004. "description": "Promise used for asynchronous HTTP requests",
  10005. "homepage": "http://httplug.io",
  10006. "keywords": [
  10007. "promise"
  10008. ],
  10009. "support": {
  10010. "issues": "https://github.com/php-http/promise/issues",
  10011. "source": "https://github.com/php-http/promise/tree/1.3.1"
  10012. },
  10013. "time": "2024-03-15T13:55:21+00:00"
  10014. },
  10015. {
  10016. "name": "phpmailer/phpmailer",
  10017. "version": "v6.10.0",
  10018. "source": {
  10019. "type": "git",
  10020. "url": "https://github.com/PHPMailer/PHPMailer.git",
  10021. "reference": "bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144"
  10022. },
  10023. "dist": {
  10024. "type": "zip",
  10025. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144",
  10026. "reference": "bf74d75a1fde6beaa34a0ddae2ec5fce0f72a144",
  10027. "shasum": ""
  10028. },
  10029. "require": {
  10030. "ext-ctype": "*",
  10031. "ext-filter": "*",
  10032. "ext-hash": "*",
  10033. "php": ">=5.5.0"
  10034. },
  10035. "require-dev": {
  10036. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  10037. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  10038. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  10039. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  10040. "phpcompatibility/php-compatibility": "^9.3.5",
  10041. "roave/security-advisories": "dev-latest",
  10042. "squizlabs/php_codesniffer": "^3.7.2",
  10043. "yoast/phpunit-polyfills": "^1.0.4"
  10044. },
  10045. "suggest": {
  10046. "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication",
  10047. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  10048. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  10049. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  10050. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  10051. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  10052. "psr/log": "For optional PSR-3 debug logging",
  10053. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  10054. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  10055. },
  10056. "type": "library",
  10057. "autoload": {
  10058. "psr-4": {
  10059. "PHPMailer\\PHPMailer\\": "src/"
  10060. }
  10061. },
  10062. "notification-url": "https://packagist.org/downloads/",
  10063. "license": [
  10064. "LGPL-2.1-only"
  10065. ],
  10066. "authors": [
  10067. {
  10068. "name": "Marcus Bointon",
  10069. "email": "phpmailer@synchromedia.co.uk"
  10070. },
  10071. {
  10072. "name": "Jim Jagielski",
  10073. "email": "jimjag@gmail.com"
  10074. },
  10075. {
  10076. "name": "Andy Prevost",
  10077. "email": "codeworxtech@users.sourceforge.net"
  10078. },
  10079. {
  10080. "name": "Brent R. Matzelle"
  10081. }
  10082. ],
  10083. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  10084. "support": {
  10085. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  10086. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.10.0"
  10087. },
  10088. "funding": [
  10089. {
  10090. "url": "https://github.com/Synchro",
  10091. "type": "github"
  10092. }
  10093. ],
  10094. "time": "2025-04-24T15:19:31+00:00"
  10095. },
  10096. {
  10097. "name": "phpowermove/docblock",
  10098. "version": "v4.0",
  10099. "source": {
  10100. "type": "git",
  10101. "url": "https://github.com/phpowermove/docblock.git",
  10102. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  10103. },
  10104. "dist": {
  10105. "type": "zip",
  10106. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  10107. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  10108. "shasum": ""
  10109. },
  10110. "require": {
  10111. "phootwork/collection": "^3.0",
  10112. "phootwork/lang": "^3.0",
  10113. "php": ">=8.0"
  10114. },
  10115. "require-dev": {
  10116. "phootwork/php-cs-fixer-config": "^0.4",
  10117. "phpunit/phpunit": "^9.0",
  10118. "psalm/phar": "^4.3"
  10119. },
  10120. "type": "library",
  10121. "autoload": {
  10122. "psr-4": {
  10123. "phpowermove\\docblock\\": "src/"
  10124. }
  10125. },
  10126. "notification-url": "https://packagist.org/downloads/",
  10127. "license": [
  10128. "MIT"
  10129. ],
  10130. "authors": [
  10131. {
  10132. "name": "Thomas Gossmann",
  10133. "homepage": "http://gos.si"
  10134. }
  10135. ],
  10136. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  10137. "keywords": [
  10138. "docblock",
  10139. "generator",
  10140. "parser"
  10141. ],
  10142. "support": {
  10143. "issues": "https://github.com/phpowermove/docblock/issues",
  10144. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  10145. },
  10146. "time": "2021-09-22T16:57:06+00:00"
  10147. },
  10148. {
  10149. "name": "phpstan/phpstan",
  10150. "version": "2.1.19",
  10151. "source": {
  10152. "type": "git",
  10153. "url": "https://github.com/phpstan/phpstan.git",
  10154. "reference": "473a8c30e450d87099f76313edcbb90852f9afdf"
  10155. },
  10156. "dist": {
  10157. "type": "zip",
  10158. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/473a8c30e450d87099f76313edcbb90852f9afdf",
  10159. "reference": "473a8c30e450d87099f76313edcbb90852f9afdf",
  10160. "shasum": ""
  10161. },
  10162. "require": {
  10163. "php": "^7.4|^8.0"
  10164. },
  10165. "conflict": {
  10166. "phpstan/phpstan-shim": "*"
  10167. },
  10168. "bin": [
  10169. "phpstan",
  10170. "phpstan.phar"
  10171. ],
  10172. "type": "library",
  10173. "autoload": {
  10174. "files": [
  10175. "bootstrap.php"
  10176. ]
  10177. },
  10178. "notification-url": "https://packagist.org/downloads/",
  10179. "license": [
  10180. "MIT"
  10181. ],
  10182. "description": "PHPStan - PHP Static Analysis Tool",
  10183. "keywords": [
  10184. "dev",
  10185. "static analysis"
  10186. ],
  10187. "support": {
  10188. "docs": "https://phpstan.org/user-guide/getting-started",
  10189. "forum": "https://github.com/phpstan/phpstan/discussions",
  10190. "issues": "https://github.com/phpstan/phpstan/issues",
  10191. "security": "https://github.com/phpstan/phpstan/security/policy",
  10192. "source": "https://github.com/phpstan/phpstan-src"
  10193. },
  10194. "funding": [
  10195. {
  10196. "url": "https://github.com/ondrejmirtes",
  10197. "type": "github"
  10198. },
  10199. {
  10200. "url": "https://github.com/phpstan",
  10201. "type": "github"
  10202. }
  10203. ],
  10204. "time": "2025-07-21T19:58:24+00:00"
  10205. },
  10206. {
  10207. "name": "phpstan/phpstan-deprecation-rules",
  10208. "version": "2.0.3",
  10209. "source": {
  10210. "type": "git",
  10211. "url": "https://github.com/phpstan/phpstan-deprecation-rules.git",
  10212. "reference": "468e02c9176891cc901143da118f09dc9505fc2f"
  10213. },
  10214. "dist": {
  10215. "type": "zip",
  10216. "url": "https://api.github.com/repos/phpstan/phpstan-deprecation-rules/zipball/468e02c9176891cc901143da118f09dc9505fc2f",
  10217. "reference": "468e02c9176891cc901143da118f09dc9505fc2f",
  10218. "shasum": ""
  10219. },
  10220. "require": {
  10221. "php": "^7.4 || ^8.0",
  10222. "phpstan/phpstan": "^2.1.15"
  10223. },
  10224. "require-dev": {
  10225. "php-parallel-lint/php-parallel-lint": "^1.2",
  10226. "phpstan/phpstan-phpunit": "^2.0",
  10227. "phpunit/phpunit": "^9.6"
  10228. },
  10229. "type": "phpstan-extension",
  10230. "extra": {
  10231. "phpstan": {
  10232. "includes": [
  10233. "rules.neon"
  10234. ]
  10235. }
  10236. },
  10237. "autoload": {
  10238. "psr-4": {
  10239. "PHPStan\\": "src/"
  10240. }
  10241. },
  10242. "notification-url": "https://packagist.org/downloads/",
  10243. "license": [
  10244. "MIT"
  10245. ],
  10246. "description": "PHPStan rules for detecting usage of deprecated classes, methods, properties, constants and traits.",
  10247. "support": {
  10248. "issues": "https://github.com/phpstan/phpstan-deprecation-rules/issues",
  10249. "source": "https://github.com/phpstan/phpstan-deprecation-rules/tree/2.0.3"
  10250. },
  10251. "time": "2025-05-14T10:56:57+00:00"
  10252. },
  10253. {
  10254. "name": "politsin/jquery-ui-touch-punch",
  10255. "version": "1.0",
  10256. "source": {
  10257. "type": "git",
  10258. "url": "https://github.com/politsin/jquery-ui-touch-punch.git",
  10259. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd"
  10260. },
  10261. "dist": {
  10262. "type": "zip",
  10263. "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd",
  10264. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd",
  10265. "shasum": ""
  10266. },
  10267. "type": "drupal-library",
  10268. "notification-url": "https://packagist.org/downloads/",
  10269. "license": [
  10270. "MIT"
  10271. ],
  10272. "authors": [
  10273. {
  10274. "name": "Dave Furfero",
  10275. "email": "furf@furf.com"
  10276. }
  10277. ],
  10278. "description": "Extension to jQuery UI for mobile touch event support.",
  10279. "homepage": "http://touchpunch.furf.com/",
  10280. "keywords": [
  10281. "gestures",
  10282. "mobile",
  10283. "touch"
  10284. ],
  10285. "support": {
  10286. "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
  10287. "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
  10288. },
  10289. "time": "2020-12-15T10:26:18+00:00"
  10290. },
  10291. {
  10292. "name": "psr/cache",
  10293. "version": "3.0.0",
  10294. "source": {
  10295. "type": "git",
  10296. "url": "https://github.com/php-fig/cache.git",
  10297. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  10298. },
  10299. "dist": {
  10300. "type": "zip",
  10301. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  10302. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  10303. "shasum": ""
  10304. },
  10305. "require": {
  10306. "php": ">=8.0.0"
  10307. },
  10308. "type": "library",
  10309. "extra": {
  10310. "branch-alias": {
  10311. "dev-master": "1.0.x-dev"
  10312. }
  10313. },
  10314. "autoload": {
  10315. "psr-4": {
  10316. "Psr\\Cache\\": "src/"
  10317. }
  10318. },
  10319. "notification-url": "https://packagist.org/downloads/",
  10320. "license": [
  10321. "MIT"
  10322. ],
  10323. "authors": [
  10324. {
  10325. "name": "PHP-FIG",
  10326. "homepage": "https://www.php-fig.org/"
  10327. }
  10328. ],
  10329. "description": "Common interface for caching libraries",
  10330. "keywords": [
  10331. "cache",
  10332. "psr",
  10333. "psr-6"
  10334. ],
  10335. "support": {
  10336. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  10337. },
  10338. "time": "2021-02-03T23:26:27+00:00"
  10339. },
  10340. {
  10341. "name": "psr/container",
  10342. "version": "2.0.2",
  10343. "source": {
  10344. "type": "git",
  10345. "url": "https://github.com/php-fig/container.git",
  10346. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  10347. },
  10348. "dist": {
  10349. "type": "zip",
  10350. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  10351. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  10352. "shasum": ""
  10353. },
  10354. "require": {
  10355. "php": ">=7.4.0"
  10356. },
  10357. "type": "library",
  10358. "extra": {
  10359. "branch-alias": {
  10360. "dev-master": "2.0.x-dev"
  10361. }
  10362. },
  10363. "autoload": {
  10364. "psr-4": {
  10365. "Psr\\Container\\": "src/"
  10366. }
  10367. },
  10368. "notification-url": "https://packagist.org/downloads/",
  10369. "license": [
  10370. "MIT"
  10371. ],
  10372. "authors": [
  10373. {
  10374. "name": "PHP-FIG",
  10375. "homepage": "https://www.php-fig.org/"
  10376. }
  10377. ],
  10378. "description": "Common Container Interface (PHP FIG PSR-11)",
  10379. "homepage": "https://github.com/php-fig/container",
  10380. "keywords": [
  10381. "PSR-11",
  10382. "container",
  10383. "container-interface",
  10384. "container-interop",
  10385. "psr"
  10386. ],
  10387. "support": {
  10388. "issues": "https://github.com/php-fig/container/issues",
  10389. "source": "https://github.com/php-fig/container/tree/2.0.2"
  10390. },
  10391. "time": "2021-11-05T16:47:00+00:00"
  10392. },
  10393. {
  10394. "name": "psr/event-dispatcher",
  10395. "version": "1.0.0",
  10396. "source": {
  10397. "type": "git",
  10398. "url": "https://github.com/php-fig/event-dispatcher.git",
  10399. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  10400. },
  10401. "dist": {
  10402. "type": "zip",
  10403. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  10404. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  10405. "shasum": ""
  10406. },
  10407. "require": {
  10408. "php": ">=7.2.0"
  10409. },
  10410. "type": "library",
  10411. "extra": {
  10412. "branch-alias": {
  10413. "dev-master": "1.0.x-dev"
  10414. }
  10415. },
  10416. "autoload": {
  10417. "psr-4": {
  10418. "Psr\\EventDispatcher\\": "src/"
  10419. }
  10420. },
  10421. "notification-url": "https://packagist.org/downloads/",
  10422. "license": [
  10423. "MIT"
  10424. ],
  10425. "authors": [
  10426. {
  10427. "name": "PHP-FIG",
  10428. "homepage": "http://www.php-fig.org/"
  10429. }
  10430. ],
  10431. "description": "Standard interfaces for event handling.",
  10432. "keywords": [
  10433. "events",
  10434. "psr",
  10435. "psr-14"
  10436. ],
  10437. "support": {
  10438. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  10439. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  10440. },
  10441. "time": "2019-01-08T18:20:26+00:00"
  10442. },
  10443. {
  10444. "name": "psr/http-client",
  10445. "version": "1.0.3",
  10446. "source": {
  10447. "type": "git",
  10448. "url": "https://github.com/php-fig/http-client.git",
  10449. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  10450. },
  10451. "dist": {
  10452. "type": "zip",
  10453. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  10454. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  10455. "shasum": ""
  10456. },
  10457. "require": {
  10458. "php": "^7.0 || ^8.0",
  10459. "psr/http-message": "^1.0 || ^2.0"
  10460. },
  10461. "type": "library",
  10462. "extra": {
  10463. "branch-alias": {
  10464. "dev-master": "1.0.x-dev"
  10465. }
  10466. },
  10467. "autoload": {
  10468. "psr-4": {
  10469. "Psr\\Http\\Client\\": "src/"
  10470. }
  10471. },
  10472. "notification-url": "https://packagist.org/downloads/",
  10473. "license": [
  10474. "MIT"
  10475. ],
  10476. "authors": [
  10477. {
  10478. "name": "PHP-FIG",
  10479. "homepage": "https://www.php-fig.org/"
  10480. }
  10481. ],
  10482. "description": "Common interface for HTTP clients",
  10483. "homepage": "https://github.com/php-fig/http-client",
  10484. "keywords": [
  10485. "http",
  10486. "http-client",
  10487. "psr",
  10488. "psr-18"
  10489. ],
  10490. "support": {
  10491. "source": "https://github.com/php-fig/http-client"
  10492. },
  10493. "time": "2023-09-23T14:17:50+00:00"
  10494. },
  10495. {
  10496. "name": "psr/http-factory",
  10497. "version": "1.1.0",
  10498. "source": {
  10499. "type": "git",
  10500. "url": "https://github.com/php-fig/http-factory.git",
  10501. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  10502. },
  10503. "dist": {
  10504. "type": "zip",
  10505. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  10506. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  10507. "shasum": ""
  10508. },
  10509. "require": {
  10510. "php": ">=7.1",
  10511. "psr/http-message": "^1.0 || ^2.0"
  10512. },
  10513. "type": "library",
  10514. "extra": {
  10515. "branch-alias": {
  10516. "dev-master": "1.0.x-dev"
  10517. }
  10518. },
  10519. "autoload": {
  10520. "psr-4": {
  10521. "Psr\\Http\\Message\\": "src/"
  10522. }
  10523. },
  10524. "notification-url": "https://packagist.org/downloads/",
  10525. "license": [
  10526. "MIT"
  10527. ],
  10528. "authors": [
  10529. {
  10530. "name": "PHP-FIG",
  10531. "homepage": "https://www.php-fig.org/"
  10532. }
  10533. ],
  10534. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  10535. "keywords": [
  10536. "factory",
  10537. "http",
  10538. "message",
  10539. "psr",
  10540. "psr-17",
  10541. "psr-7",
  10542. "request",
  10543. "response"
  10544. ],
  10545. "support": {
  10546. "source": "https://github.com/php-fig/http-factory"
  10547. },
  10548. "time": "2024-04-15T12:06:14+00:00"
  10549. },
  10550. {
  10551. "name": "psr/http-message",
  10552. "version": "2.0",
  10553. "source": {
  10554. "type": "git",
  10555. "url": "https://github.com/php-fig/http-message.git",
  10556. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  10557. },
  10558. "dist": {
  10559. "type": "zip",
  10560. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  10561. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  10562. "shasum": ""
  10563. },
  10564. "require": {
  10565. "php": "^7.2 || ^8.0"
  10566. },
  10567. "type": "library",
  10568. "extra": {
  10569. "branch-alias": {
  10570. "dev-master": "2.0.x-dev"
  10571. }
  10572. },
  10573. "autoload": {
  10574. "psr-4": {
  10575. "Psr\\Http\\Message\\": "src/"
  10576. }
  10577. },
  10578. "notification-url": "https://packagist.org/downloads/",
  10579. "license": [
  10580. "MIT"
  10581. ],
  10582. "authors": [
  10583. {
  10584. "name": "PHP-FIG",
  10585. "homepage": "https://www.php-fig.org/"
  10586. }
  10587. ],
  10588. "description": "Common interface for HTTP messages",
  10589. "homepage": "https://github.com/php-fig/http-message",
  10590. "keywords": [
  10591. "http",
  10592. "http-message",
  10593. "psr",
  10594. "psr-7",
  10595. "request",
  10596. "response"
  10597. ],
  10598. "support": {
  10599. "source": "https://github.com/php-fig/http-message/tree/2.0"
  10600. },
  10601. "time": "2023-04-04T09:54:51+00:00"
  10602. },
  10603. {
  10604. "name": "psr/log",
  10605. "version": "3.0.2",
  10606. "source": {
  10607. "type": "git",
  10608. "url": "https://github.com/php-fig/log.git",
  10609. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  10610. },
  10611. "dist": {
  10612. "type": "zip",
  10613. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  10614. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  10615. "shasum": ""
  10616. },
  10617. "require": {
  10618. "php": ">=8.0.0"
  10619. },
  10620. "type": "library",
  10621. "extra": {
  10622. "branch-alias": {
  10623. "dev-master": "3.x-dev"
  10624. }
  10625. },
  10626. "autoload": {
  10627. "psr-4": {
  10628. "Psr\\Log\\": "src"
  10629. }
  10630. },
  10631. "notification-url": "https://packagist.org/downloads/",
  10632. "license": [
  10633. "MIT"
  10634. ],
  10635. "authors": [
  10636. {
  10637. "name": "PHP-FIG",
  10638. "homepage": "https://www.php-fig.org/"
  10639. }
  10640. ],
  10641. "description": "Common interface for logging libraries",
  10642. "homepage": "https://github.com/php-fig/log",
  10643. "keywords": [
  10644. "log",
  10645. "psr",
  10646. "psr-3"
  10647. ],
  10648. "support": {
  10649. "source": "https://github.com/php-fig/log/tree/3.0.2"
  10650. },
  10651. "time": "2024-09-11T13:17:53+00:00"
  10652. },
  10653. {
  10654. "name": "psy/psysh",
  10655. "version": "v0.12.9",
  10656. "source": {
  10657. "type": "git",
  10658. "url": "https://github.com/bobthecow/psysh.git",
  10659. "reference": "1b801844becfe648985372cb4b12ad6840245ace"
  10660. },
  10661. "dist": {
  10662. "type": "zip",
  10663. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/1b801844becfe648985372cb4b12ad6840245ace",
  10664. "reference": "1b801844becfe648985372cb4b12ad6840245ace",
  10665. "shasum": ""
  10666. },
  10667. "require": {
  10668. "ext-json": "*",
  10669. "ext-tokenizer": "*",
  10670. "nikic/php-parser": "^5.0 || ^4.0",
  10671. "php": "^8.0 || ^7.4",
  10672. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  10673. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  10674. },
  10675. "conflict": {
  10676. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  10677. },
  10678. "require-dev": {
  10679. "bamarni/composer-bin-plugin": "^1.2"
  10680. },
  10681. "suggest": {
  10682. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  10683. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  10684. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  10685. },
  10686. "bin": [
  10687. "bin/psysh"
  10688. ],
  10689. "type": "library",
  10690. "extra": {
  10691. "bamarni-bin": {
  10692. "bin-links": false,
  10693. "forward-command": false
  10694. },
  10695. "branch-alias": {
  10696. "dev-main": "0.12.x-dev"
  10697. }
  10698. },
  10699. "autoload": {
  10700. "files": [
  10701. "src/functions.php"
  10702. ],
  10703. "psr-4": {
  10704. "Psy\\": "src/"
  10705. }
  10706. },
  10707. "notification-url": "https://packagist.org/downloads/",
  10708. "license": [
  10709. "MIT"
  10710. ],
  10711. "authors": [
  10712. {
  10713. "name": "Justin Hileman",
  10714. "email": "justin@justinhileman.info",
  10715. "homepage": "http://justinhileman.com"
  10716. }
  10717. ],
  10718. "description": "An interactive shell for modern PHP.",
  10719. "homepage": "http://psysh.org",
  10720. "keywords": [
  10721. "REPL",
  10722. "console",
  10723. "interactive",
  10724. "shell"
  10725. ],
  10726. "support": {
  10727. "issues": "https://github.com/bobthecow/psysh/issues",
  10728. "source": "https://github.com/bobthecow/psysh/tree/v0.12.9"
  10729. },
  10730. "time": "2025-06-23T02:35:06+00:00"
  10731. },
  10732. {
  10733. "name": "ralouphie/getallheaders",
  10734. "version": "3.0.3",
  10735. "source": {
  10736. "type": "git",
  10737. "url": "https://github.com/ralouphie/getallheaders.git",
  10738. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  10739. },
  10740. "dist": {
  10741. "type": "zip",
  10742. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  10743. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  10744. "shasum": ""
  10745. },
  10746. "require": {
  10747. "php": ">=5.6"
  10748. },
  10749. "require-dev": {
  10750. "php-coveralls/php-coveralls": "^2.1",
  10751. "phpunit/phpunit": "^5 || ^6.5"
  10752. },
  10753. "type": "library",
  10754. "autoload": {
  10755. "files": [
  10756. "src/getallheaders.php"
  10757. ]
  10758. },
  10759. "notification-url": "https://packagist.org/downloads/",
  10760. "license": [
  10761. "MIT"
  10762. ],
  10763. "authors": [
  10764. {
  10765. "name": "Ralph Khattar",
  10766. "email": "ralph.khattar@gmail.com"
  10767. }
  10768. ],
  10769. "description": "A polyfill for getallheaders.",
  10770. "support": {
  10771. "issues": "https://github.com/ralouphie/getallheaders/issues",
  10772. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  10773. },
  10774. "time": "2019-03-08T08:55:37+00:00"
  10775. },
  10776. {
  10777. "name": "sebastian/diff",
  10778. "version": "4.0.6",
  10779. "source": {
  10780. "type": "git",
  10781. "url": "https://github.com/sebastianbergmann/diff.git",
  10782. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  10783. },
  10784. "dist": {
  10785. "type": "zip",
  10786. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10787. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  10788. "shasum": ""
  10789. },
  10790. "require": {
  10791. "php": ">=7.3"
  10792. },
  10793. "require-dev": {
  10794. "phpunit/phpunit": "^9.3",
  10795. "symfony/process": "^4.2 || ^5"
  10796. },
  10797. "type": "library",
  10798. "extra": {
  10799. "branch-alias": {
  10800. "dev-master": "4.0-dev"
  10801. }
  10802. },
  10803. "autoload": {
  10804. "classmap": [
  10805. "src/"
  10806. ]
  10807. },
  10808. "notification-url": "https://packagist.org/downloads/",
  10809. "license": [
  10810. "BSD-3-Clause"
  10811. ],
  10812. "authors": [
  10813. {
  10814. "name": "Sebastian Bergmann",
  10815. "email": "sebastian@phpunit.de"
  10816. },
  10817. {
  10818. "name": "Kore Nordmann",
  10819. "email": "mail@kore-nordmann.de"
  10820. }
  10821. ],
  10822. "description": "Diff implementation",
  10823. "homepage": "https://github.com/sebastianbergmann/diff",
  10824. "keywords": [
  10825. "diff",
  10826. "udiff",
  10827. "unidiff",
  10828. "unified diff"
  10829. ],
  10830. "support": {
  10831. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10832. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  10833. },
  10834. "funding": [
  10835. {
  10836. "url": "https://github.com/sebastianbergmann",
  10837. "type": "github"
  10838. }
  10839. ],
  10840. "time": "2024-03-02T06:30:58+00:00"
  10841. },
  10842. {
  10843. "name": "symfony/console",
  10844. "version": "v6.4.23",
  10845. "source": {
  10846. "type": "git",
  10847. "url": "https://github.com/symfony/console.git",
  10848. "reference": "9056771b8eca08d026cd3280deeec3cfd99c4d93"
  10849. },
  10850. "dist": {
  10851. "type": "zip",
  10852. "url": "https://api.github.com/repos/symfony/console/zipball/9056771b8eca08d026cd3280deeec3cfd99c4d93",
  10853. "reference": "9056771b8eca08d026cd3280deeec3cfd99c4d93",
  10854. "shasum": ""
  10855. },
  10856. "require": {
  10857. "php": ">=8.1",
  10858. "symfony/deprecation-contracts": "^2.5|^3",
  10859. "symfony/polyfill-mbstring": "~1.0",
  10860. "symfony/service-contracts": "^2.5|^3",
  10861. "symfony/string": "^5.4|^6.0|^7.0"
  10862. },
  10863. "conflict": {
  10864. "symfony/dependency-injection": "<5.4",
  10865. "symfony/dotenv": "<5.4",
  10866. "symfony/event-dispatcher": "<5.4",
  10867. "symfony/lock": "<5.4",
  10868. "symfony/process": "<5.4"
  10869. },
  10870. "provide": {
  10871. "psr/log-implementation": "1.0|2.0|3.0"
  10872. },
  10873. "require-dev": {
  10874. "psr/log": "^1|^2|^3",
  10875. "symfony/config": "^5.4|^6.0|^7.0",
  10876. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10877. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  10878. "symfony/http-foundation": "^6.4|^7.0",
  10879. "symfony/http-kernel": "^6.4|^7.0",
  10880. "symfony/lock": "^5.4|^6.0|^7.0",
  10881. "symfony/messenger": "^5.4|^6.0|^7.0",
  10882. "symfony/process": "^5.4|^6.0|^7.0",
  10883. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  10884. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  10885. },
  10886. "type": "library",
  10887. "autoload": {
  10888. "psr-4": {
  10889. "Symfony\\Component\\Console\\": ""
  10890. },
  10891. "exclude-from-classmap": [
  10892. "/Tests/"
  10893. ]
  10894. },
  10895. "notification-url": "https://packagist.org/downloads/",
  10896. "license": [
  10897. "MIT"
  10898. ],
  10899. "authors": [
  10900. {
  10901. "name": "Fabien Potencier",
  10902. "email": "fabien@symfony.com"
  10903. },
  10904. {
  10905. "name": "Symfony Community",
  10906. "homepage": "https://symfony.com/contributors"
  10907. }
  10908. ],
  10909. "description": "Eases the creation of beautiful and testable command line interfaces",
  10910. "homepage": "https://symfony.com",
  10911. "keywords": [
  10912. "cli",
  10913. "command-line",
  10914. "console",
  10915. "terminal"
  10916. ],
  10917. "support": {
  10918. "source": "https://github.com/symfony/console/tree/v6.4.23"
  10919. },
  10920. "funding": [
  10921. {
  10922. "url": "https://symfony.com/sponsor",
  10923. "type": "custom"
  10924. },
  10925. {
  10926. "url": "https://github.com/fabpot",
  10927. "type": "github"
  10928. },
  10929. {
  10930. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10931. "type": "tidelift"
  10932. }
  10933. ],
  10934. "time": "2025-06-27T19:37:22+00:00"
  10935. },
  10936. {
  10937. "name": "symfony/dependency-injection",
  10938. "version": "v6.4.23",
  10939. "source": {
  10940. "type": "git",
  10941. "url": "https://github.com/symfony/dependency-injection.git",
  10942. "reference": "0d9f24f3de0a83573fce5c9ed025d6306c6e166b"
  10943. },
  10944. "dist": {
  10945. "type": "zip",
  10946. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/0d9f24f3de0a83573fce5c9ed025d6306c6e166b",
  10947. "reference": "0d9f24f3de0a83573fce5c9ed025d6306c6e166b",
  10948. "shasum": ""
  10949. },
  10950. "require": {
  10951. "php": ">=8.1",
  10952. "psr/container": "^1.1|^2.0",
  10953. "symfony/deprecation-contracts": "^2.5|^3",
  10954. "symfony/service-contracts": "^2.5|^3.0",
  10955. "symfony/var-exporter": "^6.4.20|^7.2.5"
  10956. },
  10957. "conflict": {
  10958. "ext-psr": "<1.1|>=2",
  10959. "symfony/config": "<6.1",
  10960. "symfony/finder": "<5.4",
  10961. "symfony/proxy-manager-bridge": "<6.3",
  10962. "symfony/yaml": "<5.4"
  10963. },
  10964. "provide": {
  10965. "psr/container-implementation": "1.1|2.0",
  10966. "symfony/service-implementation": "1.1|2.0|3.0"
  10967. },
  10968. "require-dev": {
  10969. "symfony/config": "^6.1|^7.0",
  10970. "symfony/expression-language": "^5.4|^6.0|^7.0",
  10971. "symfony/yaml": "^5.4|^6.0|^7.0"
  10972. },
  10973. "type": "library",
  10974. "autoload": {
  10975. "psr-4": {
  10976. "Symfony\\Component\\DependencyInjection\\": ""
  10977. },
  10978. "exclude-from-classmap": [
  10979. "/Tests/"
  10980. ]
  10981. },
  10982. "notification-url": "https://packagist.org/downloads/",
  10983. "license": [
  10984. "MIT"
  10985. ],
  10986. "authors": [
  10987. {
  10988. "name": "Fabien Potencier",
  10989. "email": "fabien@symfony.com"
  10990. },
  10991. {
  10992. "name": "Symfony Community",
  10993. "homepage": "https://symfony.com/contributors"
  10994. }
  10995. ],
  10996. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  10997. "homepage": "https://symfony.com",
  10998. "support": {
  10999. "source": "https://github.com/symfony/dependency-injection/tree/v6.4.23"
  11000. },
  11001. "funding": [
  11002. {
  11003. "url": "https://symfony.com/sponsor",
  11004. "type": "custom"
  11005. },
  11006. {
  11007. "url": "https://github.com/fabpot",
  11008. "type": "github"
  11009. },
  11010. {
  11011. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11012. "type": "tidelift"
  11013. }
  11014. ],
  11015. "time": "2025-06-23T06:49:06+00:00"
  11016. },
  11017. {
  11018. "name": "symfony/deprecation-contracts",
  11019. "version": "v3.5.1",
  11020. "source": {
  11021. "type": "git",
  11022. "url": "https://github.com/symfony/deprecation-contracts.git",
  11023. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  11024. },
  11025. "dist": {
  11026. "type": "zip",
  11027. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  11028. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  11029. "shasum": ""
  11030. },
  11031. "require": {
  11032. "php": ">=8.1"
  11033. },
  11034. "type": "library",
  11035. "extra": {
  11036. "thanks": {
  11037. "url": "https://github.com/symfony/contracts",
  11038. "name": "symfony/contracts"
  11039. },
  11040. "branch-alias": {
  11041. "dev-main": "3.5-dev"
  11042. }
  11043. },
  11044. "autoload": {
  11045. "files": [
  11046. "function.php"
  11047. ]
  11048. },
  11049. "notification-url": "https://packagist.org/downloads/",
  11050. "license": [
  11051. "MIT"
  11052. ],
  11053. "authors": [
  11054. {
  11055. "name": "Nicolas Grekas",
  11056. "email": "p@tchwork.com"
  11057. },
  11058. {
  11059. "name": "Symfony Community",
  11060. "homepage": "https://symfony.com/contributors"
  11061. }
  11062. ],
  11063. "description": "A generic function and convention to trigger deprecation notices",
  11064. "homepage": "https://symfony.com",
  11065. "support": {
  11066. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  11067. },
  11068. "funding": [
  11069. {
  11070. "url": "https://symfony.com/sponsor",
  11071. "type": "custom"
  11072. },
  11073. {
  11074. "url": "https://github.com/fabpot",
  11075. "type": "github"
  11076. },
  11077. {
  11078. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11079. "type": "tidelift"
  11080. }
  11081. ],
  11082. "time": "2024-09-25T14:20:29+00:00"
  11083. },
  11084. {
  11085. "name": "symfony/error-handler",
  11086. "version": "v6.4.23",
  11087. "source": {
  11088. "type": "git",
  11089. "url": "https://github.com/symfony/error-handler.git",
  11090. "reference": "b088e0b175c30b4e06d8085200fa465b586f44fa"
  11091. },
  11092. "dist": {
  11093. "type": "zip",
  11094. "url": "https://api.github.com/repos/symfony/error-handler/zipball/b088e0b175c30b4e06d8085200fa465b586f44fa",
  11095. "reference": "b088e0b175c30b4e06d8085200fa465b586f44fa",
  11096. "shasum": ""
  11097. },
  11098. "require": {
  11099. "php": ">=8.1",
  11100. "psr/log": "^1|^2|^3",
  11101. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  11102. },
  11103. "conflict": {
  11104. "symfony/deprecation-contracts": "<2.5",
  11105. "symfony/http-kernel": "<6.4"
  11106. },
  11107. "require-dev": {
  11108. "symfony/deprecation-contracts": "^2.5|^3",
  11109. "symfony/http-kernel": "^6.4|^7.0",
  11110. "symfony/serializer": "^5.4|^6.0|^7.0"
  11111. },
  11112. "bin": [
  11113. "Resources/bin/patch-type-declarations"
  11114. ],
  11115. "type": "library",
  11116. "autoload": {
  11117. "psr-4": {
  11118. "Symfony\\Component\\ErrorHandler\\": ""
  11119. },
  11120. "exclude-from-classmap": [
  11121. "/Tests/"
  11122. ]
  11123. },
  11124. "notification-url": "https://packagist.org/downloads/",
  11125. "license": [
  11126. "MIT"
  11127. ],
  11128. "authors": [
  11129. {
  11130. "name": "Fabien Potencier",
  11131. "email": "fabien@symfony.com"
  11132. },
  11133. {
  11134. "name": "Symfony Community",
  11135. "homepage": "https://symfony.com/contributors"
  11136. }
  11137. ],
  11138. "description": "Provides tools to manage errors and ease debugging PHP code",
  11139. "homepage": "https://symfony.com",
  11140. "support": {
  11141. "source": "https://github.com/symfony/error-handler/tree/v6.4.23"
  11142. },
  11143. "funding": [
  11144. {
  11145. "url": "https://symfony.com/sponsor",
  11146. "type": "custom"
  11147. },
  11148. {
  11149. "url": "https://github.com/fabpot",
  11150. "type": "github"
  11151. },
  11152. {
  11153. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11154. "type": "tidelift"
  11155. }
  11156. ],
  11157. "time": "2025-06-13T07:39:48+00:00"
  11158. },
  11159. {
  11160. "name": "symfony/event-dispatcher",
  11161. "version": "v6.4.13",
  11162. "source": {
  11163. "type": "git",
  11164. "url": "https://github.com/symfony/event-dispatcher.git",
  11165. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e"
  11166. },
  11167. "dist": {
  11168. "type": "zip",
  11169. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11170. "reference": "0ffc48080ab3e9132ea74ef4e09d8dcf26bf897e",
  11171. "shasum": ""
  11172. },
  11173. "require": {
  11174. "php": ">=8.1",
  11175. "symfony/event-dispatcher-contracts": "^2.5|^3"
  11176. },
  11177. "conflict": {
  11178. "symfony/dependency-injection": "<5.4",
  11179. "symfony/service-contracts": "<2.5"
  11180. },
  11181. "provide": {
  11182. "psr/event-dispatcher-implementation": "1.0",
  11183. "symfony/event-dispatcher-implementation": "2.0|3.0"
  11184. },
  11185. "require-dev": {
  11186. "psr/log": "^1|^2|^3",
  11187. "symfony/config": "^5.4|^6.0|^7.0",
  11188. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11189. "symfony/error-handler": "^5.4|^6.0|^7.0",
  11190. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11191. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  11192. "symfony/service-contracts": "^2.5|^3",
  11193. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  11194. },
  11195. "type": "library",
  11196. "autoload": {
  11197. "psr-4": {
  11198. "Symfony\\Component\\EventDispatcher\\": ""
  11199. },
  11200. "exclude-from-classmap": [
  11201. "/Tests/"
  11202. ]
  11203. },
  11204. "notification-url": "https://packagist.org/downloads/",
  11205. "license": [
  11206. "MIT"
  11207. ],
  11208. "authors": [
  11209. {
  11210. "name": "Fabien Potencier",
  11211. "email": "fabien@symfony.com"
  11212. },
  11213. {
  11214. "name": "Symfony Community",
  11215. "homepage": "https://symfony.com/contributors"
  11216. }
  11217. ],
  11218. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  11219. "homepage": "https://symfony.com",
  11220. "support": {
  11221. "source": "https://github.com/symfony/event-dispatcher/tree/v6.4.13"
  11222. },
  11223. "funding": [
  11224. {
  11225. "url": "https://symfony.com/sponsor",
  11226. "type": "custom"
  11227. },
  11228. {
  11229. "url": "https://github.com/fabpot",
  11230. "type": "github"
  11231. },
  11232. {
  11233. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11234. "type": "tidelift"
  11235. }
  11236. ],
  11237. "time": "2024-09-25T14:18:03+00:00"
  11238. },
  11239. {
  11240. "name": "symfony/event-dispatcher-contracts",
  11241. "version": "v3.5.1",
  11242. "source": {
  11243. "type": "git",
  11244. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  11245. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  11246. },
  11247. "dist": {
  11248. "type": "zip",
  11249. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11250. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  11251. "shasum": ""
  11252. },
  11253. "require": {
  11254. "php": ">=8.1",
  11255. "psr/event-dispatcher": "^1"
  11256. },
  11257. "type": "library",
  11258. "extra": {
  11259. "thanks": {
  11260. "url": "https://github.com/symfony/contracts",
  11261. "name": "symfony/contracts"
  11262. },
  11263. "branch-alias": {
  11264. "dev-main": "3.5-dev"
  11265. }
  11266. },
  11267. "autoload": {
  11268. "psr-4": {
  11269. "Symfony\\Contracts\\EventDispatcher\\": ""
  11270. }
  11271. },
  11272. "notification-url": "https://packagist.org/downloads/",
  11273. "license": [
  11274. "MIT"
  11275. ],
  11276. "authors": [
  11277. {
  11278. "name": "Nicolas Grekas",
  11279. "email": "p@tchwork.com"
  11280. },
  11281. {
  11282. "name": "Symfony Community",
  11283. "homepage": "https://symfony.com/contributors"
  11284. }
  11285. ],
  11286. "description": "Generic abstractions related to dispatching event",
  11287. "homepage": "https://symfony.com",
  11288. "keywords": [
  11289. "abstractions",
  11290. "contracts",
  11291. "decoupling",
  11292. "interfaces",
  11293. "interoperability",
  11294. "standards"
  11295. ],
  11296. "support": {
  11297. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  11298. },
  11299. "funding": [
  11300. {
  11301. "url": "https://symfony.com/sponsor",
  11302. "type": "custom"
  11303. },
  11304. {
  11305. "url": "https://github.com/fabpot",
  11306. "type": "github"
  11307. },
  11308. {
  11309. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11310. "type": "tidelift"
  11311. }
  11312. ],
  11313. "time": "2024-09-25T14:20:29+00:00"
  11314. },
  11315. {
  11316. "name": "symfony/filesystem",
  11317. "version": "v6.4.13",
  11318. "source": {
  11319. "type": "git",
  11320. "url": "https://github.com/symfony/filesystem.git",
  11321. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3"
  11322. },
  11323. "dist": {
  11324. "type": "zip",
  11325. "url": "https://api.github.com/repos/symfony/filesystem/zipball/4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11326. "reference": "4856c9cf585d5a0313d8d35afd681a526f038dd3",
  11327. "shasum": ""
  11328. },
  11329. "require": {
  11330. "php": ">=8.1",
  11331. "symfony/polyfill-ctype": "~1.8",
  11332. "symfony/polyfill-mbstring": "~1.8"
  11333. },
  11334. "require-dev": {
  11335. "symfony/process": "^5.4|^6.4|^7.0"
  11336. },
  11337. "type": "library",
  11338. "autoload": {
  11339. "psr-4": {
  11340. "Symfony\\Component\\Filesystem\\": ""
  11341. },
  11342. "exclude-from-classmap": [
  11343. "/Tests/"
  11344. ]
  11345. },
  11346. "notification-url": "https://packagist.org/downloads/",
  11347. "license": [
  11348. "MIT"
  11349. ],
  11350. "authors": [
  11351. {
  11352. "name": "Fabien Potencier",
  11353. "email": "fabien@symfony.com"
  11354. },
  11355. {
  11356. "name": "Symfony Community",
  11357. "homepage": "https://symfony.com/contributors"
  11358. }
  11359. ],
  11360. "description": "Provides basic utilities for the filesystem",
  11361. "homepage": "https://symfony.com",
  11362. "support": {
  11363. "source": "https://github.com/symfony/filesystem/tree/v6.4.13"
  11364. },
  11365. "funding": [
  11366. {
  11367. "url": "https://symfony.com/sponsor",
  11368. "type": "custom"
  11369. },
  11370. {
  11371. "url": "https://github.com/fabpot",
  11372. "type": "github"
  11373. },
  11374. {
  11375. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11376. "type": "tidelift"
  11377. }
  11378. ],
  11379. "time": "2024-10-25T15:07:50+00:00"
  11380. },
  11381. {
  11382. "name": "symfony/finder",
  11383. "version": "v6.4.17",
  11384. "source": {
  11385. "type": "git",
  11386. "url": "https://github.com/symfony/finder.git",
  11387. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7"
  11388. },
  11389. "dist": {
  11390. "type": "zip",
  11391. "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  11392. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  11393. "shasum": ""
  11394. },
  11395. "require": {
  11396. "php": ">=8.1"
  11397. },
  11398. "require-dev": {
  11399. "symfony/filesystem": "^6.0|^7.0"
  11400. },
  11401. "type": "library",
  11402. "autoload": {
  11403. "psr-4": {
  11404. "Symfony\\Component\\Finder\\": ""
  11405. },
  11406. "exclude-from-classmap": [
  11407. "/Tests/"
  11408. ]
  11409. },
  11410. "notification-url": "https://packagist.org/downloads/",
  11411. "license": [
  11412. "MIT"
  11413. ],
  11414. "authors": [
  11415. {
  11416. "name": "Fabien Potencier",
  11417. "email": "fabien@symfony.com"
  11418. },
  11419. {
  11420. "name": "Symfony Community",
  11421. "homepage": "https://symfony.com/contributors"
  11422. }
  11423. ],
  11424. "description": "Finds files and directories via an intuitive fluent interface",
  11425. "homepage": "https://symfony.com",
  11426. "support": {
  11427. "source": "https://github.com/symfony/finder/tree/v6.4.17"
  11428. },
  11429. "funding": [
  11430. {
  11431. "url": "https://symfony.com/sponsor",
  11432. "type": "custom"
  11433. },
  11434. {
  11435. "url": "https://github.com/fabpot",
  11436. "type": "github"
  11437. },
  11438. {
  11439. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11440. "type": "tidelift"
  11441. }
  11442. ],
  11443. "time": "2024-12-29T13:51:37+00:00"
  11444. },
  11445. {
  11446. "name": "symfony/http-foundation",
  11447. "version": "v6.4.23",
  11448. "source": {
  11449. "type": "git",
  11450. "url": "https://github.com/symfony/http-foundation.git",
  11451. "reference": "452d19f945ee41345fd8a50c18b60783546b7bd3"
  11452. },
  11453. "dist": {
  11454. "type": "zip",
  11455. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/452d19f945ee41345fd8a50c18b60783546b7bd3",
  11456. "reference": "452d19f945ee41345fd8a50c18b60783546b7bd3",
  11457. "shasum": ""
  11458. },
  11459. "require": {
  11460. "php": ">=8.1",
  11461. "symfony/deprecation-contracts": "^2.5|^3",
  11462. "symfony/polyfill-mbstring": "~1.1",
  11463. "symfony/polyfill-php83": "^1.27"
  11464. },
  11465. "conflict": {
  11466. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  11467. },
  11468. "require-dev": {
  11469. "doctrine/dbal": "^2.13.1|^3|^4",
  11470. "predis/predis": "^1.1|^2.0",
  11471. "symfony/cache": "^6.4.12|^7.1.5",
  11472. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11473. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11474. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  11475. "symfony/mime": "^5.4|^6.0|^7.0",
  11476. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  11477. },
  11478. "type": "library",
  11479. "autoload": {
  11480. "psr-4": {
  11481. "Symfony\\Component\\HttpFoundation\\": ""
  11482. },
  11483. "exclude-from-classmap": [
  11484. "/Tests/"
  11485. ]
  11486. },
  11487. "notification-url": "https://packagist.org/downloads/",
  11488. "license": [
  11489. "MIT"
  11490. ],
  11491. "authors": [
  11492. {
  11493. "name": "Fabien Potencier",
  11494. "email": "fabien@symfony.com"
  11495. },
  11496. {
  11497. "name": "Symfony Community",
  11498. "homepage": "https://symfony.com/contributors"
  11499. }
  11500. ],
  11501. "description": "Defines an object-oriented layer for the HTTP specification",
  11502. "homepage": "https://symfony.com",
  11503. "support": {
  11504. "source": "https://github.com/symfony/http-foundation/tree/v6.4.23"
  11505. },
  11506. "funding": [
  11507. {
  11508. "url": "https://symfony.com/sponsor",
  11509. "type": "custom"
  11510. },
  11511. {
  11512. "url": "https://github.com/fabpot",
  11513. "type": "github"
  11514. },
  11515. {
  11516. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11517. "type": "tidelift"
  11518. }
  11519. ],
  11520. "time": "2025-05-26T09:17:58+00:00"
  11521. },
  11522. {
  11523. "name": "symfony/http-kernel",
  11524. "version": "v6.4.23",
  11525. "source": {
  11526. "type": "git",
  11527. "url": "https://github.com/symfony/http-kernel.git",
  11528. "reference": "2bb2cba685aabd859f22cf6946554e8e7f3c329a"
  11529. },
  11530. "dist": {
  11531. "type": "zip",
  11532. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/2bb2cba685aabd859f22cf6946554e8e7f3c329a",
  11533. "reference": "2bb2cba685aabd859f22cf6946554e8e7f3c329a",
  11534. "shasum": ""
  11535. },
  11536. "require": {
  11537. "php": ">=8.1",
  11538. "psr/log": "^1|^2|^3",
  11539. "symfony/deprecation-contracts": "^2.5|^3",
  11540. "symfony/error-handler": "^6.4|^7.0",
  11541. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  11542. "symfony/http-foundation": "^6.4|^7.0",
  11543. "symfony/polyfill-ctype": "^1.8"
  11544. },
  11545. "conflict": {
  11546. "symfony/browser-kit": "<5.4",
  11547. "symfony/cache": "<5.4",
  11548. "symfony/config": "<6.1",
  11549. "symfony/console": "<5.4",
  11550. "symfony/dependency-injection": "<6.4",
  11551. "symfony/doctrine-bridge": "<5.4",
  11552. "symfony/form": "<5.4",
  11553. "symfony/http-client": "<5.4",
  11554. "symfony/http-client-contracts": "<2.5",
  11555. "symfony/mailer": "<5.4",
  11556. "symfony/messenger": "<5.4",
  11557. "symfony/translation": "<5.4",
  11558. "symfony/translation-contracts": "<2.5",
  11559. "symfony/twig-bridge": "<5.4",
  11560. "symfony/validator": "<6.4",
  11561. "symfony/var-dumper": "<6.3",
  11562. "twig/twig": "<2.13"
  11563. },
  11564. "provide": {
  11565. "psr/log-implementation": "1.0|2.0|3.0"
  11566. },
  11567. "require-dev": {
  11568. "psr/cache": "^1.0|^2.0|^3.0",
  11569. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  11570. "symfony/clock": "^6.2|^7.0",
  11571. "symfony/config": "^6.1|^7.0",
  11572. "symfony/console": "^5.4|^6.0|^7.0",
  11573. "symfony/css-selector": "^5.4|^6.0|^7.0",
  11574. "symfony/dependency-injection": "^6.4|^7.0",
  11575. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  11576. "symfony/expression-language": "^5.4|^6.0|^7.0",
  11577. "symfony/finder": "^5.4|^6.0|^7.0",
  11578. "symfony/http-client-contracts": "^2.5|^3",
  11579. "symfony/process": "^5.4|^6.0|^7.0",
  11580. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  11581. "symfony/routing": "^5.4|^6.0|^7.0",
  11582. "symfony/serializer": "^6.4.4|^7.0.4",
  11583. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  11584. "symfony/translation": "^5.4|^6.0|^7.0",
  11585. "symfony/translation-contracts": "^2.5|^3",
  11586. "symfony/uid": "^5.4|^6.0|^7.0",
  11587. "symfony/validator": "^6.4|^7.0",
  11588. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  11589. "symfony/var-exporter": "^6.2|^7.0",
  11590. "twig/twig": "^2.13|^3.0.4"
  11591. },
  11592. "type": "library",
  11593. "autoload": {
  11594. "psr-4": {
  11595. "Symfony\\Component\\HttpKernel\\": ""
  11596. },
  11597. "exclude-from-classmap": [
  11598. "/Tests/"
  11599. ]
  11600. },
  11601. "notification-url": "https://packagist.org/downloads/",
  11602. "license": [
  11603. "MIT"
  11604. ],
  11605. "authors": [
  11606. {
  11607. "name": "Fabien Potencier",
  11608. "email": "fabien@symfony.com"
  11609. },
  11610. {
  11611. "name": "Symfony Community",
  11612. "homepage": "https://symfony.com/contributors"
  11613. }
  11614. ],
  11615. "description": "Provides a structured process for converting a Request into a Response",
  11616. "homepage": "https://symfony.com",
  11617. "support": {
  11618. "source": "https://github.com/symfony/http-kernel/tree/v6.4.23"
  11619. },
  11620. "funding": [
  11621. {
  11622. "url": "https://symfony.com/sponsor",
  11623. "type": "custom"
  11624. },
  11625. {
  11626. "url": "https://github.com/fabpot",
  11627. "type": "github"
  11628. },
  11629. {
  11630. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11631. "type": "tidelift"
  11632. }
  11633. ],
  11634. "time": "2025-06-28T08:14:51+00:00"
  11635. },
  11636. {
  11637. "name": "symfony/mailer",
  11638. "version": "v6.4.23",
  11639. "source": {
  11640. "type": "git",
  11641. "url": "https://github.com/symfony/mailer.git",
  11642. "reference": "a480322ddf8e54de262c9bca31fdcbe26b553de5"
  11643. },
  11644. "dist": {
  11645. "type": "zip",
  11646. "url": "https://api.github.com/repos/symfony/mailer/zipball/a480322ddf8e54de262c9bca31fdcbe26b553de5",
  11647. "reference": "a480322ddf8e54de262c9bca31fdcbe26b553de5",
  11648. "shasum": ""
  11649. },
  11650. "require": {
  11651. "egulias/email-validator": "^2.1.10|^3|^4",
  11652. "php": ">=8.1",
  11653. "psr/event-dispatcher": "^1",
  11654. "psr/log": "^1|^2|^3",
  11655. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  11656. "symfony/mime": "^6.2|^7.0",
  11657. "symfony/service-contracts": "^2.5|^3"
  11658. },
  11659. "conflict": {
  11660. "symfony/http-client-contracts": "<2.5",
  11661. "symfony/http-kernel": "<5.4",
  11662. "symfony/messenger": "<6.2",
  11663. "symfony/mime": "<6.2",
  11664. "symfony/twig-bridge": "<6.2.1"
  11665. },
  11666. "require-dev": {
  11667. "symfony/console": "^5.4|^6.0|^7.0",
  11668. "symfony/http-client": "^5.4|^6.0|^7.0",
  11669. "symfony/messenger": "^6.2|^7.0",
  11670. "symfony/twig-bridge": "^6.2|^7.0"
  11671. },
  11672. "type": "library",
  11673. "autoload": {
  11674. "psr-4": {
  11675. "Symfony\\Component\\Mailer\\": ""
  11676. },
  11677. "exclude-from-classmap": [
  11678. "/Tests/"
  11679. ]
  11680. },
  11681. "notification-url": "https://packagist.org/downloads/",
  11682. "license": [
  11683. "MIT"
  11684. ],
  11685. "authors": [
  11686. {
  11687. "name": "Fabien Potencier",
  11688. "email": "fabien@symfony.com"
  11689. },
  11690. {
  11691. "name": "Symfony Community",
  11692. "homepage": "https://symfony.com/contributors"
  11693. }
  11694. ],
  11695. "description": "Helps sending emails",
  11696. "homepage": "https://symfony.com",
  11697. "support": {
  11698. "source": "https://github.com/symfony/mailer/tree/v6.4.23"
  11699. },
  11700. "funding": [
  11701. {
  11702. "url": "https://symfony.com/sponsor",
  11703. "type": "custom"
  11704. },
  11705. {
  11706. "url": "https://github.com/fabpot",
  11707. "type": "github"
  11708. },
  11709. {
  11710. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11711. "type": "tidelift"
  11712. }
  11713. ],
  11714. "time": "2025-06-26T21:24:02+00:00"
  11715. },
  11716. {
  11717. "name": "symfony/mime",
  11718. "version": "v6.4.21",
  11719. "source": {
  11720. "type": "git",
  11721. "url": "https://github.com/symfony/mime.git",
  11722. "reference": "fec8aa5231f3904754955fad33c2db50594d22d1"
  11723. },
  11724. "dist": {
  11725. "type": "zip",
  11726. "url": "https://api.github.com/repos/symfony/mime/zipball/fec8aa5231f3904754955fad33c2db50594d22d1",
  11727. "reference": "fec8aa5231f3904754955fad33c2db50594d22d1",
  11728. "shasum": ""
  11729. },
  11730. "require": {
  11731. "php": ">=8.1",
  11732. "symfony/deprecation-contracts": "^2.5|^3",
  11733. "symfony/polyfill-intl-idn": "^1.10",
  11734. "symfony/polyfill-mbstring": "^1.0"
  11735. },
  11736. "conflict": {
  11737. "egulias/email-validator": "~3.0.0",
  11738. "phpdocumentor/reflection-docblock": "<3.2.2",
  11739. "phpdocumentor/type-resolver": "<1.4.0",
  11740. "symfony/mailer": "<5.4",
  11741. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  11742. },
  11743. "require-dev": {
  11744. "egulias/email-validator": "^2.1.10|^3.1|^4",
  11745. "league/html-to-markdown": "^5.0",
  11746. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  11747. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  11748. "symfony/process": "^5.4|^6.4|^7.0",
  11749. "symfony/property-access": "^5.4|^6.0|^7.0",
  11750. "symfony/property-info": "^5.4|^6.0|^7.0",
  11751. "symfony/serializer": "^6.4.3|^7.0.3"
  11752. },
  11753. "type": "library",
  11754. "autoload": {
  11755. "psr-4": {
  11756. "Symfony\\Component\\Mime\\": ""
  11757. },
  11758. "exclude-from-classmap": [
  11759. "/Tests/"
  11760. ]
  11761. },
  11762. "notification-url": "https://packagist.org/downloads/",
  11763. "license": [
  11764. "MIT"
  11765. ],
  11766. "authors": [
  11767. {
  11768. "name": "Fabien Potencier",
  11769. "email": "fabien@symfony.com"
  11770. },
  11771. {
  11772. "name": "Symfony Community",
  11773. "homepage": "https://symfony.com/contributors"
  11774. }
  11775. ],
  11776. "description": "Allows manipulating MIME messages",
  11777. "homepage": "https://symfony.com",
  11778. "keywords": [
  11779. "mime",
  11780. "mime-type"
  11781. ],
  11782. "support": {
  11783. "source": "https://github.com/symfony/mime/tree/v6.4.21"
  11784. },
  11785. "funding": [
  11786. {
  11787. "url": "https://symfony.com/sponsor",
  11788. "type": "custom"
  11789. },
  11790. {
  11791. "url": "https://github.com/fabpot",
  11792. "type": "github"
  11793. },
  11794. {
  11795. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11796. "type": "tidelift"
  11797. }
  11798. ],
  11799. "time": "2025-04-27T13:27:38+00:00"
  11800. },
  11801. {
  11802. "name": "symfony/polyfill-ctype",
  11803. "version": "v1.31.0",
  11804. "source": {
  11805. "type": "git",
  11806. "url": "https://github.com/symfony/polyfill-ctype.git",
  11807. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  11808. },
  11809. "dist": {
  11810. "type": "zip",
  11811. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  11812. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  11813. "shasum": ""
  11814. },
  11815. "require": {
  11816. "php": ">=7.2"
  11817. },
  11818. "provide": {
  11819. "ext-ctype": "*"
  11820. },
  11821. "suggest": {
  11822. "ext-ctype": "For best performance"
  11823. },
  11824. "type": "library",
  11825. "extra": {
  11826. "thanks": {
  11827. "url": "https://github.com/symfony/polyfill",
  11828. "name": "symfony/polyfill"
  11829. }
  11830. },
  11831. "autoload": {
  11832. "files": [
  11833. "bootstrap.php"
  11834. ],
  11835. "psr-4": {
  11836. "Symfony\\Polyfill\\Ctype\\": ""
  11837. }
  11838. },
  11839. "notification-url": "https://packagist.org/downloads/",
  11840. "license": [
  11841. "MIT"
  11842. ],
  11843. "authors": [
  11844. {
  11845. "name": "Gert de Pagter",
  11846. "email": "BackEndTea@gmail.com"
  11847. },
  11848. {
  11849. "name": "Symfony Community",
  11850. "homepage": "https://symfony.com/contributors"
  11851. }
  11852. ],
  11853. "description": "Symfony polyfill for ctype functions",
  11854. "homepage": "https://symfony.com",
  11855. "keywords": [
  11856. "compatibility",
  11857. "ctype",
  11858. "polyfill",
  11859. "portable"
  11860. ],
  11861. "support": {
  11862. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  11863. },
  11864. "funding": [
  11865. {
  11866. "url": "https://symfony.com/sponsor",
  11867. "type": "custom"
  11868. },
  11869. {
  11870. "url": "https://github.com/fabpot",
  11871. "type": "github"
  11872. },
  11873. {
  11874. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11875. "type": "tidelift"
  11876. }
  11877. ],
  11878. "time": "2024-09-09T11:45:10+00:00"
  11879. },
  11880. {
  11881. "name": "symfony/polyfill-iconv",
  11882. "version": "v1.31.0",
  11883. "source": {
  11884. "type": "git",
  11885. "url": "https://github.com/symfony/polyfill-iconv.git",
  11886. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956"
  11887. },
  11888. "dist": {
  11889. "type": "zip",
  11890. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956",
  11891. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956",
  11892. "shasum": ""
  11893. },
  11894. "require": {
  11895. "php": ">=7.2"
  11896. },
  11897. "provide": {
  11898. "ext-iconv": "*"
  11899. },
  11900. "suggest": {
  11901. "ext-iconv": "For best performance"
  11902. },
  11903. "type": "library",
  11904. "extra": {
  11905. "thanks": {
  11906. "url": "https://github.com/symfony/polyfill",
  11907. "name": "symfony/polyfill"
  11908. }
  11909. },
  11910. "autoload": {
  11911. "files": [
  11912. "bootstrap.php"
  11913. ],
  11914. "psr-4": {
  11915. "Symfony\\Polyfill\\Iconv\\": ""
  11916. }
  11917. },
  11918. "notification-url": "https://packagist.org/downloads/",
  11919. "license": [
  11920. "MIT"
  11921. ],
  11922. "authors": [
  11923. {
  11924. "name": "Nicolas Grekas",
  11925. "email": "p@tchwork.com"
  11926. },
  11927. {
  11928. "name": "Symfony Community",
  11929. "homepage": "https://symfony.com/contributors"
  11930. }
  11931. ],
  11932. "description": "Symfony polyfill for the Iconv extension",
  11933. "homepage": "https://symfony.com",
  11934. "keywords": [
  11935. "compatibility",
  11936. "iconv",
  11937. "polyfill",
  11938. "portable",
  11939. "shim"
  11940. ],
  11941. "support": {
  11942. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0"
  11943. },
  11944. "funding": [
  11945. {
  11946. "url": "https://symfony.com/sponsor",
  11947. "type": "custom"
  11948. },
  11949. {
  11950. "url": "https://github.com/fabpot",
  11951. "type": "github"
  11952. },
  11953. {
  11954. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11955. "type": "tidelift"
  11956. }
  11957. ],
  11958. "time": "2024-09-09T11:45:10+00:00"
  11959. },
  11960. {
  11961. "name": "symfony/polyfill-intl-grapheme",
  11962. "version": "v1.31.0",
  11963. "source": {
  11964. "type": "git",
  11965. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  11966. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  11967. },
  11968. "dist": {
  11969. "type": "zip",
  11970. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  11971. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  11972. "shasum": ""
  11973. },
  11974. "require": {
  11975. "php": ">=7.2"
  11976. },
  11977. "suggest": {
  11978. "ext-intl": "For best performance"
  11979. },
  11980. "type": "library",
  11981. "extra": {
  11982. "thanks": {
  11983. "url": "https://github.com/symfony/polyfill",
  11984. "name": "symfony/polyfill"
  11985. }
  11986. },
  11987. "autoload": {
  11988. "files": [
  11989. "bootstrap.php"
  11990. ],
  11991. "psr-4": {
  11992. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  11993. }
  11994. },
  11995. "notification-url": "https://packagist.org/downloads/",
  11996. "license": [
  11997. "MIT"
  11998. ],
  11999. "authors": [
  12000. {
  12001. "name": "Nicolas Grekas",
  12002. "email": "p@tchwork.com"
  12003. },
  12004. {
  12005. "name": "Symfony Community",
  12006. "homepage": "https://symfony.com/contributors"
  12007. }
  12008. ],
  12009. "description": "Symfony polyfill for intl's grapheme_* functions",
  12010. "homepage": "https://symfony.com",
  12011. "keywords": [
  12012. "compatibility",
  12013. "grapheme",
  12014. "intl",
  12015. "polyfill",
  12016. "portable",
  12017. "shim"
  12018. ],
  12019. "support": {
  12020. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  12021. },
  12022. "funding": [
  12023. {
  12024. "url": "https://symfony.com/sponsor",
  12025. "type": "custom"
  12026. },
  12027. {
  12028. "url": "https://github.com/fabpot",
  12029. "type": "github"
  12030. },
  12031. {
  12032. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12033. "type": "tidelift"
  12034. }
  12035. ],
  12036. "time": "2024-09-09T11:45:10+00:00"
  12037. },
  12038. {
  12039. "name": "symfony/polyfill-intl-idn",
  12040. "version": "v1.31.0",
  12041. "source": {
  12042. "type": "git",
  12043. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  12044. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  12045. },
  12046. "dist": {
  12047. "type": "zip",
  12048. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  12049. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  12050. "shasum": ""
  12051. },
  12052. "require": {
  12053. "php": ">=7.2",
  12054. "symfony/polyfill-intl-normalizer": "^1.10"
  12055. },
  12056. "suggest": {
  12057. "ext-intl": "For best performance"
  12058. },
  12059. "type": "library",
  12060. "extra": {
  12061. "thanks": {
  12062. "url": "https://github.com/symfony/polyfill",
  12063. "name": "symfony/polyfill"
  12064. }
  12065. },
  12066. "autoload": {
  12067. "files": [
  12068. "bootstrap.php"
  12069. ],
  12070. "psr-4": {
  12071. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  12072. }
  12073. },
  12074. "notification-url": "https://packagist.org/downloads/",
  12075. "license": [
  12076. "MIT"
  12077. ],
  12078. "authors": [
  12079. {
  12080. "name": "Laurent Bassin",
  12081. "email": "laurent@bassin.info"
  12082. },
  12083. {
  12084. "name": "Trevor Rowbotham",
  12085. "email": "trevor.rowbotham@pm.me"
  12086. },
  12087. {
  12088. "name": "Symfony Community",
  12089. "homepage": "https://symfony.com/contributors"
  12090. }
  12091. ],
  12092. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  12093. "homepage": "https://symfony.com",
  12094. "keywords": [
  12095. "compatibility",
  12096. "idn",
  12097. "intl",
  12098. "polyfill",
  12099. "portable",
  12100. "shim"
  12101. ],
  12102. "support": {
  12103. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  12104. },
  12105. "funding": [
  12106. {
  12107. "url": "https://symfony.com/sponsor",
  12108. "type": "custom"
  12109. },
  12110. {
  12111. "url": "https://github.com/fabpot",
  12112. "type": "github"
  12113. },
  12114. {
  12115. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12116. "type": "tidelift"
  12117. }
  12118. ],
  12119. "time": "2024-09-09T11:45:10+00:00"
  12120. },
  12121. {
  12122. "name": "symfony/polyfill-intl-normalizer",
  12123. "version": "v1.31.0",
  12124. "source": {
  12125. "type": "git",
  12126. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  12127. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  12128. },
  12129. "dist": {
  12130. "type": "zip",
  12131. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  12132. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  12133. "shasum": ""
  12134. },
  12135. "require": {
  12136. "php": ">=7.2"
  12137. },
  12138. "suggest": {
  12139. "ext-intl": "For best performance"
  12140. },
  12141. "type": "library",
  12142. "extra": {
  12143. "thanks": {
  12144. "url": "https://github.com/symfony/polyfill",
  12145. "name": "symfony/polyfill"
  12146. }
  12147. },
  12148. "autoload": {
  12149. "files": [
  12150. "bootstrap.php"
  12151. ],
  12152. "psr-4": {
  12153. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  12154. },
  12155. "classmap": [
  12156. "Resources/stubs"
  12157. ]
  12158. },
  12159. "notification-url": "https://packagist.org/downloads/",
  12160. "license": [
  12161. "MIT"
  12162. ],
  12163. "authors": [
  12164. {
  12165. "name": "Nicolas Grekas",
  12166. "email": "p@tchwork.com"
  12167. },
  12168. {
  12169. "name": "Symfony Community",
  12170. "homepage": "https://symfony.com/contributors"
  12171. }
  12172. ],
  12173. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  12174. "homepage": "https://symfony.com",
  12175. "keywords": [
  12176. "compatibility",
  12177. "intl",
  12178. "normalizer",
  12179. "polyfill",
  12180. "portable",
  12181. "shim"
  12182. ],
  12183. "support": {
  12184. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  12185. },
  12186. "funding": [
  12187. {
  12188. "url": "https://symfony.com/sponsor",
  12189. "type": "custom"
  12190. },
  12191. {
  12192. "url": "https://github.com/fabpot",
  12193. "type": "github"
  12194. },
  12195. {
  12196. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12197. "type": "tidelift"
  12198. }
  12199. ],
  12200. "time": "2024-09-09T11:45:10+00:00"
  12201. },
  12202. {
  12203. "name": "symfony/polyfill-mbstring",
  12204. "version": "v1.31.0",
  12205. "source": {
  12206. "type": "git",
  12207. "url": "https://github.com/symfony/polyfill-mbstring.git",
  12208. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  12209. },
  12210. "dist": {
  12211. "type": "zip",
  12212. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  12213. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  12214. "shasum": ""
  12215. },
  12216. "require": {
  12217. "php": ">=7.2"
  12218. },
  12219. "provide": {
  12220. "ext-mbstring": "*"
  12221. },
  12222. "suggest": {
  12223. "ext-mbstring": "For best performance"
  12224. },
  12225. "type": "library",
  12226. "extra": {
  12227. "thanks": {
  12228. "url": "https://github.com/symfony/polyfill",
  12229. "name": "symfony/polyfill"
  12230. }
  12231. },
  12232. "autoload": {
  12233. "files": [
  12234. "bootstrap.php"
  12235. ],
  12236. "psr-4": {
  12237. "Symfony\\Polyfill\\Mbstring\\": ""
  12238. }
  12239. },
  12240. "notification-url": "https://packagist.org/downloads/",
  12241. "license": [
  12242. "MIT"
  12243. ],
  12244. "authors": [
  12245. {
  12246. "name": "Nicolas Grekas",
  12247. "email": "p@tchwork.com"
  12248. },
  12249. {
  12250. "name": "Symfony Community",
  12251. "homepage": "https://symfony.com/contributors"
  12252. }
  12253. ],
  12254. "description": "Symfony polyfill for the Mbstring extension",
  12255. "homepage": "https://symfony.com",
  12256. "keywords": [
  12257. "compatibility",
  12258. "mbstring",
  12259. "polyfill",
  12260. "portable",
  12261. "shim"
  12262. ],
  12263. "support": {
  12264. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  12265. },
  12266. "funding": [
  12267. {
  12268. "url": "https://symfony.com/sponsor",
  12269. "type": "custom"
  12270. },
  12271. {
  12272. "url": "https://github.com/fabpot",
  12273. "type": "github"
  12274. },
  12275. {
  12276. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12277. "type": "tidelift"
  12278. }
  12279. ],
  12280. "time": "2024-09-09T11:45:10+00:00"
  12281. },
  12282. {
  12283. "name": "symfony/polyfill-php81",
  12284. "version": "v1.32.0",
  12285. "source": {
  12286. "type": "git",
  12287. "url": "https://github.com/symfony/polyfill-php81.git",
  12288. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  12289. },
  12290. "dist": {
  12291. "type": "zip",
  12292. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12293. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  12294. "shasum": ""
  12295. },
  12296. "require": {
  12297. "php": ">=7.2"
  12298. },
  12299. "type": "library",
  12300. "extra": {
  12301. "thanks": {
  12302. "url": "https://github.com/symfony/polyfill",
  12303. "name": "symfony/polyfill"
  12304. }
  12305. },
  12306. "autoload": {
  12307. "files": [
  12308. "bootstrap.php"
  12309. ],
  12310. "psr-4": {
  12311. "Symfony\\Polyfill\\Php81\\": ""
  12312. },
  12313. "classmap": [
  12314. "Resources/stubs"
  12315. ]
  12316. },
  12317. "notification-url": "https://packagist.org/downloads/",
  12318. "license": [
  12319. "MIT"
  12320. ],
  12321. "authors": [
  12322. {
  12323. "name": "Nicolas Grekas",
  12324. "email": "p@tchwork.com"
  12325. },
  12326. {
  12327. "name": "Symfony Community",
  12328. "homepage": "https://symfony.com/contributors"
  12329. }
  12330. ],
  12331. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  12332. "homepage": "https://symfony.com",
  12333. "keywords": [
  12334. "compatibility",
  12335. "polyfill",
  12336. "portable",
  12337. "shim"
  12338. ],
  12339. "support": {
  12340. "source": "https://github.com/symfony/polyfill-php81/tree/v1.32.0"
  12341. },
  12342. "funding": [
  12343. {
  12344. "url": "https://symfony.com/sponsor",
  12345. "type": "custom"
  12346. },
  12347. {
  12348. "url": "https://github.com/fabpot",
  12349. "type": "github"
  12350. },
  12351. {
  12352. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12353. "type": "tidelift"
  12354. }
  12355. ],
  12356. "time": "2024-09-09T11:45:10+00:00"
  12357. },
  12358. {
  12359. "name": "symfony/polyfill-php83",
  12360. "version": "v1.31.0",
  12361. "source": {
  12362. "type": "git",
  12363. "url": "https://github.com/symfony/polyfill-php83.git",
  12364. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  12365. },
  12366. "dist": {
  12367. "type": "zip",
  12368. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  12369. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  12370. "shasum": ""
  12371. },
  12372. "require": {
  12373. "php": ">=7.2"
  12374. },
  12375. "type": "library",
  12376. "extra": {
  12377. "thanks": {
  12378. "url": "https://github.com/symfony/polyfill",
  12379. "name": "symfony/polyfill"
  12380. }
  12381. },
  12382. "autoload": {
  12383. "files": [
  12384. "bootstrap.php"
  12385. ],
  12386. "psr-4": {
  12387. "Symfony\\Polyfill\\Php83\\": ""
  12388. },
  12389. "classmap": [
  12390. "Resources/stubs"
  12391. ]
  12392. },
  12393. "notification-url": "https://packagist.org/downloads/",
  12394. "license": [
  12395. "MIT"
  12396. ],
  12397. "authors": [
  12398. {
  12399. "name": "Nicolas Grekas",
  12400. "email": "p@tchwork.com"
  12401. },
  12402. {
  12403. "name": "Symfony Community",
  12404. "homepage": "https://symfony.com/contributors"
  12405. }
  12406. ],
  12407. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  12408. "homepage": "https://symfony.com",
  12409. "keywords": [
  12410. "compatibility",
  12411. "polyfill",
  12412. "portable",
  12413. "shim"
  12414. ],
  12415. "support": {
  12416. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  12417. },
  12418. "funding": [
  12419. {
  12420. "url": "https://symfony.com/sponsor",
  12421. "type": "custom"
  12422. },
  12423. {
  12424. "url": "https://github.com/fabpot",
  12425. "type": "github"
  12426. },
  12427. {
  12428. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12429. "type": "tidelift"
  12430. }
  12431. ],
  12432. "time": "2024-09-09T11:45:10+00:00"
  12433. },
  12434. {
  12435. "name": "symfony/polyfill-php84",
  12436. "version": "v1.32.0",
  12437. "source": {
  12438. "type": "git",
  12439. "url": "https://github.com/symfony/polyfill-php84.git",
  12440. "reference": "000df7860439609837bbe28670b0be15783b7fbf"
  12441. },
  12442. "dist": {
  12443. "type": "zip",
  12444. "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/000df7860439609837bbe28670b0be15783b7fbf",
  12445. "reference": "000df7860439609837bbe28670b0be15783b7fbf",
  12446. "shasum": ""
  12447. },
  12448. "require": {
  12449. "php": ">=7.2"
  12450. },
  12451. "type": "library",
  12452. "extra": {
  12453. "thanks": {
  12454. "url": "https://github.com/symfony/polyfill",
  12455. "name": "symfony/polyfill"
  12456. }
  12457. },
  12458. "autoload": {
  12459. "files": [
  12460. "bootstrap.php"
  12461. ],
  12462. "psr-4": {
  12463. "Symfony\\Polyfill\\Php84\\": ""
  12464. },
  12465. "classmap": [
  12466. "Resources/stubs"
  12467. ]
  12468. },
  12469. "notification-url": "https://packagist.org/downloads/",
  12470. "license": [
  12471. "MIT"
  12472. ],
  12473. "authors": [
  12474. {
  12475. "name": "Nicolas Grekas",
  12476. "email": "p@tchwork.com"
  12477. },
  12478. {
  12479. "name": "Symfony Community",
  12480. "homepage": "https://symfony.com/contributors"
  12481. }
  12482. ],
  12483. "description": "Symfony polyfill backporting some PHP 8.4+ features to lower PHP versions",
  12484. "homepage": "https://symfony.com",
  12485. "keywords": [
  12486. "compatibility",
  12487. "polyfill",
  12488. "portable",
  12489. "shim"
  12490. ],
  12491. "support": {
  12492. "source": "https://github.com/symfony/polyfill-php84/tree/v1.32.0"
  12493. },
  12494. "funding": [
  12495. {
  12496. "url": "https://symfony.com/sponsor",
  12497. "type": "custom"
  12498. },
  12499. {
  12500. "url": "https://github.com/fabpot",
  12501. "type": "github"
  12502. },
  12503. {
  12504. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12505. "type": "tidelift"
  12506. }
  12507. ],
  12508. "time": "2025-02-20T12:04:08+00:00"
  12509. },
  12510. {
  12511. "name": "symfony/process",
  12512. "version": "v6.4.20",
  12513. "source": {
  12514. "type": "git",
  12515. "url": "https://github.com/symfony/process.git",
  12516. "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20"
  12517. },
  12518. "dist": {
  12519. "type": "zip",
  12520. "url": "https://api.github.com/repos/symfony/process/zipball/e2a61c16af36c9a07e5c9906498b73e091949a20",
  12521. "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20",
  12522. "shasum": ""
  12523. },
  12524. "require": {
  12525. "php": ">=8.1"
  12526. },
  12527. "type": "library",
  12528. "autoload": {
  12529. "psr-4": {
  12530. "Symfony\\Component\\Process\\": ""
  12531. },
  12532. "exclude-from-classmap": [
  12533. "/Tests/"
  12534. ]
  12535. },
  12536. "notification-url": "https://packagist.org/downloads/",
  12537. "license": [
  12538. "MIT"
  12539. ],
  12540. "authors": [
  12541. {
  12542. "name": "Fabien Potencier",
  12543. "email": "fabien@symfony.com"
  12544. },
  12545. {
  12546. "name": "Symfony Community",
  12547. "homepage": "https://symfony.com/contributors"
  12548. }
  12549. ],
  12550. "description": "Executes commands in sub-processes",
  12551. "homepage": "https://symfony.com",
  12552. "support": {
  12553. "source": "https://github.com/symfony/process/tree/v6.4.20"
  12554. },
  12555. "funding": [
  12556. {
  12557. "url": "https://symfony.com/sponsor",
  12558. "type": "custom"
  12559. },
  12560. {
  12561. "url": "https://github.com/fabpot",
  12562. "type": "github"
  12563. },
  12564. {
  12565. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12566. "type": "tidelift"
  12567. }
  12568. ],
  12569. "time": "2025-03-10T17:11:00+00:00"
  12570. },
  12571. {
  12572. "name": "symfony/psr-http-message-bridge",
  12573. "version": "v6.4.13",
  12574. "source": {
  12575. "type": "git",
  12576. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  12577. "reference": "c9cf83326a1074f83a738fc5320945abf7fb7fec"
  12578. },
  12579. "dist": {
  12580. "type": "zip",
  12581. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/c9cf83326a1074f83a738fc5320945abf7fb7fec",
  12582. "reference": "c9cf83326a1074f83a738fc5320945abf7fb7fec",
  12583. "shasum": ""
  12584. },
  12585. "require": {
  12586. "php": ">=8.1",
  12587. "psr/http-message": "^1.0|^2.0",
  12588. "symfony/http-foundation": "^5.4|^6.0|^7.0"
  12589. },
  12590. "conflict": {
  12591. "php-http/discovery": "<1.15",
  12592. "symfony/http-kernel": "<6.2"
  12593. },
  12594. "require-dev": {
  12595. "nyholm/psr7": "^1.1",
  12596. "php-http/discovery": "^1.15",
  12597. "psr/log": "^1.1.4|^2|^3",
  12598. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  12599. "symfony/config": "^5.4|^6.0|^7.0",
  12600. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  12601. "symfony/framework-bundle": "^6.2|^7.0",
  12602. "symfony/http-kernel": "^6.2|^7.0"
  12603. },
  12604. "type": "symfony-bridge",
  12605. "autoload": {
  12606. "psr-4": {
  12607. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  12608. },
  12609. "exclude-from-classmap": [
  12610. "/Tests/"
  12611. ]
  12612. },
  12613. "notification-url": "https://packagist.org/downloads/",
  12614. "license": [
  12615. "MIT"
  12616. ],
  12617. "authors": [
  12618. {
  12619. "name": "Fabien Potencier",
  12620. "email": "fabien@symfony.com"
  12621. },
  12622. {
  12623. "name": "Symfony Community",
  12624. "homepage": "https://symfony.com/contributors"
  12625. }
  12626. ],
  12627. "description": "PSR HTTP message bridge",
  12628. "homepage": "https://symfony.com",
  12629. "keywords": [
  12630. "http",
  12631. "http-message",
  12632. "psr-17",
  12633. "psr-7"
  12634. ],
  12635. "support": {
  12636. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v6.4.13"
  12637. },
  12638. "funding": [
  12639. {
  12640. "url": "https://symfony.com/sponsor",
  12641. "type": "custom"
  12642. },
  12643. {
  12644. "url": "https://github.com/fabpot",
  12645. "type": "github"
  12646. },
  12647. {
  12648. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12649. "type": "tidelift"
  12650. }
  12651. ],
  12652. "time": "2024-09-25T14:18:03+00:00"
  12653. },
  12654. {
  12655. "name": "symfony/routing",
  12656. "version": "v6.4.22",
  12657. "source": {
  12658. "type": "git",
  12659. "url": "https://github.com/symfony/routing.git",
  12660. "reference": "1f5234e8457164a3a0038a4c0a4ba27876a9c670"
  12661. },
  12662. "dist": {
  12663. "type": "zip",
  12664. "url": "https://api.github.com/repos/symfony/routing/zipball/1f5234e8457164a3a0038a4c0a4ba27876a9c670",
  12665. "reference": "1f5234e8457164a3a0038a4c0a4ba27876a9c670",
  12666. "shasum": ""
  12667. },
  12668. "require": {
  12669. "php": ">=8.1",
  12670. "symfony/deprecation-contracts": "^2.5|^3"
  12671. },
  12672. "conflict": {
  12673. "doctrine/annotations": "<1.12",
  12674. "symfony/config": "<6.2",
  12675. "symfony/dependency-injection": "<5.4",
  12676. "symfony/yaml": "<5.4"
  12677. },
  12678. "require-dev": {
  12679. "doctrine/annotations": "^1.12|^2",
  12680. "psr/log": "^1|^2|^3",
  12681. "symfony/config": "^6.2|^7.0",
  12682. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12683. "symfony/expression-language": "^5.4|^6.0|^7.0",
  12684. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  12685. "symfony/yaml": "^5.4|^6.0|^7.0"
  12686. },
  12687. "type": "library",
  12688. "autoload": {
  12689. "psr-4": {
  12690. "Symfony\\Component\\Routing\\": ""
  12691. },
  12692. "exclude-from-classmap": [
  12693. "/Tests/"
  12694. ]
  12695. },
  12696. "notification-url": "https://packagist.org/downloads/",
  12697. "license": [
  12698. "MIT"
  12699. ],
  12700. "authors": [
  12701. {
  12702. "name": "Fabien Potencier",
  12703. "email": "fabien@symfony.com"
  12704. },
  12705. {
  12706. "name": "Symfony Community",
  12707. "homepage": "https://symfony.com/contributors"
  12708. }
  12709. ],
  12710. "description": "Maps an HTTP request to a set of configuration variables",
  12711. "homepage": "https://symfony.com",
  12712. "keywords": [
  12713. "router",
  12714. "routing",
  12715. "uri",
  12716. "url"
  12717. ],
  12718. "support": {
  12719. "source": "https://github.com/symfony/routing/tree/v6.4.22"
  12720. },
  12721. "funding": [
  12722. {
  12723. "url": "https://symfony.com/sponsor",
  12724. "type": "custom"
  12725. },
  12726. {
  12727. "url": "https://github.com/fabpot",
  12728. "type": "github"
  12729. },
  12730. {
  12731. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12732. "type": "tidelift"
  12733. }
  12734. ],
  12735. "time": "2025-04-27T16:08:38+00:00"
  12736. },
  12737. {
  12738. "name": "symfony/serializer",
  12739. "version": "v6.4.23",
  12740. "source": {
  12741. "type": "git",
  12742. "url": "https://github.com/symfony/serializer.git",
  12743. "reference": "b40a697a2bb2c3d841a1f9e34a8a9f50bf9d1d06"
  12744. },
  12745. "dist": {
  12746. "type": "zip",
  12747. "url": "https://api.github.com/repos/symfony/serializer/zipball/b40a697a2bb2c3d841a1f9e34a8a9f50bf9d1d06",
  12748. "reference": "b40a697a2bb2c3d841a1f9e34a8a9f50bf9d1d06",
  12749. "shasum": ""
  12750. },
  12751. "require": {
  12752. "php": ">=8.1",
  12753. "symfony/deprecation-contracts": "^2.5|^3",
  12754. "symfony/polyfill-ctype": "~1.8"
  12755. },
  12756. "conflict": {
  12757. "doctrine/annotations": "<1.12",
  12758. "phpdocumentor/reflection-docblock": "<3.2.2",
  12759. "phpdocumentor/type-resolver": "<1.4.0",
  12760. "symfony/dependency-injection": "<5.4",
  12761. "symfony/property-access": "<5.4",
  12762. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  12763. "symfony/uid": "<5.4",
  12764. "symfony/validator": "<6.4",
  12765. "symfony/yaml": "<5.4"
  12766. },
  12767. "require-dev": {
  12768. "doctrine/annotations": "^1.12|^2",
  12769. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  12770. "seld/jsonlint": "^1.10",
  12771. "symfony/cache": "^5.4|^6.0|^7.0",
  12772. "symfony/config": "^5.4|^6.0|^7.0",
  12773. "symfony/console": "^5.4|^6.0|^7.0",
  12774. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  12775. "symfony/error-handler": "^5.4|^6.0|^7.0",
  12776. "symfony/filesystem": "^5.4|^6.0|^7.0",
  12777. "symfony/form": "^5.4|^6.0|^7.0",
  12778. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  12779. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  12780. "symfony/messenger": "^5.4|^6.0|^7.0",
  12781. "symfony/mime": "^5.4|^6.0|^7.0",
  12782. "symfony/property-access": "^5.4.26|^6.3|^7.0",
  12783. "symfony/property-info": "^5.4.24|^6.2.11|^7.0",
  12784. "symfony/translation-contracts": "^2.5|^3",
  12785. "symfony/uid": "^5.4|^6.0|^7.0",
  12786. "symfony/validator": "^6.4|^7.0",
  12787. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  12788. "symfony/var-exporter": "^5.4|^6.0|^7.0",
  12789. "symfony/yaml": "^5.4|^6.0|^7.0"
  12790. },
  12791. "type": "library",
  12792. "autoload": {
  12793. "psr-4": {
  12794. "Symfony\\Component\\Serializer\\": ""
  12795. },
  12796. "exclude-from-classmap": [
  12797. "/Tests/"
  12798. ]
  12799. },
  12800. "notification-url": "https://packagist.org/downloads/",
  12801. "license": [
  12802. "MIT"
  12803. ],
  12804. "authors": [
  12805. {
  12806. "name": "Fabien Potencier",
  12807. "email": "fabien@symfony.com"
  12808. },
  12809. {
  12810. "name": "Symfony Community",
  12811. "homepage": "https://symfony.com/contributors"
  12812. }
  12813. ],
  12814. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  12815. "homepage": "https://symfony.com",
  12816. "support": {
  12817. "source": "https://github.com/symfony/serializer/tree/v6.4.23"
  12818. },
  12819. "funding": [
  12820. {
  12821. "url": "https://symfony.com/sponsor",
  12822. "type": "custom"
  12823. },
  12824. {
  12825. "url": "https://github.com/fabpot",
  12826. "type": "github"
  12827. },
  12828. {
  12829. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12830. "type": "tidelift"
  12831. }
  12832. ],
  12833. "time": "2025-06-27T15:34:20+00:00"
  12834. },
  12835. {
  12836. "name": "symfony/service-contracts",
  12837. "version": "v3.5.1",
  12838. "source": {
  12839. "type": "git",
  12840. "url": "https://github.com/symfony/service-contracts.git",
  12841. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  12842. },
  12843. "dist": {
  12844. "type": "zip",
  12845. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  12846. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  12847. "shasum": ""
  12848. },
  12849. "require": {
  12850. "php": ">=8.1",
  12851. "psr/container": "^1.1|^2.0",
  12852. "symfony/deprecation-contracts": "^2.5|^3"
  12853. },
  12854. "conflict": {
  12855. "ext-psr": "<1.1|>=2"
  12856. },
  12857. "type": "library",
  12858. "extra": {
  12859. "thanks": {
  12860. "url": "https://github.com/symfony/contracts",
  12861. "name": "symfony/contracts"
  12862. },
  12863. "branch-alias": {
  12864. "dev-main": "3.5-dev"
  12865. }
  12866. },
  12867. "autoload": {
  12868. "psr-4": {
  12869. "Symfony\\Contracts\\Service\\": ""
  12870. },
  12871. "exclude-from-classmap": [
  12872. "/Test/"
  12873. ]
  12874. },
  12875. "notification-url": "https://packagist.org/downloads/",
  12876. "license": [
  12877. "MIT"
  12878. ],
  12879. "authors": [
  12880. {
  12881. "name": "Nicolas Grekas",
  12882. "email": "p@tchwork.com"
  12883. },
  12884. {
  12885. "name": "Symfony Community",
  12886. "homepage": "https://symfony.com/contributors"
  12887. }
  12888. ],
  12889. "description": "Generic abstractions related to writing services",
  12890. "homepage": "https://symfony.com",
  12891. "keywords": [
  12892. "abstractions",
  12893. "contracts",
  12894. "decoupling",
  12895. "interfaces",
  12896. "interoperability",
  12897. "standards"
  12898. ],
  12899. "support": {
  12900. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  12901. },
  12902. "funding": [
  12903. {
  12904. "url": "https://symfony.com/sponsor",
  12905. "type": "custom"
  12906. },
  12907. {
  12908. "url": "https://github.com/fabpot",
  12909. "type": "github"
  12910. },
  12911. {
  12912. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12913. "type": "tidelift"
  12914. }
  12915. ],
  12916. "time": "2024-09-25T14:20:29+00:00"
  12917. },
  12918. {
  12919. "name": "symfony/string",
  12920. "version": "v6.4.21",
  12921. "source": {
  12922. "type": "git",
  12923. "url": "https://github.com/symfony/string.git",
  12924. "reference": "73e2c6966a5aef1d4892873ed5322245295370c6"
  12925. },
  12926. "dist": {
  12927. "type": "zip",
  12928. "url": "https://api.github.com/repos/symfony/string/zipball/73e2c6966a5aef1d4892873ed5322245295370c6",
  12929. "reference": "73e2c6966a5aef1d4892873ed5322245295370c6",
  12930. "shasum": ""
  12931. },
  12932. "require": {
  12933. "php": ">=8.1",
  12934. "symfony/polyfill-ctype": "~1.8",
  12935. "symfony/polyfill-intl-grapheme": "~1.0",
  12936. "symfony/polyfill-intl-normalizer": "~1.0",
  12937. "symfony/polyfill-mbstring": "~1.0"
  12938. },
  12939. "conflict": {
  12940. "symfony/translation-contracts": "<2.5"
  12941. },
  12942. "require-dev": {
  12943. "symfony/error-handler": "^5.4|^6.0|^7.0",
  12944. "symfony/http-client": "^5.4|^6.0|^7.0",
  12945. "symfony/intl": "^6.2|^7.0",
  12946. "symfony/translation-contracts": "^2.5|^3.0",
  12947. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  12948. },
  12949. "type": "library",
  12950. "autoload": {
  12951. "files": [
  12952. "Resources/functions.php"
  12953. ],
  12954. "psr-4": {
  12955. "Symfony\\Component\\String\\": ""
  12956. },
  12957. "exclude-from-classmap": [
  12958. "/Tests/"
  12959. ]
  12960. },
  12961. "notification-url": "https://packagist.org/downloads/",
  12962. "license": [
  12963. "MIT"
  12964. ],
  12965. "authors": [
  12966. {
  12967. "name": "Nicolas Grekas",
  12968. "email": "p@tchwork.com"
  12969. },
  12970. {
  12971. "name": "Symfony Community",
  12972. "homepage": "https://symfony.com/contributors"
  12973. }
  12974. ],
  12975. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  12976. "homepage": "https://symfony.com",
  12977. "keywords": [
  12978. "grapheme",
  12979. "i18n",
  12980. "string",
  12981. "unicode",
  12982. "utf-8",
  12983. "utf8"
  12984. ],
  12985. "support": {
  12986. "source": "https://github.com/symfony/string/tree/v6.4.21"
  12987. },
  12988. "funding": [
  12989. {
  12990. "url": "https://symfony.com/sponsor",
  12991. "type": "custom"
  12992. },
  12993. {
  12994. "url": "https://github.com/fabpot",
  12995. "type": "github"
  12996. },
  12997. {
  12998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12999. "type": "tidelift"
  13000. }
  13001. ],
  13002. "time": "2025-04-18T15:23:29+00:00"
  13003. },
  13004. {
  13005. "name": "symfony/translation-contracts",
  13006. "version": "v3.5.1",
  13007. "source": {
  13008. "type": "git",
  13009. "url": "https://github.com/symfony/translation-contracts.git",
  13010. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  13011. },
  13012. "dist": {
  13013. "type": "zip",
  13014. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  13015. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  13016. "shasum": ""
  13017. },
  13018. "require": {
  13019. "php": ">=8.1"
  13020. },
  13021. "type": "library",
  13022. "extra": {
  13023. "thanks": {
  13024. "url": "https://github.com/symfony/contracts",
  13025. "name": "symfony/contracts"
  13026. },
  13027. "branch-alias": {
  13028. "dev-main": "3.5-dev"
  13029. }
  13030. },
  13031. "autoload": {
  13032. "psr-4": {
  13033. "Symfony\\Contracts\\Translation\\": ""
  13034. },
  13035. "exclude-from-classmap": [
  13036. "/Test/"
  13037. ]
  13038. },
  13039. "notification-url": "https://packagist.org/downloads/",
  13040. "license": [
  13041. "MIT"
  13042. ],
  13043. "authors": [
  13044. {
  13045. "name": "Nicolas Grekas",
  13046. "email": "p@tchwork.com"
  13047. },
  13048. {
  13049. "name": "Symfony Community",
  13050. "homepage": "https://symfony.com/contributors"
  13051. }
  13052. ],
  13053. "description": "Generic abstractions related to translation",
  13054. "homepage": "https://symfony.com",
  13055. "keywords": [
  13056. "abstractions",
  13057. "contracts",
  13058. "decoupling",
  13059. "interfaces",
  13060. "interoperability",
  13061. "standards"
  13062. ],
  13063. "support": {
  13064. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  13065. },
  13066. "funding": [
  13067. {
  13068. "url": "https://symfony.com/sponsor",
  13069. "type": "custom"
  13070. },
  13071. {
  13072. "url": "https://github.com/fabpot",
  13073. "type": "github"
  13074. },
  13075. {
  13076. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13077. "type": "tidelift"
  13078. }
  13079. ],
  13080. "time": "2024-09-25T14:20:29+00:00"
  13081. },
  13082. {
  13083. "name": "symfony/validator",
  13084. "version": "v6.4.23",
  13085. "source": {
  13086. "type": "git",
  13087. "url": "https://github.com/symfony/validator.git",
  13088. "reference": "6506760ab57e7cda5bde9cdaed736526162284bc"
  13089. },
  13090. "dist": {
  13091. "type": "zip",
  13092. "url": "https://api.github.com/repos/symfony/validator/zipball/6506760ab57e7cda5bde9cdaed736526162284bc",
  13093. "reference": "6506760ab57e7cda5bde9cdaed736526162284bc",
  13094. "shasum": ""
  13095. },
  13096. "require": {
  13097. "php": ">=8.1",
  13098. "symfony/deprecation-contracts": "^2.5|^3",
  13099. "symfony/polyfill-ctype": "~1.8",
  13100. "symfony/polyfill-mbstring": "~1.0",
  13101. "symfony/polyfill-php83": "^1.27",
  13102. "symfony/translation-contracts": "^2.5|^3"
  13103. },
  13104. "conflict": {
  13105. "doctrine/annotations": "<1.13",
  13106. "doctrine/lexer": "<1.1",
  13107. "symfony/dependency-injection": "<5.4",
  13108. "symfony/expression-language": "<5.4",
  13109. "symfony/http-kernel": "<5.4",
  13110. "symfony/intl": "<5.4",
  13111. "symfony/property-info": "<5.4",
  13112. "symfony/translation": "<5.4.35|>=6.0,<6.3.12|>=6.4,<6.4.3|>=7.0,<7.0.3",
  13113. "symfony/yaml": "<5.4"
  13114. },
  13115. "require-dev": {
  13116. "doctrine/annotations": "^1.13|^2",
  13117. "egulias/email-validator": "^2.1.10|^3|^4",
  13118. "symfony/cache": "^5.4|^6.0|^7.0",
  13119. "symfony/config": "^5.4|^6.0|^7.0",
  13120. "symfony/console": "^5.4|^6.0|^7.0",
  13121. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  13122. "symfony/expression-language": "^5.4|^6.0|^7.0",
  13123. "symfony/finder": "^5.4|^6.0|^7.0",
  13124. "symfony/http-client": "^5.4|^6.0|^7.0",
  13125. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  13126. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  13127. "symfony/intl": "^5.4|^6.0|^7.0",
  13128. "symfony/mime": "^5.4|^6.0|^7.0",
  13129. "symfony/property-access": "^5.4|^6.0|^7.0",
  13130. "symfony/property-info": "^5.4|^6.0|^7.0",
  13131. "symfony/translation": "^5.4.35|~6.3.12|^6.4.3|^7.0.3",
  13132. "symfony/yaml": "^5.4|^6.0|^7.0"
  13133. },
  13134. "type": "library",
  13135. "autoload": {
  13136. "psr-4": {
  13137. "Symfony\\Component\\Validator\\": ""
  13138. },
  13139. "exclude-from-classmap": [
  13140. "/Tests/",
  13141. "/Resources/bin/"
  13142. ]
  13143. },
  13144. "notification-url": "https://packagist.org/downloads/",
  13145. "license": [
  13146. "MIT"
  13147. ],
  13148. "authors": [
  13149. {
  13150. "name": "Fabien Potencier",
  13151. "email": "fabien@symfony.com"
  13152. },
  13153. {
  13154. "name": "Symfony Community",
  13155. "homepage": "https://symfony.com/contributors"
  13156. }
  13157. ],
  13158. "description": "Provides tools to validate values",
  13159. "homepage": "https://symfony.com",
  13160. "support": {
  13161. "source": "https://github.com/symfony/validator/tree/v6.4.23"
  13162. },
  13163. "funding": [
  13164. {
  13165. "url": "https://symfony.com/sponsor",
  13166. "type": "custom"
  13167. },
  13168. {
  13169. "url": "https://github.com/fabpot",
  13170. "type": "github"
  13171. },
  13172. {
  13173. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13174. "type": "tidelift"
  13175. }
  13176. ],
  13177. "time": "2025-06-26T07:25:45+00:00"
  13178. },
  13179. {
  13180. "name": "symfony/var-dumper",
  13181. "version": "v6.4.23",
  13182. "source": {
  13183. "type": "git",
  13184. "url": "https://github.com/symfony/var-dumper.git",
  13185. "reference": "d55b1834cdbfcc31bc2cd7e095ba5ed9a88f6600"
  13186. },
  13187. "dist": {
  13188. "type": "zip",
  13189. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/d55b1834cdbfcc31bc2cd7e095ba5ed9a88f6600",
  13190. "reference": "d55b1834cdbfcc31bc2cd7e095ba5ed9a88f6600",
  13191. "shasum": ""
  13192. },
  13193. "require": {
  13194. "php": ">=8.1",
  13195. "symfony/deprecation-contracts": "^2.5|^3",
  13196. "symfony/polyfill-mbstring": "~1.0"
  13197. },
  13198. "conflict": {
  13199. "symfony/console": "<5.4"
  13200. },
  13201. "require-dev": {
  13202. "ext-iconv": "*",
  13203. "symfony/console": "^5.4|^6.0|^7.0",
  13204. "symfony/error-handler": "^6.3|^7.0",
  13205. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  13206. "symfony/process": "^5.4|^6.0|^7.0",
  13207. "symfony/uid": "^5.4|^6.0|^7.0",
  13208. "twig/twig": "^2.13|^3.0.4"
  13209. },
  13210. "bin": [
  13211. "Resources/bin/var-dump-server"
  13212. ],
  13213. "type": "library",
  13214. "autoload": {
  13215. "files": [
  13216. "Resources/functions/dump.php"
  13217. ],
  13218. "psr-4": {
  13219. "Symfony\\Component\\VarDumper\\": ""
  13220. },
  13221. "exclude-from-classmap": [
  13222. "/Tests/"
  13223. ]
  13224. },
  13225. "notification-url": "https://packagist.org/downloads/",
  13226. "license": [
  13227. "MIT"
  13228. ],
  13229. "authors": [
  13230. {
  13231. "name": "Nicolas Grekas",
  13232. "email": "p@tchwork.com"
  13233. },
  13234. {
  13235. "name": "Symfony Community",
  13236. "homepage": "https://symfony.com/contributors"
  13237. }
  13238. ],
  13239. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  13240. "homepage": "https://symfony.com",
  13241. "keywords": [
  13242. "debug",
  13243. "dump"
  13244. ],
  13245. "support": {
  13246. "source": "https://github.com/symfony/var-dumper/tree/v6.4.23"
  13247. },
  13248. "funding": [
  13249. {
  13250. "url": "https://symfony.com/sponsor",
  13251. "type": "custom"
  13252. },
  13253. {
  13254. "url": "https://github.com/fabpot",
  13255. "type": "github"
  13256. },
  13257. {
  13258. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13259. "type": "tidelift"
  13260. }
  13261. ],
  13262. "time": "2025-06-27T15:05:27+00:00"
  13263. },
  13264. {
  13265. "name": "symfony/var-exporter",
  13266. "version": "v6.4.22",
  13267. "source": {
  13268. "type": "git",
  13269. "url": "https://github.com/symfony/var-exporter.git",
  13270. "reference": "f28cf841f5654955c9f88ceaf4b9dc29571988a9"
  13271. },
  13272. "dist": {
  13273. "type": "zip",
  13274. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/f28cf841f5654955c9f88ceaf4b9dc29571988a9",
  13275. "reference": "f28cf841f5654955c9f88ceaf4b9dc29571988a9",
  13276. "shasum": ""
  13277. },
  13278. "require": {
  13279. "php": ">=8.1",
  13280. "symfony/deprecation-contracts": "^2.5|^3"
  13281. },
  13282. "require-dev": {
  13283. "symfony/property-access": "^6.4|^7.0",
  13284. "symfony/serializer": "^6.4|^7.0",
  13285. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  13286. },
  13287. "type": "library",
  13288. "autoload": {
  13289. "psr-4": {
  13290. "Symfony\\Component\\VarExporter\\": ""
  13291. },
  13292. "exclude-from-classmap": [
  13293. "/Tests/"
  13294. ]
  13295. },
  13296. "notification-url": "https://packagist.org/downloads/",
  13297. "license": [
  13298. "MIT"
  13299. ],
  13300. "authors": [
  13301. {
  13302. "name": "Nicolas Grekas",
  13303. "email": "p@tchwork.com"
  13304. },
  13305. {
  13306. "name": "Symfony Community",
  13307. "homepage": "https://symfony.com/contributors"
  13308. }
  13309. ],
  13310. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  13311. "homepage": "https://symfony.com",
  13312. "keywords": [
  13313. "clone",
  13314. "construct",
  13315. "export",
  13316. "hydrate",
  13317. "instantiate",
  13318. "lazy-loading",
  13319. "proxy",
  13320. "serialize"
  13321. ],
  13322. "support": {
  13323. "source": "https://github.com/symfony/var-exporter/tree/v6.4.22"
  13324. },
  13325. "funding": [
  13326. {
  13327. "url": "https://symfony.com/sponsor",
  13328. "type": "custom"
  13329. },
  13330. {
  13331. "url": "https://github.com/fabpot",
  13332. "type": "github"
  13333. },
  13334. {
  13335. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13336. "type": "tidelift"
  13337. }
  13338. ],
  13339. "time": "2025-05-14T13:00:13+00:00"
  13340. },
  13341. {
  13342. "name": "symfony/yaml",
  13343. "version": "v6.4.23",
  13344. "source": {
  13345. "type": "git",
  13346. "url": "https://github.com/symfony/yaml.git",
  13347. "reference": "93e29e0deb5f1b2e360adfb389a20d25eb81a27b"
  13348. },
  13349. "dist": {
  13350. "type": "zip",
  13351. "url": "https://api.github.com/repos/symfony/yaml/zipball/93e29e0deb5f1b2e360adfb389a20d25eb81a27b",
  13352. "reference": "93e29e0deb5f1b2e360adfb389a20d25eb81a27b",
  13353. "shasum": ""
  13354. },
  13355. "require": {
  13356. "php": ">=8.1",
  13357. "symfony/deprecation-contracts": "^2.5|^3",
  13358. "symfony/polyfill-ctype": "^1.8"
  13359. },
  13360. "conflict": {
  13361. "symfony/console": "<5.4"
  13362. },
  13363. "require-dev": {
  13364. "symfony/console": "^5.4|^6.0|^7.0"
  13365. },
  13366. "bin": [
  13367. "Resources/bin/yaml-lint"
  13368. ],
  13369. "type": "library",
  13370. "autoload": {
  13371. "psr-4": {
  13372. "Symfony\\Component\\Yaml\\": ""
  13373. },
  13374. "exclude-from-classmap": [
  13375. "/Tests/"
  13376. ]
  13377. },
  13378. "notification-url": "https://packagist.org/downloads/",
  13379. "license": [
  13380. "MIT"
  13381. ],
  13382. "authors": [
  13383. {
  13384. "name": "Fabien Potencier",
  13385. "email": "fabien@symfony.com"
  13386. },
  13387. {
  13388. "name": "Symfony Community",
  13389. "homepage": "https://symfony.com/contributors"
  13390. }
  13391. ],
  13392. "description": "Loads and dumps YAML files",
  13393. "homepage": "https://symfony.com",
  13394. "support": {
  13395. "source": "https://github.com/symfony/yaml/tree/v6.4.23"
  13396. },
  13397. "funding": [
  13398. {
  13399. "url": "https://symfony.com/sponsor",
  13400. "type": "custom"
  13401. },
  13402. {
  13403. "url": "https://github.com/fabpot",
  13404. "type": "github"
  13405. },
  13406. {
  13407. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13408. "type": "tidelift"
  13409. }
  13410. ],
  13411. "time": "2025-06-03T06:46:12+00:00"
  13412. },
  13413. {
  13414. "name": "twig/twig",
  13415. "version": "v3.20.0",
  13416. "source": {
  13417. "type": "git",
  13418. "url": "https://github.com/twigphp/Twig.git",
  13419. "reference": "3468920399451a384bef53cf7996965f7cd40183"
  13420. },
  13421. "dist": {
  13422. "type": "zip",
  13423. "url": "https://api.github.com/repos/twigphp/Twig/zipball/3468920399451a384bef53cf7996965f7cd40183",
  13424. "reference": "3468920399451a384bef53cf7996965f7cd40183",
  13425. "shasum": ""
  13426. },
  13427. "require": {
  13428. "php": ">=8.1.0",
  13429. "symfony/deprecation-contracts": "^2.5|^3",
  13430. "symfony/polyfill-ctype": "^1.8",
  13431. "symfony/polyfill-mbstring": "^1.3"
  13432. },
  13433. "require-dev": {
  13434. "phpstan/phpstan": "^2.0",
  13435. "psr/container": "^1.0|^2.0",
  13436. "symfony/phpunit-bridge": "^5.4.9|^6.4|^7.0"
  13437. },
  13438. "type": "library",
  13439. "autoload": {
  13440. "files": [
  13441. "src/Resources/core.php",
  13442. "src/Resources/debug.php",
  13443. "src/Resources/escaper.php",
  13444. "src/Resources/string_loader.php"
  13445. ],
  13446. "psr-4": {
  13447. "Twig\\": "src/"
  13448. }
  13449. },
  13450. "notification-url": "https://packagist.org/downloads/",
  13451. "license": [
  13452. "BSD-3-Clause"
  13453. ],
  13454. "authors": [
  13455. {
  13456. "name": "Fabien Potencier",
  13457. "email": "fabien@symfony.com",
  13458. "homepage": "http://fabien.potencier.org",
  13459. "role": "Lead Developer"
  13460. },
  13461. {
  13462. "name": "Twig Team",
  13463. "role": "Contributors"
  13464. },
  13465. {
  13466. "name": "Armin Ronacher",
  13467. "email": "armin.ronacher@active-4.com",
  13468. "role": "Project Founder"
  13469. }
  13470. ],
  13471. "description": "Twig, the flexible, fast, and secure template language for PHP",
  13472. "homepage": "https://twig.symfony.com",
  13473. "keywords": [
  13474. "templating"
  13475. ],
  13476. "support": {
  13477. "issues": "https://github.com/twigphp/Twig/issues",
  13478. "source": "https://github.com/twigphp/Twig/tree/v3.20.0"
  13479. },
  13480. "funding": [
  13481. {
  13482. "url": "https://github.com/fabpot",
  13483. "type": "github"
  13484. },
  13485. {
  13486. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  13487. "type": "tidelift"
  13488. }
  13489. ],
  13490. "time": "2025-02-13T08:34:43+00:00"
  13491. },
  13492. {
  13493. "name": "webflo/drupal-finder",
  13494. "version": "1.3.1",
  13495. "source": {
  13496. "type": "git",
  13497. "url": "https://github.com/webflo/drupal-finder.git",
  13498. "reference": "73045060b0894c77962a10cff047f72872d8810c"
  13499. },
  13500. "dist": {
  13501. "type": "zip",
  13502. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/73045060b0894c77962a10cff047f72872d8810c",
  13503. "reference": "73045060b0894c77962a10cff047f72872d8810c",
  13504. "shasum": ""
  13505. },
  13506. "require": {
  13507. "composer-runtime-api": "^2.2",
  13508. "php": ">=8.1"
  13509. },
  13510. "require-dev": {
  13511. "mikey179/vfsstream": "^1.6",
  13512. "phpunit/phpunit": "^10.4",
  13513. "symfony/process": "^6.4"
  13514. },
  13515. "type": "library",
  13516. "autoload": {
  13517. "psr-4": {
  13518. "DrupalFinder\\": "src/"
  13519. }
  13520. },
  13521. "notification-url": "https://packagist.org/downloads/",
  13522. "license": [
  13523. "GPL-2.0-or-later"
  13524. ],
  13525. "authors": [
  13526. {
  13527. "name": "Florian Weber",
  13528. "email": "florian@webflo.org"
  13529. }
  13530. ],
  13531. "description": "Helper class to locate a Drupal installation.",
  13532. "support": {
  13533. "issues": "https://github.com/webflo/drupal-finder/issues",
  13534. "source": "https://github.com/webflo/drupal-finder/tree/1.3.1"
  13535. },
  13536. "time": "2024-06-28T13:45:36+00:00"
  13537. },
  13538. {
  13539. "name": "wikimedia/composer-merge-plugin",
  13540. "version": "v2.1.0",
  13541. "source": {
  13542. "type": "git",
  13543. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  13544. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc"
  13545. },
  13546. "dist": {
  13547. "type": "zip",
  13548. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  13549. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  13550. "shasum": ""
  13551. },
  13552. "require": {
  13553. "composer-plugin-api": "^1.1||^2.0",
  13554. "php": ">=7.2.0"
  13555. },
  13556. "require-dev": {
  13557. "composer/composer": "^1.1||^2.0",
  13558. "ext-json": "*",
  13559. "mediawiki/mediawiki-phan-config": "0.11.1",
  13560. "php-parallel-lint/php-parallel-lint": "~1.3.1",
  13561. "phpspec/prophecy": "~1.15.0",
  13562. "phpunit/phpunit": "^8.5||^9.0",
  13563. "squizlabs/php_codesniffer": "~3.7.1"
  13564. },
  13565. "type": "composer-plugin",
  13566. "extra": {
  13567. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin",
  13568. "branch-alias": {
  13569. "dev-master": "2.x-dev"
  13570. }
  13571. },
  13572. "autoload": {
  13573. "psr-4": {
  13574. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  13575. }
  13576. },
  13577. "notification-url": "https://packagist.org/downloads/",
  13578. "license": [
  13579. "MIT"
  13580. ],
  13581. "authors": [
  13582. {
  13583. "name": "Bryan Davis",
  13584. "email": "bd808@wikimedia.org"
  13585. }
  13586. ],
  13587. "description": "Composer plugin to merge multiple composer.json files",
  13588. "support": {
  13589. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  13590. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0"
  13591. },
  13592. "time": "2023-04-15T19:07:00+00:00"
  13593. },
  13594. {
  13595. "name": "willdurand/geocoder",
  13596. "version": "4.6.0",
  13597. "source": {
  13598. "type": "git",
  13599. "url": "https://github.com/geocoder-php/php-common.git",
  13600. "reference": "be3d9ed0fddf8c698ee079d8a07ae9520b4a49a1"
  13601. },
  13602. "dist": {
  13603. "type": "zip",
  13604. "url": "https://api.github.com/repos/geocoder-php/php-common/zipball/be3d9ed0fddf8c698ee079d8a07ae9520b4a49a1",
  13605. "reference": "be3d9ed0fddf8c698ee079d8a07ae9520b4a49a1",
  13606. "shasum": ""
  13607. },
  13608. "require": {
  13609. "php": "^7.4 || ^8.0"
  13610. },
  13611. "require-dev": {
  13612. "nyholm/nsa": "^1.1",
  13613. "phpunit/phpunit": "^9.5",
  13614. "symfony/stopwatch": "~2.5"
  13615. },
  13616. "suggest": {
  13617. "symfony/stopwatch": "If you want to use the TimedGeocoder"
  13618. },
  13619. "type": "library",
  13620. "extra": {
  13621. "branch-alias": {
  13622. "dev-master": "4.1-dev"
  13623. }
  13624. },
  13625. "autoload": {
  13626. "psr-4": {
  13627. "Geocoder\\": ""
  13628. },
  13629. "exclude-from-classmap": [
  13630. "/Tests/"
  13631. ]
  13632. },
  13633. "notification-url": "https://packagist.org/downloads/",
  13634. "license": [
  13635. "MIT"
  13636. ],
  13637. "authors": [
  13638. {
  13639. "name": "William Durand",
  13640. "email": "william.durand1@gmail.com"
  13641. }
  13642. ],
  13643. "description": "Common files for PHP Geocoder",
  13644. "homepage": "http://geocoder-php.org",
  13645. "keywords": [
  13646. "abstraction",
  13647. "geocoder",
  13648. "geocoding",
  13649. "geoip"
  13650. ],
  13651. "support": {
  13652. "source": "https://github.com/geocoder-php/php-common/tree/4.6.0"
  13653. },
  13654. "time": "2022-07-30T11:09:43+00:00"
  13655. }
  13656. ],
  13657. "packages-dev": [],
  13658. "aliases": [],
  13659. "minimum-stability": "stable",
  13660. "stability-flags": {
  13661. "drupal/advanced_text_formatter": 5,
  13662. "drupal/computed_token_field": 10,
  13663. "drupal/config_update": 15,
  13664. "drupal/context": 5,
  13665. "drupal/date_range_formatter": 20,
  13666. "drupal/email_registration": 5,
  13667. "drupal/entity_clone": 20,
  13668. "drupal/inline_entity_form": 5,
  13669. "drupal/page_manager": 5,
  13670. "drupal/pathologic": 15,
  13671. "drupal/smtp": 10,
  13672. "drupal/synonyms": 10,
  13673. "drupal/translation_views": 15,
  13674. "drupal/ultimate_cron": 15
  13675. },
  13676. "prefer-stable": true,
  13677. "prefer-lowest": false,
  13678. "platform": {},
  13679. "platform-dev": {},
  13680. "plugin-api-version": "2.6.0"
  13681. }