composer.lock 418 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461
  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": "a2c64c27b05d5c125cf5ca43f3e5ffce",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  20. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.2|^8.0",
  25. "symfony/http-foundation": "^4|^5|^6",
  26. "symfony/http-kernel": "^4|^5|^6"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^7|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.1-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.1.1"
  62. },
  63. "time": "2022-01-18T09:12:03+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "2.6.2",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "22ed1cc02dc47814e8239de577da541e9b9bd980"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/22ed1cc02dc47814e8239de577da541e9b9bd980",
  76. "reference": "22ed1cc02dc47814e8239de577da541e9b9bd980",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=7.4",
  82. "psr/log": "^1.1 || ^2.0 || ^3.0",
  83. "symfony/console": "^4.4.15 || ^5.1 || ^6.0",
  84. "symfony/filesystem": "^4.4 || ^5.1 || ^6",
  85. "symfony/polyfill-php80": "^1.23",
  86. "symfony/string": "^5.1 || ^6",
  87. "twig/twig": "^2.14.11 || ^3.1"
  88. },
  89. "conflict": {
  90. "squizlabs/php_codesniffer": "<3.6"
  91. },
  92. "require-dev": {
  93. "chi-teck/drupal-coder-extension": "^1.2",
  94. "drupal/coder": "^8.3.14",
  95. "phpspec/prophecy-phpunit": "^2.0",
  96. "phpunit/phpunit": "^9.4",
  97. "squizlabs/php_codesniffer": "^3.5",
  98. "symfony/var-dumper": "^5.2 || ^6.0",
  99. "symfony/yaml": "^5.2 || ^6.0"
  100. },
  101. "bin": [
  102. "bin/dcg"
  103. ],
  104. "type": "library",
  105. "extra": {
  106. "branch-alias": {
  107. "dev-master": "2.x-dev"
  108. }
  109. },
  110. "autoload": {
  111. "psr-4": {
  112. "DrupalCodeGenerator\\": "src"
  113. }
  114. },
  115. "notification-url": "https://packagist.org/downloads/",
  116. "license": [
  117. "GPL-2.0-or-later"
  118. ],
  119. "description": "Drupal code generator",
  120. "support": {
  121. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  122. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/2.6.2"
  123. },
  124. "time": "2022-11-11T15:34:04+00:00"
  125. },
  126. {
  127. "name": "commerceguys/addressing",
  128. "version": "v1.4.2",
  129. "source": {
  130. "type": "git",
  131. "url": "https://github.com/commerceguys/addressing.git",
  132. "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308"
  133. },
  134. "dist": {
  135. "type": "zip",
  136. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
  137. "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
  138. "shasum": ""
  139. },
  140. "require": {
  141. "doctrine/collections": "^1.2 || ^2.0",
  142. "php": ">=7.3"
  143. },
  144. "require-dev": {
  145. "ext-json": "*",
  146. "mikey179/vfsstream": "^1.6.10",
  147. "phpunit/phpunit": "^9.5",
  148. "squizlabs/php_codesniffer": "^3.6",
  149. "symfony/validator": "^4.4 || ^5.4 || ^6.0"
  150. },
  151. "suggest": {
  152. "symfony/validator": "to validate addresses"
  153. },
  154. "type": "library",
  155. "extra": {
  156. "branch-alias": {
  157. "dev-master": "1.x-dev"
  158. }
  159. },
  160. "autoload": {
  161. "psr-4": {
  162. "CommerceGuys\\Addressing\\": "src"
  163. }
  164. },
  165. "notification-url": "https://packagist.org/downloads/",
  166. "license": [
  167. "MIT"
  168. ],
  169. "authors": [
  170. {
  171. "name": "Bojan Zivanovic"
  172. },
  173. {
  174. "name": "Damien Tournoud"
  175. }
  176. ],
  177. "description": "Addressing library powered by CLDR and Google's address data.",
  178. "keywords": [
  179. "address",
  180. "internationalization",
  181. "localization",
  182. "postal"
  183. ],
  184. "support": {
  185. "issues": "https://github.com/commerceguys/addressing/issues",
  186. "source": "https://github.com/commerceguys/addressing/tree/v1.4.2"
  187. },
  188. "time": "2023-02-15T10:11:14+00:00"
  189. },
  190. {
  191. "name": "components/highlightjs",
  192. "version": "9.7.0",
  193. "dist": {
  194. "type": "zip",
  195. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip"
  196. },
  197. "type": "drupal-library"
  198. },
  199. {
  200. "name": "composer/installers",
  201. "version": "v2.2.0",
  202. "source": {
  203. "type": "git",
  204. "url": "https://github.com/composer/installers.git",
  205. "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35"
  206. },
  207. "dist": {
  208. "type": "zip",
  209. "url": "https://api.github.com/repos/composer/installers/zipball/c29dc4b93137acb82734f672c37e029dfbd95b35",
  210. "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35",
  211. "shasum": ""
  212. },
  213. "require": {
  214. "composer-plugin-api": "^1.0 || ^2.0",
  215. "php": "^7.2 || ^8.0"
  216. },
  217. "require-dev": {
  218. "composer/composer": "1.6.* || ^2.0",
  219. "composer/semver": "^1 || ^3",
  220. "phpstan/phpstan": "^0.12.55",
  221. "phpstan/phpstan-phpunit": "^0.12.16",
  222. "symfony/phpunit-bridge": "^5.3",
  223. "symfony/process": "^5"
  224. },
  225. "type": "composer-plugin",
  226. "extra": {
  227. "class": "Composer\\Installers\\Plugin",
  228. "branch-alias": {
  229. "dev-main": "2.x-dev"
  230. },
  231. "plugin-modifies-install-path": true
  232. },
  233. "autoload": {
  234. "psr-4": {
  235. "Composer\\Installers\\": "src/Composer/Installers"
  236. }
  237. },
  238. "notification-url": "https://packagist.org/downloads/",
  239. "license": [
  240. "MIT"
  241. ],
  242. "authors": [
  243. {
  244. "name": "Kyle Robinson Young",
  245. "email": "kyle@dontkry.com",
  246. "homepage": "https://github.com/shama"
  247. }
  248. ],
  249. "description": "A multi-framework Composer library installer",
  250. "homepage": "https://composer.github.io/installers/",
  251. "keywords": [
  252. "Dolibarr",
  253. "Eliasis",
  254. "Hurad",
  255. "ImageCMS",
  256. "Kanboard",
  257. "Lan Management System",
  258. "MODX Evo",
  259. "MantisBT",
  260. "Mautic",
  261. "Maya",
  262. "OXID",
  263. "Plentymarkets",
  264. "Porto",
  265. "RadPHP",
  266. "SMF",
  267. "Starbug",
  268. "Thelia",
  269. "Whmcs",
  270. "WolfCMS",
  271. "agl",
  272. "annotatecms",
  273. "attogram",
  274. "bitrix",
  275. "cakephp",
  276. "chef",
  277. "cockpit",
  278. "codeigniter",
  279. "concrete5",
  280. "croogo",
  281. "dokuwiki",
  282. "drupal",
  283. "eZ Platform",
  284. "elgg",
  285. "expressionengine",
  286. "fuelphp",
  287. "grav",
  288. "installer",
  289. "itop",
  290. "known",
  291. "kohana",
  292. "laravel",
  293. "lavalite",
  294. "lithium",
  295. "magento",
  296. "majima",
  297. "mako",
  298. "matomo",
  299. "mediawiki",
  300. "miaoxing",
  301. "modulework",
  302. "modx",
  303. "moodle",
  304. "osclass",
  305. "pantheon",
  306. "phpbb",
  307. "piwik",
  308. "ppi",
  309. "processwire",
  310. "puppet",
  311. "pxcms",
  312. "reindex",
  313. "roundcube",
  314. "shopware",
  315. "silverstripe",
  316. "sydes",
  317. "sylius",
  318. "tastyigniter",
  319. "wordpress",
  320. "yawik",
  321. "zend",
  322. "zikula"
  323. ],
  324. "support": {
  325. "issues": "https://github.com/composer/installers/issues",
  326. "source": "https://github.com/composer/installers/tree/v2.2.0"
  327. },
  328. "funding": [
  329. {
  330. "url": "https://packagist.com",
  331. "type": "custom"
  332. },
  333. {
  334. "url": "https://github.com/composer",
  335. "type": "github"
  336. },
  337. {
  338. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  339. "type": "tidelift"
  340. }
  341. ],
  342. "time": "2022-08-20T06:45:11+00:00"
  343. },
  344. {
  345. "name": "composer/semver",
  346. "version": "3.3.2",
  347. "source": {
  348. "type": "git",
  349. "url": "https://github.com/composer/semver.git",
  350. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  351. },
  352. "dist": {
  353. "type": "zip",
  354. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  355. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  356. "shasum": ""
  357. },
  358. "require": {
  359. "php": "^5.3.2 || ^7.0 || ^8.0"
  360. },
  361. "require-dev": {
  362. "phpstan/phpstan": "^1.4",
  363. "symfony/phpunit-bridge": "^4.2 || ^5"
  364. },
  365. "type": "library",
  366. "extra": {
  367. "branch-alias": {
  368. "dev-main": "3.x-dev"
  369. }
  370. },
  371. "autoload": {
  372. "psr-4": {
  373. "Composer\\Semver\\": "src"
  374. }
  375. },
  376. "notification-url": "https://packagist.org/downloads/",
  377. "license": [
  378. "MIT"
  379. ],
  380. "authors": [
  381. {
  382. "name": "Nils Adermann",
  383. "email": "naderman@naderman.de",
  384. "homepage": "http://www.naderman.de"
  385. },
  386. {
  387. "name": "Jordi Boggiano",
  388. "email": "j.boggiano@seld.be",
  389. "homepage": "http://seld.be"
  390. },
  391. {
  392. "name": "Rob Bast",
  393. "email": "rob.bast@gmail.com",
  394. "homepage": "http://robbast.nl"
  395. }
  396. ],
  397. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  398. "keywords": [
  399. "semantic",
  400. "semver",
  401. "validation",
  402. "versioning"
  403. ],
  404. "support": {
  405. "irc": "irc://irc.freenode.org/composer",
  406. "issues": "https://github.com/composer/semver/issues",
  407. "source": "https://github.com/composer/semver/tree/3.3.2"
  408. },
  409. "funding": [
  410. {
  411. "url": "https://packagist.com",
  412. "type": "custom"
  413. },
  414. {
  415. "url": "https://github.com/composer",
  416. "type": "github"
  417. },
  418. {
  419. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  420. "type": "tidelift"
  421. }
  422. ],
  423. "time": "2022-04-01T19:23:25+00:00"
  424. },
  425. {
  426. "name": "consolidation/annotated-command",
  427. "version": "4.9.1",
  428. "source": {
  429. "type": "git",
  430. "url": "https://github.com/consolidation/annotated-command.git",
  431. "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9"
  432. },
  433. "dist": {
  434. "type": "zip",
  435. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/e01152f698eff4cb5df3ebfe5e097ef335dbd3c9",
  436. "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9",
  437. "shasum": ""
  438. },
  439. "require": {
  440. "consolidation/output-formatters": "^4.3.1",
  441. "php": ">=7.1.3",
  442. "psr/log": "^1 || ^2 || ^3",
  443. "symfony/console": "^4.4.8 || ^5 || ^6",
  444. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6",
  445. "symfony/finder": "^4.4.8 || ^5 || ^6"
  446. },
  447. "require-dev": {
  448. "composer-runtime-api": "^2.0",
  449. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  450. "squizlabs/php_codesniffer": "^3",
  451. "yoast/phpunit-polyfills": "^0.2.0"
  452. },
  453. "type": "library",
  454. "extra": {
  455. "branch-alias": {
  456. "dev-main": "4.x-dev"
  457. }
  458. },
  459. "autoload": {
  460. "psr-4": {
  461. "Consolidation\\AnnotatedCommand\\": "src"
  462. }
  463. },
  464. "notification-url": "https://packagist.org/downloads/",
  465. "license": [
  466. "MIT"
  467. ],
  468. "authors": [
  469. {
  470. "name": "Greg Anderson",
  471. "email": "greg.1.anderson@greenknowe.org"
  472. }
  473. ],
  474. "description": "Initialize Symfony Console commands from annotated command class methods.",
  475. "support": {
  476. "issues": "https://github.com/consolidation/annotated-command/issues",
  477. "source": "https://github.com/consolidation/annotated-command/tree/4.9.1"
  478. },
  479. "time": "2023-05-20T04:19:01+00:00"
  480. },
  481. {
  482. "name": "consolidation/config",
  483. "version": "2.1.2",
  484. "source": {
  485. "type": "git",
  486. "url": "https://github.com/consolidation/config.git",
  487. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae"
  488. },
  489. "dist": {
  490. "type": "zip",
  491. "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae",
  492. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae",
  493. "shasum": ""
  494. },
  495. "require": {
  496. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  497. "grasmash/expander": "^2.0.1 || ^3",
  498. "php": ">=7.1.3",
  499. "symfony/event-dispatcher": "^4 || ^5 || ^6"
  500. },
  501. "require-dev": {
  502. "ext-json": "*",
  503. "phpunit/phpunit": ">=7.5.20",
  504. "squizlabs/php_codesniffer": "^3",
  505. "symfony/console": "^4 || ^5 || ^6",
  506. "symfony/yaml": "^4 || ^5 || ^6",
  507. "yoast/phpunit-polyfills": "^1"
  508. },
  509. "suggest": {
  510. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  511. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  512. },
  513. "type": "library",
  514. "extra": {
  515. "branch-alias": {
  516. "dev-main": "2.x-dev"
  517. }
  518. },
  519. "autoload": {
  520. "psr-4": {
  521. "Consolidation\\Config\\": "src"
  522. }
  523. },
  524. "notification-url": "https://packagist.org/downloads/",
  525. "license": [
  526. "MIT"
  527. ],
  528. "authors": [
  529. {
  530. "name": "Greg Anderson",
  531. "email": "greg.1.anderson@greenknowe.org"
  532. }
  533. ],
  534. "description": "Provide configuration services for a commandline tool.",
  535. "support": {
  536. "issues": "https://github.com/consolidation/config/issues",
  537. "source": "https://github.com/consolidation/config/tree/2.1.2"
  538. },
  539. "time": "2022-10-06T17:48:03+00:00"
  540. },
  541. {
  542. "name": "consolidation/filter-via-dot-access-data",
  543. "version": "2.0.2",
  544. "source": {
  545. "type": "git",
  546. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  547. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b"
  548. },
  549. "dist": {
  550. "type": "zip",
  551. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  552. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  553. "shasum": ""
  554. },
  555. "require": {
  556. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  557. "php": ">=7.1.3"
  558. },
  559. "require-dev": {
  560. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  561. "squizlabs/php_codesniffer": "^3",
  562. "yoast/phpunit-polyfills": "^0.2.0"
  563. },
  564. "type": "library",
  565. "extra": {
  566. "branch-alias": {
  567. "dev-main": "2.x-dev"
  568. }
  569. },
  570. "autoload": {
  571. "psr-4": {
  572. "Consolidation\\Filter\\": "src"
  573. }
  574. },
  575. "notification-url": "https://packagist.org/downloads/",
  576. "license": [
  577. "MIT"
  578. ],
  579. "authors": [
  580. {
  581. "name": "Greg Anderson",
  582. "email": "greg.1.anderson@greenknowe.org"
  583. }
  584. ],
  585. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  586. "support": {
  587. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2"
  588. },
  589. "time": "2021-12-30T03:56:08+00:00"
  590. },
  591. {
  592. "name": "consolidation/log",
  593. "version": "3.0.0",
  594. "source": {
  595. "type": "git",
  596. "url": "https://github.com/consolidation/log.git",
  597. "reference": "caaad9d70dae54eb49002666f000e3c607066878"
  598. },
  599. "dist": {
  600. "type": "zip",
  601. "url": "https://api.github.com/repos/consolidation/log/zipball/caaad9d70dae54eb49002666f000e3c607066878",
  602. "reference": "caaad9d70dae54eb49002666f000e3c607066878",
  603. "shasum": ""
  604. },
  605. "require": {
  606. "php": ">=8.0.0",
  607. "psr/log": "^3",
  608. "symfony/console": "^5 || ^6"
  609. },
  610. "require-dev": {
  611. "phpunit/phpunit": ">=7.5.20",
  612. "squizlabs/php_codesniffer": "^3",
  613. "yoast/phpunit-polyfills": "^0.2.0"
  614. },
  615. "type": "library",
  616. "extra": {
  617. "branch-alias": {
  618. "dev-main": "2.x-dev"
  619. }
  620. },
  621. "autoload": {
  622. "psr-4": {
  623. "Consolidation\\Log\\": "src"
  624. }
  625. },
  626. "notification-url": "https://packagist.org/downloads/",
  627. "license": [
  628. "MIT"
  629. ],
  630. "authors": [
  631. {
  632. "name": "Greg Anderson",
  633. "email": "greg.1.anderson@greenknowe.org"
  634. }
  635. ],
  636. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  637. "support": {
  638. "issues": "https://github.com/consolidation/log/issues",
  639. "source": "https://github.com/consolidation/log/tree/3.0.0"
  640. },
  641. "time": "2022-04-05T16:53:32+00:00"
  642. },
  643. {
  644. "name": "consolidation/output-formatters",
  645. "version": "4.3.2",
  646. "source": {
  647. "type": "git",
  648. "url": "https://github.com/consolidation/output-formatters.git",
  649. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58"
  650. },
  651. "dist": {
  652. "type": "zip",
  653. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/06711568b4cd169700ff7e8075db0a9a341ceb58",
  654. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58",
  655. "shasum": ""
  656. },
  657. "require": {
  658. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  659. "php": ">=7.1.3",
  660. "symfony/console": "^4 || ^5 || ^6",
  661. "symfony/finder": "^4 || ^5 || ^6"
  662. },
  663. "require-dev": {
  664. "php-coveralls/php-coveralls": "^2.4.2",
  665. "phpunit/phpunit": "^7 || ^8 || ^9",
  666. "squizlabs/php_codesniffer": "^3",
  667. "symfony/var-dumper": "^4 || ^5 || ^6",
  668. "symfony/yaml": "^4 || ^5 || ^6",
  669. "yoast/phpunit-polyfills": "^1"
  670. },
  671. "suggest": {
  672. "symfony/var-dumper": "For using the var_dump formatter"
  673. },
  674. "type": "library",
  675. "autoload": {
  676. "psr-4": {
  677. "Consolidation\\OutputFormatters\\": "src"
  678. }
  679. },
  680. "notification-url": "https://packagist.org/downloads/",
  681. "license": [
  682. "MIT"
  683. ],
  684. "authors": [
  685. {
  686. "name": "Greg Anderson",
  687. "email": "greg.1.anderson@greenknowe.org"
  688. }
  689. ],
  690. "description": "Format text by applying transformations provided by plug-in formatters.",
  691. "support": {
  692. "issues": "https://github.com/consolidation/output-formatters/issues",
  693. "source": "https://github.com/consolidation/output-formatters/tree/4.3.2"
  694. },
  695. "time": "2023-07-06T04:45:41+00:00"
  696. },
  697. {
  698. "name": "consolidation/robo",
  699. "version": "4.0.6",
  700. "source": {
  701. "type": "git",
  702. "url": "https://github.com/consolidation/robo.git",
  703. "reference": "55a272370940607649e5c46eb173c5c54f7c166d"
  704. },
  705. "dist": {
  706. "type": "zip",
  707. "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d",
  708. "reference": "55a272370940607649e5c46eb173c5c54f7c166d",
  709. "shasum": ""
  710. },
  711. "require": {
  712. "consolidation/annotated-command": "^4.8.1",
  713. "consolidation/config": "^2.0.1",
  714. "consolidation/log": "^2.0.2 || ^3",
  715. "consolidation/output-formatters": "^4.1.2",
  716. "consolidation/self-update": "^2.0",
  717. "league/container": "^3.3.1 || ^4.0",
  718. "php": ">=8.0",
  719. "phpowermove/docblock": "^4.0",
  720. "symfony/console": "^6",
  721. "symfony/event-dispatcher": "^6",
  722. "symfony/filesystem": "^6",
  723. "symfony/finder": "^6",
  724. "symfony/process": "^6",
  725. "symfony/yaml": "^6"
  726. },
  727. "conflict": {
  728. "codegyre/robo": "*"
  729. },
  730. "require-dev": {
  731. "natxet/cssmin": "3.0.4",
  732. "patchwork/jsqueeze": "^2",
  733. "pear/archive_tar": "^1.4.4",
  734. "phpunit/phpunit": "^7.5.20 || ^8",
  735. "squizlabs/php_codesniffer": "^3.6",
  736. "yoast/phpunit-polyfills": "^0.2.0"
  737. },
  738. "suggest": {
  739. "natxet/cssmin": "For minifying CSS files in taskMinify",
  740. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  741. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  742. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  743. },
  744. "bin": [
  745. "robo"
  746. ],
  747. "type": "library",
  748. "autoload": {
  749. "psr-4": {
  750. "Robo\\": "src"
  751. }
  752. },
  753. "notification-url": "https://packagist.org/downloads/",
  754. "license": [
  755. "MIT"
  756. ],
  757. "authors": [
  758. {
  759. "name": "Davert",
  760. "email": "davert.php@resend.cc"
  761. }
  762. ],
  763. "description": "Modern task runner",
  764. "support": {
  765. "issues": "https://github.com/consolidation/robo/issues",
  766. "source": "https://github.com/consolidation/robo/tree/4.0.6"
  767. },
  768. "time": "2023-04-30T21:49:04+00:00"
  769. },
  770. {
  771. "name": "consolidation/self-update",
  772. "version": "2.2.0",
  773. "source": {
  774. "type": "git",
  775. "url": "https://github.com/consolidation/self-update.git",
  776. "reference": "972a1016761c9b63314e040836a12795dff6953a"
  777. },
  778. "dist": {
  779. "type": "zip",
  780. "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a",
  781. "reference": "972a1016761c9b63314e040836a12795dff6953a",
  782. "shasum": ""
  783. },
  784. "require": {
  785. "composer/semver": "^3.2",
  786. "php": ">=5.5.0",
  787. "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
  788. "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6"
  789. },
  790. "bin": [
  791. "scripts/release"
  792. ],
  793. "type": "library",
  794. "extra": {
  795. "branch-alias": {
  796. "dev-main": "2.x-dev"
  797. }
  798. },
  799. "autoload": {
  800. "psr-4": {
  801. "SelfUpdate\\": "src"
  802. }
  803. },
  804. "notification-url": "https://packagist.org/downloads/",
  805. "license": [
  806. "MIT"
  807. ],
  808. "authors": [
  809. {
  810. "name": "Alexander Menk",
  811. "email": "menk@mestrona.net"
  812. },
  813. {
  814. "name": "Greg Anderson",
  815. "email": "greg.1.anderson@greenknowe.org"
  816. }
  817. ],
  818. "description": "Provides a self:update command for Symfony Console applications.",
  819. "support": {
  820. "issues": "https://github.com/consolidation/self-update/issues",
  821. "source": "https://github.com/consolidation/self-update/tree/2.2.0"
  822. },
  823. "time": "2023-03-18T01:37:41+00:00"
  824. },
  825. {
  826. "name": "consolidation/site-alias",
  827. "version": "4.0.1",
  828. "source": {
  829. "type": "git",
  830. "url": "https://github.com/consolidation/site-alias.git",
  831. "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5"
  832. },
  833. "dist": {
  834. "type": "zip",
  835. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
  836. "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
  837. "shasum": ""
  838. },
  839. "require": {
  840. "consolidation/config": "^1.2.1 || ^2",
  841. "php": ">=7.4",
  842. "symfony/filesystem": "^5.4 || ^6",
  843. "symfony/finder": "^5 || ^6"
  844. },
  845. "require-dev": {
  846. "php-coveralls/php-coveralls": "^2.4.2",
  847. "phpunit/phpunit": ">=7",
  848. "squizlabs/php_codesniffer": "^3",
  849. "symfony/var-dumper": "^4",
  850. "yoast/phpunit-polyfills": "^0.2.0"
  851. },
  852. "type": "library",
  853. "extra": {
  854. "branch-alias": {
  855. "dev-main": "4.x-dev"
  856. }
  857. },
  858. "autoload": {
  859. "psr-4": {
  860. "Consolidation\\SiteAlias\\": "src"
  861. }
  862. },
  863. "notification-url": "https://packagist.org/downloads/",
  864. "license": [
  865. "MIT"
  866. ],
  867. "authors": [
  868. {
  869. "name": "Greg Anderson",
  870. "email": "greg.1.anderson@greenknowe.org"
  871. },
  872. {
  873. "name": "Moshe Weitzman",
  874. "email": "weitzman@tejasa.com"
  875. }
  876. ],
  877. "description": "Manage alias records for local and remote sites.",
  878. "support": {
  879. "issues": "https://github.com/consolidation/site-alias/issues",
  880. "source": "https://github.com/consolidation/site-alias/tree/4.0.1"
  881. },
  882. "time": "2023-04-29T17:18:10+00:00"
  883. },
  884. {
  885. "name": "consolidation/site-process",
  886. "version": "5.2.0",
  887. "source": {
  888. "type": "git",
  889. "url": "https://github.com/consolidation/site-process.git",
  890. "reference": "6c44638d7af8a8b4abe12c3180701243f480539d"
  891. },
  892. "dist": {
  893. "type": "zip",
  894. "url": "https://api.github.com/repos/consolidation/site-process/zipball/6c44638d7af8a8b4abe12c3180701243f480539d",
  895. "reference": "6c44638d7af8a8b4abe12c3180701243f480539d",
  896. "shasum": ""
  897. },
  898. "require": {
  899. "consolidation/config": "^2",
  900. "consolidation/site-alias": "^3 || ^4",
  901. "php": ">=8.0.14",
  902. "symfony/console": "^5.4 || ^6",
  903. "symfony/process": "^6"
  904. },
  905. "require-dev": {
  906. "phpunit/phpunit": "^9",
  907. "squizlabs/php_codesniffer": "^3"
  908. },
  909. "type": "library",
  910. "extra": {
  911. "branch-alias": {
  912. "dev-main": "5.x-dev"
  913. }
  914. },
  915. "autoload": {
  916. "psr-4": {
  917. "Consolidation\\SiteProcess\\": "src"
  918. }
  919. },
  920. "notification-url": "https://packagist.org/downloads/",
  921. "license": [
  922. "MIT"
  923. ],
  924. "authors": [
  925. {
  926. "name": "Greg Anderson",
  927. "email": "greg.1.anderson@greenknowe.org"
  928. },
  929. {
  930. "name": "Moshe Weitzman",
  931. "email": "weitzman@tejasa.com"
  932. }
  933. ],
  934. "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.",
  935. "support": {
  936. "issues": "https://github.com/consolidation/site-process/issues",
  937. "source": "https://github.com/consolidation/site-process/tree/5.2.0"
  938. },
  939. "time": "2022-12-06T17:57:16+00:00"
  940. },
  941. {
  942. "name": "cweagans/composer-patches",
  943. "version": "1.7.3",
  944. "source": {
  945. "type": "git",
  946. "url": "https://github.com/cweagans/composer-patches.git",
  947. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  948. },
  949. "dist": {
  950. "type": "zip",
  951. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  952. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  953. "shasum": ""
  954. },
  955. "require": {
  956. "composer-plugin-api": "^1.0 || ^2.0",
  957. "php": ">=5.3.0"
  958. },
  959. "require-dev": {
  960. "composer/composer": "~1.0 || ~2.0",
  961. "phpunit/phpunit": "~4.6"
  962. },
  963. "type": "composer-plugin",
  964. "extra": {
  965. "class": "cweagans\\Composer\\Patches"
  966. },
  967. "autoload": {
  968. "psr-4": {
  969. "cweagans\\Composer\\": "src"
  970. }
  971. },
  972. "notification-url": "https://packagist.org/downloads/",
  973. "license": [
  974. "BSD-3-Clause"
  975. ],
  976. "authors": [
  977. {
  978. "name": "Cameron Eagans",
  979. "email": "me@cweagans.net"
  980. }
  981. ],
  982. "description": "Provides a way to patch Composer packages.",
  983. "support": {
  984. "issues": "https://github.com/cweagans/composer-patches/issues",
  985. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  986. },
  987. "time": "2022-12-20T22:53:13+00:00"
  988. },
  989. {
  990. "name": "d3/d3",
  991. "version": "v3.5.17",
  992. "dist": {
  993. "type": "zip",
  994. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  995. },
  996. "type": "drupal-library"
  997. },
  998. {
  999. "name": "dflydev/dot-access-data",
  1000. "version": "v3.0.2",
  1001. "source": {
  1002. "type": "git",
  1003. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1004. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  1005. },
  1006. "dist": {
  1007. "type": "zip",
  1008. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  1009. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  1010. "shasum": ""
  1011. },
  1012. "require": {
  1013. "php": "^7.1 || ^8.0"
  1014. },
  1015. "require-dev": {
  1016. "phpstan/phpstan": "^0.12.42",
  1017. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1018. "scrutinizer/ocular": "1.6.0",
  1019. "squizlabs/php_codesniffer": "^3.5",
  1020. "vimeo/psalm": "^4.0.0"
  1021. },
  1022. "type": "library",
  1023. "extra": {
  1024. "branch-alias": {
  1025. "dev-main": "3.x-dev"
  1026. }
  1027. },
  1028. "autoload": {
  1029. "psr-4": {
  1030. "Dflydev\\DotAccessData\\": "src/"
  1031. }
  1032. },
  1033. "notification-url": "https://packagist.org/downloads/",
  1034. "license": [
  1035. "MIT"
  1036. ],
  1037. "authors": [
  1038. {
  1039. "name": "Dragonfly Development Inc.",
  1040. "email": "info@dflydev.com",
  1041. "homepage": "http://dflydev.com"
  1042. },
  1043. {
  1044. "name": "Beau Simensen",
  1045. "email": "beau@dflydev.com",
  1046. "homepage": "http://beausimensen.com"
  1047. },
  1048. {
  1049. "name": "Carlos Frutos",
  1050. "email": "carlos@kiwing.it",
  1051. "homepage": "https://github.com/cfrutos"
  1052. },
  1053. {
  1054. "name": "Colin O'Dell",
  1055. "email": "colinodell@gmail.com",
  1056. "homepage": "https://www.colinodell.com"
  1057. }
  1058. ],
  1059. "description": "Given a deep data structure, access data by dot notation.",
  1060. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1061. "keywords": [
  1062. "access",
  1063. "data",
  1064. "dot",
  1065. "notation"
  1066. ],
  1067. "support": {
  1068. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1069. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  1070. },
  1071. "time": "2022-10-27T11:44:00+00:00"
  1072. },
  1073. {
  1074. "name": "doctrine/annotations",
  1075. "version": "1.14.3",
  1076. "source": {
  1077. "type": "git",
  1078. "url": "https://github.com/doctrine/annotations.git",
  1079. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af"
  1080. },
  1081. "dist": {
  1082. "type": "zip",
  1083. "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1084. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1085. "shasum": ""
  1086. },
  1087. "require": {
  1088. "doctrine/lexer": "^1 || ^2",
  1089. "ext-tokenizer": "*",
  1090. "php": "^7.1 || ^8.0",
  1091. "psr/cache": "^1 || ^2 || ^3"
  1092. },
  1093. "require-dev": {
  1094. "doctrine/cache": "^1.11 || ^2.0",
  1095. "doctrine/coding-standard": "^9 || ^10",
  1096. "phpstan/phpstan": "~1.4.10 || ^1.8.0",
  1097. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1098. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1099. "vimeo/psalm": "^4.10"
  1100. },
  1101. "suggest": {
  1102. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  1103. },
  1104. "type": "library",
  1105. "autoload": {
  1106. "psr-4": {
  1107. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1108. }
  1109. },
  1110. "notification-url": "https://packagist.org/downloads/",
  1111. "license": [
  1112. "MIT"
  1113. ],
  1114. "authors": [
  1115. {
  1116. "name": "Guilherme Blanco",
  1117. "email": "guilhermeblanco@gmail.com"
  1118. },
  1119. {
  1120. "name": "Roman Borschel",
  1121. "email": "roman@code-factory.org"
  1122. },
  1123. {
  1124. "name": "Benjamin Eberlei",
  1125. "email": "kontakt@beberlei.de"
  1126. },
  1127. {
  1128. "name": "Jonathan Wage",
  1129. "email": "jonwage@gmail.com"
  1130. },
  1131. {
  1132. "name": "Johannes Schmitt",
  1133. "email": "schmittjoh@gmail.com"
  1134. }
  1135. ],
  1136. "description": "Docblock Annotations Parser",
  1137. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1138. "keywords": [
  1139. "annotations",
  1140. "docblock",
  1141. "parser"
  1142. ],
  1143. "support": {
  1144. "issues": "https://github.com/doctrine/annotations/issues",
  1145. "source": "https://github.com/doctrine/annotations/tree/1.14.3"
  1146. },
  1147. "time": "2023-02-01T09:20:38+00:00"
  1148. },
  1149. {
  1150. "name": "doctrine/collections",
  1151. "version": "2.1.4",
  1152. "source": {
  1153. "type": "git",
  1154. "url": "https://github.com/doctrine/collections.git",
  1155. "reference": "72328a11443a0de79967104ad36ba7b30bded134"
  1156. },
  1157. "dist": {
  1158. "type": "zip",
  1159. "url": "https://api.github.com/repos/doctrine/collections/zipball/72328a11443a0de79967104ad36ba7b30bded134",
  1160. "reference": "72328a11443a0de79967104ad36ba7b30bded134",
  1161. "shasum": ""
  1162. },
  1163. "require": {
  1164. "doctrine/deprecations": "^1",
  1165. "php": "^8.1"
  1166. },
  1167. "require-dev": {
  1168. "doctrine/coding-standard": "^12",
  1169. "ext-json": "*",
  1170. "phpstan/phpstan": "^1.8",
  1171. "phpstan/phpstan-phpunit": "^1.0",
  1172. "phpunit/phpunit": "^9.5",
  1173. "vimeo/psalm": "^5.11"
  1174. },
  1175. "type": "library",
  1176. "autoload": {
  1177. "psr-4": {
  1178. "Doctrine\\Common\\Collections\\": "src"
  1179. }
  1180. },
  1181. "notification-url": "https://packagist.org/downloads/",
  1182. "license": [
  1183. "MIT"
  1184. ],
  1185. "authors": [
  1186. {
  1187. "name": "Guilherme Blanco",
  1188. "email": "guilhermeblanco@gmail.com"
  1189. },
  1190. {
  1191. "name": "Roman Borschel",
  1192. "email": "roman@code-factory.org"
  1193. },
  1194. {
  1195. "name": "Benjamin Eberlei",
  1196. "email": "kontakt@beberlei.de"
  1197. },
  1198. {
  1199. "name": "Jonathan Wage",
  1200. "email": "jonwage@gmail.com"
  1201. },
  1202. {
  1203. "name": "Johannes Schmitt",
  1204. "email": "schmittjoh@gmail.com"
  1205. }
  1206. ],
  1207. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1208. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1209. "keywords": [
  1210. "array",
  1211. "collections",
  1212. "iterators",
  1213. "php"
  1214. ],
  1215. "support": {
  1216. "issues": "https://github.com/doctrine/collections/issues",
  1217. "source": "https://github.com/doctrine/collections/tree/2.1.4"
  1218. },
  1219. "funding": [
  1220. {
  1221. "url": "https://www.doctrine-project.org/sponsorship.html",
  1222. "type": "custom"
  1223. },
  1224. {
  1225. "url": "https://www.patreon.com/phpdoctrine",
  1226. "type": "patreon"
  1227. },
  1228. {
  1229. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  1230. "type": "tidelift"
  1231. }
  1232. ],
  1233. "time": "2023-10-03T09:22:33+00:00"
  1234. },
  1235. {
  1236. "name": "doctrine/common",
  1237. "version": "3.4.3",
  1238. "source": {
  1239. "type": "git",
  1240. "url": "https://github.com/doctrine/common.git",
  1241. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced"
  1242. },
  1243. "dist": {
  1244. "type": "zip",
  1245. "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced",
  1246. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced",
  1247. "shasum": ""
  1248. },
  1249. "require": {
  1250. "doctrine/persistence": "^2.0 || ^3.0",
  1251. "php": "^7.1 || ^8.0"
  1252. },
  1253. "require-dev": {
  1254. "doctrine/coding-standard": "^9.0 || ^10.0",
  1255. "doctrine/collections": "^1",
  1256. "phpstan/phpstan": "^1.4.1",
  1257. "phpstan/phpstan-phpunit": "^1",
  1258. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1259. "squizlabs/php_codesniffer": "^3.0",
  1260. "symfony/phpunit-bridge": "^6.1",
  1261. "vimeo/psalm": "^4.4"
  1262. },
  1263. "type": "library",
  1264. "autoload": {
  1265. "psr-4": {
  1266. "Doctrine\\Common\\": "src"
  1267. }
  1268. },
  1269. "notification-url": "https://packagist.org/downloads/",
  1270. "license": [
  1271. "MIT"
  1272. ],
  1273. "authors": [
  1274. {
  1275. "name": "Guilherme Blanco",
  1276. "email": "guilhermeblanco@gmail.com"
  1277. },
  1278. {
  1279. "name": "Roman Borschel",
  1280. "email": "roman@code-factory.org"
  1281. },
  1282. {
  1283. "name": "Benjamin Eberlei",
  1284. "email": "kontakt@beberlei.de"
  1285. },
  1286. {
  1287. "name": "Jonathan Wage",
  1288. "email": "jonwage@gmail.com"
  1289. },
  1290. {
  1291. "name": "Johannes Schmitt",
  1292. "email": "schmittjoh@gmail.com"
  1293. },
  1294. {
  1295. "name": "Marco Pivetta",
  1296. "email": "ocramius@gmail.com"
  1297. }
  1298. ],
  1299. "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.",
  1300. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1301. "keywords": [
  1302. "common",
  1303. "doctrine",
  1304. "php"
  1305. ],
  1306. "support": {
  1307. "issues": "https://github.com/doctrine/common/issues",
  1308. "source": "https://github.com/doctrine/common/tree/3.4.3"
  1309. },
  1310. "funding": [
  1311. {
  1312. "url": "https://www.doctrine-project.org/sponsorship.html",
  1313. "type": "custom"
  1314. },
  1315. {
  1316. "url": "https://www.patreon.com/phpdoctrine",
  1317. "type": "patreon"
  1318. },
  1319. {
  1320. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1321. "type": "tidelift"
  1322. }
  1323. ],
  1324. "time": "2022-10-09T11:47:59+00:00"
  1325. },
  1326. {
  1327. "name": "doctrine/deprecations",
  1328. "version": "1.1.2",
  1329. "source": {
  1330. "type": "git",
  1331. "url": "https://github.com/doctrine/deprecations.git",
  1332. "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931"
  1333. },
  1334. "dist": {
  1335. "type": "zip",
  1336. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
  1337. "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
  1338. "shasum": ""
  1339. },
  1340. "require": {
  1341. "php": "^7.1 || ^8.0"
  1342. },
  1343. "require-dev": {
  1344. "doctrine/coding-standard": "^9",
  1345. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1346. "phpstan/phpstan-phpunit": "^1.0",
  1347. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1348. "psalm/plugin-phpunit": "0.18.4",
  1349. "psr/log": "^1 || ^2 || ^3",
  1350. "vimeo/psalm": "4.30.0 || 5.12.0"
  1351. },
  1352. "suggest": {
  1353. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1354. },
  1355. "type": "library",
  1356. "autoload": {
  1357. "psr-4": {
  1358. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1359. }
  1360. },
  1361. "notification-url": "https://packagist.org/downloads/",
  1362. "license": [
  1363. "MIT"
  1364. ],
  1365. "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.",
  1366. "homepage": "https://www.doctrine-project.org/",
  1367. "support": {
  1368. "issues": "https://github.com/doctrine/deprecations/issues",
  1369. "source": "https://github.com/doctrine/deprecations/tree/1.1.2"
  1370. },
  1371. "time": "2023-09-27T20:04:15+00:00"
  1372. },
  1373. {
  1374. "name": "doctrine/event-manager",
  1375. "version": "2.0.0",
  1376. "source": {
  1377. "type": "git",
  1378. "url": "https://github.com/doctrine/event-manager.git",
  1379. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  1380. },
  1381. "dist": {
  1382. "type": "zip",
  1383. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  1384. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  1385. "shasum": ""
  1386. },
  1387. "require": {
  1388. "php": "^8.1"
  1389. },
  1390. "conflict": {
  1391. "doctrine/common": "<2.9"
  1392. },
  1393. "require-dev": {
  1394. "doctrine/coding-standard": "^10",
  1395. "phpstan/phpstan": "^1.8.8",
  1396. "phpunit/phpunit": "^9.5",
  1397. "vimeo/psalm": "^4.28"
  1398. },
  1399. "type": "library",
  1400. "autoload": {
  1401. "psr-4": {
  1402. "Doctrine\\Common\\": "src"
  1403. }
  1404. },
  1405. "notification-url": "https://packagist.org/downloads/",
  1406. "license": [
  1407. "MIT"
  1408. ],
  1409. "authors": [
  1410. {
  1411. "name": "Guilherme Blanco",
  1412. "email": "guilhermeblanco@gmail.com"
  1413. },
  1414. {
  1415. "name": "Roman Borschel",
  1416. "email": "roman@code-factory.org"
  1417. },
  1418. {
  1419. "name": "Benjamin Eberlei",
  1420. "email": "kontakt@beberlei.de"
  1421. },
  1422. {
  1423. "name": "Jonathan Wage",
  1424. "email": "jonwage@gmail.com"
  1425. },
  1426. {
  1427. "name": "Johannes Schmitt",
  1428. "email": "schmittjoh@gmail.com"
  1429. },
  1430. {
  1431. "name": "Marco Pivetta",
  1432. "email": "ocramius@gmail.com"
  1433. }
  1434. ],
  1435. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1436. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1437. "keywords": [
  1438. "event",
  1439. "event dispatcher",
  1440. "event manager",
  1441. "event system",
  1442. "events"
  1443. ],
  1444. "support": {
  1445. "issues": "https://github.com/doctrine/event-manager/issues",
  1446. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  1447. },
  1448. "funding": [
  1449. {
  1450. "url": "https://www.doctrine-project.org/sponsorship.html",
  1451. "type": "custom"
  1452. },
  1453. {
  1454. "url": "https://www.patreon.com/phpdoctrine",
  1455. "type": "patreon"
  1456. },
  1457. {
  1458. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1459. "type": "tidelift"
  1460. }
  1461. ],
  1462. "time": "2022-10-12T20:59:15+00:00"
  1463. },
  1464. {
  1465. "name": "doctrine/lexer",
  1466. "version": "2.1.0",
  1467. "source": {
  1468. "type": "git",
  1469. "url": "https://github.com/doctrine/lexer.git",
  1470. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
  1471. },
  1472. "dist": {
  1473. "type": "zip",
  1474. "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1475. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1476. "shasum": ""
  1477. },
  1478. "require": {
  1479. "doctrine/deprecations": "^1.0",
  1480. "php": "^7.1 || ^8.0"
  1481. },
  1482. "require-dev": {
  1483. "doctrine/coding-standard": "^9 || ^10",
  1484. "phpstan/phpstan": "^1.3",
  1485. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1486. "psalm/plugin-phpunit": "^0.18.3",
  1487. "vimeo/psalm": "^4.11 || ^5.0"
  1488. },
  1489. "type": "library",
  1490. "autoload": {
  1491. "psr-4": {
  1492. "Doctrine\\Common\\Lexer\\": "src"
  1493. }
  1494. },
  1495. "notification-url": "https://packagist.org/downloads/",
  1496. "license": [
  1497. "MIT"
  1498. ],
  1499. "authors": [
  1500. {
  1501. "name": "Guilherme Blanco",
  1502. "email": "guilhermeblanco@gmail.com"
  1503. },
  1504. {
  1505. "name": "Roman Borschel",
  1506. "email": "roman@code-factory.org"
  1507. },
  1508. {
  1509. "name": "Johannes Schmitt",
  1510. "email": "schmittjoh@gmail.com"
  1511. }
  1512. ],
  1513. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1514. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1515. "keywords": [
  1516. "annotations",
  1517. "docblock",
  1518. "lexer",
  1519. "parser",
  1520. "php"
  1521. ],
  1522. "support": {
  1523. "issues": "https://github.com/doctrine/lexer/issues",
  1524. "source": "https://github.com/doctrine/lexer/tree/2.1.0"
  1525. },
  1526. "funding": [
  1527. {
  1528. "url": "https://www.doctrine-project.org/sponsorship.html",
  1529. "type": "custom"
  1530. },
  1531. {
  1532. "url": "https://www.patreon.com/phpdoctrine",
  1533. "type": "patreon"
  1534. },
  1535. {
  1536. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1537. "type": "tidelift"
  1538. }
  1539. ],
  1540. "time": "2022-12-14T08:49:07+00:00"
  1541. },
  1542. {
  1543. "name": "doctrine/persistence",
  1544. "version": "3.2.0",
  1545. "source": {
  1546. "type": "git",
  1547. "url": "https://github.com/doctrine/persistence.git",
  1548. "reference": "63fee8c33bef740db6730eb2a750cd3da6495603"
  1549. },
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://api.github.com/repos/doctrine/persistence/zipball/63fee8c33bef740db6730eb2a750cd3da6495603",
  1553. "reference": "63fee8c33bef740db6730eb2a750cd3da6495603",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "doctrine/event-manager": "^1 || ^2",
  1558. "php": "^7.2 || ^8.0",
  1559. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1560. },
  1561. "conflict": {
  1562. "doctrine/common": "<2.10"
  1563. },
  1564. "require-dev": {
  1565. "composer/package-versions-deprecated": "^1.11",
  1566. "doctrine/coding-standard": "^11",
  1567. "doctrine/common": "^3.0",
  1568. "phpstan/phpstan": "1.9.4",
  1569. "phpstan/phpstan-phpunit": "^1",
  1570. "phpstan/phpstan-strict-rules": "^1.1",
  1571. "phpunit/phpunit": "^8.5 || ^9.5",
  1572. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1573. "vimeo/psalm": "4.30.0 || 5.3.0"
  1574. },
  1575. "type": "library",
  1576. "autoload": {
  1577. "psr-4": {
  1578. "Doctrine\\Persistence\\": "src/Persistence"
  1579. }
  1580. },
  1581. "notification-url": "https://packagist.org/downloads/",
  1582. "license": [
  1583. "MIT"
  1584. ],
  1585. "authors": [
  1586. {
  1587. "name": "Guilherme Blanco",
  1588. "email": "guilhermeblanco@gmail.com"
  1589. },
  1590. {
  1591. "name": "Roman Borschel",
  1592. "email": "roman@code-factory.org"
  1593. },
  1594. {
  1595. "name": "Benjamin Eberlei",
  1596. "email": "kontakt@beberlei.de"
  1597. },
  1598. {
  1599. "name": "Jonathan Wage",
  1600. "email": "jonwage@gmail.com"
  1601. },
  1602. {
  1603. "name": "Johannes Schmitt",
  1604. "email": "schmittjoh@gmail.com"
  1605. },
  1606. {
  1607. "name": "Marco Pivetta",
  1608. "email": "ocramius@gmail.com"
  1609. }
  1610. ],
  1611. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1612. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1613. "keywords": [
  1614. "mapper",
  1615. "object",
  1616. "odm",
  1617. "orm",
  1618. "persistence"
  1619. ],
  1620. "support": {
  1621. "issues": "https://github.com/doctrine/persistence/issues",
  1622. "source": "https://github.com/doctrine/persistence/tree/3.2.0"
  1623. },
  1624. "funding": [
  1625. {
  1626. "url": "https://www.doctrine-project.org/sponsorship.html",
  1627. "type": "custom"
  1628. },
  1629. {
  1630. "url": "https://www.patreon.com/phpdoctrine",
  1631. "type": "patreon"
  1632. },
  1633. {
  1634. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1635. "type": "tidelift"
  1636. }
  1637. ],
  1638. "time": "2023-05-17T18:32:04+00:00"
  1639. },
  1640. {
  1641. "name": "drupal/address",
  1642. "version": "1.12.0",
  1643. "source": {
  1644. "type": "git",
  1645. "url": "https://git.drupalcode.org/project/address.git",
  1646. "reference": "8.x-1.12"
  1647. },
  1648. "dist": {
  1649. "type": "zip",
  1650. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.12.zip",
  1651. "reference": "8.x-1.12",
  1652. "shasum": "67dd4699040aabf0cd6169e437706fa6a39b0b3a"
  1653. },
  1654. "require": {
  1655. "commerceguys/addressing": "^1.4.2",
  1656. "drupal/core": "^9.2 || ^10",
  1657. "php": "^7.3 || ^8.0"
  1658. },
  1659. "require-dev": {
  1660. "drupal/token": "^1.0"
  1661. },
  1662. "type": "drupal-module",
  1663. "extra": {
  1664. "drupal": {
  1665. "version": "8.x-1.12",
  1666. "datestamp": "1684710176",
  1667. "security-coverage": {
  1668. "status": "covered",
  1669. "message": "Covered by Drupal's security advisory policy"
  1670. }
  1671. }
  1672. },
  1673. "notification-url": "https://packages.drupal.org/8/downloads",
  1674. "license": [
  1675. "GPL-2.0-or-later"
  1676. ],
  1677. "authors": [
  1678. {
  1679. "name": "bojanz",
  1680. "homepage": "https://www.drupal.org/user/86106"
  1681. },
  1682. {
  1683. "name": "Centarro",
  1684. "homepage": "https://www.drupal.org/user/3661446"
  1685. },
  1686. {
  1687. "name": "dww",
  1688. "homepage": "https://www.drupal.org/user/46549"
  1689. },
  1690. {
  1691. "name": "googletorp",
  1692. "homepage": "https://www.drupal.org/user/386230"
  1693. },
  1694. {
  1695. "name": "jsacksick",
  1696. "homepage": "https://www.drupal.org/user/972218"
  1697. },
  1698. {
  1699. "name": "mglaman",
  1700. "homepage": "https://www.drupal.org/user/2416470"
  1701. },
  1702. {
  1703. "name": "rszrama",
  1704. "homepage": "https://www.drupal.org/user/49344"
  1705. }
  1706. ],
  1707. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1708. "homepage": "http://drupal.org/project/address",
  1709. "support": {
  1710. "source": "https://git.drupalcode.org/project/address"
  1711. }
  1712. },
  1713. {
  1714. "name": "drupal/admin_toolbar",
  1715. "version": "3.4.2",
  1716. "source": {
  1717. "type": "git",
  1718. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1719. "reference": "3.4.2"
  1720. },
  1721. "dist": {
  1722. "type": "zip",
  1723. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.4.2.zip",
  1724. "reference": "3.4.2",
  1725. "shasum": "f5a008e5c73f5a11c6c8067c0ea6ebb76aa33854"
  1726. },
  1727. "require": {
  1728. "drupal/core": "^9.2 || ^10"
  1729. },
  1730. "require-dev": {
  1731. "drupal/admin_toolbar_tools": "*"
  1732. },
  1733. "type": "drupal-module",
  1734. "extra": {
  1735. "drupal": {
  1736. "version": "3.4.2",
  1737. "datestamp": "1696006195",
  1738. "security-coverage": {
  1739. "status": "covered",
  1740. "message": "Covered by Drupal's security advisory policy"
  1741. }
  1742. }
  1743. },
  1744. "notification-url": "https://packages.drupal.org/8/downloads",
  1745. "license": [
  1746. "GPL-2.0-or-later"
  1747. ],
  1748. "authors": [
  1749. {
  1750. "name": "Wilfrid Roze (eme)",
  1751. "homepage": "https://www.drupal.org/u/eme",
  1752. "role": "Maintainer"
  1753. },
  1754. {
  1755. "name": "Romain Jarraud (romainj)",
  1756. "homepage": "https://www.drupal.org/u/romainj",
  1757. "role": "Maintainer"
  1758. },
  1759. {
  1760. "name": "Adrian Cid Almaguer (adriancid)",
  1761. "homepage": "https://www.drupal.org/u/adriancid",
  1762. "email": "adriancid@gmail.com",
  1763. "role": "Maintainer"
  1764. },
  1765. {
  1766. "name": "Mohamed Anis Taktak (matio89)",
  1767. "homepage": "https://www.drupal.org/u/matio89",
  1768. "role": "Maintainer"
  1769. },
  1770. {
  1771. "name": "matio89",
  1772. "homepage": "https://www.drupal.org/user/2320090"
  1773. },
  1774. {
  1775. "name": "Musa.thomas",
  1776. "homepage": "https://www.drupal.org/user/1213824"
  1777. },
  1778. {
  1779. "name": "romainj",
  1780. "homepage": "https://www.drupal.org/user/370706"
  1781. }
  1782. ],
  1783. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1784. "homepage": "http://drupal.org/project/admin_toolbar",
  1785. "keywords": [
  1786. "Drupal",
  1787. "Toolbar"
  1788. ],
  1789. "support": {
  1790. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1791. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1792. }
  1793. },
  1794. {
  1795. "name": "drupal/adminimal_theme",
  1796. "version": "1.7.0",
  1797. "source": {
  1798. "type": "git",
  1799. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1800. "reference": "8.x-1.7"
  1801. },
  1802. "dist": {
  1803. "type": "zip",
  1804. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1805. "reference": "8.x-1.7",
  1806. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1807. },
  1808. "require": {
  1809. "drupal/core": "^9.3 || ^10",
  1810. "drupal/seven": "~1.0"
  1811. },
  1812. "type": "drupal-theme",
  1813. "extra": {
  1814. "drupal": {
  1815. "version": "8.x-1.7",
  1816. "datestamp": "1691504486",
  1817. "security-coverage": {
  1818. "status": "covered",
  1819. "message": "Covered by Drupal's security advisory policy"
  1820. }
  1821. }
  1822. },
  1823. "notification-url": "https://packages.drupal.org/8/downloads",
  1824. "license": [
  1825. "GPL-2.0+"
  1826. ],
  1827. "authors": [
  1828. {
  1829. "name": "ANDiTKO",
  1830. "homepage": "https://www.drupal.org/user/1428124"
  1831. },
  1832. {
  1833. "name": "andrey.troeglazov",
  1834. "homepage": "https://www.drupal.org/user/3145389"
  1835. },
  1836. {
  1837. "name": "realityloop",
  1838. "homepage": "https://www.drupal.org/user/139189"
  1839. },
  1840. {
  1841. "name": "rjjakes",
  1842. "homepage": "https://www.drupal.org/user/3457245"
  1843. }
  1844. ],
  1845. "description": "Drupal administration theme with modern minimalist design.",
  1846. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1847. "support": {
  1848. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1849. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1850. }
  1851. },
  1852. {
  1853. "name": "drupal/advanced_text_formatter",
  1854. "version": "3.0.0-rc1",
  1855. "source": {
  1856. "type": "git",
  1857. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  1858. "reference": "3.0.0-rc1"
  1859. },
  1860. "dist": {
  1861. "type": "zip",
  1862. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-3.0.0-rc1.zip",
  1863. "reference": "3.0.0-rc1",
  1864. "shasum": "394729127f44a6398e29f5e5702e6def00a06e20"
  1865. },
  1866. "require": {
  1867. "drupal/core": "^8 || ^9 || ^10"
  1868. },
  1869. "type": "drupal-module",
  1870. "extra": {
  1871. "drupal": {
  1872. "version": "3.0.0-rc1",
  1873. "datestamp": "1675163352",
  1874. "security-coverage": {
  1875. "status": "not-covered",
  1876. "message": "RC releases are not covered by Drupal security advisories."
  1877. }
  1878. }
  1879. },
  1880. "notification-url": "https://packages.drupal.org/8/downloads",
  1881. "license": [
  1882. "GPL-2.0-or-later"
  1883. ],
  1884. "authors": [
  1885. {
  1886. "name": "azovsky",
  1887. "homepage": "https://www.drupal.org/user/330533"
  1888. },
  1889. {
  1890. "name": "thmnhat",
  1891. "homepage": "https://www.drupal.org/user/998946"
  1892. }
  1893. ],
  1894. "description": "Provides an additional formatter for text field, text area and text format.",
  1895. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  1896. "support": {
  1897. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  1898. }
  1899. },
  1900. {
  1901. "name": "drupal/audiofield",
  1902. "version": "1.13.0",
  1903. "source": {
  1904. "type": "git",
  1905. "url": "https://git.drupalcode.org/project/audiofield.git",
  1906. "reference": "8.x-1.13"
  1907. },
  1908. "dist": {
  1909. "type": "zip",
  1910. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1911. "reference": "8.x-1.13",
  1912. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1913. },
  1914. "require": {
  1915. "drupal/core": "^8 || ^9 || ^10"
  1916. },
  1917. "type": "drupal-module",
  1918. "extra": {
  1919. "drupal": {
  1920. "version": "8.x-1.13",
  1921. "datestamp": "1681143245",
  1922. "security-coverage": {
  1923. "status": "covered",
  1924. "message": "Covered by Drupal's security advisory policy"
  1925. }
  1926. },
  1927. "drush": {
  1928. "services": {
  1929. "drush.services.yml": "^9"
  1930. }
  1931. }
  1932. },
  1933. "notification-url": "https://packages.drupal.org/8/downloads",
  1934. "license": [
  1935. "GPL-2.0-or-later"
  1936. ],
  1937. "authors": [
  1938. {
  1939. "name": "Daniel Moberly",
  1940. "homepage": "https://www.drupal.org/u/danielmoberly",
  1941. "role": "Maintainer"
  1942. },
  1943. {
  1944. "name": "tamerzg",
  1945. "homepage": "https://www.drupal.org/user/464564"
  1946. }
  1947. ],
  1948. "description": "AudioField Module",
  1949. "homepage": "https://www.drupal.org/project/audiofield",
  1950. "support": {
  1951. "source": "https://git.drupalcode.org/project/audiofield",
  1952. "issues": "https://www.drupal.org/project/issues/audiofield"
  1953. }
  1954. },
  1955. {
  1956. "name": "drupal/autocomplete_deluxe",
  1957. "version": "2.0.3",
  1958. "source": {
  1959. "type": "git",
  1960. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  1961. "reference": "2.0.3"
  1962. },
  1963. "dist": {
  1964. "type": "zip",
  1965. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.0.3.zip",
  1966. "reference": "2.0.3",
  1967. "shasum": "686bb49e7366d59f7eef7acf8906ba907898497f"
  1968. },
  1969. "require": {
  1970. "drupal/core": "^8 || ^9 || ^10"
  1971. },
  1972. "type": "drupal-module",
  1973. "extra": {
  1974. "drupal": {
  1975. "version": "2.0.3",
  1976. "datestamp": "1673454732",
  1977. "security-coverage": {
  1978. "status": "covered",
  1979. "message": "Covered by Drupal's security advisory policy"
  1980. }
  1981. }
  1982. },
  1983. "notification-url": "https://packages.drupal.org/8/downloads",
  1984. "license": [
  1985. "GPL-2.0-or-later"
  1986. ],
  1987. "authors": [
  1988. {
  1989. "name": "Vardot",
  1990. "homepage": "https://www.drupal.org/vardot",
  1991. "role": "Maintenance for D8 and D9 versions"
  1992. },
  1993. {
  1994. "name": "Mediacurrent",
  1995. "homepage": "https://www.drupal.org/mediacurrent",
  1996. "role": "Supporting organization"
  1997. },
  1998. {
  1999. "name": "Mohammed J. Razem",
  2000. "homepage": "https://www.drupal.org/user/255384"
  2001. },
  2002. {
  2003. "name": "mpriscella",
  2004. "homepage": "https://www.drupal.org/user/2354820"
  2005. },
  2006. {
  2007. "name": "Rajab Natshah",
  2008. "homepage": "https://www.drupal.org/user/1414312"
  2009. },
  2010. {
  2011. "name": "sepgil",
  2012. "homepage": "https://www.drupal.org/user/512828"
  2013. }
  2014. ],
  2015. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2016. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2017. "support": {
  2018. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2019. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2020. }
  2021. },
  2022. {
  2023. "name": "drupal/autologout",
  2024. "version": "1.4.0",
  2025. "source": {
  2026. "type": "git",
  2027. "url": "https://git.drupalcode.org/project/autologout.git",
  2028. "reference": "8.x-1.4"
  2029. },
  2030. "dist": {
  2031. "type": "zip",
  2032. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.4.zip",
  2033. "reference": "8.x-1.4",
  2034. "shasum": "f751062f463d0b52df81764f67cee3a0be97825e"
  2035. },
  2036. "require": {
  2037. "drupal/core": "^9.2 || ^10"
  2038. },
  2039. "type": "drupal-module",
  2040. "extra": {
  2041. "drupal": {
  2042. "version": "8.x-1.4",
  2043. "datestamp": "1658168199",
  2044. "security-coverage": {
  2045. "status": "covered",
  2046. "message": "Covered by Drupal's security advisory policy"
  2047. }
  2048. }
  2049. },
  2050. "notification-url": "https://packages.drupal.org/8/downloads",
  2051. "license": [
  2052. "GPL-2.0-or-later"
  2053. ],
  2054. "authors": [
  2055. {
  2056. "name": "AjitS",
  2057. "homepage": "https://www.drupal.org/user/981944"
  2058. },
  2059. {
  2060. "name": "AjK",
  2061. "homepage": "https://www.drupal.org/user/39030"
  2062. },
  2063. {
  2064. "name": "boshtian",
  2065. "homepage": "https://www.drupal.org/user/1773456"
  2066. },
  2067. {
  2068. "name": "dandrews",
  2069. "homepage": "https://www.drupal.org/user/2014490"
  2070. },
  2071. {
  2072. "name": "darksnow",
  2073. "homepage": "https://www.drupal.org/user/391915"
  2074. },
  2075. {
  2076. "name": "japerry",
  2077. "homepage": "https://www.drupal.org/user/45640"
  2078. },
  2079. {
  2080. "name": "johnennew",
  2081. "homepage": "https://www.drupal.org/user/1150042"
  2082. },
  2083. {
  2084. "name": "jrglasgow",
  2085. "homepage": "https://www.drupal.org/user/36590"
  2086. },
  2087. {
  2088. "name": "kmasood",
  2089. "homepage": "https://www.drupal.org/user/1262860"
  2090. },
  2091. {
  2092. "name": "levelos",
  2093. "homepage": "https://www.drupal.org/user/54135"
  2094. },
  2095. {
  2096. "name": "prabeen.giri",
  2097. "homepage": "https://www.drupal.org/user/913078"
  2098. },
  2099. {
  2100. "name": "str8",
  2101. "homepage": "https://www.drupal.org/user/2865063"
  2102. }
  2103. ],
  2104. "description": "Adds automated timed logout.",
  2105. "homepage": "http://drupal.org/project/autologout",
  2106. "support": {
  2107. "source": "https://git.drupalcode.org/project/autologout"
  2108. }
  2109. },
  2110. {
  2111. "name": "drupal/better_exposed_filters",
  2112. "version": "6.0.3",
  2113. "source": {
  2114. "type": "git",
  2115. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2116. "reference": "6.0.3"
  2117. },
  2118. "dist": {
  2119. "type": "zip",
  2120. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.3.zip",
  2121. "reference": "6.0.3",
  2122. "shasum": "b5c20207d7679542bb81955771956c18083e6e0b"
  2123. },
  2124. "require": {
  2125. "drupal/core": "^9 || ^10",
  2126. "drupal/jquery_ui": "^1.6",
  2127. "drupal/jquery_ui_datepicker": "^2.0",
  2128. "drupal/jquery_ui_slider": "^2.0.0",
  2129. "drupal/jquery_ui_touch_punch": "^1.0"
  2130. },
  2131. "type": "drupal-module",
  2132. "extra": {
  2133. "drupal": {
  2134. "version": "6.0.3",
  2135. "datestamp": "1671541877",
  2136. "security-coverage": {
  2137. "status": "covered",
  2138. "message": "Covered by Drupal's security advisory policy"
  2139. }
  2140. }
  2141. },
  2142. "notification-url": "https://packages.drupal.org/8/downloads",
  2143. "license": [
  2144. "GPL-2.0-or-later"
  2145. ],
  2146. "authors": [
  2147. {
  2148. "name": "Mike Keran",
  2149. "homepage": "https://www.drupal.org/u/mikeker"
  2150. },
  2151. {
  2152. "name": "Martin Keereman",
  2153. "homepage": "https://www.drupal.org/u/etroid"
  2154. },
  2155. {
  2156. "name": "Neslee Canil Pinto",
  2157. "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
  2158. },
  2159. {
  2160. "name": "mikeker",
  2161. "homepage": "https://www.drupal.org/user/192273"
  2162. },
  2163. {
  2164. "name": "Neslee Canil Pinto",
  2165. "homepage": "https://www.drupal.org/user/3580850"
  2166. },
  2167. {
  2168. "name": "podarok",
  2169. "homepage": "https://www.drupal.org/user/116002"
  2170. },
  2171. {
  2172. "name": "rlhawk",
  2173. "homepage": "https://www.drupal.org/user/352283"
  2174. }
  2175. ],
  2176. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2177. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2178. "support": {
  2179. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2180. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2181. }
  2182. },
  2183. {
  2184. "name": "drupal/block_class",
  2185. "version": "2.0.11",
  2186. "source": {
  2187. "type": "git",
  2188. "url": "https://git.drupalcode.org/project/block_class.git",
  2189. "reference": "2.0.11"
  2190. },
  2191. "dist": {
  2192. "type": "zip",
  2193. "url": "https://ftp.drupal.org/files/projects/block_class-2.0.11.zip",
  2194. "reference": "2.0.11",
  2195. "shasum": "bd098ef0071b5baca1248c0deaa9bbedc0ddcaf4"
  2196. },
  2197. "require": {
  2198. "drupal/core": "^8 || ^9 || ^10"
  2199. },
  2200. "type": "drupal-module",
  2201. "extra": {
  2202. "drupal": {
  2203. "version": "2.0.11",
  2204. "datestamp": "1672065313",
  2205. "security-coverage": {
  2206. "status": "covered",
  2207. "message": "Covered by Drupal's security advisory policy"
  2208. }
  2209. }
  2210. },
  2211. "notification-url": "https://packages.drupal.org/8/downloads",
  2212. "license": [
  2213. "GPL-2.0-or-later"
  2214. ],
  2215. "authors": [
  2216. {
  2217. "name": "Todd Nienkerk",
  2218. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2219. "role": "Maintainer"
  2220. },
  2221. {
  2222. "name": "Renato Gonçalves (RenatoG)",
  2223. "homepage": "https://www.drupal.org/u/RenatoG",
  2224. "role": "Maintainer"
  2225. },
  2226. {
  2227. "name": "Neslee Canil Pinto",
  2228. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2229. "role": "Maintainer"
  2230. },
  2231. {
  2232. "name": "Aaron Stanush",
  2233. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2234. "role": "Maintainer"
  2235. },
  2236. {
  2237. "name": "David Suissa (DYdave)",
  2238. "homepage": "https://www.drupal.org/u/DYdave",
  2239. "role": "Maintainer"
  2240. },
  2241. {
  2242. "name": "Four Kitchens",
  2243. "homepage": "https://www.drupal.org/user/358502",
  2244. "role": "Maintainer"
  2245. },
  2246. {
  2247. "name": "berenddeboer",
  2248. "homepage": "https://www.drupal.org/u/berenddeboer",
  2249. "role": "Maintainer"
  2250. },
  2251. {
  2252. "name": "elliotttf",
  2253. "homepage": "https://www.drupal.org/u/elliotttf",
  2254. "role": "Maintainer"
  2255. },
  2256. {
  2257. "name": "Michal Minecki (mirzu)",
  2258. "homepage": "https://www.drupal.org/u/mirzu",
  2259. "role": "Maintainer"
  2260. },
  2261. {
  2262. "name": "Patrick Coffey (pcoffey)",
  2263. "homepage": "https://www.drupal.org/u/pcoffey",
  2264. "role": "Maintainer"
  2265. },
  2266. {
  2267. "name": "Taylor Smith (tsmith512)",
  2268. "homepage": "https://www.drupal.org/u/tsmith512",
  2269. "role": "Maintainer"
  2270. }
  2271. ],
  2272. "description": "Allows assigning classes to Blocks.",
  2273. "homepage": "https://www.drupal.org/project/block_class",
  2274. "keywords": [
  2275. "Drupal"
  2276. ],
  2277. "support": {
  2278. "source": "https://git.drupalcode.org/project/block_class",
  2279. "issues": "https://www.drupal.org/project/issues/block_class",
  2280. "irc": "irc://irc.freenode.org/drupal-contribute"
  2281. }
  2282. },
  2283. {
  2284. "name": "drupal/bulkdelete",
  2285. "version": "dev-1.x",
  2286. "source": {
  2287. "type": "git",
  2288. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2289. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  2290. },
  2291. "require": {
  2292. "drupal/core": "^8.7.7 || ^9 || ^10"
  2293. },
  2294. "type": "drupal-module",
  2295. "extra": {
  2296. "branch-alias": {
  2297. "dev-1.x": "1.x-dev"
  2298. },
  2299. "drupal": {
  2300. "version": "8.x-1.x-dev",
  2301. "datestamp": "1655322426",
  2302. "security-coverage": {
  2303. "status": "not-covered",
  2304. "message": "Dev releases are not covered by Drupal security advisories."
  2305. }
  2306. }
  2307. },
  2308. "notification-url": "https://packages.drupal.org/8/downloads",
  2309. "license": [
  2310. "GPL-2.0-or-later"
  2311. ],
  2312. "authors": [
  2313. {
  2314. "name": "Kars-T",
  2315. "homepage": "https://www.drupal.org/user/224499"
  2316. },
  2317. {
  2318. "name": "Rahul Seth",
  2319. "homepage": "https://www.drupal.org/user/2694359"
  2320. },
  2321. {
  2322. "name": "adriancid",
  2323. "homepage": "https://www.drupal.org/user/1962106"
  2324. },
  2325. {
  2326. "name": "robertDouglass",
  2327. "homepage": "https://www.drupal.org/user/5449"
  2328. }
  2329. ],
  2330. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2331. "homepage": "https://www.drupal.org/project/bulkdelete",
  2332. "support": {
  2333. "source": "https://git.drupalcode.org/project/bulkdelete"
  2334. }
  2335. },
  2336. {
  2337. "name": "drupal/config_devel",
  2338. "version": "dev-1.x",
  2339. "source": {
  2340. "type": "git",
  2341. "url": "https://git.drupalcode.org/project/config_devel.git",
  2342. "reference": "d0a98704eb6f9d4bdfe8e91e678b895648bb3c83"
  2343. },
  2344. "require": {
  2345. "drupal/core": "^9.3 || ^10"
  2346. },
  2347. "type": "drupal-module",
  2348. "extra": {
  2349. "branch-alias": {
  2350. "dev-1.x": "1.x-dev"
  2351. },
  2352. "drupal": {
  2353. "version": "8.x-1.8+2-dev",
  2354. "datestamp": "1678264720",
  2355. "security-coverage": {
  2356. "status": "not-covered",
  2357. "message": "Dev releases are not covered by Drupal security advisories."
  2358. }
  2359. }
  2360. },
  2361. "notification-url": "https://packages.drupal.org/8/downloads",
  2362. "license": [
  2363. "GPL-2.0+"
  2364. ],
  2365. "authors": [
  2366. {
  2367. "name": "alexpott",
  2368. "homepage": "https://www.drupal.org/user/157725"
  2369. },
  2370. {
  2371. "name": "benjy",
  2372. "homepage": "https://www.drupal.org/user/1852732"
  2373. },
  2374. {
  2375. "name": "chx",
  2376. "homepage": "https://www.drupal.org/user/9446"
  2377. },
  2378. {
  2379. "name": "joachim",
  2380. "homepage": "https://www.drupal.org/user/107701"
  2381. },
  2382. {
  2383. "name": "nedjo",
  2384. "homepage": "https://www.drupal.org/user/4481"
  2385. },
  2386. {
  2387. "name": "vijaycs85",
  2388. "homepage": "https://www.drupal.org/user/93488"
  2389. }
  2390. ],
  2391. "description": "Helps developers work with configuration.",
  2392. "homepage": "https://www.drupal.org/project/config_devel",
  2393. "support": {
  2394. "source": "https://git.drupalcode.org/project/config_devel"
  2395. }
  2396. },
  2397. {
  2398. "name": "drupal/config_filter",
  2399. "version": "2.6.0",
  2400. "source": {
  2401. "type": "git",
  2402. "url": "https://git.drupalcode.org/project/config_filter.git",
  2403. "reference": "8.x-2.6"
  2404. },
  2405. "dist": {
  2406. "type": "zip",
  2407. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.6.zip",
  2408. "reference": "8.x-2.6",
  2409. "shasum": "fd1a057a402436fc906c63bf0a74722f73b9b155"
  2410. },
  2411. "require": {
  2412. "drupal/core": "^8.8 || ^9 || ^10"
  2413. },
  2414. "conflict": {
  2415. "drush/drush": "<10"
  2416. },
  2417. "suggest": {
  2418. "drupal/config_split": "Split site configuration for different environments."
  2419. },
  2420. "type": "drupal-module",
  2421. "extra": {
  2422. "drupal": {
  2423. "version": "8.x-2.6",
  2424. "datestamp": "1698308577",
  2425. "security-coverage": {
  2426. "status": "covered",
  2427. "message": "Covered by Drupal's security advisory policy"
  2428. }
  2429. }
  2430. },
  2431. "notification-url": "https://packages.drupal.org/8/downloads",
  2432. "license": [
  2433. "GPL-2.0-or-later"
  2434. ],
  2435. "authors": [
  2436. {
  2437. "name": "Fabian Bircher",
  2438. "homepage": "https://www.drupal.org/u/bircher",
  2439. "email": "opensource@fabianbircher.com",
  2440. "role": "Maintainer"
  2441. },
  2442. {
  2443. "name": "Nuvole Web",
  2444. "homepage": "http://nuvole.org",
  2445. "email": "info@nuvole.org",
  2446. "role": "Maintainer"
  2447. },
  2448. {
  2449. "name": "pescetti",
  2450. "homepage": "https://www.drupal.org/user/436244"
  2451. }
  2452. ],
  2453. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2454. "homepage": "https://www.drupal.org/project/config_filter",
  2455. "keywords": [
  2456. "Drupal",
  2457. "configuration",
  2458. "configuration management"
  2459. ],
  2460. "support": {
  2461. "source": "https://git.drupalcode.org/project/config_filter",
  2462. "issues": "https://www.drupal.org/project/issues/config_filter",
  2463. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2464. }
  2465. },
  2466. {
  2467. "name": "drupal/config_ignore",
  2468. "version": "2.4.0",
  2469. "source": {
  2470. "type": "git",
  2471. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2472. "reference": "8.x-2.4"
  2473. },
  2474. "dist": {
  2475. "type": "zip",
  2476. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.4.zip",
  2477. "reference": "8.x-2.4",
  2478. "shasum": "e0e45dde2d6927c5d26de59f352792fb6cf26554"
  2479. },
  2480. "require": {
  2481. "drupal/config_filter": "^1 || ^2",
  2482. "drupal/core": "^8 || ^9 || ^10"
  2483. },
  2484. "type": "drupal-module",
  2485. "extra": {
  2486. "drupal": {
  2487. "version": "8.x-2.4",
  2488. "datestamp": "1676045435",
  2489. "security-coverage": {
  2490. "status": "covered",
  2491. "message": "Covered by Drupal's security advisory policy"
  2492. }
  2493. }
  2494. },
  2495. "notification-url": "https://packages.drupal.org/8/downloads",
  2496. "license": [
  2497. "GPL-2.0-or-later"
  2498. ],
  2499. "authors": [
  2500. {
  2501. "name": "Tommy Lynge Jørgensen",
  2502. "homepage": "https://www.drupal.org/u/tlyngej",
  2503. "email": "tlyngej@gmail.com",
  2504. "role": "Maintainer"
  2505. },
  2506. {
  2507. "name": "Fabian Bircher",
  2508. "homepage": "https://www.drupal.org/u/bircher",
  2509. "role": "Maintainer"
  2510. },
  2511. {
  2512. "name": "tlyngej",
  2513. "homepage": "https://www.drupal.org/user/413139"
  2514. }
  2515. ],
  2516. "description": "Ignore certain configuration during import.",
  2517. "homepage": "http://drupal.org/project/config_ignore",
  2518. "support": {
  2519. "source": "https://git.drupalcode.org/project/config_ignore",
  2520. "issues": "https://drupal.org/project/config_ignore",
  2521. "irc": "irc://irc.freenode.org/drupal-contribute"
  2522. }
  2523. },
  2524. {
  2525. "name": "drupal/config_update",
  2526. "version": "2.0.0-alpha3",
  2527. "source": {
  2528. "type": "git",
  2529. "url": "https://git.drupalcode.org/project/config_update.git",
  2530. "reference": "2.0.0-alpha3"
  2531. },
  2532. "dist": {
  2533. "type": "zip",
  2534. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha3.zip",
  2535. "reference": "2.0.0-alpha3",
  2536. "shasum": "c35e81e8fb77efdff5ddca3a87116ea0c522a7e2"
  2537. },
  2538. "require": {
  2539. "drupal/core": "^9.4 || ^10"
  2540. },
  2541. "type": "drupal-module",
  2542. "extra": {
  2543. "drupal": {
  2544. "version": "2.0.0-alpha3",
  2545. "datestamp": "1683807608",
  2546. "security-coverage": {
  2547. "status": "not-covered",
  2548. "message": "Alpha releases are not covered by Drupal security advisories."
  2549. }
  2550. }
  2551. },
  2552. "notification-url": "https://packages.drupal.org/8/downloads",
  2553. "license": [
  2554. "GPL-2.0-or-later"
  2555. ],
  2556. "authors": [
  2557. {
  2558. "name": "codebymikey",
  2559. "homepage": "https://www.drupal.org/user/3573206"
  2560. },
  2561. {
  2562. "name": "Pasqualle",
  2563. "homepage": "https://www.drupal.org/user/80733"
  2564. }
  2565. ],
  2566. "description": "Provides basic revert and update functionality for other modules.",
  2567. "homepage": "https://www.drupal.org/project/config_update",
  2568. "support": {
  2569. "source": "https://git.drupalcode.org/project/config_update"
  2570. }
  2571. },
  2572. {
  2573. "name": "drupal/content_lock",
  2574. "version": "2.3.0",
  2575. "source": {
  2576. "type": "git",
  2577. "url": "https://git.drupalcode.org/project/content_lock.git",
  2578. "reference": "8.x-2.3"
  2579. },
  2580. "dist": {
  2581. "type": "zip",
  2582. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.3.zip",
  2583. "reference": "8.x-2.3",
  2584. "shasum": "0e8343f82330899baef65aa85d9994154e29506f"
  2585. },
  2586. "require": {
  2587. "drupal/core": "^9.0 || ^10.0"
  2588. },
  2589. "type": "drupal-module",
  2590. "extra": {
  2591. "drupal": {
  2592. "version": "8.x-2.3",
  2593. "datestamp": "1668427342",
  2594. "security-coverage": {
  2595. "status": "covered",
  2596. "message": "Covered by Drupal's security advisory policy"
  2597. }
  2598. }
  2599. },
  2600. "notification-url": "https://packages.drupal.org/8/downloads",
  2601. "license": [
  2602. "GPL-2.0-or-later"
  2603. ],
  2604. "authors": [
  2605. {
  2606. "name": "alexpott",
  2607. "homepage": "https://www.drupal.org/user/157725"
  2608. },
  2609. {
  2610. "name": "chr.fritsch",
  2611. "homepage": "https://www.drupal.org/user/2103716"
  2612. },
  2613. {
  2614. "name": "daniel.bosen",
  2615. "homepage": "https://www.drupal.org/user/404865"
  2616. },
  2617. {
  2618. "name": "ergonlogic",
  2619. "homepage": "https://www.drupal.org/user/368613"
  2620. },
  2621. {
  2622. "name": "mfb",
  2623. "homepage": "https://www.drupal.org/user/12302"
  2624. },
  2625. {
  2626. "name": "pandaski",
  2627. "homepage": "https://www.drupal.org/user/1987218"
  2628. },
  2629. {
  2630. "name": "volkerk",
  2631. "homepage": "https://www.drupal.org/user/57527"
  2632. }
  2633. ],
  2634. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  2635. "homepage": "https://www.drupal.org/project/content_lock",
  2636. "support": {
  2637. "source": "https://git.drupalcode.org/project/content_lock"
  2638. }
  2639. },
  2640. {
  2641. "name": "drupal/context",
  2642. "version": "5.0.0-rc1",
  2643. "source": {
  2644. "type": "git",
  2645. "url": "https://git.drupalcode.org/project/context.git",
  2646. "reference": "5.0.0-rc1"
  2647. },
  2648. "dist": {
  2649. "type": "zip",
  2650. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc1.zip",
  2651. "reference": "5.0.0-rc1",
  2652. "shasum": "ae1549bc5e5c75c0c6799b7b737d7391cfc5be73"
  2653. },
  2654. "require": {
  2655. "drupal/core": "^9.3 || ^10"
  2656. },
  2657. "type": "drupal-module",
  2658. "extra": {
  2659. "drupal": {
  2660. "version": "5.0.0-rc1",
  2661. "datestamp": "1677054769",
  2662. "security-coverage": {
  2663. "status": "not-covered",
  2664. "message": "RC releases are not covered by Drupal security advisories."
  2665. }
  2666. }
  2667. },
  2668. "notification-url": "https://packages.drupal.org/8/downloads",
  2669. "license": [
  2670. "MIT"
  2671. ],
  2672. "authors": [
  2673. {
  2674. "name": "Christoffer Palm",
  2675. "homepage": "http://www.oddhill.se/",
  2676. "email": "christoffer.palm@oddhill.se",
  2677. "role": "Developer"
  2678. },
  2679. {
  2680. "name": "boshtian",
  2681. "homepage": "https://www.drupal.org/user/1773456"
  2682. },
  2683. {
  2684. "name": "colan",
  2685. "homepage": "https://www.drupal.org/user/58704"
  2686. },
  2687. {
  2688. "name": "emanaton",
  2689. "homepage": "https://www.drupal.org/user/120853"
  2690. },
  2691. {
  2692. "name": "febbraro",
  2693. "homepage": "https://www.drupal.org/user/43670"
  2694. },
  2695. {
  2696. "name": "fizk",
  2697. "homepage": "https://www.drupal.org/user/473174"
  2698. },
  2699. {
  2700. "name": "hass",
  2701. "homepage": "https://www.drupal.org/user/85918"
  2702. },
  2703. {
  2704. "name": "hefox",
  2705. "homepage": "https://www.drupal.org/user/426416"
  2706. },
  2707. {
  2708. "name": "jmiccolis",
  2709. "homepage": "https://www.drupal.org/user/31731"
  2710. },
  2711. {
  2712. "name": "Kristen Pol",
  2713. "homepage": "https://www.drupal.org/user/8389"
  2714. },
  2715. {
  2716. "name": "nedjo",
  2717. "homepage": "https://www.drupal.org/user/4481"
  2718. },
  2719. {
  2720. "name": "NormySan",
  2721. "homepage": "https://www.drupal.org/user/112352"
  2722. },
  2723. {
  2724. "name": "patricksettle",
  2725. "homepage": "https://www.drupal.org/user/26618"
  2726. },
  2727. {
  2728. "name": "paulocs",
  2729. "homepage": "https://www.drupal.org/user/3640109"
  2730. },
  2731. {
  2732. "name": "Steven Jones",
  2733. "homepage": "https://www.drupal.org/user/99644"
  2734. },
  2735. {
  2736. "name": "tekante",
  2737. "homepage": "https://www.drupal.org/user/640024"
  2738. },
  2739. {
  2740. "name": "yhahn",
  2741. "homepage": "https://www.drupal.org/user/264833"
  2742. }
  2743. ],
  2744. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2745. "homepage": "https://github.com/oddhill/context",
  2746. "keywords": [
  2747. "Drupal",
  2748. "block",
  2749. "conditions",
  2750. "context",
  2751. "visibility"
  2752. ],
  2753. "support": {
  2754. "source": "https://github.com/oddhill/context",
  2755. "issues": "https://github.com/oddhill/context/issues",
  2756. "docs": "https://github.com/oddhill/context"
  2757. }
  2758. },
  2759. {
  2760. "name": "drupal/core",
  2761. "version": "10.1.6",
  2762. "source": {
  2763. "type": "git",
  2764. "url": "https://github.com/drupal/core.git",
  2765. "reference": "33695caf467e3e1e8c75d42215df57bee31be9ec"
  2766. },
  2767. "dist": {
  2768. "type": "zip",
  2769. "url": "https://api.github.com/repos/drupal/core/zipball/33695caf467e3e1e8c75d42215df57bee31be9ec",
  2770. "reference": "33695caf467e3e1e8c75d42215df57bee31be9ec",
  2771. "shasum": ""
  2772. },
  2773. "require": {
  2774. "asm89/stack-cors": "^2.1",
  2775. "composer-runtime-api": "^2.1",
  2776. "composer/semver": "^3.3",
  2777. "doctrine/annotations": "^1.14",
  2778. "egulias/email-validator": "^3.2.1|^4.0",
  2779. "ext-date": "*",
  2780. "ext-dom": "*",
  2781. "ext-filter": "*",
  2782. "ext-gd": "*",
  2783. "ext-hash": "*",
  2784. "ext-json": "*",
  2785. "ext-pcre": "*",
  2786. "ext-pdo": "*",
  2787. "ext-session": "*",
  2788. "ext-simplexml": "*",
  2789. "ext-spl": "*",
  2790. "ext-tokenizer": "*",
  2791. "ext-xml": "*",
  2792. "guzzlehttp/guzzle": "^7.5",
  2793. "guzzlehttp/psr7": "^2.4.5",
  2794. "masterminds/html5": "^2.7",
  2795. "mck89/peast": "^1.14",
  2796. "pear/archive_tar": "^1.4.14",
  2797. "php": ">=8.1.0",
  2798. "psr/log": "^3.0",
  2799. "sebastian/diff": "^4",
  2800. "symfony/console": "^6.3",
  2801. "symfony/dependency-injection": "^6.3",
  2802. "symfony/event-dispatcher": "^6.3",
  2803. "symfony/http-foundation": "^6.3",
  2804. "symfony/http-kernel": "^6.3",
  2805. "symfony/mime": "^6.3",
  2806. "symfony/polyfill-iconv": "^1.26",
  2807. "symfony/process": "^6.3",
  2808. "symfony/psr-http-message-bridge": "^2.1",
  2809. "symfony/routing": "^6.3",
  2810. "symfony/serializer": "^6.3",
  2811. "symfony/validator": "^6.3",
  2812. "symfony/yaml": "^6.3",
  2813. "twig/twig": "^3.5.0"
  2814. },
  2815. "conflict": {
  2816. "drush/drush": "<8.1.10"
  2817. },
  2818. "replace": {
  2819. "drupal/core-annotation": "self.version",
  2820. "drupal/core-assertion": "self.version",
  2821. "drupal/core-class-finder": "self.version",
  2822. "drupal/core-datetime": "self.version",
  2823. "drupal/core-dependency-injection": "self.version",
  2824. "drupal/core-diff": "self.version",
  2825. "drupal/core-discovery": "self.version",
  2826. "drupal/core-event-dispatcher": "self.version",
  2827. "drupal/core-file-cache": "self.version",
  2828. "drupal/core-file-security": "self.version",
  2829. "drupal/core-filesystem": "self.version",
  2830. "drupal/core-front-matter": "self.version",
  2831. "drupal/core-gettext": "self.version",
  2832. "drupal/core-graph": "self.version",
  2833. "drupal/core-http-foundation": "self.version",
  2834. "drupal/core-php-storage": "self.version",
  2835. "drupal/core-plugin": "self.version",
  2836. "drupal/core-proxy-builder": "self.version",
  2837. "drupal/core-render": "self.version",
  2838. "drupal/core-serialization": "self.version",
  2839. "drupal/core-transliteration": "self.version",
  2840. "drupal/core-utility": "self.version",
  2841. "drupal/core-uuid": "self.version",
  2842. "drupal/core-version": "self.version"
  2843. },
  2844. "suggest": {
  2845. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  2846. },
  2847. "type": "drupal-core",
  2848. "extra": {
  2849. "drupal-scaffold": {
  2850. "file-mapping": {
  2851. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2852. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2853. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2854. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2855. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2856. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2857. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2858. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2859. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2860. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2861. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  2862. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2863. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2864. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2865. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2866. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2867. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2868. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2869. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2870. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  2871. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2872. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2873. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  2874. }
  2875. }
  2876. },
  2877. "autoload": {
  2878. "files": [
  2879. "includes/bootstrap.inc"
  2880. ],
  2881. "psr-4": {
  2882. "Drupal\\Core\\": "lib/Drupal/Core",
  2883. "Drupal\\Component\\": "lib/Drupal/Component"
  2884. },
  2885. "classmap": [
  2886. "lib/Drupal.php",
  2887. "lib/Drupal/Component/DependencyInjection/Container.php",
  2888. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  2889. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  2890. "lib/Drupal/Component/Utility/Timer.php",
  2891. "lib/Drupal/Component/Utility/Unicode.php",
  2892. "lib/Drupal/Core/Cache/Cache.php",
  2893. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  2894. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  2895. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  2896. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  2897. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  2898. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  2899. "lib/Drupal/Core/Database/Connection.php",
  2900. "lib/Drupal/Core/Database/Database.php",
  2901. "lib/Drupal/Core/Database/StatementInterface.php",
  2902. "lib/Drupal/Core/DependencyInjection/Container.php",
  2903. "lib/Drupal/Core/DrupalKernel.php",
  2904. "lib/Drupal/Core/DrupalKernelInterface.php",
  2905. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  2906. "lib/Drupal/Core/Site/Settings.php"
  2907. ]
  2908. },
  2909. "notification-url": "https://packagist.org/downloads/",
  2910. "license": [
  2911. "GPL-2.0-or-later"
  2912. ],
  2913. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  2914. "support": {
  2915. "source": "https://github.com/drupal/core/tree/10.1.6"
  2916. },
  2917. "time": "2023-11-01T11:59:20+00:00"
  2918. },
  2919. {
  2920. "name": "drupal/core-composer-scaffold",
  2921. "version": "10.1.6",
  2922. "source": {
  2923. "type": "git",
  2924. "url": "https://github.com/drupal/core-composer-scaffold.git",
  2925. "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51"
  2926. },
  2927. "dist": {
  2928. "type": "zip",
  2929. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51",
  2930. "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51",
  2931. "shasum": ""
  2932. },
  2933. "require": {
  2934. "composer-plugin-api": "^2",
  2935. "php": ">=7.3.0"
  2936. },
  2937. "conflict": {
  2938. "drupal-composer/drupal-scaffold": "*"
  2939. },
  2940. "require-dev": {
  2941. "composer/composer": "^1.8@stable"
  2942. },
  2943. "type": "composer-plugin",
  2944. "extra": {
  2945. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  2946. "branch-alias": {
  2947. "dev-master": "1.0.x-dev"
  2948. }
  2949. },
  2950. "autoload": {
  2951. "psr-4": {
  2952. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  2953. }
  2954. },
  2955. "notification-url": "https://packagist.org/downloads/",
  2956. "license": [
  2957. "GPL-2.0-or-later"
  2958. ],
  2959. "description": "A flexible Composer project scaffold builder.",
  2960. "homepage": "https://www.drupal.org/project/drupal",
  2961. "keywords": [
  2962. "drupal"
  2963. ],
  2964. "support": {
  2965. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.1.6"
  2966. },
  2967. "time": "2023-04-30T16:15:32+00:00"
  2968. },
  2969. {
  2970. "name": "drupal/core-project-message",
  2971. "version": "10.1.6",
  2972. "source": {
  2973. "type": "git",
  2974. "url": "https://github.com/drupal/core-project-message.git",
  2975. "reference": "59b4475f01debd9a0f173938a06189982c8ebffd"
  2976. },
  2977. "dist": {
  2978. "type": "zip",
  2979. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/59b4475f01debd9a0f173938a06189982c8ebffd",
  2980. "reference": "59b4475f01debd9a0f173938a06189982c8ebffd",
  2981. "shasum": ""
  2982. },
  2983. "require": {
  2984. "composer-plugin-api": "^2",
  2985. "php": ">=7.3.0"
  2986. },
  2987. "type": "composer-plugin",
  2988. "extra": {
  2989. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  2990. },
  2991. "autoload": {
  2992. "psr-4": {
  2993. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  2994. }
  2995. },
  2996. "notification-url": "https://packagist.org/downloads/",
  2997. "license": [
  2998. "GPL-2.0-or-later"
  2999. ],
  3000. "description": "Adds a message after Composer installation.",
  3001. "homepage": "https://www.drupal.org/project/drupal",
  3002. "keywords": [
  3003. "drupal"
  3004. ],
  3005. "support": {
  3006. "source": "https://github.com/drupal/core-project-message/tree/10.1.6"
  3007. },
  3008. "time": "2022-07-01T08:32:39+00:00"
  3009. },
  3010. {
  3011. "name": "drupal/core-recommended",
  3012. "version": "10.1.6",
  3013. "source": {
  3014. "type": "git",
  3015. "url": "https://github.com/drupal/core-recommended.git",
  3016. "reference": "13f5968854fe8bc02e659d8a4facc04a1a576ce5"
  3017. },
  3018. "dist": {
  3019. "type": "zip",
  3020. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/13f5968854fe8bc02e659d8a4facc04a1a576ce5",
  3021. "reference": "13f5968854fe8bc02e659d8a4facc04a1a576ce5",
  3022. "shasum": ""
  3023. },
  3024. "require": {
  3025. "asm89/stack-cors": "~v2.1.1",
  3026. "composer/semver": "~3.3.2",
  3027. "doctrine/annotations": "~1.14.3",
  3028. "doctrine/deprecations": "~v1.1.1",
  3029. "doctrine/lexer": "~2.1.0",
  3030. "drupal/core": "10.1.6",
  3031. "egulias/email-validator": "~4.0.1",
  3032. "guzzlehttp/guzzle": "~7.7.0",
  3033. "guzzlehttp/psr7": "~2.5.0",
  3034. "masterminds/html5": "~2.8.0",
  3035. "mck89/peast": "~v1.15.4",
  3036. "pear/archive_tar": "~1.4.14",
  3037. "pear/console_getopt": "~v1.4.3",
  3038. "pear/pear-core-minimal": "~v1.10.13",
  3039. "pear/pear_exception": "~v1.0.2",
  3040. "psr/cache": "~3.0.0",
  3041. "psr/container": "~2.0.2",
  3042. "psr/event-dispatcher": "~1.0.0",
  3043. "psr/http-client": "~1.0.2",
  3044. "psr/http-factory": "~1.0.2",
  3045. "psr/log": "~3.0.0",
  3046. "ralouphie/getallheaders": "~3.0.3",
  3047. "sebastian/diff": "~4.0.5",
  3048. "symfony/console": "~v6.3.0",
  3049. "symfony/dependency-injection": "~v6.3.0",
  3050. "symfony/deprecation-contracts": "~v3.3.0",
  3051. "symfony/error-handler": "~v6.3.0",
  3052. "symfony/event-dispatcher": "~v6.3.0",
  3053. "symfony/event-dispatcher-contracts": "~v3.3.0",
  3054. "symfony/http-foundation": "~v6.3.0",
  3055. "symfony/http-kernel": "~v6.3.0",
  3056. "symfony/mime": "~v6.3.0",
  3057. "symfony/polyfill-ctype": "~v1.27.0",
  3058. "symfony/polyfill-iconv": "~v1.27.0",
  3059. "symfony/polyfill-intl-grapheme": "~v1.27.0",
  3060. "symfony/polyfill-intl-idn": "~v1.27.0",
  3061. "symfony/polyfill-intl-normalizer": "~v1.27.0",
  3062. "symfony/polyfill-mbstring": "~v1.27.0",
  3063. "symfony/polyfill-php83": "~v1.27.0",
  3064. "symfony/process": "~v6.3.0",
  3065. "symfony/psr-http-message-bridge": "~v2.2.0",
  3066. "symfony/routing": "~v6.3.0",
  3067. "symfony/serializer": "~v6.3.0",
  3068. "symfony/service-contracts": "~v3.3.0",
  3069. "symfony/string": "~v6.3.0",
  3070. "symfony/translation-contracts": "~v3.3.0",
  3071. "symfony/validator": "~v6.3.0",
  3072. "symfony/var-dumper": "~v6.3.0",
  3073. "symfony/var-exporter": "~v6.3.0",
  3074. "symfony/yaml": "~v6.3.0",
  3075. "twig/twig": "~v3.6.0"
  3076. },
  3077. "conflict": {
  3078. "webflo/drupal-core-strict": "*"
  3079. },
  3080. "type": "metapackage",
  3081. "notification-url": "https://packagist.org/downloads/",
  3082. "license": [
  3083. "GPL-2.0-or-later"
  3084. ],
  3085. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3086. "support": {
  3087. "source": "https://github.com/drupal/core-recommended/tree/10.1.6"
  3088. },
  3089. "time": "2023-11-01T11:59:20+00:00"
  3090. },
  3091. {
  3092. "name": "drupal/cshs",
  3093. "version": "4.0.0",
  3094. "source": {
  3095. "type": "git",
  3096. "url": "https://git.drupalcode.org/project/cshs.git",
  3097. "reference": "4.0.0"
  3098. },
  3099. "dist": {
  3100. "type": "zip",
  3101. "url": "https://ftp.drupal.org/files/projects/cshs-4.0.0.zip",
  3102. "reference": "4.0.0",
  3103. "shasum": "ebcd3932481aba4004f4e2078038cdc7293738b0"
  3104. },
  3105. "require": {
  3106. "drupal/core": "^9 || ^10",
  3107. "php": ">=8.0"
  3108. },
  3109. "type": "drupal-module",
  3110. "extra": {
  3111. "drupal": {
  3112. "version": "4.0.0",
  3113. "datestamp": "1668457722",
  3114. "security-coverage": {
  3115. "status": "covered",
  3116. "message": "Covered by Drupal's security advisory policy"
  3117. }
  3118. }
  3119. },
  3120. "notification-url": "https://packages.drupal.org/8/downloads",
  3121. "license": [
  3122. "GPL-2.0-or-later"
  3123. ],
  3124. "authors": [
  3125. {
  3126. "name": "Walter Jenner",
  3127. "homepage": "https://drupal.org/u/valderama"
  3128. },
  3129. {
  3130. "name": "Sergii Bondarenko",
  3131. "homepage": "https://drupal.org/u/BR0kEN",
  3132. "email": "sb@firstvector.org"
  3133. },
  3134. {
  3135. "name": "Daneel Cruz",
  3136. "homepage": "https://drupal.org/u/daneelcm"
  3137. },
  3138. {
  3139. "name": "Purushotam Rai",
  3140. "homepage": "https://drupal.org/u/purushotam.rai"
  3141. }
  3142. ],
  3143. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  3144. "homepage": "https://www.drupal.org/project/cshs",
  3145. "keywords": [
  3146. "client-side-select",
  3147. "hierarchical-select",
  3148. "module",
  3149. "select",
  3150. "taxonomy"
  3151. ],
  3152. "support": {
  3153. "source": "https://git.drupalcode.org/project/cshs",
  3154. "issues": "https://www.drupal.org/project/issues/cshs"
  3155. }
  3156. },
  3157. {
  3158. "name": "drupal/ctools",
  3159. "version": "4.0.4",
  3160. "source": {
  3161. "type": "git",
  3162. "url": "https://git.drupalcode.org/project/ctools.git",
  3163. "reference": "4.0.4"
  3164. },
  3165. "dist": {
  3166. "type": "zip",
  3167. "url": "https://ftp.drupal.org/files/projects/ctools-4.0.4.zip",
  3168. "reference": "4.0.4",
  3169. "shasum": "4a2474eb2fd525b2add2db0e855c135ba7f0fb70"
  3170. },
  3171. "require": {
  3172. "drupal/core": "^9.3 || ^10"
  3173. },
  3174. "type": "drupal-module",
  3175. "extra": {
  3176. "drupal": {
  3177. "version": "4.0.4",
  3178. "datestamp": "1684299878",
  3179. "security-coverage": {
  3180. "status": "covered",
  3181. "message": "Covered by Drupal's security advisory policy"
  3182. }
  3183. },
  3184. "branch-alias": {
  3185. "dev-8.x-3.x": "3.x-dev"
  3186. }
  3187. },
  3188. "notification-url": "https://packages.drupal.org/8/downloads",
  3189. "license": [
  3190. "GPL-2.0-or-later"
  3191. ],
  3192. "authors": [
  3193. {
  3194. "name": "Kris Vanderwater (EclipseGc)",
  3195. "homepage": "https://www.drupal.org/u/eclipsegc",
  3196. "role": "Maintainer"
  3197. },
  3198. {
  3199. "name": "Jakob Perry (japerry)",
  3200. "homepage": "https://www.drupal.org/u/japerry",
  3201. "role": "Maintainer"
  3202. },
  3203. {
  3204. "name": "Tim Plunkett (tim.plunkett)",
  3205. "homepage": "https://www.drupal.org/u/timplunkett",
  3206. "role": "Maintainer"
  3207. },
  3208. {
  3209. "name": "James Gilliland (neclimdul)",
  3210. "homepage": "https://www.drupal.org/u/neclimdul",
  3211. "role": "Maintainer"
  3212. },
  3213. {
  3214. "name": "Daniel Wehner (dawehner)",
  3215. "homepage": "https://www.drupal.org/u/dawehner",
  3216. "role": "Maintainer"
  3217. },
  3218. {
  3219. "name": "joelpittet",
  3220. "homepage": "https://www.drupal.org/user/160302"
  3221. },
  3222. {
  3223. "name": "merlinofchaos",
  3224. "homepage": "https://www.drupal.org/user/26979"
  3225. },
  3226. {
  3227. "name": "neclimdul",
  3228. "homepage": "https://www.drupal.org/user/48673"
  3229. },
  3230. {
  3231. "name": "sdboyer",
  3232. "homepage": "https://www.drupal.org/user/146719"
  3233. },
  3234. {
  3235. "name": "sun",
  3236. "homepage": "https://www.drupal.org/user/54136"
  3237. },
  3238. {
  3239. "name": "tim.plunkett",
  3240. "homepage": "https://www.drupal.org/user/241634"
  3241. }
  3242. ],
  3243. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3244. "homepage": "https://www.drupal.org/project/ctools",
  3245. "support": {
  3246. "source": "https://git.drupalcode.org/project/ctools",
  3247. "issues": "https://www.drupal.org/project/issues/ctools"
  3248. }
  3249. },
  3250. {
  3251. "name": "drupal/date_range_formatter",
  3252. "version": "dev-9.0.x",
  3253. "source": {
  3254. "type": "git",
  3255. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3256. "reference": "8808a9c324c781b4a7cae9ea5f16017a6b8f63f7"
  3257. },
  3258. "require": {
  3259. "drupal/core": "^8 || ^9 || ^10"
  3260. },
  3261. "type": "drupal-module",
  3262. "extra": {
  3263. "branch-alias": {
  3264. "dev-9.0.x": "9.0.x-dev"
  3265. },
  3266. "drupal": {
  3267. "version": "9.0.x-dev",
  3268. "datestamp": "1661511425",
  3269. "security-coverage": {
  3270. "status": "not-covered",
  3271. "message": "Dev releases are not covered by Drupal security advisories."
  3272. }
  3273. }
  3274. },
  3275. "notification-url": "https://packages.drupal.org/8/downloads",
  3276. "license": [
  3277. "GPL-2.0-or-later"
  3278. ],
  3279. "authors": [
  3280. {
  3281. "name": "maximpodorov",
  3282. "homepage": "https://www.drupal.org/user/515310"
  3283. },
  3284. {
  3285. "name": "sudishth",
  3286. "homepage": "https://www.drupal.org/user/1440562"
  3287. }
  3288. ],
  3289. "description": "Formats date ranges.",
  3290. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3291. "support": {
  3292. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3293. }
  3294. },
  3295. {
  3296. "name": "drupal/devel",
  3297. "version": "5.1.2",
  3298. "source": {
  3299. "type": "git",
  3300. "url": "https://git.drupalcode.org/project/devel.git",
  3301. "reference": "5.1.2"
  3302. },
  3303. "dist": {
  3304. "type": "zip",
  3305. "url": "https://ftp.drupal.org/files/projects/devel-5.1.2.zip",
  3306. "reference": "5.1.2",
  3307. "shasum": "9b35e38bf2043bf87f88585b3d9100f38da8f07f"
  3308. },
  3309. "require": {
  3310. "doctrine/common": "^2.7 || ^3.4",
  3311. "drupal/core": "^9 || ^10",
  3312. "php": ">=7.4",
  3313. "symfony/var-dumper": "^4 || ^5 || ^6"
  3314. },
  3315. "conflict": {
  3316. "kint-php/kint": "<3"
  3317. },
  3318. "require-dev": {
  3319. "drush/drush": "^11"
  3320. },
  3321. "suggest": {
  3322. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3323. },
  3324. "type": "drupal-module",
  3325. "extra": {
  3326. "drupal": {
  3327. "version": "5.1.2",
  3328. "datestamp": "1686161028",
  3329. "security-coverage": {
  3330. "status": "covered",
  3331. "message": "Covered by Drupal's security advisory policy"
  3332. }
  3333. },
  3334. "drush": {
  3335. "services": {
  3336. "drush.services.yml": "^9 || ^10 || ^11"
  3337. }
  3338. }
  3339. },
  3340. "notification-url": "https://packages.drupal.org/8/downloads",
  3341. "license": [
  3342. "GPL-2.0-or-later"
  3343. ],
  3344. "authors": [
  3345. {
  3346. "name": "drupalspoons",
  3347. "homepage": "https://www.drupal.org/user/3647684"
  3348. },
  3349. {
  3350. "name": "moshe weitzman",
  3351. "homepage": "https://www.drupal.org/user/23"
  3352. }
  3353. ],
  3354. "description": "Various blocks, pages, and functions for developers.",
  3355. "homepage": "https://www.drupal.org/project/devel",
  3356. "support": {
  3357. "source": "https://gitlab.com/drupalspoons/devel",
  3358. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3359. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3360. }
  3361. },
  3362. {
  3363. "name": "drupal/devel_kint_extras",
  3364. "version": "1.1.0",
  3365. "source": {
  3366. "type": "git",
  3367. "url": "https://git.drupalcode.org/project/devel_kint_extras.git",
  3368. "reference": "1.1.0"
  3369. },
  3370. "dist": {
  3371. "type": "zip",
  3372. "url": "https://ftp.drupal.org/files/projects/devel_kint_extras-1.1.0.zip",
  3373. "reference": "1.1.0",
  3374. "shasum": "c9f485f6f2562710d2bd2c62f0073aa0049f5c8c"
  3375. },
  3376. "require": {
  3377. "drupal/core": "^9 || ^10",
  3378. "drupal/devel": "^4.0 || ^5.0",
  3379. "kint-php/kint": "^3.3 || ^4.0"
  3380. },
  3381. "type": "drupal-module",
  3382. "extra": {
  3383. "drupal": {
  3384. "version": "1.1.0",
  3385. "datestamp": "1663760998",
  3386. "security-coverage": {
  3387. "status": "covered",
  3388. "message": "Covered by Drupal's security advisory policy"
  3389. }
  3390. }
  3391. },
  3392. "notification-url": "https://packages.drupal.org/8/downloads",
  3393. "license": [
  3394. "GPL-2.0-or-later"
  3395. ],
  3396. "authors": [
  3397. {
  3398. "name": "Jan Chojnacki",
  3399. "homepage": "https://www.drupal.org/u/janchojnacki"
  3400. },
  3401. {
  3402. "name": "Other contributors",
  3403. "homepage": "https://www.drupal.org/node/3164492/committers"
  3404. }
  3405. ],
  3406. "description": "Shows methods and statics available for an object when using Kint with Devel",
  3407. "homepage": "https://www.drupal.org/project/devel_kint_extras",
  3408. "support": {
  3409. "source": "http://git.drupal.org/project/devel_kint_extras.git",
  3410. "issues": "https://www.drupal.org/project/issues/devel_kint_extras",
  3411. "chat": "irc://irc.freenode.org/drupal-contribute"
  3412. }
  3413. },
  3414. {
  3415. "name": "drupal/email_registration",
  3416. "version": "1.3.0",
  3417. "source": {
  3418. "type": "git",
  3419. "url": "https://git.drupalcode.org/project/email_registration.git",
  3420. "reference": "8.x-1.3"
  3421. },
  3422. "dist": {
  3423. "type": "zip",
  3424. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.3.zip",
  3425. "reference": "8.x-1.3",
  3426. "shasum": "6fe425246511e29dfef4294139c8704aec16cbec"
  3427. },
  3428. "require": {
  3429. "drupal/core": "^9.1 || ^10"
  3430. },
  3431. "conflict": {
  3432. "drupal/commerce": "<2.12"
  3433. },
  3434. "require-dev": {
  3435. "drupal/commerce": "^2.0",
  3436. "drupal/token": "*"
  3437. },
  3438. "type": "drupal-module",
  3439. "extra": {
  3440. "drupal": {
  3441. "version": "8.x-1.3",
  3442. "datestamp": "1697182609",
  3443. "security-coverage": {
  3444. "status": "covered",
  3445. "message": "Covered by Drupal's security advisory policy"
  3446. }
  3447. }
  3448. },
  3449. "notification-url": "https://packages.drupal.org/8/downloads",
  3450. "license": [
  3451. "GPL-2.0-or-later"
  3452. ],
  3453. "authors": [
  3454. {
  3455. "name": "Greg Knaddison (greggles)",
  3456. "homepage": "https://www.drupal.org/u/greggles",
  3457. "role": "Maintainer"
  3458. },
  3459. {
  3460. "name": "Andrey Postnikov (andypost)",
  3461. "homepage": "https://www.drupal.org/u/andypost",
  3462. "role": "Maintainer"
  3463. },
  3464. {
  3465. "name": "Chris Herberte",
  3466. "homepage": "https://www.drupal.org/u/chris-herberte",
  3467. "role": "Maintainer"
  3468. },
  3469. {
  3470. "name": "Moshe Weitzman (moshe weitzman)",
  3471. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3472. "role": "Maintainer"
  3473. },
  3474. {
  3475. "name": "Grevil",
  3476. "homepage": "https://www.drupal.org/user/3668491"
  3477. },
  3478. {
  3479. "name": "moshe weitzman",
  3480. "homepage": "https://www.drupal.org/user/23"
  3481. }
  3482. ],
  3483. "description": "Allows users to register with an email address as their username.",
  3484. "homepage": "https://www.drupal.org/project/email_registration",
  3485. "support": {
  3486. "source": "https://git.drupalcode.org/project/email_registration",
  3487. "issues": "http://drupal.org/project/issues/email_registration"
  3488. }
  3489. },
  3490. {
  3491. "name": "drupal/embed",
  3492. "version": "1.7.0",
  3493. "source": {
  3494. "type": "git",
  3495. "url": "https://git.drupalcode.org/project/embed.git",
  3496. "reference": "8.x-1.7"
  3497. },
  3498. "dist": {
  3499. "type": "zip",
  3500. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.7.zip",
  3501. "reference": "8.x-1.7",
  3502. "shasum": "b7ca4264be51038f947d26b6725fc0446b224f60"
  3503. },
  3504. "require": {
  3505. "drupal/core": "^9.3 | ^10"
  3506. },
  3507. "require-dev": {
  3508. "drupal/ckeditor": "*"
  3509. },
  3510. "type": "drupal-module",
  3511. "extra": {
  3512. "drupal": {
  3513. "version": "8.x-1.7",
  3514. "datestamp": "1697642867",
  3515. "security-coverage": {
  3516. "status": "covered",
  3517. "message": "Covered by Drupal's security advisory policy"
  3518. }
  3519. }
  3520. },
  3521. "notification-url": "https://packages.drupal.org/8/downloads",
  3522. "license": [
  3523. "GPL-2.0-or-later"
  3524. ],
  3525. "authors": [
  3526. {
  3527. "name": "cs_shadow",
  3528. "homepage": "https://www.drupal.org/user/2828287"
  3529. },
  3530. {
  3531. "name": "Dave Reid",
  3532. "homepage": "https://www.drupal.org/user/53892"
  3533. },
  3534. {
  3535. "name": "Devin Carlson",
  3536. "homepage": "https://www.drupal.org/user/290182"
  3537. },
  3538. {
  3539. "name": "Drupal Media Team",
  3540. "homepage": "https://www.drupal.org/user/3260690"
  3541. },
  3542. {
  3543. "name": "phenaproxima",
  3544. "homepage": "https://www.drupal.org/user/205645"
  3545. },
  3546. {
  3547. "name": "slashrsm",
  3548. "homepage": "https://www.drupal.org/user/744628"
  3549. }
  3550. ],
  3551. "description": "Provides a framework for different types of embeds in text editors.",
  3552. "homepage": "https://www.drupal.org/project/embed",
  3553. "support": {
  3554. "source": "https://git.drupalcode.org/project/embed"
  3555. }
  3556. },
  3557. {
  3558. "name": "drupal/entity",
  3559. "version": "1.4.0",
  3560. "source": {
  3561. "type": "git",
  3562. "url": "https://git.drupalcode.org/project/entity.git",
  3563. "reference": "8.x-1.4"
  3564. },
  3565. "dist": {
  3566. "type": "zip",
  3567. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.4.zip",
  3568. "reference": "8.x-1.4",
  3569. "shasum": "1cf7712318fad144eab106a8fcfcd396aeb5676f"
  3570. },
  3571. "require": {
  3572. "drupal/core": "^9.2|^10.0"
  3573. },
  3574. "type": "drupal-module",
  3575. "extra": {
  3576. "drupal": {
  3577. "version": "8.x-1.4",
  3578. "datestamp": "1661898023",
  3579. "security-coverage": {
  3580. "status": "covered",
  3581. "message": "Covered by Drupal's security advisory policy"
  3582. }
  3583. }
  3584. },
  3585. "notification-url": "https://packages.drupal.org/8/downloads",
  3586. "license": [
  3587. "GPL-2.0-or-later"
  3588. ],
  3589. "authors": [
  3590. {
  3591. "name": "Berdir",
  3592. "homepage": "https://www.drupal.org/user/214652"
  3593. },
  3594. {
  3595. "name": "bojanz",
  3596. "homepage": "https://www.drupal.org/user/86106"
  3597. },
  3598. {
  3599. "name": "dawehner",
  3600. "homepage": "https://www.drupal.org/user/99340"
  3601. },
  3602. {
  3603. "name": "dixon_",
  3604. "homepage": "https://www.drupal.org/user/239911"
  3605. },
  3606. {
  3607. "name": "fago",
  3608. "homepage": "https://www.drupal.org/user/16747"
  3609. },
  3610. {
  3611. "name": "mglaman",
  3612. "homepage": "https://www.drupal.org/user/2416470"
  3613. },
  3614. {
  3615. "name": "TR",
  3616. "homepage": "https://www.drupal.org/user/202830"
  3617. }
  3618. ],
  3619. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3620. "homepage": "https://www.drupal.org/project/entity",
  3621. "support": {
  3622. "source": "https://git.drupalcode.org/project/entity",
  3623. "issues": "https://www.drupal.org/project/issues/entity"
  3624. }
  3625. },
  3626. {
  3627. "name": "drupal/entity_browser",
  3628. "version": "2.9.0",
  3629. "source": {
  3630. "type": "git",
  3631. "url": "https://git.drupalcode.org/project/entity_browser.git",
  3632. "reference": "8.x-2.9"
  3633. },
  3634. "dist": {
  3635. "type": "zip",
  3636. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.9.zip",
  3637. "reference": "8.x-2.9",
  3638. "shasum": "251afad80cde9fa547501a8d9de5d94b9f5bacff"
  3639. },
  3640. "require": {
  3641. "drupal/core": "^9.2 || ^10"
  3642. },
  3643. "require-dev": {
  3644. "drupal/embed": "~1.0",
  3645. "drupal/entity_embed": "1.x-dev",
  3646. "drupal/entity_reference_revisions": "1.x-dev",
  3647. "drupal/entityqueue": "1.x-dev",
  3648. "drupal/inline_entity_form": "1.x-dev",
  3649. "drupal/paragraphs": "1.x-dev",
  3650. "drupal/token": "1.x-dev"
  3651. },
  3652. "type": "drupal-module",
  3653. "extra": {
  3654. "drupal": {
  3655. "version": "8.x-2.9",
  3656. "datestamp": "1674070933",
  3657. "security-coverage": {
  3658. "status": "covered",
  3659. "message": "Covered by Drupal's security advisory policy"
  3660. }
  3661. }
  3662. },
  3663. "notification-url": "https://packages.drupal.org/8/downloads",
  3664. "license": [
  3665. "GPL-2.0+"
  3666. ],
  3667. "authors": [
  3668. {
  3669. "name": "Janez Urevc",
  3670. "homepage": "https://github.com/slashrsm",
  3671. "role": "Maintainer"
  3672. },
  3673. {
  3674. "name": "Primoz Hmeljak",
  3675. "homepage": "https://github.com/primsi",
  3676. "role": "Maintainer"
  3677. },
  3678. {
  3679. "name": "See other contributors",
  3680. "homepage": "https://www.drupal.org/node/1943336/committers",
  3681. "role": "contributor"
  3682. },
  3683. {
  3684. "name": "Drupal Media Team",
  3685. "homepage": "https://www.drupal.org/user/3260690"
  3686. },
  3687. {
  3688. "name": "marcingy",
  3689. "homepage": "https://www.drupal.org/user/77320"
  3690. },
  3691. {
  3692. "name": "oknate",
  3693. "homepage": "https://www.drupal.org/user/471638"
  3694. },
  3695. {
  3696. "name": "Primsi",
  3697. "homepage": "https://www.drupal.org/user/282629"
  3698. },
  3699. {
  3700. "name": "samuel.mortenson",
  3701. "homepage": "https://www.drupal.org/user/2582268"
  3702. },
  3703. {
  3704. "name": "slashrsm",
  3705. "homepage": "https://www.drupal.org/user/744628"
  3706. }
  3707. ],
  3708. "description": "Entity browsing and selecting component.",
  3709. "homepage": "http://drupal.org/project/entity_browser",
  3710. "support": {
  3711. "source": "https://git.drupalcode.org/project/entity_browser",
  3712. "issues": "https://www.drupal.org/project/issues/entity_browser",
  3713. "irc": "irc://irc.freenode.org/drupal-contribute"
  3714. }
  3715. },
  3716. {
  3717. "name": "drupal/entity_browser_enhanced",
  3718. "version": "2.0.0",
  3719. "source": {
  3720. "type": "git",
  3721. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  3722. "reference": "2.0.0"
  3723. },
  3724. "dist": {
  3725. "type": "zip",
  3726. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.0.zip",
  3727. "reference": "2.0.0",
  3728. "shasum": "2880829c847c1c4b06092ab5335adb6ea960317b"
  3729. },
  3730. "require": {
  3731. "drupal/core": "^9 || ^10",
  3732. "drupal/entity_browser": "~2.0"
  3733. },
  3734. "type": "drupal-module",
  3735. "extra": {
  3736. "drupal": {
  3737. "version": "2.0.0",
  3738. "datestamp": "1697211243",
  3739. "security-coverage": {
  3740. "status": "covered",
  3741. "message": "Covered by Drupal's security advisory policy"
  3742. }
  3743. }
  3744. },
  3745. "notification-url": "https://packages.drupal.org/8/downloads",
  3746. "license": [
  3747. "GPL-2.0-or-later"
  3748. ],
  3749. "authors": [
  3750. {
  3751. "name": "Vardot",
  3752. "homepage": "https://www.drupal.org/vardot",
  3753. "role": "Maintainer"
  3754. },
  3755. {
  3756. "name": "Rajab Natshah",
  3757. "homepage": "https://www.drupal.org/user/1414312"
  3758. }
  3759. ],
  3760. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  3761. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  3762. "support": {
  3763. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  3764. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  3765. }
  3766. },
  3767. {
  3768. "name": "drupal/entity_clone",
  3769. "version": "dev-2.x",
  3770. "source": {
  3771. "type": "git",
  3772. "url": "https://git.drupalcode.org/project/entity_clone.git",
  3773. "reference": "5cbfafdbc860cbda7bef91c89628aefca25efe7b"
  3774. },
  3775. "require": {
  3776. "drupal/core": "^8.8 || ^9 || ^10"
  3777. },
  3778. "require-dev": {
  3779. "drupal/entity_browser": "2.x-dev",
  3780. "drupal/entity_usage": "2.x-dev",
  3781. "drupal/paragraphs": "^1.0",
  3782. "drupal/search_api": "~1.0"
  3783. },
  3784. "type": "drupal-module",
  3785. "extra": {
  3786. "branch-alias": {
  3787. "dev-2.x": "2.x-dev"
  3788. },
  3789. "drupal": {
  3790. "version": "2.0.0-beta4+3-dev",
  3791. "datestamp": "1697545494",
  3792. "security-coverage": {
  3793. "status": "not-covered",
  3794. "message": "Dev releases are not covered by Drupal security advisories."
  3795. }
  3796. }
  3797. },
  3798. "notification-url": "https://packages.drupal.org/8/downloads",
  3799. "license": [
  3800. "GPL-2.0-or-later"
  3801. ],
  3802. "authors": [
  3803. {
  3804. "name": "colan",
  3805. "homepage": "https://www.drupal.org/user/58704"
  3806. },
  3807. {
  3808. "name": "joevagyok",
  3809. "homepage": "https://www.drupal.org/user/2876343"
  3810. },
  3811. {
  3812. "name": "NickDickinsonWilde",
  3813. "homepage": "https://www.drupal.org/user/3094661"
  3814. },
  3815. {
  3816. "name": "Rajeshreeputra",
  3817. "homepage": "https://www.drupal.org/user/3418561"
  3818. },
  3819. {
  3820. "name": "Upchuk",
  3821. "homepage": "https://www.drupal.org/user/1885838"
  3822. },
  3823. {
  3824. "name": "vpeltot",
  3825. "homepage": "https://www.drupal.org/user/1361586"
  3826. }
  3827. ],
  3828. "description": "Add a clone action for all entities.",
  3829. "homepage": "https://drupal.org/project/entity_clone",
  3830. "support": {
  3831. "source": "https://git.drupalcode.org/project/entity_clone"
  3832. }
  3833. },
  3834. {
  3835. "name": "drupal/extlink",
  3836. "version": "1.7.0",
  3837. "source": {
  3838. "type": "git",
  3839. "url": "https://git.drupalcode.org/project/extlink.git",
  3840. "reference": "8.x-1.7"
  3841. },
  3842. "dist": {
  3843. "type": "zip",
  3844. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.7.zip",
  3845. "reference": "8.x-1.7",
  3846. "shasum": "38650688b5a58496db59f40b2a7f36c4bedcbfb4"
  3847. },
  3848. "require": {
  3849. "drupal/core": "^8 || ^9 || ^10"
  3850. },
  3851. "type": "drupal-module",
  3852. "extra": {
  3853. "drupal": {
  3854. "version": "8.x-1.7",
  3855. "datestamp": "1665770295",
  3856. "security-coverage": {
  3857. "status": "covered",
  3858. "message": "Covered by Drupal's security advisory policy"
  3859. }
  3860. }
  3861. },
  3862. "notification-url": "https://packages.drupal.org/8/downloads",
  3863. "license": [
  3864. "GPL-2.0-or-later"
  3865. ],
  3866. "authors": [
  3867. {
  3868. "name": "Nate Lampton",
  3869. "homepage": "https://www.drupal.org/u/quicksketch",
  3870. "role": "Maintainer"
  3871. },
  3872. {
  3873. "name": "Lachlan Ennis",
  3874. "homepage": "https://www.drupal.org/u/elachlan",
  3875. "role": "Maintainer"
  3876. },
  3877. {
  3878. "name": "Neslee Canil Pinto",
  3879. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  3880. "role": "Maintainer"
  3881. }
  3882. ],
  3883. "description": "Modify behavior and appearance of external links.",
  3884. "homepage": "https://www.drupal.org/project/extlink",
  3885. "keywords": [
  3886. "Drupal",
  3887. "External Links"
  3888. ],
  3889. "support": {
  3890. "source": "https://git.drupalcode.org/project/extlink",
  3891. "issues": "https://www.drupal.org/project/issues/extlink"
  3892. }
  3893. },
  3894. {
  3895. "name": "drupal/field_group",
  3896. "version": "dev-3.x",
  3897. "source": {
  3898. "type": "git",
  3899. "url": "https://git.drupalcode.org/project/field_group.git",
  3900. "reference": "1211c8f4e06592418ca368afe88ef9aa237e900a"
  3901. },
  3902. "require": {
  3903. "drupal/core": "^9.2 || ^10"
  3904. },
  3905. "type": "drupal-module",
  3906. "extra": {
  3907. "branch-alias": {
  3908. "dev-3.x": "3.x-dev"
  3909. },
  3910. "drupal": {
  3911. "version": "8.x-3.4+4-dev",
  3912. "datestamp": "1696831482",
  3913. "security-coverage": {
  3914. "status": "not-covered",
  3915. "message": "Dev releases are not covered by Drupal security advisories."
  3916. }
  3917. }
  3918. },
  3919. "notification-url": "https://packages.drupal.org/8/downloads",
  3920. "license": [
  3921. "GPL-2.0-or-later"
  3922. ],
  3923. "authors": [
  3924. {
  3925. "name": "Anybody",
  3926. "homepage": "https://www.drupal.org/user/291091"
  3927. },
  3928. {
  3929. "name": "Hydra",
  3930. "homepage": "https://www.drupal.org/user/647364"
  3931. },
  3932. {
  3933. "name": "jyve",
  3934. "homepage": "https://www.drupal.org/user/591438"
  3935. },
  3936. {
  3937. "name": "nils.destoop",
  3938. "homepage": "https://www.drupal.org/user/361625"
  3939. },
  3940. {
  3941. "name": "Stalski",
  3942. "homepage": "https://www.drupal.org/user/322618"
  3943. },
  3944. {
  3945. "name": "swentel",
  3946. "homepage": "https://www.drupal.org/user/107403"
  3947. }
  3948. ],
  3949. "description": "Provides the field_group module.",
  3950. "homepage": "https://www.drupal.org/project/field_group",
  3951. "support": {
  3952. "source": "https://git.drupalcode.org/project/field_group",
  3953. "issues": "https://www.drupal.org/project/issues/field_group"
  3954. }
  3955. },
  3956. {
  3957. "name": "drupal/file_mdm",
  3958. "version": "2.6.0",
  3959. "source": {
  3960. "type": "git",
  3961. "url": "https://git.drupalcode.org/project/file_mdm.git",
  3962. "reference": "8.x-2.6"
  3963. },
  3964. "dist": {
  3965. "type": "zip",
  3966. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.6.zip",
  3967. "reference": "8.x-2.6",
  3968. "shasum": "56c7c06107ce6e249b6d644136e6807573efb0e3"
  3969. },
  3970. "require": {
  3971. "drupal/core": "^9.3 | ^10",
  3972. "fileeye/pel": "^0.9.20",
  3973. "phenx/php-font-lib": "^0.5.4"
  3974. },
  3975. "require-dev": {
  3976. "drupal/vendor_stream_wrapper": "^2.0.2",
  3977. "fileeye/linuxlibertine-fonts": "^5.3"
  3978. },
  3979. "type": "drupal-module",
  3980. "extra": {
  3981. "drupal": {
  3982. "version": "8.x-2.6",
  3983. "datestamp": "1688489716",
  3984. "security-coverage": {
  3985. "status": "covered",
  3986. "message": "Covered by Drupal's security advisory policy"
  3987. }
  3988. }
  3989. },
  3990. "notification-url": "https://packages.drupal.org/8/downloads",
  3991. "license": [
  3992. "GPL-2.0-or-later"
  3993. ],
  3994. "authors": [
  3995. {
  3996. "name": "mondrake",
  3997. "homepage": "https://www.drupal.org/user/1307444"
  3998. }
  3999. ],
  4000. "description": "Provides a service to manage file metadata.",
  4001. "homepage": "https://www.drupal.org/project/file_mdm",
  4002. "support": {
  4003. "source": "https://git.drupalcode.org/project/file_mdm"
  4004. }
  4005. },
  4006. {
  4007. "name": "drupal/filter_perms",
  4008. "version": "dev-1.x",
  4009. "source": {
  4010. "type": "git",
  4011. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4012. "reference": "1ba486b620e0c0ea1c323cfcadb0f965d9022d1c"
  4013. },
  4014. "require": {
  4015. "drupal/core": "^9.0 || ^10.0"
  4016. },
  4017. "type": "drupal-module",
  4018. "extra": {
  4019. "branch-alias": {
  4020. "dev-1.x": "1.x-dev"
  4021. },
  4022. "drupal": {
  4023. "version": "8.x-1.0-alpha2+1-dev",
  4024. "datestamp": "1697635045",
  4025. "security-coverage": {
  4026. "status": "not-covered",
  4027. "message": "Dev releases are not covered by Drupal security advisories."
  4028. }
  4029. }
  4030. },
  4031. "notification-url": "https://packages.drupal.org/8/downloads",
  4032. "license": [
  4033. "GPL-2.0+"
  4034. ],
  4035. "authors": [
  4036. {
  4037. "name": "cYu",
  4038. "homepage": "https://www.drupal.org/user/202205"
  4039. },
  4040. {
  4041. "name": "deekayen",
  4042. "homepage": "https://www.drupal.org/user/972"
  4043. },
  4044. {
  4045. "name": "ivavictoria",
  4046. "homepage": "https://www.drupal.org/user/3061533"
  4047. },
  4048. {
  4049. "name": "justcaldwell",
  4050. "homepage": "https://www.drupal.org/user/290069"
  4051. },
  4052. {
  4053. "name": "mgbellaire",
  4054. "homepage": "https://www.drupal.org/user/1831932"
  4055. },
  4056. {
  4057. "name": "willzyx",
  4058. "homepage": "https://www.drupal.org/user/1043862"
  4059. }
  4060. ],
  4061. "description": "Provides role and module filters to simplify the user permissions page.",
  4062. "homepage": "https://www.drupal.org/project/filter_perms",
  4063. "support": {
  4064. "source": "http://cgit.drupalcode.org/filter_perms",
  4065. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  4066. }
  4067. },
  4068. {
  4069. "name": "drupal/formatter_suite",
  4070. "version": "2.0.0",
  4071. "source": {
  4072. "type": "git",
  4073. "url": "https://git.drupalcode.org/project/formatter_suite.git",
  4074. "reference": "2.0.0"
  4075. },
  4076. "dist": {
  4077. "type": "zip",
  4078. "url": "https://ftp.drupal.org/files/projects/formatter_suite-2.0.0.zip",
  4079. "reference": "2.0.0",
  4080. "shasum": "1c6c0fc11d381c10a7b13c51ec2848ae91b40cec"
  4081. },
  4082. "require": {
  4083. "drupal/core": "^9 || ^10"
  4084. },
  4085. "type": "drupal-module",
  4086. "extra": {
  4087. "drupal": {
  4088. "version": "2.0.0",
  4089. "datestamp": "1694036572",
  4090. "security-coverage": {
  4091. "status": "covered",
  4092. "message": "Covered by Drupal's security advisory policy"
  4093. }
  4094. }
  4095. },
  4096. "notification-url": "https://packages.drupal.org/8/downloads",
  4097. "license": [
  4098. "GPL-2.0-or-later"
  4099. ],
  4100. "authors": [
  4101. {
  4102. "name": "thecooltechguy",
  4103. "homepage": "https://www.drupal.org/user/3674323"
  4104. },
  4105. {
  4106. "name": "toamit",
  4107. "homepage": "https://www.drupal.org/user/2820523"
  4108. }
  4109. ],
  4110. "description": "Field formaters to present numbers, text, links, etc.",
  4111. "homepage": "https://www.drupal.org/project/formatter_suite",
  4112. "keywords": [
  4113. "Drupal",
  4114. "Format"
  4115. ],
  4116. "support": {
  4117. "source": "http://cgit.drupalcode.org/formatter_suite",
  4118. "issues": "http://drupal.org/project/issues/formatter_suite"
  4119. }
  4120. },
  4121. {
  4122. "name": "drupal/honeypot",
  4123. "version": "2.1.3",
  4124. "source": {
  4125. "type": "git",
  4126. "url": "https://git.drupalcode.org/project/honeypot.git",
  4127. "reference": "2.1.3"
  4128. },
  4129. "dist": {
  4130. "type": "zip",
  4131. "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.3.zip",
  4132. "reference": "2.1.3",
  4133. "shasum": "101105029a10a574ef6017824182500ab9905856"
  4134. },
  4135. "require": {
  4136. "drupal/core": "^9.2 || ^10"
  4137. },
  4138. "require-dev": {
  4139. "drupal/rules": "^3.0"
  4140. },
  4141. "type": "drupal-module",
  4142. "extra": {
  4143. "drupal": {
  4144. "version": "2.1.3",
  4145. "datestamp": "1695604754",
  4146. "security-coverage": {
  4147. "status": "covered",
  4148. "message": "Covered by Drupal's security advisory policy"
  4149. }
  4150. }
  4151. },
  4152. "notification-url": "https://packages.drupal.org/8/downloads",
  4153. "license": [
  4154. "GPL-2.0-or-later"
  4155. ],
  4156. "authors": [
  4157. {
  4158. "name": "Jeff Geerling",
  4159. "homepage": "https://www.drupal.org/user/389011",
  4160. "email": "geerlingguy@mac.com"
  4161. },
  4162. {
  4163. "name": "Manuel Garcia",
  4164. "homepage": "https://www.drupal.org/user/213194"
  4165. },
  4166. {
  4167. "name": "TR",
  4168. "homepage": "https://www.drupal.org/user/202830"
  4169. },
  4170. {
  4171. "name": "vijaycs85",
  4172. "homepage": "https://www.drupal.org/user/93488"
  4173. }
  4174. ],
  4175. "description": "Mitigates spam form submissions using the honeypot method.",
  4176. "homepage": "https://www.drupal.org/project/honeypot",
  4177. "keywords": [
  4178. "deterrent",
  4179. "form",
  4180. "honeypot",
  4181. "honeytrap",
  4182. "php",
  4183. "spam"
  4184. ],
  4185. "support": {
  4186. "source": "https://git.drupalcode.org/project/honeypot",
  4187. "issues": "https://www.drupal.org/project/issues/honeypot"
  4188. }
  4189. },
  4190. {
  4191. "name": "drupal/imagemagick",
  4192. "version": "3.4.0",
  4193. "source": {
  4194. "type": "git",
  4195. "url": "https://git.drupalcode.org/project/imagemagick.git",
  4196. "reference": "8.x-3.4"
  4197. },
  4198. "dist": {
  4199. "type": "zip",
  4200. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.4.zip",
  4201. "reference": "8.x-3.4",
  4202. "shasum": "9f07b7db4bba2cb0e4ff004629f8f78242bb7226"
  4203. },
  4204. "require": {
  4205. "drupal/core": "^9.3 || ^10",
  4206. "drupal/file_mdm": "^2.5",
  4207. "drupal/sophron": "^1.2 || ^2"
  4208. },
  4209. "type": "drupal-module",
  4210. "extra": {
  4211. "drupal": {
  4212. "version": "8.x-3.4",
  4213. "datestamp": "1663947784",
  4214. "security-coverage": {
  4215. "status": "covered",
  4216. "message": "Covered by Drupal's security advisory policy"
  4217. }
  4218. }
  4219. },
  4220. "notification-url": "https://packages.drupal.org/8/downloads",
  4221. "license": [
  4222. "GPL-2.0-or-later"
  4223. ],
  4224. "authors": [
  4225. {
  4226. "name": "Chris Charlton",
  4227. "homepage": "https://www.drupal.org/user/17089"
  4228. },
  4229. {
  4230. "name": "chx",
  4231. "homepage": "https://www.drupal.org/user/9446"
  4232. },
  4233. {
  4234. "name": "claudiu.cristea",
  4235. "homepage": "https://www.drupal.org/user/56348"
  4236. },
  4237. {
  4238. "name": "dman",
  4239. "homepage": "https://www.drupal.org/user/33240"
  4240. },
  4241. {
  4242. "name": "dopry",
  4243. "homepage": "https://www.drupal.org/user/22202"
  4244. },
  4245. {
  4246. "name": "drewish",
  4247. "homepage": "https://www.drupal.org/user/34869"
  4248. },
  4249. {
  4250. "name": "gdl",
  4251. "homepage": "https://www.drupal.org/user/507326"
  4252. },
  4253. {
  4254. "name": "mondrake",
  4255. "homepage": "https://www.drupal.org/user/1307444"
  4256. },
  4257. {
  4258. "name": "quicksketch",
  4259. "homepage": "https://www.drupal.org/user/35821"
  4260. },
  4261. {
  4262. "name": "sun",
  4263. "homepage": "https://www.drupal.org/user/54136"
  4264. },
  4265. {
  4266. "name": "walkah",
  4267. "homepage": "https://www.drupal.org/user/1531"
  4268. }
  4269. ],
  4270. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  4271. "homepage": "https://www.drupal.org/project/imagemagick",
  4272. "support": {
  4273. "source": "https://git.drupalcode.org/project/imagemagick"
  4274. }
  4275. },
  4276. {
  4277. "name": "drupal/inline_entity_form",
  4278. "version": "1.0.0-rc15",
  4279. "source": {
  4280. "type": "git",
  4281. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  4282. "reference": "8.x-1.0-rc15"
  4283. },
  4284. "dist": {
  4285. "type": "zip",
  4286. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc15.zip",
  4287. "reference": "8.x-1.0-rc15",
  4288. "shasum": "7702801f7e599956fc3d10cff8257809f53ac3ec"
  4289. },
  4290. "require": {
  4291. "drupal/core": "^8.8 || ^9 || ^10",
  4292. "php": ">=7.1"
  4293. },
  4294. "require-dev": {
  4295. "drupal/entity_reference_revisions": "^1.0"
  4296. },
  4297. "type": "drupal-module",
  4298. "extra": {
  4299. "drupal": {
  4300. "version": "8.x-1.0-rc15",
  4301. "datestamp": "1678126675",
  4302. "security-coverage": {
  4303. "status": "not-covered",
  4304. "message": "RC releases are not covered by Drupal security advisories."
  4305. }
  4306. }
  4307. },
  4308. "notification-url": "https://packages.drupal.org/8/downloads",
  4309. "license": [
  4310. "GPL-2.0-or-later"
  4311. ],
  4312. "authors": [
  4313. {
  4314. "name": "bojanz",
  4315. "homepage": "https://www.drupal.org/user/86106"
  4316. },
  4317. {
  4318. "name": "Centarro",
  4319. "homepage": "https://www.drupal.org/user/3661446"
  4320. },
  4321. {
  4322. "name": "dawehner",
  4323. "homepage": "https://www.drupal.org/user/99340"
  4324. },
  4325. {
  4326. "name": "geek-merlin",
  4327. "homepage": "https://www.drupal.org/user/229048"
  4328. },
  4329. {
  4330. "name": "joachim",
  4331. "homepage": "https://www.drupal.org/user/107701"
  4332. },
  4333. {
  4334. "name": "jsacksick",
  4335. "homepage": "https://www.drupal.org/user/972218"
  4336. },
  4337. {
  4338. "name": "oknate",
  4339. "homepage": "https://www.drupal.org/user/471638"
  4340. },
  4341. {
  4342. "name": "podarok",
  4343. "homepage": "https://www.drupal.org/user/116002"
  4344. },
  4345. {
  4346. "name": "ram4nd",
  4347. "homepage": "https://www.drupal.org/user/601534"
  4348. },
  4349. {
  4350. "name": "rszrama",
  4351. "homepage": "https://www.drupal.org/user/49344"
  4352. },
  4353. {
  4354. "name": "slashrsm",
  4355. "homepage": "https://www.drupal.org/user/744628"
  4356. },
  4357. {
  4358. "name": "webflo",
  4359. "homepage": "https://www.drupal.org/user/254778"
  4360. }
  4361. ],
  4362. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  4363. "homepage": "https://www.drupal.org/project/inline_entity_form",
  4364. "support": {
  4365. "source": "https://git.drupalcode.org/project/inline_entity_form"
  4366. }
  4367. },
  4368. {
  4369. "name": "drupal/jquery_ui",
  4370. "version": "1.6.0",
  4371. "source": {
  4372. "type": "git",
  4373. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  4374. "reference": "8.x-1.6"
  4375. },
  4376. "dist": {
  4377. "type": "zip",
  4378. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip",
  4379. "reference": "8.x-1.6",
  4380. "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0"
  4381. },
  4382. "require": {
  4383. "drupal/core": "^9.2 || ^10"
  4384. },
  4385. "type": "drupal-module",
  4386. "extra": {
  4387. "drupal": {
  4388. "version": "8.x-1.6",
  4389. "datestamp": "1668521197",
  4390. "security-coverage": {
  4391. "status": "covered",
  4392. "message": "Covered by Drupal's security advisory policy"
  4393. }
  4394. }
  4395. },
  4396. "notification-url": "https://packages.drupal.org/8/downloads",
  4397. "license": [
  4398. "GPL-2.0-or-later"
  4399. ],
  4400. "authors": [
  4401. {
  4402. "name": "bnjmnm",
  4403. "homepage": "https://www.drupal.org/user/2369194"
  4404. },
  4405. {
  4406. "name": "jjeff",
  4407. "homepage": "https://www.drupal.org/user/17190"
  4408. },
  4409. {
  4410. "name": "lauriii",
  4411. "homepage": "https://www.drupal.org/user/1078742"
  4412. },
  4413. {
  4414. "name": "litwol",
  4415. "homepage": "https://www.drupal.org/user/78134"
  4416. },
  4417. {
  4418. "name": "mfb",
  4419. "homepage": "https://www.drupal.org/user/12302"
  4420. },
  4421. {
  4422. "name": "mfer",
  4423. "homepage": "https://www.drupal.org/user/25701"
  4424. },
  4425. {
  4426. "name": "mikelutz",
  4427. "homepage": "https://www.drupal.org/user/2972409"
  4428. },
  4429. {
  4430. "name": "nod_",
  4431. "homepage": "https://www.drupal.org/user/598310"
  4432. },
  4433. {
  4434. "name": "phenaproxima",
  4435. "homepage": "https://www.drupal.org/user/205645"
  4436. },
  4437. {
  4438. "name": "RobLoach",
  4439. "homepage": "https://www.drupal.org/user/61114"
  4440. },
  4441. {
  4442. "name": "sun",
  4443. "homepage": "https://www.drupal.org/user/54136"
  4444. },
  4445. {
  4446. "name": "webchick",
  4447. "homepage": "https://www.drupal.org/user/24967"
  4448. },
  4449. {
  4450. "name": "Wim Leers",
  4451. "homepage": "https://www.drupal.org/user/99777"
  4452. },
  4453. {
  4454. "name": "zrpnr",
  4455. "homepage": "https://www.drupal.org/user/1448368"
  4456. }
  4457. ],
  4458. "description": "Provides jQuery UI library.",
  4459. "homepage": "https://www.drupal.org/project/jquery_ui",
  4460. "support": {
  4461. "source": "https://git.drupalcode.org/project/jquery_ui"
  4462. }
  4463. },
  4464. {
  4465. "name": "drupal/jquery_ui_datepicker",
  4466. "version": "2.0.0",
  4467. "source": {
  4468. "type": "git",
  4469. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  4470. "reference": "2.0.0"
  4471. },
  4472. "dist": {
  4473. "type": "zip",
  4474. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.0.0.zip",
  4475. "reference": "2.0.0",
  4476. "shasum": "ce40cf8ab400866bffda1ac3f7e4a5ac20bb3ae5"
  4477. },
  4478. "require": {
  4479. "drupal/core": "^9.2 || ^10",
  4480. "drupal/jquery_ui": "^1.6"
  4481. },
  4482. "type": "drupal-module",
  4483. "extra": {
  4484. "drupal": {
  4485. "version": "2.0.0",
  4486. "datestamp": "1670871494",
  4487. "security-coverage": {
  4488. "status": "covered",
  4489. "message": "Covered by Drupal's security advisory policy"
  4490. }
  4491. }
  4492. },
  4493. "notification-url": "https://packages.drupal.org/8/downloads",
  4494. "license": [
  4495. "GPL-2.0-or-later"
  4496. ],
  4497. "authors": [
  4498. {
  4499. "name": "bnjmnm",
  4500. "homepage": "https://www.drupal.org/user/2369194"
  4501. },
  4502. {
  4503. "name": "jrockowitz",
  4504. "homepage": "https://www.drupal.org/user/371407"
  4505. },
  4506. {
  4507. "name": "lauriii",
  4508. "homepage": "https://www.drupal.org/user/1078742"
  4509. },
  4510. {
  4511. "name": "nod_",
  4512. "homepage": "https://www.drupal.org/user/598310"
  4513. },
  4514. {
  4515. "name": "phenaproxima",
  4516. "homepage": "https://www.drupal.org/user/205645"
  4517. },
  4518. {
  4519. "name": "zrpnr",
  4520. "homepage": "https://www.drupal.org/user/1448368"
  4521. }
  4522. ],
  4523. "description": "Provides jQuery UI Datepicker library.",
  4524. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  4525. "support": {
  4526. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  4527. }
  4528. },
  4529. {
  4530. "name": "drupal/jquery_ui_slider",
  4531. "version": "2.0.0",
  4532. "source": {
  4533. "type": "git",
  4534. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  4535. "reference": "2.0.0"
  4536. },
  4537. "dist": {
  4538. "type": "zip",
  4539. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.0.0.zip",
  4540. "reference": "2.0.0",
  4541. "shasum": "86b7d71e91013cffafb8021dbf8047745ebc5fd6"
  4542. },
  4543. "require": {
  4544. "drupal/core": "^9.2 || ^10",
  4545. "drupal/jquery_ui": "^1.6"
  4546. },
  4547. "type": "drupal-module",
  4548. "extra": {
  4549. "drupal": {
  4550. "version": "2.0.0",
  4551. "datestamp": "1670871571",
  4552. "security-coverage": {
  4553. "status": "covered",
  4554. "message": "Covered by Drupal's security advisory policy"
  4555. }
  4556. }
  4557. },
  4558. "notification-url": "https://packages.drupal.org/8/downloads",
  4559. "license": [
  4560. "GPL-2.0-or-later"
  4561. ],
  4562. "authors": [
  4563. {
  4564. "name": "bnjmnm",
  4565. "homepage": "https://www.drupal.org/user/2369194"
  4566. },
  4567. {
  4568. "name": "lauriii",
  4569. "homepage": "https://www.drupal.org/user/1078742"
  4570. },
  4571. {
  4572. "name": "zrpnr",
  4573. "homepage": "https://www.drupal.org/user/1448368"
  4574. }
  4575. ],
  4576. "description": "Provides jQuery UI Slider library.",
  4577. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  4578. "support": {
  4579. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  4580. }
  4581. },
  4582. {
  4583. "name": "drupal/jquery_ui_touch_punch",
  4584. "version": "1.1.0",
  4585. "source": {
  4586. "type": "git",
  4587. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  4588. "reference": "1.1.0"
  4589. },
  4590. "dist": {
  4591. "type": "zip",
  4592. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.0.zip",
  4593. "reference": "1.1.0",
  4594. "shasum": "4b7e50a98246dfa6ef48e5b12c70277873902824"
  4595. },
  4596. "require": {
  4597. "drupal/core": "^8 || ^9 || ^10",
  4598. "drupal/jquery_ui": "^1.0",
  4599. "politsin/jquery-ui-touch-punch": "^1.0"
  4600. },
  4601. "type": "drupal-module",
  4602. "extra": {
  4603. "drupal": {
  4604. "version": "1.1.0",
  4605. "datestamp": "1662744607",
  4606. "security-coverage": {
  4607. "status": "covered",
  4608. "message": "Covered by Drupal's security advisory policy"
  4609. }
  4610. }
  4611. },
  4612. "notification-url": "https://packages.drupal.org/8/downloads",
  4613. "license": [
  4614. "GPL-2.0-or-later"
  4615. ],
  4616. "authors": [
  4617. {
  4618. "name": "Naveen Valecha",
  4619. "homepage": "https://drupal.org/u/naveenvalecha",
  4620. "role": "Maintainer"
  4621. },
  4622. {
  4623. "name": "naveenvalecha",
  4624. "homepage": "https://www.drupal.org/user/2665733"
  4625. }
  4626. ],
  4627. "description": "Provides jQuery UI Touch Punch library.",
  4628. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  4629. "keywords": [
  4630. "Drupal",
  4631. "jquery_ui_touch_punch"
  4632. ],
  4633. "support": {
  4634. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  4635. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch"
  4636. }
  4637. },
  4638. {
  4639. "name": "drupal/link_attributes",
  4640. "version": "1.14.0",
  4641. "source": {
  4642. "type": "git",
  4643. "url": "https://git.drupalcode.org/project/link_attributes.git",
  4644. "reference": "8.x-1.14"
  4645. },
  4646. "dist": {
  4647. "type": "zip",
  4648. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.14.zip",
  4649. "reference": "8.x-1.14",
  4650. "shasum": "fa4f27ecaed7e6b3c58c0adc679918a9beb7ded5"
  4651. },
  4652. "require": {
  4653. "drupal/core": "^9 || ^10"
  4654. },
  4655. "type": "drupal-module",
  4656. "extra": {
  4657. "drupal": {
  4658. "version": "8.x-1.14",
  4659. "datestamp": "1687393687",
  4660. "security-coverage": {
  4661. "status": "covered",
  4662. "message": "Covered by Drupal's security advisory policy"
  4663. }
  4664. }
  4665. },
  4666. "notification-url": "https://packages.drupal.org/8/downloads",
  4667. "license": [
  4668. "GPL-2.0-or-later"
  4669. ],
  4670. "authors": [
  4671. {
  4672. "name": "larowlan",
  4673. "homepage": "https://www.drupal.org/user/395439"
  4674. }
  4675. ],
  4676. "description": "Provides a widget to allow settings of link attributes for menu links.",
  4677. "homepage": "https://www.drupal.org/project/link_attributes",
  4678. "keywords": [
  4679. "Drupal"
  4680. ],
  4681. "support": {
  4682. "source": "https://git.drupalcode.org/project/link_attributes",
  4683. "issues": "https://www.drupal.org/project/issues/link_attributes"
  4684. }
  4685. },
  4686. {
  4687. "name": "drupal/linkit",
  4688. "version": "6.1.2",
  4689. "source": {
  4690. "type": "git",
  4691. "url": "https://git.drupalcode.org/project/linkit.git",
  4692. "reference": "6.1.2"
  4693. },
  4694. "dist": {
  4695. "type": "zip",
  4696. "url": "https://ftp.drupal.org/files/projects/linkit-6.1.2.zip",
  4697. "reference": "6.1.2",
  4698. "shasum": "63fb311d2b78df81a9a588330429b640ec7da0e8"
  4699. },
  4700. "require": {
  4701. "drupal/core": "^10.1"
  4702. },
  4703. "require-dev": {
  4704. "drupal/ckeditor": "*",
  4705. "drupal/imce": "*"
  4706. },
  4707. "type": "drupal-module",
  4708. "extra": {
  4709. "drupal": {
  4710. "version": "6.1.2",
  4711. "datestamp": "1696865478",
  4712. "security-coverage": {
  4713. "status": "covered",
  4714. "message": "Covered by Drupal's security advisory policy"
  4715. }
  4716. }
  4717. },
  4718. "notification-url": "https://packages.drupal.org/8/downloads",
  4719. "license": [
  4720. "GPL-2.0-or-later"
  4721. ],
  4722. "authors": [
  4723. {
  4724. "name": "Emil Stjerneman",
  4725. "homepage": "https://stjerneman.com",
  4726. "email": "emil@stjerneman.com",
  4727. "role": "Maintainer"
  4728. },
  4729. {
  4730. "name": "johnwebdev",
  4731. "homepage": "https://www.drupal.org/user/3331569"
  4732. },
  4733. {
  4734. "name": "mark_fullmer",
  4735. "homepage": "https://www.drupal.org/user/2612816"
  4736. }
  4737. ],
  4738. "description": "Linkit - Enriched linking experience",
  4739. "homepage": "http://drupal.org/project/linkit",
  4740. "support": {
  4741. "source": "http://cgit.drupalcode.org/linkit",
  4742. "issues": "http://drupal.org/project/linkit"
  4743. }
  4744. },
  4745. {
  4746. "name": "drupal/login_destination",
  4747. "version": "dev-2.x",
  4748. "source": {
  4749. "type": "git",
  4750. "url": "https://git.drupalcode.org/project/login_destination.git",
  4751. "reference": "5ba35c477e9b902b08c70c60e1d28eff11cc8e9f"
  4752. },
  4753. "require": {
  4754. "drupal/core": "^8.7.10 || ^9 || ^10"
  4755. },
  4756. "require-dev": {
  4757. "drupal/admin_toolbar": "^1.23",
  4758. "drupal/admin_toolbar_tools": "*"
  4759. },
  4760. "type": "drupal-module",
  4761. "extra": {
  4762. "branch-alias": {
  4763. "dev-2.x": "2.x-dev"
  4764. },
  4765. "drupal": {
  4766. "version": "8.x-2.0-beta5+3-dev",
  4767. "datestamp": "1680181961",
  4768. "security-coverage": {
  4769. "status": "not-covered",
  4770. "message": "Dev releases are not covered by Drupal security advisories."
  4771. }
  4772. }
  4773. },
  4774. "notification-url": "https://packages.drupal.org/8/downloads",
  4775. "license": [
  4776. "GPL-2.0-or-later"
  4777. ],
  4778. "authors": [
  4779. {
  4780. "name": "rsvelko",
  4781. "homepage": "https://www.drupal.org/u/rsvelko",
  4782. "role": "Creator, Maintainer"
  4783. },
  4784. {
  4785. "name": "Other Contributors",
  4786. "homepage": "https://www.drupal.org/node/69051/committers",
  4787. "role": "Contributors"
  4788. },
  4789. {
  4790. "name": "ddrozdik",
  4791. "homepage": "https://www.drupal.org/user/574124"
  4792. },
  4793. {
  4794. "name": "jng12",
  4795. "homepage": "https://www.drupal.org/user/204316"
  4796. },
  4797. {
  4798. "name": "marcp",
  4799. "homepage": "https://www.drupal.org/user/20885"
  4800. },
  4801. {
  4802. "name": "mithy",
  4803. "homepage": "https://www.drupal.org/user/258911"
  4804. },
  4805. {
  4806. "name": "moshe weitzman",
  4807. "homepage": "https://www.drupal.org/user/23"
  4808. },
  4809. {
  4810. "name": "Oliver Huynh",
  4811. "homepage": "https://www.drupal.org/user/243730"
  4812. },
  4813. {
  4814. "name": "perennial.sky",
  4815. "homepage": "https://www.drupal.org/user/2622667"
  4816. },
  4817. {
  4818. "name": "rsvelko",
  4819. "homepage": "https://www.drupal.org/user/337401"
  4820. }
  4821. ],
  4822. "description": "Customizes the destination the user is redirected to after login/logout/registration/one-time login.",
  4823. "homepage": "https://drupal.org/project/login_destination",
  4824. "support": {
  4825. "source": "https://git.drupalcode.org/project/login_destination",
  4826. "issues": "https://drupal.org/project/issues/login_destination"
  4827. }
  4828. },
  4829. {
  4830. "name": "drupal/maillog",
  4831. "version": "dev-1.x",
  4832. "source": {
  4833. "type": "git",
  4834. "url": "https://git.drupalcode.org/project/maillog.git",
  4835. "reference": "baa5d6ca739e6aecfdf28461d54911a2f6a038a4"
  4836. },
  4837. "require": {
  4838. "drupal/core": "^9 || ^10"
  4839. },
  4840. "type": "drupal-module",
  4841. "extra": {
  4842. "branch-alias": {
  4843. "dev-1.x": "1.x-dev"
  4844. },
  4845. "drupal": {
  4846. "version": "8.x-1.1+2-dev",
  4847. "datestamp": "1686405787",
  4848. "security-coverage": {
  4849. "status": "not-covered",
  4850. "message": "Dev releases are not covered by Drupal security advisories."
  4851. }
  4852. }
  4853. },
  4854. "notification-url": "https://packages.drupal.org/8/downloads",
  4855. "license": [
  4856. "GPL-2.0-or-later"
  4857. ],
  4858. "authors": [
  4859. {
  4860. "name": "Berdir",
  4861. "homepage": "https://www.drupal.org/user/214652"
  4862. },
  4863. {
  4864. "name": "DamienMcKenna",
  4865. "homepage": "https://www.drupal.org/user/108450"
  4866. },
  4867. {
  4868. "name": "miro_dietiker",
  4869. "homepage": "https://www.drupal.org/user/227761"
  4870. },
  4871. {
  4872. "name": "pluess",
  4873. "homepage": "https://www.drupal.org/user/84659"
  4874. }
  4875. ],
  4876. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  4877. "homepage": "https://www.drupal.org/project/maillog",
  4878. "support": {
  4879. "source": "https://git.drupalcode.org/project/maillog"
  4880. }
  4881. },
  4882. {
  4883. "name": "drupal/matomo",
  4884. "version": "1.22.0",
  4885. "source": {
  4886. "type": "git",
  4887. "url": "https://git.drupalcode.org/project/matomo.git",
  4888. "reference": "8.x-1.22"
  4889. },
  4890. "dist": {
  4891. "type": "zip",
  4892. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.22.zip",
  4893. "reference": "8.x-1.22",
  4894. "shasum": "b41bb83d9c0c6f8c27f72f6b1b62f691dab65a5d"
  4895. },
  4896. "require": {
  4897. "drupal/core": "^9.0 || ^10"
  4898. },
  4899. "conflict": {
  4900. "drupal/csp": "<1.12"
  4901. },
  4902. "require-dev": {
  4903. "drupal/csp": "~1.12",
  4904. "drupal/php": "~1.1",
  4905. "drupal/token": "~1.9"
  4906. },
  4907. "type": "drupal-module",
  4908. "extra": {
  4909. "drupal": {
  4910. "version": "8.x-1.22",
  4911. "datestamp": "1691004328",
  4912. "security-coverage": {
  4913. "status": "covered",
  4914. "message": "Covered by Drupal's security advisory policy"
  4915. }
  4916. }
  4917. },
  4918. "notification-url": "https://packages.drupal.org/8/downloads",
  4919. "license": [
  4920. "GPL-2.0-or-later"
  4921. ],
  4922. "authors": [
  4923. {
  4924. "name": "C-Logemann",
  4925. "homepage": "https://www.drupal.org/user/218368"
  4926. },
  4927. {
  4928. "name": "Grimreaper",
  4929. "homepage": "https://www.drupal.org/user/2388214"
  4930. },
  4931. {
  4932. "name": "hass",
  4933. "homepage": "https://www.drupal.org/user/85918"
  4934. },
  4935. {
  4936. "name": "shelane",
  4937. "homepage": "https://www.drupal.org/user/2674989"
  4938. }
  4939. ],
  4940. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  4941. "homepage": "https://www.drupal.org/project/matomo",
  4942. "support": {
  4943. "source": "https://git.drupalcode.org/project/matomo"
  4944. }
  4945. },
  4946. {
  4947. "name": "drupal/maxlength",
  4948. "version": "2.1.2",
  4949. "source": {
  4950. "type": "git",
  4951. "url": "https://git.drupalcode.org/project/maxlength.git",
  4952. "reference": "2.1.2"
  4953. },
  4954. "dist": {
  4955. "type": "zip",
  4956. "url": "https://ftp.drupal.org/files/projects/maxlength-2.1.2.zip",
  4957. "reference": "2.1.2",
  4958. "shasum": "97015e4d1065770a92953c9f37fef5d55b360cf6"
  4959. },
  4960. "require": {
  4961. "drupal/core": "^9.2 || ^10"
  4962. },
  4963. "type": "drupal-module",
  4964. "extra": {
  4965. "drupal": {
  4966. "version": "2.1.2",
  4967. "datestamp": "1689974531",
  4968. "security-coverage": {
  4969. "status": "covered",
  4970. "message": "Covered by Drupal's security advisory policy"
  4971. }
  4972. }
  4973. },
  4974. "notification-url": "https://packages.drupal.org/8/downloads",
  4975. "license": [
  4976. "GPL-2.0-or-later"
  4977. ],
  4978. "authors": [
  4979. {
  4980. "name": "Marius Scurtescu (mariuss)",
  4981. "homepage": "https://www.drupal.org/u/mariuss",
  4982. "role": "Maintainer"
  4983. },
  4984. {
  4985. "name": "Clayton Dewey (cedewey)",
  4986. "homepage": "https://www.drupal.org/u/cedewey",
  4987. "role": "Maintainer"
  4988. },
  4989. {
  4990. "name": "Daniel Wehner (dawehner)",
  4991. "homepage": "https://www.drupal.org/u/dawehner",
  4992. "role": "Maintainer"
  4993. },
  4994. {
  4995. "name": "Paulino Michelazzo (pmichelazzo)",
  4996. "homepage": "https://www.drupal.org/u/pmichelazzo",
  4997. "role": "Maintainer"
  4998. },
  4999. {
  5000. "name": "Jeff Hipp (hipp2bsquare)",
  5001. "homepage": "https://www.drupal.org/u/hipp2bsquare",
  5002. "role": "Maintainer"
  5003. },
  5004. {
  5005. "name": "Steven DuBois (srdtwc)",
  5006. "homepage": "https://www.drupal.org/u/srdtwc",
  5007. "role": "Maintainer"
  5008. },
  5009. {
  5010. "name": "srdtwc",
  5011. "homepage": "https://www.drupal.org/user/3422763"
  5012. }
  5013. ],
  5014. "description": "MaxLength allows a soft or hard character limit to be set on titles, text fields and link fields.",
  5015. "homepage": "https://www.drupal.org/project/maxlength",
  5016. "support": {
  5017. "source": "https://git.drupalcode.org/project/maxlength",
  5018. "issues": "https://www.drupal.org/project/issues/maxlength"
  5019. }
  5020. },
  5021. {
  5022. "name": "drupal/menu_admin_per_menu",
  5023. "version": "1.5.0",
  5024. "source": {
  5025. "type": "git",
  5026. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  5027. "reference": "8.x-1.5"
  5028. },
  5029. "dist": {
  5030. "type": "zip",
  5031. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.5.zip",
  5032. "reference": "8.x-1.5",
  5033. "shasum": "ec8c7a4a064aa285dfb722dad264da9936fc81b6"
  5034. },
  5035. "require": {
  5036. "drupal/core": "^9 || ^10"
  5037. },
  5038. "type": "drupal-module",
  5039. "extra": {
  5040. "drupal": {
  5041. "version": "8.x-1.5",
  5042. "datestamp": "1660918821",
  5043. "security-coverage": {
  5044. "status": "covered",
  5045. "message": "Covered by Drupal's security advisory policy"
  5046. }
  5047. }
  5048. },
  5049. "notification-url": "https://packages.drupal.org/8/downloads",
  5050. "license": [
  5051. "GPL-2.0-or-later"
  5052. ],
  5053. "authors": [
  5054. {
  5055. "name": "anrikun",
  5056. "homepage": "https://www.drupal.org/user/410199"
  5057. },
  5058. {
  5059. "name": "JeroenT",
  5060. "homepage": "https://www.drupal.org/user/2228934"
  5061. },
  5062. {
  5063. "name": "jonas139",
  5064. "homepage": "https://www.drupal.org/user/2873401"
  5065. },
  5066. {
  5067. "name": "mkdok",
  5068. "homepage": "https://www.drupal.org/user/3308753"
  5069. }
  5070. ],
  5071. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  5072. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  5073. "support": {
  5074. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  5075. }
  5076. },
  5077. {
  5078. "name": "drupal/menu_block",
  5079. "version": "dev-1.x",
  5080. "source": {
  5081. "type": "git",
  5082. "url": "https://git.drupalcode.org/project/menu_block.git",
  5083. "reference": "aafb3953b765e93d4de49c4fb6130a49304e6f2a"
  5084. },
  5085. "require": {
  5086. "drupal/core": "^9.1 || ^10"
  5087. },
  5088. "type": "drupal-module",
  5089. "extra": {
  5090. "branch-alias": {
  5091. "dev-1.x": "1.x-dev"
  5092. },
  5093. "drupal": {
  5094. "version": "8.x-1.9+1-dev",
  5095. "datestamp": "1667434044",
  5096. "security-coverage": {
  5097. "status": "not-covered",
  5098. "message": "Dev releases are not covered by Drupal security advisories."
  5099. }
  5100. }
  5101. },
  5102. "notification-url": "https://packages.drupal.org/8/downloads",
  5103. "license": [
  5104. "GPL-2.0-or-later"
  5105. ],
  5106. "authors": [
  5107. {
  5108. "name": "Dave Reid",
  5109. "homepage": "https://www.drupal.org/user/53892"
  5110. },
  5111. {
  5112. "name": "joelpittet",
  5113. "homepage": "https://www.drupal.org/user/160302"
  5114. },
  5115. {
  5116. "name": "JohnAlbin",
  5117. "homepage": "https://www.drupal.org/user/32095"
  5118. },
  5119. {
  5120. "name": "kim.pepper",
  5121. "homepage": "https://www.drupal.org/user/370574"
  5122. },
  5123. {
  5124. "name": "RenatoG",
  5125. "homepage": "https://www.drupal.org/user/3326031"
  5126. },
  5127. {
  5128. "name": "rrrob",
  5129. "homepage": "https://www.drupal.org/user/273533"
  5130. }
  5131. ],
  5132. "description": "Provides configurable blocks of menu links.",
  5133. "homepage": "https://www.drupal.org/project/menu_block",
  5134. "support": {
  5135. "source": "https://git.drupalcode.org/project/menu_block"
  5136. }
  5137. },
  5138. {
  5139. "name": "drupal/menu_position",
  5140. "version": "dev-1.x",
  5141. "source": {
  5142. "type": "git",
  5143. "url": "https://git.drupalcode.org/project/menu_position.git",
  5144. "reference": "f88cef07a70af63337a82652b9224a9c0b08b5b2"
  5145. },
  5146. "require": {
  5147. "drupal/core": "^8 || ^9 || ^10"
  5148. },
  5149. "type": "drupal-module",
  5150. "extra": {
  5151. "branch-alias": {
  5152. "dev-1.x": "1.x-dev"
  5153. },
  5154. "drupal": {
  5155. "version": "8.x-1.0+6-dev",
  5156. "datestamp": "1685505680",
  5157. "security-coverage": {
  5158. "status": "not-covered",
  5159. "message": "Dev releases are not covered by Drupal security advisories."
  5160. }
  5161. }
  5162. },
  5163. "notification-url": "https://packages.drupal.org/8/downloads",
  5164. "license": [
  5165. "GPL-2.0-or-later"
  5166. ],
  5167. "authors": [
  5168. {
  5169. "name": "BarisW",
  5170. "homepage": "https://www.drupal.org/user/107229"
  5171. },
  5172. {
  5173. "name": "joelpittet",
  5174. "homepage": "https://www.drupal.org/user/160302"
  5175. },
  5176. {
  5177. "name": "JohnAlbin",
  5178. "homepage": "https://www.drupal.org/user/32095"
  5179. },
  5180. {
  5181. "name": "lbainbridge",
  5182. "homepage": "https://www.drupal.org/user/2406996"
  5183. },
  5184. {
  5185. "name": "Rajab Natshah",
  5186. "homepage": "https://www.drupal.org/user/1414312"
  5187. },
  5188. {
  5189. "name": "Sutharsan",
  5190. "homepage": "https://www.drupal.org/user/73854"
  5191. }
  5192. ],
  5193. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  5194. "homepage": "https://www.drupal.org/project/menu_position",
  5195. "support": {
  5196. "source": "https://git.drupalcode.org/project/menu_position",
  5197. "issues": "https://www.drupal.org/project/issues/menu_position"
  5198. }
  5199. },
  5200. {
  5201. "name": "drupal/pagerer",
  5202. "version": "3.0.0",
  5203. "source": {
  5204. "type": "git",
  5205. "url": "https://git.drupalcode.org/project/pagerer.git",
  5206. "reference": "3.0.0"
  5207. },
  5208. "dist": {
  5209. "type": "zip",
  5210. "url": "https://ftp.drupal.org/files/projects/pagerer-3.0.0.zip",
  5211. "reference": "3.0.0",
  5212. "shasum": "8b81271842b68399c1c58d0809cf1c737fa2aa1c"
  5213. },
  5214. "require": {
  5215. "drupal/core": "^10"
  5216. },
  5217. "type": "drupal-module",
  5218. "extra": {
  5219. "drupal": {
  5220. "version": "3.0.0",
  5221. "datestamp": "1663962586",
  5222. "security-coverage": {
  5223. "status": "covered",
  5224. "message": "Covered by Drupal's security advisory policy"
  5225. }
  5226. }
  5227. },
  5228. "notification-url": "https://packages.drupal.org/8/downloads",
  5229. "license": [
  5230. "GPL-2.0-or-later"
  5231. ],
  5232. "authors": [
  5233. {
  5234. "name": "mondrake",
  5235. "homepage": "https://www.drupal.org/user/1307444"
  5236. }
  5237. ],
  5238. "description": "Configurable pager styles.",
  5239. "homepage": "https://www.drupal.org/project/pagerer",
  5240. "support": {
  5241. "source": "https://git.drupalcode.org/project/pagerer"
  5242. }
  5243. },
  5244. {
  5245. "name": "drupal/path_alias_xt",
  5246. "version": "dev-1.x",
  5247. "source": {
  5248. "type": "git",
  5249. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  5250. "reference": "0573ad218a2f7143544626165418eaeec03e1157"
  5251. },
  5252. "require": {
  5253. "drupal/core": "^9.3 || ^10"
  5254. },
  5255. "type": "drupal-module",
  5256. "extra": {
  5257. "branch-alias": {
  5258. "dev-1.x": "1.x-dev"
  5259. },
  5260. "drupal": {
  5261. "version": "8.x-1.x-dev",
  5262. "datestamp": "1658166545",
  5263. "security-coverage": {
  5264. "status": "not-covered",
  5265. "message": "Dev releases are not covered by Drupal security advisories."
  5266. }
  5267. }
  5268. },
  5269. "notification-url": "https://packages.drupal.org/8/downloads",
  5270. "license": [
  5271. "GPL-2.0-or-later"
  5272. ],
  5273. "authors": [
  5274. {
  5275. "name": "adriancid",
  5276. "homepage": "https://www.drupal.org/user/1962106"
  5277. },
  5278. {
  5279. "name": "RdeBoer",
  5280. "homepage": "https://www.drupal.org/user/404007"
  5281. },
  5282. {
  5283. "name": "sdstyles",
  5284. "homepage": "https://www.drupal.org/user/1420228"
  5285. }
  5286. ],
  5287. "description": "Automatically extend path aliases to include tabs, like <em>about-us/edit</em> for <em>node/123/edit</em>.<br> Allow these aliases to be entered in page specification wild-cards, <em>about-us*</em>, e.g for block visibility.",
  5288. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5289. "support": {
  5290. "source": "https://git.drupalcode.org/project/path_alias_xt"
  5291. }
  5292. },
  5293. {
  5294. "name": "drupal/pathauto",
  5295. "version": "1.12.0",
  5296. "source": {
  5297. "type": "git",
  5298. "url": "https://git.drupalcode.org/project/pathauto.git",
  5299. "reference": "8.x-1.12"
  5300. },
  5301. "dist": {
  5302. "type": "zip",
  5303. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.12.zip",
  5304. "reference": "8.x-1.12",
  5305. "shasum": "b7b6432e315e38e59a7c6cc117134326c580de4c"
  5306. },
  5307. "require": {
  5308. "drupal/core": "^9.3 || ^10",
  5309. "drupal/ctools": "*",
  5310. "drupal/token": "*"
  5311. },
  5312. "suggest": {
  5313. "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."
  5314. },
  5315. "type": "drupal-module",
  5316. "extra": {
  5317. "drupal": {
  5318. "version": "8.x-1.12",
  5319. "datestamp": "1696776683",
  5320. "security-coverage": {
  5321. "status": "covered",
  5322. "message": "Covered by Drupal's security advisory policy"
  5323. }
  5324. },
  5325. "drush": {
  5326. "services": {
  5327. "drush.services.yml": "^9 || ^10"
  5328. }
  5329. }
  5330. },
  5331. "notification-url": "https://packages.drupal.org/8/downloads",
  5332. "license": [
  5333. "GPL-2.0-or-later"
  5334. ],
  5335. "authors": [
  5336. {
  5337. "name": "Berdir",
  5338. "homepage": "https://www.drupal.org/user/214652"
  5339. },
  5340. {
  5341. "name": "Dave Reid",
  5342. "homepage": "https://www.drupal.org/user/53892"
  5343. },
  5344. {
  5345. "name": "Freso",
  5346. "homepage": "https://www.drupal.org/user/27504"
  5347. },
  5348. {
  5349. "name": "greggles",
  5350. "homepage": "https://www.drupal.org/user/36762"
  5351. }
  5352. ],
  5353. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  5354. "homepage": "https://www.drupal.org/project/pathauto",
  5355. "support": {
  5356. "source": "https://cgit.drupalcode.org/pathauto",
  5357. "issues": "https://www.drupal.org/project/issues/pathauto",
  5358. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  5359. }
  5360. },
  5361. {
  5362. "name": "drupal/pathologic",
  5363. "version": "2.0.0-alpha1",
  5364. "source": {
  5365. "type": "git",
  5366. "url": "https://git.drupalcode.org/project/pathologic.git",
  5367. "reference": "2.0.0-alpha1"
  5368. },
  5369. "dist": {
  5370. "type": "zip",
  5371. "url": "https://ftp.drupal.org/files/projects/pathologic-2.0.0-alpha1.zip",
  5372. "reference": "2.0.0-alpha1",
  5373. "shasum": "be911b098ece7d1ffa55cf0d5f33d38ea40acda4"
  5374. },
  5375. "require": {
  5376. "drupal/core": "^9 || ^10"
  5377. },
  5378. "type": "drupal-module",
  5379. "extra": {
  5380. "drupal": {
  5381. "version": "2.0.0-alpha1",
  5382. "datestamp": "1681263978",
  5383. "security-coverage": {
  5384. "status": "not-covered",
  5385. "message": "Alpha releases are not covered by Drupal security advisories."
  5386. }
  5387. }
  5388. },
  5389. "notification-url": "https://packages.drupal.org/8/downloads",
  5390. "license": [
  5391. "GPL-2.0+"
  5392. ],
  5393. "authors": [
  5394. {
  5395. "name": "Berdir",
  5396. "homepage": "https://www.drupal.org/user/214652"
  5397. },
  5398. {
  5399. "name": "dww",
  5400. "homepage": "https://www.drupal.org/user/46549"
  5401. },
  5402. {
  5403. "name": "Garrett Albright",
  5404. "homepage": "https://www.drupal.org/user/191212"
  5405. },
  5406. {
  5407. "name": "mark_fullmer",
  5408. "homepage": "https://www.drupal.org/user/2612816"
  5409. }
  5410. ],
  5411. "description": "Helps avoid broken links and incorrect paths in content.",
  5412. "homepage": "https://www.drupal.org/project/pathologic",
  5413. "support": {
  5414. "source": "https://git.drupalcode.org/project/pathologic"
  5415. }
  5416. },
  5417. {
  5418. "name": "drupal/persistent_login",
  5419. "version": "1.6.0",
  5420. "source": {
  5421. "type": "git",
  5422. "url": "https://git.drupalcode.org/project/persistent_login.git",
  5423. "reference": "8.x-1.6"
  5424. },
  5425. "dist": {
  5426. "type": "zip",
  5427. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.6.zip",
  5428. "reference": "8.x-1.6",
  5429. "shasum": "87bc87ae8c4035efbdf8d6cae17c489c4fdd0aa3"
  5430. },
  5431. "require": {
  5432. "drupal/core": "^9.2 || ^10"
  5433. },
  5434. "type": "drupal-module",
  5435. "extra": {
  5436. "drupal": {
  5437. "version": "8.x-1.6",
  5438. "datestamp": "1679547817",
  5439. "security-coverage": {
  5440. "status": "covered",
  5441. "message": "Covered by Drupal's security advisory policy"
  5442. }
  5443. }
  5444. },
  5445. "notification-url": "https://packages.drupal.org/8/downloads",
  5446. "license": [
  5447. "GPL-2.0-or-later"
  5448. ],
  5449. "authors": [
  5450. {
  5451. "name": "gapple",
  5452. "homepage": "https://www.drupal.org/user/490940"
  5453. }
  5454. ],
  5455. "description": "Provides a \"Remember Me\" feature on the login form.",
  5456. "homepage": "https://www.drupal.org/project/persistent_login",
  5457. "keywords": [
  5458. "Drupal"
  5459. ],
  5460. "support": {
  5461. "source": "https://git.drupalcode.org/project/persistent_login",
  5462. "issues": "https://www.drupal.org/project/issues/persistent_login"
  5463. }
  5464. },
  5465. {
  5466. "name": "drupal/profile",
  5467. "version": "1.7.0",
  5468. "source": {
  5469. "type": "git",
  5470. "url": "https://git.drupalcode.org/project/profile.git",
  5471. "reference": "8.x-1.7"
  5472. },
  5473. "dist": {
  5474. "type": "zip",
  5475. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.7.zip",
  5476. "reference": "8.x-1.7",
  5477. "shasum": "f0236acff507aff2a1e2e11cb9c873a0b608ec1c"
  5478. },
  5479. "require": {
  5480. "drupal/core": "^9 || ^10",
  5481. "drupal/entity": "^1.0"
  5482. },
  5483. "require-dev": {
  5484. "drupal/token": "^1.7"
  5485. },
  5486. "type": "drupal-module",
  5487. "extra": {
  5488. "drupal": {
  5489. "version": "8.x-1.7",
  5490. "datestamp": "1665131792",
  5491. "security-coverage": {
  5492. "status": "covered",
  5493. "message": "Covered by Drupal's security advisory policy"
  5494. }
  5495. }
  5496. },
  5497. "notification-url": "https://packages.drupal.org/8/downloads",
  5498. "license": [
  5499. "GPL-2.0-or-later"
  5500. ],
  5501. "authors": [
  5502. {
  5503. "name": "bojanz",
  5504. "homepage": "https://www.drupal.org/user/86106"
  5505. },
  5506. {
  5507. "name": "daggerhart",
  5508. "homepage": "https://www.drupal.org/user/167806"
  5509. },
  5510. {
  5511. "name": "fago",
  5512. "homepage": "https://www.drupal.org/user/16747"
  5513. },
  5514. {
  5515. "name": "jsacksick",
  5516. "homepage": "https://www.drupal.org/user/972218"
  5517. },
  5518. {
  5519. "name": "mglaman",
  5520. "homepage": "https://www.drupal.org/user/2416470"
  5521. },
  5522. {
  5523. "name": "pcambra",
  5524. "homepage": "https://www.drupal.org/user/122101"
  5525. }
  5526. ],
  5527. "description": "Provides configurable user profiles.",
  5528. "homepage": "https://drupal.org/project/profile",
  5529. "support": {
  5530. "source": "https://git.drupalcode.org/project/profile"
  5531. }
  5532. },
  5533. {
  5534. "name": "drupal/redirect",
  5535. "version": "1.9.0",
  5536. "source": {
  5537. "type": "git",
  5538. "url": "https://git.drupalcode.org/project/redirect.git",
  5539. "reference": "8.x-1.9"
  5540. },
  5541. "dist": {
  5542. "type": "zip",
  5543. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip",
  5544. "reference": "8.x-1.9",
  5545. "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e"
  5546. },
  5547. "require": {
  5548. "drupal/core": "^9.2 || ^10"
  5549. },
  5550. "type": "drupal-module",
  5551. "extra": {
  5552. "drupal": {
  5553. "version": "8.x-1.9",
  5554. "datestamp": "1693393506",
  5555. "security-coverage": {
  5556. "status": "covered",
  5557. "message": "Covered by Drupal's security advisory policy"
  5558. }
  5559. }
  5560. },
  5561. "notification-url": "https://packages.drupal.org/8/downloads",
  5562. "license": [
  5563. "GPL-2.0-or-later"
  5564. ],
  5565. "authors": [
  5566. {
  5567. "name": "Berdir",
  5568. "homepage": "https://www.drupal.org/user/214652"
  5569. },
  5570. {
  5571. "name": "Dave Reid",
  5572. "homepage": "https://www.drupal.org/user/53892"
  5573. },
  5574. {
  5575. "name": "Kristen Pol",
  5576. "homepage": "https://www.drupal.org/user/8389"
  5577. },
  5578. {
  5579. "name": "pifagor",
  5580. "homepage": "https://www.drupal.org/user/2375692"
  5581. }
  5582. ],
  5583. "description": "Allows users to redirect from old URLs to new URLs.",
  5584. "homepage": "https://www.drupal.org/project/redirect",
  5585. "support": {
  5586. "source": "https://git.drupalcode.org/project/redirect"
  5587. }
  5588. },
  5589. {
  5590. "name": "drupal/redis",
  5591. "version": "1.7.0",
  5592. "source": {
  5593. "type": "git",
  5594. "url": "https://git.drupalcode.org/project/redis.git",
  5595. "reference": "8.x-1.7"
  5596. },
  5597. "dist": {
  5598. "type": "zip",
  5599. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.7.zip",
  5600. "reference": "8.x-1.7",
  5601. "shasum": "602043bdad62ff047321121edcfde8abf3638c7c"
  5602. },
  5603. "require": {
  5604. "drupal/core": "^9.3 || ^10"
  5605. },
  5606. "suggest": {
  5607. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  5608. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  5609. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  5610. },
  5611. "type": "drupal-module",
  5612. "extra": {
  5613. "drupal": {
  5614. "version": "8.x-1.7",
  5615. "datestamp": "1686175620",
  5616. "security-coverage": {
  5617. "status": "covered",
  5618. "message": "Covered by Drupal's security advisory policy"
  5619. }
  5620. }
  5621. },
  5622. "autoload": {
  5623. "psr-4": {
  5624. "Drupal\\redis\\": "src"
  5625. }
  5626. },
  5627. "notification-url": "https://packages.drupal.org/8/downloads",
  5628. "license": [
  5629. "GPL-2.0-or-later"
  5630. ],
  5631. "authors": [
  5632. {
  5633. "name": "Berdir",
  5634. "homepage": "https://www.drupal.org/user/214652"
  5635. },
  5636. {
  5637. "name": "greg.1.anderson",
  5638. "homepage": "https://www.drupal.org/user/438598"
  5639. },
  5640. {
  5641. "name": "kporras07",
  5642. "homepage": "https://www.drupal.org/user/1349780"
  5643. },
  5644. {
  5645. "name": "pounard",
  5646. "homepage": "https://www.drupal.org/user/240164"
  5647. }
  5648. ],
  5649. "description": "Integration of Drupal with the Redis key-value store.",
  5650. "homepage": "https://www.drupal.org/project/redis",
  5651. "support": {
  5652. "source": "https://git.drupalcode.org/project/redis"
  5653. }
  5654. },
  5655. {
  5656. "name": "drupal/search_api",
  5657. "version": "1.30.0",
  5658. "source": {
  5659. "type": "git",
  5660. "url": "https://git.drupalcode.org/project/search_api.git",
  5661. "reference": "8.x-1.30"
  5662. },
  5663. "dist": {
  5664. "type": "zip",
  5665. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.30.zip",
  5666. "reference": "8.x-1.30",
  5667. "shasum": "25bd2cfab6a6332c595fbc8be1c4cfff33a85ce8"
  5668. },
  5669. "require": {
  5670. "drupal/core": "^9.3 || ^10.0"
  5671. },
  5672. "conflict": {
  5673. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  5674. },
  5675. "require-dev": {
  5676. "drupal/language_fallback_fix": "@dev",
  5677. "drupal/search_api_autocomplete": "@dev",
  5678. "drupal/search_api_db": "*"
  5679. },
  5680. "suggest": {
  5681. "drupal/facets": "Adds the ability to create faceted searches.",
  5682. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  5683. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  5684. },
  5685. "type": "drupal-module",
  5686. "extra": {
  5687. "drupal": {
  5688. "version": "8.x-1.30",
  5689. "datestamp": "1697366291",
  5690. "security-coverage": {
  5691. "status": "covered",
  5692. "message": "Covered by Drupal's security advisory policy"
  5693. }
  5694. },
  5695. "drush": {
  5696. "services": {
  5697. "drush.services.yml": "^9 || ^10 || ^11"
  5698. }
  5699. }
  5700. },
  5701. "notification-url": "https://packages.drupal.org/8/downloads",
  5702. "license": [
  5703. "GPL-2.0-or-later"
  5704. ],
  5705. "authors": [
  5706. {
  5707. "name": "Thomas Seidl",
  5708. "homepage": "https://www.drupal.org/u/drunken-monkey"
  5709. },
  5710. {
  5711. "name": "Nick Veenhof",
  5712. "homepage": "https://www.drupal.org/u/nick_vh"
  5713. },
  5714. {
  5715. "name": "See other contributors",
  5716. "homepage": "https://www.drupal.org/node/790418/committers"
  5717. }
  5718. ],
  5719. "description": "Provides a generic framework for modules offering search capabilities.",
  5720. "homepage": "https://www.drupal.org/project/search_api",
  5721. "support": {
  5722. "source": "https://git.drupalcode.org/project/search_api",
  5723. "issues": "https://www.drupal.org/project/issues/search_api",
  5724. "irc": "irc://irc.freenode.org/drupal-search-api"
  5725. }
  5726. },
  5727. {
  5728. "name": "drupal/search_api_db",
  5729. "version": "1.30.0",
  5730. "require": {
  5731. "drupal/core": "^9.2 || ^10.0",
  5732. "drupal/search_api": "*"
  5733. },
  5734. "type": "metapackage",
  5735. "extra": {
  5736. "drupal": {
  5737. "version": "8.x-1.30",
  5738. "datestamp": "1697366291",
  5739. "security-coverage": {
  5740. "status": "covered",
  5741. "message": "Covered by Drupal's security advisory policy"
  5742. }
  5743. }
  5744. },
  5745. "notification-url": "https://packages.drupal.org/8/downloads",
  5746. "license": [
  5747. "GPL-2.0-or-later"
  5748. ],
  5749. "authors": [
  5750. {
  5751. "name": "borisson_",
  5752. "homepage": "https://www.drupal.org/user/2393360"
  5753. },
  5754. {
  5755. "name": "drunken monkey",
  5756. "homepage": "https://www.drupal.org/user/205582"
  5757. },
  5758. {
  5759. "name": "Nick_vh",
  5760. "homepage": "https://www.drupal.org/user/122682"
  5761. }
  5762. ],
  5763. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  5764. "homepage": "https://www.drupal.org/project/search_api",
  5765. "support": {
  5766. "source": "https://git.drupalcode.org/project/search_api"
  5767. }
  5768. },
  5769. {
  5770. "name": "drupal/seven",
  5771. "version": "1.0.0",
  5772. "source": {
  5773. "type": "git",
  5774. "url": "https://git.drupalcode.org/project/seven.git",
  5775. "reference": "1.0.0"
  5776. },
  5777. "dist": {
  5778. "type": "zip",
  5779. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  5780. "reference": "1.0.0",
  5781. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  5782. },
  5783. "require": {
  5784. "drupal/core": "^9 || ^10"
  5785. },
  5786. "type": "drupal-theme",
  5787. "extra": {
  5788. "drupal": {
  5789. "version": "1.0.0",
  5790. "datestamp": "1683652106",
  5791. "security-coverage": {
  5792. "status": "covered",
  5793. "message": "Covered by Drupal's security advisory policy"
  5794. }
  5795. }
  5796. },
  5797. "notification-url": "https://packages.drupal.org/8/downloads",
  5798. "license": [
  5799. "GPL-2.0-or-later"
  5800. ],
  5801. "authors": [
  5802. {
  5803. "name": "bnjmnm",
  5804. "homepage": "https://www.drupal.org/user/2369194"
  5805. },
  5806. {
  5807. "name": "lauriii",
  5808. "homepage": "https://www.drupal.org/user/1078742"
  5809. },
  5810. {
  5811. "name": "mcrittenden",
  5812. "homepage": "https://www.drupal.org/user/420631"
  5813. },
  5814. {
  5815. "name": "mrfelton",
  5816. "homepage": "https://www.drupal.org/user/305669"
  5817. },
  5818. {
  5819. "name": "TravisCarden",
  5820. "homepage": "https://www.drupal.org/user/236758"
  5821. }
  5822. ],
  5823. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  5824. "homepage": "https://www.drupal.org/project/seven",
  5825. "support": {
  5826. "source": "https://git.drupalcode.org/project/seven"
  5827. }
  5828. },
  5829. {
  5830. "name": "drupal/smart_trim",
  5831. "version": "2.1.0",
  5832. "source": {
  5833. "type": "git",
  5834. "url": "https://git.drupalcode.org/project/smart_trim.git",
  5835. "reference": "2.1.0"
  5836. },
  5837. "dist": {
  5838. "type": "zip",
  5839. "url": "https://ftp.drupal.org/files/projects/smart_trim-2.1.0.zip",
  5840. "reference": "2.1.0",
  5841. "shasum": "874b4cbddc4833f1b9adc76a8398377903fd73ee"
  5842. },
  5843. "require": {
  5844. "drupal/core": "^8 || ^9 || ^10",
  5845. "drupal/token": "^1.0",
  5846. "php": ">=7.4.0"
  5847. },
  5848. "require-dev": {
  5849. "drupal/token_filter": "^2.0"
  5850. },
  5851. "type": "drupal-module",
  5852. "extra": {
  5853. "drupal": {
  5854. "version": "2.1.0",
  5855. "datestamp": "1686152417",
  5856. "security-coverage": {
  5857. "status": "covered",
  5858. "message": "Covered by Drupal's security advisory policy"
  5859. }
  5860. }
  5861. },
  5862. "notification-url": "https://packages.drupal.org/8/downloads",
  5863. "license": [
  5864. "GPL-2.0-or-later"
  5865. ],
  5866. "authors": [
  5867. {
  5868. "name": "Mark Casias (markie)",
  5869. "homepage": "https://www.drupal.org/u/markie",
  5870. "role": "Maintainer"
  5871. },
  5872. {
  5873. "name": "AmyJune Hineline (volkswagenchick)",
  5874. "homepage": "https://www.drupal.org/u/volkswagenchick",
  5875. "role": "Maintainer"
  5876. },
  5877. {
  5878. "name": "Michael Anello (ultimike)",
  5879. "homepage": "https://www.drupal.org/u/ultimike",
  5880. "role": "Maintainer"
  5881. }
  5882. ],
  5883. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  5884. "homepage": "https://drupal.org/project/smart_trim",
  5885. "support": {
  5886. "source": "https://git.drupalcode.org/project/smart_trim",
  5887. "issues": "https://drupal.org/project/issues/smart_trim"
  5888. }
  5889. },
  5890. {
  5891. "name": "drupal/smtp",
  5892. "version": "1.2.0",
  5893. "source": {
  5894. "type": "git",
  5895. "url": "https://git.drupalcode.org/project/smtp.git",
  5896. "reference": "8.x-1.2"
  5897. },
  5898. "dist": {
  5899. "type": "zip",
  5900. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.2.zip",
  5901. "reference": "8.x-1.2",
  5902. "shasum": "10d302d4a90521d674bdd078da8aed886fa5ec41"
  5903. },
  5904. "require": {
  5905. "drupal/core": ">=8.9 <11",
  5906. "phpmailer/phpmailer": "^6.1.7"
  5907. },
  5908. "suggest": {
  5909. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  5910. },
  5911. "type": "drupal-module",
  5912. "extra": {
  5913. "drupal": {
  5914. "version": "8.x-1.2",
  5915. "datestamp": "1667416337",
  5916. "security-coverage": {
  5917. "status": "covered",
  5918. "message": "Covered by Drupal's security advisory policy"
  5919. }
  5920. },
  5921. "branch-alias": {
  5922. "dev-8.x-1.x": "1.x-dev"
  5923. }
  5924. },
  5925. "notification-url": "https://packages.drupal.org/8/downloads",
  5926. "license": [
  5927. "GPL-2.0-or-later"
  5928. ],
  5929. "authors": [
  5930. {
  5931. "name": "japerry",
  5932. "homepage": "https://www.drupal.org/user/45640"
  5933. },
  5934. {
  5935. "name": "joseph.olstad",
  5936. "homepage": "https://www.drupal.org/user/1321830"
  5937. },
  5938. {
  5939. "name": "josesanmartin",
  5940. "homepage": "https://www.drupal.org/user/72012"
  5941. },
  5942. {
  5943. "name": "LukeLast",
  5944. "homepage": "https://www.drupal.org/user/30151"
  5945. },
  5946. {
  5947. "name": "oadaeh",
  5948. "homepage": "https://www.drupal.org/user/4649"
  5949. },
  5950. {
  5951. "name": "sadashiv",
  5952. "homepage": "https://www.drupal.org/user/1773304"
  5953. },
  5954. {
  5955. "name": "wundo",
  5956. "homepage": "https://www.drupal.org/user/25523"
  5957. },
  5958. {
  5959. "name": "yettyn",
  5960. "homepage": "https://www.drupal.org/user/93281"
  5961. }
  5962. ],
  5963. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  5964. "homepage": "https://www.drupal.org/project/smtp",
  5965. "support": {
  5966. "source": "https://git.drupalcode.org/project/smtp",
  5967. "issues": "https://www.drupal.org/project/issues/smtp"
  5968. }
  5969. },
  5970. {
  5971. "name": "drupal/sophron",
  5972. "version": "2.0.1",
  5973. "source": {
  5974. "type": "git",
  5975. "url": "https://git.drupalcode.org/project/sophron.git",
  5976. "reference": "2.0.1"
  5977. },
  5978. "dist": {
  5979. "type": "zip",
  5980. "url": "https://ftp.drupal.org/files/projects/sophron-2.0.1.zip",
  5981. "reference": "2.0.1",
  5982. "shasum": "eb9b22e843400392ba7fa35dc99c644d2cf08982"
  5983. },
  5984. "require": {
  5985. "drupal/core": "^10",
  5986. "fileeye/mimemap": "^2.0.1"
  5987. },
  5988. "type": "drupal-module",
  5989. "extra": {
  5990. "drupal": {
  5991. "version": "2.0.1",
  5992. "datestamp": "1676319965",
  5993. "security-coverage": {
  5994. "status": "covered",
  5995. "message": "Covered by Drupal's security advisory policy"
  5996. }
  5997. }
  5998. },
  5999. "autoload": {
  6000. "psr-4": {
  6001. "Drupal\\sophron\\": "src/"
  6002. }
  6003. },
  6004. "notification-url": "https://packages.drupal.org/8/downloads",
  6005. "license": [
  6006. "GPL-2.0-or-later"
  6007. ],
  6008. "authors": [
  6009. {
  6010. "name": "mondrake",
  6011. "homepage": "https://www.drupal.org/user/1307444"
  6012. }
  6013. ],
  6014. "description": "Provides an extensive MIME types management API",
  6015. "homepage": "https://www.drupal.org/project/sophron",
  6016. "support": {
  6017. "source": "https://git.drupalcode.org/project/sophron"
  6018. }
  6019. },
  6020. {
  6021. "name": "drupal/synonyms",
  6022. "version": "2.1.3",
  6023. "source": {
  6024. "type": "git",
  6025. "url": "https://git.drupalcode.org/project/synonyms.git",
  6026. "reference": "2.1.3"
  6027. },
  6028. "dist": {
  6029. "type": "zip",
  6030. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.3.zip",
  6031. "reference": "2.1.3",
  6032. "shasum": "179da26bf2a54e96e0e6aff587cce5c7153c3381"
  6033. },
  6034. "require": {
  6035. "drupal/core": "^9 || ^10"
  6036. },
  6037. "require-dev": {
  6038. "drupal/synonyms_list_field": "*"
  6039. },
  6040. "type": "drupal-module",
  6041. "extra": {
  6042. "drupal": {
  6043. "version": "2.1.3",
  6044. "datestamp": "1700132482",
  6045. "security-coverage": {
  6046. "status": "covered",
  6047. "message": "Covered by Drupal's security advisory policy"
  6048. }
  6049. }
  6050. },
  6051. "notification-url": "https://packages.drupal.org/8/downloads",
  6052. "license": [
  6053. "GPL-2.0-or-later"
  6054. ],
  6055. "authors": [
  6056. {
  6057. "name": "Bojan Zivanovic",
  6058. "homepage": "https://www.drupal.org/u/bojanz",
  6059. "role": "Author and D5, D6 and D7 versions developer."
  6060. },
  6061. {
  6062. "name": "Alex Trosenko",
  6063. "homepage": "https://www.drupal.org/u/bucefal91",
  6064. "role": "D7 and D8 versions developer."
  6065. },
  6066. {
  6067. "name": "Duro Arezina",
  6068. "homepage": "https://www.drupal.org/u/devad",
  6069. "role": "D8, D9 and D10 versions maintenance"
  6070. },
  6071. {
  6072. "name": "See other contributors",
  6073. "homepage": "https://www.drupal.org/node/148775/committers"
  6074. }
  6075. ],
  6076. "description": "Provides synonyms feature for all entities.",
  6077. "homepage": "https://www.drupal.org/project/synonyms",
  6078. "support": {
  6079. "source": "https://git.drupalcode.org/project/synonyms",
  6080. "issues": "https://www.drupal.org/project/issues/synonyms"
  6081. }
  6082. },
  6083. {
  6084. "name": "drupal/token",
  6085. "version": "1.13.0",
  6086. "source": {
  6087. "type": "git",
  6088. "url": "https://git.drupalcode.org/project/token.git",
  6089. "reference": "8.x-1.13"
  6090. },
  6091. "dist": {
  6092. "type": "zip",
  6093. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip",
  6094. "reference": "8.x-1.13",
  6095. "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2"
  6096. },
  6097. "require": {
  6098. "drupal/core": "^9.2 || ^10"
  6099. },
  6100. "type": "drupal-module",
  6101. "extra": {
  6102. "drupal": {
  6103. "version": "8.x-1.13",
  6104. "datestamp": "1697885927",
  6105. "security-coverage": {
  6106. "status": "covered",
  6107. "message": "Covered by Drupal's security advisory policy"
  6108. }
  6109. },
  6110. "drush": {
  6111. "services": {
  6112. "drush.services.yml": ">=9"
  6113. }
  6114. }
  6115. },
  6116. "notification-url": "https://packages.drupal.org/8/downloads",
  6117. "license": [
  6118. "GPL-2.0-or-later"
  6119. ],
  6120. "authors": [
  6121. {
  6122. "name": "Berdir",
  6123. "homepage": "https://www.drupal.org/user/214652"
  6124. },
  6125. {
  6126. "name": "Dave Reid",
  6127. "homepage": "https://www.drupal.org/user/53892"
  6128. },
  6129. {
  6130. "name": "eaton",
  6131. "homepage": "https://www.drupal.org/user/16496"
  6132. },
  6133. {
  6134. "name": "fago",
  6135. "homepage": "https://www.drupal.org/user/16747"
  6136. },
  6137. {
  6138. "name": "greggles",
  6139. "homepage": "https://www.drupal.org/user/36762"
  6140. },
  6141. {
  6142. "name": "mikeryan",
  6143. "homepage": "https://www.drupal.org/user/4420"
  6144. }
  6145. ],
  6146. "description": "Provides a user interface for the Token API, some missing core tokens.",
  6147. "homepage": "https://www.drupal.org/project/token",
  6148. "support": {
  6149. "source": "https://git.drupalcode.org/project/token"
  6150. }
  6151. },
  6152. {
  6153. "name": "drupal/translation_views",
  6154. "version": "1.0.0-alpha11",
  6155. "source": {
  6156. "type": "git",
  6157. "url": "https://git.drupalcode.org/project/translation_views.git",
  6158. "reference": "8.x-1.0-alpha11"
  6159. },
  6160. "dist": {
  6161. "type": "zip",
  6162. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  6163. "reference": "8.x-1.0-alpha11",
  6164. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  6165. },
  6166. "require": {
  6167. "drupal/core": "^8.8 || ^9 || ^10"
  6168. },
  6169. "require-dev": {
  6170. "drupal/translators_content": "^1.0@alpha"
  6171. },
  6172. "type": "drupal-module",
  6173. "extra": {
  6174. "drupal": {
  6175. "version": "8.x-1.0-alpha11",
  6176. "datestamp": "1679660668",
  6177. "security-coverage": {
  6178. "status": "not-covered",
  6179. "message": "Project has not opted into security advisory coverage!"
  6180. }
  6181. }
  6182. },
  6183. "notification-url": "https://packages.drupal.org/8/downloads",
  6184. "license": [
  6185. "GPL-2.0-or-later"
  6186. ],
  6187. "authors": [
  6188. {
  6189. "name": "matsbla",
  6190. "homepage": "https://www.drupal.org/user/2325394"
  6191. },
  6192. {
  6193. "name": "vlad.dancer",
  6194. "homepage": "https://www.drupal.org/user/903844"
  6195. }
  6196. ],
  6197. "description": "Create customized lists and queries of translations from your database.",
  6198. "homepage": "https://www.drupal.org/project/translation_views",
  6199. "support": {
  6200. "source": "https://git.drupalcode.org/project/translation_views"
  6201. }
  6202. },
  6203. {
  6204. "name": "drupal/ultimate_cron",
  6205. "version": "2.0.0-alpha6",
  6206. "source": {
  6207. "type": "git",
  6208. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  6209. "reference": "8.x-2.0-alpha6"
  6210. },
  6211. "dist": {
  6212. "type": "zip",
  6213. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha6.zip",
  6214. "reference": "8.x-2.0-alpha6",
  6215. "shasum": "42ab6df8e94a9b3772876a378062534552a32826"
  6216. },
  6217. "require": {
  6218. "drupal/core": "^9 || ^10"
  6219. },
  6220. "type": "drupal-module",
  6221. "extra": {
  6222. "drupal": {
  6223. "version": "8.x-2.0-alpha6",
  6224. "datestamp": "1666471448",
  6225. "security-coverage": {
  6226. "status": "not-covered",
  6227. "message": "Alpha releases are not covered by Drupal security advisories."
  6228. }
  6229. },
  6230. "drush": {
  6231. "services": {
  6232. "drush.services.yml": "^9 || ^10 || ^11"
  6233. }
  6234. }
  6235. },
  6236. "notification-url": "https://packages.drupal.org/8/downloads",
  6237. "license": [
  6238. "GPL-2.0+"
  6239. ],
  6240. "authors": [
  6241. {
  6242. "name": "arnested",
  6243. "homepage": "https://www.drupal.org/user/245635"
  6244. },
  6245. {
  6246. "name": "Berdir",
  6247. "homepage": "https://www.drupal.org/user/214652"
  6248. },
  6249. {
  6250. "name": "Dane Powell",
  6251. "homepage": "https://www.drupal.org/user/339326"
  6252. },
  6253. {
  6254. "name": "gielfeldt",
  6255. "homepage": "https://www.drupal.org/user/366993"
  6256. },
  6257. {
  6258. "name": "miro_dietiker",
  6259. "homepage": "https://www.drupal.org/user/227761"
  6260. },
  6261. {
  6262. "name": "Primsi",
  6263. "homepage": "https://www.drupal.org/user/282629"
  6264. }
  6265. ],
  6266. "description": "Ultimate cron",
  6267. "homepage": "https://www.drupal.org/project/ultimate_cron",
  6268. "support": {
  6269. "source": "https://git.drupalcode.org/project/ultimate_cron"
  6270. }
  6271. },
  6272. {
  6273. "name": "drupal/video_embed_field",
  6274. "version": "2.5.0",
  6275. "source": {
  6276. "type": "git",
  6277. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  6278. "reference": "8.x-2.5"
  6279. },
  6280. "dist": {
  6281. "type": "zip",
  6282. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  6283. "reference": "8.x-2.5",
  6284. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  6285. },
  6286. "require": {
  6287. "drupal/core": "^9.2 || ^10"
  6288. },
  6289. "require-dev": {
  6290. "drupal/ckeditor": "^1",
  6291. "drupal/colorbox": "^2",
  6292. "drupal/video_embed_media": "*"
  6293. },
  6294. "type": "drupal-module",
  6295. "extra": {
  6296. "drupal": {
  6297. "version": "8.x-2.5",
  6298. "datestamp": "1671413311",
  6299. "security-coverage": {
  6300. "status": "covered",
  6301. "message": "Covered by Drupal's security advisory policy"
  6302. }
  6303. }
  6304. },
  6305. "notification-url": "https://packages.drupal.org/8/downloads",
  6306. "license": [
  6307. "GPL-2.0-or-later"
  6308. ],
  6309. "authors": [
  6310. {
  6311. "name": "abhinesh",
  6312. "homepage": "https://www.drupal.org/user/3645979"
  6313. },
  6314. {
  6315. "name": "jec006",
  6316. "homepage": "https://www.drupal.org/user/855980"
  6317. },
  6318. {
  6319. "name": "plopesc",
  6320. "homepage": "https://www.drupal.org/user/282415"
  6321. },
  6322. {
  6323. "name": "Sam152",
  6324. "homepage": "https://www.drupal.org/user/1485048"
  6325. }
  6326. ],
  6327. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  6328. "homepage": "https://www.drupal.org/project/video_embed_field",
  6329. "support": {
  6330. "source": "https://git.drupalcode.org/project/video_embed_field"
  6331. }
  6332. },
  6333. {
  6334. "name": "drupal/views_bulk_edit",
  6335. "version": "2.9.0",
  6336. "source": {
  6337. "type": "git",
  6338. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  6339. "reference": "8.x-2.9"
  6340. },
  6341. "dist": {
  6342. "type": "zip",
  6343. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.9.zip",
  6344. "reference": "8.x-2.9",
  6345. "shasum": "db45a8cc9ac629859374b24974eafcef257e4387"
  6346. },
  6347. "require": {
  6348. "drupal/core": "^9.4 || ^10"
  6349. },
  6350. "require-dev": {
  6351. "drupal/views_bulk_operations": "~4.2.4"
  6352. },
  6353. "suggest": {
  6354. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  6355. },
  6356. "type": "drupal-module",
  6357. "extra": {
  6358. "drupal": {
  6359. "version": "8.x-2.9",
  6360. "datestamp": "1690222256",
  6361. "security-coverage": {
  6362. "status": "covered",
  6363. "message": "Covered by Drupal's security advisory policy"
  6364. }
  6365. }
  6366. },
  6367. "notification-url": "https://packages.drupal.org/8/downloads",
  6368. "license": [
  6369. "GPL-2.0+"
  6370. ],
  6371. "authors": [
  6372. {
  6373. "name": "Marcin Grabias",
  6374. "homepage": "https://www.drupal.org/u/graber"
  6375. },
  6376. {
  6377. "name": "Graber",
  6378. "homepage": "https://www.drupal.org/user/1599440"
  6379. },
  6380. {
  6381. "name": "joseph.olstad",
  6382. "homepage": "https://www.drupal.org/user/1321830"
  6383. }
  6384. ],
  6385. "description": "Allows bulk edition of entity field values.",
  6386. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  6387. "support": {
  6388. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  6389. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  6390. }
  6391. },
  6392. {
  6393. "name": "drupal/views_bulk_operations",
  6394. "version": "4.2.5",
  6395. "source": {
  6396. "type": "git",
  6397. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  6398. "reference": "4.2.5"
  6399. },
  6400. "dist": {
  6401. "type": "zip",
  6402. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.2.5.zip",
  6403. "reference": "4.2.5",
  6404. "shasum": "220479c5187b1619d5703f64c6f8c272afecf897"
  6405. },
  6406. "require": {
  6407. "drupal/core": "^9.4 || ^10",
  6408. "php": ">=7.4.0"
  6409. },
  6410. "require-dev": {
  6411. "drush/drush": "^11"
  6412. },
  6413. "suggest": {
  6414. "drush/drush": "^10 || ^11"
  6415. },
  6416. "type": "drupal-module",
  6417. "extra": {
  6418. "drupal": {
  6419. "version": "4.2.5",
  6420. "datestamp": "1691066184",
  6421. "security-coverage": {
  6422. "status": "covered",
  6423. "message": "Covered by Drupal's security advisory policy"
  6424. }
  6425. },
  6426. "drush": {
  6427. "services": {
  6428. "drush.services.yml": "^10 || ^11"
  6429. }
  6430. }
  6431. },
  6432. "notification-url": "https://packages.drupal.org/8/downloads",
  6433. "license": [
  6434. "GPL-2.0-or-later"
  6435. ],
  6436. "authors": [
  6437. {
  6438. "name": "Marcin Grabias",
  6439. "homepage": "https://www.drupal.org/u/graber"
  6440. },
  6441. {
  6442. "name": "Graber",
  6443. "homepage": "https://www.drupal.org/user/1599440"
  6444. },
  6445. {
  6446. "name": "joelpittet",
  6447. "homepage": "https://www.drupal.org/user/160302"
  6448. }
  6449. ],
  6450. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  6451. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  6452. "support": {
  6453. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  6454. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  6455. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  6456. }
  6457. },
  6458. {
  6459. "name": "drush/drush",
  6460. "version": "11.6.0",
  6461. "source": {
  6462. "type": "git",
  6463. "url": "https://github.com/drush-ops/drush.git",
  6464. "reference": "f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78"
  6465. },
  6466. "dist": {
  6467. "type": "zip",
  6468. "url": "https://api.github.com/repos/drush-ops/drush/zipball/f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78",
  6469. "reference": "f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78",
  6470. "shasum": ""
  6471. },
  6472. "require": {
  6473. "chi-teck/drupal-code-generator": "^2.4",
  6474. "composer/semver": "^1.4 || ^3",
  6475. "consolidation/annotated-command": "^4.8.2",
  6476. "consolidation/config": "^2",
  6477. "consolidation/filter-via-dot-access-data": "^2",
  6478. "consolidation/robo": "^3.0.9 || ^4.0.1",
  6479. "consolidation/site-alias": "^3.1.6 || ^4",
  6480. "consolidation/site-process": "^4.1.3 || ^5",
  6481. "enlightn/security-checker": "^1",
  6482. "ext-dom": "*",
  6483. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  6484. "league/container": "^3.4 || ^4",
  6485. "php": ">=7.4",
  6486. "psy/psysh": "~0.11",
  6487. "symfony/event-dispatcher": "^4.0 || ^5.0 || ^6.0",
  6488. "symfony/filesystem": "^4.4 || ^5.4 || ^6.1",
  6489. "symfony/finder": "^4.0 || ^5 || ^6",
  6490. "symfony/polyfill-php80": "^1.23",
  6491. "symfony/var-dumper": "^4.0 || ^5.0 || ^6.0",
  6492. "symfony/yaml": "^4.0 || ^5.0 || ^6.0",
  6493. "webflo/drupal-finder": "^1.2"
  6494. },
  6495. "conflict": {
  6496. "drupal/core": "< 9.2",
  6497. "drupal/migrate_run": "*",
  6498. "drupal/migrate_tools": "<= 5"
  6499. },
  6500. "require-dev": {
  6501. "composer/installers": "^1.7",
  6502. "cweagans/composer-patches": "~1.0",
  6503. "david-garcia/phpwhois": "4.3.0",
  6504. "drupal/core-recommended": "^9 || ^10",
  6505. "drupal/semver_example": "2.3.0",
  6506. "phpunit/phpunit": ">=7.5.20",
  6507. "rector/rector": "^0.12",
  6508. "squizlabs/php_codesniffer": "^3.6",
  6509. "vlucas/phpdotenv": "^2.4",
  6510. "yoast/phpunit-polyfills": "^0.2.0"
  6511. },
  6512. "bin": [
  6513. "drush"
  6514. ],
  6515. "type": "library",
  6516. "extra": {
  6517. "installer-paths": {
  6518. "sut/core": [
  6519. "type:drupal-core"
  6520. ],
  6521. "sut/libraries/{$name}": [
  6522. "type:drupal-library"
  6523. ],
  6524. "sut/modules/unish/{$name}": [
  6525. "drupal/devel"
  6526. ],
  6527. "sut/themes/unish/{$name}": [
  6528. "drupal/empty_theme"
  6529. ],
  6530. "sut/modules/contrib/{$name}": [
  6531. "type:drupal-module"
  6532. ],
  6533. "sut/profiles/contrib/{$name}": [
  6534. "type:drupal-profile"
  6535. ],
  6536. "sut/themes/contrib/{$name}": [
  6537. "type:drupal-theme"
  6538. ],
  6539. "sut/drush/contrib/{$name}": [
  6540. "type:drupal-drush"
  6541. ]
  6542. }
  6543. },
  6544. "autoload": {
  6545. "psr-4": {
  6546. "Drush\\": "src/"
  6547. }
  6548. },
  6549. "notification-url": "https://packagist.org/downloads/",
  6550. "license": [
  6551. "GPL-2.0-or-later"
  6552. ],
  6553. "authors": [
  6554. {
  6555. "name": "Moshe Weitzman",
  6556. "email": "weitzman@tejasa.com"
  6557. },
  6558. {
  6559. "name": "Owen Barton",
  6560. "email": "drupal@owenbarton.com"
  6561. },
  6562. {
  6563. "name": "Greg Anderson",
  6564. "email": "greg.1.anderson@greenknowe.org"
  6565. },
  6566. {
  6567. "name": "Jonathan Araña Cruz",
  6568. "email": "jonhattan@faita.net"
  6569. },
  6570. {
  6571. "name": "Jonathan Hedstrom",
  6572. "email": "jhedstrom@gmail.com"
  6573. },
  6574. {
  6575. "name": "Christopher Gervais",
  6576. "email": "chris@ergonlogic.com"
  6577. },
  6578. {
  6579. "name": "Dave Reid",
  6580. "email": "dave@davereid.net"
  6581. },
  6582. {
  6583. "name": "Damian Lee",
  6584. "email": "damiankloip@googlemail.com"
  6585. }
  6586. ],
  6587. "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.",
  6588. "homepage": "http://www.drush.org",
  6589. "support": {
  6590. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  6591. "issues": "https://github.com/drush-ops/drush/issues",
  6592. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  6593. "source": "https://github.com/drush-ops/drush/tree/11.6.0"
  6594. },
  6595. "funding": [
  6596. {
  6597. "url": "https://github.com/weitzman",
  6598. "type": "github"
  6599. }
  6600. ],
  6601. "time": "2023-06-06T18:46:18+00:00"
  6602. },
  6603. {
  6604. "name": "egulias/email-validator",
  6605. "version": "4.0.2",
  6606. "source": {
  6607. "type": "git",
  6608. "url": "https://github.com/egulias/EmailValidator.git",
  6609. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  6610. },
  6611. "dist": {
  6612. "type": "zip",
  6613. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  6614. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  6615. "shasum": ""
  6616. },
  6617. "require": {
  6618. "doctrine/lexer": "^2.0 || ^3.0",
  6619. "php": ">=8.1",
  6620. "symfony/polyfill-intl-idn": "^1.26"
  6621. },
  6622. "require-dev": {
  6623. "phpunit/phpunit": "^10.2",
  6624. "vimeo/psalm": "^5.12"
  6625. },
  6626. "suggest": {
  6627. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  6628. },
  6629. "type": "library",
  6630. "extra": {
  6631. "branch-alias": {
  6632. "dev-master": "4.0.x-dev"
  6633. }
  6634. },
  6635. "autoload": {
  6636. "psr-4": {
  6637. "Egulias\\EmailValidator\\": "src"
  6638. }
  6639. },
  6640. "notification-url": "https://packagist.org/downloads/",
  6641. "license": [
  6642. "MIT"
  6643. ],
  6644. "authors": [
  6645. {
  6646. "name": "Eduardo Gulias Davis"
  6647. }
  6648. ],
  6649. "description": "A library for validating emails against several RFCs",
  6650. "homepage": "https://github.com/egulias/EmailValidator",
  6651. "keywords": [
  6652. "email",
  6653. "emailvalidation",
  6654. "emailvalidator",
  6655. "validation",
  6656. "validator"
  6657. ],
  6658. "support": {
  6659. "issues": "https://github.com/egulias/EmailValidator/issues",
  6660. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  6661. },
  6662. "funding": [
  6663. {
  6664. "url": "https://github.com/egulias",
  6665. "type": "github"
  6666. }
  6667. ],
  6668. "time": "2023-10-06T06:47:41+00:00"
  6669. },
  6670. {
  6671. "name": "enlightn/security-checker",
  6672. "version": "v1.10.0",
  6673. "source": {
  6674. "type": "git",
  6675. "url": "https://github.com/enlightn/security-checker.git",
  6676. "reference": "196bacc76e7a72a63d0e1220926dbb190272db97"
  6677. },
  6678. "dist": {
  6679. "type": "zip",
  6680. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/196bacc76e7a72a63d0e1220926dbb190272db97",
  6681. "reference": "196bacc76e7a72a63d0e1220926dbb190272db97",
  6682. "shasum": ""
  6683. },
  6684. "require": {
  6685. "ext-json": "*",
  6686. "guzzlehttp/guzzle": "^6.3|^7.0",
  6687. "php": ">=5.6",
  6688. "symfony/console": "^3.4|^4|^5|^6",
  6689. "symfony/finder": "^3|^4|^5|^6",
  6690. "symfony/process": "^3.4|^4|^5|^6",
  6691. "symfony/yaml": "^3.4|^4|^5|^6"
  6692. },
  6693. "require-dev": {
  6694. "ext-zip": "*",
  6695. "friendsofphp/php-cs-fixer": "^2.18|^3.0",
  6696. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  6697. },
  6698. "bin": [
  6699. "security-checker"
  6700. ],
  6701. "type": "library",
  6702. "autoload": {
  6703. "psr-4": {
  6704. "Enlightn\\SecurityChecker\\": "src"
  6705. }
  6706. },
  6707. "notification-url": "https://packagist.org/downloads/",
  6708. "license": [
  6709. "MIT"
  6710. ],
  6711. "authors": [
  6712. {
  6713. "name": "Paras Malhotra",
  6714. "email": "paras@laravel-enlightn.com"
  6715. },
  6716. {
  6717. "name": "Miguel Piedrafita",
  6718. "email": "soy@miguelpiedrafita.com"
  6719. }
  6720. ],
  6721. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  6722. "keywords": [
  6723. "package",
  6724. "php",
  6725. "scanner",
  6726. "security",
  6727. "security advisories",
  6728. "vulnerability scanner"
  6729. ],
  6730. "support": {
  6731. "issues": "https://github.com/enlightn/security-checker/issues",
  6732. "source": "https://github.com/enlightn/security-checker/tree/v1.10.0"
  6733. },
  6734. "time": "2022-02-21T22:40:16+00:00"
  6735. },
  6736. {
  6737. "name": "fileeye/mimemap",
  6738. "version": "2.0.2",
  6739. "source": {
  6740. "type": "git",
  6741. "url": "https://github.com/FileEye/MimeMap.git",
  6742. "reference": "befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d"
  6743. },
  6744. "dist": {
  6745. "type": "zip",
  6746. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d",
  6747. "reference": "befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d",
  6748. "shasum": ""
  6749. },
  6750. "require": {
  6751. "php": ">=7.3"
  6752. },
  6753. "require-dev": {
  6754. "composer-runtime-api": "^2.0.0",
  6755. "phpstan/phpstan": "^1.2",
  6756. "phpunit/phpunit": "^9 | ^10",
  6757. "sebastian/comparator": ">=4",
  6758. "sebastian/diff": ">=4",
  6759. "squizlabs/php_codesniffer": ">=3.6",
  6760. "symfony/console": ">=5.4",
  6761. "symfony/filesystem": ">=5.4",
  6762. "symfony/var-dumper": ">=5.4",
  6763. "symfony/yaml": ">=5.4",
  6764. "vimeo/psalm": "^4.23 | ^5"
  6765. },
  6766. "bin": [
  6767. "bin/fileeye-mimemap"
  6768. ],
  6769. "type": "library",
  6770. "extra": {
  6771. "branch-alias": {
  6772. "dev-master": "2.x-dev"
  6773. }
  6774. },
  6775. "autoload": {
  6776. "psr-4": {
  6777. "FileEye\\MimeMap\\": "src/"
  6778. }
  6779. },
  6780. "notification-url": "https://packagist.org/downloads/",
  6781. "license": [
  6782. "LGPL-3.0-or-later"
  6783. ],
  6784. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  6785. "homepage": "https://github.com/FileEye/MimeMap",
  6786. "keywords": [
  6787. "mime",
  6788. "mime-database",
  6789. "mime-parser",
  6790. "mime-type"
  6791. ],
  6792. "support": {
  6793. "issues": "https://github.com/FileEye/MimeMap/issues",
  6794. "source": "https://github.com/FileEye/MimeMap/tree/2.0.2"
  6795. },
  6796. "time": "2023-08-29T16:20:26+00:00"
  6797. },
  6798. {
  6799. "name": "fileeye/pel",
  6800. "version": "0.9.20",
  6801. "source": {
  6802. "type": "git",
  6803. "url": "https://github.com/FileEye/pel.git",
  6804. "reference": "1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede"
  6805. },
  6806. "dist": {
  6807. "type": "zip",
  6808. "url": "https://api.github.com/repos/FileEye/pel/zipball/1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede",
  6809. "reference": "1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede",
  6810. "shasum": ""
  6811. },
  6812. "require": {
  6813. "php": ">=7.1.0"
  6814. },
  6815. "require-dev": {
  6816. "ext-exif": "*",
  6817. "ext-gd": "*",
  6818. "php-coveralls/php-coveralls": ">2.4",
  6819. "phpstan/phpstan": "^1.4",
  6820. "squizlabs/php_codesniffer": ">3.5",
  6821. "symfony/phpunit-bridge": "^4 || ^5 || ^6"
  6822. },
  6823. "type": "library",
  6824. "autoload": {
  6825. "psr-4": {
  6826. "lsolesen\\pel\\": "src/"
  6827. }
  6828. },
  6829. "notification-url": "https://packagist.org/downloads/",
  6830. "license": [
  6831. "GPL-2.0"
  6832. ],
  6833. "authors": [
  6834. {
  6835. "name": "Lars Olesen",
  6836. "email": "lars@intraface.dk",
  6837. "homepage": "http://intraface.dk",
  6838. "role": "Developer"
  6839. },
  6840. {
  6841. "name": "Martin Geisler",
  6842. "email": "martin@geisler.net",
  6843. "homepage": "http://geisler.net",
  6844. "role": "Developer"
  6845. }
  6846. ],
  6847. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  6848. "homepage": "https://github.com/FileEye/pel",
  6849. "keywords": [
  6850. "exif",
  6851. "image"
  6852. ],
  6853. "support": {
  6854. "issues": "https://github.com/FileEye/pel/issues",
  6855. "source": "https://github.com/FileEye/pel/tree/0.9.20"
  6856. },
  6857. "time": "2023-06-20T07:10:35+00:00"
  6858. },
  6859. {
  6860. "name": "grasmash/expander",
  6861. "version": "3.0.0",
  6862. "source": {
  6863. "type": "git",
  6864. "url": "https://github.com/grasmash/expander.git",
  6865. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82"
  6866. },
  6867. "dist": {
  6868. "type": "zip",
  6869. "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  6870. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  6871. "shasum": ""
  6872. },
  6873. "require": {
  6874. "dflydev/dot-access-data": "^3.0.0",
  6875. "php": ">=8.0",
  6876. "psr/log": "^2 | ^3"
  6877. },
  6878. "require-dev": {
  6879. "greg-1-anderson/composer-test-scenarios": "^1",
  6880. "php-coveralls/php-coveralls": "^2.5",
  6881. "phpunit/phpunit": "^9",
  6882. "squizlabs/php_codesniffer": "^3.3"
  6883. },
  6884. "type": "library",
  6885. "extra": {
  6886. "branch-alias": {
  6887. "dev-master": "1.x-dev"
  6888. }
  6889. },
  6890. "autoload": {
  6891. "psr-4": {
  6892. "Grasmash\\Expander\\": "src/"
  6893. }
  6894. },
  6895. "notification-url": "https://packagist.org/downloads/",
  6896. "license": [
  6897. "MIT"
  6898. ],
  6899. "authors": [
  6900. {
  6901. "name": "Matthew Grasmick"
  6902. }
  6903. ],
  6904. "description": "Expands internal property references in PHP arrays file.",
  6905. "support": {
  6906. "issues": "https://github.com/grasmash/expander/issues",
  6907. "source": "https://github.com/grasmash/expander/tree/3.0.0"
  6908. },
  6909. "time": "2022-05-10T13:14:49+00:00"
  6910. },
  6911. {
  6912. "name": "guzzlehttp/guzzle",
  6913. "version": "7.7.1",
  6914. "source": {
  6915. "type": "git",
  6916. "url": "https://github.com/guzzle/guzzle.git",
  6917. "reference": "085b026db54d4b5012f727c80c9958e8b8cbc454"
  6918. },
  6919. "dist": {
  6920. "type": "zip",
  6921. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/085b026db54d4b5012f727c80c9958e8b8cbc454",
  6922. "reference": "085b026db54d4b5012f727c80c9958e8b8cbc454",
  6923. "shasum": ""
  6924. },
  6925. "require": {
  6926. "ext-json": "*",
  6927. "guzzlehttp/promises": "^1.5.3 || ^2.0",
  6928. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  6929. "php": "^7.2.5 || ^8.0",
  6930. "psr/http-client": "^1.0",
  6931. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  6932. },
  6933. "provide": {
  6934. "psr/http-client-implementation": "1.0"
  6935. },
  6936. "require-dev": {
  6937. "bamarni/composer-bin-plugin": "^1.8.1",
  6938. "ext-curl": "*",
  6939. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  6940. "php-http/message-factory": "^1.1",
  6941. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  6942. "psr/log": "^1.1 || ^2.0 || ^3.0"
  6943. },
  6944. "suggest": {
  6945. "ext-curl": "Required for CURL handler support",
  6946. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  6947. "psr/log": "Required for using the Log middleware"
  6948. },
  6949. "type": "library",
  6950. "extra": {
  6951. "bamarni-bin": {
  6952. "bin-links": true,
  6953. "forward-command": false
  6954. }
  6955. },
  6956. "autoload": {
  6957. "files": [
  6958. "src/functions_include.php"
  6959. ],
  6960. "psr-4": {
  6961. "GuzzleHttp\\": "src/"
  6962. }
  6963. },
  6964. "notification-url": "https://packagist.org/downloads/",
  6965. "license": [
  6966. "MIT"
  6967. ],
  6968. "authors": [
  6969. {
  6970. "name": "Graham Campbell",
  6971. "email": "hello@gjcampbell.co.uk",
  6972. "homepage": "https://github.com/GrahamCampbell"
  6973. },
  6974. {
  6975. "name": "Michael Dowling",
  6976. "email": "mtdowling@gmail.com",
  6977. "homepage": "https://github.com/mtdowling"
  6978. },
  6979. {
  6980. "name": "Jeremy Lindblom",
  6981. "email": "jeremeamia@gmail.com",
  6982. "homepage": "https://github.com/jeremeamia"
  6983. },
  6984. {
  6985. "name": "George Mponos",
  6986. "email": "gmponos@gmail.com",
  6987. "homepage": "https://github.com/gmponos"
  6988. },
  6989. {
  6990. "name": "Tobias Nyholm",
  6991. "email": "tobias.nyholm@gmail.com",
  6992. "homepage": "https://github.com/Nyholm"
  6993. },
  6994. {
  6995. "name": "Márk Sági-Kazár",
  6996. "email": "mark.sagikazar@gmail.com",
  6997. "homepage": "https://github.com/sagikazarmark"
  6998. },
  6999. {
  7000. "name": "Tobias Schultze",
  7001. "email": "webmaster@tubo-world.de",
  7002. "homepage": "https://github.com/Tobion"
  7003. }
  7004. ],
  7005. "description": "Guzzle is a PHP HTTP client library",
  7006. "keywords": [
  7007. "client",
  7008. "curl",
  7009. "framework",
  7010. "http",
  7011. "http client",
  7012. "psr-18",
  7013. "psr-7",
  7014. "rest",
  7015. "web service"
  7016. ],
  7017. "support": {
  7018. "issues": "https://github.com/guzzle/guzzle/issues",
  7019. "source": "https://github.com/guzzle/guzzle/tree/7.7.1"
  7020. },
  7021. "funding": [
  7022. {
  7023. "url": "https://github.com/GrahamCampbell",
  7024. "type": "github"
  7025. },
  7026. {
  7027. "url": "https://github.com/Nyholm",
  7028. "type": "github"
  7029. },
  7030. {
  7031. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  7032. "type": "tidelift"
  7033. }
  7034. ],
  7035. "time": "2023-08-27T10:02:06+00:00"
  7036. },
  7037. {
  7038. "name": "guzzlehttp/promises",
  7039. "version": "2.0.1",
  7040. "source": {
  7041. "type": "git",
  7042. "url": "https://github.com/guzzle/promises.git",
  7043. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  7044. },
  7045. "dist": {
  7046. "type": "zip",
  7047. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  7048. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  7049. "shasum": ""
  7050. },
  7051. "require": {
  7052. "php": "^7.2.5 || ^8.0"
  7053. },
  7054. "require-dev": {
  7055. "bamarni/composer-bin-plugin": "^1.8.1",
  7056. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  7057. },
  7058. "type": "library",
  7059. "extra": {
  7060. "bamarni-bin": {
  7061. "bin-links": true,
  7062. "forward-command": false
  7063. }
  7064. },
  7065. "autoload": {
  7066. "psr-4": {
  7067. "GuzzleHttp\\Promise\\": "src/"
  7068. }
  7069. },
  7070. "notification-url": "https://packagist.org/downloads/",
  7071. "license": [
  7072. "MIT"
  7073. ],
  7074. "authors": [
  7075. {
  7076. "name": "Graham Campbell",
  7077. "email": "hello@gjcampbell.co.uk",
  7078. "homepage": "https://github.com/GrahamCampbell"
  7079. },
  7080. {
  7081. "name": "Michael Dowling",
  7082. "email": "mtdowling@gmail.com",
  7083. "homepage": "https://github.com/mtdowling"
  7084. },
  7085. {
  7086. "name": "Tobias Nyholm",
  7087. "email": "tobias.nyholm@gmail.com",
  7088. "homepage": "https://github.com/Nyholm"
  7089. },
  7090. {
  7091. "name": "Tobias Schultze",
  7092. "email": "webmaster@tubo-world.de",
  7093. "homepage": "https://github.com/Tobion"
  7094. }
  7095. ],
  7096. "description": "Guzzle promises library",
  7097. "keywords": [
  7098. "promise"
  7099. ],
  7100. "support": {
  7101. "issues": "https://github.com/guzzle/promises/issues",
  7102. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  7103. },
  7104. "funding": [
  7105. {
  7106. "url": "https://github.com/GrahamCampbell",
  7107. "type": "github"
  7108. },
  7109. {
  7110. "url": "https://github.com/Nyholm",
  7111. "type": "github"
  7112. },
  7113. {
  7114. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  7115. "type": "tidelift"
  7116. }
  7117. ],
  7118. "time": "2023-08-03T15:11:55+00:00"
  7119. },
  7120. {
  7121. "name": "guzzlehttp/psr7",
  7122. "version": "2.5.1",
  7123. "source": {
  7124. "type": "git",
  7125. "url": "https://github.com/guzzle/psr7.git",
  7126. "reference": "a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f"
  7127. },
  7128. "dist": {
  7129. "type": "zip",
  7130. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f",
  7131. "reference": "a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f",
  7132. "shasum": ""
  7133. },
  7134. "require": {
  7135. "php": "^7.2.5 || ^8.0",
  7136. "psr/http-factory": "^1.0",
  7137. "psr/http-message": "^1.1 || ^2.0",
  7138. "ralouphie/getallheaders": "^3.0"
  7139. },
  7140. "provide": {
  7141. "psr/http-factory-implementation": "1.0",
  7142. "psr/http-message-implementation": "1.0"
  7143. },
  7144. "require-dev": {
  7145. "bamarni/composer-bin-plugin": "^1.8.1",
  7146. "http-interop/http-factory-tests": "^0.9",
  7147. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  7148. },
  7149. "suggest": {
  7150. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  7151. },
  7152. "type": "library",
  7153. "extra": {
  7154. "bamarni-bin": {
  7155. "bin-links": true,
  7156. "forward-command": false
  7157. }
  7158. },
  7159. "autoload": {
  7160. "psr-4": {
  7161. "GuzzleHttp\\Psr7\\": "src/"
  7162. }
  7163. },
  7164. "notification-url": "https://packagist.org/downloads/",
  7165. "license": [
  7166. "MIT"
  7167. ],
  7168. "authors": [
  7169. {
  7170. "name": "Graham Campbell",
  7171. "email": "hello@gjcampbell.co.uk",
  7172. "homepage": "https://github.com/GrahamCampbell"
  7173. },
  7174. {
  7175. "name": "Michael Dowling",
  7176. "email": "mtdowling@gmail.com",
  7177. "homepage": "https://github.com/mtdowling"
  7178. },
  7179. {
  7180. "name": "George Mponos",
  7181. "email": "gmponos@gmail.com",
  7182. "homepage": "https://github.com/gmponos"
  7183. },
  7184. {
  7185. "name": "Tobias Nyholm",
  7186. "email": "tobias.nyholm@gmail.com",
  7187. "homepage": "https://github.com/Nyholm"
  7188. },
  7189. {
  7190. "name": "Márk Sági-Kazár",
  7191. "email": "mark.sagikazar@gmail.com",
  7192. "homepage": "https://github.com/sagikazarmark"
  7193. },
  7194. {
  7195. "name": "Tobias Schultze",
  7196. "email": "webmaster@tubo-world.de",
  7197. "homepage": "https://github.com/Tobion"
  7198. },
  7199. {
  7200. "name": "Márk Sági-Kazár",
  7201. "email": "mark.sagikazar@gmail.com",
  7202. "homepage": "https://sagikazarmark.hu"
  7203. }
  7204. ],
  7205. "description": "PSR-7 message implementation that also provides common utility methods",
  7206. "keywords": [
  7207. "http",
  7208. "message",
  7209. "psr-7",
  7210. "request",
  7211. "response",
  7212. "stream",
  7213. "uri",
  7214. "url"
  7215. ],
  7216. "support": {
  7217. "issues": "https://github.com/guzzle/psr7/issues",
  7218. "source": "https://github.com/guzzle/psr7/tree/2.5.1"
  7219. },
  7220. "funding": [
  7221. {
  7222. "url": "https://github.com/GrahamCampbell",
  7223. "type": "github"
  7224. },
  7225. {
  7226. "url": "https://github.com/Nyholm",
  7227. "type": "github"
  7228. },
  7229. {
  7230. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  7231. "type": "tidelift"
  7232. }
  7233. ],
  7234. "time": "2023-08-03T15:02:42+00:00"
  7235. },
  7236. {
  7237. "name": "kint-php/kint",
  7238. "version": "3.3",
  7239. "source": {
  7240. "type": "git",
  7241. "url": "https://github.com/kint-php/kint.git",
  7242. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  7243. },
  7244. "dist": {
  7245. "type": "zip",
  7246. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  7247. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  7248. "shasum": ""
  7249. },
  7250. "require": {
  7251. "php": ">=5.3.6"
  7252. },
  7253. "require-dev": {
  7254. "friendsofphp/php-cs-fixer": "^2.0",
  7255. "phpunit/phpunit": "^4.0",
  7256. "seld/phar-utils": "^1.0",
  7257. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  7258. "vimeo/psalm": "^3.0"
  7259. },
  7260. "suggest": {
  7261. "ext-ctype": "Simple data type tests",
  7262. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  7263. "ext-mbstring": "Provides string encoding detection",
  7264. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  7265. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  7266. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  7267. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  7268. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  7269. },
  7270. "type": "library",
  7271. "autoload": {
  7272. "files": [
  7273. "init.php"
  7274. ],
  7275. "psr-4": {
  7276. "Kint\\": "src/"
  7277. }
  7278. },
  7279. "notification-url": "https://packagist.org/downloads/",
  7280. "license": [
  7281. "MIT"
  7282. ],
  7283. "authors": [
  7284. {
  7285. "name": "Jonathan Vollebregt",
  7286. "homepage": "https://github.com/jnvsor"
  7287. },
  7288. {
  7289. "name": "Rokas Šleinius",
  7290. "homepage": "https://github.com/raveren"
  7291. },
  7292. {
  7293. "name": "Contributors",
  7294. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  7295. }
  7296. ],
  7297. "description": "Kint - debugging tool for PHP developers",
  7298. "homepage": "https://kint-php.github.io/kint/",
  7299. "keywords": [
  7300. "debug",
  7301. "kint",
  7302. "php"
  7303. ],
  7304. "support": {
  7305. "issues": "https://github.com/kint-php/kint/issues",
  7306. "source": "https://github.com/kint-php/kint/tree/master"
  7307. },
  7308. "time": "2019-10-17T18:05:24+00:00"
  7309. },
  7310. {
  7311. "name": "league/container",
  7312. "version": "4.2.0",
  7313. "source": {
  7314. "type": "git",
  7315. "url": "https://github.com/thephpleague/container.git",
  7316. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
  7317. },
  7318. "dist": {
  7319. "type": "zip",
  7320. "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
  7321. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
  7322. "shasum": ""
  7323. },
  7324. "require": {
  7325. "php": "^7.2 || ^8.0",
  7326. "psr/container": "^1.1 || ^2.0"
  7327. },
  7328. "provide": {
  7329. "psr/container-implementation": "^1.0"
  7330. },
  7331. "replace": {
  7332. "orno/di": "~2.0"
  7333. },
  7334. "require-dev": {
  7335. "nette/php-generator": "^3.4",
  7336. "nikic/php-parser": "^4.10",
  7337. "phpstan/phpstan": "^0.12.47",
  7338. "phpunit/phpunit": "^8.5.17",
  7339. "roave/security-advisories": "dev-latest",
  7340. "scrutinizer/ocular": "^1.8",
  7341. "squizlabs/php_codesniffer": "^3.6"
  7342. },
  7343. "type": "library",
  7344. "extra": {
  7345. "branch-alias": {
  7346. "dev-master": "4.x-dev",
  7347. "dev-4.x": "4.x-dev",
  7348. "dev-3.x": "3.x-dev",
  7349. "dev-2.x": "2.x-dev",
  7350. "dev-1.x": "1.x-dev"
  7351. }
  7352. },
  7353. "autoload": {
  7354. "psr-4": {
  7355. "League\\Container\\": "src"
  7356. }
  7357. },
  7358. "notification-url": "https://packagist.org/downloads/",
  7359. "license": [
  7360. "MIT"
  7361. ],
  7362. "authors": [
  7363. {
  7364. "name": "Phil Bennett",
  7365. "email": "mail@philbennett.co.uk",
  7366. "role": "Developer"
  7367. }
  7368. ],
  7369. "description": "A fast and intuitive dependency injection container.",
  7370. "homepage": "https://github.com/thephpleague/container",
  7371. "keywords": [
  7372. "container",
  7373. "dependency",
  7374. "di",
  7375. "injection",
  7376. "league",
  7377. "provider",
  7378. "service"
  7379. ],
  7380. "support": {
  7381. "issues": "https://github.com/thephpleague/container/issues",
  7382. "source": "https://github.com/thephpleague/container/tree/4.2.0"
  7383. },
  7384. "funding": [
  7385. {
  7386. "url": "https://github.com/philipobenito",
  7387. "type": "github"
  7388. }
  7389. ],
  7390. "time": "2021-11-16T10:29:06+00:00"
  7391. },
  7392. {
  7393. "name": "masterminds/html5",
  7394. "version": "2.8.1",
  7395. "source": {
  7396. "type": "git",
  7397. "url": "https://github.com/Masterminds/html5-php.git",
  7398. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  7399. },
  7400. "dist": {
  7401. "type": "zip",
  7402. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  7403. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  7404. "shasum": ""
  7405. },
  7406. "require": {
  7407. "ext-dom": "*",
  7408. "php": ">=5.3.0"
  7409. },
  7410. "require-dev": {
  7411. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  7412. },
  7413. "type": "library",
  7414. "extra": {
  7415. "branch-alias": {
  7416. "dev-master": "2.7-dev"
  7417. }
  7418. },
  7419. "autoload": {
  7420. "psr-4": {
  7421. "Masterminds\\": "src"
  7422. }
  7423. },
  7424. "notification-url": "https://packagist.org/downloads/",
  7425. "license": [
  7426. "MIT"
  7427. ],
  7428. "authors": [
  7429. {
  7430. "name": "Matt Butcher",
  7431. "email": "technosophos@gmail.com"
  7432. },
  7433. {
  7434. "name": "Matt Farina",
  7435. "email": "matt@mattfarina.com"
  7436. },
  7437. {
  7438. "name": "Asmir Mustafic",
  7439. "email": "goetas@gmail.com"
  7440. }
  7441. ],
  7442. "description": "An HTML5 parser and serializer.",
  7443. "homepage": "http://masterminds.github.io/html5-php",
  7444. "keywords": [
  7445. "HTML5",
  7446. "dom",
  7447. "html",
  7448. "parser",
  7449. "querypath",
  7450. "serializer",
  7451. "xml"
  7452. ],
  7453. "support": {
  7454. "issues": "https://github.com/Masterminds/html5-php/issues",
  7455. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  7456. },
  7457. "time": "2023-05-10T11:58:31+00:00"
  7458. },
  7459. {
  7460. "name": "mck89/peast",
  7461. "version": "v1.15.4",
  7462. "source": {
  7463. "type": "git",
  7464. "url": "https://github.com/mck89/peast.git",
  7465. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18"
  7466. },
  7467. "dist": {
  7468. "type": "zip",
  7469. "url": "https://api.github.com/repos/mck89/peast/zipball/1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  7470. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  7471. "shasum": ""
  7472. },
  7473. "require": {
  7474. "ext-mbstring": "*",
  7475. "php": ">=5.4.0"
  7476. },
  7477. "require-dev": {
  7478. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  7479. },
  7480. "type": "library",
  7481. "extra": {
  7482. "branch-alias": {
  7483. "dev-master": "1.15.4-dev"
  7484. }
  7485. },
  7486. "autoload": {
  7487. "psr-4": {
  7488. "Peast\\": "lib/Peast/"
  7489. }
  7490. },
  7491. "notification-url": "https://packagist.org/downloads/",
  7492. "license": [
  7493. "BSD-3-Clause"
  7494. ],
  7495. "authors": [
  7496. {
  7497. "name": "Marco Marchiò",
  7498. "email": "marco.mm89@gmail.com"
  7499. }
  7500. ],
  7501. "description": "Peast is PHP library that generates AST for JavaScript code",
  7502. "support": {
  7503. "issues": "https://github.com/mck89/peast/issues",
  7504. "source": "https://github.com/mck89/peast/tree/v1.15.4"
  7505. },
  7506. "time": "2023-08-12T08:29:29+00:00"
  7507. },
  7508. {
  7509. "name": "nikic/php-parser",
  7510. "version": "v4.17.1",
  7511. "source": {
  7512. "type": "git",
  7513. "url": "https://github.com/nikic/PHP-Parser.git",
  7514. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d"
  7515. },
  7516. "dist": {
  7517. "type": "zip",
  7518. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  7519. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  7520. "shasum": ""
  7521. },
  7522. "require": {
  7523. "ext-tokenizer": "*",
  7524. "php": ">=7.0"
  7525. },
  7526. "require-dev": {
  7527. "ircmaxell/php-yacc": "^0.0.7",
  7528. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  7529. },
  7530. "bin": [
  7531. "bin/php-parse"
  7532. ],
  7533. "type": "library",
  7534. "extra": {
  7535. "branch-alias": {
  7536. "dev-master": "4.9-dev"
  7537. }
  7538. },
  7539. "autoload": {
  7540. "psr-4": {
  7541. "PhpParser\\": "lib/PhpParser"
  7542. }
  7543. },
  7544. "notification-url": "https://packagist.org/downloads/",
  7545. "license": [
  7546. "BSD-3-Clause"
  7547. ],
  7548. "authors": [
  7549. {
  7550. "name": "Nikita Popov"
  7551. }
  7552. ],
  7553. "description": "A PHP parser written in PHP",
  7554. "keywords": [
  7555. "parser",
  7556. "php"
  7557. ],
  7558. "support": {
  7559. "issues": "https://github.com/nikic/PHP-Parser/issues",
  7560. "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1"
  7561. },
  7562. "time": "2023-08-13T19:53:39+00:00"
  7563. },
  7564. {
  7565. "name": "pear/archive_tar",
  7566. "version": "1.4.14",
  7567. "source": {
  7568. "type": "git",
  7569. "url": "https://github.com/pear/Archive_Tar.git",
  7570. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  7571. },
  7572. "dist": {
  7573. "type": "zip",
  7574. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  7575. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  7576. "shasum": ""
  7577. },
  7578. "require": {
  7579. "pear/pear-core-minimal": "^1.10.0alpha2",
  7580. "php": ">=5.2.0"
  7581. },
  7582. "require-dev": {
  7583. "phpunit/phpunit": "*"
  7584. },
  7585. "suggest": {
  7586. "ext-bz2": "Bz2 compression support.",
  7587. "ext-xz": "Lzma2 compression support.",
  7588. "ext-zlib": "Gzip compression support."
  7589. },
  7590. "type": "library",
  7591. "extra": {
  7592. "branch-alias": {
  7593. "dev-master": "1.4.x-dev"
  7594. }
  7595. },
  7596. "autoload": {
  7597. "psr-0": {
  7598. "Archive_Tar": ""
  7599. }
  7600. },
  7601. "notification-url": "https://packagist.org/downloads/",
  7602. "include-path": [
  7603. "./"
  7604. ],
  7605. "license": [
  7606. "BSD-3-Clause"
  7607. ],
  7608. "authors": [
  7609. {
  7610. "name": "Vincent Blavet",
  7611. "email": "vincent@phpconcept.net"
  7612. },
  7613. {
  7614. "name": "Greg Beaver",
  7615. "email": "greg@chiaraquartet.net"
  7616. },
  7617. {
  7618. "name": "Michiel Rook",
  7619. "email": "mrook@php.net"
  7620. }
  7621. ],
  7622. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  7623. "homepage": "https://github.com/pear/Archive_Tar",
  7624. "keywords": [
  7625. "archive",
  7626. "tar"
  7627. ],
  7628. "support": {
  7629. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  7630. "source": "https://github.com/pear/Archive_Tar"
  7631. },
  7632. "funding": [
  7633. {
  7634. "url": "https://github.com/mrook",
  7635. "type": "github"
  7636. },
  7637. {
  7638. "url": "https://www.patreon.com/michielrook",
  7639. "type": "patreon"
  7640. }
  7641. ],
  7642. "time": "2021-07-20T13:53:39+00:00"
  7643. },
  7644. {
  7645. "name": "pear/console_getopt",
  7646. "version": "v1.4.3",
  7647. "source": {
  7648. "type": "git",
  7649. "url": "https://github.com/pear/Console_Getopt.git",
  7650. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  7651. },
  7652. "dist": {
  7653. "type": "zip",
  7654. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7655. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  7656. "shasum": ""
  7657. },
  7658. "type": "library",
  7659. "autoload": {
  7660. "psr-0": {
  7661. "Console": "./"
  7662. }
  7663. },
  7664. "notification-url": "https://packagist.org/downloads/",
  7665. "include-path": [
  7666. "./"
  7667. ],
  7668. "license": [
  7669. "BSD-2-Clause"
  7670. ],
  7671. "authors": [
  7672. {
  7673. "name": "Andrei Zmievski",
  7674. "email": "andrei@php.net",
  7675. "role": "Lead"
  7676. },
  7677. {
  7678. "name": "Stig Bakken",
  7679. "email": "stig@php.net",
  7680. "role": "Developer"
  7681. },
  7682. {
  7683. "name": "Greg Beaver",
  7684. "email": "cellog@php.net",
  7685. "role": "Helper"
  7686. }
  7687. ],
  7688. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  7689. "support": {
  7690. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  7691. "source": "https://github.com/pear/Console_Getopt"
  7692. },
  7693. "time": "2019-11-20T18:27:48+00:00"
  7694. },
  7695. {
  7696. "name": "pear/pear-core-minimal",
  7697. "version": "v1.10.13",
  7698. "source": {
  7699. "type": "git",
  7700. "url": "https://github.com/pear/pear-core-minimal.git",
  7701. "reference": "aed862e95fd286c53cc546734868dc38ff4b5b1d"
  7702. },
  7703. "dist": {
  7704. "type": "zip",
  7705. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/aed862e95fd286c53cc546734868dc38ff4b5b1d",
  7706. "reference": "aed862e95fd286c53cc546734868dc38ff4b5b1d",
  7707. "shasum": ""
  7708. },
  7709. "require": {
  7710. "pear/console_getopt": "~1.4",
  7711. "pear/pear_exception": "~1.0"
  7712. },
  7713. "replace": {
  7714. "rsky/pear-core-min": "self.version"
  7715. },
  7716. "type": "library",
  7717. "autoload": {
  7718. "psr-0": {
  7719. "": "src/"
  7720. }
  7721. },
  7722. "notification-url": "https://packagist.org/downloads/",
  7723. "include-path": [
  7724. "src/"
  7725. ],
  7726. "license": [
  7727. "BSD-3-Clause"
  7728. ],
  7729. "authors": [
  7730. {
  7731. "name": "Christian Weiske",
  7732. "email": "cweiske@php.net",
  7733. "role": "Lead"
  7734. }
  7735. ],
  7736. "description": "Minimal set of PEAR core files to be used as composer dependency",
  7737. "support": {
  7738. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  7739. "source": "https://github.com/pear/pear-core-minimal"
  7740. },
  7741. "time": "2023-04-19T19:15:47+00:00"
  7742. },
  7743. {
  7744. "name": "pear/pear_exception",
  7745. "version": "v1.0.2",
  7746. "source": {
  7747. "type": "git",
  7748. "url": "https://github.com/pear/PEAR_Exception.git",
  7749. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  7750. },
  7751. "dist": {
  7752. "type": "zip",
  7753. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  7754. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  7755. "shasum": ""
  7756. },
  7757. "require": {
  7758. "php": ">=5.2.0"
  7759. },
  7760. "require-dev": {
  7761. "phpunit/phpunit": "<9"
  7762. },
  7763. "type": "class",
  7764. "extra": {
  7765. "branch-alias": {
  7766. "dev-master": "1.0.x-dev"
  7767. }
  7768. },
  7769. "autoload": {
  7770. "classmap": [
  7771. "PEAR/"
  7772. ]
  7773. },
  7774. "notification-url": "https://packagist.org/downloads/",
  7775. "include-path": [
  7776. "."
  7777. ],
  7778. "license": [
  7779. "BSD-2-Clause"
  7780. ],
  7781. "authors": [
  7782. {
  7783. "name": "Helgi Thormar",
  7784. "email": "dufuz@php.net"
  7785. },
  7786. {
  7787. "name": "Greg Beaver",
  7788. "email": "cellog@php.net"
  7789. }
  7790. ],
  7791. "description": "The PEAR Exception base class.",
  7792. "homepage": "https://github.com/pear/PEAR_Exception",
  7793. "keywords": [
  7794. "exception"
  7795. ],
  7796. "support": {
  7797. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  7798. "source": "https://github.com/pear/PEAR_Exception"
  7799. },
  7800. "time": "2021-03-21T15:43:46+00:00"
  7801. },
  7802. {
  7803. "name": "phenx/php-font-lib",
  7804. "version": "0.5.4",
  7805. "source": {
  7806. "type": "git",
  7807. "url": "https://github.com/dompdf/php-font-lib.git",
  7808. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4"
  7809. },
  7810. "dist": {
  7811. "type": "zip",
  7812. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4",
  7813. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4",
  7814. "shasum": ""
  7815. },
  7816. "require": {
  7817. "ext-mbstring": "*"
  7818. },
  7819. "require-dev": {
  7820. "symfony/phpunit-bridge": "^3 || ^4 || ^5"
  7821. },
  7822. "type": "library",
  7823. "autoload": {
  7824. "psr-4": {
  7825. "FontLib\\": "src/FontLib"
  7826. }
  7827. },
  7828. "notification-url": "https://packagist.org/downloads/",
  7829. "license": [
  7830. "LGPL-3.0"
  7831. ],
  7832. "authors": [
  7833. {
  7834. "name": "Fabien Ménager",
  7835. "email": "fabien.menager@gmail.com"
  7836. }
  7837. ],
  7838. "description": "A library to read, parse, export and make subsets of different types of font files.",
  7839. "homepage": "https://github.com/PhenX/php-font-lib",
  7840. "support": {
  7841. "issues": "https://github.com/dompdf/php-font-lib/issues",
  7842. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.4"
  7843. },
  7844. "time": "2021-12-17T19:44:54+00:00"
  7845. },
  7846. {
  7847. "name": "phootwork/collection",
  7848. "version": "v3.2.2",
  7849. "source": {
  7850. "type": "git",
  7851. "url": "https://github.com/phootwork/collection.git",
  7852. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  7853. },
  7854. "dist": {
  7855. "type": "zip",
  7856. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  7857. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  7858. "shasum": ""
  7859. },
  7860. "require": {
  7861. "phootwork/lang": "^3.0",
  7862. "php": ">=8.0"
  7863. },
  7864. "type": "library",
  7865. "autoload": {
  7866. "psr-4": {
  7867. "phootwork\\collection\\": ""
  7868. }
  7869. },
  7870. "notification-url": "https://packagist.org/downloads/",
  7871. "license": [
  7872. "MIT"
  7873. ],
  7874. "authors": [
  7875. {
  7876. "name": "Thomas Gossmann",
  7877. "homepage": "http://gos.si"
  7878. }
  7879. ],
  7880. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  7881. "homepage": "https://phootwork.github.io/collection/",
  7882. "keywords": [
  7883. "Array object",
  7884. "Text object",
  7885. "collection",
  7886. "collections",
  7887. "json",
  7888. "list",
  7889. "map",
  7890. "queue",
  7891. "set",
  7892. "stack",
  7893. "xml"
  7894. ],
  7895. "support": {
  7896. "issues": "https://github.com/phootwork/phootwork/issues",
  7897. "source": "https://github.com/phootwork/collection/tree/v3.2.2"
  7898. },
  7899. "time": "2022-08-27T12:51:24+00:00"
  7900. },
  7901. {
  7902. "name": "phootwork/lang",
  7903. "version": "v3.2.2",
  7904. "source": {
  7905. "type": "git",
  7906. "url": "https://github.com/phootwork/lang.git",
  7907. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597"
  7908. },
  7909. "dist": {
  7910. "type": "zip",
  7911. "url": "https://api.github.com/repos/phootwork/lang/zipball/baaf154ae7d521ebeee5e89105f5b12b0f234597",
  7912. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597",
  7913. "shasum": ""
  7914. },
  7915. "require": {
  7916. "php": ">=8.0",
  7917. "symfony/polyfill-mbstring": "^1.12",
  7918. "symfony/polyfill-php81": "^1.22"
  7919. },
  7920. "type": "library",
  7921. "autoload": {
  7922. "psr-4": {
  7923. "phootwork\\lang\\": ""
  7924. }
  7925. },
  7926. "notification-url": "https://packagist.org/downloads/",
  7927. "license": [
  7928. "MIT"
  7929. ],
  7930. "authors": [
  7931. {
  7932. "name": "Thomas Gossmann",
  7933. "homepage": "http://gos.si"
  7934. }
  7935. ],
  7936. "description": "Missing PHP language constructs",
  7937. "homepage": "https://phootwork.github.io/lang/",
  7938. "keywords": [
  7939. "array",
  7940. "comparator",
  7941. "comparison",
  7942. "string"
  7943. ],
  7944. "support": {
  7945. "issues": "https://github.com/phootwork/phootwork/issues",
  7946. "source": "https://github.com/phootwork/lang/tree/v3.2.2"
  7947. },
  7948. "time": "2023-05-26T05:37:59+00:00"
  7949. },
  7950. {
  7951. "name": "phpmailer/phpmailer",
  7952. "version": "v6.8.1",
  7953. "source": {
  7954. "type": "git",
  7955. "url": "https://github.com/PHPMailer/PHPMailer.git",
  7956. "reference": "e88da8d679acc3824ff231fdc553565b802ac016"
  7957. },
  7958. "dist": {
  7959. "type": "zip",
  7960. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e88da8d679acc3824ff231fdc553565b802ac016",
  7961. "reference": "e88da8d679acc3824ff231fdc553565b802ac016",
  7962. "shasum": ""
  7963. },
  7964. "require": {
  7965. "ext-ctype": "*",
  7966. "ext-filter": "*",
  7967. "ext-hash": "*",
  7968. "php": ">=5.5.0"
  7969. },
  7970. "require-dev": {
  7971. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  7972. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  7973. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  7974. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  7975. "phpcompatibility/php-compatibility": "^9.3.5",
  7976. "roave/security-advisories": "dev-latest",
  7977. "squizlabs/php_codesniffer": "^3.7.2",
  7978. "yoast/phpunit-polyfills": "^1.0.4"
  7979. },
  7980. "suggest": {
  7981. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  7982. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  7983. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  7984. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  7985. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  7986. "psr/log": "For optional PSR-3 debug logging",
  7987. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  7988. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  7989. },
  7990. "type": "library",
  7991. "autoload": {
  7992. "psr-4": {
  7993. "PHPMailer\\PHPMailer\\": "src/"
  7994. }
  7995. },
  7996. "notification-url": "https://packagist.org/downloads/",
  7997. "license": [
  7998. "LGPL-2.1-only"
  7999. ],
  8000. "authors": [
  8001. {
  8002. "name": "Marcus Bointon",
  8003. "email": "phpmailer@synchromedia.co.uk"
  8004. },
  8005. {
  8006. "name": "Jim Jagielski",
  8007. "email": "jimjag@gmail.com"
  8008. },
  8009. {
  8010. "name": "Andy Prevost",
  8011. "email": "codeworxtech@users.sourceforge.net"
  8012. },
  8013. {
  8014. "name": "Brent R. Matzelle"
  8015. }
  8016. ],
  8017. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  8018. "support": {
  8019. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  8020. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.8.1"
  8021. },
  8022. "funding": [
  8023. {
  8024. "url": "https://github.com/Synchro",
  8025. "type": "github"
  8026. }
  8027. ],
  8028. "time": "2023-08-29T08:26:30+00:00"
  8029. },
  8030. {
  8031. "name": "phpowermove/docblock",
  8032. "version": "v4.0",
  8033. "source": {
  8034. "type": "git",
  8035. "url": "https://github.com/phpowermove/docblock.git",
  8036. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  8037. },
  8038. "dist": {
  8039. "type": "zip",
  8040. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  8041. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  8042. "shasum": ""
  8043. },
  8044. "require": {
  8045. "phootwork/collection": "^3.0",
  8046. "phootwork/lang": "^3.0",
  8047. "php": ">=8.0"
  8048. },
  8049. "require-dev": {
  8050. "phootwork/php-cs-fixer-config": "^0.4",
  8051. "phpunit/phpunit": "^9.0",
  8052. "psalm/phar": "^4.3"
  8053. },
  8054. "type": "library",
  8055. "autoload": {
  8056. "psr-4": {
  8057. "phpowermove\\docblock\\": "src/"
  8058. }
  8059. },
  8060. "notification-url": "https://packagist.org/downloads/",
  8061. "license": [
  8062. "MIT"
  8063. ],
  8064. "authors": [
  8065. {
  8066. "name": "Thomas Gossmann",
  8067. "homepage": "http://gos.si"
  8068. }
  8069. ],
  8070. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  8071. "keywords": [
  8072. "docblock",
  8073. "generator",
  8074. "parser"
  8075. ],
  8076. "support": {
  8077. "issues": "https://github.com/phpowermove/docblock/issues",
  8078. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  8079. },
  8080. "time": "2021-09-22T16:57:06+00:00"
  8081. },
  8082. {
  8083. "name": "politsin/jquery-ui-touch-punch",
  8084. "version": "1.0",
  8085. "source": {
  8086. "type": "git",
  8087. "url": "https://github.com/politsin/jquery-ui-touch-punch.git",
  8088. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd"
  8089. },
  8090. "dist": {
  8091. "type": "zip",
  8092. "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd",
  8093. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd",
  8094. "shasum": ""
  8095. },
  8096. "type": "drupal-library",
  8097. "notification-url": "https://packagist.org/downloads/",
  8098. "license": [
  8099. "MIT"
  8100. ],
  8101. "authors": [
  8102. {
  8103. "name": "Dave Furfero",
  8104. "email": "furf@furf.com"
  8105. }
  8106. ],
  8107. "description": "Extension to jQuery UI for mobile touch event support.",
  8108. "homepage": "http://touchpunch.furf.com/",
  8109. "keywords": [
  8110. "gestures",
  8111. "mobile",
  8112. "touch"
  8113. ],
  8114. "support": {
  8115. "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
  8116. "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
  8117. },
  8118. "time": "2020-12-15T10:26:18+00:00"
  8119. },
  8120. {
  8121. "name": "psr/cache",
  8122. "version": "3.0.0",
  8123. "source": {
  8124. "type": "git",
  8125. "url": "https://github.com/php-fig/cache.git",
  8126. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  8127. },
  8128. "dist": {
  8129. "type": "zip",
  8130. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  8131. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  8132. "shasum": ""
  8133. },
  8134. "require": {
  8135. "php": ">=8.0.0"
  8136. },
  8137. "type": "library",
  8138. "extra": {
  8139. "branch-alias": {
  8140. "dev-master": "1.0.x-dev"
  8141. }
  8142. },
  8143. "autoload": {
  8144. "psr-4": {
  8145. "Psr\\Cache\\": "src/"
  8146. }
  8147. },
  8148. "notification-url": "https://packagist.org/downloads/",
  8149. "license": [
  8150. "MIT"
  8151. ],
  8152. "authors": [
  8153. {
  8154. "name": "PHP-FIG",
  8155. "homepage": "https://www.php-fig.org/"
  8156. }
  8157. ],
  8158. "description": "Common interface for caching libraries",
  8159. "keywords": [
  8160. "cache",
  8161. "psr",
  8162. "psr-6"
  8163. ],
  8164. "support": {
  8165. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  8166. },
  8167. "time": "2021-02-03T23:26:27+00:00"
  8168. },
  8169. {
  8170. "name": "psr/container",
  8171. "version": "2.0.2",
  8172. "source": {
  8173. "type": "git",
  8174. "url": "https://github.com/php-fig/container.git",
  8175. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  8176. },
  8177. "dist": {
  8178. "type": "zip",
  8179. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  8180. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  8181. "shasum": ""
  8182. },
  8183. "require": {
  8184. "php": ">=7.4.0"
  8185. },
  8186. "type": "library",
  8187. "extra": {
  8188. "branch-alias": {
  8189. "dev-master": "2.0.x-dev"
  8190. }
  8191. },
  8192. "autoload": {
  8193. "psr-4": {
  8194. "Psr\\Container\\": "src/"
  8195. }
  8196. },
  8197. "notification-url": "https://packagist.org/downloads/",
  8198. "license": [
  8199. "MIT"
  8200. ],
  8201. "authors": [
  8202. {
  8203. "name": "PHP-FIG",
  8204. "homepage": "https://www.php-fig.org/"
  8205. }
  8206. ],
  8207. "description": "Common Container Interface (PHP FIG PSR-11)",
  8208. "homepage": "https://github.com/php-fig/container",
  8209. "keywords": [
  8210. "PSR-11",
  8211. "container",
  8212. "container-interface",
  8213. "container-interop",
  8214. "psr"
  8215. ],
  8216. "support": {
  8217. "issues": "https://github.com/php-fig/container/issues",
  8218. "source": "https://github.com/php-fig/container/tree/2.0.2"
  8219. },
  8220. "time": "2021-11-05T16:47:00+00:00"
  8221. },
  8222. {
  8223. "name": "psr/event-dispatcher",
  8224. "version": "1.0.0",
  8225. "source": {
  8226. "type": "git",
  8227. "url": "https://github.com/php-fig/event-dispatcher.git",
  8228. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  8229. },
  8230. "dist": {
  8231. "type": "zip",
  8232. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  8233. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  8234. "shasum": ""
  8235. },
  8236. "require": {
  8237. "php": ">=7.2.0"
  8238. },
  8239. "type": "library",
  8240. "extra": {
  8241. "branch-alias": {
  8242. "dev-master": "1.0.x-dev"
  8243. }
  8244. },
  8245. "autoload": {
  8246. "psr-4": {
  8247. "Psr\\EventDispatcher\\": "src/"
  8248. }
  8249. },
  8250. "notification-url": "https://packagist.org/downloads/",
  8251. "license": [
  8252. "MIT"
  8253. ],
  8254. "authors": [
  8255. {
  8256. "name": "PHP-FIG",
  8257. "homepage": "http://www.php-fig.org/"
  8258. }
  8259. ],
  8260. "description": "Standard interfaces for event handling.",
  8261. "keywords": [
  8262. "events",
  8263. "psr",
  8264. "psr-14"
  8265. ],
  8266. "support": {
  8267. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  8268. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  8269. },
  8270. "time": "2019-01-08T18:20:26+00:00"
  8271. },
  8272. {
  8273. "name": "psr/http-client",
  8274. "version": "1.0.3",
  8275. "source": {
  8276. "type": "git",
  8277. "url": "https://github.com/php-fig/http-client.git",
  8278. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  8279. },
  8280. "dist": {
  8281. "type": "zip",
  8282. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  8283. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  8284. "shasum": ""
  8285. },
  8286. "require": {
  8287. "php": "^7.0 || ^8.0",
  8288. "psr/http-message": "^1.0 || ^2.0"
  8289. },
  8290. "type": "library",
  8291. "extra": {
  8292. "branch-alias": {
  8293. "dev-master": "1.0.x-dev"
  8294. }
  8295. },
  8296. "autoload": {
  8297. "psr-4": {
  8298. "Psr\\Http\\Client\\": "src/"
  8299. }
  8300. },
  8301. "notification-url": "https://packagist.org/downloads/",
  8302. "license": [
  8303. "MIT"
  8304. ],
  8305. "authors": [
  8306. {
  8307. "name": "PHP-FIG",
  8308. "homepage": "https://www.php-fig.org/"
  8309. }
  8310. ],
  8311. "description": "Common interface for HTTP clients",
  8312. "homepage": "https://github.com/php-fig/http-client",
  8313. "keywords": [
  8314. "http",
  8315. "http-client",
  8316. "psr",
  8317. "psr-18"
  8318. ],
  8319. "support": {
  8320. "source": "https://github.com/php-fig/http-client"
  8321. },
  8322. "time": "2023-09-23T14:17:50+00:00"
  8323. },
  8324. {
  8325. "name": "psr/http-factory",
  8326. "version": "1.0.2",
  8327. "source": {
  8328. "type": "git",
  8329. "url": "https://github.com/php-fig/http-factory.git",
  8330. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  8331. },
  8332. "dist": {
  8333. "type": "zip",
  8334. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  8335. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  8336. "shasum": ""
  8337. },
  8338. "require": {
  8339. "php": ">=7.0.0",
  8340. "psr/http-message": "^1.0 || ^2.0"
  8341. },
  8342. "type": "library",
  8343. "extra": {
  8344. "branch-alias": {
  8345. "dev-master": "1.0.x-dev"
  8346. }
  8347. },
  8348. "autoload": {
  8349. "psr-4": {
  8350. "Psr\\Http\\Message\\": "src/"
  8351. }
  8352. },
  8353. "notification-url": "https://packagist.org/downloads/",
  8354. "license": [
  8355. "MIT"
  8356. ],
  8357. "authors": [
  8358. {
  8359. "name": "PHP-FIG",
  8360. "homepage": "https://www.php-fig.org/"
  8361. }
  8362. ],
  8363. "description": "Common interfaces for PSR-7 HTTP message factories",
  8364. "keywords": [
  8365. "factory",
  8366. "http",
  8367. "message",
  8368. "psr",
  8369. "psr-17",
  8370. "psr-7",
  8371. "request",
  8372. "response"
  8373. ],
  8374. "support": {
  8375. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  8376. },
  8377. "time": "2023-04-10T20:10:41+00:00"
  8378. },
  8379. {
  8380. "name": "psr/http-message",
  8381. "version": "2.0",
  8382. "source": {
  8383. "type": "git",
  8384. "url": "https://github.com/php-fig/http-message.git",
  8385. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  8386. },
  8387. "dist": {
  8388. "type": "zip",
  8389. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  8390. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  8391. "shasum": ""
  8392. },
  8393. "require": {
  8394. "php": "^7.2 || ^8.0"
  8395. },
  8396. "type": "library",
  8397. "extra": {
  8398. "branch-alias": {
  8399. "dev-master": "2.0.x-dev"
  8400. }
  8401. },
  8402. "autoload": {
  8403. "psr-4": {
  8404. "Psr\\Http\\Message\\": "src/"
  8405. }
  8406. },
  8407. "notification-url": "https://packagist.org/downloads/",
  8408. "license": [
  8409. "MIT"
  8410. ],
  8411. "authors": [
  8412. {
  8413. "name": "PHP-FIG",
  8414. "homepage": "https://www.php-fig.org/"
  8415. }
  8416. ],
  8417. "description": "Common interface for HTTP messages",
  8418. "homepage": "https://github.com/php-fig/http-message",
  8419. "keywords": [
  8420. "http",
  8421. "http-message",
  8422. "psr",
  8423. "psr-7",
  8424. "request",
  8425. "response"
  8426. ],
  8427. "support": {
  8428. "source": "https://github.com/php-fig/http-message/tree/2.0"
  8429. },
  8430. "time": "2023-04-04T09:54:51+00:00"
  8431. },
  8432. {
  8433. "name": "psr/log",
  8434. "version": "3.0.0",
  8435. "source": {
  8436. "type": "git",
  8437. "url": "https://github.com/php-fig/log.git",
  8438. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  8439. },
  8440. "dist": {
  8441. "type": "zip",
  8442. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  8443. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  8444. "shasum": ""
  8445. },
  8446. "require": {
  8447. "php": ">=8.0.0"
  8448. },
  8449. "type": "library",
  8450. "extra": {
  8451. "branch-alias": {
  8452. "dev-master": "3.x-dev"
  8453. }
  8454. },
  8455. "autoload": {
  8456. "psr-4": {
  8457. "Psr\\Log\\": "src"
  8458. }
  8459. },
  8460. "notification-url": "https://packagist.org/downloads/",
  8461. "license": [
  8462. "MIT"
  8463. ],
  8464. "authors": [
  8465. {
  8466. "name": "PHP-FIG",
  8467. "homepage": "https://www.php-fig.org/"
  8468. }
  8469. ],
  8470. "description": "Common interface for logging libraries",
  8471. "homepage": "https://github.com/php-fig/log",
  8472. "keywords": [
  8473. "log",
  8474. "psr",
  8475. "psr-3"
  8476. ],
  8477. "support": {
  8478. "source": "https://github.com/php-fig/log/tree/3.0.0"
  8479. },
  8480. "time": "2021-07-14T16:46:02+00:00"
  8481. },
  8482. {
  8483. "name": "psy/psysh",
  8484. "version": "v0.11.22",
  8485. "source": {
  8486. "type": "git",
  8487. "url": "https://github.com/bobthecow/psysh.git",
  8488. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b"
  8489. },
  8490. "dist": {
  8491. "type": "zip",
  8492. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b",
  8493. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
  8494. "shasum": ""
  8495. },
  8496. "require": {
  8497. "ext-json": "*",
  8498. "ext-tokenizer": "*",
  8499. "nikic/php-parser": "^4.0 || ^3.1",
  8500. "php": "^8.0 || ^7.0.8",
  8501. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  8502. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  8503. },
  8504. "conflict": {
  8505. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  8506. },
  8507. "require-dev": {
  8508. "bamarni/composer-bin-plugin": "^1.2"
  8509. },
  8510. "suggest": {
  8511. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  8512. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  8513. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  8514. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  8515. },
  8516. "bin": [
  8517. "bin/psysh"
  8518. ],
  8519. "type": "library",
  8520. "extra": {
  8521. "branch-alias": {
  8522. "dev-0.11": "0.11.x-dev"
  8523. },
  8524. "bamarni-bin": {
  8525. "bin-links": false,
  8526. "forward-command": false
  8527. }
  8528. },
  8529. "autoload": {
  8530. "files": [
  8531. "src/functions.php"
  8532. ],
  8533. "psr-4": {
  8534. "Psy\\": "src/"
  8535. }
  8536. },
  8537. "notification-url": "https://packagist.org/downloads/",
  8538. "license": [
  8539. "MIT"
  8540. ],
  8541. "authors": [
  8542. {
  8543. "name": "Justin Hileman",
  8544. "email": "justin@justinhileman.info",
  8545. "homepage": "http://justinhileman.com"
  8546. }
  8547. ],
  8548. "description": "An interactive shell for modern PHP.",
  8549. "homepage": "http://psysh.org",
  8550. "keywords": [
  8551. "REPL",
  8552. "console",
  8553. "interactive",
  8554. "shell"
  8555. ],
  8556. "support": {
  8557. "issues": "https://github.com/bobthecow/psysh/issues",
  8558. "source": "https://github.com/bobthecow/psysh/tree/v0.11.22"
  8559. },
  8560. "time": "2023-10-14T21:56:36+00:00"
  8561. },
  8562. {
  8563. "name": "ralouphie/getallheaders",
  8564. "version": "3.0.3",
  8565. "source": {
  8566. "type": "git",
  8567. "url": "https://github.com/ralouphie/getallheaders.git",
  8568. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  8569. },
  8570. "dist": {
  8571. "type": "zip",
  8572. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  8573. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  8574. "shasum": ""
  8575. },
  8576. "require": {
  8577. "php": ">=5.6"
  8578. },
  8579. "require-dev": {
  8580. "php-coveralls/php-coveralls": "^2.1",
  8581. "phpunit/phpunit": "^5 || ^6.5"
  8582. },
  8583. "type": "library",
  8584. "autoload": {
  8585. "files": [
  8586. "src/getallheaders.php"
  8587. ]
  8588. },
  8589. "notification-url": "https://packagist.org/downloads/",
  8590. "license": [
  8591. "MIT"
  8592. ],
  8593. "authors": [
  8594. {
  8595. "name": "Ralph Khattar",
  8596. "email": "ralph.khattar@gmail.com"
  8597. }
  8598. ],
  8599. "description": "A polyfill for getallheaders.",
  8600. "support": {
  8601. "issues": "https://github.com/ralouphie/getallheaders/issues",
  8602. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  8603. },
  8604. "time": "2019-03-08T08:55:37+00:00"
  8605. },
  8606. {
  8607. "name": "sebastian/diff",
  8608. "version": "4.0.5",
  8609. "source": {
  8610. "type": "git",
  8611. "url": "https://github.com/sebastianbergmann/diff.git",
  8612. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  8613. },
  8614. "dist": {
  8615. "type": "zip",
  8616. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  8617. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  8618. "shasum": ""
  8619. },
  8620. "require": {
  8621. "php": ">=7.3"
  8622. },
  8623. "require-dev": {
  8624. "phpunit/phpunit": "^9.3",
  8625. "symfony/process": "^4.2 || ^5"
  8626. },
  8627. "type": "library",
  8628. "extra": {
  8629. "branch-alias": {
  8630. "dev-master": "4.0-dev"
  8631. }
  8632. },
  8633. "autoload": {
  8634. "classmap": [
  8635. "src/"
  8636. ]
  8637. },
  8638. "notification-url": "https://packagist.org/downloads/",
  8639. "license": [
  8640. "BSD-3-Clause"
  8641. ],
  8642. "authors": [
  8643. {
  8644. "name": "Sebastian Bergmann",
  8645. "email": "sebastian@phpunit.de"
  8646. },
  8647. {
  8648. "name": "Kore Nordmann",
  8649. "email": "mail@kore-nordmann.de"
  8650. }
  8651. ],
  8652. "description": "Diff implementation",
  8653. "homepage": "https://github.com/sebastianbergmann/diff",
  8654. "keywords": [
  8655. "diff",
  8656. "udiff",
  8657. "unidiff",
  8658. "unified diff"
  8659. ],
  8660. "support": {
  8661. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8662. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  8663. },
  8664. "funding": [
  8665. {
  8666. "url": "https://github.com/sebastianbergmann",
  8667. "type": "github"
  8668. }
  8669. ],
  8670. "time": "2023-05-07T05:35:17+00:00"
  8671. },
  8672. {
  8673. "name": "symfony/console",
  8674. "version": "v6.3.4",
  8675. "source": {
  8676. "type": "git",
  8677. "url": "https://github.com/symfony/console.git",
  8678. "reference": "eca495f2ee845130855ddf1cf18460c38966c8b6"
  8679. },
  8680. "dist": {
  8681. "type": "zip",
  8682. "url": "https://api.github.com/repos/symfony/console/zipball/eca495f2ee845130855ddf1cf18460c38966c8b6",
  8683. "reference": "eca495f2ee845130855ddf1cf18460c38966c8b6",
  8684. "shasum": ""
  8685. },
  8686. "require": {
  8687. "php": ">=8.1",
  8688. "symfony/deprecation-contracts": "^2.5|^3",
  8689. "symfony/polyfill-mbstring": "~1.0",
  8690. "symfony/service-contracts": "^2.5|^3",
  8691. "symfony/string": "^5.4|^6.0"
  8692. },
  8693. "conflict": {
  8694. "symfony/dependency-injection": "<5.4",
  8695. "symfony/dotenv": "<5.4",
  8696. "symfony/event-dispatcher": "<5.4",
  8697. "symfony/lock": "<5.4",
  8698. "symfony/process": "<5.4"
  8699. },
  8700. "provide": {
  8701. "psr/log-implementation": "1.0|2.0|3.0"
  8702. },
  8703. "require-dev": {
  8704. "psr/log": "^1|^2|^3",
  8705. "symfony/config": "^5.4|^6.0",
  8706. "symfony/dependency-injection": "^5.4|^6.0",
  8707. "symfony/event-dispatcher": "^5.4|^6.0",
  8708. "symfony/lock": "^5.4|^6.0",
  8709. "symfony/process": "^5.4|^6.0",
  8710. "symfony/var-dumper": "^5.4|^6.0"
  8711. },
  8712. "type": "library",
  8713. "autoload": {
  8714. "psr-4": {
  8715. "Symfony\\Component\\Console\\": ""
  8716. },
  8717. "exclude-from-classmap": [
  8718. "/Tests/"
  8719. ]
  8720. },
  8721. "notification-url": "https://packagist.org/downloads/",
  8722. "license": [
  8723. "MIT"
  8724. ],
  8725. "authors": [
  8726. {
  8727. "name": "Fabien Potencier",
  8728. "email": "fabien@symfony.com"
  8729. },
  8730. {
  8731. "name": "Symfony Community",
  8732. "homepage": "https://symfony.com/contributors"
  8733. }
  8734. ],
  8735. "description": "Eases the creation of beautiful and testable command line interfaces",
  8736. "homepage": "https://symfony.com",
  8737. "keywords": [
  8738. "cli",
  8739. "command-line",
  8740. "console",
  8741. "terminal"
  8742. ],
  8743. "support": {
  8744. "source": "https://github.com/symfony/console/tree/v6.3.4"
  8745. },
  8746. "funding": [
  8747. {
  8748. "url": "https://symfony.com/sponsor",
  8749. "type": "custom"
  8750. },
  8751. {
  8752. "url": "https://github.com/fabpot",
  8753. "type": "github"
  8754. },
  8755. {
  8756. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8757. "type": "tidelift"
  8758. }
  8759. ],
  8760. "time": "2023-08-16T10:10:12+00:00"
  8761. },
  8762. {
  8763. "name": "symfony/dependency-injection",
  8764. "version": "v6.3.5",
  8765. "source": {
  8766. "type": "git",
  8767. "url": "https://github.com/symfony/dependency-injection.git",
  8768. "reference": "2ed62b3bf98346e1f45529a7b6be2196739bb993"
  8769. },
  8770. "dist": {
  8771. "type": "zip",
  8772. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/2ed62b3bf98346e1f45529a7b6be2196739bb993",
  8773. "reference": "2ed62b3bf98346e1f45529a7b6be2196739bb993",
  8774. "shasum": ""
  8775. },
  8776. "require": {
  8777. "php": ">=8.1",
  8778. "psr/container": "^1.1|^2.0",
  8779. "symfony/deprecation-contracts": "^2.5|^3",
  8780. "symfony/service-contracts": "^2.5|^3.0",
  8781. "symfony/var-exporter": "^6.2.10"
  8782. },
  8783. "conflict": {
  8784. "ext-psr": "<1.1|>=2",
  8785. "symfony/config": "<6.1",
  8786. "symfony/finder": "<5.4",
  8787. "symfony/proxy-manager-bridge": "<6.3",
  8788. "symfony/yaml": "<5.4"
  8789. },
  8790. "provide": {
  8791. "psr/container-implementation": "1.1|2.0",
  8792. "symfony/service-implementation": "1.1|2.0|3.0"
  8793. },
  8794. "require-dev": {
  8795. "symfony/config": "^6.1",
  8796. "symfony/expression-language": "^5.4|^6.0",
  8797. "symfony/yaml": "^5.4|^6.0"
  8798. },
  8799. "type": "library",
  8800. "autoload": {
  8801. "psr-4": {
  8802. "Symfony\\Component\\DependencyInjection\\": ""
  8803. },
  8804. "exclude-from-classmap": [
  8805. "/Tests/"
  8806. ]
  8807. },
  8808. "notification-url": "https://packagist.org/downloads/",
  8809. "license": [
  8810. "MIT"
  8811. ],
  8812. "authors": [
  8813. {
  8814. "name": "Fabien Potencier",
  8815. "email": "fabien@symfony.com"
  8816. },
  8817. {
  8818. "name": "Symfony Community",
  8819. "homepage": "https://symfony.com/contributors"
  8820. }
  8821. ],
  8822. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  8823. "homepage": "https://symfony.com",
  8824. "support": {
  8825. "source": "https://github.com/symfony/dependency-injection/tree/v6.3.5"
  8826. },
  8827. "funding": [
  8828. {
  8829. "url": "https://symfony.com/sponsor",
  8830. "type": "custom"
  8831. },
  8832. {
  8833. "url": "https://github.com/fabpot",
  8834. "type": "github"
  8835. },
  8836. {
  8837. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8838. "type": "tidelift"
  8839. }
  8840. ],
  8841. "time": "2023-09-25T16:46:40+00:00"
  8842. },
  8843. {
  8844. "name": "symfony/deprecation-contracts",
  8845. "version": "v3.3.0",
  8846. "source": {
  8847. "type": "git",
  8848. "url": "https://github.com/symfony/deprecation-contracts.git",
  8849. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  8850. },
  8851. "dist": {
  8852. "type": "zip",
  8853. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  8854. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  8855. "shasum": ""
  8856. },
  8857. "require": {
  8858. "php": ">=8.1"
  8859. },
  8860. "type": "library",
  8861. "extra": {
  8862. "branch-alias": {
  8863. "dev-main": "3.4-dev"
  8864. },
  8865. "thanks": {
  8866. "name": "symfony/contracts",
  8867. "url": "https://github.com/symfony/contracts"
  8868. }
  8869. },
  8870. "autoload": {
  8871. "files": [
  8872. "function.php"
  8873. ]
  8874. },
  8875. "notification-url": "https://packagist.org/downloads/",
  8876. "license": [
  8877. "MIT"
  8878. ],
  8879. "authors": [
  8880. {
  8881. "name": "Nicolas Grekas",
  8882. "email": "p@tchwork.com"
  8883. },
  8884. {
  8885. "name": "Symfony Community",
  8886. "homepage": "https://symfony.com/contributors"
  8887. }
  8888. ],
  8889. "description": "A generic function and convention to trigger deprecation notices",
  8890. "homepage": "https://symfony.com",
  8891. "support": {
  8892. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
  8893. },
  8894. "funding": [
  8895. {
  8896. "url": "https://symfony.com/sponsor",
  8897. "type": "custom"
  8898. },
  8899. {
  8900. "url": "https://github.com/fabpot",
  8901. "type": "github"
  8902. },
  8903. {
  8904. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8905. "type": "tidelift"
  8906. }
  8907. ],
  8908. "time": "2023-05-23T14:45:45+00:00"
  8909. },
  8910. {
  8911. "name": "symfony/error-handler",
  8912. "version": "v6.3.5",
  8913. "source": {
  8914. "type": "git",
  8915. "url": "https://github.com/symfony/error-handler.git",
  8916. "reference": "1f69476b64fb47105c06beef757766c376b548c4"
  8917. },
  8918. "dist": {
  8919. "type": "zip",
  8920. "url": "https://api.github.com/repos/symfony/error-handler/zipball/1f69476b64fb47105c06beef757766c376b548c4",
  8921. "reference": "1f69476b64fb47105c06beef757766c376b548c4",
  8922. "shasum": ""
  8923. },
  8924. "require": {
  8925. "php": ">=8.1",
  8926. "psr/log": "^1|^2|^3",
  8927. "symfony/var-dumper": "^5.4|^6.0"
  8928. },
  8929. "conflict": {
  8930. "symfony/deprecation-contracts": "<2.5"
  8931. },
  8932. "require-dev": {
  8933. "symfony/deprecation-contracts": "^2.5|^3",
  8934. "symfony/http-kernel": "^5.4|^6.0",
  8935. "symfony/serializer": "^5.4|^6.0"
  8936. },
  8937. "bin": [
  8938. "Resources/bin/patch-type-declarations"
  8939. ],
  8940. "type": "library",
  8941. "autoload": {
  8942. "psr-4": {
  8943. "Symfony\\Component\\ErrorHandler\\": ""
  8944. },
  8945. "exclude-from-classmap": [
  8946. "/Tests/"
  8947. ]
  8948. },
  8949. "notification-url": "https://packagist.org/downloads/",
  8950. "license": [
  8951. "MIT"
  8952. ],
  8953. "authors": [
  8954. {
  8955. "name": "Fabien Potencier",
  8956. "email": "fabien@symfony.com"
  8957. },
  8958. {
  8959. "name": "Symfony Community",
  8960. "homepage": "https://symfony.com/contributors"
  8961. }
  8962. ],
  8963. "description": "Provides tools to manage errors and ease debugging PHP code",
  8964. "homepage": "https://symfony.com",
  8965. "support": {
  8966. "source": "https://github.com/symfony/error-handler/tree/v6.3.5"
  8967. },
  8968. "funding": [
  8969. {
  8970. "url": "https://symfony.com/sponsor",
  8971. "type": "custom"
  8972. },
  8973. {
  8974. "url": "https://github.com/fabpot",
  8975. "type": "github"
  8976. },
  8977. {
  8978. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8979. "type": "tidelift"
  8980. }
  8981. ],
  8982. "time": "2023-09-12T06:57:20+00:00"
  8983. },
  8984. {
  8985. "name": "symfony/event-dispatcher",
  8986. "version": "v6.3.2",
  8987. "source": {
  8988. "type": "git",
  8989. "url": "https://github.com/symfony/event-dispatcher.git",
  8990. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e"
  8991. },
  8992. "dist": {
  8993. "type": "zip",
  8994. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  8995. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  8996. "shasum": ""
  8997. },
  8998. "require": {
  8999. "php": ">=8.1",
  9000. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9001. },
  9002. "conflict": {
  9003. "symfony/dependency-injection": "<5.4",
  9004. "symfony/service-contracts": "<2.5"
  9005. },
  9006. "provide": {
  9007. "psr/event-dispatcher-implementation": "1.0",
  9008. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9009. },
  9010. "require-dev": {
  9011. "psr/log": "^1|^2|^3",
  9012. "symfony/config": "^5.4|^6.0",
  9013. "symfony/dependency-injection": "^5.4|^6.0",
  9014. "symfony/error-handler": "^5.4|^6.0",
  9015. "symfony/expression-language": "^5.4|^6.0",
  9016. "symfony/http-foundation": "^5.4|^6.0",
  9017. "symfony/service-contracts": "^2.5|^3",
  9018. "symfony/stopwatch": "^5.4|^6.0"
  9019. },
  9020. "type": "library",
  9021. "autoload": {
  9022. "psr-4": {
  9023. "Symfony\\Component\\EventDispatcher\\": ""
  9024. },
  9025. "exclude-from-classmap": [
  9026. "/Tests/"
  9027. ]
  9028. },
  9029. "notification-url": "https://packagist.org/downloads/",
  9030. "license": [
  9031. "MIT"
  9032. ],
  9033. "authors": [
  9034. {
  9035. "name": "Fabien Potencier",
  9036. "email": "fabien@symfony.com"
  9037. },
  9038. {
  9039. "name": "Symfony Community",
  9040. "homepage": "https://symfony.com/contributors"
  9041. }
  9042. ],
  9043. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  9044. "homepage": "https://symfony.com",
  9045. "support": {
  9046. "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.2"
  9047. },
  9048. "funding": [
  9049. {
  9050. "url": "https://symfony.com/sponsor",
  9051. "type": "custom"
  9052. },
  9053. {
  9054. "url": "https://github.com/fabpot",
  9055. "type": "github"
  9056. },
  9057. {
  9058. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9059. "type": "tidelift"
  9060. }
  9061. ],
  9062. "time": "2023-07-06T06:56:43+00:00"
  9063. },
  9064. {
  9065. "name": "symfony/event-dispatcher-contracts",
  9066. "version": "v3.3.0",
  9067. "source": {
  9068. "type": "git",
  9069. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  9070. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  9071. },
  9072. "dist": {
  9073. "type": "zip",
  9074. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  9075. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  9076. "shasum": ""
  9077. },
  9078. "require": {
  9079. "php": ">=8.1",
  9080. "psr/event-dispatcher": "^1"
  9081. },
  9082. "type": "library",
  9083. "extra": {
  9084. "branch-alias": {
  9085. "dev-main": "3.4-dev"
  9086. },
  9087. "thanks": {
  9088. "name": "symfony/contracts",
  9089. "url": "https://github.com/symfony/contracts"
  9090. }
  9091. },
  9092. "autoload": {
  9093. "psr-4": {
  9094. "Symfony\\Contracts\\EventDispatcher\\": ""
  9095. }
  9096. },
  9097. "notification-url": "https://packagist.org/downloads/",
  9098. "license": [
  9099. "MIT"
  9100. ],
  9101. "authors": [
  9102. {
  9103. "name": "Nicolas Grekas",
  9104. "email": "p@tchwork.com"
  9105. },
  9106. {
  9107. "name": "Symfony Community",
  9108. "homepage": "https://symfony.com/contributors"
  9109. }
  9110. ],
  9111. "description": "Generic abstractions related to dispatching event",
  9112. "homepage": "https://symfony.com",
  9113. "keywords": [
  9114. "abstractions",
  9115. "contracts",
  9116. "decoupling",
  9117. "interfaces",
  9118. "interoperability",
  9119. "standards"
  9120. ],
  9121. "support": {
  9122. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0"
  9123. },
  9124. "funding": [
  9125. {
  9126. "url": "https://symfony.com/sponsor",
  9127. "type": "custom"
  9128. },
  9129. {
  9130. "url": "https://github.com/fabpot",
  9131. "type": "github"
  9132. },
  9133. {
  9134. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9135. "type": "tidelift"
  9136. }
  9137. ],
  9138. "time": "2023-05-23T14:45:45+00:00"
  9139. },
  9140. {
  9141. "name": "symfony/filesystem",
  9142. "version": "v6.3.1",
  9143. "source": {
  9144. "type": "git",
  9145. "url": "https://github.com/symfony/filesystem.git",
  9146. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae"
  9147. },
  9148. "dist": {
  9149. "type": "zip",
  9150. "url": "https://api.github.com/repos/symfony/filesystem/zipball/edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  9151. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  9152. "shasum": ""
  9153. },
  9154. "require": {
  9155. "php": ">=8.1",
  9156. "symfony/polyfill-ctype": "~1.8",
  9157. "symfony/polyfill-mbstring": "~1.8"
  9158. },
  9159. "type": "library",
  9160. "autoload": {
  9161. "psr-4": {
  9162. "Symfony\\Component\\Filesystem\\": ""
  9163. },
  9164. "exclude-from-classmap": [
  9165. "/Tests/"
  9166. ]
  9167. },
  9168. "notification-url": "https://packagist.org/downloads/",
  9169. "license": [
  9170. "MIT"
  9171. ],
  9172. "authors": [
  9173. {
  9174. "name": "Fabien Potencier",
  9175. "email": "fabien@symfony.com"
  9176. },
  9177. {
  9178. "name": "Symfony Community",
  9179. "homepage": "https://symfony.com/contributors"
  9180. }
  9181. ],
  9182. "description": "Provides basic utilities for the filesystem",
  9183. "homepage": "https://symfony.com",
  9184. "support": {
  9185. "source": "https://github.com/symfony/filesystem/tree/v6.3.1"
  9186. },
  9187. "funding": [
  9188. {
  9189. "url": "https://symfony.com/sponsor",
  9190. "type": "custom"
  9191. },
  9192. {
  9193. "url": "https://github.com/fabpot",
  9194. "type": "github"
  9195. },
  9196. {
  9197. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9198. "type": "tidelift"
  9199. }
  9200. ],
  9201. "time": "2023-06-01T08:30:39+00:00"
  9202. },
  9203. {
  9204. "name": "symfony/finder",
  9205. "version": "v6.3.5",
  9206. "source": {
  9207. "type": "git",
  9208. "url": "https://github.com/symfony/finder.git",
  9209. "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4"
  9210. },
  9211. "dist": {
  9212. "type": "zip",
  9213. "url": "https://api.github.com/repos/symfony/finder/zipball/a1b31d88c0e998168ca7792f222cbecee47428c4",
  9214. "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4",
  9215. "shasum": ""
  9216. },
  9217. "require": {
  9218. "php": ">=8.1"
  9219. },
  9220. "require-dev": {
  9221. "symfony/filesystem": "^6.0"
  9222. },
  9223. "type": "library",
  9224. "autoload": {
  9225. "psr-4": {
  9226. "Symfony\\Component\\Finder\\": ""
  9227. },
  9228. "exclude-from-classmap": [
  9229. "/Tests/"
  9230. ]
  9231. },
  9232. "notification-url": "https://packagist.org/downloads/",
  9233. "license": [
  9234. "MIT"
  9235. ],
  9236. "authors": [
  9237. {
  9238. "name": "Fabien Potencier",
  9239. "email": "fabien@symfony.com"
  9240. },
  9241. {
  9242. "name": "Symfony Community",
  9243. "homepage": "https://symfony.com/contributors"
  9244. }
  9245. ],
  9246. "description": "Finds files and directories via an intuitive fluent interface",
  9247. "homepage": "https://symfony.com",
  9248. "support": {
  9249. "source": "https://github.com/symfony/finder/tree/v6.3.5"
  9250. },
  9251. "funding": [
  9252. {
  9253. "url": "https://symfony.com/sponsor",
  9254. "type": "custom"
  9255. },
  9256. {
  9257. "url": "https://github.com/fabpot",
  9258. "type": "github"
  9259. },
  9260. {
  9261. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9262. "type": "tidelift"
  9263. }
  9264. ],
  9265. "time": "2023-09-26T12:56:25+00:00"
  9266. },
  9267. {
  9268. "name": "symfony/http-foundation",
  9269. "version": "v6.3.7",
  9270. "source": {
  9271. "type": "git",
  9272. "url": "https://github.com/symfony/http-foundation.git",
  9273. "reference": "59d1837d5d992d16c2628cd0d6b76acf8d69b33e"
  9274. },
  9275. "dist": {
  9276. "type": "zip",
  9277. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/59d1837d5d992d16c2628cd0d6b76acf8d69b33e",
  9278. "reference": "59d1837d5d992d16c2628cd0d6b76acf8d69b33e",
  9279. "shasum": ""
  9280. },
  9281. "require": {
  9282. "php": ">=8.1",
  9283. "symfony/deprecation-contracts": "^2.5|^3",
  9284. "symfony/polyfill-mbstring": "~1.1",
  9285. "symfony/polyfill-php83": "^1.27"
  9286. },
  9287. "conflict": {
  9288. "symfony/cache": "<6.3"
  9289. },
  9290. "require-dev": {
  9291. "doctrine/dbal": "^2.13.1|^3|^4",
  9292. "predis/predis": "^1.1|^2.0",
  9293. "symfony/cache": "^6.3",
  9294. "symfony/dependency-injection": "^5.4|^6.0",
  9295. "symfony/expression-language": "^5.4|^6.0",
  9296. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  9297. "symfony/mime": "^5.4|^6.0",
  9298. "symfony/rate-limiter": "^5.2|^6.0"
  9299. },
  9300. "type": "library",
  9301. "autoload": {
  9302. "psr-4": {
  9303. "Symfony\\Component\\HttpFoundation\\": ""
  9304. },
  9305. "exclude-from-classmap": [
  9306. "/Tests/"
  9307. ]
  9308. },
  9309. "notification-url": "https://packagist.org/downloads/",
  9310. "license": [
  9311. "MIT"
  9312. ],
  9313. "authors": [
  9314. {
  9315. "name": "Fabien Potencier",
  9316. "email": "fabien@symfony.com"
  9317. },
  9318. {
  9319. "name": "Symfony Community",
  9320. "homepage": "https://symfony.com/contributors"
  9321. }
  9322. ],
  9323. "description": "Defines an object-oriented layer for the HTTP specification",
  9324. "homepage": "https://symfony.com",
  9325. "support": {
  9326. "source": "https://github.com/symfony/http-foundation/tree/v6.3.7"
  9327. },
  9328. "funding": [
  9329. {
  9330. "url": "https://symfony.com/sponsor",
  9331. "type": "custom"
  9332. },
  9333. {
  9334. "url": "https://github.com/fabpot",
  9335. "type": "github"
  9336. },
  9337. {
  9338. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9339. "type": "tidelift"
  9340. }
  9341. ],
  9342. "time": "2023-10-28T23:55:27+00:00"
  9343. },
  9344. {
  9345. "name": "symfony/http-kernel",
  9346. "version": "v6.3.7",
  9347. "source": {
  9348. "type": "git",
  9349. "url": "https://github.com/symfony/http-kernel.git",
  9350. "reference": "6d4098095f93279d9536a0e9124439560cc764d0"
  9351. },
  9352. "dist": {
  9353. "type": "zip",
  9354. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6d4098095f93279d9536a0e9124439560cc764d0",
  9355. "reference": "6d4098095f93279d9536a0e9124439560cc764d0",
  9356. "shasum": ""
  9357. },
  9358. "require": {
  9359. "php": ">=8.1",
  9360. "psr/log": "^1|^2|^3",
  9361. "symfony/deprecation-contracts": "^2.5|^3",
  9362. "symfony/error-handler": "^6.3",
  9363. "symfony/event-dispatcher": "^5.4|^6.0",
  9364. "symfony/http-foundation": "^6.3.4",
  9365. "symfony/polyfill-ctype": "^1.8"
  9366. },
  9367. "conflict": {
  9368. "symfony/browser-kit": "<5.4",
  9369. "symfony/cache": "<5.4",
  9370. "symfony/config": "<6.1",
  9371. "symfony/console": "<5.4",
  9372. "symfony/dependency-injection": "<6.3.4",
  9373. "symfony/doctrine-bridge": "<5.4",
  9374. "symfony/form": "<5.4",
  9375. "symfony/http-client": "<5.4",
  9376. "symfony/http-client-contracts": "<2.5",
  9377. "symfony/mailer": "<5.4",
  9378. "symfony/messenger": "<5.4",
  9379. "symfony/translation": "<5.4",
  9380. "symfony/translation-contracts": "<2.5",
  9381. "symfony/twig-bridge": "<5.4",
  9382. "symfony/validator": "<5.4",
  9383. "symfony/var-dumper": "<6.3",
  9384. "twig/twig": "<2.13"
  9385. },
  9386. "provide": {
  9387. "psr/log-implementation": "1.0|2.0|3.0"
  9388. },
  9389. "require-dev": {
  9390. "psr/cache": "^1.0|^2.0|^3.0",
  9391. "symfony/browser-kit": "^5.4|^6.0",
  9392. "symfony/clock": "^6.2",
  9393. "symfony/config": "^6.1",
  9394. "symfony/console": "^5.4|^6.0",
  9395. "symfony/css-selector": "^5.4|^6.0",
  9396. "symfony/dependency-injection": "^6.3.4",
  9397. "symfony/dom-crawler": "^5.4|^6.0",
  9398. "symfony/expression-language": "^5.4|^6.0",
  9399. "symfony/finder": "^5.4|^6.0",
  9400. "symfony/http-client-contracts": "^2.5|^3",
  9401. "symfony/process": "^5.4|^6.0",
  9402. "symfony/property-access": "^5.4.5|^6.0.5",
  9403. "symfony/routing": "^5.4|^6.0",
  9404. "symfony/serializer": "^6.3",
  9405. "symfony/stopwatch": "^5.4|^6.0",
  9406. "symfony/translation": "^5.4|^6.0",
  9407. "symfony/translation-contracts": "^2.5|^3",
  9408. "symfony/uid": "^5.4|^6.0",
  9409. "symfony/validator": "^6.3",
  9410. "symfony/var-exporter": "^6.2",
  9411. "twig/twig": "^2.13|^3.0.4"
  9412. },
  9413. "type": "library",
  9414. "autoload": {
  9415. "psr-4": {
  9416. "Symfony\\Component\\HttpKernel\\": ""
  9417. },
  9418. "exclude-from-classmap": [
  9419. "/Tests/"
  9420. ]
  9421. },
  9422. "notification-url": "https://packagist.org/downloads/",
  9423. "license": [
  9424. "MIT"
  9425. ],
  9426. "authors": [
  9427. {
  9428. "name": "Fabien Potencier",
  9429. "email": "fabien@symfony.com"
  9430. },
  9431. {
  9432. "name": "Symfony Community",
  9433. "homepage": "https://symfony.com/contributors"
  9434. }
  9435. ],
  9436. "description": "Provides a structured process for converting a Request into a Response",
  9437. "homepage": "https://symfony.com",
  9438. "support": {
  9439. "source": "https://github.com/symfony/http-kernel/tree/v6.3.7"
  9440. },
  9441. "funding": [
  9442. {
  9443. "url": "https://symfony.com/sponsor",
  9444. "type": "custom"
  9445. },
  9446. {
  9447. "url": "https://github.com/fabpot",
  9448. "type": "github"
  9449. },
  9450. {
  9451. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9452. "type": "tidelift"
  9453. }
  9454. ],
  9455. "time": "2023-10-29T14:31:45+00:00"
  9456. },
  9457. {
  9458. "name": "symfony/mime",
  9459. "version": "v6.3.5",
  9460. "source": {
  9461. "type": "git",
  9462. "url": "https://github.com/symfony/mime.git",
  9463. "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e"
  9464. },
  9465. "dist": {
  9466. "type": "zip",
  9467. "url": "https://api.github.com/repos/symfony/mime/zipball/d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
  9468. "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
  9469. "shasum": ""
  9470. },
  9471. "require": {
  9472. "php": ">=8.1",
  9473. "symfony/deprecation-contracts": "^2.5|^3",
  9474. "symfony/polyfill-intl-idn": "^1.10",
  9475. "symfony/polyfill-mbstring": "^1.0"
  9476. },
  9477. "conflict": {
  9478. "egulias/email-validator": "~3.0.0",
  9479. "phpdocumentor/reflection-docblock": "<3.2.2",
  9480. "phpdocumentor/type-resolver": "<1.4.0",
  9481. "symfony/mailer": "<5.4",
  9482. "symfony/serializer": "<6.2.13|>=6.3,<6.3.2"
  9483. },
  9484. "require-dev": {
  9485. "egulias/email-validator": "^2.1.10|^3.1|^4",
  9486. "league/html-to-markdown": "^5.0",
  9487. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  9488. "symfony/dependency-injection": "^5.4|^6.0",
  9489. "symfony/property-access": "^5.4|^6.0",
  9490. "symfony/property-info": "^5.4|^6.0",
  9491. "symfony/serializer": "~6.2.13|^6.3.2"
  9492. },
  9493. "type": "library",
  9494. "autoload": {
  9495. "psr-4": {
  9496. "Symfony\\Component\\Mime\\": ""
  9497. },
  9498. "exclude-from-classmap": [
  9499. "/Tests/"
  9500. ]
  9501. },
  9502. "notification-url": "https://packagist.org/downloads/",
  9503. "license": [
  9504. "MIT"
  9505. ],
  9506. "authors": [
  9507. {
  9508. "name": "Fabien Potencier",
  9509. "email": "fabien@symfony.com"
  9510. },
  9511. {
  9512. "name": "Symfony Community",
  9513. "homepage": "https://symfony.com/contributors"
  9514. }
  9515. ],
  9516. "description": "Allows manipulating MIME messages",
  9517. "homepage": "https://symfony.com",
  9518. "keywords": [
  9519. "mime",
  9520. "mime-type"
  9521. ],
  9522. "support": {
  9523. "source": "https://github.com/symfony/mime/tree/v6.3.5"
  9524. },
  9525. "funding": [
  9526. {
  9527. "url": "https://symfony.com/sponsor",
  9528. "type": "custom"
  9529. },
  9530. {
  9531. "url": "https://github.com/fabpot",
  9532. "type": "github"
  9533. },
  9534. {
  9535. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9536. "type": "tidelift"
  9537. }
  9538. ],
  9539. "time": "2023-09-29T06:59:36+00:00"
  9540. },
  9541. {
  9542. "name": "symfony/polyfill-ctype",
  9543. "version": "v1.27.0",
  9544. "source": {
  9545. "type": "git",
  9546. "url": "https://github.com/symfony/polyfill-ctype.git",
  9547. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  9548. },
  9549. "dist": {
  9550. "type": "zip",
  9551. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  9552. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  9553. "shasum": ""
  9554. },
  9555. "require": {
  9556. "php": ">=7.1"
  9557. },
  9558. "provide": {
  9559. "ext-ctype": "*"
  9560. },
  9561. "suggest": {
  9562. "ext-ctype": "For best performance"
  9563. },
  9564. "type": "library",
  9565. "extra": {
  9566. "branch-alias": {
  9567. "dev-main": "1.27-dev"
  9568. },
  9569. "thanks": {
  9570. "name": "symfony/polyfill",
  9571. "url": "https://github.com/symfony/polyfill"
  9572. }
  9573. },
  9574. "autoload": {
  9575. "files": [
  9576. "bootstrap.php"
  9577. ],
  9578. "psr-4": {
  9579. "Symfony\\Polyfill\\Ctype\\": ""
  9580. }
  9581. },
  9582. "notification-url": "https://packagist.org/downloads/",
  9583. "license": [
  9584. "MIT"
  9585. ],
  9586. "authors": [
  9587. {
  9588. "name": "Gert de Pagter",
  9589. "email": "BackEndTea@gmail.com"
  9590. },
  9591. {
  9592. "name": "Symfony Community",
  9593. "homepage": "https://symfony.com/contributors"
  9594. }
  9595. ],
  9596. "description": "Symfony polyfill for ctype functions",
  9597. "homepage": "https://symfony.com",
  9598. "keywords": [
  9599. "compatibility",
  9600. "ctype",
  9601. "polyfill",
  9602. "portable"
  9603. ],
  9604. "support": {
  9605. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  9606. },
  9607. "funding": [
  9608. {
  9609. "url": "https://symfony.com/sponsor",
  9610. "type": "custom"
  9611. },
  9612. {
  9613. "url": "https://github.com/fabpot",
  9614. "type": "github"
  9615. },
  9616. {
  9617. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9618. "type": "tidelift"
  9619. }
  9620. ],
  9621. "time": "2022-11-03T14:55:06+00:00"
  9622. },
  9623. {
  9624. "name": "symfony/polyfill-iconv",
  9625. "version": "v1.27.0",
  9626. "source": {
  9627. "type": "git",
  9628. "url": "https://github.com/symfony/polyfill-iconv.git",
  9629. "reference": "927013f3aac555983a5059aada98e1907d842695"
  9630. },
  9631. "dist": {
  9632. "type": "zip",
  9633. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  9634. "reference": "927013f3aac555983a5059aada98e1907d842695",
  9635. "shasum": ""
  9636. },
  9637. "require": {
  9638. "php": ">=7.1"
  9639. },
  9640. "provide": {
  9641. "ext-iconv": "*"
  9642. },
  9643. "suggest": {
  9644. "ext-iconv": "For best performance"
  9645. },
  9646. "type": "library",
  9647. "extra": {
  9648. "branch-alias": {
  9649. "dev-main": "1.27-dev"
  9650. },
  9651. "thanks": {
  9652. "name": "symfony/polyfill",
  9653. "url": "https://github.com/symfony/polyfill"
  9654. }
  9655. },
  9656. "autoload": {
  9657. "files": [
  9658. "bootstrap.php"
  9659. ],
  9660. "psr-4": {
  9661. "Symfony\\Polyfill\\Iconv\\": ""
  9662. }
  9663. },
  9664. "notification-url": "https://packagist.org/downloads/",
  9665. "license": [
  9666. "MIT"
  9667. ],
  9668. "authors": [
  9669. {
  9670. "name": "Nicolas Grekas",
  9671. "email": "p@tchwork.com"
  9672. },
  9673. {
  9674. "name": "Symfony Community",
  9675. "homepage": "https://symfony.com/contributors"
  9676. }
  9677. ],
  9678. "description": "Symfony polyfill for the Iconv extension",
  9679. "homepage": "https://symfony.com",
  9680. "keywords": [
  9681. "compatibility",
  9682. "iconv",
  9683. "polyfill",
  9684. "portable",
  9685. "shim"
  9686. ],
  9687. "support": {
  9688. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  9689. },
  9690. "funding": [
  9691. {
  9692. "url": "https://symfony.com/sponsor",
  9693. "type": "custom"
  9694. },
  9695. {
  9696. "url": "https://github.com/fabpot",
  9697. "type": "github"
  9698. },
  9699. {
  9700. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9701. "type": "tidelift"
  9702. }
  9703. ],
  9704. "time": "2022-11-03T14:55:06+00:00"
  9705. },
  9706. {
  9707. "name": "symfony/polyfill-intl-grapheme",
  9708. "version": "v1.27.0",
  9709. "source": {
  9710. "type": "git",
  9711. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  9712. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  9713. },
  9714. "dist": {
  9715. "type": "zip",
  9716. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  9717. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  9718. "shasum": ""
  9719. },
  9720. "require": {
  9721. "php": ">=7.1"
  9722. },
  9723. "suggest": {
  9724. "ext-intl": "For best performance"
  9725. },
  9726. "type": "library",
  9727. "extra": {
  9728. "branch-alias": {
  9729. "dev-main": "1.27-dev"
  9730. },
  9731. "thanks": {
  9732. "name": "symfony/polyfill",
  9733. "url": "https://github.com/symfony/polyfill"
  9734. }
  9735. },
  9736. "autoload": {
  9737. "files": [
  9738. "bootstrap.php"
  9739. ],
  9740. "psr-4": {
  9741. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  9742. }
  9743. },
  9744. "notification-url": "https://packagist.org/downloads/",
  9745. "license": [
  9746. "MIT"
  9747. ],
  9748. "authors": [
  9749. {
  9750. "name": "Nicolas Grekas",
  9751. "email": "p@tchwork.com"
  9752. },
  9753. {
  9754. "name": "Symfony Community",
  9755. "homepage": "https://symfony.com/contributors"
  9756. }
  9757. ],
  9758. "description": "Symfony polyfill for intl's grapheme_* functions",
  9759. "homepage": "https://symfony.com",
  9760. "keywords": [
  9761. "compatibility",
  9762. "grapheme",
  9763. "intl",
  9764. "polyfill",
  9765. "portable",
  9766. "shim"
  9767. ],
  9768. "support": {
  9769. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  9770. },
  9771. "funding": [
  9772. {
  9773. "url": "https://symfony.com/sponsor",
  9774. "type": "custom"
  9775. },
  9776. {
  9777. "url": "https://github.com/fabpot",
  9778. "type": "github"
  9779. },
  9780. {
  9781. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9782. "type": "tidelift"
  9783. }
  9784. ],
  9785. "time": "2022-11-03T14:55:06+00:00"
  9786. },
  9787. {
  9788. "name": "symfony/polyfill-intl-idn",
  9789. "version": "v1.27.0",
  9790. "source": {
  9791. "type": "git",
  9792. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  9793. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  9794. },
  9795. "dist": {
  9796. "type": "zip",
  9797. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  9798. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  9799. "shasum": ""
  9800. },
  9801. "require": {
  9802. "php": ">=7.1",
  9803. "symfony/polyfill-intl-normalizer": "^1.10",
  9804. "symfony/polyfill-php72": "^1.10"
  9805. },
  9806. "suggest": {
  9807. "ext-intl": "For best performance"
  9808. },
  9809. "type": "library",
  9810. "extra": {
  9811. "branch-alias": {
  9812. "dev-main": "1.27-dev"
  9813. },
  9814. "thanks": {
  9815. "name": "symfony/polyfill",
  9816. "url": "https://github.com/symfony/polyfill"
  9817. }
  9818. },
  9819. "autoload": {
  9820. "files": [
  9821. "bootstrap.php"
  9822. ],
  9823. "psr-4": {
  9824. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  9825. }
  9826. },
  9827. "notification-url": "https://packagist.org/downloads/",
  9828. "license": [
  9829. "MIT"
  9830. ],
  9831. "authors": [
  9832. {
  9833. "name": "Laurent Bassin",
  9834. "email": "laurent@bassin.info"
  9835. },
  9836. {
  9837. "name": "Trevor Rowbotham",
  9838. "email": "trevor.rowbotham@pm.me"
  9839. },
  9840. {
  9841. "name": "Symfony Community",
  9842. "homepage": "https://symfony.com/contributors"
  9843. }
  9844. ],
  9845. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  9846. "homepage": "https://symfony.com",
  9847. "keywords": [
  9848. "compatibility",
  9849. "idn",
  9850. "intl",
  9851. "polyfill",
  9852. "portable",
  9853. "shim"
  9854. ],
  9855. "support": {
  9856. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  9857. },
  9858. "funding": [
  9859. {
  9860. "url": "https://symfony.com/sponsor",
  9861. "type": "custom"
  9862. },
  9863. {
  9864. "url": "https://github.com/fabpot",
  9865. "type": "github"
  9866. },
  9867. {
  9868. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9869. "type": "tidelift"
  9870. }
  9871. ],
  9872. "time": "2022-11-03T14:55:06+00:00"
  9873. },
  9874. {
  9875. "name": "symfony/polyfill-intl-normalizer",
  9876. "version": "v1.27.0",
  9877. "source": {
  9878. "type": "git",
  9879. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  9880. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  9881. },
  9882. "dist": {
  9883. "type": "zip",
  9884. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  9885. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  9886. "shasum": ""
  9887. },
  9888. "require": {
  9889. "php": ">=7.1"
  9890. },
  9891. "suggest": {
  9892. "ext-intl": "For best performance"
  9893. },
  9894. "type": "library",
  9895. "extra": {
  9896. "branch-alias": {
  9897. "dev-main": "1.27-dev"
  9898. },
  9899. "thanks": {
  9900. "name": "symfony/polyfill",
  9901. "url": "https://github.com/symfony/polyfill"
  9902. }
  9903. },
  9904. "autoload": {
  9905. "files": [
  9906. "bootstrap.php"
  9907. ],
  9908. "psr-4": {
  9909. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  9910. },
  9911. "classmap": [
  9912. "Resources/stubs"
  9913. ]
  9914. },
  9915. "notification-url": "https://packagist.org/downloads/",
  9916. "license": [
  9917. "MIT"
  9918. ],
  9919. "authors": [
  9920. {
  9921. "name": "Nicolas Grekas",
  9922. "email": "p@tchwork.com"
  9923. },
  9924. {
  9925. "name": "Symfony Community",
  9926. "homepage": "https://symfony.com/contributors"
  9927. }
  9928. ],
  9929. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  9930. "homepage": "https://symfony.com",
  9931. "keywords": [
  9932. "compatibility",
  9933. "intl",
  9934. "normalizer",
  9935. "polyfill",
  9936. "portable",
  9937. "shim"
  9938. ],
  9939. "support": {
  9940. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  9941. },
  9942. "funding": [
  9943. {
  9944. "url": "https://symfony.com/sponsor",
  9945. "type": "custom"
  9946. },
  9947. {
  9948. "url": "https://github.com/fabpot",
  9949. "type": "github"
  9950. },
  9951. {
  9952. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9953. "type": "tidelift"
  9954. }
  9955. ],
  9956. "time": "2022-11-03T14:55:06+00:00"
  9957. },
  9958. {
  9959. "name": "symfony/polyfill-mbstring",
  9960. "version": "v1.27.0",
  9961. "source": {
  9962. "type": "git",
  9963. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9964. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  9965. },
  9966. "dist": {
  9967. "type": "zip",
  9968. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  9969. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  9970. "shasum": ""
  9971. },
  9972. "require": {
  9973. "php": ">=7.1"
  9974. },
  9975. "provide": {
  9976. "ext-mbstring": "*"
  9977. },
  9978. "suggest": {
  9979. "ext-mbstring": "For best performance"
  9980. },
  9981. "type": "library",
  9982. "extra": {
  9983. "branch-alias": {
  9984. "dev-main": "1.27-dev"
  9985. },
  9986. "thanks": {
  9987. "name": "symfony/polyfill",
  9988. "url": "https://github.com/symfony/polyfill"
  9989. }
  9990. },
  9991. "autoload": {
  9992. "files": [
  9993. "bootstrap.php"
  9994. ],
  9995. "psr-4": {
  9996. "Symfony\\Polyfill\\Mbstring\\": ""
  9997. }
  9998. },
  9999. "notification-url": "https://packagist.org/downloads/",
  10000. "license": [
  10001. "MIT"
  10002. ],
  10003. "authors": [
  10004. {
  10005. "name": "Nicolas Grekas",
  10006. "email": "p@tchwork.com"
  10007. },
  10008. {
  10009. "name": "Symfony Community",
  10010. "homepage": "https://symfony.com/contributors"
  10011. }
  10012. ],
  10013. "description": "Symfony polyfill for the Mbstring extension",
  10014. "homepage": "https://symfony.com",
  10015. "keywords": [
  10016. "compatibility",
  10017. "mbstring",
  10018. "polyfill",
  10019. "portable",
  10020. "shim"
  10021. ],
  10022. "support": {
  10023. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  10024. },
  10025. "funding": [
  10026. {
  10027. "url": "https://symfony.com/sponsor",
  10028. "type": "custom"
  10029. },
  10030. {
  10031. "url": "https://github.com/fabpot",
  10032. "type": "github"
  10033. },
  10034. {
  10035. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10036. "type": "tidelift"
  10037. }
  10038. ],
  10039. "time": "2022-11-03T14:55:06+00:00"
  10040. },
  10041. {
  10042. "name": "symfony/polyfill-php72",
  10043. "version": "v1.28.0",
  10044. "source": {
  10045. "type": "git",
  10046. "url": "https://github.com/symfony/polyfill-php72.git",
  10047. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  10048. },
  10049. "dist": {
  10050. "type": "zip",
  10051. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  10052. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  10053. "shasum": ""
  10054. },
  10055. "require": {
  10056. "php": ">=7.1"
  10057. },
  10058. "type": "library",
  10059. "extra": {
  10060. "branch-alias": {
  10061. "dev-main": "1.28-dev"
  10062. },
  10063. "thanks": {
  10064. "name": "symfony/polyfill",
  10065. "url": "https://github.com/symfony/polyfill"
  10066. }
  10067. },
  10068. "autoload": {
  10069. "files": [
  10070. "bootstrap.php"
  10071. ],
  10072. "psr-4": {
  10073. "Symfony\\Polyfill\\Php72\\": ""
  10074. }
  10075. },
  10076. "notification-url": "https://packagist.org/downloads/",
  10077. "license": [
  10078. "MIT"
  10079. ],
  10080. "authors": [
  10081. {
  10082. "name": "Nicolas Grekas",
  10083. "email": "p@tchwork.com"
  10084. },
  10085. {
  10086. "name": "Symfony Community",
  10087. "homepage": "https://symfony.com/contributors"
  10088. }
  10089. ],
  10090. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  10091. "homepage": "https://symfony.com",
  10092. "keywords": [
  10093. "compatibility",
  10094. "polyfill",
  10095. "portable",
  10096. "shim"
  10097. ],
  10098. "support": {
  10099. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  10100. },
  10101. "funding": [
  10102. {
  10103. "url": "https://symfony.com/sponsor",
  10104. "type": "custom"
  10105. },
  10106. {
  10107. "url": "https://github.com/fabpot",
  10108. "type": "github"
  10109. },
  10110. {
  10111. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10112. "type": "tidelift"
  10113. }
  10114. ],
  10115. "time": "2023-01-26T09:26:14+00:00"
  10116. },
  10117. {
  10118. "name": "symfony/polyfill-php80",
  10119. "version": "v1.28.0",
  10120. "source": {
  10121. "type": "git",
  10122. "url": "https://github.com/symfony/polyfill-php80.git",
  10123. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  10124. },
  10125. "dist": {
  10126. "type": "zip",
  10127. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  10128. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  10129. "shasum": ""
  10130. },
  10131. "require": {
  10132. "php": ">=7.1"
  10133. },
  10134. "type": "library",
  10135. "extra": {
  10136. "branch-alias": {
  10137. "dev-main": "1.28-dev"
  10138. },
  10139. "thanks": {
  10140. "name": "symfony/polyfill",
  10141. "url": "https://github.com/symfony/polyfill"
  10142. }
  10143. },
  10144. "autoload": {
  10145. "files": [
  10146. "bootstrap.php"
  10147. ],
  10148. "psr-4": {
  10149. "Symfony\\Polyfill\\Php80\\": ""
  10150. },
  10151. "classmap": [
  10152. "Resources/stubs"
  10153. ]
  10154. },
  10155. "notification-url": "https://packagist.org/downloads/",
  10156. "license": [
  10157. "MIT"
  10158. ],
  10159. "authors": [
  10160. {
  10161. "name": "Ion Bazan",
  10162. "email": "ion.bazan@gmail.com"
  10163. },
  10164. {
  10165. "name": "Nicolas Grekas",
  10166. "email": "p@tchwork.com"
  10167. },
  10168. {
  10169. "name": "Symfony Community",
  10170. "homepage": "https://symfony.com/contributors"
  10171. }
  10172. ],
  10173. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  10174. "homepage": "https://symfony.com",
  10175. "keywords": [
  10176. "compatibility",
  10177. "polyfill",
  10178. "portable",
  10179. "shim"
  10180. ],
  10181. "support": {
  10182. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  10183. },
  10184. "funding": [
  10185. {
  10186. "url": "https://symfony.com/sponsor",
  10187. "type": "custom"
  10188. },
  10189. {
  10190. "url": "https://github.com/fabpot",
  10191. "type": "github"
  10192. },
  10193. {
  10194. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10195. "type": "tidelift"
  10196. }
  10197. ],
  10198. "time": "2023-01-26T09:26:14+00:00"
  10199. },
  10200. {
  10201. "name": "symfony/polyfill-php81",
  10202. "version": "v1.28.0",
  10203. "source": {
  10204. "type": "git",
  10205. "url": "https://github.com/symfony/polyfill-php81.git",
  10206. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  10207. },
  10208. "dist": {
  10209. "type": "zip",
  10210. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  10211. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  10212. "shasum": ""
  10213. },
  10214. "require": {
  10215. "php": ">=7.1"
  10216. },
  10217. "type": "library",
  10218. "extra": {
  10219. "branch-alias": {
  10220. "dev-main": "1.28-dev"
  10221. },
  10222. "thanks": {
  10223. "name": "symfony/polyfill",
  10224. "url": "https://github.com/symfony/polyfill"
  10225. }
  10226. },
  10227. "autoload": {
  10228. "files": [
  10229. "bootstrap.php"
  10230. ],
  10231. "psr-4": {
  10232. "Symfony\\Polyfill\\Php81\\": ""
  10233. },
  10234. "classmap": [
  10235. "Resources/stubs"
  10236. ]
  10237. },
  10238. "notification-url": "https://packagist.org/downloads/",
  10239. "license": [
  10240. "MIT"
  10241. ],
  10242. "authors": [
  10243. {
  10244. "name": "Nicolas Grekas",
  10245. "email": "p@tchwork.com"
  10246. },
  10247. {
  10248. "name": "Symfony Community",
  10249. "homepage": "https://symfony.com/contributors"
  10250. }
  10251. ],
  10252. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10253. "homepage": "https://symfony.com",
  10254. "keywords": [
  10255. "compatibility",
  10256. "polyfill",
  10257. "portable",
  10258. "shim"
  10259. ],
  10260. "support": {
  10261. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  10262. },
  10263. "funding": [
  10264. {
  10265. "url": "https://symfony.com/sponsor",
  10266. "type": "custom"
  10267. },
  10268. {
  10269. "url": "https://github.com/fabpot",
  10270. "type": "github"
  10271. },
  10272. {
  10273. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10274. "type": "tidelift"
  10275. }
  10276. ],
  10277. "time": "2023-01-26T09:26:14+00:00"
  10278. },
  10279. {
  10280. "name": "symfony/polyfill-php83",
  10281. "version": "v1.27.0",
  10282. "source": {
  10283. "type": "git",
  10284. "url": "https://github.com/symfony/polyfill-php83.git",
  10285. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57"
  10286. },
  10287. "dist": {
  10288. "type": "zip",
  10289. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/508c652ba3ccf69f8c97f251534f229791b52a57",
  10290. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57",
  10291. "shasum": ""
  10292. },
  10293. "require": {
  10294. "php": ">=7.1",
  10295. "symfony/polyfill-php80": "^1.14"
  10296. },
  10297. "type": "library",
  10298. "extra": {
  10299. "branch-alias": {
  10300. "dev-main": "1.27-dev"
  10301. },
  10302. "thanks": {
  10303. "name": "symfony/polyfill",
  10304. "url": "https://github.com/symfony/polyfill"
  10305. }
  10306. },
  10307. "autoload": {
  10308. "files": [
  10309. "bootstrap.php"
  10310. ],
  10311. "psr-4": {
  10312. "Symfony\\Polyfill\\Php83\\": ""
  10313. }
  10314. },
  10315. "notification-url": "https://packagist.org/downloads/",
  10316. "license": [
  10317. "MIT"
  10318. ],
  10319. "authors": [
  10320. {
  10321. "name": "Nicolas Grekas",
  10322. "email": "p@tchwork.com"
  10323. },
  10324. {
  10325. "name": "Symfony Community",
  10326. "homepage": "https://symfony.com/contributors"
  10327. }
  10328. ],
  10329. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  10330. "homepage": "https://symfony.com",
  10331. "keywords": [
  10332. "compatibility",
  10333. "polyfill",
  10334. "portable",
  10335. "shim"
  10336. ],
  10337. "support": {
  10338. "source": "https://github.com/symfony/polyfill-php83/tree/v1.27.0"
  10339. },
  10340. "funding": [
  10341. {
  10342. "url": "https://symfony.com/sponsor",
  10343. "type": "custom"
  10344. },
  10345. {
  10346. "url": "https://github.com/fabpot",
  10347. "type": "github"
  10348. },
  10349. {
  10350. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10351. "type": "tidelift"
  10352. }
  10353. ],
  10354. "time": "2022-11-03T14:55:06+00:00"
  10355. },
  10356. {
  10357. "name": "symfony/process",
  10358. "version": "v6.3.4",
  10359. "source": {
  10360. "type": "git",
  10361. "url": "https://github.com/symfony/process.git",
  10362. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54"
  10363. },
  10364. "dist": {
  10365. "type": "zip",
  10366. "url": "https://api.github.com/repos/symfony/process/zipball/0b5c29118f2e980d455d2e34a5659f4579847c54",
  10367. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54",
  10368. "shasum": ""
  10369. },
  10370. "require": {
  10371. "php": ">=8.1"
  10372. },
  10373. "type": "library",
  10374. "autoload": {
  10375. "psr-4": {
  10376. "Symfony\\Component\\Process\\": ""
  10377. },
  10378. "exclude-from-classmap": [
  10379. "/Tests/"
  10380. ]
  10381. },
  10382. "notification-url": "https://packagist.org/downloads/",
  10383. "license": [
  10384. "MIT"
  10385. ],
  10386. "authors": [
  10387. {
  10388. "name": "Fabien Potencier",
  10389. "email": "fabien@symfony.com"
  10390. },
  10391. {
  10392. "name": "Symfony Community",
  10393. "homepage": "https://symfony.com/contributors"
  10394. }
  10395. ],
  10396. "description": "Executes commands in sub-processes",
  10397. "homepage": "https://symfony.com",
  10398. "support": {
  10399. "source": "https://github.com/symfony/process/tree/v6.3.4"
  10400. },
  10401. "funding": [
  10402. {
  10403. "url": "https://symfony.com/sponsor",
  10404. "type": "custom"
  10405. },
  10406. {
  10407. "url": "https://github.com/fabpot",
  10408. "type": "github"
  10409. },
  10410. {
  10411. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10412. "type": "tidelift"
  10413. }
  10414. ],
  10415. "time": "2023-08-07T10:39:22+00:00"
  10416. },
  10417. {
  10418. "name": "symfony/psr-http-message-bridge",
  10419. "version": "v2.2.0",
  10420. "source": {
  10421. "type": "git",
  10422. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  10423. "reference": "28a732c05bbad801304ad5a5c674cf2970508993"
  10424. },
  10425. "dist": {
  10426. "type": "zip",
  10427. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/28a732c05bbad801304ad5a5c674cf2970508993",
  10428. "reference": "28a732c05bbad801304ad5a5c674cf2970508993",
  10429. "shasum": ""
  10430. },
  10431. "require": {
  10432. "php": ">=7.2.5",
  10433. "psr/http-message": "^1.0 || ^2.0",
  10434. "symfony/http-foundation": "^5.4 || ^6.0"
  10435. },
  10436. "require-dev": {
  10437. "nyholm/psr7": "^1.1",
  10438. "psr/log": "^1.1 || ^2 || ^3",
  10439. "symfony/browser-kit": "^5.4 || ^6.0",
  10440. "symfony/config": "^5.4 || ^6.0",
  10441. "symfony/event-dispatcher": "^5.4 || ^6.0",
  10442. "symfony/framework-bundle": "^5.4 || ^6.0",
  10443. "symfony/http-kernel": "^5.4 || ^6.0",
  10444. "symfony/phpunit-bridge": "^6.2"
  10445. },
  10446. "suggest": {
  10447. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  10448. },
  10449. "type": "symfony-bridge",
  10450. "extra": {
  10451. "branch-alias": {
  10452. "dev-main": "2.2-dev"
  10453. }
  10454. },
  10455. "autoload": {
  10456. "psr-4": {
  10457. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  10458. },
  10459. "exclude-from-classmap": [
  10460. "/Tests/"
  10461. ]
  10462. },
  10463. "notification-url": "https://packagist.org/downloads/",
  10464. "license": [
  10465. "MIT"
  10466. ],
  10467. "authors": [
  10468. {
  10469. "name": "Fabien Potencier",
  10470. "email": "fabien@symfony.com"
  10471. },
  10472. {
  10473. "name": "Symfony Community",
  10474. "homepage": "http://symfony.com/contributors"
  10475. }
  10476. ],
  10477. "description": "PSR HTTP message bridge",
  10478. "homepage": "http://symfony.com",
  10479. "keywords": [
  10480. "http",
  10481. "http-message",
  10482. "psr-17",
  10483. "psr-7"
  10484. ],
  10485. "support": {
  10486. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  10487. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.2.0"
  10488. },
  10489. "funding": [
  10490. {
  10491. "url": "https://symfony.com/sponsor",
  10492. "type": "custom"
  10493. },
  10494. {
  10495. "url": "https://github.com/fabpot",
  10496. "type": "github"
  10497. },
  10498. {
  10499. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10500. "type": "tidelift"
  10501. }
  10502. ],
  10503. "time": "2023-04-21T08:40:19+00:00"
  10504. },
  10505. {
  10506. "name": "symfony/routing",
  10507. "version": "v6.3.5",
  10508. "source": {
  10509. "type": "git",
  10510. "url": "https://github.com/symfony/routing.git",
  10511. "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31"
  10512. },
  10513. "dist": {
  10514. "type": "zip",
  10515. "url": "https://api.github.com/repos/symfony/routing/zipball/82616e59acd3e3d9c916bba798326cb7796d7d31",
  10516. "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31",
  10517. "shasum": ""
  10518. },
  10519. "require": {
  10520. "php": ">=8.1",
  10521. "symfony/deprecation-contracts": "^2.5|^3"
  10522. },
  10523. "conflict": {
  10524. "doctrine/annotations": "<1.12",
  10525. "symfony/config": "<6.2",
  10526. "symfony/dependency-injection": "<5.4",
  10527. "symfony/yaml": "<5.4"
  10528. },
  10529. "require-dev": {
  10530. "doctrine/annotations": "^1.12|^2",
  10531. "psr/log": "^1|^2|^3",
  10532. "symfony/config": "^6.2",
  10533. "symfony/dependency-injection": "^5.4|^6.0",
  10534. "symfony/expression-language": "^5.4|^6.0",
  10535. "symfony/http-foundation": "^5.4|^6.0",
  10536. "symfony/yaml": "^5.4|^6.0"
  10537. },
  10538. "type": "library",
  10539. "autoload": {
  10540. "psr-4": {
  10541. "Symfony\\Component\\Routing\\": ""
  10542. },
  10543. "exclude-from-classmap": [
  10544. "/Tests/"
  10545. ]
  10546. },
  10547. "notification-url": "https://packagist.org/downloads/",
  10548. "license": [
  10549. "MIT"
  10550. ],
  10551. "authors": [
  10552. {
  10553. "name": "Fabien Potencier",
  10554. "email": "fabien@symfony.com"
  10555. },
  10556. {
  10557. "name": "Symfony Community",
  10558. "homepage": "https://symfony.com/contributors"
  10559. }
  10560. ],
  10561. "description": "Maps an HTTP request to a set of configuration variables",
  10562. "homepage": "https://symfony.com",
  10563. "keywords": [
  10564. "router",
  10565. "routing",
  10566. "uri",
  10567. "url"
  10568. ],
  10569. "support": {
  10570. "source": "https://github.com/symfony/routing/tree/v6.3.5"
  10571. },
  10572. "funding": [
  10573. {
  10574. "url": "https://symfony.com/sponsor",
  10575. "type": "custom"
  10576. },
  10577. {
  10578. "url": "https://github.com/fabpot",
  10579. "type": "github"
  10580. },
  10581. {
  10582. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10583. "type": "tidelift"
  10584. }
  10585. ],
  10586. "time": "2023-09-20T16:05:51+00:00"
  10587. },
  10588. {
  10589. "name": "symfony/serializer",
  10590. "version": "v6.3.7",
  10591. "source": {
  10592. "type": "git",
  10593. "url": "https://github.com/symfony/serializer.git",
  10594. "reference": "641472dd3d6dc3c4d0fdd1496ebd1b55c72e43d9"
  10595. },
  10596. "dist": {
  10597. "type": "zip",
  10598. "url": "https://api.github.com/repos/symfony/serializer/zipball/641472dd3d6dc3c4d0fdd1496ebd1b55c72e43d9",
  10599. "reference": "641472dd3d6dc3c4d0fdd1496ebd1b55c72e43d9",
  10600. "shasum": ""
  10601. },
  10602. "require": {
  10603. "php": ">=8.1",
  10604. "symfony/deprecation-contracts": "^2.5|^3",
  10605. "symfony/polyfill-ctype": "~1.8"
  10606. },
  10607. "conflict": {
  10608. "doctrine/annotations": "<1.12",
  10609. "phpdocumentor/reflection-docblock": "<3.2.2",
  10610. "phpdocumentor/type-resolver": "<1.4.0",
  10611. "symfony/dependency-injection": "<5.4",
  10612. "symfony/property-access": "<5.4",
  10613. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  10614. "symfony/uid": "<5.4",
  10615. "symfony/yaml": "<5.4"
  10616. },
  10617. "require-dev": {
  10618. "doctrine/annotations": "^1.12|^2",
  10619. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  10620. "symfony/cache": "^5.4|^6.0",
  10621. "symfony/config": "^5.4|^6.0",
  10622. "symfony/console": "^5.4|^6.0",
  10623. "symfony/dependency-injection": "^5.4|^6.0",
  10624. "symfony/error-handler": "^5.4|^6.0",
  10625. "symfony/filesystem": "^5.4|^6.0",
  10626. "symfony/form": "^5.4|^6.0",
  10627. "symfony/http-foundation": "^5.4|^6.0",
  10628. "symfony/http-kernel": "^5.4|^6.0",
  10629. "symfony/mime": "^5.4|^6.0",
  10630. "symfony/property-access": "^5.4|^6.0",
  10631. "symfony/property-info": "^5.4.24|^6.2.11",
  10632. "symfony/uid": "^5.4|^6.0",
  10633. "symfony/validator": "^5.4|^6.0",
  10634. "symfony/var-dumper": "^5.4|^6.0",
  10635. "symfony/var-exporter": "^5.4|^6.0",
  10636. "symfony/yaml": "^5.4|^6.0"
  10637. },
  10638. "type": "library",
  10639. "autoload": {
  10640. "psr-4": {
  10641. "Symfony\\Component\\Serializer\\": ""
  10642. },
  10643. "exclude-from-classmap": [
  10644. "/Tests/"
  10645. ]
  10646. },
  10647. "notification-url": "https://packagist.org/downloads/",
  10648. "license": [
  10649. "MIT"
  10650. ],
  10651. "authors": [
  10652. {
  10653. "name": "Fabien Potencier",
  10654. "email": "fabien@symfony.com"
  10655. },
  10656. {
  10657. "name": "Symfony Community",
  10658. "homepage": "https://symfony.com/contributors"
  10659. }
  10660. ],
  10661. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  10662. "homepage": "https://symfony.com",
  10663. "support": {
  10664. "source": "https://github.com/symfony/serializer/tree/v6.3.7"
  10665. },
  10666. "funding": [
  10667. {
  10668. "url": "https://symfony.com/sponsor",
  10669. "type": "custom"
  10670. },
  10671. {
  10672. "url": "https://github.com/fabpot",
  10673. "type": "github"
  10674. },
  10675. {
  10676. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10677. "type": "tidelift"
  10678. }
  10679. ],
  10680. "time": "2023-10-26T18:15:14+00:00"
  10681. },
  10682. {
  10683. "name": "symfony/service-contracts",
  10684. "version": "v3.3.0",
  10685. "source": {
  10686. "type": "git",
  10687. "url": "https://github.com/symfony/service-contracts.git",
  10688. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
  10689. },
  10690. "dist": {
  10691. "type": "zip",
  10692. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  10693. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  10694. "shasum": ""
  10695. },
  10696. "require": {
  10697. "php": ">=8.1",
  10698. "psr/container": "^2.0"
  10699. },
  10700. "conflict": {
  10701. "ext-psr": "<1.1|>=2"
  10702. },
  10703. "type": "library",
  10704. "extra": {
  10705. "branch-alias": {
  10706. "dev-main": "3.4-dev"
  10707. },
  10708. "thanks": {
  10709. "name": "symfony/contracts",
  10710. "url": "https://github.com/symfony/contracts"
  10711. }
  10712. },
  10713. "autoload": {
  10714. "psr-4": {
  10715. "Symfony\\Contracts\\Service\\": ""
  10716. },
  10717. "exclude-from-classmap": [
  10718. "/Test/"
  10719. ]
  10720. },
  10721. "notification-url": "https://packagist.org/downloads/",
  10722. "license": [
  10723. "MIT"
  10724. ],
  10725. "authors": [
  10726. {
  10727. "name": "Nicolas Grekas",
  10728. "email": "p@tchwork.com"
  10729. },
  10730. {
  10731. "name": "Symfony Community",
  10732. "homepage": "https://symfony.com/contributors"
  10733. }
  10734. ],
  10735. "description": "Generic abstractions related to writing services",
  10736. "homepage": "https://symfony.com",
  10737. "keywords": [
  10738. "abstractions",
  10739. "contracts",
  10740. "decoupling",
  10741. "interfaces",
  10742. "interoperability",
  10743. "standards"
  10744. ],
  10745. "support": {
  10746. "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
  10747. },
  10748. "funding": [
  10749. {
  10750. "url": "https://symfony.com/sponsor",
  10751. "type": "custom"
  10752. },
  10753. {
  10754. "url": "https://github.com/fabpot",
  10755. "type": "github"
  10756. },
  10757. {
  10758. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10759. "type": "tidelift"
  10760. }
  10761. ],
  10762. "time": "2023-05-23T14:45:45+00:00"
  10763. },
  10764. {
  10765. "name": "symfony/string",
  10766. "version": "v6.3.5",
  10767. "source": {
  10768. "type": "git",
  10769. "url": "https://github.com/symfony/string.git",
  10770. "reference": "13d76d0fb049051ed12a04bef4f9de8715bea339"
  10771. },
  10772. "dist": {
  10773. "type": "zip",
  10774. "url": "https://api.github.com/repos/symfony/string/zipball/13d76d0fb049051ed12a04bef4f9de8715bea339",
  10775. "reference": "13d76d0fb049051ed12a04bef4f9de8715bea339",
  10776. "shasum": ""
  10777. },
  10778. "require": {
  10779. "php": ">=8.1",
  10780. "symfony/polyfill-ctype": "~1.8",
  10781. "symfony/polyfill-intl-grapheme": "~1.0",
  10782. "symfony/polyfill-intl-normalizer": "~1.0",
  10783. "symfony/polyfill-mbstring": "~1.0"
  10784. },
  10785. "conflict": {
  10786. "symfony/translation-contracts": "<2.5"
  10787. },
  10788. "require-dev": {
  10789. "symfony/error-handler": "^5.4|^6.0",
  10790. "symfony/http-client": "^5.4|^6.0",
  10791. "symfony/intl": "^6.2",
  10792. "symfony/translation-contracts": "^2.5|^3.0",
  10793. "symfony/var-exporter": "^5.4|^6.0"
  10794. },
  10795. "type": "library",
  10796. "autoload": {
  10797. "files": [
  10798. "Resources/functions.php"
  10799. ],
  10800. "psr-4": {
  10801. "Symfony\\Component\\String\\": ""
  10802. },
  10803. "exclude-from-classmap": [
  10804. "/Tests/"
  10805. ]
  10806. },
  10807. "notification-url": "https://packagist.org/downloads/",
  10808. "license": [
  10809. "MIT"
  10810. ],
  10811. "authors": [
  10812. {
  10813. "name": "Nicolas Grekas",
  10814. "email": "p@tchwork.com"
  10815. },
  10816. {
  10817. "name": "Symfony Community",
  10818. "homepage": "https://symfony.com/contributors"
  10819. }
  10820. ],
  10821. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  10822. "homepage": "https://symfony.com",
  10823. "keywords": [
  10824. "grapheme",
  10825. "i18n",
  10826. "string",
  10827. "unicode",
  10828. "utf-8",
  10829. "utf8"
  10830. ],
  10831. "support": {
  10832. "source": "https://github.com/symfony/string/tree/v6.3.5"
  10833. },
  10834. "funding": [
  10835. {
  10836. "url": "https://symfony.com/sponsor",
  10837. "type": "custom"
  10838. },
  10839. {
  10840. "url": "https://github.com/fabpot",
  10841. "type": "github"
  10842. },
  10843. {
  10844. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10845. "type": "tidelift"
  10846. }
  10847. ],
  10848. "time": "2023-09-18T10:38:32+00:00"
  10849. },
  10850. {
  10851. "name": "symfony/translation-contracts",
  10852. "version": "v3.3.0",
  10853. "source": {
  10854. "type": "git",
  10855. "url": "https://github.com/symfony/translation-contracts.git",
  10856. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86"
  10857. },
  10858. "dist": {
  10859. "type": "zip",
  10860. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86",
  10861. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86",
  10862. "shasum": ""
  10863. },
  10864. "require": {
  10865. "php": ">=8.1"
  10866. },
  10867. "type": "library",
  10868. "extra": {
  10869. "branch-alias": {
  10870. "dev-main": "3.4-dev"
  10871. },
  10872. "thanks": {
  10873. "name": "symfony/contracts",
  10874. "url": "https://github.com/symfony/contracts"
  10875. }
  10876. },
  10877. "autoload": {
  10878. "psr-4": {
  10879. "Symfony\\Contracts\\Translation\\": ""
  10880. },
  10881. "exclude-from-classmap": [
  10882. "/Test/"
  10883. ]
  10884. },
  10885. "notification-url": "https://packagist.org/downloads/",
  10886. "license": [
  10887. "MIT"
  10888. ],
  10889. "authors": [
  10890. {
  10891. "name": "Nicolas Grekas",
  10892. "email": "p@tchwork.com"
  10893. },
  10894. {
  10895. "name": "Symfony Community",
  10896. "homepage": "https://symfony.com/contributors"
  10897. }
  10898. ],
  10899. "description": "Generic abstractions related to translation",
  10900. "homepage": "https://symfony.com",
  10901. "keywords": [
  10902. "abstractions",
  10903. "contracts",
  10904. "decoupling",
  10905. "interfaces",
  10906. "interoperability",
  10907. "standards"
  10908. ],
  10909. "support": {
  10910. "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0"
  10911. },
  10912. "funding": [
  10913. {
  10914. "url": "https://symfony.com/sponsor",
  10915. "type": "custom"
  10916. },
  10917. {
  10918. "url": "https://github.com/fabpot",
  10919. "type": "github"
  10920. },
  10921. {
  10922. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10923. "type": "tidelift"
  10924. }
  10925. ],
  10926. "time": "2023-05-30T17:17:10+00:00"
  10927. },
  10928. {
  10929. "name": "symfony/validator",
  10930. "version": "v6.3.7",
  10931. "source": {
  10932. "type": "git",
  10933. "url": "https://github.com/symfony/validator.git",
  10934. "reference": "9cc736663fa5839b9710ac2c303bb0b951014fc1"
  10935. },
  10936. "dist": {
  10937. "type": "zip",
  10938. "url": "https://api.github.com/repos/symfony/validator/zipball/9cc736663fa5839b9710ac2c303bb0b951014fc1",
  10939. "reference": "9cc736663fa5839b9710ac2c303bb0b951014fc1",
  10940. "shasum": ""
  10941. },
  10942. "require": {
  10943. "php": ">=8.1",
  10944. "symfony/deprecation-contracts": "^2.5|^3",
  10945. "symfony/polyfill-ctype": "~1.8",
  10946. "symfony/polyfill-mbstring": "~1.0",
  10947. "symfony/polyfill-php83": "^1.27",
  10948. "symfony/translation-contracts": "^2.5|^3"
  10949. },
  10950. "conflict": {
  10951. "doctrine/annotations": "<1.13",
  10952. "doctrine/lexer": "<1.1",
  10953. "symfony/dependency-injection": "<5.4",
  10954. "symfony/expression-language": "<5.4",
  10955. "symfony/http-kernel": "<5.4",
  10956. "symfony/intl": "<5.4",
  10957. "symfony/property-info": "<5.4",
  10958. "symfony/translation": "<5.4",
  10959. "symfony/yaml": "<5.4"
  10960. },
  10961. "require-dev": {
  10962. "doctrine/annotations": "^1.13|^2",
  10963. "egulias/email-validator": "^2.1.10|^3|^4",
  10964. "symfony/cache": "^5.4|^6.0",
  10965. "symfony/config": "^5.4|^6.0",
  10966. "symfony/console": "^5.4|^6.0",
  10967. "symfony/dependency-injection": "^5.4|^6.0",
  10968. "symfony/expression-language": "^5.4|^6.0",
  10969. "symfony/finder": "^5.4|^6.0",
  10970. "symfony/http-client": "^5.4|^6.0",
  10971. "symfony/http-foundation": "^5.4|^6.0",
  10972. "symfony/http-kernel": "^5.4|^6.0",
  10973. "symfony/intl": "^5.4|^6.0",
  10974. "symfony/mime": "^5.4|^6.0",
  10975. "symfony/property-access": "^5.4|^6.0",
  10976. "symfony/property-info": "^5.4|^6.0",
  10977. "symfony/translation": "^5.4|^6.0",
  10978. "symfony/yaml": "^5.4|^6.0"
  10979. },
  10980. "type": "library",
  10981. "autoload": {
  10982. "psr-4": {
  10983. "Symfony\\Component\\Validator\\": ""
  10984. },
  10985. "exclude-from-classmap": [
  10986. "/Tests/"
  10987. ]
  10988. },
  10989. "notification-url": "https://packagist.org/downloads/",
  10990. "license": [
  10991. "MIT"
  10992. ],
  10993. "authors": [
  10994. {
  10995. "name": "Fabien Potencier",
  10996. "email": "fabien@symfony.com"
  10997. },
  10998. {
  10999. "name": "Symfony Community",
  11000. "homepage": "https://symfony.com/contributors"
  11001. }
  11002. ],
  11003. "description": "Provides tools to validate values",
  11004. "homepage": "https://symfony.com",
  11005. "support": {
  11006. "source": "https://github.com/symfony/validator/tree/v6.3.7"
  11007. },
  11008. "funding": [
  11009. {
  11010. "url": "https://symfony.com/sponsor",
  11011. "type": "custom"
  11012. },
  11013. {
  11014. "url": "https://github.com/fabpot",
  11015. "type": "github"
  11016. },
  11017. {
  11018. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11019. "type": "tidelift"
  11020. }
  11021. ],
  11022. "time": "2023-10-28T23:11:45+00:00"
  11023. },
  11024. {
  11025. "name": "symfony/var-dumper",
  11026. "version": "v6.3.6",
  11027. "source": {
  11028. "type": "git",
  11029. "url": "https://github.com/symfony/var-dumper.git",
  11030. "reference": "999ede244507c32b8e43aebaa10e9fce20de7c97"
  11031. },
  11032. "dist": {
  11033. "type": "zip",
  11034. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/999ede244507c32b8e43aebaa10e9fce20de7c97",
  11035. "reference": "999ede244507c32b8e43aebaa10e9fce20de7c97",
  11036. "shasum": ""
  11037. },
  11038. "require": {
  11039. "php": ">=8.1",
  11040. "symfony/deprecation-contracts": "^2.5|^3",
  11041. "symfony/polyfill-mbstring": "~1.0"
  11042. },
  11043. "conflict": {
  11044. "symfony/console": "<5.4"
  11045. },
  11046. "require-dev": {
  11047. "ext-iconv": "*",
  11048. "symfony/console": "^5.4|^6.0",
  11049. "symfony/http-kernel": "^5.4|^6.0",
  11050. "symfony/process": "^5.4|^6.0",
  11051. "symfony/uid": "^5.4|^6.0",
  11052. "twig/twig": "^2.13|^3.0.4"
  11053. },
  11054. "bin": [
  11055. "Resources/bin/var-dump-server"
  11056. ],
  11057. "type": "library",
  11058. "autoload": {
  11059. "files": [
  11060. "Resources/functions/dump.php"
  11061. ],
  11062. "psr-4": {
  11063. "Symfony\\Component\\VarDumper\\": ""
  11064. },
  11065. "exclude-from-classmap": [
  11066. "/Tests/"
  11067. ]
  11068. },
  11069. "notification-url": "https://packagist.org/downloads/",
  11070. "license": [
  11071. "MIT"
  11072. ],
  11073. "authors": [
  11074. {
  11075. "name": "Nicolas Grekas",
  11076. "email": "p@tchwork.com"
  11077. },
  11078. {
  11079. "name": "Symfony Community",
  11080. "homepage": "https://symfony.com/contributors"
  11081. }
  11082. ],
  11083. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  11084. "homepage": "https://symfony.com",
  11085. "keywords": [
  11086. "debug",
  11087. "dump"
  11088. ],
  11089. "support": {
  11090. "source": "https://github.com/symfony/var-dumper/tree/v6.3.6"
  11091. },
  11092. "funding": [
  11093. {
  11094. "url": "https://symfony.com/sponsor",
  11095. "type": "custom"
  11096. },
  11097. {
  11098. "url": "https://github.com/fabpot",
  11099. "type": "github"
  11100. },
  11101. {
  11102. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11103. "type": "tidelift"
  11104. }
  11105. ],
  11106. "time": "2023-10-12T18:45:56+00:00"
  11107. },
  11108. {
  11109. "name": "symfony/var-exporter",
  11110. "version": "v6.3.6",
  11111. "source": {
  11112. "type": "git",
  11113. "url": "https://github.com/symfony/var-exporter.git",
  11114. "reference": "374d289c13cb989027274c86206ddc63b16a2441"
  11115. },
  11116. "dist": {
  11117. "type": "zip",
  11118. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/374d289c13cb989027274c86206ddc63b16a2441",
  11119. "reference": "374d289c13cb989027274c86206ddc63b16a2441",
  11120. "shasum": ""
  11121. },
  11122. "require": {
  11123. "php": ">=8.1"
  11124. },
  11125. "require-dev": {
  11126. "symfony/var-dumper": "^5.4|^6.0"
  11127. },
  11128. "type": "library",
  11129. "autoload": {
  11130. "psr-4": {
  11131. "Symfony\\Component\\VarExporter\\": ""
  11132. },
  11133. "exclude-from-classmap": [
  11134. "/Tests/"
  11135. ]
  11136. },
  11137. "notification-url": "https://packagist.org/downloads/",
  11138. "license": [
  11139. "MIT"
  11140. ],
  11141. "authors": [
  11142. {
  11143. "name": "Nicolas Grekas",
  11144. "email": "p@tchwork.com"
  11145. },
  11146. {
  11147. "name": "Symfony Community",
  11148. "homepage": "https://symfony.com/contributors"
  11149. }
  11150. ],
  11151. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  11152. "homepage": "https://symfony.com",
  11153. "keywords": [
  11154. "clone",
  11155. "construct",
  11156. "export",
  11157. "hydrate",
  11158. "instantiate",
  11159. "lazy-loading",
  11160. "proxy",
  11161. "serialize"
  11162. ],
  11163. "support": {
  11164. "source": "https://github.com/symfony/var-exporter/tree/v6.3.6"
  11165. },
  11166. "funding": [
  11167. {
  11168. "url": "https://symfony.com/sponsor",
  11169. "type": "custom"
  11170. },
  11171. {
  11172. "url": "https://github.com/fabpot",
  11173. "type": "github"
  11174. },
  11175. {
  11176. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11177. "type": "tidelift"
  11178. }
  11179. ],
  11180. "time": "2023-10-13T09:16:49+00:00"
  11181. },
  11182. {
  11183. "name": "symfony/yaml",
  11184. "version": "v6.3.7",
  11185. "source": {
  11186. "type": "git",
  11187. "url": "https://github.com/symfony/yaml.git",
  11188. "reference": "9758b6c69d179936435d0ffb577c3708d57e38a8"
  11189. },
  11190. "dist": {
  11191. "type": "zip",
  11192. "url": "https://api.github.com/repos/symfony/yaml/zipball/9758b6c69d179936435d0ffb577c3708d57e38a8",
  11193. "reference": "9758b6c69d179936435d0ffb577c3708d57e38a8",
  11194. "shasum": ""
  11195. },
  11196. "require": {
  11197. "php": ">=8.1",
  11198. "symfony/deprecation-contracts": "^2.5|^3",
  11199. "symfony/polyfill-ctype": "^1.8"
  11200. },
  11201. "conflict": {
  11202. "symfony/console": "<5.4"
  11203. },
  11204. "require-dev": {
  11205. "symfony/console": "^5.4|^6.0"
  11206. },
  11207. "bin": [
  11208. "Resources/bin/yaml-lint"
  11209. ],
  11210. "type": "library",
  11211. "autoload": {
  11212. "psr-4": {
  11213. "Symfony\\Component\\Yaml\\": ""
  11214. },
  11215. "exclude-from-classmap": [
  11216. "/Tests/"
  11217. ]
  11218. },
  11219. "notification-url": "https://packagist.org/downloads/",
  11220. "license": [
  11221. "MIT"
  11222. ],
  11223. "authors": [
  11224. {
  11225. "name": "Fabien Potencier",
  11226. "email": "fabien@symfony.com"
  11227. },
  11228. {
  11229. "name": "Symfony Community",
  11230. "homepage": "https://symfony.com/contributors"
  11231. }
  11232. ],
  11233. "description": "Loads and dumps YAML files",
  11234. "homepage": "https://symfony.com",
  11235. "support": {
  11236. "source": "https://github.com/symfony/yaml/tree/v6.3.7"
  11237. },
  11238. "funding": [
  11239. {
  11240. "url": "https://symfony.com/sponsor",
  11241. "type": "custom"
  11242. },
  11243. {
  11244. "url": "https://github.com/fabpot",
  11245. "type": "github"
  11246. },
  11247. {
  11248. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11249. "type": "tidelift"
  11250. }
  11251. ],
  11252. "time": "2023-10-28T23:31:00+00:00"
  11253. },
  11254. {
  11255. "name": "twig/twig",
  11256. "version": "v3.6.1",
  11257. "source": {
  11258. "type": "git",
  11259. "url": "https://github.com/twigphp/Twig.git",
  11260. "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd"
  11261. },
  11262. "dist": {
  11263. "type": "zip",
  11264. "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd",
  11265. "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd",
  11266. "shasum": ""
  11267. },
  11268. "require": {
  11269. "php": ">=7.2.5",
  11270. "symfony/polyfill-ctype": "^1.8",
  11271. "symfony/polyfill-mbstring": "^1.3"
  11272. },
  11273. "require-dev": {
  11274. "psr/container": "^1.0|^2.0",
  11275. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  11276. },
  11277. "type": "library",
  11278. "autoload": {
  11279. "psr-4": {
  11280. "Twig\\": "src/"
  11281. }
  11282. },
  11283. "notification-url": "https://packagist.org/downloads/",
  11284. "license": [
  11285. "BSD-3-Clause"
  11286. ],
  11287. "authors": [
  11288. {
  11289. "name": "Fabien Potencier",
  11290. "email": "fabien@symfony.com",
  11291. "homepage": "http://fabien.potencier.org",
  11292. "role": "Lead Developer"
  11293. },
  11294. {
  11295. "name": "Twig Team",
  11296. "role": "Contributors"
  11297. },
  11298. {
  11299. "name": "Armin Ronacher",
  11300. "email": "armin.ronacher@active-4.com",
  11301. "role": "Project Founder"
  11302. }
  11303. ],
  11304. "description": "Twig, the flexible, fast, and secure template language for PHP",
  11305. "homepage": "https://twig.symfony.com",
  11306. "keywords": [
  11307. "templating"
  11308. ],
  11309. "support": {
  11310. "issues": "https://github.com/twigphp/Twig/issues",
  11311. "source": "https://github.com/twigphp/Twig/tree/v3.6.1"
  11312. },
  11313. "funding": [
  11314. {
  11315. "url": "https://github.com/fabpot",
  11316. "type": "github"
  11317. },
  11318. {
  11319. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  11320. "type": "tidelift"
  11321. }
  11322. ],
  11323. "time": "2023-06-08T12:52:13+00:00"
  11324. },
  11325. {
  11326. "name": "webflo/drupal-finder",
  11327. "version": "1.2.2",
  11328. "source": {
  11329. "type": "git",
  11330. "url": "https://github.com/webflo/drupal-finder.git",
  11331. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  11332. },
  11333. "dist": {
  11334. "type": "zip",
  11335. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  11336. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  11337. "shasum": ""
  11338. },
  11339. "require": {
  11340. "ext-json": "*"
  11341. },
  11342. "require-dev": {
  11343. "mikey179/vfsstream": "^1.6",
  11344. "phpunit/phpunit": "^4.8"
  11345. },
  11346. "type": "library",
  11347. "autoload": {
  11348. "classmap": [
  11349. "src/DrupalFinder.php"
  11350. ]
  11351. },
  11352. "notification-url": "https://packagist.org/downloads/",
  11353. "license": [
  11354. "GPL-2.0-or-later"
  11355. ],
  11356. "authors": [
  11357. {
  11358. "name": "Florian Weber",
  11359. "email": "florian@webflo.org"
  11360. }
  11361. ],
  11362. "description": "Helper class to locate a Drupal installation from a given path.",
  11363. "support": {
  11364. "issues": "https://github.com/webflo/drupal-finder/issues",
  11365. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  11366. },
  11367. "time": "2020-10-27T09:42:17+00:00"
  11368. },
  11369. {
  11370. "name": "wikimedia/composer-merge-plugin",
  11371. "version": "v2.1.0",
  11372. "source": {
  11373. "type": "git",
  11374. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  11375. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc"
  11376. },
  11377. "dist": {
  11378. "type": "zip",
  11379. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  11380. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  11381. "shasum": ""
  11382. },
  11383. "require": {
  11384. "composer-plugin-api": "^1.1||^2.0",
  11385. "php": ">=7.2.0"
  11386. },
  11387. "require-dev": {
  11388. "composer/composer": "^1.1||^2.0",
  11389. "ext-json": "*",
  11390. "mediawiki/mediawiki-phan-config": "0.11.1",
  11391. "php-parallel-lint/php-parallel-lint": "~1.3.1",
  11392. "phpspec/prophecy": "~1.15.0",
  11393. "phpunit/phpunit": "^8.5||^9.0",
  11394. "squizlabs/php_codesniffer": "~3.7.1"
  11395. },
  11396. "type": "composer-plugin",
  11397. "extra": {
  11398. "branch-alias": {
  11399. "dev-master": "2.x-dev"
  11400. },
  11401. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  11402. },
  11403. "autoload": {
  11404. "psr-4": {
  11405. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  11406. }
  11407. },
  11408. "notification-url": "https://packagist.org/downloads/",
  11409. "license": [
  11410. "MIT"
  11411. ],
  11412. "authors": [
  11413. {
  11414. "name": "Bryan Davis",
  11415. "email": "bd808@wikimedia.org"
  11416. }
  11417. ],
  11418. "description": "Composer plugin to merge multiple composer.json files",
  11419. "support": {
  11420. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  11421. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0"
  11422. },
  11423. "time": "2023-04-15T19:07:00+00:00"
  11424. }
  11425. ],
  11426. "packages-dev": [],
  11427. "aliases": [],
  11428. "minimum-stability": "stable",
  11429. "stability-flags": {
  11430. "drupal/advanced_text_formatter": 5,
  11431. "drupal/bulkdelete": 20,
  11432. "drupal/config_ignore": 5,
  11433. "drupal/config_devel": 20,
  11434. "drupal/config_update": 15,
  11435. "drupal/context": 5,
  11436. "drupal/date_range_formatter": 20,
  11437. "drupal/email_registration": 5,
  11438. "drupal/entity_clone": 20,
  11439. "drupal/field_group": 20,
  11440. "drupal/filter_perms": 20,
  11441. "drupal/inline_entity_form": 5,
  11442. "drupal/linkit": 10,
  11443. "drupal/login_destination": 20,
  11444. "drupal/maillog": 20,
  11445. "drupal/maxlength": 10,
  11446. "drupal/menu_block": 20,
  11447. "drupal/menu_position": 20,
  11448. "drupal/path_alias_xt": 20,
  11449. "drupal/pathologic": 15,
  11450. "drupal/profile": 5,
  11451. "drupal/smtp": 10,
  11452. "drupal/synonyms": 10,
  11453. "drupal/translation_views": 15,
  11454. "drupal/ultimate_cron": 15
  11455. },
  11456. "prefer-stable": true,
  11457. "prefer-lowest": false,
  11458. "platform": [],
  11459. "platform-dev": [],
  11460. "plugin-api-version": "2.6.0"
  11461. }