composer.lock 484 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619126201262112622126231262412625126261262712628126291263012631126321263312634126351263612637126381263912640126411264212643126441264512646126471264812649126501265112652126531265412655126561265712658126591266012661126621266312664126651266612667126681266912670126711267212673126741267512676126771267812679126801268112682126831268412685126861268712688126891269012691126921269312694126951269612697126981269912700127011270212703127041270512706127071270812709127101271112712127131271412715127161271712718127191272012721127221272312724127251272612727127281272912730127311273212733127341273512736127371273812739127401274112742127431274412745127461274712748127491275012751127521275312754127551275612757127581275912760127611276212763127641276512766127671276812769127701277112772127731277412775127761277712778127791278012781127821278312784127851278612787127881278912790127911279212793127941279512796127971279812799128001280112802128031280412805128061280712808128091281012811128121281312814128151281612817128181281912820128211282212823128241282512826128271282812829128301283112832128331283412835128361283712838128391284012841128421284312844128451284612847128481284912850128511285212853128541285512856128571285812859128601286112862128631286412865128661286712868128691287012871128721287312874128751287612877128781287912880128811288212883128841288512886128871288812889128901289112892128931289412895128961289712898128991290012901129021290312904129051290612907129081290912910129111291212913129141291512916129171291812919129201292112922129231292412925129261292712928129291293012931129321293312934129351293612937129381293912940129411294212943129441294512946129471294812949129501295112952129531295412955129561295712958129591296012961129621296312964129651296612967129681296912970129711297212973129741297512976129771297812979129801298112982129831298412985129861298712988129891299012991129921299312994129951299612997129981299913000130011300213003130041300513006130071300813009130101301113012130131301413015130161301713018130191302013021130221302313024130251302613027130281302913030130311303213033130341303513036130371303813039130401304113042130431304413045130461304713048130491305013051130521305313054130551305613057130581305913060130611306213063130641306513066130671306813069130701307113072130731307413075130761307713078130791308013081130821308313084130851308613087130881308913090130911309213093130941309513096130971309813099131001310113102131031310413105131061310713108131091311013111131121311313114131151311613117131181311913120131211312213123131241312513126131271312813129131301313113132131331313413135131361313713138131391314013141131421314313144131451314613147131481314913150131511315213153131541315513156131571315813159131601316113162131631316413165131661316713168131691317013171131721317313174131751317613177131781317913180131811318213183131841318513186131871318813189131901319113192131931319413195131961319713198131991320013201132021320313204132051320613207132081320913210132111321213213132141321513216132171321813219132201322113222
  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": "2d3c845404e0f68351dfe3c7c862a54e",
  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_theme",
  1715. "version": "1.0.0",
  1716. "source": {
  1717. "type": "git",
  1718. "url": "https://git.drupalcode.org/project/admin_theme.git",
  1719. "reference": "8.x-1.0"
  1720. },
  1721. "dist": {
  1722. "type": "zip",
  1723. "url": "https://ftp.drupal.org/files/projects/admin_theme-8.x-1.0.zip",
  1724. "reference": "8.x-1.0",
  1725. "shasum": "5dafd7457840963609502567d60f7fdf0b3e81c3"
  1726. },
  1727. "require": {
  1728. "drupal/core": "^8.8 || ^9 || ^10",
  1729. "php": ">=5.5.9"
  1730. },
  1731. "type": "drupal-module",
  1732. "extra": {
  1733. "drupal": {
  1734. "version": "8.x-1.0",
  1735. "datestamp": "1681407048",
  1736. "security-coverage": {
  1737. "status": "covered",
  1738. "message": "Covered by Drupal's security advisory policy"
  1739. }
  1740. }
  1741. },
  1742. "notification-url": "https://packages.drupal.org/8/downloads",
  1743. "license": [
  1744. "GPL-2.0+"
  1745. ],
  1746. "authors": [
  1747. {
  1748. "name": "geek-merlin",
  1749. "homepage": "https://www.drupal.org/user/229048"
  1750. },
  1751. {
  1752. "name": "justy",
  1753. "homepage": "https://www.drupal.org/user/115811"
  1754. }
  1755. ],
  1756. "description": "Enable the administration theme on more paths than possible with Drupal's default administration page.",
  1757. "homepage": "https://www.drupal.org/project/admin_theme",
  1758. "keywords": [
  1759. "drupal"
  1760. ],
  1761. "support": {
  1762. "source": "https://git.drupalcode.org/project/admin_theme"
  1763. }
  1764. },
  1765. {
  1766. "name": "drupal/admin_toolbar",
  1767. "version": "3.4.2",
  1768. "source": {
  1769. "type": "git",
  1770. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1771. "reference": "3.4.2"
  1772. },
  1773. "dist": {
  1774. "type": "zip",
  1775. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.4.2.zip",
  1776. "reference": "3.4.2",
  1777. "shasum": "f5a008e5c73f5a11c6c8067c0ea6ebb76aa33854"
  1778. },
  1779. "require": {
  1780. "drupal/core": "^9.2 || ^10"
  1781. },
  1782. "require-dev": {
  1783. "drupal/admin_toolbar_tools": "*"
  1784. },
  1785. "type": "drupal-module",
  1786. "extra": {
  1787. "drupal": {
  1788. "version": "3.4.2",
  1789. "datestamp": "1696006195",
  1790. "security-coverage": {
  1791. "status": "covered",
  1792. "message": "Covered by Drupal's security advisory policy"
  1793. }
  1794. }
  1795. },
  1796. "notification-url": "https://packages.drupal.org/8/downloads",
  1797. "license": [
  1798. "GPL-2.0-or-later"
  1799. ],
  1800. "authors": [
  1801. {
  1802. "name": "Wilfrid Roze (eme)",
  1803. "homepage": "https://www.drupal.org/u/eme",
  1804. "role": "Maintainer"
  1805. },
  1806. {
  1807. "name": "Romain Jarraud (romainj)",
  1808. "homepage": "https://www.drupal.org/u/romainj",
  1809. "role": "Maintainer"
  1810. },
  1811. {
  1812. "name": "Adrian Cid Almaguer (adriancid)",
  1813. "homepage": "https://www.drupal.org/u/adriancid",
  1814. "email": "adriancid@gmail.com",
  1815. "role": "Maintainer"
  1816. },
  1817. {
  1818. "name": "Mohamed Anis Taktak (matio89)",
  1819. "homepage": "https://www.drupal.org/u/matio89",
  1820. "role": "Maintainer"
  1821. },
  1822. {
  1823. "name": "matio89",
  1824. "homepage": "https://www.drupal.org/user/2320090"
  1825. },
  1826. {
  1827. "name": "Musa.thomas",
  1828. "homepage": "https://www.drupal.org/user/1213824"
  1829. },
  1830. {
  1831. "name": "romainj",
  1832. "homepage": "https://www.drupal.org/user/370706"
  1833. }
  1834. ],
  1835. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1836. "homepage": "http://drupal.org/project/admin_toolbar",
  1837. "keywords": [
  1838. "Drupal",
  1839. "Toolbar"
  1840. ],
  1841. "support": {
  1842. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1843. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1844. }
  1845. },
  1846. {
  1847. "name": "drupal/adminimal_theme",
  1848. "version": "1.7.0",
  1849. "source": {
  1850. "type": "git",
  1851. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1852. "reference": "8.x-1.7"
  1853. },
  1854. "dist": {
  1855. "type": "zip",
  1856. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1857. "reference": "8.x-1.7",
  1858. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1859. },
  1860. "require": {
  1861. "drupal/core": "^9.3 || ^10",
  1862. "drupal/seven": "~1.0"
  1863. },
  1864. "type": "drupal-theme",
  1865. "extra": {
  1866. "drupal": {
  1867. "version": "8.x-1.7",
  1868. "datestamp": "1691504486",
  1869. "security-coverage": {
  1870. "status": "covered",
  1871. "message": "Covered by Drupal's security advisory policy"
  1872. }
  1873. }
  1874. },
  1875. "notification-url": "https://packages.drupal.org/8/downloads",
  1876. "license": [
  1877. "GPL-2.0+"
  1878. ],
  1879. "authors": [
  1880. {
  1881. "name": "ANDiTKO",
  1882. "homepage": "https://www.drupal.org/user/1428124"
  1883. },
  1884. {
  1885. "name": "andrey.troeglazov",
  1886. "homepage": "https://www.drupal.org/user/3145389"
  1887. },
  1888. {
  1889. "name": "realityloop",
  1890. "homepage": "https://www.drupal.org/user/139189"
  1891. },
  1892. {
  1893. "name": "rjjakes",
  1894. "homepage": "https://www.drupal.org/user/3457245"
  1895. }
  1896. ],
  1897. "description": "Drupal administration theme with modern minimalist design.",
  1898. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1899. "support": {
  1900. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1901. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1902. }
  1903. },
  1904. {
  1905. "name": "drupal/advanced_email_validation",
  1906. "version": "1.1.5",
  1907. "source": {
  1908. "type": "git",
  1909. "url": "https://git.drupalcode.org/project/advanced_email_validation.git",
  1910. "reference": "1.1.5"
  1911. },
  1912. "dist": {
  1913. "type": "zip",
  1914. "url": "https://ftp.drupal.org/files/projects/advanced_email_validation-1.1.5.zip",
  1915. "reference": "1.1.5",
  1916. "shasum": "39bb313fe3be5c329012aa5310a6081cdc7e9df0"
  1917. },
  1918. "require": {
  1919. "drupal/core": "^9.3 || ^10",
  1920. "stymiee/email-validator": "^1.0.1"
  1921. },
  1922. "type": "drupal-module",
  1923. "extra": {
  1924. "drupal": {
  1925. "version": "1.1.5",
  1926. "datestamp": "1686705109",
  1927. "security-coverage": {
  1928. "status": "covered",
  1929. "message": "Covered by Drupal's security advisory policy"
  1930. }
  1931. }
  1932. },
  1933. "notification-url": "https://packages.drupal.org/8/downloads",
  1934. "license": [
  1935. "GPL-2.0+"
  1936. ],
  1937. "authors": [
  1938. {
  1939. "name": "Max Pogonowski (darvanen)",
  1940. "homepage": "https://www.drupal.org/u/darvanen",
  1941. "role": "Maintainer"
  1942. }
  1943. ],
  1944. "description": "User account email validation using MX records and lists of free or disposable emails (configurable).",
  1945. "homepage": "https://www.drupal.org/project/advanced_email_validation",
  1946. "keywords": [
  1947. "Drupal"
  1948. ],
  1949. "support": {
  1950. "source": "http://cgit.drupalcode.org/advanced_email_validation",
  1951. "issues": "https://www.drupal.org/project/issues/advanced_email_validation"
  1952. }
  1953. },
  1954. {
  1955. "name": "drupal/advanced_text_formatter",
  1956. "version": "3.0.0-rc1",
  1957. "source": {
  1958. "type": "git",
  1959. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  1960. "reference": "3.0.0-rc1"
  1961. },
  1962. "dist": {
  1963. "type": "zip",
  1964. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-3.0.0-rc1.zip",
  1965. "reference": "3.0.0-rc1",
  1966. "shasum": "394729127f44a6398e29f5e5702e6def00a06e20"
  1967. },
  1968. "require": {
  1969. "drupal/core": "^8 || ^9 || ^10"
  1970. },
  1971. "type": "drupal-module",
  1972. "extra": {
  1973. "drupal": {
  1974. "version": "3.0.0-rc1",
  1975. "datestamp": "1675163352",
  1976. "security-coverage": {
  1977. "status": "not-covered",
  1978. "message": "RC releases are not covered by Drupal security advisories."
  1979. }
  1980. }
  1981. },
  1982. "notification-url": "https://packages.drupal.org/8/downloads",
  1983. "license": [
  1984. "GPL-2.0-or-later"
  1985. ],
  1986. "authors": [
  1987. {
  1988. "name": "azovsky",
  1989. "homepage": "https://www.drupal.org/user/330533"
  1990. },
  1991. {
  1992. "name": "thmnhat",
  1993. "homepage": "https://www.drupal.org/user/998946"
  1994. }
  1995. ],
  1996. "description": "Provides an additional formatter for text field, text area and text format.",
  1997. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  1998. "support": {
  1999. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  2000. }
  2001. },
  2002. {
  2003. "name": "drupal/amswap",
  2004. "version": "3.2.1",
  2005. "source": {
  2006. "type": "git",
  2007. "url": "https://git.drupalcode.org/project/amswap.git",
  2008. "reference": "3.2.1"
  2009. },
  2010. "dist": {
  2011. "type": "zip",
  2012. "url": "https://ftp.drupal.org/files/projects/amswap-3.2.1.zip",
  2013. "reference": "3.2.1",
  2014. "shasum": "6fdfb96eb3a000d6b01e9d72071ad736f2e81889"
  2015. },
  2016. "require": {
  2017. "drupal/core": "^8 || ^9 || ^10"
  2018. },
  2019. "type": "drupal-module",
  2020. "extra": {
  2021. "drupal": {
  2022. "version": "3.2.1",
  2023. "datestamp": "1680451461",
  2024. "security-coverage": {
  2025. "status": "not-covered",
  2026. "message": "Project has not opted into security advisory coverage!"
  2027. }
  2028. }
  2029. },
  2030. "notification-url": "https://packages.drupal.org/8/downloads",
  2031. "license": [
  2032. "GPL-2.0-or-later"
  2033. ],
  2034. "authors": [
  2035. {
  2036. "name": "cedewey",
  2037. "homepage": "https://www.drupal.org/user/38694"
  2038. },
  2039. {
  2040. "name": "droces",
  2041. "homepage": "https://www.drupal.org/user/2996575"
  2042. }
  2043. ],
  2044. "description": "Allows the administration menu to be customised per user role.",
  2045. "homepage": "https://www.drupal.org/project/amswap",
  2046. "keywords": [
  2047. "Drupal"
  2048. ],
  2049. "support": {
  2050. "source": "http://cgit.drupalcode.org/amswap",
  2051. "issues": "https://www.drupal.org/project/issues/amswap"
  2052. }
  2053. },
  2054. {
  2055. "name": "drupal/audiofield",
  2056. "version": "1.13.0",
  2057. "source": {
  2058. "type": "git",
  2059. "url": "https://git.drupalcode.org/project/audiofield.git",
  2060. "reference": "8.x-1.13"
  2061. },
  2062. "dist": {
  2063. "type": "zip",
  2064. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  2065. "reference": "8.x-1.13",
  2066. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  2067. },
  2068. "require": {
  2069. "drupal/core": "^8 || ^9 || ^10"
  2070. },
  2071. "type": "drupal-module",
  2072. "extra": {
  2073. "drupal": {
  2074. "version": "8.x-1.13",
  2075. "datestamp": "1681143245",
  2076. "security-coverage": {
  2077. "status": "covered",
  2078. "message": "Covered by Drupal's security advisory policy"
  2079. }
  2080. },
  2081. "drush": {
  2082. "services": {
  2083. "drush.services.yml": "^9"
  2084. }
  2085. }
  2086. },
  2087. "notification-url": "https://packages.drupal.org/8/downloads",
  2088. "license": [
  2089. "GPL-2.0-or-later"
  2090. ],
  2091. "authors": [
  2092. {
  2093. "name": "Daniel Moberly",
  2094. "homepage": "https://www.drupal.org/u/danielmoberly",
  2095. "role": "Maintainer"
  2096. },
  2097. {
  2098. "name": "tamerzg",
  2099. "homepage": "https://www.drupal.org/user/464564"
  2100. }
  2101. ],
  2102. "description": "AudioField Module",
  2103. "homepage": "https://www.drupal.org/project/audiofield",
  2104. "support": {
  2105. "source": "https://git.drupalcode.org/project/audiofield",
  2106. "issues": "https://www.drupal.org/project/issues/audiofield"
  2107. }
  2108. },
  2109. {
  2110. "name": "drupal/autocomplete_deluxe",
  2111. "version": "2.0.3",
  2112. "source": {
  2113. "type": "git",
  2114. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2115. "reference": "2.0.3"
  2116. },
  2117. "dist": {
  2118. "type": "zip",
  2119. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.0.3.zip",
  2120. "reference": "2.0.3",
  2121. "shasum": "686bb49e7366d59f7eef7acf8906ba907898497f"
  2122. },
  2123. "require": {
  2124. "drupal/core": "^8 || ^9 || ^10"
  2125. },
  2126. "type": "drupal-module",
  2127. "extra": {
  2128. "drupal": {
  2129. "version": "2.0.3",
  2130. "datestamp": "1673454732",
  2131. "security-coverage": {
  2132. "status": "covered",
  2133. "message": "Covered by Drupal's security advisory policy"
  2134. }
  2135. }
  2136. },
  2137. "notification-url": "https://packages.drupal.org/8/downloads",
  2138. "license": [
  2139. "GPL-2.0-or-later"
  2140. ],
  2141. "authors": [
  2142. {
  2143. "name": "Vardot",
  2144. "homepage": "https://www.drupal.org/vardot",
  2145. "role": "Maintenance for D8 and D9 versions"
  2146. },
  2147. {
  2148. "name": "Mediacurrent",
  2149. "homepage": "https://www.drupal.org/mediacurrent",
  2150. "role": "Supporting organization"
  2151. },
  2152. {
  2153. "name": "Mohammed J. Razem",
  2154. "homepage": "https://www.drupal.org/user/255384"
  2155. },
  2156. {
  2157. "name": "mpriscella",
  2158. "homepage": "https://www.drupal.org/user/2354820"
  2159. },
  2160. {
  2161. "name": "Rajab Natshah",
  2162. "homepage": "https://www.drupal.org/user/1414312"
  2163. },
  2164. {
  2165. "name": "sepgil",
  2166. "homepage": "https://www.drupal.org/user/512828"
  2167. }
  2168. ],
  2169. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2170. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2171. "support": {
  2172. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2173. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2174. }
  2175. },
  2176. {
  2177. "name": "drupal/autologout",
  2178. "version": "1.4.0",
  2179. "source": {
  2180. "type": "git",
  2181. "url": "https://git.drupalcode.org/project/autologout.git",
  2182. "reference": "8.x-1.4"
  2183. },
  2184. "dist": {
  2185. "type": "zip",
  2186. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.4.zip",
  2187. "reference": "8.x-1.4",
  2188. "shasum": "f751062f463d0b52df81764f67cee3a0be97825e"
  2189. },
  2190. "require": {
  2191. "drupal/core": "^9.2 || ^10"
  2192. },
  2193. "type": "drupal-module",
  2194. "extra": {
  2195. "drupal": {
  2196. "version": "8.x-1.4",
  2197. "datestamp": "1658168199",
  2198. "security-coverage": {
  2199. "status": "covered",
  2200. "message": "Covered by Drupal's security advisory policy"
  2201. }
  2202. }
  2203. },
  2204. "notification-url": "https://packages.drupal.org/8/downloads",
  2205. "license": [
  2206. "GPL-2.0-or-later"
  2207. ],
  2208. "authors": [
  2209. {
  2210. "name": "AjitS",
  2211. "homepage": "https://www.drupal.org/user/981944"
  2212. },
  2213. {
  2214. "name": "AjK",
  2215. "homepage": "https://www.drupal.org/user/39030"
  2216. },
  2217. {
  2218. "name": "boshtian",
  2219. "homepage": "https://www.drupal.org/user/1773456"
  2220. },
  2221. {
  2222. "name": "dandrews",
  2223. "homepage": "https://www.drupal.org/user/2014490"
  2224. },
  2225. {
  2226. "name": "darksnow",
  2227. "homepage": "https://www.drupal.org/user/391915"
  2228. },
  2229. {
  2230. "name": "japerry",
  2231. "homepage": "https://www.drupal.org/user/45640"
  2232. },
  2233. {
  2234. "name": "johnennew",
  2235. "homepage": "https://www.drupal.org/user/1150042"
  2236. },
  2237. {
  2238. "name": "jrglasgow",
  2239. "homepage": "https://www.drupal.org/user/36590"
  2240. },
  2241. {
  2242. "name": "kmasood",
  2243. "homepage": "https://www.drupal.org/user/1262860"
  2244. },
  2245. {
  2246. "name": "levelos",
  2247. "homepage": "https://www.drupal.org/user/54135"
  2248. },
  2249. {
  2250. "name": "prabeen.giri",
  2251. "homepage": "https://www.drupal.org/user/913078"
  2252. },
  2253. {
  2254. "name": "str8",
  2255. "homepage": "https://www.drupal.org/user/2865063"
  2256. }
  2257. ],
  2258. "description": "Adds automated timed logout.",
  2259. "homepage": "http://drupal.org/project/autologout",
  2260. "support": {
  2261. "source": "https://git.drupalcode.org/project/autologout"
  2262. }
  2263. },
  2264. {
  2265. "name": "drupal/better_exposed_filters",
  2266. "version": "6.0.3",
  2267. "source": {
  2268. "type": "git",
  2269. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2270. "reference": "6.0.3"
  2271. },
  2272. "dist": {
  2273. "type": "zip",
  2274. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.3.zip",
  2275. "reference": "6.0.3",
  2276. "shasum": "b5c20207d7679542bb81955771956c18083e6e0b"
  2277. },
  2278. "require": {
  2279. "drupal/core": "^9 || ^10",
  2280. "drupal/jquery_ui": "^1.6",
  2281. "drupal/jquery_ui_datepicker": "^2.0",
  2282. "drupal/jquery_ui_slider": "^2.0.0",
  2283. "drupal/jquery_ui_touch_punch": "^1.0"
  2284. },
  2285. "type": "drupal-module",
  2286. "extra": {
  2287. "drupal": {
  2288. "version": "6.0.3",
  2289. "datestamp": "1671541877",
  2290. "security-coverage": {
  2291. "status": "covered",
  2292. "message": "Covered by Drupal's security advisory policy"
  2293. }
  2294. }
  2295. },
  2296. "notification-url": "https://packages.drupal.org/8/downloads",
  2297. "license": [
  2298. "GPL-2.0-or-later"
  2299. ],
  2300. "authors": [
  2301. {
  2302. "name": "Mike Keran",
  2303. "homepage": "https://www.drupal.org/u/mikeker"
  2304. },
  2305. {
  2306. "name": "Martin Keereman",
  2307. "homepage": "https://www.drupal.org/u/etroid"
  2308. },
  2309. {
  2310. "name": "Neslee Canil Pinto",
  2311. "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
  2312. },
  2313. {
  2314. "name": "mikeker",
  2315. "homepage": "https://www.drupal.org/user/192273"
  2316. },
  2317. {
  2318. "name": "Neslee Canil Pinto",
  2319. "homepage": "https://www.drupal.org/user/3580850"
  2320. },
  2321. {
  2322. "name": "podarok",
  2323. "homepage": "https://www.drupal.org/user/116002"
  2324. },
  2325. {
  2326. "name": "rlhawk",
  2327. "homepage": "https://www.drupal.org/user/352283"
  2328. }
  2329. ],
  2330. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2331. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2332. "support": {
  2333. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2334. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2335. }
  2336. },
  2337. {
  2338. "name": "drupal/block_class",
  2339. "version": "2.0.11",
  2340. "source": {
  2341. "type": "git",
  2342. "url": "https://git.drupalcode.org/project/block_class.git",
  2343. "reference": "2.0.11"
  2344. },
  2345. "dist": {
  2346. "type": "zip",
  2347. "url": "https://ftp.drupal.org/files/projects/block_class-2.0.11.zip",
  2348. "reference": "2.0.11",
  2349. "shasum": "bd098ef0071b5baca1248c0deaa9bbedc0ddcaf4"
  2350. },
  2351. "require": {
  2352. "drupal/core": "^8 || ^9 || ^10"
  2353. },
  2354. "type": "drupal-module",
  2355. "extra": {
  2356. "drupal": {
  2357. "version": "2.0.11",
  2358. "datestamp": "1672065313",
  2359. "security-coverage": {
  2360. "status": "covered",
  2361. "message": "Covered by Drupal's security advisory policy"
  2362. }
  2363. }
  2364. },
  2365. "notification-url": "https://packages.drupal.org/8/downloads",
  2366. "license": [
  2367. "GPL-2.0-or-later"
  2368. ],
  2369. "authors": [
  2370. {
  2371. "name": "Todd Nienkerk",
  2372. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2373. "role": "Maintainer"
  2374. },
  2375. {
  2376. "name": "Renato Gonçalves (RenatoG)",
  2377. "homepage": "https://www.drupal.org/u/RenatoG",
  2378. "role": "Maintainer"
  2379. },
  2380. {
  2381. "name": "Neslee Canil Pinto",
  2382. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2383. "role": "Maintainer"
  2384. },
  2385. {
  2386. "name": "Aaron Stanush",
  2387. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2388. "role": "Maintainer"
  2389. },
  2390. {
  2391. "name": "David Suissa (DYdave)",
  2392. "homepage": "https://www.drupal.org/u/DYdave",
  2393. "role": "Maintainer"
  2394. },
  2395. {
  2396. "name": "Four Kitchens",
  2397. "homepage": "https://www.drupal.org/user/358502",
  2398. "role": "Maintainer"
  2399. },
  2400. {
  2401. "name": "berenddeboer",
  2402. "homepage": "https://www.drupal.org/u/berenddeboer",
  2403. "role": "Maintainer"
  2404. },
  2405. {
  2406. "name": "elliotttf",
  2407. "homepage": "https://www.drupal.org/u/elliotttf",
  2408. "role": "Maintainer"
  2409. },
  2410. {
  2411. "name": "Michal Minecki (mirzu)",
  2412. "homepage": "https://www.drupal.org/u/mirzu",
  2413. "role": "Maintainer"
  2414. },
  2415. {
  2416. "name": "Patrick Coffey (pcoffey)",
  2417. "homepage": "https://www.drupal.org/u/pcoffey",
  2418. "role": "Maintainer"
  2419. },
  2420. {
  2421. "name": "Taylor Smith (tsmith512)",
  2422. "homepage": "https://www.drupal.org/u/tsmith512",
  2423. "role": "Maintainer"
  2424. }
  2425. ],
  2426. "description": "Allows assigning classes to Blocks.",
  2427. "homepage": "https://www.drupal.org/project/block_class",
  2428. "keywords": [
  2429. "Drupal"
  2430. ],
  2431. "support": {
  2432. "source": "https://git.drupalcode.org/project/block_class",
  2433. "issues": "https://www.drupal.org/project/issues/block_class",
  2434. "irc": "irc://irc.freenode.org/drupal-contribute"
  2435. }
  2436. },
  2437. {
  2438. "name": "drupal/bulkdelete",
  2439. "version": "dev-1.x",
  2440. "source": {
  2441. "type": "git",
  2442. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2443. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  2444. },
  2445. "require": {
  2446. "drupal/core": "^8.7.7 || ^9 || ^10"
  2447. },
  2448. "type": "drupal-module",
  2449. "extra": {
  2450. "branch-alias": {
  2451. "dev-1.x": "1.x-dev"
  2452. },
  2453. "drupal": {
  2454. "version": "8.x-1.x-dev",
  2455. "datestamp": "1655322426",
  2456. "security-coverage": {
  2457. "status": "not-covered",
  2458. "message": "Dev releases are not covered by Drupal security advisories."
  2459. }
  2460. }
  2461. },
  2462. "notification-url": "https://packages.drupal.org/8/downloads",
  2463. "license": [
  2464. "GPL-2.0-or-later"
  2465. ],
  2466. "authors": [
  2467. {
  2468. "name": "Kars-T",
  2469. "homepage": "https://www.drupal.org/user/224499"
  2470. },
  2471. {
  2472. "name": "Rahul Seth",
  2473. "homepage": "https://www.drupal.org/user/2694359"
  2474. },
  2475. {
  2476. "name": "adriancid",
  2477. "homepage": "https://www.drupal.org/user/1962106"
  2478. },
  2479. {
  2480. "name": "robertDouglass",
  2481. "homepage": "https://www.drupal.org/user/5449"
  2482. }
  2483. ],
  2484. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2485. "homepage": "https://www.drupal.org/project/bulkdelete",
  2486. "support": {
  2487. "source": "https://git.drupalcode.org/project/bulkdelete"
  2488. }
  2489. },
  2490. {
  2491. "name": "drupal/conditional_fields",
  2492. "version": "4.0.0-alpha5",
  2493. "source": {
  2494. "type": "git",
  2495. "url": "https://git.drupalcode.org/project/conditional_fields.git",
  2496. "reference": "4.0.0-alpha5"
  2497. },
  2498. "dist": {
  2499. "type": "zip",
  2500. "url": "https://ftp.drupal.org/files/projects/conditional_fields-4.0.0-alpha5.zip",
  2501. "reference": "4.0.0-alpha5",
  2502. "shasum": "f0788b3cc91b390c3ebbdf544ecb2e78c57eb183"
  2503. },
  2504. "require": {
  2505. "drupal/core": "^8 || ^9 || ^10"
  2506. },
  2507. "require-dev": {
  2508. "drupal/paragraphs": "*"
  2509. },
  2510. "type": "drupal-module",
  2511. "extra": {
  2512. "drupal": {
  2513. "version": "4.0.0-alpha5",
  2514. "datestamp": "1695850051",
  2515. "security-coverage": {
  2516. "status": "not-covered",
  2517. "message": "Alpha releases are not covered by Drupal security advisories."
  2518. }
  2519. }
  2520. },
  2521. "notification-url": "https://packages.drupal.org/8/downloads",
  2522. "license": [
  2523. "GPL-2.0-or-later"
  2524. ],
  2525. "authors": [
  2526. {
  2527. "name": "benjifisher",
  2528. "homepage": "https://www.drupal.org/user/683300"
  2529. },
  2530. {
  2531. "name": "colan",
  2532. "homepage": "https://www.drupal.org/user/58704"
  2533. },
  2534. {
  2535. "name": "dqd",
  2536. "homepage": "https://www.drupal.org/user/1001934"
  2537. },
  2538. {
  2539. "name": "ergonlogic",
  2540. "homepage": "https://www.drupal.org/user/368613"
  2541. },
  2542. {
  2543. "name": "geek-merlin",
  2544. "homepage": "https://www.drupal.org/user/229048"
  2545. },
  2546. {
  2547. "name": "heddn",
  2548. "homepage": "https://www.drupal.org/user/1463982"
  2549. },
  2550. {
  2551. "name": "itsekhmistro",
  2552. "homepage": "https://www.drupal.org/user/928152"
  2553. },
  2554. {
  2555. "name": "mparker17",
  2556. "homepage": "https://www.drupal.org/user/536298"
  2557. },
  2558. {
  2559. "name": "OlgaRabodzei",
  2560. "homepage": "https://www.drupal.org/user/3389198"
  2561. },
  2562. {
  2563. "name": "peterpoe",
  2564. "homepage": "https://www.drupal.org/user/55674"
  2565. },
  2566. {
  2567. "name": "saurabh-2k17",
  2568. "homepage": "https://www.drupal.org/user/3622252"
  2569. },
  2570. {
  2571. "name": "szhu",
  2572. "homepage": "https://www.drupal.org/user/3525295"
  2573. },
  2574. {
  2575. "name": "thalles",
  2576. "homepage": "https://www.drupal.org/user/3589086"
  2577. }
  2578. ],
  2579. "description": "Define dependencies between fields based on their states and values.",
  2580. "homepage": "https://www.drupal.org/project/conditional_fields",
  2581. "support": {
  2582. "source": "https://git.drupalcode.org/project/conditional_fields"
  2583. }
  2584. },
  2585. {
  2586. "name": "drupal/config_devel",
  2587. "version": "dev-1.x",
  2588. "source": {
  2589. "type": "git",
  2590. "url": "https://git.drupalcode.org/project/config_devel.git",
  2591. "reference": "d0a98704eb6f9d4bdfe8e91e678b895648bb3c83"
  2592. },
  2593. "require": {
  2594. "drupal/core": "^9.3 || ^10"
  2595. },
  2596. "type": "drupal-module",
  2597. "extra": {
  2598. "branch-alias": {
  2599. "dev-1.x": "1.x-dev"
  2600. },
  2601. "drupal": {
  2602. "version": "8.x-1.8+2-dev",
  2603. "datestamp": "1678264720",
  2604. "security-coverage": {
  2605. "status": "not-covered",
  2606. "message": "Dev releases are not covered by Drupal security advisories."
  2607. }
  2608. }
  2609. },
  2610. "notification-url": "https://packages.drupal.org/8/downloads",
  2611. "license": [
  2612. "GPL-2.0+"
  2613. ],
  2614. "authors": [
  2615. {
  2616. "name": "alexpott",
  2617. "homepage": "https://www.drupal.org/user/157725"
  2618. },
  2619. {
  2620. "name": "benjy",
  2621. "homepage": "https://www.drupal.org/user/1852732"
  2622. },
  2623. {
  2624. "name": "chx",
  2625. "homepage": "https://www.drupal.org/user/9446"
  2626. },
  2627. {
  2628. "name": "joachim",
  2629. "homepage": "https://www.drupal.org/user/107701"
  2630. },
  2631. {
  2632. "name": "nedjo",
  2633. "homepage": "https://www.drupal.org/user/4481"
  2634. },
  2635. {
  2636. "name": "vijaycs85",
  2637. "homepage": "https://www.drupal.org/user/93488"
  2638. }
  2639. ],
  2640. "description": "Helps developers work with configuration.",
  2641. "homepage": "https://www.drupal.org/project/config_devel",
  2642. "support": {
  2643. "source": "https://git.drupalcode.org/project/config_devel"
  2644. }
  2645. },
  2646. {
  2647. "name": "drupal/config_filter",
  2648. "version": "2.6.0",
  2649. "source": {
  2650. "type": "git",
  2651. "url": "https://git.drupalcode.org/project/config_filter.git",
  2652. "reference": "8.x-2.6"
  2653. },
  2654. "dist": {
  2655. "type": "zip",
  2656. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.6.zip",
  2657. "reference": "8.x-2.6",
  2658. "shasum": "fd1a057a402436fc906c63bf0a74722f73b9b155"
  2659. },
  2660. "require": {
  2661. "drupal/core": "^8.8 || ^9 || ^10"
  2662. },
  2663. "conflict": {
  2664. "drush/drush": "<10"
  2665. },
  2666. "suggest": {
  2667. "drupal/config_split": "Split site configuration for different environments."
  2668. },
  2669. "type": "drupal-module",
  2670. "extra": {
  2671. "drupal": {
  2672. "version": "8.x-2.6",
  2673. "datestamp": "1698308577",
  2674. "security-coverage": {
  2675. "status": "covered",
  2676. "message": "Covered by Drupal's security advisory policy"
  2677. }
  2678. }
  2679. },
  2680. "notification-url": "https://packages.drupal.org/8/downloads",
  2681. "license": [
  2682. "GPL-2.0-or-later"
  2683. ],
  2684. "authors": [
  2685. {
  2686. "name": "Fabian Bircher",
  2687. "homepage": "https://www.drupal.org/u/bircher",
  2688. "email": "opensource@fabianbircher.com",
  2689. "role": "Maintainer"
  2690. },
  2691. {
  2692. "name": "Nuvole Web",
  2693. "homepage": "http://nuvole.org",
  2694. "email": "info@nuvole.org",
  2695. "role": "Maintainer"
  2696. },
  2697. {
  2698. "name": "pescetti",
  2699. "homepage": "https://www.drupal.org/user/436244"
  2700. }
  2701. ],
  2702. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2703. "homepage": "https://www.drupal.org/project/config_filter",
  2704. "keywords": [
  2705. "Drupal",
  2706. "configuration",
  2707. "configuration management"
  2708. ],
  2709. "support": {
  2710. "source": "https://git.drupalcode.org/project/config_filter",
  2711. "issues": "https://www.drupal.org/project/issues/config_filter",
  2712. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2713. }
  2714. },
  2715. {
  2716. "name": "drupal/config_ignore",
  2717. "version": "2.4.0",
  2718. "source": {
  2719. "type": "git",
  2720. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2721. "reference": "8.x-2.4"
  2722. },
  2723. "dist": {
  2724. "type": "zip",
  2725. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.4.zip",
  2726. "reference": "8.x-2.4",
  2727. "shasum": "e0e45dde2d6927c5d26de59f352792fb6cf26554"
  2728. },
  2729. "require": {
  2730. "drupal/config_filter": "^1 || ^2",
  2731. "drupal/core": "^8 || ^9 || ^10"
  2732. },
  2733. "type": "drupal-module",
  2734. "extra": {
  2735. "drupal": {
  2736. "version": "8.x-2.4",
  2737. "datestamp": "1676045435",
  2738. "security-coverage": {
  2739. "status": "covered",
  2740. "message": "Covered by Drupal's security advisory policy"
  2741. }
  2742. }
  2743. },
  2744. "notification-url": "https://packages.drupal.org/8/downloads",
  2745. "license": [
  2746. "GPL-2.0-or-later"
  2747. ],
  2748. "authors": [
  2749. {
  2750. "name": "Tommy Lynge Jørgensen",
  2751. "homepage": "https://www.drupal.org/u/tlyngej",
  2752. "email": "tlyngej@gmail.com",
  2753. "role": "Maintainer"
  2754. },
  2755. {
  2756. "name": "Fabian Bircher",
  2757. "homepage": "https://www.drupal.org/u/bircher",
  2758. "role": "Maintainer"
  2759. },
  2760. {
  2761. "name": "tlyngej",
  2762. "homepage": "https://www.drupal.org/user/413139"
  2763. }
  2764. ],
  2765. "description": "Ignore certain configuration during import.",
  2766. "homepage": "http://drupal.org/project/config_ignore",
  2767. "support": {
  2768. "source": "https://git.drupalcode.org/project/config_ignore",
  2769. "issues": "https://drupal.org/project/config_ignore",
  2770. "irc": "irc://irc.freenode.org/drupal-contribute"
  2771. }
  2772. },
  2773. {
  2774. "name": "drupal/config_pages",
  2775. "version": "2.15.0",
  2776. "source": {
  2777. "type": "git",
  2778. "url": "https://git.drupalcode.org/project/config_pages.git",
  2779. "reference": "8.x-2.15"
  2780. },
  2781. "dist": {
  2782. "type": "zip",
  2783. "url": "https://ftp.drupal.org/files/projects/config_pages-8.x-2.15.zip",
  2784. "reference": "8.x-2.15",
  2785. "shasum": "55d4a898c6df03295e26ce07930c6b7d06183287"
  2786. },
  2787. "require": {
  2788. "drupal/core": "^8.5 | ^9 || ^10"
  2789. },
  2790. "type": "drupal-module",
  2791. "extra": {
  2792. "drupal": {
  2793. "version": "8.x-2.15",
  2794. "datestamp": "1688847929",
  2795. "security-coverage": {
  2796. "status": "covered",
  2797. "message": "Covered by Drupal's security advisory policy"
  2798. }
  2799. },
  2800. "drush": {
  2801. "services": {
  2802. "drush.services.yml": "^9"
  2803. }
  2804. }
  2805. },
  2806. "notification-url": "https://packages.drupal.org/8/downloads",
  2807. "license": [
  2808. "GPL-2.0-or-later"
  2809. ],
  2810. "authors": [
  2811. {
  2812. "name": "m.krestnicov",
  2813. "homepage": "https://www.drupal.org/user/3193903"
  2814. },
  2815. {
  2816. "name": "Qwaygon",
  2817. "homepage": "https://www.drupal.org/user/636624"
  2818. },
  2819. {
  2820. "name": "shumer",
  2821. "homepage": "https://www.drupal.org/user/2297432"
  2822. }
  2823. ],
  2824. "description": "ConfigPages module",
  2825. "homepage": "http://drupal.org/project/config_pages",
  2826. "keywords": [
  2827. "Drupal"
  2828. ],
  2829. "support": {
  2830. "source": "http://cgit.drupalcode.org/config_pages",
  2831. "issues": "http://drupal.org/project/issues/config_pages"
  2832. }
  2833. },
  2834. {
  2835. "name": "drupal/config_update",
  2836. "version": "2.0.0-alpha3",
  2837. "source": {
  2838. "type": "git",
  2839. "url": "https://git.drupalcode.org/project/config_update.git",
  2840. "reference": "2.0.0-alpha3"
  2841. },
  2842. "dist": {
  2843. "type": "zip",
  2844. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha3.zip",
  2845. "reference": "2.0.0-alpha3",
  2846. "shasum": "c35e81e8fb77efdff5ddca3a87116ea0c522a7e2"
  2847. },
  2848. "require": {
  2849. "drupal/core": "^9.4 || ^10"
  2850. },
  2851. "type": "drupal-module",
  2852. "extra": {
  2853. "drupal": {
  2854. "version": "2.0.0-alpha3",
  2855. "datestamp": "1683807608",
  2856. "security-coverage": {
  2857. "status": "not-covered",
  2858. "message": "Alpha releases are not covered by Drupal security advisories."
  2859. }
  2860. }
  2861. },
  2862. "notification-url": "https://packages.drupal.org/8/downloads",
  2863. "license": [
  2864. "GPL-2.0-or-later"
  2865. ],
  2866. "authors": [
  2867. {
  2868. "name": "codebymikey",
  2869. "homepage": "https://www.drupal.org/user/3573206"
  2870. },
  2871. {
  2872. "name": "Pasqualle",
  2873. "homepage": "https://www.drupal.org/user/80733"
  2874. }
  2875. ],
  2876. "description": "Provides basic revert and update functionality for other modules.",
  2877. "homepage": "https://www.drupal.org/project/config_update",
  2878. "support": {
  2879. "source": "https://git.drupalcode.org/project/config_update"
  2880. }
  2881. },
  2882. {
  2883. "name": "drupal/content_as_config",
  2884. "version": "1.0.10",
  2885. "source": {
  2886. "type": "git",
  2887. "url": "https://git.drupalcode.org/project/content_as_config.git",
  2888. "reference": "1.0.10"
  2889. },
  2890. "dist": {
  2891. "type": "zip",
  2892. "url": "https://ftp.drupal.org/files/projects/content_as_config-1.0.10.zip",
  2893. "reference": "1.0.10",
  2894. "shasum": "3ed5dd56486a98b6832eb6fea257792d5af145b4"
  2895. },
  2896. "require": {
  2897. "drupal/core": "^9.3 || ^10"
  2898. },
  2899. "conflict": {
  2900. "drupal/structure_sync": "*"
  2901. },
  2902. "require-dev": {
  2903. "drupal/feeds": "*",
  2904. "drupal/group": "*"
  2905. },
  2906. "suggest": {
  2907. "drupal/markdown": "Render module help more elegantly."
  2908. },
  2909. "type": "drupal-module",
  2910. "extra": {
  2911. "drupal": {
  2912. "version": "1.0.10",
  2913. "datestamp": "1665066743",
  2914. "security-coverage": {
  2915. "status": "covered",
  2916. "message": "Covered by Drupal's security advisory policy"
  2917. }
  2918. },
  2919. "drush": {
  2920. "services": {
  2921. "drush.services.yml": "^9"
  2922. }
  2923. }
  2924. },
  2925. "notification-url": "https://packages.drupal.org/8/downloads",
  2926. "license": [
  2927. "GPL-2.0-or-later"
  2928. ],
  2929. "authors": [
  2930. {
  2931. "name": "Daniel Johnson (daniel_j)",
  2932. "homepage": "https://www.drupal.org/u/daniel_j",
  2933. "role": "Maintainer"
  2934. }
  2935. ],
  2936. "description": "Allows content entities to be exported/imported as configuration.",
  2937. "homepage": "https://drupal.org/project/content_as_config",
  2938. "keywords": [
  2939. "Configuration",
  2940. "Drupal"
  2941. ],
  2942. "support": {
  2943. "source": "https://git.drupalcode.org/project/content_as_config",
  2944. "issues": "https://www.drupal.org/project/issues/content_as_config"
  2945. }
  2946. },
  2947. {
  2948. "name": "drupal/content_lock",
  2949. "version": "2.3.0",
  2950. "source": {
  2951. "type": "git",
  2952. "url": "https://git.drupalcode.org/project/content_lock.git",
  2953. "reference": "8.x-2.3"
  2954. },
  2955. "dist": {
  2956. "type": "zip",
  2957. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.3.zip",
  2958. "reference": "8.x-2.3",
  2959. "shasum": "0e8343f82330899baef65aa85d9994154e29506f"
  2960. },
  2961. "require": {
  2962. "drupal/core": "^9.0 || ^10.0"
  2963. },
  2964. "type": "drupal-module",
  2965. "extra": {
  2966. "drupal": {
  2967. "version": "8.x-2.3",
  2968. "datestamp": "1668427342",
  2969. "security-coverage": {
  2970. "status": "covered",
  2971. "message": "Covered by Drupal's security advisory policy"
  2972. }
  2973. }
  2974. },
  2975. "notification-url": "https://packages.drupal.org/8/downloads",
  2976. "license": [
  2977. "GPL-2.0-or-later"
  2978. ],
  2979. "authors": [
  2980. {
  2981. "name": "alexpott",
  2982. "homepage": "https://www.drupal.org/user/157725"
  2983. },
  2984. {
  2985. "name": "chr.fritsch",
  2986. "homepage": "https://www.drupal.org/user/2103716"
  2987. },
  2988. {
  2989. "name": "daniel.bosen",
  2990. "homepage": "https://www.drupal.org/user/404865"
  2991. },
  2992. {
  2993. "name": "ergonlogic",
  2994. "homepage": "https://www.drupal.org/user/368613"
  2995. },
  2996. {
  2997. "name": "mfb",
  2998. "homepage": "https://www.drupal.org/user/12302"
  2999. },
  3000. {
  3001. "name": "pandaski",
  3002. "homepage": "https://www.drupal.org/user/1987218"
  3003. },
  3004. {
  3005. "name": "volkerk",
  3006. "homepage": "https://www.drupal.org/user/57527"
  3007. }
  3008. ],
  3009. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  3010. "homepage": "https://www.drupal.org/project/content_lock",
  3011. "support": {
  3012. "source": "https://git.drupalcode.org/project/content_lock"
  3013. }
  3014. },
  3015. {
  3016. "name": "drupal/context",
  3017. "version": "5.0.0-rc1",
  3018. "source": {
  3019. "type": "git",
  3020. "url": "https://git.drupalcode.org/project/context.git",
  3021. "reference": "5.0.0-rc1"
  3022. },
  3023. "dist": {
  3024. "type": "zip",
  3025. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc1.zip",
  3026. "reference": "5.0.0-rc1",
  3027. "shasum": "ae1549bc5e5c75c0c6799b7b737d7391cfc5be73"
  3028. },
  3029. "require": {
  3030. "drupal/core": "^9.3 || ^10"
  3031. },
  3032. "type": "drupal-module",
  3033. "extra": {
  3034. "drupal": {
  3035. "version": "5.0.0-rc1",
  3036. "datestamp": "1677054769",
  3037. "security-coverage": {
  3038. "status": "not-covered",
  3039. "message": "RC releases are not covered by Drupal security advisories."
  3040. }
  3041. }
  3042. },
  3043. "notification-url": "https://packages.drupal.org/8/downloads",
  3044. "license": [
  3045. "MIT"
  3046. ],
  3047. "authors": [
  3048. {
  3049. "name": "Christoffer Palm",
  3050. "homepage": "http://www.oddhill.se/",
  3051. "email": "christoffer.palm@oddhill.se",
  3052. "role": "Developer"
  3053. },
  3054. {
  3055. "name": "boshtian",
  3056. "homepage": "https://www.drupal.org/user/1773456"
  3057. },
  3058. {
  3059. "name": "colan",
  3060. "homepage": "https://www.drupal.org/user/58704"
  3061. },
  3062. {
  3063. "name": "emanaton",
  3064. "homepage": "https://www.drupal.org/user/120853"
  3065. },
  3066. {
  3067. "name": "febbraro",
  3068. "homepage": "https://www.drupal.org/user/43670"
  3069. },
  3070. {
  3071. "name": "fizk",
  3072. "homepage": "https://www.drupal.org/user/473174"
  3073. },
  3074. {
  3075. "name": "hass",
  3076. "homepage": "https://www.drupal.org/user/85918"
  3077. },
  3078. {
  3079. "name": "hefox",
  3080. "homepage": "https://www.drupal.org/user/426416"
  3081. },
  3082. {
  3083. "name": "jmiccolis",
  3084. "homepage": "https://www.drupal.org/user/31731"
  3085. },
  3086. {
  3087. "name": "Kristen Pol",
  3088. "homepage": "https://www.drupal.org/user/8389"
  3089. },
  3090. {
  3091. "name": "nedjo",
  3092. "homepage": "https://www.drupal.org/user/4481"
  3093. },
  3094. {
  3095. "name": "NormySan",
  3096. "homepage": "https://www.drupal.org/user/112352"
  3097. },
  3098. {
  3099. "name": "patricksettle",
  3100. "homepage": "https://www.drupal.org/user/26618"
  3101. },
  3102. {
  3103. "name": "paulocs",
  3104. "homepage": "https://www.drupal.org/user/3640109"
  3105. },
  3106. {
  3107. "name": "Steven Jones",
  3108. "homepage": "https://www.drupal.org/user/99644"
  3109. },
  3110. {
  3111. "name": "tekante",
  3112. "homepage": "https://www.drupal.org/user/640024"
  3113. },
  3114. {
  3115. "name": "yhahn",
  3116. "homepage": "https://www.drupal.org/user/264833"
  3117. }
  3118. ],
  3119. "description": "Manage contextual conditions and reactions for different portions of your site.",
  3120. "homepage": "https://github.com/oddhill/context",
  3121. "keywords": [
  3122. "Drupal",
  3123. "block",
  3124. "conditions",
  3125. "context",
  3126. "visibility"
  3127. ],
  3128. "support": {
  3129. "source": "https://github.com/oddhill/context",
  3130. "issues": "https://github.com/oddhill/context/issues",
  3131. "docs": "https://github.com/oddhill/context"
  3132. }
  3133. },
  3134. {
  3135. "name": "drupal/core",
  3136. "version": "10.1.6",
  3137. "source": {
  3138. "type": "git",
  3139. "url": "https://github.com/drupal/core.git",
  3140. "reference": "33695caf467e3e1e8c75d42215df57bee31be9ec"
  3141. },
  3142. "dist": {
  3143. "type": "zip",
  3144. "url": "https://api.github.com/repos/drupal/core/zipball/33695caf467e3e1e8c75d42215df57bee31be9ec",
  3145. "reference": "33695caf467e3e1e8c75d42215df57bee31be9ec",
  3146. "shasum": ""
  3147. },
  3148. "require": {
  3149. "asm89/stack-cors": "^2.1",
  3150. "composer-runtime-api": "^2.1",
  3151. "composer/semver": "^3.3",
  3152. "doctrine/annotations": "^1.14",
  3153. "egulias/email-validator": "^3.2.1|^4.0",
  3154. "ext-date": "*",
  3155. "ext-dom": "*",
  3156. "ext-filter": "*",
  3157. "ext-gd": "*",
  3158. "ext-hash": "*",
  3159. "ext-json": "*",
  3160. "ext-pcre": "*",
  3161. "ext-pdo": "*",
  3162. "ext-session": "*",
  3163. "ext-simplexml": "*",
  3164. "ext-spl": "*",
  3165. "ext-tokenizer": "*",
  3166. "ext-xml": "*",
  3167. "guzzlehttp/guzzle": "^7.5",
  3168. "guzzlehttp/psr7": "^2.4.5",
  3169. "masterminds/html5": "^2.7",
  3170. "mck89/peast": "^1.14",
  3171. "pear/archive_tar": "^1.4.14",
  3172. "php": ">=8.1.0",
  3173. "psr/log": "^3.0",
  3174. "sebastian/diff": "^4",
  3175. "symfony/console": "^6.3",
  3176. "symfony/dependency-injection": "^6.3",
  3177. "symfony/event-dispatcher": "^6.3",
  3178. "symfony/http-foundation": "^6.3",
  3179. "symfony/http-kernel": "^6.3",
  3180. "symfony/mime": "^6.3",
  3181. "symfony/polyfill-iconv": "^1.26",
  3182. "symfony/process": "^6.3",
  3183. "symfony/psr-http-message-bridge": "^2.1",
  3184. "symfony/routing": "^6.3",
  3185. "symfony/serializer": "^6.3",
  3186. "symfony/validator": "^6.3",
  3187. "symfony/yaml": "^6.3",
  3188. "twig/twig": "^3.5.0"
  3189. },
  3190. "conflict": {
  3191. "drush/drush": "<8.1.10"
  3192. },
  3193. "replace": {
  3194. "drupal/core-annotation": "self.version",
  3195. "drupal/core-assertion": "self.version",
  3196. "drupal/core-class-finder": "self.version",
  3197. "drupal/core-datetime": "self.version",
  3198. "drupal/core-dependency-injection": "self.version",
  3199. "drupal/core-diff": "self.version",
  3200. "drupal/core-discovery": "self.version",
  3201. "drupal/core-event-dispatcher": "self.version",
  3202. "drupal/core-file-cache": "self.version",
  3203. "drupal/core-file-security": "self.version",
  3204. "drupal/core-filesystem": "self.version",
  3205. "drupal/core-front-matter": "self.version",
  3206. "drupal/core-gettext": "self.version",
  3207. "drupal/core-graph": "self.version",
  3208. "drupal/core-http-foundation": "self.version",
  3209. "drupal/core-php-storage": "self.version",
  3210. "drupal/core-plugin": "self.version",
  3211. "drupal/core-proxy-builder": "self.version",
  3212. "drupal/core-render": "self.version",
  3213. "drupal/core-serialization": "self.version",
  3214. "drupal/core-transliteration": "self.version",
  3215. "drupal/core-utility": "self.version",
  3216. "drupal/core-uuid": "self.version",
  3217. "drupal/core-version": "self.version"
  3218. },
  3219. "suggest": {
  3220. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  3221. },
  3222. "type": "drupal-core",
  3223. "extra": {
  3224. "drupal-scaffold": {
  3225. "file-mapping": {
  3226. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3227. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3228. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3229. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3230. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3231. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3232. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3233. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3234. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3235. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3236. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  3237. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3238. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3239. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3240. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3241. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3242. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3243. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3244. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3245. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3246. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3247. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3248. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3249. }
  3250. }
  3251. },
  3252. "autoload": {
  3253. "files": [
  3254. "includes/bootstrap.inc"
  3255. ],
  3256. "psr-4": {
  3257. "Drupal\\Core\\": "lib/Drupal/Core",
  3258. "Drupal\\Component\\": "lib/Drupal/Component"
  3259. },
  3260. "classmap": [
  3261. "lib/Drupal.php",
  3262. "lib/Drupal/Component/DependencyInjection/Container.php",
  3263. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3264. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3265. "lib/Drupal/Component/Utility/Timer.php",
  3266. "lib/Drupal/Component/Utility/Unicode.php",
  3267. "lib/Drupal/Core/Cache/Cache.php",
  3268. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3269. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3270. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3271. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3272. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3273. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3274. "lib/Drupal/Core/Database/Connection.php",
  3275. "lib/Drupal/Core/Database/Database.php",
  3276. "lib/Drupal/Core/Database/StatementInterface.php",
  3277. "lib/Drupal/Core/DependencyInjection/Container.php",
  3278. "lib/Drupal/Core/DrupalKernel.php",
  3279. "lib/Drupal/Core/DrupalKernelInterface.php",
  3280. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3281. "lib/Drupal/Core/Site/Settings.php"
  3282. ]
  3283. },
  3284. "notification-url": "https://packagist.org/downloads/",
  3285. "license": [
  3286. "GPL-2.0-or-later"
  3287. ],
  3288. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3289. "support": {
  3290. "source": "https://github.com/drupal/core/tree/10.1.6"
  3291. },
  3292. "time": "2023-11-01T11:59:20+00:00"
  3293. },
  3294. {
  3295. "name": "drupal/core-composer-scaffold",
  3296. "version": "10.1.6",
  3297. "source": {
  3298. "type": "git",
  3299. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3300. "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51"
  3301. },
  3302. "dist": {
  3303. "type": "zip",
  3304. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51",
  3305. "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51",
  3306. "shasum": ""
  3307. },
  3308. "require": {
  3309. "composer-plugin-api": "^2",
  3310. "php": ">=7.3.0"
  3311. },
  3312. "conflict": {
  3313. "drupal-composer/drupal-scaffold": "*"
  3314. },
  3315. "require-dev": {
  3316. "composer/composer": "^1.8@stable"
  3317. },
  3318. "type": "composer-plugin",
  3319. "extra": {
  3320. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3321. "branch-alias": {
  3322. "dev-master": "1.0.x-dev"
  3323. }
  3324. },
  3325. "autoload": {
  3326. "psr-4": {
  3327. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3328. }
  3329. },
  3330. "notification-url": "https://packagist.org/downloads/",
  3331. "license": [
  3332. "GPL-2.0-or-later"
  3333. ],
  3334. "description": "A flexible Composer project scaffold builder.",
  3335. "homepage": "https://www.drupal.org/project/drupal",
  3336. "keywords": [
  3337. "drupal"
  3338. ],
  3339. "support": {
  3340. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.1.6"
  3341. },
  3342. "time": "2023-04-30T16:15:32+00:00"
  3343. },
  3344. {
  3345. "name": "drupal/core-project-message",
  3346. "version": "10.1.6",
  3347. "source": {
  3348. "type": "git",
  3349. "url": "https://github.com/drupal/core-project-message.git",
  3350. "reference": "59b4475f01debd9a0f173938a06189982c8ebffd"
  3351. },
  3352. "dist": {
  3353. "type": "zip",
  3354. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/59b4475f01debd9a0f173938a06189982c8ebffd",
  3355. "reference": "59b4475f01debd9a0f173938a06189982c8ebffd",
  3356. "shasum": ""
  3357. },
  3358. "require": {
  3359. "composer-plugin-api": "^2",
  3360. "php": ">=7.3.0"
  3361. },
  3362. "type": "composer-plugin",
  3363. "extra": {
  3364. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3365. },
  3366. "autoload": {
  3367. "psr-4": {
  3368. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3369. }
  3370. },
  3371. "notification-url": "https://packagist.org/downloads/",
  3372. "license": [
  3373. "GPL-2.0-or-later"
  3374. ],
  3375. "description": "Adds a message after Composer installation.",
  3376. "homepage": "https://www.drupal.org/project/drupal",
  3377. "keywords": [
  3378. "drupal"
  3379. ],
  3380. "support": {
  3381. "source": "https://github.com/drupal/core-project-message/tree/10.1.6"
  3382. },
  3383. "time": "2022-07-01T08:32:39+00:00"
  3384. },
  3385. {
  3386. "name": "drupal/core-recommended",
  3387. "version": "10.1.6",
  3388. "source": {
  3389. "type": "git",
  3390. "url": "https://github.com/drupal/core-recommended.git",
  3391. "reference": "13f5968854fe8bc02e659d8a4facc04a1a576ce5"
  3392. },
  3393. "dist": {
  3394. "type": "zip",
  3395. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/13f5968854fe8bc02e659d8a4facc04a1a576ce5",
  3396. "reference": "13f5968854fe8bc02e659d8a4facc04a1a576ce5",
  3397. "shasum": ""
  3398. },
  3399. "require": {
  3400. "asm89/stack-cors": "~v2.1.1",
  3401. "composer/semver": "~3.3.2",
  3402. "doctrine/annotations": "~1.14.3",
  3403. "doctrine/deprecations": "~v1.1.1",
  3404. "doctrine/lexer": "~2.1.0",
  3405. "drupal/core": "10.1.6",
  3406. "egulias/email-validator": "~4.0.1",
  3407. "guzzlehttp/guzzle": "~7.7.0",
  3408. "guzzlehttp/psr7": "~2.5.0",
  3409. "masterminds/html5": "~2.8.0",
  3410. "mck89/peast": "~v1.15.4",
  3411. "pear/archive_tar": "~1.4.14",
  3412. "pear/console_getopt": "~v1.4.3",
  3413. "pear/pear-core-minimal": "~v1.10.13",
  3414. "pear/pear_exception": "~v1.0.2",
  3415. "psr/cache": "~3.0.0",
  3416. "psr/container": "~2.0.2",
  3417. "psr/event-dispatcher": "~1.0.0",
  3418. "psr/http-client": "~1.0.2",
  3419. "psr/http-factory": "~1.0.2",
  3420. "psr/log": "~3.0.0",
  3421. "ralouphie/getallheaders": "~3.0.3",
  3422. "sebastian/diff": "~4.0.5",
  3423. "symfony/console": "~v6.3.0",
  3424. "symfony/dependency-injection": "~v6.3.0",
  3425. "symfony/deprecation-contracts": "~v3.3.0",
  3426. "symfony/error-handler": "~v6.3.0",
  3427. "symfony/event-dispatcher": "~v6.3.0",
  3428. "symfony/event-dispatcher-contracts": "~v3.3.0",
  3429. "symfony/http-foundation": "~v6.3.0",
  3430. "symfony/http-kernel": "~v6.3.0",
  3431. "symfony/mime": "~v6.3.0",
  3432. "symfony/polyfill-ctype": "~v1.27.0",
  3433. "symfony/polyfill-iconv": "~v1.27.0",
  3434. "symfony/polyfill-intl-grapheme": "~v1.27.0",
  3435. "symfony/polyfill-intl-idn": "~v1.27.0",
  3436. "symfony/polyfill-intl-normalizer": "~v1.27.0",
  3437. "symfony/polyfill-mbstring": "~v1.27.0",
  3438. "symfony/polyfill-php83": "~v1.27.0",
  3439. "symfony/process": "~v6.3.0",
  3440. "symfony/psr-http-message-bridge": "~v2.2.0",
  3441. "symfony/routing": "~v6.3.0",
  3442. "symfony/serializer": "~v6.3.0",
  3443. "symfony/service-contracts": "~v3.3.0",
  3444. "symfony/string": "~v6.3.0",
  3445. "symfony/translation-contracts": "~v3.3.0",
  3446. "symfony/validator": "~v6.3.0",
  3447. "symfony/var-dumper": "~v6.3.0",
  3448. "symfony/var-exporter": "~v6.3.0",
  3449. "symfony/yaml": "~v6.3.0",
  3450. "twig/twig": "~v3.6.0"
  3451. },
  3452. "conflict": {
  3453. "webflo/drupal-core-strict": "*"
  3454. },
  3455. "type": "metapackage",
  3456. "notification-url": "https://packagist.org/downloads/",
  3457. "license": [
  3458. "GPL-2.0-or-later"
  3459. ],
  3460. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3461. "support": {
  3462. "source": "https://github.com/drupal/core-recommended/tree/10.1.6"
  3463. },
  3464. "time": "2023-11-01T11:59:20+00:00"
  3465. },
  3466. {
  3467. "name": "drupal/cshs",
  3468. "version": "4.0.0",
  3469. "source": {
  3470. "type": "git",
  3471. "url": "https://git.drupalcode.org/project/cshs.git",
  3472. "reference": "4.0.0"
  3473. },
  3474. "dist": {
  3475. "type": "zip",
  3476. "url": "https://ftp.drupal.org/files/projects/cshs-4.0.0.zip",
  3477. "reference": "4.0.0",
  3478. "shasum": "ebcd3932481aba4004f4e2078038cdc7293738b0"
  3479. },
  3480. "require": {
  3481. "drupal/core": "^9 || ^10",
  3482. "php": ">=8.0"
  3483. },
  3484. "type": "drupal-module",
  3485. "extra": {
  3486. "drupal": {
  3487. "version": "4.0.0",
  3488. "datestamp": "1668457722",
  3489. "security-coverage": {
  3490. "status": "covered",
  3491. "message": "Covered by Drupal's security advisory policy"
  3492. }
  3493. }
  3494. },
  3495. "notification-url": "https://packages.drupal.org/8/downloads",
  3496. "license": [
  3497. "GPL-2.0-or-later"
  3498. ],
  3499. "authors": [
  3500. {
  3501. "name": "Walter Jenner",
  3502. "homepage": "https://drupal.org/u/valderama"
  3503. },
  3504. {
  3505. "name": "Sergii Bondarenko",
  3506. "homepage": "https://drupal.org/u/BR0kEN",
  3507. "email": "sb@firstvector.org"
  3508. },
  3509. {
  3510. "name": "Daneel Cruz",
  3511. "homepage": "https://drupal.org/u/daneelcm"
  3512. },
  3513. {
  3514. "name": "Purushotam Rai",
  3515. "homepage": "https://drupal.org/u/purushotam.rai"
  3516. }
  3517. ],
  3518. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  3519. "homepage": "https://www.drupal.org/project/cshs",
  3520. "keywords": [
  3521. "client-side-select",
  3522. "hierarchical-select",
  3523. "module",
  3524. "select",
  3525. "taxonomy"
  3526. ],
  3527. "support": {
  3528. "source": "https://git.drupalcode.org/project/cshs",
  3529. "issues": "https://www.drupal.org/project/issues/cshs"
  3530. }
  3531. },
  3532. {
  3533. "name": "drupal/ctools",
  3534. "version": "3.14.0",
  3535. "source": {
  3536. "type": "git",
  3537. "url": "https://git.drupalcode.org/project/ctools.git",
  3538. "reference": "8.x-3.14"
  3539. },
  3540. "dist": {
  3541. "type": "zip",
  3542. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.14.zip",
  3543. "reference": "8.x-3.14",
  3544. "shasum": "8895a8e47199b458013bc153ceafa0b1495f33c1"
  3545. },
  3546. "require": {
  3547. "drupal/core": "^9.3 || ^10"
  3548. },
  3549. "type": "drupal-module",
  3550. "extra": {
  3551. "drupal": {
  3552. "version": "8.x-3.14",
  3553. "datestamp": "1684299793",
  3554. "security-coverage": {
  3555. "status": "covered",
  3556. "message": "Covered by Drupal's security advisory policy"
  3557. }
  3558. },
  3559. "branch-alias": {
  3560. "dev-8.x-3.x": "3.x-dev"
  3561. }
  3562. },
  3563. "notification-url": "https://packages.drupal.org/8/downloads",
  3564. "license": [
  3565. "GPL-2.0-or-later"
  3566. ],
  3567. "authors": [
  3568. {
  3569. "name": "Kris Vanderwater (EclipseGc)",
  3570. "homepage": "https://www.drupal.org/u/eclipsegc",
  3571. "role": "Maintainer"
  3572. },
  3573. {
  3574. "name": "Jakob Perry (japerry)",
  3575. "homepage": "https://www.drupal.org/u/japerry",
  3576. "role": "Maintainer"
  3577. },
  3578. {
  3579. "name": "Tim Plunkett (tim.plunkett)",
  3580. "homepage": "https://www.drupal.org/u/timplunkett",
  3581. "role": "Maintainer"
  3582. },
  3583. {
  3584. "name": "James Gilliland (neclimdul)",
  3585. "homepage": "https://www.drupal.org/u/neclimdul",
  3586. "role": "Maintainer"
  3587. },
  3588. {
  3589. "name": "Daniel Wehner (dawehner)",
  3590. "homepage": "https://www.drupal.org/u/dawehner",
  3591. "role": "Maintainer"
  3592. },
  3593. {
  3594. "name": "joelpittet",
  3595. "homepage": "https://www.drupal.org/user/160302"
  3596. },
  3597. {
  3598. "name": "merlinofchaos",
  3599. "homepage": "https://www.drupal.org/user/26979"
  3600. },
  3601. {
  3602. "name": "neclimdul",
  3603. "homepage": "https://www.drupal.org/user/48673"
  3604. },
  3605. {
  3606. "name": "sdboyer",
  3607. "homepage": "https://www.drupal.org/user/146719"
  3608. },
  3609. {
  3610. "name": "sun",
  3611. "homepage": "https://www.drupal.org/user/54136"
  3612. },
  3613. {
  3614. "name": "tim.plunkett",
  3615. "homepage": "https://www.drupal.org/user/241634"
  3616. }
  3617. ],
  3618. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3619. "homepage": "https://www.drupal.org/project/ctools",
  3620. "support": {
  3621. "source": "https://git.drupalcode.org/project/ctools",
  3622. "issues": "https://www.drupal.org/project/issues/ctools"
  3623. }
  3624. },
  3625. {
  3626. "name": "drupal/date_range_formatter",
  3627. "version": "dev-9.0.x",
  3628. "source": {
  3629. "type": "git",
  3630. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3631. "reference": "8808a9c324c781b4a7cae9ea5f16017a6b8f63f7"
  3632. },
  3633. "require": {
  3634. "drupal/core": "^8 || ^9 || ^10"
  3635. },
  3636. "type": "drupal-module",
  3637. "extra": {
  3638. "branch-alias": {
  3639. "dev-9.0.x": "9.0.x-dev"
  3640. },
  3641. "drupal": {
  3642. "version": "9.0.x-dev",
  3643. "datestamp": "1661511425",
  3644. "security-coverage": {
  3645. "status": "not-covered",
  3646. "message": "Dev releases are not covered by Drupal security advisories."
  3647. }
  3648. }
  3649. },
  3650. "notification-url": "https://packages.drupal.org/8/downloads",
  3651. "license": [
  3652. "GPL-2.0-or-later"
  3653. ],
  3654. "authors": [
  3655. {
  3656. "name": "maximpodorov",
  3657. "homepage": "https://www.drupal.org/user/515310"
  3658. },
  3659. {
  3660. "name": "sudishth",
  3661. "homepage": "https://www.drupal.org/user/1440562"
  3662. }
  3663. ],
  3664. "description": "Formats date ranges.",
  3665. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3666. "support": {
  3667. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3668. }
  3669. },
  3670. {
  3671. "name": "drupal/devel",
  3672. "version": "5.1.2",
  3673. "source": {
  3674. "type": "git",
  3675. "url": "https://git.drupalcode.org/project/devel.git",
  3676. "reference": "5.1.2"
  3677. },
  3678. "dist": {
  3679. "type": "zip",
  3680. "url": "https://ftp.drupal.org/files/projects/devel-5.1.2.zip",
  3681. "reference": "5.1.2",
  3682. "shasum": "9b35e38bf2043bf87f88585b3d9100f38da8f07f"
  3683. },
  3684. "require": {
  3685. "doctrine/common": "^2.7 || ^3.4",
  3686. "drupal/core": "^9 || ^10",
  3687. "php": ">=7.4",
  3688. "symfony/var-dumper": "^4 || ^5 || ^6"
  3689. },
  3690. "conflict": {
  3691. "kint-php/kint": "<3"
  3692. },
  3693. "require-dev": {
  3694. "drush/drush": "^11"
  3695. },
  3696. "suggest": {
  3697. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3698. },
  3699. "type": "drupal-module",
  3700. "extra": {
  3701. "drupal": {
  3702. "version": "5.1.2",
  3703. "datestamp": "1686161028",
  3704. "security-coverage": {
  3705. "status": "covered",
  3706. "message": "Covered by Drupal's security advisory policy"
  3707. }
  3708. },
  3709. "drush": {
  3710. "services": {
  3711. "drush.services.yml": "^9 || ^10 || ^11"
  3712. }
  3713. }
  3714. },
  3715. "notification-url": "https://packages.drupal.org/8/downloads",
  3716. "license": [
  3717. "GPL-2.0-or-later"
  3718. ],
  3719. "authors": [
  3720. {
  3721. "name": "drupalspoons",
  3722. "homepage": "https://www.drupal.org/user/3647684"
  3723. },
  3724. {
  3725. "name": "moshe weitzman",
  3726. "homepage": "https://www.drupal.org/user/23"
  3727. }
  3728. ],
  3729. "description": "Various blocks, pages, and functions for developers.",
  3730. "homepage": "https://www.drupal.org/project/devel",
  3731. "support": {
  3732. "source": "https://gitlab.com/drupalspoons/devel",
  3733. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3734. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3735. }
  3736. },
  3737. {
  3738. "name": "drupal/devel_kint_extras",
  3739. "version": "1.1.0",
  3740. "source": {
  3741. "type": "git",
  3742. "url": "https://git.drupalcode.org/project/devel_kint_extras.git",
  3743. "reference": "1.1.0"
  3744. },
  3745. "dist": {
  3746. "type": "zip",
  3747. "url": "https://ftp.drupal.org/files/projects/devel_kint_extras-1.1.0.zip",
  3748. "reference": "1.1.0",
  3749. "shasum": "c9f485f6f2562710d2bd2c62f0073aa0049f5c8c"
  3750. },
  3751. "require": {
  3752. "drupal/core": "^9 || ^10",
  3753. "drupal/devel": "^4.0 || ^5.0",
  3754. "kint-php/kint": "^3.3 || ^4.0"
  3755. },
  3756. "type": "drupal-module",
  3757. "extra": {
  3758. "drupal": {
  3759. "version": "1.1.0",
  3760. "datestamp": "1663760998",
  3761. "security-coverage": {
  3762. "status": "covered",
  3763. "message": "Covered by Drupal's security advisory policy"
  3764. }
  3765. }
  3766. },
  3767. "notification-url": "https://packages.drupal.org/8/downloads",
  3768. "license": [
  3769. "GPL-2.0-or-later"
  3770. ],
  3771. "authors": [
  3772. {
  3773. "name": "Jan Chojnacki",
  3774. "homepage": "https://www.drupal.org/u/janchojnacki"
  3775. },
  3776. {
  3777. "name": "Other contributors",
  3778. "homepage": "https://www.drupal.org/node/3164492/committers"
  3779. }
  3780. ],
  3781. "description": "Shows methods and statics available for an object when using Kint with Devel",
  3782. "homepage": "https://www.drupal.org/project/devel_kint_extras",
  3783. "support": {
  3784. "source": "http://git.drupal.org/project/devel_kint_extras.git",
  3785. "issues": "https://www.drupal.org/project/issues/devel_kint_extras",
  3786. "chat": "irc://irc.freenode.org/drupal-contribute"
  3787. }
  3788. },
  3789. {
  3790. "name": "drupal/email_registration",
  3791. "version": "1.3.0",
  3792. "source": {
  3793. "type": "git",
  3794. "url": "https://git.drupalcode.org/project/email_registration.git",
  3795. "reference": "8.x-1.3"
  3796. },
  3797. "dist": {
  3798. "type": "zip",
  3799. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.3.zip",
  3800. "reference": "8.x-1.3",
  3801. "shasum": "6fe425246511e29dfef4294139c8704aec16cbec"
  3802. },
  3803. "require": {
  3804. "drupal/core": "^9.1 || ^10"
  3805. },
  3806. "conflict": {
  3807. "drupal/commerce": "<2.12"
  3808. },
  3809. "require-dev": {
  3810. "drupal/commerce": "^2.0",
  3811. "drupal/token": "*"
  3812. },
  3813. "type": "drupal-module",
  3814. "extra": {
  3815. "drupal": {
  3816. "version": "8.x-1.3",
  3817. "datestamp": "1697182609",
  3818. "security-coverage": {
  3819. "status": "covered",
  3820. "message": "Covered by Drupal's security advisory policy"
  3821. }
  3822. }
  3823. },
  3824. "notification-url": "https://packages.drupal.org/8/downloads",
  3825. "license": [
  3826. "GPL-2.0-or-later"
  3827. ],
  3828. "authors": [
  3829. {
  3830. "name": "Greg Knaddison (greggles)",
  3831. "homepage": "https://www.drupal.org/u/greggles",
  3832. "role": "Maintainer"
  3833. },
  3834. {
  3835. "name": "Andrey Postnikov (andypost)",
  3836. "homepage": "https://www.drupal.org/u/andypost",
  3837. "role": "Maintainer"
  3838. },
  3839. {
  3840. "name": "Chris Herberte",
  3841. "homepage": "https://www.drupal.org/u/chris-herberte",
  3842. "role": "Maintainer"
  3843. },
  3844. {
  3845. "name": "Moshe Weitzman (moshe weitzman)",
  3846. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3847. "role": "Maintainer"
  3848. },
  3849. {
  3850. "name": "Grevil",
  3851. "homepage": "https://www.drupal.org/user/3668491"
  3852. },
  3853. {
  3854. "name": "moshe weitzman",
  3855. "homepage": "https://www.drupal.org/user/23"
  3856. }
  3857. ],
  3858. "description": "Allows users to register with an email address as their username.",
  3859. "homepage": "https://www.drupal.org/project/email_registration",
  3860. "support": {
  3861. "source": "https://git.drupalcode.org/project/email_registration",
  3862. "issues": "http://drupal.org/project/issues/email_registration"
  3863. }
  3864. },
  3865. {
  3866. "name": "drupal/embed",
  3867. "version": "1.7.0",
  3868. "source": {
  3869. "type": "git",
  3870. "url": "https://git.drupalcode.org/project/embed.git",
  3871. "reference": "8.x-1.7"
  3872. },
  3873. "dist": {
  3874. "type": "zip",
  3875. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.7.zip",
  3876. "reference": "8.x-1.7",
  3877. "shasum": "b7ca4264be51038f947d26b6725fc0446b224f60"
  3878. },
  3879. "require": {
  3880. "drupal/core": "^9.3 | ^10"
  3881. },
  3882. "require-dev": {
  3883. "drupal/ckeditor": "*"
  3884. },
  3885. "type": "drupal-module",
  3886. "extra": {
  3887. "drupal": {
  3888. "version": "8.x-1.7",
  3889. "datestamp": "1697642867",
  3890. "security-coverage": {
  3891. "status": "covered",
  3892. "message": "Covered by Drupal's security advisory policy"
  3893. }
  3894. }
  3895. },
  3896. "notification-url": "https://packages.drupal.org/8/downloads",
  3897. "license": [
  3898. "GPL-2.0-or-later"
  3899. ],
  3900. "authors": [
  3901. {
  3902. "name": "cs_shadow",
  3903. "homepage": "https://www.drupal.org/user/2828287"
  3904. },
  3905. {
  3906. "name": "Dave Reid",
  3907. "homepage": "https://www.drupal.org/user/53892"
  3908. },
  3909. {
  3910. "name": "Devin Carlson",
  3911. "homepage": "https://www.drupal.org/user/290182"
  3912. },
  3913. {
  3914. "name": "Drupal Media Team",
  3915. "homepage": "https://www.drupal.org/user/3260690"
  3916. },
  3917. {
  3918. "name": "phenaproxima",
  3919. "homepage": "https://www.drupal.org/user/205645"
  3920. },
  3921. {
  3922. "name": "slashrsm",
  3923. "homepage": "https://www.drupal.org/user/744628"
  3924. }
  3925. ],
  3926. "description": "Provides a framework for different types of embeds in text editors.",
  3927. "homepage": "https://www.drupal.org/project/embed",
  3928. "support": {
  3929. "source": "https://git.drupalcode.org/project/embed"
  3930. }
  3931. },
  3932. {
  3933. "name": "drupal/entity",
  3934. "version": "1.4.0",
  3935. "source": {
  3936. "type": "git",
  3937. "url": "https://git.drupalcode.org/project/entity.git",
  3938. "reference": "8.x-1.4"
  3939. },
  3940. "dist": {
  3941. "type": "zip",
  3942. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.4.zip",
  3943. "reference": "8.x-1.4",
  3944. "shasum": "1cf7712318fad144eab106a8fcfcd396aeb5676f"
  3945. },
  3946. "require": {
  3947. "drupal/core": "^9.2|^10.0"
  3948. },
  3949. "type": "drupal-module",
  3950. "extra": {
  3951. "drupal": {
  3952. "version": "8.x-1.4",
  3953. "datestamp": "1661898023",
  3954. "security-coverage": {
  3955. "status": "covered",
  3956. "message": "Covered by Drupal's security advisory policy"
  3957. }
  3958. }
  3959. },
  3960. "notification-url": "https://packages.drupal.org/8/downloads",
  3961. "license": [
  3962. "GPL-2.0-or-later"
  3963. ],
  3964. "authors": [
  3965. {
  3966. "name": "Berdir",
  3967. "homepage": "https://www.drupal.org/user/214652"
  3968. },
  3969. {
  3970. "name": "bojanz",
  3971. "homepage": "https://www.drupal.org/user/86106"
  3972. },
  3973. {
  3974. "name": "dawehner",
  3975. "homepage": "https://www.drupal.org/user/99340"
  3976. },
  3977. {
  3978. "name": "dixon_",
  3979. "homepage": "https://www.drupal.org/user/239911"
  3980. },
  3981. {
  3982. "name": "fago",
  3983. "homepage": "https://www.drupal.org/user/16747"
  3984. },
  3985. {
  3986. "name": "mglaman",
  3987. "homepage": "https://www.drupal.org/user/2416470"
  3988. },
  3989. {
  3990. "name": "TR",
  3991. "homepage": "https://www.drupal.org/user/202830"
  3992. }
  3993. ],
  3994. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3995. "homepage": "https://www.drupal.org/project/entity",
  3996. "support": {
  3997. "source": "https://git.drupalcode.org/project/entity",
  3998. "issues": "https://www.drupal.org/project/issues/entity"
  3999. }
  4000. },
  4001. {
  4002. "name": "drupal/entity_browser",
  4003. "version": "2.9.0",
  4004. "source": {
  4005. "type": "git",
  4006. "url": "https://git.drupalcode.org/project/entity_browser.git",
  4007. "reference": "8.x-2.9"
  4008. },
  4009. "dist": {
  4010. "type": "zip",
  4011. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.9.zip",
  4012. "reference": "8.x-2.9",
  4013. "shasum": "251afad80cde9fa547501a8d9de5d94b9f5bacff"
  4014. },
  4015. "require": {
  4016. "drupal/core": "^9.2 || ^10"
  4017. },
  4018. "require-dev": {
  4019. "drupal/embed": "~1.0",
  4020. "drupal/entity_embed": "1.x-dev",
  4021. "drupal/entity_reference_revisions": "1.x-dev",
  4022. "drupal/entityqueue": "1.x-dev",
  4023. "drupal/inline_entity_form": "1.x-dev",
  4024. "drupal/paragraphs": "1.x-dev",
  4025. "drupal/token": "1.x-dev"
  4026. },
  4027. "type": "drupal-module",
  4028. "extra": {
  4029. "drupal": {
  4030. "version": "8.x-2.9",
  4031. "datestamp": "1674070933",
  4032. "security-coverage": {
  4033. "status": "covered",
  4034. "message": "Covered by Drupal's security advisory policy"
  4035. }
  4036. }
  4037. },
  4038. "notification-url": "https://packages.drupal.org/8/downloads",
  4039. "license": [
  4040. "GPL-2.0+"
  4041. ],
  4042. "authors": [
  4043. {
  4044. "name": "Janez Urevc",
  4045. "homepage": "https://github.com/slashrsm",
  4046. "role": "Maintainer"
  4047. },
  4048. {
  4049. "name": "Primoz Hmeljak",
  4050. "homepage": "https://github.com/primsi",
  4051. "role": "Maintainer"
  4052. },
  4053. {
  4054. "name": "See other contributors",
  4055. "homepage": "https://www.drupal.org/node/1943336/committers",
  4056. "role": "contributor"
  4057. },
  4058. {
  4059. "name": "Drupal Media Team",
  4060. "homepage": "https://www.drupal.org/user/3260690"
  4061. },
  4062. {
  4063. "name": "marcingy",
  4064. "homepage": "https://www.drupal.org/user/77320"
  4065. },
  4066. {
  4067. "name": "oknate",
  4068. "homepage": "https://www.drupal.org/user/471638"
  4069. },
  4070. {
  4071. "name": "Primsi",
  4072. "homepage": "https://www.drupal.org/user/282629"
  4073. },
  4074. {
  4075. "name": "samuel.mortenson",
  4076. "homepage": "https://www.drupal.org/user/2582268"
  4077. },
  4078. {
  4079. "name": "slashrsm",
  4080. "homepage": "https://www.drupal.org/user/744628"
  4081. }
  4082. ],
  4083. "description": "Entity browsing and selecting component.",
  4084. "homepage": "http://drupal.org/project/entity_browser",
  4085. "support": {
  4086. "source": "https://git.drupalcode.org/project/entity_browser",
  4087. "issues": "https://www.drupal.org/project/issues/entity_browser",
  4088. "irc": "irc://irc.freenode.org/drupal-contribute"
  4089. }
  4090. },
  4091. {
  4092. "name": "drupal/entity_browser_enhanced",
  4093. "version": "2.0.0",
  4094. "source": {
  4095. "type": "git",
  4096. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  4097. "reference": "2.0.0"
  4098. },
  4099. "dist": {
  4100. "type": "zip",
  4101. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.0.zip",
  4102. "reference": "2.0.0",
  4103. "shasum": "2880829c847c1c4b06092ab5335adb6ea960317b"
  4104. },
  4105. "require": {
  4106. "drupal/core": "^9 || ^10",
  4107. "drupal/entity_browser": "~2.0"
  4108. },
  4109. "type": "drupal-module",
  4110. "extra": {
  4111. "drupal": {
  4112. "version": "2.0.0",
  4113. "datestamp": "1697211243",
  4114. "security-coverage": {
  4115. "status": "covered",
  4116. "message": "Covered by Drupal's security advisory policy"
  4117. }
  4118. }
  4119. },
  4120. "notification-url": "https://packages.drupal.org/8/downloads",
  4121. "license": [
  4122. "GPL-2.0-or-later"
  4123. ],
  4124. "authors": [
  4125. {
  4126. "name": "Vardot",
  4127. "homepage": "https://www.drupal.org/vardot",
  4128. "role": "Maintainer"
  4129. },
  4130. {
  4131. "name": "Rajab Natshah",
  4132. "homepage": "https://www.drupal.org/user/1414312"
  4133. }
  4134. ],
  4135. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  4136. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  4137. "support": {
  4138. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  4139. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  4140. }
  4141. },
  4142. {
  4143. "name": "drupal/entity_clone",
  4144. "version": "dev-2.x",
  4145. "source": {
  4146. "type": "git",
  4147. "url": "https://git.drupalcode.org/project/entity_clone.git",
  4148. "reference": "5cbfafdbc860cbda7bef91c89628aefca25efe7b"
  4149. },
  4150. "require": {
  4151. "drupal/core": "^8.8 || ^9 || ^10"
  4152. },
  4153. "require-dev": {
  4154. "drupal/entity_browser": "2.x-dev",
  4155. "drupal/entity_usage": "2.x-dev",
  4156. "drupal/paragraphs": "^1.0",
  4157. "drupal/search_api": "~1.0"
  4158. },
  4159. "type": "drupal-module",
  4160. "extra": {
  4161. "branch-alias": {
  4162. "dev-2.x": "2.x-dev"
  4163. },
  4164. "drupal": {
  4165. "version": "2.0.0-beta4+3-dev",
  4166. "datestamp": "1697545494",
  4167. "security-coverage": {
  4168. "status": "not-covered",
  4169. "message": "Dev releases are not covered by Drupal security advisories."
  4170. }
  4171. }
  4172. },
  4173. "notification-url": "https://packages.drupal.org/8/downloads",
  4174. "license": [
  4175. "GPL-2.0-or-later"
  4176. ],
  4177. "authors": [
  4178. {
  4179. "name": "colan",
  4180. "homepage": "https://www.drupal.org/user/58704"
  4181. },
  4182. {
  4183. "name": "joevagyok",
  4184. "homepage": "https://www.drupal.org/user/2876343"
  4185. },
  4186. {
  4187. "name": "NickDickinsonWilde",
  4188. "homepage": "https://www.drupal.org/user/3094661"
  4189. },
  4190. {
  4191. "name": "Rajeshreeputra",
  4192. "homepage": "https://www.drupal.org/user/3418561"
  4193. },
  4194. {
  4195. "name": "Upchuk",
  4196. "homepage": "https://www.drupal.org/user/1885838"
  4197. },
  4198. {
  4199. "name": "vpeltot",
  4200. "homepage": "https://www.drupal.org/user/1361586"
  4201. }
  4202. ],
  4203. "description": "Add a clone action for all entities.",
  4204. "homepage": "https://drupal.org/project/entity_clone",
  4205. "support": {
  4206. "source": "https://git.drupalcode.org/project/entity_clone"
  4207. }
  4208. },
  4209. {
  4210. "name": "drupal/entity_reference_revisions",
  4211. "version": "1.10.0",
  4212. "source": {
  4213. "type": "git",
  4214. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4215. "reference": "8.x-1.10"
  4216. },
  4217. "dist": {
  4218. "type": "zip",
  4219. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.10.zip",
  4220. "reference": "8.x-1.10",
  4221. "shasum": "edd23b91c4a34db65ea22c4db54b7458edc7513b"
  4222. },
  4223. "require": {
  4224. "drupal/core": "^9 || ^10"
  4225. },
  4226. "require-dev": {
  4227. "drupal/diff": "1.x-dev"
  4228. },
  4229. "type": "drupal-module",
  4230. "extra": {
  4231. "drupal": {
  4232. "version": "8.x-1.10",
  4233. "datestamp": "1660664712",
  4234. "security-coverage": {
  4235. "status": "covered",
  4236. "message": "Covered by Drupal's security advisory policy"
  4237. }
  4238. },
  4239. "drush": {
  4240. "services": {
  4241. "drush.services.yml": "^9 || ^10 || ^11"
  4242. }
  4243. }
  4244. },
  4245. "notification-url": "https://packages.drupal.org/8/downloads",
  4246. "license": [
  4247. "GPL-2.0-or-later"
  4248. ],
  4249. "authors": [
  4250. {
  4251. "name": "Berdir",
  4252. "homepage": "https://www.drupal.org/user/214652"
  4253. },
  4254. {
  4255. "name": "Frans",
  4256. "homepage": "https://www.drupal.org/user/514222"
  4257. },
  4258. {
  4259. "name": "jeroen.b",
  4260. "homepage": "https://www.drupal.org/user/1853532"
  4261. },
  4262. {
  4263. "name": "miro_dietiker",
  4264. "homepage": "https://www.drupal.org/user/227761"
  4265. }
  4266. ],
  4267. "description": "Entity Reference Revisions",
  4268. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  4269. "support": {
  4270. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  4271. }
  4272. },
  4273. {
  4274. "name": "drupal/extlink",
  4275. "version": "1.7.0",
  4276. "source": {
  4277. "type": "git",
  4278. "url": "https://git.drupalcode.org/project/extlink.git",
  4279. "reference": "8.x-1.7"
  4280. },
  4281. "dist": {
  4282. "type": "zip",
  4283. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.7.zip",
  4284. "reference": "8.x-1.7",
  4285. "shasum": "38650688b5a58496db59f40b2a7f36c4bedcbfb4"
  4286. },
  4287. "require": {
  4288. "drupal/core": "^8 || ^9 || ^10"
  4289. },
  4290. "type": "drupal-module",
  4291. "extra": {
  4292. "drupal": {
  4293. "version": "8.x-1.7",
  4294. "datestamp": "1665770295",
  4295. "security-coverage": {
  4296. "status": "covered",
  4297. "message": "Covered by Drupal's security advisory policy"
  4298. }
  4299. }
  4300. },
  4301. "notification-url": "https://packages.drupal.org/8/downloads",
  4302. "license": [
  4303. "GPL-2.0-or-later"
  4304. ],
  4305. "authors": [
  4306. {
  4307. "name": "Nate Lampton",
  4308. "homepage": "https://www.drupal.org/u/quicksketch",
  4309. "role": "Maintainer"
  4310. },
  4311. {
  4312. "name": "Lachlan Ennis",
  4313. "homepage": "https://www.drupal.org/u/elachlan",
  4314. "role": "Maintainer"
  4315. },
  4316. {
  4317. "name": "Neslee Canil Pinto",
  4318. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4319. "role": "Maintainer"
  4320. }
  4321. ],
  4322. "description": "Modify behavior and appearance of external links.",
  4323. "homepage": "https://www.drupal.org/project/extlink",
  4324. "keywords": [
  4325. "Drupal",
  4326. "External Links"
  4327. ],
  4328. "support": {
  4329. "source": "https://git.drupalcode.org/project/extlink",
  4330. "issues": "https://www.drupal.org/project/issues/extlink"
  4331. }
  4332. },
  4333. {
  4334. "name": "drupal/field_group",
  4335. "version": "dev-3.x",
  4336. "source": {
  4337. "type": "git",
  4338. "url": "https://git.drupalcode.org/project/field_group.git",
  4339. "reference": "1211c8f4e06592418ca368afe88ef9aa237e900a"
  4340. },
  4341. "require": {
  4342. "drupal/core": "^9.2 || ^10"
  4343. },
  4344. "type": "drupal-module",
  4345. "extra": {
  4346. "branch-alias": {
  4347. "dev-3.x": "3.x-dev"
  4348. },
  4349. "drupal": {
  4350. "version": "8.x-3.4+4-dev",
  4351. "datestamp": "1696831482",
  4352. "security-coverage": {
  4353. "status": "not-covered",
  4354. "message": "Dev releases are not covered by Drupal security advisories."
  4355. }
  4356. }
  4357. },
  4358. "notification-url": "https://packages.drupal.org/8/downloads",
  4359. "license": [
  4360. "GPL-2.0-or-later"
  4361. ],
  4362. "authors": [
  4363. {
  4364. "name": "Anybody",
  4365. "homepage": "https://www.drupal.org/user/291091"
  4366. },
  4367. {
  4368. "name": "Hydra",
  4369. "homepage": "https://www.drupal.org/user/647364"
  4370. },
  4371. {
  4372. "name": "jyve",
  4373. "homepage": "https://www.drupal.org/user/591438"
  4374. },
  4375. {
  4376. "name": "nils.destoop",
  4377. "homepage": "https://www.drupal.org/user/361625"
  4378. },
  4379. {
  4380. "name": "Stalski",
  4381. "homepage": "https://www.drupal.org/user/322618"
  4382. },
  4383. {
  4384. "name": "swentel",
  4385. "homepage": "https://www.drupal.org/user/107403"
  4386. }
  4387. ],
  4388. "description": "Provides the field_group module.",
  4389. "homepage": "https://www.drupal.org/project/field_group",
  4390. "support": {
  4391. "source": "https://git.drupalcode.org/project/field_group",
  4392. "issues": "https://www.drupal.org/project/issues/field_group"
  4393. }
  4394. },
  4395. {
  4396. "name": "drupal/field_permissions",
  4397. "version": "1.3.0",
  4398. "source": {
  4399. "type": "git",
  4400. "url": "https://git.drupalcode.org/project/field_permissions.git",
  4401. "reference": "8.x-1.3"
  4402. },
  4403. "dist": {
  4404. "type": "zip",
  4405. "url": "https://ftp.drupal.org/files/projects/field_permissions-8.x-1.3.zip",
  4406. "reference": "8.x-1.3",
  4407. "shasum": "f3815d21b423c94e800388f3c29237fc1a00189d"
  4408. },
  4409. "require": {
  4410. "drupal/core": ">=8.9 <11"
  4411. },
  4412. "type": "drupal-module",
  4413. "extra": {
  4414. "drupal": {
  4415. "version": "8.x-1.3",
  4416. "datestamp": "1703264421",
  4417. "security-coverage": {
  4418. "status": "covered",
  4419. "message": "Covered by Drupal's security advisory policy"
  4420. }
  4421. },
  4422. "branch-alias": {
  4423. "dev-8.x-1.x": "1.x-dev"
  4424. }
  4425. },
  4426. "notification-url": "https://packages.drupal.org/8/downloads",
  4427. "license": [
  4428. "GPL-2.0-or-later"
  4429. ],
  4430. "authors": [
  4431. {
  4432. "name": "japerry",
  4433. "homepage": "https://www.drupal.org/user/45640"
  4434. },
  4435. {
  4436. "name": "jhedstrom",
  4437. "homepage": "https://www.drupal.org/user/208732"
  4438. },
  4439. {
  4440. "name": "mariacha1",
  4441. "homepage": "https://www.drupal.org/user/2210776"
  4442. },
  4443. {
  4444. "name": "markus_petrux",
  4445. "homepage": "https://www.drupal.org/user/39593"
  4446. },
  4447. {
  4448. "name": "RobLoach",
  4449. "homepage": "https://www.drupal.org/user/61114"
  4450. }
  4451. ],
  4452. "description": "The Field Permissions module allows site administrators to set field-level permissions to edit, view and create fields on any entity.",
  4453. "homepage": "https://www.drupal.org/project/field_permissions",
  4454. "support": {
  4455. "source": "https://git.drupalcode.org/project/field_permissions",
  4456. "issues": "https://www.drupal.org/project/issues/field_permissions"
  4457. }
  4458. },
  4459. {
  4460. "name": "drupal/file_mdm",
  4461. "version": "2.6.0",
  4462. "source": {
  4463. "type": "git",
  4464. "url": "https://git.drupalcode.org/project/file_mdm.git",
  4465. "reference": "8.x-2.6"
  4466. },
  4467. "dist": {
  4468. "type": "zip",
  4469. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.6.zip",
  4470. "reference": "8.x-2.6",
  4471. "shasum": "56c7c06107ce6e249b6d644136e6807573efb0e3"
  4472. },
  4473. "require": {
  4474. "drupal/core": "^9.3 | ^10",
  4475. "fileeye/pel": "^0.9.20",
  4476. "phenx/php-font-lib": "^0.5.4"
  4477. },
  4478. "require-dev": {
  4479. "drupal/vendor_stream_wrapper": "^2.0.2",
  4480. "fileeye/linuxlibertine-fonts": "^5.3"
  4481. },
  4482. "type": "drupal-module",
  4483. "extra": {
  4484. "drupal": {
  4485. "version": "8.x-2.6",
  4486. "datestamp": "1688489716",
  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": "mondrake",
  4500. "homepage": "https://www.drupal.org/user/1307444"
  4501. }
  4502. ],
  4503. "description": "Provides a service to manage file metadata.",
  4504. "homepage": "https://www.drupal.org/project/file_mdm",
  4505. "support": {
  4506. "source": "https://git.drupalcode.org/project/file_mdm"
  4507. }
  4508. },
  4509. {
  4510. "name": "drupal/filter_perms",
  4511. "version": "dev-1.x",
  4512. "source": {
  4513. "type": "git",
  4514. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4515. "reference": "1ba486b620e0c0ea1c323cfcadb0f965d9022d1c"
  4516. },
  4517. "require": {
  4518. "drupal/core": "^9.0 || ^10.0"
  4519. },
  4520. "type": "drupal-module",
  4521. "extra": {
  4522. "branch-alias": {
  4523. "dev-1.x": "1.x-dev"
  4524. },
  4525. "drupal": {
  4526. "version": "8.x-1.0-alpha2+1-dev",
  4527. "datestamp": "1697635045",
  4528. "security-coverage": {
  4529. "status": "not-covered",
  4530. "message": "Dev releases are not covered by Drupal security advisories."
  4531. }
  4532. }
  4533. },
  4534. "notification-url": "https://packages.drupal.org/8/downloads",
  4535. "license": [
  4536. "GPL-2.0+"
  4537. ],
  4538. "authors": [
  4539. {
  4540. "name": "cYu",
  4541. "homepage": "https://www.drupal.org/user/202205"
  4542. },
  4543. {
  4544. "name": "deekayen",
  4545. "homepage": "https://www.drupal.org/user/972"
  4546. },
  4547. {
  4548. "name": "ivavictoria",
  4549. "homepage": "https://www.drupal.org/user/3061533"
  4550. },
  4551. {
  4552. "name": "justcaldwell",
  4553. "homepage": "https://www.drupal.org/user/290069"
  4554. },
  4555. {
  4556. "name": "mgbellaire",
  4557. "homepage": "https://www.drupal.org/user/1831932"
  4558. },
  4559. {
  4560. "name": "willzyx",
  4561. "homepage": "https://www.drupal.org/user/1043862"
  4562. }
  4563. ],
  4564. "description": "Provides role and module filters to simplify the user permissions page.",
  4565. "homepage": "https://www.drupal.org/project/filter_perms",
  4566. "support": {
  4567. "source": "http://cgit.drupalcode.org/filter_perms",
  4568. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  4569. }
  4570. },
  4571. {
  4572. "name": "drupal/formatter_suite",
  4573. "version": "2.0.0",
  4574. "source": {
  4575. "type": "git",
  4576. "url": "https://git.drupalcode.org/project/formatter_suite.git",
  4577. "reference": "2.0.0"
  4578. },
  4579. "dist": {
  4580. "type": "zip",
  4581. "url": "https://ftp.drupal.org/files/projects/formatter_suite-2.0.0.zip",
  4582. "reference": "2.0.0",
  4583. "shasum": "1c6c0fc11d381c10a7b13c51ec2848ae91b40cec"
  4584. },
  4585. "require": {
  4586. "drupal/core": "^9 || ^10"
  4587. },
  4588. "type": "drupal-module",
  4589. "extra": {
  4590. "drupal": {
  4591. "version": "2.0.0",
  4592. "datestamp": "1694036572",
  4593. "security-coverage": {
  4594. "status": "covered",
  4595. "message": "Covered by Drupal's security advisory policy"
  4596. }
  4597. }
  4598. },
  4599. "notification-url": "https://packages.drupal.org/8/downloads",
  4600. "license": [
  4601. "GPL-2.0-or-later"
  4602. ],
  4603. "authors": [
  4604. {
  4605. "name": "thecooltechguy",
  4606. "homepage": "https://www.drupal.org/user/3674323"
  4607. },
  4608. {
  4609. "name": "toamit",
  4610. "homepage": "https://www.drupal.org/user/2820523"
  4611. }
  4612. ],
  4613. "description": "Field formaters to present numbers, text, links, etc.",
  4614. "homepage": "https://www.drupal.org/project/formatter_suite",
  4615. "keywords": [
  4616. "Drupal",
  4617. "Format"
  4618. ],
  4619. "support": {
  4620. "source": "http://cgit.drupalcode.org/formatter_suite",
  4621. "issues": "http://drupal.org/project/issues/formatter_suite"
  4622. }
  4623. },
  4624. {
  4625. "name": "drupal/honeypot",
  4626. "version": "2.1.3",
  4627. "source": {
  4628. "type": "git",
  4629. "url": "https://git.drupalcode.org/project/honeypot.git",
  4630. "reference": "2.1.3"
  4631. },
  4632. "dist": {
  4633. "type": "zip",
  4634. "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.3.zip",
  4635. "reference": "2.1.3",
  4636. "shasum": "101105029a10a574ef6017824182500ab9905856"
  4637. },
  4638. "require": {
  4639. "drupal/core": "^9.2 || ^10"
  4640. },
  4641. "require-dev": {
  4642. "drupal/rules": "^3.0"
  4643. },
  4644. "type": "drupal-module",
  4645. "extra": {
  4646. "drupal": {
  4647. "version": "2.1.3",
  4648. "datestamp": "1695604754",
  4649. "security-coverage": {
  4650. "status": "covered",
  4651. "message": "Covered by Drupal's security advisory policy"
  4652. }
  4653. }
  4654. },
  4655. "notification-url": "https://packages.drupal.org/8/downloads",
  4656. "license": [
  4657. "GPL-2.0-or-later"
  4658. ],
  4659. "authors": [
  4660. {
  4661. "name": "Jeff Geerling",
  4662. "homepage": "https://www.drupal.org/user/389011",
  4663. "email": "geerlingguy@mac.com"
  4664. },
  4665. {
  4666. "name": "Manuel Garcia",
  4667. "homepage": "https://www.drupal.org/user/213194"
  4668. },
  4669. {
  4670. "name": "TR",
  4671. "homepage": "https://www.drupal.org/user/202830"
  4672. },
  4673. {
  4674. "name": "vijaycs85",
  4675. "homepage": "https://www.drupal.org/user/93488"
  4676. }
  4677. ],
  4678. "description": "Mitigates spam form submissions using the honeypot method.",
  4679. "homepage": "https://www.drupal.org/project/honeypot",
  4680. "keywords": [
  4681. "deterrent",
  4682. "form",
  4683. "honeypot",
  4684. "honeytrap",
  4685. "php",
  4686. "spam"
  4687. ],
  4688. "support": {
  4689. "source": "https://git.drupalcode.org/project/honeypot",
  4690. "issues": "https://www.drupal.org/project/issues/honeypot"
  4691. }
  4692. },
  4693. {
  4694. "name": "drupal/image_delta_formatter",
  4695. "version": "1.2.0",
  4696. "source": {
  4697. "type": "git",
  4698. "url": "https://git.drupalcode.org/project/image_delta_formatter.git",
  4699. "reference": "8.x-1.2"
  4700. },
  4701. "dist": {
  4702. "type": "zip",
  4703. "url": "https://ftp.drupal.org/files/projects/image_delta_formatter-8.x-1.2.zip",
  4704. "reference": "8.x-1.2",
  4705. "shasum": "e236790ad92bdbc8a0ba0aa042a8580d8ce9f425"
  4706. },
  4707. "require": {
  4708. "drupal/core": "^8 || ^9 || ^10"
  4709. },
  4710. "type": "drupal-module",
  4711. "extra": {
  4712. "drupal": {
  4713. "version": "8.x-1.2",
  4714. "datestamp": "1685543777",
  4715. "security-coverage": {
  4716. "status": "covered",
  4717. "message": "Covered by Drupal's security advisory policy"
  4718. }
  4719. }
  4720. },
  4721. "notification-url": "https://packages.drupal.org/8/downloads",
  4722. "license": [
  4723. "GPL-2.0-or-later"
  4724. ],
  4725. "authors": [
  4726. {
  4727. "name": "bojanz",
  4728. "homepage": "https://www.drupal.org/user/86106"
  4729. },
  4730. {
  4731. "name": "fgm",
  4732. "homepage": "https://www.drupal.org/user/27985"
  4733. },
  4734. {
  4735. "name": "jsacksick",
  4736. "homepage": "https://www.drupal.org/user/972218"
  4737. }
  4738. ],
  4739. "description": "Provides a formatter that displays a specific delta of a multivalue imagefield.",
  4740. "homepage": "https://www.drupal.org/project/image_delta_formatter",
  4741. "support": {
  4742. "source": "https://git.drupalcode.org/project/image_delta_formatter"
  4743. }
  4744. },
  4745. {
  4746. "name": "drupal/image_field_caption",
  4747. "version": "2.0.1",
  4748. "source": {
  4749. "type": "git",
  4750. "url": "https://git.drupalcode.org/project/image_field_caption.git",
  4751. "reference": "2.0.1"
  4752. },
  4753. "dist": {
  4754. "type": "zip",
  4755. "url": "https://ftp.drupal.org/files/projects/image_field_caption-2.0.1.zip",
  4756. "reference": "2.0.1",
  4757. "shasum": "053e1ccfc638b3b2cd5c59c3c6a053e4e5041183"
  4758. },
  4759. "require": {
  4760. "drupal/core": "^9 || ^10"
  4761. },
  4762. "type": "drupal-module",
  4763. "extra": {
  4764. "drupal": {
  4765. "version": "2.0.1",
  4766. "datestamp": "1705443097",
  4767. "security-coverage": {
  4768. "status": "covered",
  4769. "message": "Covered by Drupal's security advisory policy"
  4770. }
  4771. }
  4772. },
  4773. "notification-url": "https://packages.drupal.org/8/downloads",
  4774. "license": [
  4775. "GPL-2.0+"
  4776. ],
  4777. "authors": [
  4778. {
  4779. "name": "awm",
  4780. "homepage": "https://www.drupal.org/user/1059398"
  4781. },
  4782. {
  4783. "name": "hanoii",
  4784. "homepage": "https://www.drupal.org/user/23157"
  4785. },
  4786. {
  4787. "name": "ironsizide",
  4788. "homepage": "https://www.drupal.org/user/787980"
  4789. },
  4790. {
  4791. "name": "iStryker",
  4792. "homepage": "https://www.drupal.org/user/303676"
  4793. },
  4794. {
  4795. "name": "RobLoach",
  4796. "homepage": "https://www.drupal.org/user/61114"
  4797. },
  4798. {
  4799. "name": "tyler.frankenstein",
  4800. "homepage": "https://www.drupal.org/user/150680"
  4801. }
  4802. ],
  4803. "description": "Add caption to image field.",
  4804. "homepage": "https://www.drupal.org/project/image_field_caption",
  4805. "support": {
  4806. "source": "https://git.drupalcode.org/project/image_field_caption",
  4807. "issues": "https://www.drupal.org/project/issues/image_field_caption"
  4808. }
  4809. },
  4810. {
  4811. "name": "drupal/imagemagick",
  4812. "version": "3.4.0",
  4813. "source": {
  4814. "type": "git",
  4815. "url": "https://git.drupalcode.org/project/imagemagick.git",
  4816. "reference": "8.x-3.4"
  4817. },
  4818. "dist": {
  4819. "type": "zip",
  4820. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.4.zip",
  4821. "reference": "8.x-3.4",
  4822. "shasum": "9f07b7db4bba2cb0e4ff004629f8f78242bb7226"
  4823. },
  4824. "require": {
  4825. "drupal/core": "^9.3 || ^10",
  4826. "drupal/file_mdm": "^2.5",
  4827. "drupal/sophron": "^1.2 || ^2"
  4828. },
  4829. "type": "drupal-module",
  4830. "extra": {
  4831. "drupal": {
  4832. "version": "8.x-3.4",
  4833. "datestamp": "1663947784",
  4834. "security-coverage": {
  4835. "status": "covered",
  4836. "message": "Covered by Drupal's security advisory policy"
  4837. }
  4838. }
  4839. },
  4840. "notification-url": "https://packages.drupal.org/8/downloads",
  4841. "license": [
  4842. "GPL-2.0-or-later"
  4843. ],
  4844. "authors": [
  4845. {
  4846. "name": "Chris Charlton",
  4847. "homepage": "https://www.drupal.org/user/17089"
  4848. },
  4849. {
  4850. "name": "chx",
  4851. "homepage": "https://www.drupal.org/user/9446"
  4852. },
  4853. {
  4854. "name": "claudiu.cristea",
  4855. "homepage": "https://www.drupal.org/user/56348"
  4856. },
  4857. {
  4858. "name": "dman",
  4859. "homepage": "https://www.drupal.org/user/33240"
  4860. },
  4861. {
  4862. "name": "dopry",
  4863. "homepage": "https://www.drupal.org/user/22202"
  4864. },
  4865. {
  4866. "name": "drewish",
  4867. "homepage": "https://www.drupal.org/user/34869"
  4868. },
  4869. {
  4870. "name": "gdl",
  4871. "homepage": "https://www.drupal.org/user/507326"
  4872. },
  4873. {
  4874. "name": "mondrake",
  4875. "homepage": "https://www.drupal.org/user/1307444"
  4876. },
  4877. {
  4878. "name": "quicksketch",
  4879. "homepage": "https://www.drupal.org/user/35821"
  4880. },
  4881. {
  4882. "name": "sun",
  4883. "homepage": "https://www.drupal.org/user/54136"
  4884. },
  4885. {
  4886. "name": "walkah",
  4887. "homepage": "https://www.drupal.org/user/1531"
  4888. }
  4889. ],
  4890. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  4891. "homepage": "https://www.drupal.org/project/imagemagick",
  4892. "support": {
  4893. "source": "https://git.drupalcode.org/project/imagemagick"
  4894. }
  4895. },
  4896. {
  4897. "name": "drupal/inline_entity_form",
  4898. "version": "1.0.0-rc15",
  4899. "source": {
  4900. "type": "git",
  4901. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  4902. "reference": "8.x-1.0-rc15"
  4903. },
  4904. "dist": {
  4905. "type": "zip",
  4906. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc15.zip",
  4907. "reference": "8.x-1.0-rc15",
  4908. "shasum": "7702801f7e599956fc3d10cff8257809f53ac3ec"
  4909. },
  4910. "require": {
  4911. "drupal/core": "^8.8 || ^9 || ^10",
  4912. "php": ">=7.1"
  4913. },
  4914. "require-dev": {
  4915. "drupal/entity_reference_revisions": "^1.0"
  4916. },
  4917. "type": "drupal-module",
  4918. "extra": {
  4919. "drupal": {
  4920. "version": "8.x-1.0-rc15",
  4921. "datestamp": "1678126675",
  4922. "security-coverage": {
  4923. "status": "not-covered",
  4924. "message": "RC releases are not covered by Drupal security advisories."
  4925. }
  4926. }
  4927. },
  4928. "notification-url": "https://packages.drupal.org/8/downloads",
  4929. "license": [
  4930. "GPL-2.0-or-later"
  4931. ],
  4932. "authors": [
  4933. {
  4934. "name": "bojanz",
  4935. "homepage": "https://www.drupal.org/user/86106"
  4936. },
  4937. {
  4938. "name": "Centarro",
  4939. "homepage": "https://www.drupal.org/user/3661446"
  4940. },
  4941. {
  4942. "name": "dawehner",
  4943. "homepage": "https://www.drupal.org/user/99340"
  4944. },
  4945. {
  4946. "name": "geek-merlin",
  4947. "homepage": "https://www.drupal.org/user/229048"
  4948. },
  4949. {
  4950. "name": "joachim",
  4951. "homepage": "https://www.drupal.org/user/107701"
  4952. },
  4953. {
  4954. "name": "jsacksick",
  4955. "homepage": "https://www.drupal.org/user/972218"
  4956. },
  4957. {
  4958. "name": "oknate",
  4959. "homepage": "https://www.drupal.org/user/471638"
  4960. },
  4961. {
  4962. "name": "podarok",
  4963. "homepage": "https://www.drupal.org/user/116002"
  4964. },
  4965. {
  4966. "name": "ram4nd",
  4967. "homepage": "https://www.drupal.org/user/601534"
  4968. },
  4969. {
  4970. "name": "rszrama",
  4971. "homepage": "https://www.drupal.org/user/49344"
  4972. },
  4973. {
  4974. "name": "slashrsm",
  4975. "homepage": "https://www.drupal.org/user/744628"
  4976. },
  4977. {
  4978. "name": "webflo",
  4979. "homepage": "https://www.drupal.org/user/254778"
  4980. }
  4981. ],
  4982. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  4983. "homepage": "https://www.drupal.org/project/inline_entity_form",
  4984. "support": {
  4985. "source": "https://git.drupalcode.org/project/inline_entity_form"
  4986. }
  4987. },
  4988. {
  4989. "name": "drupal/jquery_ui",
  4990. "version": "1.6.0",
  4991. "source": {
  4992. "type": "git",
  4993. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  4994. "reference": "8.x-1.6"
  4995. },
  4996. "dist": {
  4997. "type": "zip",
  4998. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip",
  4999. "reference": "8.x-1.6",
  5000. "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0"
  5001. },
  5002. "require": {
  5003. "drupal/core": "^9.2 || ^10"
  5004. },
  5005. "type": "drupal-module",
  5006. "extra": {
  5007. "drupal": {
  5008. "version": "8.x-1.6",
  5009. "datestamp": "1668521197",
  5010. "security-coverage": {
  5011. "status": "covered",
  5012. "message": "Covered by Drupal's security advisory policy"
  5013. }
  5014. }
  5015. },
  5016. "notification-url": "https://packages.drupal.org/8/downloads",
  5017. "license": [
  5018. "GPL-2.0-or-later"
  5019. ],
  5020. "authors": [
  5021. {
  5022. "name": "bnjmnm",
  5023. "homepage": "https://www.drupal.org/user/2369194"
  5024. },
  5025. {
  5026. "name": "jjeff",
  5027. "homepage": "https://www.drupal.org/user/17190"
  5028. },
  5029. {
  5030. "name": "lauriii",
  5031. "homepage": "https://www.drupal.org/user/1078742"
  5032. },
  5033. {
  5034. "name": "litwol",
  5035. "homepage": "https://www.drupal.org/user/78134"
  5036. },
  5037. {
  5038. "name": "mfb",
  5039. "homepage": "https://www.drupal.org/user/12302"
  5040. },
  5041. {
  5042. "name": "mfer",
  5043. "homepage": "https://www.drupal.org/user/25701"
  5044. },
  5045. {
  5046. "name": "mikelutz",
  5047. "homepage": "https://www.drupal.org/user/2972409"
  5048. },
  5049. {
  5050. "name": "nod_",
  5051. "homepage": "https://www.drupal.org/user/598310"
  5052. },
  5053. {
  5054. "name": "phenaproxima",
  5055. "homepage": "https://www.drupal.org/user/205645"
  5056. },
  5057. {
  5058. "name": "RobLoach",
  5059. "homepage": "https://www.drupal.org/user/61114"
  5060. },
  5061. {
  5062. "name": "sun",
  5063. "homepage": "https://www.drupal.org/user/54136"
  5064. },
  5065. {
  5066. "name": "webchick",
  5067. "homepage": "https://www.drupal.org/user/24967"
  5068. },
  5069. {
  5070. "name": "Wim Leers",
  5071. "homepage": "https://www.drupal.org/user/99777"
  5072. },
  5073. {
  5074. "name": "zrpnr",
  5075. "homepage": "https://www.drupal.org/user/1448368"
  5076. }
  5077. ],
  5078. "description": "Provides jQuery UI library.",
  5079. "homepage": "https://www.drupal.org/project/jquery_ui",
  5080. "support": {
  5081. "source": "https://git.drupalcode.org/project/jquery_ui"
  5082. }
  5083. },
  5084. {
  5085. "name": "drupal/jquery_ui_datepicker",
  5086. "version": "2.0.0",
  5087. "source": {
  5088. "type": "git",
  5089. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  5090. "reference": "2.0.0"
  5091. },
  5092. "dist": {
  5093. "type": "zip",
  5094. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.0.0.zip",
  5095. "reference": "2.0.0",
  5096. "shasum": "ce40cf8ab400866bffda1ac3f7e4a5ac20bb3ae5"
  5097. },
  5098. "require": {
  5099. "drupal/core": "^9.2 || ^10",
  5100. "drupal/jquery_ui": "^1.6"
  5101. },
  5102. "type": "drupal-module",
  5103. "extra": {
  5104. "drupal": {
  5105. "version": "2.0.0",
  5106. "datestamp": "1670871494",
  5107. "security-coverage": {
  5108. "status": "covered",
  5109. "message": "Covered by Drupal's security advisory policy"
  5110. }
  5111. }
  5112. },
  5113. "notification-url": "https://packages.drupal.org/8/downloads",
  5114. "license": [
  5115. "GPL-2.0-or-later"
  5116. ],
  5117. "authors": [
  5118. {
  5119. "name": "bnjmnm",
  5120. "homepage": "https://www.drupal.org/user/2369194"
  5121. },
  5122. {
  5123. "name": "jrockowitz",
  5124. "homepage": "https://www.drupal.org/user/371407"
  5125. },
  5126. {
  5127. "name": "lauriii",
  5128. "homepage": "https://www.drupal.org/user/1078742"
  5129. },
  5130. {
  5131. "name": "nod_",
  5132. "homepage": "https://www.drupal.org/user/598310"
  5133. },
  5134. {
  5135. "name": "phenaproxima",
  5136. "homepage": "https://www.drupal.org/user/205645"
  5137. },
  5138. {
  5139. "name": "zrpnr",
  5140. "homepage": "https://www.drupal.org/user/1448368"
  5141. }
  5142. ],
  5143. "description": "Provides jQuery UI Datepicker library.",
  5144. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  5145. "support": {
  5146. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  5147. }
  5148. },
  5149. {
  5150. "name": "drupal/jquery_ui_draggable",
  5151. "version": "2.0.0",
  5152. "source": {
  5153. "type": "git",
  5154. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  5155. "reference": "2.0.0"
  5156. },
  5157. "dist": {
  5158. "type": "zip",
  5159. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.0.0.zip",
  5160. "reference": "2.0.0",
  5161. "shasum": "13a8f4bf037449cd176ddb967fc9cba9a466a705"
  5162. },
  5163. "require": {
  5164. "drupal/core": "^9.2 || ^10",
  5165. "drupal/jquery_ui": "^1.6"
  5166. },
  5167. "type": "drupal-module",
  5168. "extra": {
  5169. "drupal": {
  5170. "version": "2.0.0",
  5171. "datestamp": "1670871516",
  5172. "security-coverage": {
  5173. "status": "covered",
  5174. "message": "Covered by Drupal's security advisory policy"
  5175. }
  5176. }
  5177. },
  5178. "notification-url": "https://packages.drupal.org/8/downloads",
  5179. "license": [
  5180. "GPL-2.0-or-later"
  5181. ],
  5182. "authors": [
  5183. {
  5184. "name": "bnjmnm",
  5185. "homepage": "https://www.drupal.org/user/2369194"
  5186. },
  5187. {
  5188. "name": "lauriii",
  5189. "homepage": "https://www.drupal.org/user/1078742"
  5190. },
  5191. {
  5192. "name": "zrpnr",
  5193. "homepage": "https://www.drupal.org/user/1448368"
  5194. }
  5195. ],
  5196. "description": "Provides jQuery UI Draggable library.",
  5197. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  5198. "support": {
  5199. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  5200. }
  5201. },
  5202. {
  5203. "name": "drupal/jquery_ui_droppable",
  5204. "version": "1.5.0",
  5205. "source": {
  5206. "type": "git",
  5207. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  5208. "reference": "8.x-1.5"
  5209. },
  5210. "dist": {
  5211. "type": "zip",
  5212. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.5.zip",
  5213. "reference": "8.x-1.5",
  5214. "shasum": "ee9fec147493ce6c81fdf95ec463f7092606e913"
  5215. },
  5216. "require": {
  5217. "drupal/core": "^9.2 || ^10",
  5218. "drupal/jquery_ui": "^1.5",
  5219. "drupal/jquery_ui_draggable": "*"
  5220. },
  5221. "type": "drupal-module",
  5222. "extra": {
  5223. "drupal": {
  5224. "version": "8.x-1.5",
  5225. "datestamp": "1668452746",
  5226. "security-coverage": {
  5227. "status": "covered",
  5228. "message": "Covered by Drupal's security advisory policy"
  5229. }
  5230. }
  5231. },
  5232. "notification-url": "https://packages.drupal.org/8/downloads",
  5233. "license": [
  5234. "GPL-2.0-or-later"
  5235. ],
  5236. "authors": [
  5237. {
  5238. "name": "bnjmnm",
  5239. "homepage": "https://www.drupal.org/user/2369194"
  5240. },
  5241. {
  5242. "name": "lauriii",
  5243. "homepage": "https://www.drupal.org/user/1078742"
  5244. },
  5245. {
  5246. "name": "zrpnr",
  5247. "homepage": "https://www.drupal.org/user/1448368"
  5248. }
  5249. ],
  5250. "description": "Provides jQuery UI Droppable library.",
  5251. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  5252. "support": {
  5253. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  5254. }
  5255. },
  5256. {
  5257. "name": "drupal/jquery_ui_slider",
  5258. "version": "2.0.0",
  5259. "source": {
  5260. "type": "git",
  5261. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  5262. "reference": "2.0.0"
  5263. },
  5264. "dist": {
  5265. "type": "zip",
  5266. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.0.0.zip",
  5267. "reference": "2.0.0",
  5268. "shasum": "86b7d71e91013cffafb8021dbf8047745ebc5fd6"
  5269. },
  5270. "require": {
  5271. "drupal/core": "^9.2 || ^10",
  5272. "drupal/jquery_ui": "^1.6"
  5273. },
  5274. "type": "drupal-module",
  5275. "extra": {
  5276. "drupal": {
  5277. "version": "2.0.0",
  5278. "datestamp": "1670871571",
  5279. "security-coverage": {
  5280. "status": "covered",
  5281. "message": "Covered by Drupal's security advisory policy"
  5282. }
  5283. }
  5284. },
  5285. "notification-url": "https://packages.drupal.org/8/downloads",
  5286. "license": [
  5287. "GPL-2.0-or-later"
  5288. ],
  5289. "authors": [
  5290. {
  5291. "name": "bnjmnm",
  5292. "homepage": "https://www.drupal.org/user/2369194"
  5293. },
  5294. {
  5295. "name": "lauriii",
  5296. "homepage": "https://www.drupal.org/user/1078742"
  5297. },
  5298. {
  5299. "name": "zrpnr",
  5300. "homepage": "https://www.drupal.org/user/1448368"
  5301. }
  5302. ],
  5303. "description": "Provides jQuery UI Slider library.",
  5304. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  5305. "support": {
  5306. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  5307. }
  5308. },
  5309. {
  5310. "name": "drupal/jquery_ui_touch_punch",
  5311. "version": "1.1.0",
  5312. "source": {
  5313. "type": "git",
  5314. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  5315. "reference": "1.1.0"
  5316. },
  5317. "dist": {
  5318. "type": "zip",
  5319. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.0.zip",
  5320. "reference": "1.1.0",
  5321. "shasum": "4b7e50a98246dfa6ef48e5b12c70277873902824"
  5322. },
  5323. "require": {
  5324. "drupal/core": "^8 || ^9 || ^10",
  5325. "drupal/jquery_ui": "^1.0",
  5326. "politsin/jquery-ui-touch-punch": "^1.0"
  5327. },
  5328. "type": "drupal-module",
  5329. "extra": {
  5330. "drupal": {
  5331. "version": "1.1.0",
  5332. "datestamp": "1662744607",
  5333. "security-coverage": {
  5334. "status": "covered",
  5335. "message": "Covered by Drupal's security advisory policy"
  5336. }
  5337. }
  5338. },
  5339. "notification-url": "https://packages.drupal.org/8/downloads",
  5340. "license": [
  5341. "GPL-2.0-or-later"
  5342. ],
  5343. "authors": [
  5344. {
  5345. "name": "Naveen Valecha",
  5346. "homepage": "https://drupal.org/u/naveenvalecha",
  5347. "role": "Maintainer"
  5348. },
  5349. {
  5350. "name": "naveenvalecha",
  5351. "homepage": "https://www.drupal.org/user/2665733"
  5352. }
  5353. ],
  5354. "description": "Provides jQuery UI Touch Punch library.",
  5355. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5356. "keywords": [
  5357. "Drupal",
  5358. "jquery_ui_touch_punch"
  5359. ],
  5360. "support": {
  5361. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  5362. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch"
  5363. }
  5364. },
  5365. {
  5366. "name": "drupal/link_attributes",
  5367. "version": "1.14.0",
  5368. "source": {
  5369. "type": "git",
  5370. "url": "https://git.drupalcode.org/project/link_attributes.git",
  5371. "reference": "8.x-1.14"
  5372. },
  5373. "dist": {
  5374. "type": "zip",
  5375. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.14.zip",
  5376. "reference": "8.x-1.14",
  5377. "shasum": "fa4f27ecaed7e6b3c58c0adc679918a9beb7ded5"
  5378. },
  5379. "require": {
  5380. "drupal/core": "^9 || ^10"
  5381. },
  5382. "type": "drupal-module",
  5383. "extra": {
  5384. "drupal": {
  5385. "version": "8.x-1.14",
  5386. "datestamp": "1687393687",
  5387. "security-coverage": {
  5388. "status": "covered",
  5389. "message": "Covered by Drupal's security advisory policy"
  5390. }
  5391. }
  5392. },
  5393. "notification-url": "https://packages.drupal.org/8/downloads",
  5394. "license": [
  5395. "GPL-2.0-or-later"
  5396. ],
  5397. "authors": [
  5398. {
  5399. "name": "larowlan",
  5400. "homepage": "https://www.drupal.org/user/395439"
  5401. }
  5402. ],
  5403. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5404. "homepage": "https://www.drupal.org/project/link_attributes",
  5405. "keywords": [
  5406. "Drupal"
  5407. ],
  5408. "support": {
  5409. "source": "https://git.drupalcode.org/project/link_attributes",
  5410. "issues": "https://www.drupal.org/project/issues/link_attributes"
  5411. }
  5412. },
  5413. {
  5414. "name": "drupal/linked_field",
  5415. "version": "1.5.0",
  5416. "source": {
  5417. "type": "git",
  5418. "url": "https://git.drupalcode.org/project/linked_field.git",
  5419. "reference": "8.x-1.5"
  5420. },
  5421. "dist": {
  5422. "type": "zip",
  5423. "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.5.zip",
  5424. "reference": "8.x-1.5",
  5425. "shasum": "31ed8008d2f88c693334f6faad03112280820fe0"
  5426. },
  5427. "require": {
  5428. "drupal/core": "^8.8 || ^9 || ^10"
  5429. },
  5430. "type": "drupal-module",
  5431. "extra": {
  5432. "drupal": {
  5433. "version": "8.x-1.5",
  5434. "datestamp": "1677239525",
  5435. "security-coverage": {
  5436. "status": "covered",
  5437. "message": "Covered by Drupal's security advisory policy"
  5438. }
  5439. }
  5440. },
  5441. "notification-url": "https://packages.drupal.org/8/downloads",
  5442. "license": [
  5443. "GPL-2.0-or-later"
  5444. ],
  5445. "authors": [
  5446. {
  5447. "name": "jcnventura",
  5448. "homepage": "https://www.drupal.org/user/122464"
  5449. },
  5450. {
  5451. "name": "yannickoo",
  5452. "homepage": "https://www.drupal.org/user/531118"
  5453. }
  5454. ],
  5455. "description": "Adds the functionality to link fields to a specific destination.",
  5456. "homepage": "https://www.drupal.org/project/linked_field",
  5457. "support": {
  5458. "source": "https://git.drupalcode.org/project/linked_field"
  5459. }
  5460. },
  5461. {
  5462. "name": "drupal/linkit",
  5463. "version": "6.1.2",
  5464. "source": {
  5465. "type": "git",
  5466. "url": "https://git.drupalcode.org/project/linkit.git",
  5467. "reference": "6.1.2"
  5468. },
  5469. "dist": {
  5470. "type": "zip",
  5471. "url": "https://ftp.drupal.org/files/projects/linkit-6.1.2.zip",
  5472. "reference": "6.1.2",
  5473. "shasum": "63fb311d2b78df81a9a588330429b640ec7da0e8"
  5474. },
  5475. "require": {
  5476. "drupal/core": "^10.1"
  5477. },
  5478. "require-dev": {
  5479. "drupal/ckeditor": "*",
  5480. "drupal/imce": "*"
  5481. },
  5482. "type": "drupal-module",
  5483. "extra": {
  5484. "drupal": {
  5485. "version": "6.1.2",
  5486. "datestamp": "1696865478",
  5487. "security-coverage": {
  5488. "status": "covered",
  5489. "message": "Covered by Drupal's security advisory policy"
  5490. }
  5491. }
  5492. },
  5493. "notification-url": "https://packages.drupal.org/8/downloads",
  5494. "license": [
  5495. "GPL-2.0-or-later"
  5496. ],
  5497. "authors": [
  5498. {
  5499. "name": "Emil Stjerneman",
  5500. "homepage": "https://stjerneman.com",
  5501. "email": "emil@stjerneman.com",
  5502. "role": "Maintainer"
  5503. },
  5504. {
  5505. "name": "johnwebdev",
  5506. "homepage": "https://www.drupal.org/user/3331569"
  5507. },
  5508. {
  5509. "name": "mark_fullmer",
  5510. "homepage": "https://www.drupal.org/user/2612816"
  5511. }
  5512. ],
  5513. "description": "Linkit - Enriched linking experience",
  5514. "homepage": "http://drupal.org/project/linkit",
  5515. "support": {
  5516. "source": "http://cgit.drupalcode.org/linkit",
  5517. "issues": "http://drupal.org/project/linkit"
  5518. }
  5519. },
  5520. {
  5521. "name": "drupal/login_destination",
  5522. "version": "dev-2.x",
  5523. "source": {
  5524. "type": "git",
  5525. "url": "https://git.drupalcode.org/project/login_destination.git",
  5526. "reference": "5ba35c477e9b902b08c70c60e1d28eff11cc8e9f"
  5527. },
  5528. "require": {
  5529. "drupal/core": "^8.7.10 || ^9 || ^10"
  5530. },
  5531. "require-dev": {
  5532. "drupal/admin_toolbar": "^1.23",
  5533. "drupal/admin_toolbar_tools": "*"
  5534. },
  5535. "type": "drupal-module",
  5536. "extra": {
  5537. "branch-alias": {
  5538. "dev-2.x": "2.x-dev"
  5539. },
  5540. "drupal": {
  5541. "version": "8.x-2.0-beta5+3-dev",
  5542. "datestamp": "1680181961",
  5543. "security-coverage": {
  5544. "status": "not-covered",
  5545. "message": "Dev releases are not covered by Drupal security advisories."
  5546. }
  5547. }
  5548. },
  5549. "notification-url": "https://packages.drupal.org/8/downloads",
  5550. "license": [
  5551. "GPL-2.0-or-later"
  5552. ],
  5553. "authors": [
  5554. {
  5555. "name": "rsvelko",
  5556. "homepage": "https://www.drupal.org/u/rsvelko",
  5557. "role": "Creator, Maintainer"
  5558. },
  5559. {
  5560. "name": "Other Contributors",
  5561. "homepage": "https://www.drupal.org/node/69051/committers",
  5562. "role": "Contributors"
  5563. },
  5564. {
  5565. "name": "ddrozdik",
  5566. "homepage": "https://www.drupal.org/user/574124"
  5567. },
  5568. {
  5569. "name": "jng12",
  5570. "homepage": "https://www.drupal.org/user/204316"
  5571. },
  5572. {
  5573. "name": "marcp",
  5574. "homepage": "https://www.drupal.org/user/20885"
  5575. },
  5576. {
  5577. "name": "mithy",
  5578. "homepage": "https://www.drupal.org/user/258911"
  5579. },
  5580. {
  5581. "name": "moshe weitzman",
  5582. "homepage": "https://www.drupal.org/user/23"
  5583. },
  5584. {
  5585. "name": "Oliver Huynh",
  5586. "homepage": "https://www.drupal.org/user/243730"
  5587. },
  5588. {
  5589. "name": "perennial.sky",
  5590. "homepage": "https://www.drupal.org/user/2622667"
  5591. },
  5592. {
  5593. "name": "rsvelko",
  5594. "homepage": "https://www.drupal.org/user/337401"
  5595. }
  5596. ],
  5597. "description": "Customizes the destination the user is redirected to after login/logout/registration/one-time login.",
  5598. "homepage": "https://drupal.org/project/login_destination",
  5599. "support": {
  5600. "source": "https://git.drupalcode.org/project/login_destination",
  5601. "issues": "https://drupal.org/project/issues/login_destination"
  5602. }
  5603. },
  5604. {
  5605. "name": "drupal/maillog",
  5606. "version": "dev-1.x",
  5607. "source": {
  5608. "type": "git",
  5609. "url": "https://git.drupalcode.org/project/maillog.git",
  5610. "reference": "baa5d6ca739e6aecfdf28461d54911a2f6a038a4"
  5611. },
  5612. "require": {
  5613. "drupal/core": "^9 || ^10"
  5614. },
  5615. "type": "drupal-module",
  5616. "extra": {
  5617. "branch-alias": {
  5618. "dev-1.x": "1.x-dev"
  5619. },
  5620. "drupal": {
  5621. "version": "8.x-1.1+2-dev",
  5622. "datestamp": "1686405787",
  5623. "security-coverage": {
  5624. "status": "not-covered",
  5625. "message": "Dev releases are not covered by Drupal security advisories."
  5626. }
  5627. }
  5628. },
  5629. "notification-url": "https://packages.drupal.org/8/downloads",
  5630. "license": [
  5631. "GPL-2.0-or-later"
  5632. ],
  5633. "authors": [
  5634. {
  5635. "name": "Berdir",
  5636. "homepage": "https://www.drupal.org/user/214652"
  5637. },
  5638. {
  5639. "name": "DamienMcKenna",
  5640. "homepage": "https://www.drupal.org/user/108450"
  5641. },
  5642. {
  5643. "name": "miro_dietiker",
  5644. "homepage": "https://www.drupal.org/user/227761"
  5645. },
  5646. {
  5647. "name": "pluess",
  5648. "homepage": "https://www.drupal.org/user/84659"
  5649. }
  5650. ],
  5651. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  5652. "homepage": "https://www.drupal.org/project/maillog",
  5653. "support": {
  5654. "source": "https://git.drupalcode.org/project/maillog"
  5655. }
  5656. },
  5657. {
  5658. "name": "drupal/mailsystem",
  5659. "version": "4.4.0",
  5660. "source": {
  5661. "type": "git",
  5662. "url": "https://git.drupalcode.org/project/mailsystem.git",
  5663. "reference": "8.x-4.4"
  5664. },
  5665. "dist": {
  5666. "type": "zip",
  5667. "url": "https://ftp.drupal.org/files/projects/mailsystem-8.x-4.4.zip",
  5668. "reference": "8.x-4.4",
  5669. "shasum": "49b2e9efd090cdb4a282c7638b1c76d6723c47b6"
  5670. },
  5671. "require": {
  5672. "drupal/core": "^9 || ^10"
  5673. },
  5674. "type": "drupal-module",
  5675. "extra": {
  5676. "drupal": {
  5677. "version": "8.x-4.4",
  5678. "datestamp": "1657576306",
  5679. "security-coverage": {
  5680. "status": "covered",
  5681. "message": "Covered by Drupal's security advisory policy"
  5682. }
  5683. }
  5684. },
  5685. "notification-url": "https://packages.drupal.org/8/downloads",
  5686. "license": [
  5687. "GPL-2.0-or-later"
  5688. ],
  5689. "authors": [
  5690. {
  5691. "name": "Berdir",
  5692. "homepage": "https://www.drupal.org/user/214652"
  5693. },
  5694. {
  5695. "name": "Les Lim",
  5696. "homepage": "https://www.drupal.org/user/84263"
  5697. },
  5698. {
  5699. "name": "Manuel Garcia",
  5700. "homepage": "https://www.drupal.org/user/213194"
  5701. },
  5702. {
  5703. "name": "miro_dietiker",
  5704. "homepage": "https://www.drupal.org/user/227761"
  5705. },
  5706. {
  5707. "name": "Nafes",
  5708. "homepage": "https://www.drupal.org/user/2489926"
  5709. },
  5710. {
  5711. "name": "pillarsdotnet",
  5712. "homepage": "https://www.drupal.org/user/36148"
  5713. }
  5714. ],
  5715. "description": "Mail System",
  5716. "homepage": "https://www.drupal.org/project/mailsystem",
  5717. "support": {
  5718. "source": "https://git.drupalcode.org/project/mailsystem"
  5719. }
  5720. },
  5721. {
  5722. "name": "drupal/matomo",
  5723. "version": "1.23.0",
  5724. "source": {
  5725. "type": "git",
  5726. "url": "https://git.drupalcode.org/project/matomo.git",
  5727. "reference": "8.x-1.23"
  5728. },
  5729. "dist": {
  5730. "type": "zip",
  5731. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.23.zip",
  5732. "reference": "8.x-1.23",
  5733. "shasum": "c2dbf12878388c5859e64f1e74a9ca5110d1623f"
  5734. },
  5735. "require": {
  5736. "drupal/core": "^9.0 || ^10"
  5737. },
  5738. "conflict": {
  5739. "drupal/csp": "<1.12"
  5740. },
  5741. "require-dev": {
  5742. "drupal/csp": "~1.12",
  5743. "drupal/php": "~1.1",
  5744. "drupal/token": "~1.9"
  5745. },
  5746. "type": "drupal-module",
  5747. "extra": {
  5748. "drupal": {
  5749. "version": "8.x-1.23",
  5750. "datestamp": "1700936102",
  5751. "security-coverage": {
  5752. "status": "covered",
  5753. "message": "Covered by Drupal's security advisory policy"
  5754. }
  5755. }
  5756. },
  5757. "notification-url": "https://packages.drupal.org/8/downloads",
  5758. "license": [
  5759. "GPL-2.0-or-later"
  5760. ],
  5761. "authors": [
  5762. {
  5763. "name": "C-Logemann",
  5764. "homepage": "https://www.drupal.org/user/218368"
  5765. },
  5766. {
  5767. "name": "Grimreaper",
  5768. "homepage": "https://www.drupal.org/user/2388214"
  5769. },
  5770. {
  5771. "name": "hass",
  5772. "homepage": "https://www.drupal.org/user/85918"
  5773. },
  5774. {
  5775. "name": "shelane",
  5776. "homepage": "https://www.drupal.org/user/2674989"
  5777. }
  5778. ],
  5779. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  5780. "homepage": "https://www.drupal.org/project/matomo",
  5781. "support": {
  5782. "source": "https://git.drupalcode.org/project/matomo"
  5783. }
  5784. },
  5785. {
  5786. "name": "drupal/maxlength",
  5787. "version": "2.1.2",
  5788. "source": {
  5789. "type": "git",
  5790. "url": "https://git.drupalcode.org/project/maxlength.git",
  5791. "reference": "2.1.2"
  5792. },
  5793. "dist": {
  5794. "type": "zip",
  5795. "url": "https://ftp.drupal.org/files/projects/maxlength-2.1.2.zip",
  5796. "reference": "2.1.2",
  5797. "shasum": "97015e4d1065770a92953c9f37fef5d55b360cf6"
  5798. },
  5799. "require": {
  5800. "drupal/core": "^9.2 || ^10"
  5801. },
  5802. "type": "drupal-module",
  5803. "extra": {
  5804. "drupal": {
  5805. "version": "2.1.2",
  5806. "datestamp": "1689974531",
  5807. "security-coverage": {
  5808. "status": "covered",
  5809. "message": "Covered by Drupal's security advisory policy"
  5810. }
  5811. }
  5812. },
  5813. "notification-url": "https://packages.drupal.org/8/downloads",
  5814. "license": [
  5815. "GPL-2.0-or-later"
  5816. ],
  5817. "authors": [
  5818. {
  5819. "name": "Marius Scurtescu (mariuss)",
  5820. "homepage": "https://www.drupal.org/u/mariuss",
  5821. "role": "Maintainer"
  5822. },
  5823. {
  5824. "name": "Clayton Dewey (cedewey)",
  5825. "homepage": "https://www.drupal.org/u/cedewey",
  5826. "role": "Maintainer"
  5827. },
  5828. {
  5829. "name": "Daniel Wehner (dawehner)",
  5830. "homepage": "https://www.drupal.org/u/dawehner",
  5831. "role": "Maintainer"
  5832. },
  5833. {
  5834. "name": "Paulino Michelazzo (pmichelazzo)",
  5835. "homepage": "https://www.drupal.org/u/pmichelazzo",
  5836. "role": "Maintainer"
  5837. },
  5838. {
  5839. "name": "Jeff Hipp (hipp2bsquare)",
  5840. "homepage": "https://www.drupal.org/u/hipp2bsquare",
  5841. "role": "Maintainer"
  5842. },
  5843. {
  5844. "name": "Steven DuBois (srdtwc)",
  5845. "homepage": "https://www.drupal.org/u/srdtwc",
  5846. "role": "Maintainer"
  5847. },
  5848. {
  5849. "name": "srdtwc",
  5850. "homepage": "https://www.drupal.org/user/3422763"
  5851. }
  5852. ],
  5853. "description": "MaxLength allows a soft or hard character limit to be set on titles, text fields and link fields.",
  5854. "homepage": "https://www.drupal.org/project/maxlength",
  5855. "support": {
  5856. "source": "https://git.drupalcode.org/project/maxlength",
  5857. "issues": "https://www.drupal.org/project/issues/maxlength"
  5858. }
  5859. },
  5860. {
  5861. "name": "drupal/menu_admin_per_menu",
  5862. "version": "1.5.0",
  5863. "source": {
  5864. "type": "git",
  5865. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  5866. "reference": "8.x-1.5"
  5867. },
  5868. "dist": {
  5869. "type": "zip",
  5870. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.5.zip",
  5871. "reference": "8.x-1.5",
  5872. "shasum": "ec8c7a4a064aa285dfb722dad264da9936fc81b6"
  5873. },
  5874. "require": {
  5875. "drupal/core": "^9 || ^10"
  5876. },
  5877. "type": "drupal-module",
  5878. "extra": {
  5879. "drupal": {
  5880. "version": "8.x-1.5",
  5881. "datestamp": "1660918821",
  5882. "security-coverage": {
  5883. "status": "covered",
  5884. "message": "Covered by Drupal's security advisory policy"
  5885. }
  5886. }
  5887. },
  5888. "notification-url": "https://packages.drupal.org/8/downloads",
  5889. "license": [
  5890. "GPL-2.0-or-later"
  5891. ],
  5892. "authors": [
  5893. {
  5894. "name": "anrikun",
  5895. "homepage": "https://www.drupal.org/user/410199"
  5896. },
  5897. {
  5898. "name": "JeroenT",
  5899. "homepage": "https://www.drupal.org/user/2228934"
  5900. },
  5901. {
  5902. "name": "jonas139",
  5903. "homepage": "https://www.drupal.org/user/2873401"
  5904. },
  5905. {
  5906. "name": "mkdok",
  5907. "homepage": "https://www.drupal.org/user/3308753"
  5908. }
  5909. ],
  5910. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  5911. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  5912. "support": {
  5913. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  5914. }
  5915. },
  5916. {
  5917. "name": "drupal/menu_block",
  5918. "version": "dev-1.x",
  5919. "source": {
  5920. "type": "git",
  5921. "url": "https://git.drupalcode.org/project/menu_block.git",
  5922. "reference": "aafb3953b765e93d4de49c4fb6130a49304e6f2a"
  5923. },
  5924. "require": {
  5925. "drupal/core": "^9.1 || ^10"
  5926. },
  5927. "type": "drupal-module",
  5928. "extra": {
  5929. "branch-alias": {
  5930. "dev-1.x": "1.x-dev"
  5931. },
  5932. "drupal": {
  5933. "version": "8.x-1.9+1-dev",
  5934. "datestamp": "1667434044",
  5935. "security-coverage": {
  5936. "status": "not-covered",
  5937. "message": "Dev releases are not covered by Drupal security advisories."
  5938. }
  5939. }
  5940. },
  5941. "notification-url": "https://packages.drupal.org/8/downloads",
  5942. "license": [
  5943. "GPL-2.0-or-later"
  5944. ],
  5945. "authors": [
  5946. {
  5947. "name": "Dave Reid",
  5948. "homepage": "https://www.drupal.org/user/53892"
  5949. },
  5950. {
  5951. "name": "joelpittet",
  5952. "homepage": "https://www.drupal.org/user/160302"
  5953. },
  5954. {
  5955. "name": "JohnAlbin",
  5956. "homepage": "https://www.drupal.org/user/32095"
  5957. },
  5958. {
  5959. "name": "kim.pepper",
  5960. "homepage": "https://www.drupal.org/user/370574"
  5961. },
  5962. {
  5963. "name": "RenatoG",
  5964. "homepage": "https://www.drupal.org/user/3326031"
  5965. },
  5966. {
  5967. "name": "rrrob",
  5968. "homepage": "https://www.drupal.org/user/273533"
  5969. }
  5970. ],
  5971. "description": "Provides configurable blocks of menu links.",
  5972. "homepage": "https://www.drupal.org/project/menu_block",
  5973. "support": {
  5974. "source": "https://git.drupalcode.org/project/menu_block"
  5975. }
  5976. },
  5977. {
  5978. "name": "drupal/menu_position",
  5979. "version": "dev-1.x",
  5980. "source": {
  5981. "type": "git",
  5982. "url": "https://git.drupalcode.org/project/menu_position.git",
  5983. "reference": "f88cef07a70af63337a82652b9224a9c0b08b5b2"
  5984. },
  5985. "require": {
  5986. "drupal/core": "^8 || ^9 || ^10"
  5987. },
  5988. "type": "drupal-module",
  5989. "extra": {
  5990. "branch-alias": {
  5991. "dev-1.x": "1.x-dev"
  5992. },
  5993. "drupal": {
  5994. "version": "8.x-1.0+6-dev",
  5995. "datestamp": "1685505680",
  5996. "security-coverage": {
  5997. "status": "not-covered",
  5998. "message": "Dev releases are not covered by Drupal security advisories."
  5999. }
  6000. }
  6001. },
  6002. "notification-url": "https://packages.drupal.org/8/downloads",
  6003. "license": [
  6004. "GPL-2.0-or-later"
  6005. ],
  6006. "authors": [
  6007. {
  6008. "name": "BarisW",
  6009. "homepage": "https://www.drupal.org/user/107229"
  6010. },
  6011. {
  6012. "name": "joelpittet",
  6013. "homepage": "https://www.drupal.org/user/160302"
  6014. },
  6015. {
  6016. "name": "JohnAlbin",
  6017. "homepage": "https://www.drupal.org/user/32095"
  6018. },
  6019. {
  6020. "name": "lbainbridge",
  6021. "homepage": "https://www.drupal.org/user/2406996"
  6022. },
  6023. {
  6024. "name": "Rajab Natshah",
  6025. "homepage": "https://www.drupal.org/user/1414312"
  6026. },
  6027. {
  6028. "name": "Sutharsan",
  6029. "homepage": "https://www.drupal.org/user/73854"
  6030. }
  6031. ],
  6032. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  6033. "homepage": "https://www.drupal.org/project/menu_position",
  6034. "support": {
  6035. "source": "https://git.drupalcode.org/project/menu_position",
  6036. "issues": "https://www.drupal.org/project/issues/menu_position"
  6037. }
  6038. },
  6039. {
  6040. "name": "drupal/mimemail",
  6041. "version": "1.0.0-alpha6",
  6042. "source": {
  6043. "type": "git",
  6044. "url": "https://git.drupalcode.org/project/mimemail.git",
  6045. "reference": "8.x-1.0-alpha6"
  6046. },
  6047. "dist": {
  6048. "type": "zip",
  6049. "url": "https://ftp.drupal.org/files/projects/mimemail-8.x-1.0-alpha6.zip",
  6050. "reference": "8.x-1.0-alpha6",
  6051. "shasum": "c25246747dac4372c7d5a5a5fd0f276d9e468eff"
  6052. },
  6053. "require": {
  6054. "drupal/core": "^9.3 || ^10",
  6055. "drupal/mailsystem": "^4"
  6056. },
  6057. "require-dev": {
  6058. "drupal/rules": "^3"
  6059. },
  6060. "type": "drupal-module",
  6061. "extra": {
  6062. "drupal": {
  6063. "version": "8.x-1.0-alpha6",
  6064. "datestamp": "1697143284",
  6065. "security-coverage": {
  6066. "status": "not-covered",
  6067. "message": "Alpha releases are not covered by Drupal security advisories."
  6068. }
  6069. }
  6070. },
  6071. "notification-url": "https://packages.drupal.org/8/downloads",
  6072. "license": [
  6073. "GPL-2.0-or-later"
  6074. ],
  6075. "authors": [
  6076. {
  6077. "name": "TR",
  6078. "homepage": "https://www.drupal.org/user/202830"
  6079. }
  6080. ],
  6081. "description": "Sends MIME-encoded emails with embedded images and attachments.",
  6082. "homepage": "https://www.drupal.org/project/mimemail",
  6083. "support": {
  6084. "source": "https://git.drupalcode.org/project/mimemail",
  6085. "issues": "https://www.drupal.org/project/issues/mimemail"
  6086. }
  6087. },
  6088. {
  6089. "name": "drupal/notify",
  6090. "version": "2.0.0-beta1",
  6091. "source": {
  6092. "type": "git",
  6093. "url": "https://git.drupalcode.org/project/notify.git",
  6094. "reference": "2.0.0-beta1"
  6095. },
  6096. "dist": {
  6097. "type": "zip",
  6098. "url": "https://ftp.drupal.org/files/projects/notify-2.0.0-beta1.zip",
  6099. "reference": "2.0.0-beta1",
  6100. "shasum": "a0f06792b4aed38c8c466389ae4c03497c4c9270"
  6101. },
  6102. "require": {
  6103. "drupal/core": "^9 || ^10"
  6104. },
  6105. "type": "drupal-module",
  6106. "extra": {
  6107. "drupal": {
  6108. "version": "2.0.0-beta1",
  6109. "datestamp": "1699808614",
  6110. "security-coverage": {
  6111. "status": "not-covered",
  6112. "message": "Beta releases are not covered by Drupal security advisories."
  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": "gisle",
  6123. "homepage": "https://www.drupal.org/user/409554"
  6124. },
  6125. {
  6126. "name": "matt2000",
  6127. "homepage": "https://www.drupal.org/user/143172"
  6128. },
  6129. {
  6130. "name": "rik.scholten",
  6131. "homepage": "https://www.drupal.org/user/3661104"
  6132. }
  6133. ],
  6134. "description": "Enables notifications of new content and comments by e-mail.",
  6135. "homepage": "https://www.drupal.org/project/notify",
  6136. "support": {
  6137. "source": "https://git.drupalcode.org/project/notify"
  6138. }
  6139. },
  6140. {
  6141. "name": "drupal/page_manager",
  6142. "version": "4.0.0-rc2",
  6143. "source": {
  6144. "type": "git",
  6145. "url": "https://git.drupalcode.org/project/page_manager.git",
  6146. "reference": "8.x-4.0-rc2"
  6147. },
  6148. "dist": {
  6149. "type": "zip",
  6150. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc2.zip",
  6151. "reference": "8.x-4.0-rc2",
  6152. "shasum": "4a1e96284c5775343fbb4612072a2abfc83ebc33"
  6153. },
  6154. "require": {
  6155. "drupal/core": "^9.3 || ^10",
  6156. "drupal/ctools": "^3.11 || ^4.0"
  6157. },
  6158. "type": "drupal-module",
  6159. "extra": {
  6160. "drupal": {
  6161. "version": "8.x-4.0-rc2",
  6162. "datestamp": "1671210021",
  6163. "security-coverage": {
  6164. "status": "not-covered",
  6165. "message": "RC releases are not covered by Drupal security advisories."
  6166. }
  6167. },
  6168. "branch-alias": {
  6169. "dev-8.x-4.x": "4.x-dev"
  6170. }
  6171. },
  6172. "notification-url": "https://packages.drupal.org/8/downloads",
  6173. "license": [
  6174. "GPL-2.0-or-later"
  6175. ],
  6176. "authors": [
  6177. {
  6178. "name": "Tim Plunkett",
  6179. "homepage": "https://www.drupal.org/u/tim.plunkett",
  6180. "role": "Maintainer"
  6181. },
  6182. {
  6183. "name": "EclipseGc",
  6184. "homepage": "https://www.drupal.org/user/61203"
  6185. },
  6186. {
  6187. "name": "ivnish",
  6188. "homepage": "https://www.drupal.org/user/3547706"
  6189. },
  6190. {
  6191. "name": "japerry",
  6192. "homepage": "https://www.drupal.org/user/45640"
  6193. },
  6194. {
  6195. "name": "joelpittet",
  6196. "homepage": "https://www.drupal.org/user/160302"
  6197. },
  6198. {
  6199. "name": "manuel.adan",
  6200. "homepage": "https://www.drupal.org/user/516420"
  6201. },
  6202. {
  6203. "name": "phenaproxima",
  6204. "homepage": "https://www.drupal.org/user/205645"
  6205. }
  6206. ],
  6207. "description": "Provides a way to place blocks on a custom page.",
  6208. "homepage": "https://www.drupal.org/project/page_manager",
  6209. "support": {
  6210. "source": "https://git.drupal.org/project/page_manager.git",
  6211. "issues": "https://www.drupal.org/project/issues/page_manager",
  6212. "irc": "irc://irc.freenode.org/drupal-contribute"
  6213. }
  6214. },
  6215. {
  6216. "name": "drupal/pagerer",
  6217. "version": "3.0.0",
  6218. "source": {
  6219. "type": "git",
  6220. "url": "https://git.drupalcode.org/project/pagerer.git",
  6221. "reference": "3.0.0"
  6222. },
  6223. "dist": {
  6224. "type": "zip",
  6225. "url": "https://ftp.drupal.org/files/projects/pagerer-3.0.0.zip",
  6226. "reference": "3.0.0",
  6227. "shasum": "8b81271842b68399c1c58d0809cf1c737fa2aa1c"
  6228. },
  6229. "require": {
  6230. "drupal/core": "^10"
  6231. },
  6232. "type": "drupal-module",
  6233. "extra": {
  6234. "drupal": {
  6235. "version": "3.0.0",
  6236. "datestamp": "1663962586",
  6237. "security-coverage": {
  6238. "status": "covered",
  6239. "message": "Covered by Drupal's security advisory policy"
  6240. }
  6241. }
  6242. },
  6243. "notification-url": "https://packages.drupal.org/8/downloads",
  6244. "license": [
  6245. "GPL-2.0-or-later"
  6246. ],
  6247. "authors": [
  6248. {
  6249. "name": "mondrake",
  6250. "homepage": "https://www.drupal.org/user/1307444"
  6251. }
  6252. ],
  6253. "description": "Configurable pager styles.",
  6254. "homepage": "https://www.drupal.org/project/pagerer",
  6255. "support": {
  6256. "source": "https://git.drupalcode.org/project/pagerer"
  6257. }
  6258. },
  6259. {
  6260. "name": "drupal/panels",
  6261. "version": "4.7.0",
  6262. "source": {
  6263. "type": "git",
  6264. "url": "https://git.drupalcode.org/project/panels.git",
  6265. "reference": "8.x-4.7"
  6266. },
  6267. "dist": {
  6268. "type": "zip",
  6269. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.7.zip",
  6270. "reference": "8.x-4.7",
  6271. "shasum": "5536f192d328e93a9f8c4a2646df15c514d75639"
  6272. },
  6273. "require": {
  6274. "drupal/core": "^9.2 || ^10",
  6275. "drupal/ctools": "^3.12",
  6276. "drupal/jquery_ui_droppable": "^1.5"
  6277. },
  6278. "require-dev": {
  6279. "drupal/jquery_ui_droppable": "*",
  6280. "drupal/page_manager": "^4"
  6281. },
  6282. "type": "drupal-module",
  6283. "extra": {
  6284. "drupal": {
  6285. "version": "8.x-4.7",
  6286. "datestamp": "1668632919",
  6287. "security-coverage": {
  6288. "status": "covered",
  6289. "message": "Covered by Drupal's security advisory policy"
  6290. }
  6291. },
  6292. "branch-alias": {
  6293. "dev-8.x-4.x": "4.x-dev"
  6294. }
  6295. },
  6296. "notification-url": "https://packages.drupal.org/8/downloads",
  6297. "license": [
  6298. "GPL-2.0+"
  6299. ],
  6300. "authors": [
  6301. {
  6302. "name": "Jakob Perry",
  6303. "homepage": "https://www.drupal.org/u/japerry"
  6304. },
  6305. {
  6306. "name": "Samuel Mortenson",
  6307. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  6308. },
  6309. {
  6310. "name": "See other contributors",
  6311. "homepage": "https://www.drupal.org/node/74958/committers"
  6312. },
  6313. {
  6314. "name": "joelpittet",
  6315. "homepage": "https://www.drupal.org/user/160302"
  6316. },
  6317. {
  6318. "name": "Letharion",
  6319. "homepage": "https://www.drupal.org/user/373603"
  6320. },
  6321. {
  6322. "name": "merlinofchaos",
  6323. "homepage": "https://www.drupal.org/user/26979"
  6324. },
  6325. {
  6326. "name": "neclimdul",
  6327. "homepage": "https://www.drupal.org/user/48673"
  6328. },
  6329. {
  6330. "name": "phenaproxima",
  6331. "homepage": "https://www.drupal.org/user/205645"
  6332. },
  6333. {
  6334. "name": "samuel.mortenson",
  6335. "homepage": "https://www.drupal.org/user/2582268"
  6336. }
  6337. ],
  6338. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  6339. "homepage": "https://www.drupal.org/project/panels",
  6340. "support": {
  6341. "source": "http://git.drupal.org/project/panels.git",
  6342. "issues": "https://www.drupal.org/project/issues/panels",
  6343. "irc": "irc://irc.freenode.org/drupal-scotch"
  6344. }
  6345. },
  6346. {
  6347. "name": "drupal/paragraphs",
  6348. "version": "1.16.0",
  6349. "source": {
  6350. "type": "git",
  6351. "url": "https://git.drupalcode.org/project/paragraphs.git",
  6352. "reference": "8.x-1.16"
  6353. },
  6354. "dist": {
  6355. "type": "zip",
  6356. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.16.zip",
  6357. "reference": "8.x-1.16",
  6358. "shasum": "48f60810fd8086a52d56e84af8b212cce7a270e8"
  6359. },
  6360. "require": {
  6361. "drupal/core": "^9.3 || ^10",
  6362. "drupal/entity_reference_revisions": "~1.3"
  6363. },
  6364. "require-dev": {
  6365. "drupal/block_field": "1.x-dev",
  6366. "drupal/diff": "1.x-dev",
  6367. "drupal/entity_browser": "2.x-dev",
  6368. "drupal/entity_usage": "2.x-dev",
  6369. "drupal/field_group": "3.x-dev",
  6370. "drupal/inline_entity_form": "1.x-dev",
  6371. "drupal/paragraphs-paragraphs_library": "*",
  6372. "drupal/replicate": "1.x-dev",
  6373. "drupal/search_api": "1.x-dev",
  6374. "drupal/search_api_db": "*"
  6375. },
  6376. "suggest": {
  6377. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  6378. },
  6379. "type": "drupal-module",
  6380. "extra": {
  6381. "drupal": {
  6382. "version": "8.x-1.16",
  6383. "datestamp": "1694007797",
  6384. "security-coverage": {
  6385. "status": "covered",
  6386. "message": "Covered by Drupal's security advisory policy"
  6387. }
  6388. }
  6389. },
  6390. "notification-url": "https://packages.drupal.org/8/downloads",
  6391. "license": [
  6392. "GPL-2.0-or-later"
  6393. ],
  6394. "authors": [
  6395. {
  6396. "name": "Berdir",
  6397. "homepage": "https://www.drupal.org/user/214652"
  6398. },
  6399. {
  6400. "name": "Frans",
  6401. "homepage": "https://www.drupal.org/user/514222"
  6402. },
  6403. {
  6404. "name": "jeroen.b",
  6405. "homepage": "https://www.drupal.org/user/1853532"
  6406. },
  6407. {
  6408. "name": "jstoller",
  6409. "homepage": "https://www.drupal.org/user/99012"
  6410. },
  6411. {
  6412. "name": "miro_dietiker",
  6413. "homepage": "https://www.drupal.org/user/227761"
  6414. },
  6415. {
  6416. "name": "Primsi",
  6417. "homepage": "https://www.drupal.org/user/282629"
  6418. }
  6419. ],
  6420. "description": "Enables the creation of Paragraphs entities.",
  6421. "homepage": "https://www.drupal.org/project/paragraphs",
  6422. "support": {
  6423. "source": "https://git.drupalcode.org/project/paragraphs"
  6424. }
  6425. },
  6426. {
  6427. "name": "drupal/path_alias_xt",
  6428. "version": "dev-1.x",
  6429. "source": {
  6430. "type": "git",
  6431. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  6432. "reference": "0573ad218a2f7143544626165418eaeec03e1157"
  6433. },
  6434. "require": {
  6435. "drupal/core": "^9.3 || ^10"
  6436. },
  6437. "type": "drupal-module",
  6438. "extra": {
  6439. "branch-alias": {
  6440. "dev-1.x": "1.x-dev"
  6441. },
  6442. "drupal": {
  6443. "version": "8.x-1.x-dev",
  6444. "datestamp": "1658166545",
  6445. "security-coverage": {
  6446. "status": "not-covered",
  6447. "message": "Dev releases are not covered by Drupal security advisories."
  6448. }
  6449. }
  6450. },
  6451. "notification-url": "https://packages.drupal.org/8/downloads",
  6452. "license": [
  6453. "GPL-2.0-or-later"
  6454. ],
  6455. "authors": [
  6456. {
  6457. "name": "adriancid",
  6458. "homepage": "https://www.drupal.org/user/1962106"
  6459. },
  6460. {
  6461. "name": "RdeBoer",
  6462. "homepage": "https://www.drupal.org/user/404007"
  6463. },
  6464. {
  6465. "name": "sdstyles",
  6466. "homepage": "https://www.drupal.org/user/1420228"
  6467. }
  6468. ],
  6469. "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.",
  6470. "homepage": "https://www.drupal.org/project/path_alias_xt",
  6471. "support": {
  6472. "source": "https://git.drupalcode.org/project/path_alias_xt"
  6473. }
  6474. },
  6475. {
  6476. "name": "drupal/pathauto",
  6477. "version": "1.12.0",
  6478. "source": {
  6479. "type": "git",
  6480. "url": "https://git.drupalcode.org/project/pathauto.git",
  6481. "reference": "8.x-1.12"
  6482. },
  6483. "dist": {
  6484. "type": "zip",
  6485. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.12.zip",
  6486. "reference": "8.x-1.12",
  6487. "shasum": "b7b6432e315e38e59a7c6cc117134326c580de4c"
  6488. },
  6489. "require": {
  6490. "drupal/core": "^9.3 || ^10",
  6491. "drupal/ctools": "*",
  6492. "drupal/token": "*"
  6493. },
  6494. "suggest": {
  6495. "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."
  6496. },
  6497. "type": "drupal-module",
  6498. "extra": {
  6499. "drupal": {
  6500. "version": "8.x-1.12",
  6501. "datestamp": "1696776683",
  6502. "security-coverage": {
  6503. "status": "covered",
  6504. "message": "Covered by Drupal's security advisory policy"
  6505. }
  6506. },
  6507. "drush": {
  6508. "services": {
  6509. "drush.services.yml": "^9 || ^10"
  6510. }
  6511. }
  6512. },
  6513. "notification-url": "https://packages.drupal.org/8/downloads",
  6514. "license": [
  6515. "GPL-2.0-or-later"
  6516. ],
  6517. "authors": [
  6518. {
  6519. "name": "Berdir",
  6520. "homepage": "https://www.drupal.org/user/214652"
  6521. },
  6522. {
  6523. "name": "Dave Reid",
  6524. "homepage": "https://www.drupal.org/user/53892"
  6525. },
  6526. {
  6527. "name": "Freso",
  6528. "homepage": "https://www.drupal.org/user/27504"
  6529. },
  6530. {
  6531. "name": "greggles",
  6532. "homepage": "https://www.drupal.org/user/36762"
  6533. }
  6534. ],
  6535. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  6536. "homepage": "https://www.drupal.org/project/pathauto",
  6537. "support": {
  6538. "source": "https://cgit.drupalcode.org/pathauto",
  6539. "issues": "https://www.drupal.org/project/issues/pathauto",
  6540. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  6541. }
  6542. },
  6543. {
  6544. "name": "drupal/pathologic",
  6545. "version": "2.0.0-alpha1",
  6546. "source": {
  6547. "type": "git",
  6548. "url": "https://git.drupalcode.org/project/pathologic.git",
  6549. "reference": "2.0.0-alpha1"
  6550. },
  6551. "dist": {
  6552. "type": "zip",
  6553. "url": "https://ftp.drupal.org/files/projects/pathologic-2.0.0-alpha1.zip",
  6554. "reference": "2.0.0-alpha1",
  6555. "shasum": "be911b098ece7d1ffa55cf0d5f33d38ea40acda4"
  6556. },
  6557. "require": {
  6558. "drupal/core": "^9 || ^10"
  6559. },
  6560. "type": "drupal-module",
  6561. "extra": {
  6562. "drupal": {
  6563. "version": "2.0.0-alpha1",
  6564. "datestamp": "1681263978",
  6565. "security-coverage": {
  6566. "status": "not-covered",
  6567. "message": "Alpha releases are not covered by Drupal security advisories."
  6568. }
  6569. }
  6570. },
  6571. "notification-url": "https://packages.drupal.org/8/downloads",
  6572. "license": [
  6573. "GPL-2.0+"
  6574. ],
  6575. "authors": [
  6576. {
  6577. "name": "Berdir",
  6578. "homepage": "https://www.drupal.org/user/214652"
  6579. },
  6580. {
  6581. "name": "dww",
  6582. "homepage": "https://www.drupal.org/user/46549"
  6583. },
  6584. {
  6585. "name": "Garrett Albright",
  6586. "homepage": "https://www.drupal.org/user/191212"
  6587. },
  6588. {
  6589. "name": "mark_fullmer",
  6590. "homepage": "https://www.drupal.org/user/2612816"
  6591. }
  6592. ],
  6593. "description": "Helps avoid broken links and incorrect paths in content.",
  6594. "homepage": "https://www.drupal.org/project/pathologic",
  6595. "support": {
  6596. "source": "https://git.drupalcode.org/project/pathologic"
  6597. }
  6598. },
  6599. {
  6600. "name": "drupal/persistent_login",
  6601. "version": "1.6.0",
  6602. "source": {
  6603. "type": "git",
  6604. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6605. "reference": "8.x-1.6"
  6606. },
  6607. "dist": {
  6608. "type": "zip",
  6609. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.6.zip",
  6610. "reference": "8.x-1.6",
  6611. "shasum": "87bc87ae8c4035efbdf8d6cae17c489c4fdd0aa3"
  6612. },
  6613. "require": {
  6614. "drupal/core": "^9.2 || ^10"
  6615. },
  6616. "type": "drupal-module",
  6617. "extra": {
  6618. "drupal": {
  6619. "version": "8.x-1.6",
  6620. "datestamp": "1679547817",
  6621. "security-coverage": {
  6622. "status": "covered",
  6623. "message": "Covered by Drupal's security advisory policy"
  6624. }
  6625. }
  6626. },
  6627. "notification-url": "https://packages.drupal.org/8/downloads",
  6628. "license": [
  6629. "GPL-2.0-or-later"
  6630. ],
  6631. "authors": [
  6632. {
  6633. "name": "gapple",
  6634. "homepage": "https://www.drupal.org/user/490940"
  6635. }
  6636. ],
  6637. "description": "Provides a \"Remember Me\" feature on the login form.",
  6638. "homepage": "https://www.drupal.org/project/persistent_login",
  6639. "keywords": [
  6640. "Drupal"
  6641. ],
  6642. "support": {
  6643. "source": "https://git.drupalcode.org/project/persistent_login",
  6644. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6645. }
  6646. },
  6647. {
  6648. "name": "drupal/phone_number",
  6649. "version": "2.0.0-alpha5",
  6650. "source": {
  6651. "type": "git",
  6652. "url": "https://git.drupalcode.org/project/phone_number.git",
  6653. "reference": "2.0.0-alpha5"
  6654. },
  6655. "dist": {
  6656. "type": "zip",
  6657. "url": "https://ftp.drupal.org/files/projects/phone_number-2.0.0-alpha5.zip",
  6658. "reference": "2.0.0-alpha5",
  6659. "shasum": "b57f78b8d68c6e1017cdeb7ff77440729d9216c4"
  6660. },
  6661. "require": {
  6662. "drupal/core": "^9.2 || ^10",
  6663. "giggsey/libphonenumber-for-php": "^8.0"
  6664. },
  6665. "type": "drupal-module",
  6666. "extra": {
  6667. "drupal": {
  6668. "version": "2.0.0-alpha5",
  6669. "datestamp": "1698159525",
  6670. "security-coverage": {
  6671. "status": "not-covered",
  6672. "message": "Alpha releases are not covered by Drupal security advisories."
  6673. }
  6674. }
  6675. },
  6676. "notification-url": "https://packages.drupal.org/8/downloads",
  6677. "license": [
  6678. "GPL-2.0+"
  6679. ],
  6680. "authors": [
  6681. {
  6682. "name": "Christopher Caldwell",
  6683. "homepage": "https://www.drupal.org/u/chrisolof",
  6684. "email": "chrisolof@gmail.com",
  6685. "role": "Maintainer"
  6686. },
  6687. {
  6688. "name": "nyariv",
  6689. "homepage": "https://www.drupal.org/user/2747789"
  6690. },
  6691. {
  6692. "name": "tim-diels",
  6693. "homepage": "https://www.drupal.org/user/2915097"
  6694. },
  6695. {
  6696. "name": "vaish",
  6697. "homepage": "https://www.drupal.org/user/92189"
  6698. }
  6699. ],
  6700. "description": "A validated phone number field.",
  6701. "homepage": "http://drupal.org/project/phone_number",
  6702. "support": {
  6703. "source": "https://git.drupalcode.org/project/phone_number"
  6704. }
  6705. },
  6706. {
  6707. "name": "drupal/profile",
  6708. "version": "1.7.0",
  6709. "source": {
  6710. "type": "git",
  6711. "url": "https://git.drupalcode.org/project/profile.git",
  6712. "reference": "8.x-1.7"
  6713. },
  6714. "dist": {
  6715. "type": "zip",
  6716. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.7.zip",
  6717. "reference": "8.x-1.7",
  6718. "shasum": "f0236acff507aff2a1e2e11cb9c873a0b608ec1c"
  6719. },
  6720. "require": {
  6721. "drupal/core": "^9 || ^10",
  6722. "drupal/entity": "^1.0"
  6723. },
  6724. "require-dev": {
  6725. "drupal/token": "^1.7"
  6726. },
  6727. "type": "drupal-module",
  6728. "extra": {
  6729. "drupal": {
  6730. "version": "8.x-1.7",
  6731. "datestamp": "1665131792",
  6732. "security-coverage": {
  6733. "status": "covered",
  6734. "message": "Covered by Drupal's security advisory policy"
  6735. }
  6736. }
  6737. },
  6738. "notification-url": "https://packages.drupal.org/8/downloads",
  6739. "license": [
  6740. "GPL-2.0-or-later"
  6741. ],
  6742. "authors": [
  6743. {
  6744. "name": "bojanz",
  6745. "homepage": "https://www.drupal.org/user/86106"
  6746. },
  6747. {
  6748. "name": "daggerhart",
  6749. "homepage": "https://www.drupal.org/user/167806"
  6750. },
  6751. {
  6752. "name": "fago",
  6753. "homepage": "https://www.drupal.org/user/16747"
  6754. },
  6755. {
  6756. "name": "jsacksick",
  6757. "homepage": "https://www.drupal.org/user/972218"
  6758. },
  6759. {
  6760. "name": "mglaman",
  6761. "homepage": "https://www.drupal.org/user/2416470"
  6762. },
  6763. {
  6764. "name": "pcambra",
  6765. "homepage": "https://www.drupal.org/user/122101"
  6766. }
  6767. ],
  6768. "description": "Provides configurable user profiles.",
  6769. "homepage": "https://drupal.org/project/profile",
  6770. "support": {
  6771. "source": "https://git.drupalcode.org/project/profile"
  6772. }
  6773. },
  6774. {
  6775. "name": "drupal/quick_node_clone",
  6776. "version": "1.18.0",
  6777. "source": {
  6778. "type": "git",
  6779. "url": "https://git.drupalcode.org/project/quick_node_clone.git",
  6780. "reference": "8.x-1.18"
  6781. },
  6782. "dist": {
  6783. "type": "zip",
  6784. "url": "https://ftp.drupal.org/files/projects/quick_node_clone-8.x-1.18.zip",
  6785. "reference": "8.x-1.18",
  6786. "shasum": "ab17077eccb24e5c651fedc5056a50051882a13d"
  6787. },
  6788. "require": {
  6789. "drupal/core": "^8.8 || ^9 || ^10"
  6790. },
  6791. "require-dev": {
  6792. "drupal/group": "^1 || ^2 || ^3",
  6793. "drupal/paragraphs": "1.x-dev"
  6794. },
  6795. "type": "drupal-module",
  6796. "extra": {
  6797. "drupal": {
  6798. "version": "8.x-1.18",
  6799. "datestamp": "1707833857",
  6800. "security-coverage": {
  6801. "status": "covered",
  6802. "message": "Covered by Drupal's security advisory policy"
  6803. }
  6804. }
  6805. },
  6806. "notification-url": "https://packages.drupal.org/8/downloads",
  6807. "license": [
  6808. "GPL-2.0-or-later"
  6809. ],
  6810. "authors": [
  6811. {
  6812. "name": "vilepickle",
  6813. "homepage": "https://www.drupal.org/u/vilepickle",
  6814. "role": "Maintainer"
  6815. },
  6816. {
  6817. "name": "Neslee Canil Pinto",
  6818. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  6819. "role": "Maintainer"
  6820. }
  6821. ],
  6822. "description": "Quickly clone a node with regular fields.",
  6823. "homepage": "https://www.drupal.org/project/quick_node_clone",
  6824. "support": {
  6825. "source": "https://git.drupalcode.org/project/quick_node_clone",
  6826. "issues": "https://www.drupal.org/project/issues/quick_node_clone"
  6827. }
  6828. },
  6829. {
  6830. "name": "drupal/redirect",
  6831. "version": "1.9.0",
  6832. "source": {
  6833. "type": "git",
  6834. "url": "https://git.drupalcode.org/project/redirect.git",
  6835. "reference": "8.x-1.9"
  6836. },
  6837. "dist": {
  6838. "type": "zip",
  6839. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip",
  6840. "reference": "8.x-1.9",
  6841. "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e"
  6842. },
  6843. "require": {
  6844. "drupal/core": "^9.2 || ^10"
  6845. },
  6846. "type": "drupal-module",
  6847. "extra": {
  6848. "drupal": {
  6849. "version": "8.x-1.9",
  6850. "datestamp": "1693393506",
  6851. "security-coverage": {
  6852. "status": "covered",
  6853. "message": "Covered by Drupal's security advisory policy"
  6854. }
  6855. }
  6856. },
  6857. "notification-url": "https://packages.drupal.org/8/downloads",
  6858. "license": [
  6859. "GPL-2.0-or-later"
  6860. ],
  6861. "authors": [
  6862. {
  6863. "name": "Berdir",
  6864. "homepage": "https://www.drupal.org/user/214652"
  6865. },
  6866. {
  6867. "name": "Dave Reid",
  6868. "homepage": "https://www.drupal.org/user/53892"
  6869. },
  6870. {
  6871. "name": "Kristen Pol",
  6872. "homepage": "https://www.drupal.org/user/8389"
  6873. },
  6874. {
  6875. "name": "pifagor",
  6876. "homepage": "https://www.drupal.org/user/2375692"
  6877. }
  6878. ],
  6879. "description": "Allows users to redirect from old URLs to new URLs.",
  6880. "homepage": "https://www.drupal.org/project/redirect",
  6881. "support": {
  6882. "source": "https://git.drupalcode.org/project/redirect"
  6883. }
  6884. },
  6885. {
  6886. "name": "drupal/redis",
  6887. "version": "1.7.0",
  6888. "source": {
  6889. "type": "git",
  6890. "url": "https://git.drupalcode.org/project/redis.git",
  6891. "reference": "8.x-1.7"
  6892. },
  6893. "dist": {
  6894. "type": "zip",
  6895. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.7.zip",
  6896. "reference": "8.x-1.7",
  6897. "shasum": "602043bdad62ff047321121edcfde8abf3638c7c"
  6898. },
  6899. "require": {
  6900. "drupal/core": "^9.3 || ^10"
  6901. },
  6902. "suggest": {
  6903. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  6904. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  6905. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  6906. },
  6907. "type": "drupal-module",
  6908. "extra": {
  6909. "drupal": {
  6910. "version": "8.x-1.7",
  6911. "datestamp": "1686175620",
  6912. "security-coverage": {
  6913. "status": "covered",
  6914. "message": "Covered by Drupal's security advisory policy"
  6915. }
  6916. }
  6917. },
  6918. "autoload": {
  6919. "psr-4": {
  6920. "Drupal\\redis\\": "src"
  6921. }
  6922. },
  6923. "notification-url": "https://packages.drupal.org/8/downloads",
  6924. "license": [
  6925. "GPL-2.0-or-later"
  6926. ],
  6927. "authors": [
  6928. {
  6929. "name": "Berdir",
  6930. "homepage": "https://www.drupal.org/user/214652"
  6931. },
  6932. {
  6933. "name": "greg.1.anderson",
  6934. "homepage": "https://www.drupal.org/user/438598"
  6935. },
  6936. {
  6937. "name": "kporras07",
  6938. "homepage": "https://www.drupal.org/user/1349780"
  6939. },
  6940. {
  6941. "name": "pounard",
  6942. "homepage": "https://www.drupal.org/user/240164"
  6943. }
  6944. ],
  6945. "description": "Integration of Drupal with the Redis key-value store.",
  6946. "homepage": "https://www.drupal.org/project/redis",
  6947. "support": {
  6948. "source": "https://git.drupalcode.org/project/redis"
  6949. }
  6950. },
  6951. {
  6952. "name": "drupal/rules",
  6953. "version": "3.0.0-alpha8",
  6954. "source": {
  6955. "type": "git",
  6956. "url": "https://git.drupalcode.org/project/rules.git",
  6957. "reference": "8.x-3.0-alpha8"
  6958. },
  6959. "dist": {
  6960. "type": "zip",
  6961. "url": "https://ftp.drupal.org/files/projects/rules-8.x-3.0-alpha8.zip",
  6962. "reference": "8.x-3.0-alpha8",
  6963. "shasum": "22a44298b98000697efd86a29a8df1c0ce0bf44f"
  6964. },
  6965. "require": {
  6966. "drupal/core": "^9.1 || ^10",
  6967. "drupal/typed_data": "^1.0"
  6968. },
  6969. "type": "drupal-module",
  6970. "extra": {
  6971. "drupal": {
  6972. "version": "8.x-3.0-alpha8",
  6973. "datestamp": "1696376270",
  6974. "security-coverage": {
  6975. "status": "not-covered",
  6976. "message": "Alpha releases are not covered by Drupal security advisories."
  6977. }
  6978. },
  6979. "drush": {
  6980. "services": {
  6981. "drush.services.yml": "^9 || ^10"
  6982. }
  6983. }
  6984. },
  6985. "notification-url": "https://packages.drupal.org/8/downloads",
  6986. "license": [
  6987. "GPL-2.0-or-later"
  6988. ],
  6989. "authors": [
  6990. {
  6991. "name": "fago",
  6992. "homepage": "https://www.drupal.org/user/16747"
  6993. },
  6994. {
  6995. "name": "klausi",
  6996. "homepage": "https://www.drupal.org/user/262198"
  6997. },
  6998. {
  6999. "name": "TR",
  7000. "homepage": "https://www.drupal.org/user/202830"
  7001. }
  7002. ],
  7003. "description": "React on events and conditionally evaluate actions.",
  7004. "homepage": "https://www.drupal.org/project/rules",
  7005. "support": {
  7006. "source": "https://git.drupalcode.org/project/rules",
  7007. "issues": "https://www.drupal.org/project/issues/rules"
  7008. }
  7009. },
  7010. {
  7011. "name": "drupal/search_api",
  7012. "version": "1.30.0",
  7013. "source": {
  7014. "type": "git",
  7015. "url": "https://git.drupalcode.org/project/search_api.git",
  7016. "reference": "8.x-1.30"
  7017. },
  7018. "dist": {
  7019. "type": "zip",
  7020. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.30.zip",
  7021. "reference": "8.x-1.30",
  7022. "shasum": "25bd2cfab6a6332c595fbc8be1c4cfff33a85ce8"
  7023. },
  7024. "require": {
  7025. "drupal/core": "^9.3 || ^10.0"
  7026. },
  7027. "conflict": {
  7028. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  7029. },
  7030. "require-dev": {
  7031. "drupal/language_fallback_fix": "@dev",
  7032. "drupal/search_api_autocomplete": "@dev",
  7033. "drupal/search_api_db": "*"
  7034. },
  7035. "suggest": {
  7036. "drupal/facets": "Adds the ability to create faceted searches.",
  7037. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  7038. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  7039. },
  7040. "type": "drupal-module",
  7041. "extra": {
  7042. "drupal": {
  7043. "version": "8.x-1.30",
  7044. "datestamp": "1697366291",
  7045. "security-coverage": {
  7046. "status": "covered",
  7047. "message": "Covered by Drupal's security advisory policy"
  7048. }
  7049. },
  7050. "drush": {
  7051. "services": {
  7052. "drush.services.yml": "^9 || ^10 || ^11"
  7053. }
  7054. }
  7055. },
  7056. "notification-url": "https://packages.drupal.org/8/downloads",
  7057. "license": [
  7058. "GPL-2.0-or-later"
  7059. ],
  7060. "authors": [
  7061. {
  7062. "name": "Thomas Seidl",
  7063. "homepage": "https://www.drupal.org/u/drunken-monkey"
  7064. },
  7065. {
  7066. "name": "Nick Veenhof",
  7067. "homepage": "https://www.drupal.org/u/nick_vh"
  7068. },
  7069. {
  7070. "name": "See other contributors",
  7071. "homepage": "https://www.drupal.org/node/790418/committers"
  7072. }
  7073. ],
  7074. "description": "Provides a generic framework for modules offering search capabilities.",
  7075. "homepage": "https://www.drupal.org/project/search_api",
  7076. "support": {
  7077. "source": "https://git.drupalcode.org/project/search_api",
  7078. "issues": "https://www.drupal.org/project/issues/search_api",
  7079. "irc": "irc://irc.freenode.org/drupal-search-api"
  7080. }
  7081. },
  7082. {
  7083. "name": "drupal/search_api_db",
  7084. "version": "1.30.0",
  7085. "require": {
  7086. "drupal/core": "^9.2 || ^10.0",
  7087. "drupal/search_api": "*"
  7088. },
  7089. "type": "metapackage",
  7090. "extra": {
  7091. "drupal": {
  7092. "version": "8.x-1.30",
  7093. "datestamp": "1697366291",
  7094. "security-coverage": {
  7095. "status": "covered",
  7096. "message": "Covered by Drupal's security advisory policy"
  7097. }
  7098. }
  7099. },
  7100. "notification-url": "https://packages.drupal.org/8/downloads",
  7101. "license": [
  7102. "GPL-2.0-or-later"
  7103. ],
  7104. "authors": [
  7105. {
  7106. "name": "borisson_",
  7107. "homepage": "https://www.drupal.org/user/2393360"
  7108. },
  7109. {
  7110. "name": "drunken monkey",
  7111. "homepage": "https://www.drupal.org/user/205582"
  7112. },
  7113. {
  7114. "name": "Nick_vh",
  7115. "homepage": "https://www.drupal.org/user/122682"
  7116. }
  7117. ],
  7118. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  7119. "homepage": "https://www.drupal.org/project/search_api",
  7120. "support": {
  7121. "source": "https://git.drupalcode.org/project/search_api"
  7122. }
  7123. },
  7124. {
  7125. "name": "drupal/seven",
  7126. "version": "1.0.0",
  7127. "source": {
  7128. "type": "git",
  7129. "url": "https://git.drupalcode.org/project/seven.git",
  7130. "reference": "1.0.0"
  7131. },
  7132. "dist": {
  7133. "type": "zip",
  7134. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  7135. "reference": "1.0.0",
  7136. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  7137. },
  7138. "require": {
  7139. "drupal/core": "^9 || ^10"
  7140. },
  7141. "type": "drupal-theme",
  7142. "extra": {
  7143. "drupal": {
  7144. "version": "1.0.0",
  7145. "datestamp": "1683652106",
  7146. "security-coverage": {
  7147. "status": "covered",
  7148. "message": "Covered by Drupal's security advisory policy"
  7149. }
  7150. }
  7151. },
  7152. "notification-url": "https://packages.drupal.org/8/downloads",
  7153. "license": [
  7154. "GPL-2.0-or-later"
  7155. ],
  7156. "authors": [
  7157. {
  7158. "name": "bnjmnm",
  7159. "homepage": "https://www.drupal.org/user/2369194"
  7160. },
  7161. {
  7162. "name": "lauriii",
  7163. "homepage": "https://www.drupal.org/user/1078742"
  7164. },
  7165. {
  7166. "name": "mcrittenden",
  7167. "homepage": "https://www.drupal.org/user/420631"
  7168. },
  7169. {
  7170. "name": "mrfelton",
  7171. "homepage": "https://www.drupal.org/user/305669"
  7172. },
  7173. {
  7174. "name": "TravisCarden",
  7175. "homepage": "https://www.drupal.org/user/236758"
  7176. }
  7177. ],
  7178. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  7179. "homepage": "https://www.drupal.org/project/seven",
  7180. "support": {
  7181. "source": "https://git.drupalcode.org/project/seven"
  7182. }
  7183. },
  7184. {
  7185. "name": "drupal/smart_trim",
  7186. "version": "2.1.0",
  7187. "source": {
  7188. "type": "git",
  7189. "url": "https://git.drupalcode.org/project/smart_trim.git",
  7190. "reference": "2.1.0"
  7191. },
  7192. "dist": {
  7193. "type": "zip",
  7194. "url": "https://ftp.drupal.org/files/projects/smart_trim-2.1.0.zip",
  7195. "reference": "2.1.0",
  7196. "shasum": "874b4cbddc4833f1b9adc76a8398377903fd73ee"
  7197. },
  7198. "require": {
  7199. "drupal/core": "^8 || ^9 || ^10",
  7200. "drupal/token": "^1.0",
  7201. "php": ">=7.4.0"
  7202. },
  7203. "require-dev": {
  7204. "drupal/token_filter": "^2.0"
  7205. },
  7206. "type": "drupal-module",
  7207. "extra": {
  7208. "drupal": {
  7209. "version": "2.1.0",
  7210. "datestamp": "1686152417",
  7211. "security-coverage": {
  7212. "status": "covered",
  7213. "message": "Covered by Drupal's security advisory policy"
  7214. }
  7215. }
  7216. },
  7217. "notification-url": "https://packages.drupal.org/8/downloads",
  7218. "license": [
  7219. "GPL-2.0-or-later"
  7220. ],
  7221. "authors": [
  7222. {
  7223. "name": "Mark Casias (markie)",
  7224. "homepage": "https://www.drupal.org/u/markie",
  7225. "role": "Maintainer"
  7226. },
  7227. {
  7228. "name": "AmyJune Hineline (volkswagenchick)",
  7229. "homepage": "https://www.drupal.org/u/volkswagenchick",
  7230. "role": "Maintainer"
  7231. },
  7232. {
  7233. "name": "Michael Anello (ultimike)",
  7234. "homepage": "https://www.drupal.org/u/ultimike",
  7235. "role": "Maintainer"
  7236. }
  7237. ],
  7238. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  7239. "homepage": "https://drupal.org/project/smart_trim",
  7240. "support": {
  7241. "source": "https://git.drupalcode.org/project/smart_trim",
  7242. "issues": "https://drupal.org/project/issues/smart_trim"
  7243. }
  7244. },
  7245. {
  7246. "name": "drupal/smtp",
  7247. "version": "1.2.0",
  7248. "source": {
  7249. "type": "git",
  7250. "url": "https://git.drupalcode.org/project/smtp.git",
  7251. "reference": "8.x-1.2"
  7252. },
  7253. "dist": {
  7254. "type": "zip",
  7255. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.2.zip",
  7256. "reference": "8.x-1.2",
  7257. "shasum": "10d302d4a90521d674bdd078da8aed886fa5ec41"
  7258. },
  7259. "require": {
  7260. "drupal/core": ">=8.9 <11",
  7261. "phpmailer/phpmailer": "^6.1.7"
  7262. },
  7263. "suggest": {
  7264. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  7265. },
  7266. "type": "drupal-module",
  7267. "extra": {
  7268. "drupal": {
  7269. "version": "8.x-1.2",
  7270. "datestamp": "1667416337",
  7271. "security-coverage": {
  7272. "status": "covered",
  7273. "message": "Covered by Drupal's security advisory policy"
  7274. }
  7275. },
  7276. "branch-alias": {
  7277. "dev-8.x-1.x": "1.x-dev"
  7278. }
  7279. },
  7280. "notification-url": "https://packages.drupal.org/8/downloads",
  7281. "license": [
  7282. "GPL-2.0-or-later"
  7283. ],
  7284. "authors": [
  7285. {
  7286. "name": "japerry",
  7287. "homepage": "https://www.drupal.org/user/45640"
  7288. },
  7289. {
  7290. "name": "joseph.olstad",
  7291. "homepage": "https://www.drupal.org/user/1321830"
  7292. },
  7293. {
  7294. "name": "josesanmartin",
  7295. "homepage": "https://www.drupal.org/user/72012"
  7296. },
  7297. {
  7298. "name": "LukeLast",
  7299. "homepage": "https://www.drupal.org/user/30151"
  7300. },
  7301. {
  7302. "name": "oadaeh",
  7303. "homepage": "https://www.drupal.org/user/4649"
  7304. },
  7305. {
  7306. "name": "sadashiv",
  7307. "homepage": "https://www.drupal.org/user/1773304"
  7308. },
  7309. {
  7310. "name": "wundo",
  7311. "homepage": "https://www.drupal.org/user/25523"
  7312. },
  7313. {
  7314. "name": "yettyn",
  7315. "homepage": "https://www.drupal.org/user/93281"
  7316. }
  7317. ],
  7318. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  7319. "homepage": "https://www.drupal.org/project/smtp",
  7320. "support": {
  7321. "source": "https://git.drupalcode.org/project/smtp",
  7322. "issues": "https://www.drupal.org/project/issues/smtp"
  7323. }
  7324. },
  7325. {
  7326. "name": "drupal/social_media_links",
  7327. "version": "2.9.0",
  7328. "source": {
  7329. "type": "git",
  7330. "url": "https://git.drupalcode.org/project/social_media_links.git",
  7331. "reference": "8.x-2.9"
  7332. },
  7333. "dist": {
  7334. "type": "zip",
  7335. "url": "https://ftp.drupal.org/files/projects/social_media_links-8.x-2.9.zip",
  7336. "reference": "8.x-2.9",
  7337. "shasum": "d73ea6199b48e11e57fe8a2aeb2afbf3c295704a"
  7338. },
  7339. "require": {
  7340. "drupal/core": "^8 || ^9 || ^10"
  7341. },
  7342. "type": "drupal-module",
  7343. "extra": {
  7344. "drupal": {
  7345. "version": "8.x-2.9",
  7346. "datestamp": "1665768361",
  7347. "security-coverage": {
  7348. "status": "covered",
  7349. "message": "Covered by Drupal's security advisory policy"
  7350. }
  7351. }
  7352. },
  7353. "notification-url": "https://packages.drupal.org/8/downloads",
  7354. "license": [
  7355. "GPL-2.0-or-later"
  7356. ],
  7357. "authors": [
  7358. {
  7359. "name": "Neslee Canil Pinto",
  7360. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  7361. "role": "Maintainer"
  7362. },
  7363. {
  7364. "name": "Christian Beier",
  7365. "homepage": "https://www.drupal.org/u/cbeier",
  7366. "role": "Maintainer"
  7367. }
  7368. ],
  7369. "description": "The module provides a block that display links (icons) to your profiles on various social networking sites.",
  7370. "homepage": "https://www.drupal.org/project/social_media_links",
  7371. "support": {
  7372. "source": "https://git.drupalcode.org/project/social_media_links",
  7373. "issues": "https://www.drupal.org/project/issues/social_media_links"
  7374. }
  7375. },
  7376. {
  7377. "name": "drupal/sophron",
  7378. "version": "2.0.1",
  7379. "source": {
  7380. "type": "git",
  7381. "url": "https://git.drupalcode.org/project/sophron.git",
  7382. "reference": "2.0.1"
  7383. },
  7384. "dist": {
  7385. "type": "zip",
  7386. "url": "https://ftp.drupal.org/files/projects/sophron-2.0.1.zip",
  7387. "reference": "2.0.1",
  7388. "shasum": "eb9b22e843400392ba7fa35dc99c644d2cf08982"
  7389. },
  7390. "require": {
  7391. "drupal/core": "^10",
  7392. "fileeye/mimemap": "^2.0.1"
  7393. },
  7394. "type": "drupal-module",
  7395. "extra": {
  7396. "drupal": {
  7397. "version": "2.0.1",
  7398. "datestamp": "1676319965",
  7399. "security-coverage": {
  7400. "status": "covered",
  7401. "message": "Covered by Drupal's security advisory policy"
  7402. }
  7403. }
  7404. },
  7405. "autoload": {
  7406. "psr-4": {
  7407. "Drupal\\sophron\\": "src/"
  7408. }
  7409. },
  7410. "notification-url": "https://packages.drupal.org/8/downloads",
  7411. "license": [
  7412. "GPL-2.0-or-later"
  7413. ],
  7414. "authors": [
  7415. {
  7416. "name": "mondrake",
  7417. "homepage": "https://www.drupal.org/user/1307444"
  7418. }
  7419. ],
  7420. "description": "Provides an extensive MIME types management API",
  7421. "homepage": "https://www.drupal.org/project/sophron",
  7422. "support": {
  7423. "source": "https://git.drupalcode.org/project/sophron"
  7424. }
  7425. },
  7426. {
  7427. "name": "drupal/synonyms",
  7428. "version": "2.1.2",
  7429. "source": {
  7430. "type": "git",
  7431. "url": "https://git.drupalcode.org/project/synonyms.git",
  7432. "reference": "2.1.2"
  7433. },
  7434. "dist": {
  7435. "type": "zip",
  7436. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.2.zip",
  7437. "reference": "2.1.2",
  7438. "shasum": "b6b88dc80ecb88b67bf4cbf220ea5e712137ca4d"
  7439. },
  7440. "require": {
  7441. "drupal/core": "^9 || ^10"
  7442. },
  7443. "require-dev": {
  7444. "drupal/synonyms_list_field": "*"
  7445. },
  7446. "type": "drupal-module",
  7447. "extra": {
  7448. "drupal": {
  7449. "version": "2.1.2",
  7450. "datestamp": "1665785027",
  7451. "security-coverage": {
  7452. "status": "covered",
  7453. "message": "Covered by Drupal's security advisory policy"
  7454. }
  7455. }
  7456. },
  7457. "notification-url": "https://packages.drupal.org/8/downloads",
  7458. "license": [
  7459. "GPL-2.0-or-later"
  7460. ],
  7461. "authors": [
  7462. {
  7463. "name": "Bojan Zivanovic",
  7464. "homepage": "https://www.drupal.org/u/bojanz",
  7465. "role": "Author and D5, D6 and D7 versions developer."
  7466. },
  7467. {
  7468. "name": "Alex Trosenko",
  7469. "homepage": "https://www.drupal.org/u/bucefal91",
  7470. "role": "D7 and D8 versions developer."
  7471. },
  7472. {
  7473. "name": "Duro Arezina",
  7474. "homepage": "https://www.drupal.org/u/devad",
  7475. "role": "D8, D9 and D10 versions maintenance"
  7476. },
  7477. {
  7478. "name": "See other contributors",
  7479. "homepage": "https://www.drupal.org/node/148775/committers"
  7480. }
  7481. ],
  7482. "description": "Provides synonyms feature for all entities.",
  7483. "homepage": "https://www.drupal.org/project/synonyms",
  7484. "support": {
  7485. "source": "https://git.drupalcode.org/project/synonyms",
  7486. "issues": "https://www.drupal.org/project/issues/synonyms"
  7487. }
  7488. },
  7489. {
  7490. "name": "drupal/token",
  7491. "version": "1.13.0",
  7492. "source": {
  7493. "type": "git",
  7494. "url": "https://git.drupalcode.org/project/token.git",
  7495. "reference": "8.x-1.13"
  7496. },
  7497. "dist": {
  7498. "type": "zip",
  7499. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip",
  7500. "reference": "8.x-1.13",
  7501. "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2"
  7502. },
  7503. "require": {
  7504. "drupal/core": "^9.2 || ^10"
  7505. },
  7506. "type": "drupal-module",
  7507. "extra": {
  7508. "drupal": {
  7509. "version": "8.x-1.13",
  7510. "datestamp": "1697885927",
  7511. "security-coverage": {
  7512. "status": "covered",
  7513. "message": "Covered by Drupal's security advisory policy"
  7514. }
  7515. },
  7516. "drush": {
  7517. "services": {
  7518. "drush.services.yml": ">=9"
  7519. }
  7520. }
  7521. },
  7522. "notification-url": "https://packages.drupal.org/8/downloads",
  7523. "license": [
  7524. "GPL-2.0-or-later"
  7525. ],
  7526. "authors": [
  7527. {
  7528. "name": "Berdir",
  7529. "homepage": "https://www.drupal.org/user/214652"
  7530. },
  7531. {
  7532. "name": "Dave Reid",
  7533. "homepage": "https://www.drupal.org/user/53892"
  7534. },
  7535. {
  7536. "name": "eaton",
  7537. "homepage": "https://www.drupal.org/user/16496"
  7538. },
  7539. {
  7540. "name": "fago",
  7541. "homepage": "https://www.drupal.org/user/16747"
  7542. },
  7543. {
  7544. "name": "greggles",
  7545. "homepage": "https://www.drupal.org/user/36762"
  7546. },
  7547. {
  7548. "name": "mikeryan",
  7549. "homepage": "https://www.drupal.org/user/4420"
  7550. }
  7551. ],
  7552. "description": "Provides a user interface for the Token API, some missing core tokens.",
  7553. "homepage": "https://www.drupal.org/project/token",
  7554. "support": {
  7555. "source": "https://git.drupalcode.org/project/token"
  7556. }
  7557. },
  7558. {
  7559. "name": "drupal/translation_views",
  7560. "version": "1.0.0-alpha11",
  7561. "source": {
  7562. "type": "git",
  7563. "url": "https://git.drupalcode.org/project/translation_views.git",
  7564. "reference": "8.x-1.0-alpha11"
  7565. },
  7566. "dist": {
  7567. "type": "zip",
  7568. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  7569. "reference": "8.x-1.0-alpha11",
  7570. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  7571. },
  7572. "require": {
  7573. "drupal/core": "^8.8 || ^9 || ^10"
  7574. },
  7575. "require-dev": {
  7576. "drupal/translators_content": "^1.0@alpha"
  7577. },
  7578. "type": "drupal-module",
  7579. "extra": {
  7580. "drupal": {
  7581. "version": "8.x-1.0-alpha11",
  7582. "datestamp": "1679660668",
  7583. "security-coverage": {
  7584. "status": "not-covered",
  7585. "message": "Project has not opted into security advisory coverage!"
  7586. }
  7587. }
  7588. },
  7589. "notification-url": "https://packages.drupal.org/8/downloads",
  7590. "license": [
  7591. "GPL-2.0-or-later"
  7592. ],
  7593. "authors": [
  7594. {
  7595. "name": "matsbla",
  7596. "homepage": "https://www.drupal.org/user/2325394"
  7597. },
  7598. {
  7599. "name": "vlad.dancer",
  7600. "homepage": "https://www.drupal.org/user/903844"
  7601. }
  7602. ],
  7603. "description": "Create customized lists and queries of translations from your database.",
  7604. "homepage": "https://www.drupal.org/project/translation_views",
  7605. "support": {
  7606. "source": "https://git.drupalcode.org/project/translation_views"
  7607. }
  7608. },
  7609. {
  7610. "name": "drupal/typed_data",
  7611. "version": "1.0.0-beta2",
  7612. "source": {
  7613. "type": "git",
  7614. "url": "https://git.drupalcode.org/project/typed_data.git",
  7615. "reference": "8.x-1.0-beta2"
  7616. },
  7617. "dist": {
  7618. "type": "zip",
  7619. "url": "https://ftp.drupal.org/files/projects/typed_data-8.x-1.0-beta2.zip",
  7620. "reference": "8.x-1.0-beta2",
  7621. "shasum": "e0aa651b129d8dcd765ca49cba8682ebe09e6e73"
  7622. },
  7623. "require": {
  7624. "drupal/core": "^9.1 || ^10"
  7625. },
  7626. "type": "drupal-module",
  7627. "extra": {
  7628. "drupal": {
  7629. "version": "8.x-1.0-beta2",
  7630. "datestamp": "1679429196",
  7631. "security-coverage": {
  7632. "status": "not-covered",
  7633. "message": "Beta releases are not covered by Drupal security advisories."
  7634. }
  7635. },
  7636. "drush": {
  7637. "services": {
  7638. "drush.services.yml": ">=9"
  7639. }
  7640. }
  7641. },
  7642. "notification-url": "https://packages.drupal.org/8/downloads",
  7643. "license": [
  7644. "GPL-2.0-or-later"
  7645. ],
  7646. "authors": [
  7647. {
  7648. "name": "fago",
  7649. "homepage": "https://www.drupal.org/user/16747"
  7650. },
  7651. {
  7652. "name": "TR",
  7653. "homepage": "https://www.drupal.org/user/202830"
  7654. }
  7655. ],
  7656. "description": "Extends the core Typed Data API with new APIs and features.",
  7657. "homepage": "https://www.drupal.org/project/typed_data",
  7658. "support": {
  7659. "source": "https://git.drupalcode.org/project/typed_data",
  7660. "issues": "https://www.drupal.org/project/issues/typed_data"
  7661. }
  7662. },
  7663. {
  7664. "name": "drupal/ultimate_cron",
  7665. "version": "2.0.0-alpha6",
  7666. "source": {
  7667. "type": "git",
  7668. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7669. "reference": "8.x-2.0-alpha6"
  7670. },
  7671. "dist": {
  7672. "type": "zip",
  7673. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha6.zip",
  7674. "reference": "8.x-2.0-alpha6",
  7675. "shasum": "42ab6df8e94a9b3772876a378062534552a32826"
  7676. },
  7677. "require": {
  7678. "drupal/core": "^9 || ^10"
  7679. },
  7680. "type": "drupal-module",
  7681. "extra": {
  7682. "drupal": {
  7683. "version": "8.x-2.0-alpha6",
  7684. "datestamp": "1666471448",
  7685. "security-coverage": {
  7686. "status": "not-covered",
  7687. "message": "Alpha releases are not covered by Drupal security advisories."
  7688. }
  7689. },
  7690. "drush": {
  7691. "services": {
  7692. "drush.services.yml": "^9 || ^10 || ^11"
  7693. }
  7694. }
  7695. },
  7696. "notification-url": "https://packages.drupal.org/8/downloads",
  7697. "license": [
  7698. "GPL-2.0+"
  7699. ],
  7700. "authors": [
  7701. {
  7702. "name": "arnested",
  7703. "homepage": "https://www.drupal.org/user/245635"
  7704. },
  7705. {
  7706. "name": "Berdir",
  7707. "homepage": "https://www.drupal.org/user/214652"
  7708. },
  7709. {
  7710. "name": "Dane Powell",
  7711. "homepage": "https://www.drupal.org/user/339326"
  7712. },
  7713. {
  7714. "name": "gielfeldt",
  7715. "homepage": "https://www.drupal.org/user/366993"
  7716. },
  7717. {
  7718. "name": "miro_dietiker",
  7719. "homepage": "https://www.drupal.org/user/227761"
  7720. },
  7721. {
  7722. "name": "Primsi",
  7723. "homepage": "https://www.drupal.org/user/282629"
  7724. }
  7725. ],
  7726. "description": "Ultimate cron",
  7727. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7728. "support": {
  7729. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7730. }
  7731. },
  7732. {
  7733. "name": "drupal/video_embed_field",
  7734. "version": "2.5.0",
  7735. "source": {
  7736. "type": "git",
  7737. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7738. "reference": "8.x-2.5"
  7739. },
  7740. "dist": {
  7741. "type": "zip",
  7742. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  7743. "reference": "8.x-2.5",
  7744. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  7745. },
  7746. "require": {
  7747. "drupal/core": "^9.2 || ^10"
  7748. },
  7749. "require-dev": {
  7750. "drupal/ckeditor": "^1",
  7751. "drupal/colorbox": "^2",
  7752. "drupal/video_embed_media": "*"
  7753. },
  7754. "type": "drupal-module",
  7755. "extra": {
  7756. "drupal": {
  7757. "version": "8.x-2.5",
  7758. "datestamp": "1671413311",
  7759. "security-coverage": {
  7760. "status": "covered",
  7761. "message": "Covered by Drupal's security advisory policy"
  7762. }
  7763. }
  7764. },
  7765. "notification-url": "https://packages.drupal.org/8/downloads",
  7766. "license": [
  7767. "GPL-2.0-or-later"
  7768. ],
  7769. "authors": [
  7770. {
  7771. "name": "abhinesh",
  7772. "homepage": "https://www.drupal.org/user/3645979"
  7773. },
  7774. {
  7775. "name": "jec006",
  7776. "homepage": "https://www.drupal.org/user/855980"
  7777. },
  7778. {
  7779. "name": "plopesc",
  7780. "homepage": "https://www.drupal.org/user/282415"
  7781. },
  7782. {
  7783. "name": "Sam152",
  7784. "homepage": "https://www.drupal.org/user/1485048"
  7785. }
  7786. ],
  7787. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7788. "homepage": "https://www.drupal.org/project/video_embed_field",
  7789. "support": {
  7790. "source": "https://git.drupalcode.org/project/video_embed_field"
  7791. }
  7792. },
  7793. {
  7794. "name": "drupal/views_bulk_edit",
  7795. "version": "2.9.0",
  7796. "source": {
  7797. "type": "git",
  7798. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  7799. "reference": "8.x-2.9"
  7800. },
  7801. "dist": {
  7802. "type": "zip",
  7803. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.9.zip",
  7804. "reference": "8.x-2.9",
  7805. "shasum": "db45a8cc9ac629859374b24974eafcef257e4387"
  7806. },
  7807. "require": {
  7808. "drupal/core": "^9.4 || ^10"
  7809. },
  7810. "require-dev": {
  7811. "drupal/views_bulk_operations": "~4.2.4"
  7812. },
  7813. "suggest": {
  7814. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  7815. },
  7816. "type": "drupal-module",
  7817. "extra": {
  7818. "drupal": {
  7819. "version": "8.x-2.9",
  7820. "datestamp": "1690222256",
  7821. "security-coverage": {
  7822. "status": "covered",
  7823. "message": "Covered by Drupal's security advisory policy"
  7824. }
  7825. }
  7826. },
  7827. "notification-url": "https://packages.drupal.org/8/downloads",
  7828. "license": [
  7829. "GPL-2.0+"
  7830. ],
  7831. "authors": [
  7832. {
  7833. "name": "Marcin Grabias",
  7834. "homepage": "https://www.drupal.org/u/graber"
  7835. },
  7836. {
  7837. "name": "Graber",
  7838. "homepage": "https://www.drupal.org/user/1599440"
  7839. },
  7840. {
  7841. "name": "joseph.olstad",
  7842. "homepage": "https://www.drupal.org/user/1321830"
  7843. }
  7844. ],
  7845. "description": "Allows bulk edition of entity field values.",
  7846. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  7847. "support": {
  7848. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  7849. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  7850. }
  7851. },
  7852. {
  7853. "name": "drupal/views_bulk_operations",
  7854. "version": "4.2.5",
  7855. "source": {
  7856. "type": "git",
  7857. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  7858. "reference": "4.2.5"
  7859. },
  7860. "dist": {
  7861. "type": "zip",
  7862. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.2.5.zip",
  7863. "reference": "4.2.5",
  7864. "shasum": "220479c5187b1619d5703f64c6f8c272afecf897"
  7865. },
  7866. "require": {
  7867. "drupal/core": "^9.4 || ^10",
  7868. "php": ">=7.4.0"
  7869. },
  7870. "require-dev": {
  7871. "drush/drush": "^11"
  7872. },
  7873. "suggest": {
  7874. "drush/drush": "^10 || ^11"
  7875. },
  7876. "type": "drupal-module",
  7877. "extra": {
  7878. "drupal": {
  7879. "version": "4.2.5",
  7880. "datestamp": "1691066184",
  7881. "security-coverage": {
  7882. "status": "covered",
  7883. "message": "Covered by Drupal's security advisory policy"
  7884. }
  7885. },
  7886. "drush": {
  7887. "services": {
  7888. "drush.services.yml": "^10 || ^11"
  7889. }
  7890. }
  7891. },
  7892. "notification-url": "https://packages.drupal.org/8/downloads",
  7893. "license": [
  7894. "GPL-2.0-or-later"
  7895. ],
  7896. "authors": [
  7897. {
  7898. "name": "Marcin Grabias",
  7899. "homepage": "https://www.drupal.org/u/graber"
  7900. },
  7901. {
  7902. "name": "Graber",
  7903. "homepage": "https://www.drupal.org/user/1599440"
  7904. },
  7905. {
  7906. "name": "joelpittet",
  7907. "homepage": "https://www.drupal.org/user/160302"
  7908. }
  7909. ],
  7910. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7911. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7912. "support": {
  7913. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  7914. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  7915. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  7916. }
  7917. },
  7918. {
  7919. "name": "drupal/webform",
  7920. "version": "6.2.0",
  7921. "source": {
  7922. "type": "git",
  7923. "url": "https://git.drupalcode.org/project/webform.git",
  7924. "reference": "6.2.0"
  7925. },
  7926. "dist": {
  7927. "type": "zip",
  7928. "url": "https://ftp.drupal.org/files/projects/webform-6.2.0.zip",
  7929. "reference": "6.2.0",
  7930. "shasum": "7a8292fb86fa60c88377279769fd6f1b1fad05c2"
  7931. },
  7932. "require": {
  7933. "drupal/core": "^9.4 || ^10",
  7934. "php": ">=8.1"
  7935. },
  7936. "require-dev": {
  7937. "drupal/address": "1.x-dev",
  7938. "drupal/bootstrap": "3.x-dev",
  7939. "drupal/captcha": "^1 || ^2",
  7940. "drupal/chosen": "3.0.x-dev",
  7941. "drupal/ckeditor": "1.0.x-dev",
  7942. "drupal/clientside_validation": "^3 || ^4",
  7943. "drupal/clientside_validation_jquery": "*",
  7944. "drupal/devel": "5.x-dev",
  7945. "drupal/entity": "1.x-dev",
  7946. "drupal/entity_print": "2.x-dev",
  7947. "drupal/group": "1.x-dev",
  7948. "drupal/hal": "1 - 2",
  7949. "drupal/jquery_ui": "1.x-dev",
  7950. "drupal/jquery_ui_checkboxradio": "2.x-dev",
  7951. "drupal/jquery_ui_datepicker": "2.x-dev",
  7952. "drupal/mailsystem": "4.x-dev",
  7953. "drupal/metatag": "1.x-dev",
  7954. "drupal/paragraphs": "1.x-dev",
  7955. "drupal/select2": "1.x-dev",
  7956. "drupal/smtp": "1.x-dev",
  7957. "drupal/styleguide": "^1 || ^2",
  7958. "drupal/telephone_validation": "2.x-dev",
  7959. "drupal/token": "1.x-dev",
  7960. "drupal/variationcache": "1.x-dev",
  7961. "drupal/webform_access": "*",
  7962. "drupal/webform_attachment": "*",
  7963. "drupal/webform_clientside_validation": "*",
  7964. "drupal/webform_devel": "*",
  7965. "drupal/webform_entity_print": "*",
  7966. "drupal/webform_node": "*",
  7967. "drupal/webform_options_limit": "*",
  7968. "drupal/webform_scheduled_email": "*",
  7969. "drupal/webform_share": "*",
  7970. "drupal/webform_ui": "*"
  7971. },
  7972. "suggest": {
  7973. "drupal/jquery_ui_checkboxradio": "Provides jQuery UI Checkboxradio library. Required by the Webform jQueryUI Buttons module. The Webform jQueryUI Buttons module is deprecated because jQueryUI is no longer maintained.",
  7974. "drupal/jquery_ui_datepicker": "Provides jQuery UI Datepicker library. Required to support datepickers. The Webform jQueryUI Datepicker module is deprecated because jQueryUI is no longer maintained."
  7975. },
  7976. "type": "drupal-module",
  7977. "extra": {
  7978. "drupal": {
  7979. "version": "6.2.0",
  7980. "datestamp": "1698674300",
  7981. "security-coverage": {
  7982. "status": "covered",
  7983. "message": "Covered by Drupal's security advisory policy"
  7984. }
  7985. },
  7986. "drush": {
  7987. "services": {
  7988. "drush.services.yml": ">=9"
  7989. }
  7990. }
  7991. },
  7992. "notification-url": "https://packages.drupal.org/8/downloads",
  7993. "license": [
  7994. "GPL-2.0-or-later"
  7995. ],
  7996. "authors": [
  7997. {
  7998. "name": "Jacob Rockowitz (jrockowitz)",
  7999. "homepage": "https://www.drupal.org/u/jrockowitz",
  8000. "role": "Maintainer"
  8001. },
  8002. {
  8003. "name": "Contributors",
  8004. "homepage": "https://www.drupal.org/node/7404/committers",
  8005. "role": "Contributor"
  8006. },
  8007. {
  8008. "name": "Liam Morland",
  8009. "homepage": "https://www.drupal.org/user/493050"
  8010. },
  8011. {
  8012. "name": "quicksketch",
  8013. "homepage": "https://www.drupal.org/user/35821"
  8014. },
  8015. {
  8016. "name": "torotil",
  8017. "homepage": "https://www.drupal.org/user/865256"
  8018. }
  8019. ],
  8020. "description": "Enables the creation of webforms and questionnaires.",
  8021. "homepage": "https://drupal.org/project/webform",
  8022. "support": {
  8023. "source": "https://git.drupalcode.org/project/webform",
  8024. "issues": "https://www.drupal.org/project/issues/webform?version=8.x",
  8025. "docs": "https://www.drupal.org/docs/8/modules/webform",
  8026. "forum": "https://drupal.stackexchange.com/questions/tagged/webform"
  8027. }
  8028. },
  8029. {
  8030. "name": "drush/drush",
  8031. "version": "11.6.0",
  8032. "source": {
  8033. "type": "git",
  8034. "url": "https://github.com/drush-ops/drush.git",
  8035. "reference": "f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78"
  8036. },
  8037. "dist": {
  8038. "type": "zip",
  8039. "url": "https://api.github.com/repos/drush-ops/drush/zipball/f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78",
  8040. "reference": "f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78",
  8041. "shasum": ""
  8042. },
  8043. "require": {
  8044. "chi-teck/drupal-code-generator": "^2.4",
  8045. "composer/semver": "^1.4 || ^3",
  8046. "consolidation/annotated-command": "^4.8.2",
  8047. "consolidation/config": "^2",
  8048. "consolidation/filter-via-dot-access-data": "^2",
  8049. "consolidation/robo": "^3.0.9 || ^4.0.1",
  8050. "consolidation/site-alias": "^3.1.6 || ^4",
  8051. "consolidation/site-process": "^4.1.3 || ^5",
  8052. "enlightn/security-checker": "^1",
  8053. "ext-dom": "*",
  8054. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  8055. "league/container": "^3.4 || ^4",
  8056. "php": ">=7.4",
  8057. "psy/psysh": "~0.11",
  8058. "symfony/event-dispatcher": "^4.0 || ^5.0 || ^6.0",
  8059. "symfony/filesystem": "^4.4 || ^5.4 || ^6.1",
  8060. "symfony/finder": "^4.0 || ^5 || ^6",
  8061. "symfony/polyfill-php80": "^1.23",
  8062. "symfony/var-dumper": "^4.0 || ^5.0 || ^6.0",
  8063. "symfony/yaml": "^4.0 || ^5.0 || ^6.0",
  8064. "webflo/drupal-finder": "^1.2"
  8065. },
  8066. "conflict": {
  8067. "drupal/core": "< 9.2",
  8068. "drupal/migrate_run": "*",
  8069. "drupal/migrate_tools": "<= 5"
  8070. },
  8071. "require-dev": {
  8072. "composer/installers": "^1.7",
  8073. "cweagans/composer-patches": "~1.0",
  8074. "david-garcia/phpwhois": "4.3.0",
  8075. "drupal/core-recommended": "^9 || ^10",
  8076. "drupal/semver_example": "2.3.0",
  8077. "phpunit/phpunit": ">=7.5.20",
  8078. "rector/rector": "^0.12",
  8079. "squizlabs/php_codesniffer": "^3.6",
  8080. "vlucas/phpdotenv": "^2.4",
  8081. "yoast/phpunit-polyfills": "^0.2.0"
  8082. },
  8083. "bin": [
  8084. "drush"
  8085. ],
  8086. "type": "library",
  8087. "extra": {
  8088. "installer-paths": {
  8089. "sut/core": [
  8090. "type:drupal-core"
  8091. ],
  8092. "sut/libraries/{$name}": [
  8093. "type:drupal-library"
  8094. ],
  8095. "sut/modules/unish/{$name}": [
  8096. "drupal/devel"
  8097. ],
  8098. "sut/themes/unish/{$name}": [
  8099. "drupal/empty_theme"
  8100. ],
  8101. "sut/modules/contrib/{$name}": [
  8102. "type:drupal-module"
  8103. ],
  8104. "sut/profiles/contrib/{$name}": [
  8105. "type:drupal-profile"
  8106. ],
  8107. "sut/themes/contrib/{$name}": [
  8108. "type:drupal-theme"
  8109. ],
  8110. "sut/drush/contrib/{$name}": [
  8111. "type:drupal-drush"
  8112. ]
  8113. }
  8114. },
  8115. "autoload": {
  8116. "psr-4": {
  8117. "Drush\\": "src/"
  8118. }
  8119. },
  8120. "notification-url": "https://packagist.org/downloads/",
  8121. "license": [
  8122. "GPL-2.0-or-later"
  8123. ],
  8124. "authors": [
  8125. {
  8126. "name": "Moshe Weitzman",
  8127. "email": "weitzman@tejasa.com"
  8128. },
  8129. {
  8130. "name": "Owen Barton",
  8131. "email": "drupal@owenbarton.com"
  8132. },
  8133. {
  8134. "name": "Greg Anderson",
  8135. "email": "greg.1.anderson@greenknowe.org"
  8136. },
  8137. {
  8138. "name": "Jonathan Araña Cruz",
  8139. "email": "jonhattan@faita.net"
  8140. },
  8141. {
  8142. "name": "Jonathan Hedstrom",
  8143. "email": "jhedstrom@gmail.com"
  8144. },
  8145. {
  8146. "name": "Christopher Gervais",
  8147. "email": "chris@ergonlogic.com"
  8148. },
  8149. {
  8150. "name": "Dave Reid",
  8151. "email": "dave@davereid.net"
  8152. },
  8153. {
  8154. "name": "Damian Lee",
  8155. "email": "damiankloip@googlemail.com"
  8156. }
  8157. ],
  8158. "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.",
  8159. "homepage": "http://www.drush.org",
  8160. "support": {
  8161. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  8162. "issues": "https://github.com/drush-ops/drush/issues",
  8163. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  8164. "source": "https://github.com/drush-ops/drush/tree/11.6.0"
  8165. },
  8166. "funding": [
  8167. {
  8168. "url": "https://github.com/weitzman",
  8169. "type": "github"
  8170. }
  8171. ],
  8172. "time": "2023-06-06T18:46:18+00:00"
  8173. },
  8174. {
  8175. "name": "egulias/email-validator",
  8176. "version": "4.0.2",
  8177. "source": {
  8178. "type": "git",
  8179. "url": "https://github.com/egulias/EmailValidator.git",
  8180. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  8181. },
  8182. "dist": {
  8183. "type": "zip",
  8184. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  8185. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  8186. "shasum": ""
  8187. },
  8188. "require": {
  8189. "doctrine/lexer": "^2.0 || ^3.0",
  8190. "php": ">=8.1",
  8191. "symfony/polyfill-intl-idn": "^1.26"
  8192. },
  8193. "require-dev": {
  8194. "phpunit/phpunit": "^10.2",
  8195. "vimeo/psalm": "^5.12"
  8196. },
  8197. "suggest": {
  8198. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  8199. },
  8200. "type": "library",
  8201. "extra": {
  8202. "branch-alias": {
  8203. "dev-master": "4.0.x-dev"
  8204. }
  8205. },
  8206. "autoload": {
  8207. "psr-4": {
  8208. "Egulias\\EmailValidator\\": "src"
  8209. }
  8210. },
  8211. "notification-url": "https://packagist.org/downloads/",
  8212. "license": [
  8213. "MIT"
  8214. ],
  8215. "authors": [
  8216. {
  8217. "name": "Eduardo Gulias Davis"
  8218. }
  8219. ],
  8220. "description": "A library for validating emails against several RFCs",
  8221. "homepage": "https://github.com/egulias/EmailValidator",
  8222. "keywords": [
  8223. "email",
  8224. "emailvalidation",
  8225. "emailvalidator",
  8226. "validation",
  8227. "validator"
  8228. ],
  8229. "support": {
  8230. "issues": "https://github.com/egulias/EmailValidator/issues",
  8231. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  8232. },
  8233. "funding": [
  8234. {
  8235. "url": "https://github.com/egulias",
  8236. "type": "github"
  8237. }
  8238. ],
  8239. "time": "2023-10-06T06:47:41+00:00"
  8240. },
  8241. {
  8242. "name": "enlightn/security-checker",
  8243. "version": "v1.10.0",
  8244. "source": {
  8245. "type": "git",
  8246. "url": "https://github.com/enlightn/security-checker.git",
  8247. "reference": "196bacc76e7a72a63d0e1220926dbb190272db97"
  8248. },
  8249. "dist": {
  8250. "type": "zip",
  8251. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/196bacc76e7a72a63d0e1220926dbb190272db97",
  8252. "reference": "196bacc76e7a72a63d0e1220926dbb190272db97",
  8253. "shasum": ""
  8254. },
  8255. "require": {
  8256. "ext-json": "*",
  8257. "guzzlehttp/guzzle": "^6.3|^7.0",
  8258. "php": ">=5.6",
  8259. "symfony/console": "^3.4|^4|^5|^6",
  8260. "symfony/finder": "^3|^4|^5|^6",
  8261. "symfony/process": "^3.4|^4|^5|^6",
  8262. "symfony/yaml": "^3.4|^4|^5|^6"
  8263. },
  8264. "require-dev": {
  8265. "ext-zip": "*",
  8266. "friendsofphp/php-cs-fixer": "^2.18|^3.0",
  8267. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  8268. },
  8269. "bin": [
  8270. "security-checker"
  8271. ],
  8272. "type": "library",
  8273. "autoload": {
  8274. "psr-4": {
  8275. "Enlightn\\SecurityChecker\\": "src"
  8276. }
  8277. },
  8278. "notification-url": "https://packagist.org/downloads/",
  8279. "license": [
  8280. "MIT"
  8281. ],
  8282. "authors": [
  8283. {
  8284. "name": "Paras Malhotra",
  8285. "email": "paras@laravel-enlightn.com"
  8286. },
  8287. {
  8288. "name": "Miguel Piedrafita",
  8289. "email": "soy@miguelpiedrafita.com"
  8290. }
  8291. ],
  8292. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  8293. "keywords": [
  8294. "package",
  8295. "php",
  8296. "scanner",
  8297. "security",
  8298. "security advisories",
  8299. "vulnerability scanner"
  8300. ],
  8301. "support": {
  8302. "issues": "https://github.com/enlightn/security-checker/issues",
  8303. "source": "https://github.com/enlightn/security-checker/tree/v1.10.0"
  8304. },
  8305. "time": "2022-02-21T22:40:16+00:00"
  8306. },
  8307. {
  8308. "name": "fileeye/mimemap",
  8309. "version": "2.0.2",
  8310. "source": {
  8311. "type": "git",
  8312. "url": "https://github.com/FileEye/MimeMap.git",
  8313. "reference": "befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d"
  8314. },
  8315. "dist": {
  8316. "type": "zip",
  8317. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d",
  8318. "reference": "befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d",
  8319. "shasum": ""
  8320. },
  8321. "require": {
  8322. "php": ">=7.3"
  8323. },
  8324. "require-dev": {
  8325. "composer-runtime-api": "^2.0.0",
  8326. "phpstan/phpstan": "^1.2",
  8327. "phpunit/phpunit": "^9 | ^10",
  8328. "sebastian/comparator": ">=4",
  8329. "sebastian/diff": ">=4",
  8330. "squizlabs/php_codesniffer": ">=3.6",
  8331. "symfony/console": ">=5.4",
  8332. "symfony/filesystem": ">=5.4",
  8333. "symfony/var-dumper": ">=5.4",
  8334. "symfony/yaml": ">=5.4",
  8335. "vimeo/psalm": "^4.23 | ^5"
  8336. },
  8337. "bin": [
  8338. "bin/fileeye-mimemap"
  8339. ],
  8340. "type": "library",
  8341. "extra": {
  8342. "branch-alias": {
  8343. "dev-master": "2.x-dev"
  8344. }
  8345. },
  8346. "autoload": {
  8347. "psr-4": {
  8348. "FileEye\\MimeMap\\": "src/"
  8349. }
  8350. },
  8351. "notification-url": "https://packagist.org/downloads/",
  8352. "license": [
  8353. "LGPL-3.0-or-later"
  8354. ],
  8355. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  8356. "homepage": "https://github.com/FileEye/MimeMap",
  8357. "keywords": [
  8358. "mime",
  8359. "mime-database",
  8360. "mime-parser",
  8361. "mime-type"
  8362. ],
  8363. "support": {
  8364. "issues": "https://github.com/FileEye/MimeMap/issues",
  8365. "source": "https://github.com/FileEye/MimeMap/tree/2.0.2"
  8366. },
  8367. "time": "2023-08-29T16:20:26+00:00"
  8368. },
  8369. {
  8370. "name": "fileeye/pel",
  8371. "version": "0.9.20",
  8372. "source": {
  8373. "type": "git",
  8374. "url": "https://github.com/FileEye/pel.git",
  8375. "reference": "1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede"
  8376. },
  8377. "dist": {
  8378. "type": "zip",
  8379. "url": "https://api.github.com/repos/FileEye/pel/zipball/1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede",
  8380. "reference": "1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede",
  8381. "shasum": ""
  8382. },
  8383. "require": {
  8384. "php": ">=7.1.0"
  8385. },
  8386. "require-dev": {
  8387. "ext-exif": "*",
  8388. "ext-gd": "*",
  8389. "php-coveralls/php-coveralls": ">2.4",
  8390. "phpstan/phpstan": "^1.4",
  8391. "squizlabs/php_codesniffer": ">3.5",
  8392. "symfony/phpunit-bridge": "^4 || ^5 || ^6"
  8393. },
  8394. "type": "library",
  8395. "autoload": {
  8396. "psr-4": {
  8397. "lsolesen\\pel\\": "src/"
  8398. }
  8399. },
  8400. "notification-url": "https://packagist.org/downloads/",
  8401. "license": [
  8402. "GPL-2.0"
  8403. ],
  8404. "authors": [
  8405. {
  8406. "name": "Lars Olesen",
  8407. "email": "lars@intraface.dk",
  8408. "homepage": "http://intraface.dk",
  8409. "role": "Developer"
  8410. },
  8411. {
  8412. "name": "Martin Geisler",
  8413. "email": "martin@geisler.net",
  8414. "homepage": "http://geisler.net",
  8415. "role": "Developer"
  8416. }
  8417. ],
  8418. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  8419. "homepage": "https://github.com/FileEye/pel",
  8420. "keywords": [
  8421. "exif",
  8422. "image"
  8423. ],
  8424. "support": {
  8425. "issues": "https://github.com/FileEye/pel/issues",
  8426. "source": "https://github.com/FileEye/pel/tree/0.9.20"
  8427. },
  8428. "time": "2023-06-20T07:10:35+00:00"
  8429. },
  8430. {
  8431. "name": "giggsey/libphonenumber-for-php",
  8432. "version": "8.13.25",
  8433. "source": {
  8434. "type": "git",
  8435. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  8436. "reference": "fe9c0b201941977b91b6b086c9551aff07a733ae"
  8437. },
  8438. "dist": {
  8439. "type": "zip",
  8440. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/fe9c0b201941977b91b6b086c9551aff07a733ae",
  8441. "reference": "fe9c0b201941977b91b6b086c9551aff07a733ae",
  8442. "shasum": ""
  8443. },
  8444. "require": {
  8445. "giggsey/locale": "^1.7|^2.0",
  8446. "php": ">=5.3.2",
  8447. "symfony/polyfill-mbstring": "^1.17"
  8448. },
  8449. "require-dev": {
  8450. "pear/pear-core-minimal": "^1.9",
  8451. "pear/pear_exception": "^1.0",
  8452. "pear/versioncontrol_git": "^0.5",
  8453. "phing/phing": "^2.7",
  8454. "php-coveralls/php-coveralls": "^1.0|^2.0",
  8455. "symfony/console": "^2.8|^3.0|^v4.4|^v5.2",
  8456. "symfony/phpunit-bridge": "^4.2 || ^5"
  8457. },
  8458. "type": "library",
  8459. "extra": {
  8460. "branch-alias": {
  8461. "dev-master": "8.x-dev"
  8462. }
  8463. },
  8464. "autoload": {
  8465. "psr-4": {
  8466. "libphonenumber\\": "src/"
  8467. },
  8468. "exclude-from-classmap": [
  8469. "/src/data/",
  8470. "/src/carrier/data/",
  8471. "/src/geocoding/data/",
  8472. "/src/timezone/data/"
  8473. ]
  8474. },
  8475. "notification-url": "https://packagist.org/downloads/",
  8476. "license": [
  8477. "Apache-2.0"
  8478. ],
  8479. "authors": [
  8480. {
  8481. "name": "Joshua Gigg",
  8482. "email": "giggsey@gmail.com",
  8483. "homepage": "https://giggsey.com/"
  8484. }
  8485. ],
  8486. "description": "PHP Port of Google's libphonenumber",
  8487. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  8488. "keywords": [
  8489. "geocoding",
  8490. "geolocation",
  8491. "libphonenumber",
  8492. "mobile",
  8493. "phonenumber",
  8494. "validation"
  8495. ],
  8496. "support": {
  8497. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
  8498. "source": "https://github.com/giggsey/libphonenumber-for-php"
  8499. },
  8500. "time": "2023-11-13T09:34:15+00:00"
  8501. },
  8502. {
  8503. "name": "giggsey/locale",
  8504. "version": "2.5",
  8505. "source": {
  8506. "type": "git",
  8507. "url": "https://github.com/giggsey/Locale.git",
  8508. "reference": "e6d4540109a01dd2bc7334cdc842d6a6a67cf239"
  8509. },
  8510. "dist": {
  8511. "type": "zip",
  8512. "url": "https://api.github.com/repos/giggsey/Locale/zipball/e6d4540109a01dd2bc7334cdc842d6a6a67cf239",
  8513. "reference": "e6d4540109a01dd2bc7334cdc842d6a6a67cf239",
  8514. "shasum": ""
  8515. },
  8516. "require": {
  8517. "php": ">=7.2"
  8518. },
  8519. "require-dev": {
  8520. "ext-json": "*",
  8521. "pear/pear-core-minimal": "^1.9",
  8522. "pear/pear_exception": "^1.0",
  8523. "pear/versioncontrol_git": "^0.5",
  8524. "phing/phing": "^2.7",
  8525. "php-coveralls/php-coveralls": "^2.0",
  8526. "phpunit/phpunit": "^8.5|^9.5",
  8527. "symfony/console": "^5.0|^6.0",
  8528. "symfony/filesystem": "^5.0|^6.0",
  8529. "symfony/finder": "^5.0|^6.0",
  8530. "symfony/process": "^5.0|^6.0"
  8531. },
  8532. "type": "library",
  8533. "autoload": {
  8534. "psr-4": {
  8535. "Giggsey\\Locale\\": "src/"
  8536. }
  8537. },
  8538. "notification-url": "https://packagist.org/downloads/",
  8539. "license": [
  8540. "MIT"
  8541. ],
  8542. "authors": [
  8543. {
  8544. "name": "Joshua Gigg",
  8545. "email": "giggsey@gmail.com",
  8546. "homepage": "https://giggsey.com/"
  8547. }
  8548. ],
  8549. "description": "Locale functions required by libphonenumber-for-php",
  8550. "support": {
  8551. "issues": "https://github.com/giggsey/Locale/issues",
  8552. "source": "https://github.com/giggsey/Locale/tree/2.5"
  8553. },
  8554. "time": "2023-11-01T17:19:48+00:00"
  8555. },
  8556. {
  8557. "name": "grasmash/expander",
  8558. "version": "3.0.0",
  8559. "source": {
  8560. "type": "git",
  8561. "url": "https://github.com/grasmash/expander.git",
  8562. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82"
  8563. },
  8564. "dist": {
  8565. "type": "zip",
  8566. "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  8567. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  8568. "shasum": ""
  8569. },
  8570. "require": {
  8571. "dflydev/dot-access-data": "^3.0.0",
  8572. "php": ">=8.0",
  8573. "psr/log": "^2 | ^3"
  8574. },
  8575. "require-dev": {
  8576. "greg-1-anderson/composer-test-scenarios": "^1",
  8577. "php-coveralls/php-coveralls": "^2.5",
  8578. "phpunit/phpunit": "^9",
  8579. "squizlabs/php_codesniffer": "^3.3"
  8580. },
  8581. "type": "library",
  8582. "extra": {
  8583. "branch-alias": {
  8584. "dev-master": "1.x-dev"
  8585. }
  8586. },
  8587. "autoload": {
  8588. "psr-4": {
  8589. "Grasmash\\Expander\\": "src/"
  8590. }
  8591. },
  8592. "notification-url": "https://packagist.org/downloads/",
  8593. "license": [
  8594. "MIT"
  8595. ],
  8596. "authors": [
  8597. {
  8598. "name": "Matthew Grasmick"
  8599. }
  8600. ],
  8601. "description": "Expands internal property references in PHP arrays file.",
  8602. "support": {
  8603. "issues": "https://github.com/grasmash/expander/issues",
  8604. "source": "https://github.com/grasmash/expander/tree/3.0.0"
  8605. },
  8606. "time": "2022-05-10T13:14:49+00:00"
  8607. },
  8608. {
  8609. "name": "guzzlehttp/guzzle",
  8610. "version": "7.7.1",
  8611. "source": {
  8612. "type": "git",
  8613. "url": "https://github.com/guzzle/guzzle.git",
  8614. "reference": "085b026db54d4b5012f727c80c9958e8b8cbc454"
  8615. },
  8616. "dist": {
  8617. "type": "zip",
  8618. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/085b026db54d4b5012f727c80c9958e8b8cbc454",
  8619. "reference": "085b026db54d4b5012f727c80c9958e8b8cbc454",
  8620. "shasum": ""
  8621. },
  8622. "require": {
  8623. "ext-json": "*",
  8624. "guzzlehttp/promises": "^1.5.3 || ^2.0",
  8625. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  8626. "php": "^7.2.5 || ^8.0",
  8627. "psr/http-client": "^1.0",
  8628. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8629. },
  8630. "provide": {
  8631. "psr/http-client-implementation": "1.0"
  8632. },
  8633. "require-dev": {
  8634. "bamarni/composer-bin-plugin": "^1.8.1",
  8635. "ext-curl": "*",
  8636. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  8637. "php-http/message-factory": "^1.1",
  8638. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  8639. "psr/log": "^1.1 || ^2.0 || ^3.0"
  8640. },
  8641. "suggest": {
  8642. "ext-curl": "Required for CURL handler support",
  8643. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  8644. "psr/log": "Required for using the Log middleware"
  8645. },
  8646. "type": "library",
  8647. "extra": {
  8648. "bamarni-bin": {
  8649. "bin-links": true,
  8650. "forward-command": false
  8651. }
  8652. },
  8653. "autoload": {
  8654. "files": [
  8655. "src/functions_include.php"
  8656. ],
  8657. "psr-4": {
  8658. "GuzzleHttp\\": "src/"
  8659. }
  8660. },
  8661. "notification-url": "https://packagist.org/downloads/",
  8662. "license": [
  8663. "MIT"
  8664. ],
  8665. "authors": [
  8666. {
  8667. "name": "Graham Campbell",
  8668. "email": "hello@gjcampbell.co.uk",
  8669. "homepage": "https://github.com/GrahamCampbell"
  8670. },
  8671. {
  8672. "name": "Michael Dowling",
  8673. "email": "mtdowling@gmail.com",
  8674. "homepage": "https://github.com/mtdowling"
  8675. },
  8676. {
  8677. "name": "Jeremy Lindblom",
  8678. "email": "jeremeamia@gmail.com",
  8679. "homepage": "https://github.com/jeremeamia"
  8680. },
  8681. {
  8682. "name": "George Mponos",
  8683. "email": "gmponos@gmail.com",
  8684. "homepage": "https://github.com/gmponos"
  8685. },
  8686. {
  8687. "name": "Tobias Nyholm",
  8688. "email": "tobias.nyholm@gmail.com",
  8689. "homepage": "https://github.com/Nyholm"
  8690. },
  8691. {
  8692. "name": "Márk Sági-Kazár",
  8693. "email": "mark.sagikazar@gmail.com",
  8694. "homepage": "https://github.com/sagikazarmark"
  8695. },
  8696. {
  8697. "name": "Tobias Schultze",
  8698. "email": "webmaster@tubo-world.de",
  8699. "homepage": "https://github.com/Tobion"
  8700. }
  8701. ],
  8702. "description": "Guzzle is a PHP HTTP client library",
  8703. "keywords": [
  8704. "client",
  8705. "curl",
  8706. "framework",
  8707. "http",
  8708. "http client",
  8709. "psr-18",
  8710. "psr-7",
  8711. "rest",
  8712. "web service"
  8713. ],
  8714. "support": {
  8715. "issues": "https://github.com/guzzle/guzzle/issues",
  8716. "source": "https://github.com/guzzle/guzzle/tree/7.7.1"
  8717. },
  8718. "funding": [
  8719. {
  8720. "url": "https://github.com/GrahamCampbell",
  8721. "type": "github"
  8722. },
  8723. {
  8724. "url": "https://github.com/Nyholm",
  8725. "type": "github"
  8726. },
  8727. {
  8728. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  8729. "type": "tidelift"
  8730. }
  8731. ],
  8732. "time": "2023-08-27T10:02:06+00:00"
  8733. },
  8734. {
  8735. "name": "guzzlehttp/promises",
  8736. "version": "2.0.1",
  8737. "source": {
  8738. "type": "git",
  8739. "url": "https://github.com/guzzle/promises.git",
  8740. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  8741. },
  8742. "dist": {
  8743. "type": "zip",
  8744. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  8745. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  8746. "shasum": ""
  8747. },
  8748. "require": {
  8749. "php": "^7.2.5 || ^8.0"
  8750. },
  8751. "require-dev": {
  8752. "bamarni/composer-bin-plugin": "^1.8.1",
  8753. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  8754. },
  8755. "type": "library",
  8756. "extra": {
  8757. "bamarni-bin": {
  8758. "bin-links": true,
  8759. "forward-command": false
  8760. }
  8761. },
  8762. "autoload": {
  8763. "psr-4": {
  8764. "GuzzleHttp\\Promise\\": "src/"
  8765. }
  8766. },
  8767. "notification-url": "https://packagist.org/downloads/",
  8768. "license": [
  8769. "MIT"
  8770. ],
  8771. "authors": [
  8772. {
  8773. "name": "Graham Campbell",
  8774. "email": "hello@gjcampbell.co.uk",
  8775. "homepage": "https://github.com/GrahamCampbell"
  8776. },
  8777. {
  8778. "name": "Michael Dowling",
  8779. "email": "mtdowling@gmail.com",
  8780. "homepage": "https://github.com/mtdowling"
  8781. },
  8782. {
  8783. "name": "Tobias Nyholm",
  8784. "email": "tobias.nyholm@gmail.com",
  8785. "homepage": "https://github.com/Nyholm"
  8786. },
  8787. {
  8788. "name": "Tobias Schultze",
  8789. "email": "webmaster@tubo-world.de",
  8790. "homepage": "https://github.com/Tobion"
  8791. }
  8792. ],
  8793. "description": "Guzzle promises library",
  8794. "keywords": [
  8795. "promise"
  8796. ],
  8797. "support": {
  8798. "issues": "https://github.com/guzzle/promises/issues",
  8799. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  8800. },
  8801. "funding": [
  8802. {
  8803. "url": "https://github.com/GrahamCampbell",
  8804. "type": "github"
  8805. },
  8806. {
  8807. "url": "https://github.com/Nyholm",
  8808. "type": "github"
  8809. },
  8810. {
  8811. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  8812. "type": "tidelift"
  8813. }
  8814. ],
  8815. "time": "2023-08-03T15:11:55+00:00"
  8816. },
  8817. {
  8818. "name": "guzzlehttp/psr7",
  8819. "version": "2.5.1",
  8820. "source": {
  8821. "type": "git",
  8822. "url": "https://github.com/guzzle/psr7.git",
  8823. "reference": "a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f"
  8824. },
  8825. "dist": {
  8826. "type": "zip",
  8827. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f",
  8828. "reference": "a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f",
  8829. "shasum": ""
  8830. },
  8831. "require": {
  8832. "php": "^7.2.5 || ^8.0",
  8833. "psr/http-factory": "^1.0",
  8834. "psr/http-message": "^1.1 || ^2.0",
  8835. "ralouphie/getallheaders": "^3.0"
  8836. },
  8837. "provide": {
  8838. "psr/http-factory-implementation": "1.0",
  8839. "psr/http-message-implementation": "1.0"
  8840. },
  8841. "require-dev": {
  8842. "bamarni/composer-bin-plugin": "^1.8.1",
  8843. "http-interop/http-factory-tests": "^0.9",
  8844. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  8845. },
  8846. "suggest": {
  8847. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8848. },
  8849. "type": "library",
  8850. "extra": {
  8851. "bamarni-bin": {
  8852. "bin-links": true,
  8853. "forward-command": false
  8854. }
  8855. },
  8856. "autoload": {
  8857. "psr-4": {
  8858. "GuzzleHttp\\Psr7\\": "src/"
  8859. }
  8860. },
  8861. "notification-url": "https://packagist.org/downloads/",
  8862. "license": [
  8863. "MIT"
  8864. ],
  8865. "authors": [
  8866. {
  8867. "name": "Graham Campbell",
  8868. "email": "hello@gjcampbell.co.uk",
  8869. "homepage": "https://github.com/GrahamCampbell"
  8870. },
  8871. {
  8872. "name": "Michael Dowling",
  8873. "email": "mtdowling@gmail.com",
  8874. "homepage": "https://github.com/mtdowling"
  8875. },
  8876. {
  8877. "name": "George Mponos",
  8878. "email": "gmponos@gmail.com",
  8879. "homepage": "https://github.com/gmponos"
  8880. },
  8881. {
  8882. "name": "Tobias Nyholm",
  8883. "email": "tobias.nyholm@gmail.com",
  8884. "homepage": "https://github.com/Nyholm"
  8885. },
  8886. {
  8887. "name": "Márk Sági-Kazár",
  8888. "email": "mark.sagikazar@gmail.com",
  8889. "homepage": "https://github.com/sagikazarmark"
  8890. },
  8891. {
  8892. "name": "Tobias Schultze",
  8893. "email": "webmaster@tubo-world.de",
  8894. "homepage": "https://github.com/Tobion"
  8895. },
  8896. {
  8897. "name": "Márk Sági-Kazár",
  8898. "email": "mark.sagikazar@gmail.com",
  8899. "homepage": "https://sagikazarmark.hu"
  8900. }
  8901. ],
  8902. "description": "PSR-7 message implementation that also provides common utility methods",
  8903. "keywords": [
  8904. "http",
  8905. "message",
  8906. "psr-7",
  8907. "request",
  8908. "response",
  8909. "stream",
  8910. "uri",
  8911. "url"
  8912. ],
  8913. "support": {
  8914. "issues": "https://github.com/guzzle/psr7/issues",
  8915. "source": "https://github.com/guzzle/psr7/tree/2.5.1"
  8916. },
  8917. "funding": [
  8918. {
  8919. "url": "https://github.com/GrahamCampbell",
  8920. "type": "github"
  8921. },
  8922. {
  8923. "url": "https://github.com/Nyholm",
  8924. "type": "github"
  8925. },
  8926. {
  8927. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  8928. "type": "tidelift"
  8929. }
  8930. ],
  8931. "time": "2023-08-03T15:02:42+00:00"
  8932. },
  8933. {
  8934. "name": "kint-php/kint",
  8935. "version": "3.3",
  8936. "source": {
  8937. "type": "git",
  8938. "url": "https://github.com/kint-php/kint.git",
  8939. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  8940. },
  8941. "dist": {
  8942. "type": "zip",
  8943. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8944. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8945. "shasum": ""
  8946. },
  8947. "require": {
  8948. "php": ">=5.3.6"
  8949. },
  8950. "require-dev": {
  8951. "friendsofphp/php-cs-fixer": "^2.0",
  8952. "phpunit/phpunit": "^4.0",
  8953. "seld/phar-utils": "^1.0",
  8954. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  8955. "vimeo/psalm": "^3.0"
  8956. },
  8957. "suggest": {
  8958. "ext-ctype": "Simple data type tests",
  8959. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  8960. "ext-mbstring": "Provides string encoding detection",
  8961. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  8962. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  8963. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  8964. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  8965. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  8966. },
  8967. "type": "library",
  8968. "autoload": {
  8969. "files": [
  8970. "init.php"
  8971. ],
  8972. "psr-4": {
  8973. "Kint\\": "src/"
  8974. }
  8975. },
  8976. "notification-url": "https://packagist.org/downloads/",
  8977. "license": [
  8978. "MIT"
  8979. ],
  8980. "authors": [
  8981. {
  8982. "name": "Jonathan Vollebregt",
  8983. "homepage": "https://github.com/jnvsor"
  8984. },
  8985. {
  8986. "name": "Rokas Šleinius",
  8987. "homepage": "https://github.com/raveren"
  8988. },
  8989. {
  8990. "name": "Contributors",
  8991. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  8992. }
  8993. ],
  8994. "description": "Kint - debugging tool for PHP developers",
  8995. "homepage": "https://kint-php.github.io/kint/",
  8996. "keywords": [
  8997. "debug",
  8998. "kint",
  8999. "php"
  9000. ],
  9001. "support": {
  9002. "issues": "https://github.com/kint-php/kint/issues",
  9003. "source": "https://github.com/kint-php/kint/tree/master"
  9004. },
  9005. "time": "2019-10-17T18:05:24+00:00"
  9006. },
  9007. {
  9008. "name": "league/container",
  9009. "version": "4.2.0",
  9010. "source": {
  9011. "type": "git",
  9012. "url": "https://github.com/thephpleague/container.git",
  9013. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
  9014. },
  9015. "dist": {
  9016. "type": "zip",
  9017. "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
  9018. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
  9019. "shasum": ""
  9020. },
  9021. "require": {
  9022. "php": "^7.2 || ^8.0",
  9023. "psr/container": "^1.1 || ^2.0"
  9024. },
  9025. "provide": {
  9026. "psr/container-implementation": "^1.0"
  9027. },
  9028. "replace": {
  9029. "orno/di": "~2.0"
  9030. },
  9031. "require-dev": {
  9032. "nette/php-generator": "^3.4",
  9033. "nikic/php-parser": "^4.10",
  9034. "phpstan/phpstan": "^0.12.47",
  9035. "phpunit/phpunit": "^8.5.17",
  9036. "roave/security-advisories": "dev-latest",
  9037. "scrutinizer/ocular": "^1.8",
  9038. "squizlabs/php_codesniffer": "^3.6"
  9039. },
  9040. "type": "library",
  9041. "extra": {
  9042. "branch-alias": {
  9043. "dev-master": "4.x-dev",
  9044. "dev-4.x": "4.x-dev",
  9045. "dev-3.x": "3.x-dev",
  9046. "dev-2.x": "2.x-dev",
  9047. "dev-1.x": "1.x-dev"
  9048. }
  9049. },
  9050. "autoload": {
  9051. "psr-4": {
  9052. "League\\Container\\": "src"
  9053. }
  9054. },
  9055. "notification-url": "https://packagist.org/downloads/",
  9056. "license": [
  9057. "MIT"
  9058. ],
  9059. "authors": [
  9060. {
  9061. "name": "Phil Bennett",
  9062. "email": "mail@philbennett.co.uk",
  9063. "role": "Developer"
  9064. }
  9065. ],
  9066. "description": "A fast and intuitive dependency injection container.",
  9067. "homepage": "https://github.com/thephpleague/container",
  9068. "keywords": [
  9069. "container",
  9070. "dependency",
  9071. "di",
  9072. "injection",
  9073. "league",
  9074. "provider",
  9075. "service"
  9076. ],
  9077. "support": {
  9078. "issues": "https://github.com/thephpleague/container/issues",
  9079. "source": "https://github.com/thephpleague/container/tree/4.2.0"
  9080. },
  9081. "funding": [
  9082. {
  9083. "url": "https://github.com/philipobenito",
  9084. "type": "github"
  9085. }
  9086. ],
  9087. "time": "2021-11-16T10:29:06+00:00"
  9088. },
  9089. {
  9090. "name": "masterminds/html5",
  9091. "version": "2.8.1",
  9092. "source": {
  9093. "type": "git",
  9094. "url": "https://github.com/Masterminds/html5-php.git",
  9095. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  9096. },
  9097. "dist": {
  9098. "type": "zip",
  9099. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  9100. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  9101. "shasum": ""
  9102. },
  9103. "require": {
  9104. "ext-dom": "*",
  9105. "php": ">=5.3.0"
  9106. },
  9107. "require-dev": {
  9108. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  9109. },
  9110. "type": "library",
  9111. "extra": {
  9112. "branch-alias": {
  9113. "dev-master": "2.7-dev"
  9114. }
  9115. },
  9116. "autoload": {
  9117. "psr-4": {
  9118. "Masterminds\\": "src"
  9119. }
  9120. },
  9121. "notification-url": "https://packagist.org/downloads/",
  9122. "license": [
  9123. "MIT"
  9124. ],
  9125. "authors": [
  9126. {
  9127. "name": "Matt Butcher",
  9128. "email": "technosophos@gmail.com"
  9129. },
  9130. {
  9131. "name": "Matt Farina",
  9132. "email": "matt@mattfarina.com"
  9133. },
  9134. {
  9135. "name": "Asmir Mustafic",
  9136. "email": "goetas@gmail.com"
  9137. }
  9138. ],
  9139. "description": "An HTML5 parser and serializer.",
  9140. "homepage": "http://masterminds.github.io/html5-php",
  9141. "keywords": [
  9142. "HTML5",
  9143. "dom",
  9144. "html",
  9145. "parser",
  9146. "querypath",
  9147. "serializer",
  9148. "xml"
  9149. ],
  9150. "support": {
  9151. "issues": "https://github.com/Masterminds/html5-php/issues",
  9152. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  9153. },
  9154. "time": "2023-05-10T11:58:31+00:00"
  9155. },
  9156. {
  9157. "name": "mck89/peast",
  9158. "version": "v1.15.4",
  9159. "source": {
  9160. "type": "git",
  9161. "url": "https://github.com/mck89/peast.git",
  9162. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18"
  9163. },
  9164. "dist": {
  9165. "type": "zip",
  9166. "url": "https://api.github.com/repos/mck89/peast/zipball/1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  9167. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  9168. "shasum": ""
  9169. },
  9170. "require": {
  9171. "ext-mbstring": "*",
  9172. "php": ">=5.4.0"
  9173. },
  9174. "require-dev": {
  9175. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  9176. },
  9177. "type": "library",
  9178. "extra": {
  9179. "branch-alias": {
  9180. "dev-master": "1.15.4-dev"
  9181. }
  9182. },
  9183. "autoload": {
  9184. "psr-4": {
  9185. "Peast\\": "lib/Peast/"
  9186. }
  9187. },
  9188. "notification-url": "https://packagist.org/downloads/",
  9189. "license": [
  9190. "BSD-3-Clause"
  9191. ],
  9192. "authors": [
  9193. {
  9194. "name": "Marco Marchiò",
  9195. "email": "marco.mm89@gmail.com"
  9196. }
  9197. ],
  9198. "description": "Peast is PHP library that generates AST for JavaScript code",
  9199. "support": {
  9200. "issues": "https://github.com/mck89/peast/issues",
  9201. "source": "https://github.com/mck89/peast/tree/v1.15.4"
  9202. },
  9203. "time": "2023-08-12T08:29:29+00:00"
  9204. },
  9205. {
  9206. "name": "nikic/php-parser",
  9207. "version": "v4.17.1",
  9208. "source": {
  9209. "type": "git",
  9210. "url": "https://github.com/nikic/PHP-Parser.git",
  9211. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d"
  9212. },
  9213. "dist": {
  9214. "type": "zip",
  9215. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  9216. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  9217. "shasum": ""
  9218. },
  9219. "require": {
  9220. "ext-tokenizer": "*",
  9221. "php": ">=7.0"
  9222. },
  9223. "require-dev": {
  9224. "ircmaxell/php-yacc": "^0.0.7",
  9225. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  9226. },
  9227. "bin": [
  9228. "bin/php-parse"
  9229. ],
  9230. "type": "library",
  9231. "extra": {
  9232. "branch-alias": {
  9233. "dev-master": "4.9-dev"
  9234. }
  9235. },
  9236. "autoload": {
  9237. "psr-4": {
  9238. "PhpParser\\": "lib/PhpParser"
  9239. }
  9240. },
  9241. "notification-url": "https://packagist.org/downloads/",
  9242. "license": [
  9243. "BSD-3-Clause"
  9244. ],
  9245. "authors": [
  9246. {
  9247. "name": "Nikita Popov"
  9248. }
  9249. ],
  9250. "description": "A PHP parser written in PHP",
  9251. "keywords": [
  9252. "parser",
  9253. "php"
  9254. ],
  9255. "support": {
  9256. "issues": "https://github.com/nikic/PHP-Parser/issues",
  9257. "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1"
  9258. },
  9259. "time": "2023-08-13T19:53:39+00:00"
  9260. },
  9261. {
  9262. "name": "pear/archive_tar",
  9263. "version": "1.4.14",
  9264. "source": {
  9265. "type": "git",
  9266. "url": "https://github.com/pear/Archive_Tar.git",
  9267. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  9268. },
  9269. "dist": {
  9270. "type": "zip",
  9271. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  9272. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  9273. "shasum": ""
  9274. },
  9275. "require": {
  9276. "pear/pear-core-minimal": "^1.10.0alpha2",
  9277. "php": ">=5.2.0"
  9278. },
  9279. "require-dev": {
  9280. "phpunit/phpunit": "*"
  9281. },
  9282. "suggest": {
  9283. "ext-bz2": "Bz2 compression support.",
  9284. "ext-xz": "Lzma2 compression support.",
  9285. "ext-zlib": "Gzip compression support."
  9286. },
  9287. "type": "library",
  9288. "extra": {
  9289. "branch-alias": {
  9290. "dev-master": "1.4.x-dev"
  9291. }
  9292. },
  9293. "autoload": {
  9294. "psr-0": {
  9295. "Archive_Tar": ""
  9296. }
  9297. },
  9298. "notification-url": "https://packagist.org/downloads/",
  9299. "include-path": [
  9300. "./"
  9301. ],
  9302. "license": [
  9303. "BSD-3-Clause"
  9304. ],
  9305. "authors": [
  9306. {
  9307. "name": "Vincent Blavet",
  9308. "email": "vincent@phpconcept.net"
  9309. },
  9310. {
  9311. "name": "Greg Beaver",
  9312. "email": "greg@chiaraquartet.net"
  9313. },
  9314. {
  9315. "name": "Michiel Rook",
  9316. "email": "mrook@php.net"
  9317. }
  9318. ],
  9319. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  9320. "homepage": "https://github.com/pear/Archive_Tar",
  9321. "keywords": [
  9322. "archive",
  9323. "tar"
  9324. ],
  9325. "support": {
  9326. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  9327. "source": "https://github.com/pear/Archive_Tar"
  9328. },
  9329. "funding": [
  9330. {
  9331. "url": "https://github.com/mrook",
  9332. "type": "github"
  9333. },
  9334. {
  9335. "url": "https://www.patreon.com/michielrook",
  9336. "type": "patreon"
  9337. }
  9338. ],
  9339. "time": "2021-07-20T13:53:39+00:00"
  9340. },
  9341. {
  9342. "name": "pear/console_getopt",
  9343. "version": "v1.4.3",
  9344. "source": {
  9345. "type": "git",
  9346. "url": "https://github.com/pear/Console_Getopt.git",
  9347. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  9348. },
  9349. "dist": {
  9350. "type": "zip",
  9351. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9352. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  9353. "shasum": ""
  9354. },
  9355. "type": "library",
  9356. "autoload": {
  9357. "psr-0": {
  9358. "Console": "./"
  9359. }
  9360. },
  9361. "notification-url": "https://packagist.org/downloads/",
  9362. "include-path": [
  9363. "./"
  9364. ],
  9365. "license": [
  9366. "BSD-2-Clause"
  9367. ],
  9368. "authors": [
  9369. {
  9370. "name": "Andrei Zmievski",
  9371. "email": "andrei@php.net",
  9372. "role": "Lead"
  9373. },
  9374. {
  9375. "name": "Stig Bakken",
  9376. "email": "stig@php.net",
  9377. "role": "Developer"
  9378. },
  9379. {
  9380. "name": "Greg Beaver",
  9381. "email": "cellog@php.net",
  9382. "role": "Helper"
  9383. }
  9384. ],
  9385. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  9386. "support": {
  9387. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  9388. "source": "https://github.com/pear/Console_Getopt"
  9389. },
  9390. "time": "2019-11-20T18:27:48+00:00"
  9391. },
  9392. {
  9393. "name": "pear/pear-core-minimal",
  9394. "version": "v1.10.13",
  9395. "source": {
  9396. "type": "git",
  9397. "url": "https://github.com/pear/pear-core-minimal.git",
  9398. "reference": "aed862e95fd286c53cc546734868dc38ff4b5b1d"
  9399. },
  9400. "dist": {
  9401. "type": "zip",
  9402. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/aed862e95fd286c53cc546734868dc38ff4b5b1d",
  9403. "reference": "aed862e95fd286c53cc546734868dc38ff4b5b1d",
  9404. "shasum": ""
  9405. },
  9406. "require": {
  9407. "pear/console_getopt": "~1.4",
  9408. "pear/pear_exception": "~1.0"
  9409. },
  9410. "replace": {
  9411. "rsky/pear-core-min": "self.version"
  9412. },
  9413. "type": "library",
  9414. "autoload": {
  9415. "psr-0": {
  9416. "": "src/"
  9417. }
  9418. },
  9419. "notification-url": "https://packagist.org/downloads/",
  9420. "include-path": [
  9421. "src/"
  9422. ],
  9423. "license": [
  9424. "BSD-3-Clause"
  9425. ],
  9426. "authors": [
  9427. {
  9428. "name": "Christian Weiske",
  9429. "email": "cweiske@php.net",
  9430. "role": "Lead"
  9431. }
  9432. ],
  9433. "description": "Minimal set of PEAR core files to be used as composer dependency",
  9434. "support": {
  9435. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  9436. "source": "https://github.com/pear/pear-core-minimal"
  9437. },
  9438. "time": "2023-04-19T19:15:47+00:00"
  9439. },
  9440. {
  9441. "name": "pear/pear_exception",
  9442. "version": "v1.0.2",
  9443. "source": {
  9444. "type": "git",
  9445. "url": "https://github.com/pear/PEAR_Exception.git",
  9446. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  9447. },
  9448. "dist": {
  9449. "type": "zip",
  9450. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9451. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  9452. "shasum": ""
  9453. },
  9454. "require": {
  9455. "php": ">=5.2.0"
  9456. },
  9457. "require-dev": {
  9458. "phpunit/phpunit": "<9"
  9459. },
  9460. "type": "class",
  9461. "extra": {
  9462. "branch-alias": {
  9463. "dev-master": "1.0.x-dev"
  9464. }
  9465. },
  9466. "autoload": {
  9467. "classmap": [
  9468. "PEAR/"
  9469. ]
  9470. },
  9471. "notification-url": "https://packagist.org/downloads/",
  9472. "include-path": [
  9473. "."
  9474. ],
  9475. "license": [
  9476. "BSD-2-Clause"
  9477. ],
  9478. "authors": [
  9479. {
  9480. "name": "Helgi Thormar",
  9481. "email": "dufuz@php.net"
  9482. },
  9483. {
  9484. "name": "Greg Beaver",
  9485. "email": "cellog@php.net"
  9486. }
  9487. ],
  9488. "description": "The PEAR Exception base class.",
  9489. "homepage": "https://github.com/pear/PEAR_Exception",
  9490. "keywords": [
  9491. "exception"
  9492. ],
  9493. "support": {
  9494. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  9495. "source": "https://github.com/pear/PEAR_Exception"
  9496. },
  9497. "time": "2021-03-21T15:43:46+00:00"
  9498. },
  9499. {
  9500. "name": "phenx/php-font-lib",
  9501. "version": "0.5.4",
  9502. "source": {
  9503. "type": "git",
  9504. "url": "https://github.com/dompdf/php-font-lib.git",
  9505. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4"
  9506. },
  9507. "dist": {
  9508. "type": "zip",
  9509. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4",
  9510. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4",
  9511. "shasum": ""
  9512. },
  9513. "require": {
  9514. "ext-mbstring": "*"
  9515. },
  9516. "require-dev": {
  9517. "symfony/phpunit-bridge": "^3 || ^4 || ^5"
  9518. },
  9519. "type": "library",
  9520. "autoload": {
  9521. "psr-4": {
  9522. "FontLib\\": "src/FontLib"
  9523. }
  9524. },
  9525. "notification-url": "https://packagist.org/downloads/",
  9526. "license": [
  9527. "LGPL-3.0"
  9528. ],
  9529. "authors": [
  9530. {
  9531. "name": "Fabien Ménager",
  9532. "email": "fabien.menager@gmail.com"
  9533. }
  9534. ],
  9535. "description": "A library to read, parse, export and make subsets of different types of font files.",
  9536. "homepage": "https://github.com/PhenX/php-font-lib",
  9537. "support": {
  9538. "issues": "https://github.com/dompdf/php-font-lib/issues",
  9539. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.4"
  9540. },
  9541. "time": "2021-12-17T19:44:54+00:00"
  9542. },
  9543. {
  9544. "name": "phootwork/collection",
  9545. "version": "v3.2.2",
  9546. "source": {
  9547. "type": "git",
  9548. "url": "https://github.com/phootwork/collection.git",
  9549. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  9550. },
  9551. "dist": {
  9552. "type": "zip",
  9553. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  9554. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  9555. "shasum": ""
  9556. },
  9557. "require": {
  9558. "phootwork/lang": "^3.0",
  9559. "php": ">=8.0"
  9560. },
  9561. "type": "library",
  9562. "autoload": {
  9563. "psr-4": {
  9564. "phootwork\\collection\\": ""
  9565. }
  9566. },
  9567. "notification-url": "https://packagist.org/downloads/",
  9568. "license": [
  9569. "MIT"
  9570. ],
  9571. "authors": [
  9572. {
  9573. "name": "Thomas Gossmann",
  9574. "homepage": "http://gos.si"
  9575. }
  9576. ],
  9577. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  9578. "homepage": "https://phootwork.github.io/collection/",
  9579. "keywords": [
  9580. "Array object",
  9581. "Text object",
  9582. "collection",
  9583. "collections",
  9584. "json",
  9585. "list",
  9586. "map",
  9587. "queue",
  9588. "set",
  9589. "stack",
  9590. "xml"
  9591. ],
  9592. "support": {
  9593. "issues": "https://github.com/phootwork/phootwork/issues",
  9594. "source": "https://github.com/phootwork/collection/tree/v3.2.2"
  9595. },
  9596. "time": "2022-08-27T12:51:24+00:00"
  9597. },
  9598. {
  9599. "name": "phootwork/lang",
  9600. "version": "v3.2.2",
  9601. "source": {
  9602. "type": "git",
  9603. "url": "https://github.com/phootwork/lang.git",
  9604. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597"
  9605. },
  9606. "dist": {
  9607. "type": "zip",
  9608. "url": "https://api.github.com/repos/phootwork/lang/zipball/baaf154ae7d521ebeee5e89105f5b12b0f234597",
  9609. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597",
  9610. "shasum": ""
  9611. },
  9612. "require": {
  9613. "php": ">=8.0",
  9614. "symfony/polyfill-mbstring": "^1.12",
  9615. "symfony/polyfill-php81": "^1.22"
  9616. },
  9617. "type": "library",
  9618. "autoload": {
  9619. "psr-4": {
  9620. "phootwork\\lang\\": ""
  9621. }
  9622. },
  9623. "notification-url": "https://packagist.org/downloads/",
  9624. "license": [
  9625. "MIT"
  9626. ],
  9627. "authors": [
  9628. {
  9629. "name": "Thomas Gossmann",
  9630. "homepage": "http://gos.si"
  9631. }
  9632. ],
  9633. "description": "Missing PHP language constructs",
  9634. "homepage": "https://phootwork.github.io/lang/",
  9635. "keywords": [
  9636. "array",
  9637. "comparator",
  9638. "comparison",
  9639. "string"
  9640. ],
  9641. "support": {
  9642. "issues": "https://github.com/phootwork/phootwork/issues",
  9643. "source": "https://github.com/phootwork/lang/tree/v3.2.2"
  9644. },
  9645. "time": "2023-05-26T05:37:59+00:00"
  9646. },
  9647. {
  9648. "name": "phpmailer/phpmailer",
  9649. "version": "v6.8.1",
  9650. "source": {
  9651. "type": "git",
  9652. "url": "https://github.com/PHPMailer/PHPMailer.git",
  9653. "reference": "e88da8d679acc3824ff231fdc553565b802ac016"
  9654. },
  9655. "dist": {
  9656. "type": "zip",
  9657. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e88da8d679acc3824ff231fdc553565b802ac016",
  9658. "reference": "e88da8d679acc3824ff231fdc553565b802ac016",
  9659. "shasum": ""
  9660. },
  9661. "require": {
  9662. "ext-ctype": "*",
  9663. "ext-filter": "*",
  9664. "ext-hash": "*",
  9665. "php": ">=5.5.0"
  9666. },
  9667. "require-dev": {
  9668. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  9669. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  9670. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  9671. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  9672. "phpcompatibility/php-compatibility": "^9.3.5",
  9673. "roave/security-advisories": "dev-latest",
  9674. "squizlabs/php_codesniffer": "^3.7.2",
  9675. "yoast/phpunit-polyfills": "^1.0.4"
  9676. },
  9677. "suggest": {
  9678. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  9679. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  9680. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  9681. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  9682. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  9683. "psr/log": "For optional PSR-3 debug logging",
  9684. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  9685. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  9686. },
  9687. "type": "library",
  9688. "autoload": {
  9689. "psr-4": {
  9690. "PHPMailer\\PHPMailer\\": "src/"
  9691. }
  9692. },
  9693. "notification-url": "https://packagist.org/downloads/",
  9694. "license": [
  9695. "LGPL-2.1-only"
  9696. ],
  9697. "authors": [
  9698. {
  9699. "name": "Marcus Bointon",
  9700. "email": "phpmailer@synchromedia.co.uk"
  9701. },
  9702. {
  9703. "name": "Jim Jagielski",
  9704. "email": "jimjag@gmail.com"
  9705. },
  9706. {
  9707. "name": "Andy Prevost",
  9708. "email": "codeworxtech@users.sourceforge.net"
  9709. },
  9710. {
  9711. "name": "Brent R. Matzelle"
  9712. }
  9713. ],
  9714. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  9715. "support": {
  9716. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  9717. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.8.1"
  9718. },
  9719. "funding": [
  9720. {
  9721. "url": "https://github.com/Synchro",
  9722. "type": "github"
  9723. }
  9724. ],
  9725. "time": "2023-08-29T08:26:30+00:00"
  9726. },
  9727. {
  9728. "name": "phpowermove/docblock",
  9729. "version": "v4.0",
  9730. "source": {
  9731. "type": "git",
  9732. "url": "https://github.com/phpowermove/docblock.git",
  9733. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  9734. },
  9735. "dist": {
  9736. "type": "zip",
  9737. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  9738. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  9739. "shasum": ""
  9740. },
  9741. "require": {
  9742. "phootwork/collection": "^3.0",
  9743. "phootwork/lang": "^3.0",
  9744. "php": ">=8.0"
  9745. },
  9746. "require-dev": {
  9747. "phootwork/php-cs-fixer-config": "^0.4",
  9748. "phpunit/phpunit": "^9.0",
  9749. "psalm/phar": "^4.3"
  9750. },
  9751. "type": "library",
  9752. "autoload": {
  9753. "psr-4": {
  9754. "phpowermove\\docblock\\": "src/"
  9755. }
  9756. },
  9757. "notification-url": "https://packagist.org/downloads/",
  9758. "license": [
  9759. "MIT"
  9760. ],
  9761. "authors": [
  9762. {
  9763. "name": "Thomas Gossmann",
  9764. "homepage": "http://gos.si"
  9765. }
  9766. ],
  9767. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  9768. "keywords": [
  9769. "docblock",
  9770. "generator",
  9771. "parser"
  9772. ],
  9773. "support": {
  9774. "issues": "https://github.com/phpowermove/docblock/issues",
  9775. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  9776. },
  9777. "time": "2021-09-22T16:57:06+00:00"
  9778. },
  9779. {
  9780. "name": "politsin/jquery-ui-touch-punch",
  9781. "version": "1.0",
  9782. "source": {
  9783. "type": "git",
  9784. "url": "https://github.com/politsin/jquery-ui-touch-punch.git",
  9785. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd"
  9786. },
  9787. "dist": {
  9788. "type": "zip",
  9789. "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd",
  9790. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd",
  9791. "shasum": ""
  9792. },
  9793. "type": "drupal-library",
  9794. "notification-url": "https://packagist.org/downloads/",
  9795. "license": [
  9796. "MIT"
  9797. ],
  9798. "authors": [
  9799. {
  9800. "name": "Dave Furfero",
  9801. "email": "furf@furf.com"
  9802. }
  9803. ],
  9804. "description": "Extension to jQuery UI for mobile touch event support.",
  9805. "homepage": "http://touchpunch.furf.com/",
  9806. "keywords": [
  9807. "gestures",
  9808. "mobile",
  9809. "touch"
  9810. ],
  9811. "support": {
  9812. "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
  9813. "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
  9814. },
  9815. "time": "2020-12-15T10:26:18+00:00"
  9816. },
  9817. {
  9818. "name": "psr/cache",
  9819. "version": "3.0.0",
  9820. "source": {
  9821. "type": "git",
  9822. "url": "https://github.com/php-fig/cache.git",
  9823. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  9824. },
  9825. "dist": {
  9826. "type": "zip",
  9827. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  9828. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  9829. "shasum": ""
  9830. },
  9831. "require": {
  9832. "php": ">=8.0.0"
  9833. },
  9834. "type": "library",
  9835. "extra": {
  9836. "branch-alias": {
  9837. "dev-master": "1.0.x-dev"
  9838. }
  9839. },
  9840. "autoload": {
  9841. "psr-4": {
  9842. "Psr\\Cache\\": "src/"
  9843. }
  9844. },
  9845. "notification-url": "https://packagist.org/downloads/",
  9846. "license": [
  9847. "MIT"
  9848. ],
  9849. "authors": [
  9850. {
  9851. "name": "PHP-FIG",
  9852. "homepage": "https://www.php-fig.org/"
  9853. }
  9854. ],
  9855. "description": "Common interface for caching libraries",
  9856. "keywords": [
  9857. "cache",
  9858. "psr",
  9859. "psr-6"
  9860. ],
  9861. "support": {
  9862. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  9863. },
  9864. "time": "2021-02-03T23:26:27+00:00"
  9865. },
  9866. {
  9867. "name": "psr/container",
  9868. "version": "2.0.2",
  9869. "source": {
  9870. "type": "git",
  9871. "url": "https://github.com/php-fig/container.git",
  9872. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  9873. },
  9874. "dist": {
  9875. "type": "zip",
  9876. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  9877. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  9878. "shasum": ""
  9879. },
  9880. "require": {
  9881. "php": ">=7.4.0"
  9882. },
  9883. "type": "library",
  9884. "extra": {
  9885. "branch-alias": {
  9886. "dev-master": "2.0.x-dev"
  9887. }
  9888. },
  9889. "autoload": {
  9890. "psr-4": {
  9891. "Psr\\Container\\": "src/"
  9892. }
  9893. },
  9894. "notification-url": "https://packagist.org/downloads/",
  9895. "license": [
  9896. "MIT"
  9897. ],
  9898. "authors": [
  9899. {
  9900. "name": "PHP-FIG",
  9901. "homepage": "https://www.php-fig.org/"
  9902. }
  9903. ],
  9904. "description": "Common Container Interface (PHP FIG PSR-11)",
  9905. "homepage": "https://github.com/php-fig/container",
  9906. "keywords": [
  9907. "PSR-11",
  9908. "container",
  9909. "container-interface",
  9910. "container-interop",
  9911. "psr"
  9912. ],
  9913. "support": {
  9914. "issues": "https://github.com/php-fig/container/issues",
  9915. "source": "https://github.com/php-fig/container/tree/2.0.2"
  9916. },
  9917. "time": "2021-11-05T16:47:00+00:00"
  9918. },
  9919. {
  9920. "name": "psr/event-dispatcher",
  9921. "version": "1.0.0",
  9922. "source": {
  9923. "type": "git",
  9924. "url": "https://github.com/php-fig/event-dispatcher.git",
  9925. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  9926. },
  9927. "dist": {
  9928. "type": "zip",
  9929. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  9930. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  9931. "shasum": ""
  9932. },
  9933. "require": {
  9934. "php": ">=7.2.0"
  9935. },
  9936. "type": "library",
  9937. "extra": {
  9938. "branch-alias": {
  9939. "dev-master": "1.0.x-dev"
  9940. }
  9941. },
  9942. "autoload": {
  9943. "psr-4": {
  9944. "Psr\\EventDispatcher\\": "src/"
  9945. }
  9946. },
  9947. "notification-url": "https://packagist.org/downloads/",
  9948. "license": [
  9949. "MIT"
  9950. ],
  9951. "authors": [
  9952. {
  9953. "name": "PHP-FIG",
  9954. "homepage": "http://www.php-fig.org/"
  9955. }
  9956. ],
  9957. "description": "Standard interfaces for event handling.",
  9958. "keywords": [
  9959. "events",
  9960. "psr",
  9961. "psr-14"
  9962. ],
  9963. "support": {
  9964. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  9965. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  9966. },
  9967. "time": "2019-01-08T18:20:26+00:00"
  9968. },
  9969. {
  9970. "name": "psr/http-client",
  9971. "version": "1.0.3",
  9972. "source": {
  9973. "type": "git",
  9974. "url": "https://github.com/php-fig/http-client.git",
  9975. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  9976. },
  9977. "dist": {
  9978. "type": "zip",
  9979. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  9980. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  9981. "shasum": ""
  9982. },
  9983. "require": {
  9984. "php": "^7.0 || ^8.0",
  9985. "psr/http-message": "^1.0 || ^2.0"
  9986. },
  9987. "type": "library",
  9988. "extra": {
  9989. "branch-alias": {
  9990. "dev-master": "1.0.x-dev"
  9991. }
  9992. },
  9993. "autoload": {
  9994. "psr-4": {
  9995. "Psr\\Http\\Client\\": "src/"
  9996. }
  9997. },
  9998. "notification-url": "https://packagist.org/downloads/",
  9999. "license": [
  10000. "MIT"
  10001. ],
  10002. "authors": [
  10003. {
  10004. "name": "PHP-FIG",
  10005. "homepage": "https://www.php-fig.org/"
  10006. }
  10007. ],
  10008. "description": "Common interface for HTTP clients",
  10009. "homepage": "https://github.com/php-fig/http-client",
  10010. "keywords": [
  10011. "http",
  10012. "http-client",
  10013. "psr",
  10014. "psr-18"
  10015. ],
  10016. "support": {
  10017. "source": "https://github.com/php-fig/http-client"
  10018. },
  10019. "time": "2023-09-23T14:17:50+00:00"
  10020. },
  10021. {
  10022. "name": "psr/http-factory",
  10023. "version": "1.0.2",
  10024. "source": {
  10025. "type": "git",
  10026. "url": "https://github.com/php-fig/http-factory.git",
  10027. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  10028. },
  10029. "dist": {
  10030. "type": "zip",
  10031. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  10032. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  10033. "shasum": ""
  10034. },
  10035. "require": {
  10036. "php": ">=7.0.0",
  10037. "psr/http-message": "^1.0 || ^2.0"
  10038. },
  10039. "type": "library",
  10040. "extra": {
  10041. "branch-alias": {
  10042. "dev-master": "1.0.x-dev"
  10043. }
  10044. },
  10045. "autoload": {
  10046. "psr-4": {
  10047. "Psr\\Http\\Message\\": "src/"
  10048. }
  10049. },
  10050. "notification-url": "https://packagist.org/downloads/",
  10051. "license": [
  10052. "MIT"
  10053. ],
  10054. "authors": [
  10055. {
  10056. "name": "PHP-FIG",
  10057. "homepage": "https://www.php-fig.org/"
  10058. }
  10059. ],
  10060. "description": "Common interfaces for PSR-7 HTTP message factories",
  10061. "keywords": [
  10062. "factory",
  10063. "http",
  10064. "message",
  10065. "psr",
  10066. "psr-17",
  10067. "psr-7",
  10068. "request",
  10069. "response"
  10070. ],
  10071. "support": {
  10072. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  10073. },
  10074. "time": "2023-04-10T20:10:41+00:00"
  10075. },
  10076. {
  10077. "name": "psr/http-message",
  10078. "version": "2.0",
  10079. "source": {
  10080. "type": "git",
  10081. "url": "https://github.com/php-fig/http-message.git",
  10082. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  10083. },
  10084. "dist": {
  10085. "type": "zip",
  10086. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  10087. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  10088. "shasum": ""
  10089. },
  10090. "require": {
  10091. "php": "^7.2 || ^8.0"
  10092. },
  10093. "type": "library",
  10094. "extra": {
  10095. "branch-alias": {
  10096. "dev-master": "2.0.x-dev"
  10097. }
  10098. },
  10099. "autoload": {
  10100. "psr-4": {
  10101. "Psr\\Http\\Message\\": "src/"
  10102. }
  10103. },
  10104. "notification-url": "https://packagist.org/downloads/",
  10105. "license": [
  10106. "MIT"
  10107. ],
  10108. "authors": [
  10109. {
  10110. "name": "PHP-FIG",
  10111. "homepage": "https://www.php-fig.org/"
  10112. }
  10113. ],
  10114. "description": "Common interface for HTTP messages",
  10115. "homepage": "https://github.com/php-fig/http-message",
  10116. "keywords": [
  10117. "http",
  10118. "http-message",
  10119. "psr",
  10120. "psr-7",
  10121. "request",
  10122. "response"
  10123. ],
  10124. "support": {
  10125. "source": "https://github.com/php-fig/http-message/tree/2.0"
  10126. },
  10127. "time": "2023-04-04T09:54:51+00:00"
  10128. },
  10129. {
  10130. "name": "psr/log",
  10131. "version": "3.0.0",
  10132. "source": {
  10133. "type": "git",
  10134. "url": "https://github.com/php-fig/log.git",
  10135. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  10136. },
  10137. "dist": {
  10138. "type": "zip",
  10139. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  10140. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  10141. "shasum": ""
  10142. },
  10143. "require": {
  10144. "php": ">=8.0.0"
  10145. },
  10146. "type": "library",
  10147. "extra": {
  10148. "branch-alias": {
  10149. "dev-master": "3.x-dev"
  10150. }
  10151. },
  10152. "autoload": {
  10153. "psr-4": {
  10154. "Psr\\Log\\": "src"
  10155. }
  10156. },
  10157. "notification-url": "https://packagist.org/downloads/",
  10158. "license": [
  10159. "MIT"
  10160. ],
  10161. "authors": [
  10162. {
  10163. "name": "PHP-FIG",
  10164. "homepage": "https://www.php-fig.org/"
  10165. }
  10166. ],
  10167. "description": "Common interface for logging libraries",
  10168. "homepage": "https://github.com/php-fig/log",
  10169. "keywords": [
  10170. "log",
  10171. "psr",
  10172. "psr-3"
  10173. ],
  10174. "support": {
  10175. "source": "https://github.com/php-fig/log/tree/3.0.0"
  10176. },
  10177. "time": "2021-07-14T16:46:02+00:00"
  10178. },
  10179. {
  10180. "name": "psy/psysh",
  10181. "version": "v0.11.22",
  10182. "source": {
  10183. "type": "git",
  10184. "url": "https://github.com/bobthecow/psysh.git",
  10185. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b"
  10186. },
  10187. "dist": {
  10188. "type": "zip",
  10189. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b",
  10190. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
  10191. "shasum": ""
  10192. },
  10193. "require": {
  10194. "ext-json": "*",
  10195. "ext-tokenizer": "*",
  10196. "nikic/php-parser": "^4.0 || ^3.1",
  10197. "php": "^8.0 || ^7.0.8",
  10198. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  10199. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  10200. },
  10201. "conflict": {
  10202. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  10203. },
  10204. "require-dev": {
  10205. "bamarni/composer-bin-plugin": "^1.2"
  10206. },
  10207. "suggest": {
  10208. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  10209. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  10210. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  10211. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  10212. },
  10213. "bin": [
  10214. "bin/psysh"
  10215. ],
  10216. "type": "library",
  10217. "extra": {
  10218. "branch-alias": {
  10219. "dev-0.11": "0.11.x-dev"
  10220. },
  10221. "bamarni-bin": {
  10222. "bin-links": false,
  10223. "forward-command": false
  10224. }
  10225. },
  10226. "autoload": {
  10227. "files": [
  10228. "src/functions.php"
  10229. ],
  10230. "psr-4": {
  10231. "Psy\\": "src/"
  10232. }
  10233. },
  10234. "notification-url": "https://packagist.org/downloads/",
  10235. "license": [
  10236. "MIT"
  10237. ],
  10238. "authors": [
  10239. {
  10240. "name": "Justin Hileman",
  10241. "email": "justin@justinhileman.info",
  10242. "homepage": "http://justinhileman.com"
  10243. }
  10244. ],
  10245. "description": "An interactive shell for modern PHP.",
  10246. "homepage": "http://psysh.org",
  10247. "keywords": [
  10248. "REPL",
  10249. "console",
  10250. "interactive",
  10251. "shell"
  10252. ],
  10253. "support": {
  10254. "issues": "https://github.com/bobthecow/psysh/issues",
  10255. "source": "https://github.com/bobthecow/psysh/tree/v0.11.22"
  10256. },
  10257. "time": "2023-10-14T21:56:36+00:00"
  10258. },
  10259. {
  10260. "name": "ralouphie/getallheaders",
  10261. "version": "3.0.3",
  10262. "source": {
  10263. "type": "git",
  10264. "url": "https://github.com/ralouphie/getallheaders.git",
  10265. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  10266. },
  10267. "dist": {
  10268. "type": "zip",
  10269. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  10270. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  10271. "shasum": ""
  10272. },
  10273. "require": {
  10274. "php": ">=5.6"
  10275. },
  10276. "require-dev": {
  10277. "php-coveralls/php-coveralls": "^2.1",
  10278. "phpunit/phpunit": "^5 || ^6.5"
  10279. },
  10280. "type": "library",
  10281. "autoload": {
  10282. "files": [
  10283. "src/getallheaders.php"
  10284. ]
  10285. },
  10286. "notification-url": "https://packagist.org/downloads/",
  10287. "license": [
  10288. "MIT"
  10289. ],
  10290. "authors": [
  10291. {
  10292. "name": "Ralph Khattar",
  10293. "email": "ralph.khattar@gmail.com"
  10294. }
  10295. ],
  10296. "description": "A polyfill for getallheaders.",
  10297. "support": {
  10298. "issues": "https://github.com/ralouphie/getallheaders/issues",
  10299. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  10300. },
  10301. "time": "2019-03-08T08:55:37+00:00"
  10302. },
  10303. {
  10304. "name": "sebastian/diff",
  10305. "version": "4.0.5",
  10306. "source": {
  10307. "type": "git",
  10308. "url": "https://github.com/sebastianbergmann/diff.git",
  10309. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  10310. },
  10311. "dist": {
  10312. "type": "zip",
  10313. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  10314. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  10315. "shasum": ""
  10316. },
  10317. "require": {
  10318. "php": ">=7.3"
  10319. },
  10320. "require-dev": {
  10321. "phpunit/phpunit": "^9.3",
  10322. "symfony/process": "^4.2 || ^5"
  10323. },
  10324. "type": "library",
  10325. "extra": {
  10326. "branch-alias": {
  10327. "dev-master": "4.0-dev"
  10328. }
  10329. },
  10330. "autoload": {
  10331. "classmap": [
  10332. "src/"
  10333. ]
  10334. },
  10335. "notification-url": "https://packagist.org/downloads/",
  10336. "license": [
  10337. "BSD-3-Clause"
  10338. ],
  10339. "authors": [
  10340. {
  10341. "name": "Sebastian Bergmann",
  10342. "email": "sebastian@phpunit.de"
  10343. },
  10344. {
  10345. "name": "Kore Nordmann",
  10346. "email": "mail@kore-nordmann.de"
  10347. }
  10348. ],
  10349. "description": "Diff implementation",
  10350. "homepage": "https://github.com/sebastianbergmann/diff",
  10351. "keywords": [
  10352. "diff",
  10353. "udiff",
  10354. "unidiff",
  10355. "unified diff"
  10356. ],
  10357. "support": {
  10358. "issues": "https://github.com/sebastianbergmann/diff/issues",
  10359. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  10360. },
  10361. "funding": [
  10362. {
  10363. "url": "https://github.com/sebastianbergmann",
  10364. "type": "github"
  10365. }
  10366. ],
  10367. "time": "2023-05-07T05:35:17+00:00"
  10368. },
  10369. {
  10370. "name": "stymiee/email-validator",
  10371. "version": "1.1.3",
  10372. "source": {
  10373. "type": "git",
  10374. "url": "https://github.com/stymiee/email-validator.git",
  10375. "reference": "017a53567aadc82e51773b887d0dff381aae5f2e"
  10376. },
  10377. "dist": {
  10378. "type": "zip",
  10379. "url": "https://api.github.com/repos/stymiee/email-validator/zipball/017a53567aadc82e51773b887d0dff381aae5f2e",
  10380. "reference": "017a53567aadc82e51773b887d0dff381aae5f2e",
  10381. "shasum": ""
  10382. },
  10383. "require": {
  10384. "ext-json": "*",
  10385. "php": ">=7.2.0"
  10386. },
  10387. "require-dev": {
  10388. "nunomaduro/phpinsights": "@stable",
  10389. "phpmd/phpmd": "@stable",
  10390. "phpunit/phpunit": "^8",
  10391. "squizlabs/php_codesniffer": "3.*"
  10392. },
  10393. "type": "library",
  10394. "autoload": {
  10395. "psr-4": {
  10396. "EmailValidator\\": [
  10397. "src/EmailValidator/"
  10398. ]
  10399. }
  10400. },
  10401. "notification-url": "https://packagist.org/downloads/",
  10402. "license": [
  10403. "Apache-2.0"
  10404. ],
  10405. "authors": [
  10406. {
  10407. "name": "John Conde",
  10408. "email": "stymiee@gmail.com",
  10409. "homepage": "https://stymiee.dev",
  10410. "role": "Developer"
  10411. }
  10412. ],
  10413. "description": "The Email Validator library builds upon PHP's built in filter_var($emailAddress, FILTER_VALIDATE_EMAIL); by adding a default MX record check. It also offers additional validation against disposable email addresses, free email address providers, and a custom banned domain list.",
  10414. "homepage": "https://github.com/stymiee/php-simple-encryption",
  10415. "keywords": [
  10416. "email",
  10417. "php",
  10418. "validation"
  10419. ],
  10420. "support": {
  10421. "issues": "https://github.com/stymiee/email-validator/issues",
  10422. "source": "https://github.com/stymiee/email-validator/tree/1.1.3"
  10423. },
  10424. "time": "2022-10-11T19:23:13+00:00"
  10425. },
  10426. {
  10427. "name": "symfony/console",
  10428. "version": "v6.3.8",
  10429. "source": {
  10430. "type": "git",
  10431. "url": "https://github.com/symfony/console.git",
  10432. "reference": "0d14a9f6d04d4ac38a8cea1171f4554e325dae92"
  10433. },
  10434. "dist": {
  10435. "type": "zip",
  10436. "url": "https://api.github.com/repos/symfony/console/zipball/0d14a9f6d04d4ac38a8cea1171f4554e325dae92",
  10437. "reference": "0d14a9f6d04d4ac38a8cea1171f4554e325dae92",
  10438. "shasum": ""
  10439. },
  10440. "require": {
  10441. "php": ">=8.1",
  10442. "symfony/deprecation-contracts": "^2.5|^3",
  10443. "symfony/polyfill-mbstring": "~1.0",
  10444. "symfony/service-contracts": "^2.5|^3",
  10445. "symfony/string": "^5.4|^6.0"
  10446. },
  10447. "conflict": {
  10448. "symfony/dependency-injection": "<5.4",
  10449. "symfony/dotenv": "<5.4",
  10450. "symfony/event-dispatcher": "<5.4",
  10451. "symfony/lock": "<5.4",
  10452. "symfony/process": "<5.4"
  10453. },
  10454. "provide": {
  10455. "psr/log-implementation": "1.0|2.0|3.0"
  10456. },
  10457. "require-dev": {
  10458. "psr/log": "^1|^2|^3",
  10459. "symfony/config": "^5.4|^6.0",
  10460. "symfony/dependency-injection": "^5.4|^6.0",
  10461. "symfony/event-dispatcher": "^5.4|^6.0",
  10462. "symfony/lock": "^5.4|^6.0",
  10463. "symfony/process": "^5.4|^6.0",
  10464. "symfony/var-dumper": "^5.4|^6.0"
  10465. },
  10466. "type": "library",
  10467. "autoload": {
  10468. "psr-4": {
  10469. "Symfony\\Component\\Console\\": ""
  10470. },
  10471. "exclude-from-classmap": [
  10472. "/Tests/"
  10473. ]
  10474. },
  10475. "notification-url": "https://packagist.org/downloads/",
  10476. "license": [
  10477. "MIT"
  10478. ],
  10479. "authors": [
  10480. {
  10481. "name": "Fabien Potencier",
  10482. "email": "fabien@symfony.com"
  10483. },
  10484. {
  10485. "name": "Symfony Community",
  10486. "homepage": "https://symfony.com/contributors"
  10487. }
  10488. ],
  10489. "description": "Eases the creation of beautiful and testable command line interfaces",
  10490. "homepage": "https://symfony.com",
  10491. "keywords": [
  10492. "cli",
  10493. "command-line",
  10494. "console",
  10495. "terminal"
  10496. ],
  10497. "support": {
  10498. "source": "https://github.com/symfony/console/tree/v6.3.8"
  10499. },
  10500. "funding": [
  10501. {
  10502. "url": "https://symfony.com/sponsor",
  10503. "type": "custom"
  10504. },
  10505. {
  10506. "url": "https://github.com/fabpot",
  10507. "type": "github"
  10508. },
  10509. {
  10510. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10511. "type": "tidelift"
  10512. }
  10513. ],
  10514. "time": "2023-10-31T08:09:35+00:00"
  10515. },
  10516. {
  10517. "name": "symfony/dependency-injection",
  10518. "version": "v6.3.8",
  10519. "source": {
  10520. "type": "git",
  10521. "url": "https://github.com/symfony/dependency-injection.git",
  10522. "reference": "1f30f545c4151f611148fc19e28d54d39e0a00bc"
  10523. },
  10524. "dist": {
  10525. "type": "zip",
  10526. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/1f30f545c4151f611148fc19e28d54d39e0a00bc",
  10527. "reference": "1f30f545c4151f611148fc19e28d54d39e0a00bc",
  10528. "shasum": ""
  10529. },
  10530. "require": {
  10531. "php": ">=8.1",
  10532. "psr/container": "^1.1|^2.0",
  10533. "symfony/deprecation-contracts": "^2.5|^3",
  10534. "symfony/service-contracts": "^2.5|^3.0",
  10535. "symfony/var-exporter": "^6.2.10"
  10536. },
  10537. "conflict": {
  10538. "ext-psr": "<1.1|>=2",
  10539. "symfony/config": "<6.1",
  10540. "symfony/finder": "<5.4",
  10541. "symfony/proxy-manager-bridge": "<6.3",
  10542. "symfony/yaml": "<5.4"
  10543. },
  10544. "provide": {
  10545. "psr/container-implementation": "1.1|2.0",
  10546. "symfony/service-implementation": "1.1|2.0|3.0"
  10547. },
  10548. "require-dev": {
  10549. "symfony/config": "^6.1",
  10550. "symfony/expression-language": "^5.4|^6.0",
  10551. "symfony/yaml": "^5.4|^6.0"
  10552. },
  10553. "type": "library",
  10554. "autoload": {
  10555. "psr-4": {
  10556. "Symfony\\Component\\DependencyInjection\\": ""
  10557. },
  10558. "exclude-from-classmap": [
  10559. "/Tests/"
  10560. ]
  10561. },
  10562. "notification-url": "https://packagist.org/downloads/",
  10563. "license": [
  10564. "MIT"
  10565. ],
  10566. "authors": [
  10567. {
  10568. "name": "Fabien Potencier",
  10569. "email": "fabien@symfony.com"
  10570. },
  10571. {
  10572. "name": "Symfony Community",
  10573. "homepage": "https://symfony.com/contributors"
  10574. }
  10575. ],
  10576. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  10577. "homepage": "https://symfony.com",
  10578. "support": {
  10579. "source": "https://github.com/symfony/dependency-injection/tree/v6.3.8"
  10580. },
  10581. "funding": [
  10582. {
  10583. "url": "https://symfony.com/sponsor",
  10584. "type": "custom"
  10585. },
  10586. {
  10587. "url": "https://github.com/fabpot",
  10588. "type": "github"
  10589. },
  10590. {
  10591. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10592. "type": "tidelift"
  10593. }
  10594. ],
  10595. "time": "2023-10-31T08:07:48+00:00"
  10596. },
  10597. {
  10598. "name": "symfony/deprecation-contracts",
  10599. "version": "v3.3.0",
  10600. "source": {
  10601. "type": "git",
  10602. "url": "https://github.com/symfony/deprecation-contracts.git",
  10603. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  10604. },
  10605. "dist": {
  10606. "type": "zip",
  10607. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  10608. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  10609. "shasum": ""
  10610. },
  10611. "require": {
  10612. "php": ">=8.1"
  10613. },
  10614. "type": "library",
  10615. "extra": {
  10616. "branch-alias": {
  10617. "dev-main": "3.4-dev"
  10618. },
  10619. "thanks": {
  10620. "name": "symfony/contracts",
  10621. "url": "https://github.com/symfony/contracts"
  10622. }
  10623. },
  10624. "autoload": {
  10625. "files": [
  10626. "function.php"
  10627. ]
  10628. },
  10629. "notification-url": "https://packagist.org/downloads/",
  10630. "license": [
  10631. "MIT"
  10632. ],
  10633. "authors": [
  10634. {
  10635. "name": "Nicolas Grekas",
  10636. "email": "p@tchwork.com"
  10637. },
  10638. {
  10639. "name": "Symfony Community",
  10640. "homepage": "https://symfony.com/contributors"
  10641. }
  10642. ],
  10643. "description": "A generic function and convention to trigger deprecation notices",
  10644. "homepage": "https://symfony.com",
  10645. "support": {
  10646. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
  10647. },
  10648. "funding": [
  10649. {
  10650. "url": "https://symfony.com/sponsor",
  10651. "type": "custom"
  10652. },
  10653. {
  10654. "url": "https://github.com/fabpot",
  10655. "type": "github"
  10656. },
  10657. {
  10658. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10659. "type": "tidelift"
  10660. }
  10661. ],
  10662. "time": "2023-05-23T14:45:45+00:00"
  10663. },
  10664. {
  10665. "name": "symfony/error-handler",
  10666. "version": "v6.3.5",
  10667. "source": {
  10668. "type": "git",
  10669. "url": "https://github.com/symfony/error-handler.git",
  10670. "reference": "1f69476b64fb47105c06beef757766c376b548c4"
  10671. },
  10672. "dist": {
  10673. "type": "zip",
  10674. "url": "https://api.github.com/repos/symfony/error-handler/zipball/1f69476b64fb47105c06beef757766c376b548c4",
  10675. "reference": "1f69476b64fb47105c06beef757766c376b548c4",
  10676. "shasum": ""
  10677. },
  10678. "require": {
  10679. "php": ">=8.1",
  10680. "psr/log": "^1|^2|^3",
  10681. "symfony/var-dumper": "^5.4|^6.0"
  10682. },
  10683. "conflict": {
  10684. "symfony/deprecation-contracts": "<2.5"
  10685. },
  10686. "require-dev": {
  10687. "symfony/deprecation-contracts": "^2.5|^3",
  10688. "symfony/http-kernel": "^5.4|^6.0",
  10689. "symfony/serializer": "^5.4|^6.0"
  10690. },
  10691. "bin": [
  10692. "Resources/bin/patch-type-declarations"
  10693. ],
  10694. "type": "library",
  10695. "autoload": {
  10696. "psr-4": {
  10697. "Symfony\\Component\\ErrorHandler\\": ""
  10698. },
  10699. "exclude-from-classmap": [
  10700. "/Tests/"
  10701. ]
  10702. },
  10703. "notification-url": "https://packagist.org/downloads/",
  10704. "license": [
  10705. "MIT"
  10706. ],
  10707. "authors": [
  10708. {
  10709. "name": "Fabien Potencier",
  10710. "email": "fabien@symfony.com"
  10711. },
  10712. {
  10713. "name": "Symfony Community",
  10714. "homepage": "https://symfony.com/contributors"
  10715. }
  10716. ],
  10717. "description": "Provides tools to manage errors and ease debugging PHP code",
  10718. "homepage": "https://symfony.com",
  10719. "support": {
  10720. "source": "https://github.com/symfony/error-handler/tree/v6.3.5"
  10721. },
  10722. "funding": [
  10723. {
  10724. "url": "https://symfony.com/sponsor",
  10725. "type": "custom"
  10726. },
  10727. {
  10728. "url": "https://github.com/fabpot",
  10729. "type": "github"
  10730. },
  10731. {
  10732. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10733. "type": "tidelift"
  10734. }
  10735. ],
  10736. "time": "2023-09-12T06:57:20+00:00"
  10737. },
  10738. {
  10739. "name": "symfony/event-dispatcher",
  10740. "version": "v6.3.2",
  10741. "source": {
  10742. "type": "git",
  10743. "url": "https://github.com/symfony/event-dispatcher.git",
  10744. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e"
  10745. },
  10746. "dist": {
  10747. "type": "zip",
  10748. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  10749. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  10750. "shasum": ""
  10751. },
  10752. "require": {
  10753. "php": ">=8.1",
  10754. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10755. },
  10756. "conflict": {
  10757. "symfony/dependency-injection": "<5.4",
  10758. "symfony/service-contracts": "<2.5"
  10759. },
  10760. "provide": {
  10761. "psr/event-dispatcher-implementation": "1.0",
  10762. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10763. },
  10764. "require-dev": {
  10765. "psr/log": "^1|^2|^3",
  10766. "symfony/config": "^5.4|^6.0",
  10767. "symfony/dependency-injection": "^5.4|^6.0",
  10768. "symfony/error-handler": "^5.4|^6.0",
  10769. "symfony/expression-language": "^5.4|^6.0",
  10770. "symfony/http-foundation": "^5.4|^6.0",
  10771. "symfony/service-contracts": "^2.5|^3",
  10772. "symfony/stopwatch": "^5.4|^6.0"
  10773. },
  10774. "type": "library",
  10775. "autoload": {
  10776. "psr-4": {
  10777. "Symfony\\Component\\EventDispatcher\\": ""
  10778. },
  10779. "exclude-from-classmap": [
  10780. "/Tests/"
  10781. ]
  10782. },
  10783. "notification-url": "https://packagist.org/downloads/",
  10784. "license": [
  10785. "MIT"
  10786. ],
  10787. "authors": [
  10788. {
  10789. "name": "Fabien Potencier",
  10790. "email": "fabien@symfony.com"
  10791. },
  10792. {
  10793. "name": "Symfony Community",
  10794. "homepage": "https://symfony.com/contributors"
  10795. }
  10796. ],
  10797. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10798. "homepage": "https://symfony.com",
  10799. "support": {
  10800. "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.2"
  10801. },
  10802. "funding": [
  10803. {
  10804. "url": "https://symfony.com/sponsor",
  10805. "type": "custom"
  10806. },
  10807. {
  10808. "url": "https://github.com/fabpot",
  10809. "type": "github"
  10810. },
  10811. {
  10812. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10813. "type": "tidelift"
  10814. }
  10815. ],
  10816. "time": "2023-07-06T06:56:43+00:00"
  10817. },
  10818. {
  10819. "name": "symfony/event-dispatcher-contracts",
  10820. "version": "v3.3.0",
  10821. "source": {
  10822. "type": "git",
  10823. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10824. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  10825. },
  10826. "dist": {
  10827. "type": "zip",
  10828. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  10829. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  10830. "shasum": ""
  10831. },
  10832. "require": {
  10833. "php": ">=8.1",
  10834. "psr/event-dispatcher": "^1"
  10835. },
  10836. "type": "library",
  10837. "extra": {
  10838. "branch-alias": {
  10839. "dev-main": "3.4-dev"
  10840. },
  10841. "thanks": {
  10842. "name": "symfony/contracts",
  10843. "url": "https://github.com/symfony/contracts"
  10844. }
  10845. },
  10846. "autoload": {
  10847. "psr-4": {
  10848. "Symfony\\Contracts\\EventDispatcher\\": ""
  10849. }
  10850. },
  10851. "notification-url": "https://packagist.org/downloads/",
  10852. "license": [
  10853. "MIT"
  10854. ],
  10855. "authors": [
  10856. {
  10857. "name": "Nicolas Grekas",
  10858. "email": "p@tchwork.com"
  10859. },
  10860. {
  10861. "name": "Symfony Community",
  10862. "homepage": "https://symfony.com/contributors"
  10863. }
  10864. ],
  10865. "description": "Generic abstractions related to dispatching event",
  10866. "homepage": "https://symfony.com",
  10867. "keywords": [
  10868. "abstractions",
  10869. "contracts",
  10870. "decoupling",
  10871. "interfaces",
  10872. "interoperability",
  10873. "standards"
  10874. ],
  10875. "support": {
  10876. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0"
  10877. },
  10878. "funding": [
  10879. {
  10880. "url": "https://symfony.com/sponsor",
  10881. "type": "custom"
  10882. },
  10883. {
  10884. "url": "https://github.com/fabpot",
  10885. "type": "github"
  10886. },
  10887. {
  10888. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10889. "type": "tidelift"
  10890. }
  10891. ],
  10892. "time": "2023-05-23T14:45:45+00:00"
  10893. },
  10894. {
  10895. "name": "symfony/filesystem",
  10896. "version": "v6.3.1",
  10897. "source": {
  10898. "type": "git",
  10899. "url": "https://github.com/symfony/filesystem.git",
  10900. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae"
  10901. },
  10902. "dist": {
  10903. "type": "zip",
  10904. "url": "https://api.github.com/repos/symfony/filesystem/zipball/edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  10905. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  10906. "shasum": ""
  10907. },
  10908. "require": {
  10909. "php": ">=8.1",
  10910. "symfony/polyfill-ctype": "~1.8",
  10911. "symfony/polyfill-mbstring": "~1.8"
  10912. },
  10913. "type": "library",
  10914. "autoload": {
  10915. "psr-4": {
  10916. "Symfony\\Component\\Filesystem\\": ""
  10917. },
  10918. "exclude-from-classmap": [
  10919. "/Tests/"
  10920. ]
  10921. },
  10922. "notification-url": "https://packagist.org/downloads/",
  10923. "license": [
  10924. "MIT"
  10925. ],
  10926. "authors": [
  10927. {
  10928. "name": "Fabien Potencier",
  10929. "email": "fabien@symfony.com"
  10930. },
  10931. {
  10932. "name": "Symfony Community",
  10933. "homepage": "https://symfony.com/contributors"
  10934. }
  10935. ],
  10936. "description": "Provides basic utilities for the filesystem",
  10937. "homepage": "https://symfony.com",
  10938. "support": {
  10939. "source": "https://github.com/symfony/filesystem/tree/v6.3.1"
  10940. },
  10941. "funding": [
  10942. {
  10943. "url": "https://symfony.com/sponsor",
  10944. "type": "custom"
  10945. },
  10946. {
  10947. "url": "https://github.com/fabpot",
  10948. "type": "github"
  10949. },
  10950. {
  10951. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10952. "type": "tidelift"
  10953. }
  10954. ],
  10955. "time": "2023-06-01T08:30:39+00:00"
  10956. },
  10957. {
  10958. "name": "symfony/finder",
  10959. "version": "v6.3.5",
  10960. "source": {
  10961. "type": "git",
  10962. "url": "https://github.com/symfony/finder.git",
  10963. "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4"
  10964. },
  10965. "dist": {
  10966. "type": "zip",
  10967. "url": "https://api.github.com/repos/symfony/finder/zipball/a1b31d88c0e998168ca7792f222cbecee47428c4",
  10968. "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4",
  10969. "shasum": ""
  10970. },
  10971. "require": {
  10972. "php": ">=8.1"
  10973. },
  10974. "require-dev": {
  10975. "symfony/filesystem": "^6.0"
  10976. },
  10977. "type": "library",
  10978. "autoload": {
  10979. "psr-4": {
  10980. "Symfony\\Component\\Finder\\": ""
  10981. },
  10982. "exclude-from-classmap": [
  10983. "/Tests/"
  10984. ]
  10985. },
  10986. "notification-url": "https://packagist.org/downloads/",
  10987. "license": [
  10988. "MIT"
  10989. ],
  10990. "authors": [
  10991. {
  10992. "name": "Fabien Potencier",
  10993. "email": "fabien@symfony.com"
  10994. },
  10995. {
  10996. "name": "Symfony Community",
  10997. "homepage": "https://symfony.com/contributors"
  10998. }
  10999. ],
  11000. "description": "Finds files and directories via an intuitive fluent interface",
  11001. "homepage": "https://symfony.com",
  11002. "support": {
  11003. "source": "https://github.com/symfony/finder/tree/v6.3.5"
  11004. },
  11005. "funding": [
  11006. {
  11007. "url": "https://symfony.com/sponsor",
  11008. "type": "custom"
  11009. },
  11010. {
  11011. "url": "https://github.com/fabpot",
  11012. "type": "github"
  11013. },
  11014. {
  11015. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11016. "type": "tidelift"
  11017. }
  11018. ],
  11019. "time": "2023-09-26T12:56:25+00:00"
  11020. },
  11021. {
  11022. "name": "symfony/http-foundation",
  11023. "version": "v6.3.8",
  11024. "source": {
  11025. "type": "git",
  11026. "url": "https://github.com/symfony/http-foundation.git",
  11027. "reference": "ce332676de1912c4389222987193c3ef38033df6"
  11028. },
  11029. "dist": {
  11030. "type": "zip",
  11031. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ce332676de1912c4389222987193c3ef38033df6",
  11032. "reference": "ce332676de1912c4389222987193c3ef38033df6",
  11033. "shasum": ""
  11034. },
  11035. "require": {
  11036. "php": ">=8.1",
  11037. "symfony/deprecation-contracts": "^2.5|^3",
  11038. "symfony/polyfill-mbstring": "~1.1",
  11039. "symfony/polyfill-php83": "^1.27"
  11040. },
  11041. "conflict": {
  11042. "symfony/cache": "<6.3"
  11043. },
  11044. "require-dev": {
  11045. "doctrine/dbal": "^2.13.1|^3|^4",
  11046. "predis/predis": "^1.1|^2.0",
  11047. "symfony/cache": "^6.3",
  11048. "symfony/dependency-injection": "^5.4|^6.0",
  11049. "symfony/expression-language": "^5.4|^6.0",
  11050. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  11051. "symfony/mime": "^5.4|^6.0",
  11052. "symfony/rate-limiter": "^5.2|^6.0"
  11053. },
  11054. "type": "library",
  11055. "autoload": {
  11056. "psr-4": {
  11057. "Symfony\\Component\\HttpFoundation\\": ""
  11058. },
  11059. "exclude-from-classmap": [
  11060. "/Tests/"
  11061. ]
  11062. },
  11063. "notification-url": "https://packagist.org/downloads/",
  11064. "license": [
  11065. "MIT"
  11066. ],
  11067. "authors": [
  11068. {
  11069. "name": "Fabien Potencier",
  11070. "email": "fabien@symfony.com"
  11071. },
  11072. {
  11073. "name": "Symfony Community",
  11074. "homepage": "https://symfony.com/contributors"
  11075. }
  11076. ],
  11077. "description": "Defines an object-oriented layer for the HTTP specification",
  11078. "homepage": "https://symfony.com",
  11079. "support": {
  11080. "source": "https://github.com/symfony/http-foundation/tree/v6.3.8"
  11081. },
  11082. "funding": [
  11083. {
  11084. "url": "https://symfony.com/sponsor",
  11085. "type": "custom"
  11086. },
  11087. {
  11088. "url": "https://github.com/fabpot",
  11089. "type": "github"
  11090. },
  11091. {
  11092. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11093. "type": "tidelift"
  11094. }
  11095. ],
  11096. "time": "2023-11-07T10:17:15+00:00"
  11097. },
  11098. {
  11099. "name": "symfony/http-kernel",
  11100. "version": "v6.3.8",
  11101. "source": {
  11102. "type": "git",
  11103. "url": "https://github.com/symfony/http-kernel.git",
  11104. "reference": "929202375ccf44a309c34aeca8305408442ebcc1"
  11105. },
  11106. "dist": {
  11107. "type": "zip",
  11108. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/929202375ccf44a309c34aeca8305408442ebcc1",
  11109. "reference": "929202375ccf44a309c34aeca8305408442ebcc1",
  11110. "shasum": ""
  11111. },
  11112. "require": {
  11113. "php": ">=8.1",
  11114. "psr/log": "^1|^2|^3",
  11115. "symfony/deprecation-contracts": "^2.5|^3",
  11116. "symfony/error-handler": "^6.3",
  11117. "symfony/event-dispatcher": "^5.4|^6.0",
  11118. "symfony/http-foundation": "^6.3.4",
  11119. "symfony/polyfill-ctype": "^1.8"
  11120. },
  11121. "conflict": {
  11122. "symfony/browser-kit": "<5.4",
  11123. "symfony/cache": "<5.4",
  11124. "symfony/config": "<6.1",
  11125. "symfony/console": "<5.4",
  11126. "symfony/dependency-injection": "<6.3.4",
  11127. "symfony/doctrine-bridge": "<5.4",
  11128. "symfony/form": "<5.4",
  11129. "symfony/http-client": "<5.4",
  11130. "symfony/http-client-contracts": "<2.5",
  11131. "symfony/mailer": "<5.4",
  11132. "symfony/messenger": "<5.4",
  11133. "symfony/translation": "<5.4",
  11134. "symfony/translation-contracts": "<2.5",
  11135. "symfony/twig-bridge": "<5.4",
  11136. "symfony/validator": "<5.4",
  11137. "symfony/var-dumper": "<6.3",
  11138. "twig/twig": "<2.13"
  11139. },
  11140. "provide": {
  11141. "psr/log-implementation": "1.0|2.0|3.0"
  11142. },
  11143. "require-dev": {
  11144. "psr/cache": "^1.0|^2.0|^3.0",
  11145. "symfony/browser-kit": "^5.4|^6.0",
  11146. "symfony/clock": "^6.2",
  11147. "symfony/config": "^6.1",
  11148. "symfony/console": "^5.4|^6.0",
  11149. "symfony/css-selector": "^5.4|^6.0",
  11150. "symfony/dependency-injection": "^6.3.4",
  11151. "symfony/dom-crawler": "^5.4|^6.0",
  11152. "symfony/expression-language": "^5.4|^6.0",
  11153. "symfony/finder": "^5.4|^6.0",
  11154. "symfony/http-client-contracts": "^2.5|^3",
  11155. "symfony/process": "^5.4|^6.0",
  11156. "symfony/property-access": "^5.4.5|^6.0.5",
  11157. "symfony/routing": "^5.4|^6.0",
  11158. "symfony/serializer": "^6.3",
  11159. "symfony/stopwatch": "^5.4|^6.0",
  11160. "symfony/translation": "^5.4|^6.0",
  11161. "symfony/translation-contracts": "^2.5|^3",
  11162. "symfony/uid": "^5.4|^6.0",
  11163. "symfony/validator": "^6.3",
  11164. "symfony/var-exporter": "^6.2",
  11165. "twig/twig": "^2.13|^3.0.4"
  11166. },
  11167. "type": "library",
  11168. "autoload": {
  11169. "psr-4": {
  11170. "Symfony\\Component\\HttpKernel\\": ""
  11171. },
  11172. "exclude-from-classmap": [
  11173. "/Tests/"
  11174. ]
  11175. },
  11176. "notification-url": "https://packagist.org/downloads/",
  11177. "license": [
  11178. "MIT"
  11179. ],
  11180. "authors": [
  11181. {
  11182. "name": "Fabien Potencier",
  11183. "email": "fabien@symfony.com"
  11184. },
  11185. {
  11186. "name": "Symfony Community",
  11187. "homepage": "https://symfony.com/contributors"
  11188. }
  11189. ],
  11190. "description": "Provides a structured process for converting a Request into a Response",
  11191. "homepage": "https://symfony.com",
  11192. "support": {
  11193. "source": "https://github.com/symfony/http-kernel/tree/v6.3.8"
  11194. },
  11195. "funding": [
  11196. {
  11197. "url": "https://symfony.com/sponsor",
  11198. "type": "custom"
  11199. },
  11200. {
  11201. "url": "https://github.com/fabpot",
  11202. "type": "github"
  11203. },
  11204. {
  11205. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11206. "type": "tidelift"
  11207. }
  11208. ],
  11209. "time": "2023-11-10T13:47:32+00:00"
  11210. },
  11211. {
  11212. "name": "symfony/mime",
  11213. "version": "v6.3.5",
  11214. "source": {
  11215. "type": "git",
  11216. "url": "https://github.com/symfony/mime.git",
  11217. "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e"
  11218. },
  11219. "dist": {
  11220. "type": "zip",
  11221. "url": "https://api.github.com/repos/symfony/mime/zipball/d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
  11222. "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
  11223. "shasum": ""
  11224. },
  11225. "require": {
  11226. "php": ">=8.1",
  11227. "symfony/deprecation-contracts": "^2.5|^3",
  11228. "symfony/polyfill-intl-idn": "^1.10",
  11229. "symfony/polyfill-mbstring": "^1.0"
  11230. },
  11231. "conflict": {
  11232. "egulias/email-validator": "~3.0.0",
  11233. "phpdocumentor/reflection-docblock": "<3.2.2",
  11234. "phpdocumentor/type-resolver": "<1.4.0",
  11235. "symfony/mailer": "<5.4",
  11236. "symfony/serializer": "<6.2.13|>=6.3,<6.3.2"
  11237. },
  11238. "require-dev": {
  11239. "egulias/email-validator": "^2.1.10|^3.1|^4",
  11240. "league/html-to-markdown": "^5.0",
  11241. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  11242. "symfony/dependency-injection": "^5.4|^6.0",
  11243. "symfony/property-access": "^5.4|^6.0",
  11244. "symfony/property-info": "^5.4|^6.0",
  11245. "symfony/serializer": "~6.2.13|^6.3.2"
  11246. },
  11247. "type": "library",
  11248. "autoload": {
  11249. "psr-4": {
  11250. "Symfony\\Component\\Mime\\": ""
  11251. },
  11252. "exclude-from-classmap": [
  11253. "/Tests/"
  11254. ]
  11255. },
  11256. "notification-url": "https://packagist.org/downloads/",
  11257. "license": [
  11258. "MIT"
  11259. ],
  11260. "authors": [
  11261. {
  11262. "name": "Fabien Potencier",
  11263. "email": "fabien@symfony.com"
  11264. },
  11265. {
  11266. "name": "Symfony Community",
  11267. "homepage": "https://symfony.com/contributors"
  11268. }
  11269. ],
  11270. "description": "Allows manipulating MIME messages",
  11271. "homepage": "https://symfony.com",
  11272. "keywords": [
  11273. "mime",
  11274. "mime-type"
  11275. ],
  11276. "support": {
  11277. "source": "https://github.com/symfony/mime/tree/v6.3.5"
  11278. },
  11279. "funding": [
  11280. {
  11281. "url": "https://symfony.com/sponsor",
  11282. "type": "custom"
  11283. },
  11284. {
  11285. "url": "https://github.com/fabpot",
  11286. "type": "github"
  11287. },
  11288. {
  11289. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11290. "type": "tidelift"
  11291. }
  11292. ],
  11293. "time": "2023-09-29T06:59:36+00:00"
  11294. },
  11295. {
  11296. "name": "symfony/polyfill-ctype",
  11297. "version": "v1.27.0",
  11298. "source": {
  11299. "type": "git",
  11300. "url": "https://github.com/symfony/polyfill-ctype.git",
  11301. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  11302. },
  11303. "dist": {
  11304. "type": "zip",
  11305. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  11306. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  11307. "shasum": ""
  11308. },
  11309. "require": {
  11310. "php": ">=7.1"
  11311. },
  11312. "provide": {
  11313. "ext-ctype": "*"
  11314. },
  11315. "suggest": {
  11316. "ext-ctype": "For best performance"
  11317. },
  11318. "type": "library",
  11319. "extra": {
  11320. "branch-alias": {
  11321. "dev-main": "1.27-dev"
  11322. },
  11323. "thanks": {
  11324. "name": "symfony/polyfill",
  11325. "url": "https://github.com/symfony/polyfill"
  11326. }
  11327. },
  11328. "autoload": {
  11329. "files": [
  11330. "bootstrap.php"
  11331. ],
  11332. "psr-4": {
  11333. "Symfony\\Polyfill\\Ctype\\": ""
  11334. }
  11335. },
  11336. "notification-url": "https://packagist.org/downloads/",
  11337. "license": [
  11338. "MIT"
  11339. ],
  11340. "authors": [
  11341. {
  11342. "name": "Gert de Pagter",
  11343. "email": "BackEndTea@gmail.com"
  11344. },
  11345. {
  11346. "name": "Symfony Community",
  11347. "homepage": "https://symfony.com/contributors"
  11348. }
  11349. ],
  11350. "description": "Symfony polyfill for ctype functions",
  11351. "homepage": "https://symfony.com",
  11352. "keywords": [
  11353. "compatibility",
  11354. "ctype",
  11355. "polyfill",
  11356. "portable"
  11357. ],
  11358. "support": {
  11359. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  11360. },
  11361. "funding": [
  11362. {
  11363. "url": "https://symfony.com/sponsor",
  11364. "type": "custom"
  11365. },
  11366. {
  11367. "url": "https://github.com/fabpot",
  11368. "type": "github"
  11369. },
  11370. {
  11371. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11372. "type": "tidelift"
  11373. }
  11374. ],
  11375. "time": "2022-11-03T14:55:06+00:00"
  11376. },
  11377. {
  11378. "name": "symfony/polyfill-iconv",
  11379. "version": "v1.27.0",
  11380. "source": {
  11381. "type": "git",
  11382. "url": "https://github.com/symfony/polyfill-iconv.git",
  11383. "reference": "927013f3aac555983a5059aada98e1907d842695"
  11384. },
  11385. "dist": {
  11386. "type": "zip",
  11387. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  11388. "reference": "927013f3aac555983a5059aada98e1907d842695",
  11389. "shasum": ""
  11390. },
  11391. "require": {
  11392. "php": ">=7.1"
  11393. },
  11394. "provide": {
  11395. "ext-iconv": "*"
  11396. },
  11397. "suggest": {
  11398. "ext-iconv": "For best performance"
  11399. },
  11400. "type": "library",
  11401. "extra": {
  11402. "branch-alias": {
  11403. "dev-main": "1.27-dev"
  11404. },
  11405. "thanks": {
  11406. "name": "symfony/polyfill",
  11407. "url": "https://github.com/symfony/polyfill"
  11408. }
  11409. },
  11410. "autoload": {
  11411. "files": [
  11412. "bootstrap.php"
  11413. ],
  11414. "psr-4": {
  11415. "Symfony\\Polyfill\\Iconv\\": ""
  11416. }
  11417. },
  11418. "notification-url": "https://packagist.org/downloads/",
  11419. "license": [
  11420. "MIT"
  11421. ],
  11422. "authors": [
  11423. {
  11424. "name": "Nicolas Grekas",
  11425. "email": "p@tchwork.com"
  11426. },
  11427. {
  11428. "name": "Symfony Community",
  11429. "homepage": "https://symfony.com/contributors"
  11430. }
  11431. ],
  11432. "description": "Symfony polyfill for the Iconv extension",
  11433. "homepage": "https://symfony.com",
  11434. "keywords": [
  11435. "compatibility",
  11436. "iconv",
  11437. "polyfill",
  11438. "portable",
  11439. "shim"
  11440. ],
  11441. "support": {
  11442. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  11443. },
  11444. "funding": [
  11445. {
  11446. "url": "https://symfony.com/sponsor",
  11447. "type": "custom"
  11448. },
  11449. {
  11450. "url": "https://github.com/fabpot",
  11451. "type": "github"
  11452. },
  11453. {
  11454. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11455. "type": "tidelift"
  11456. }
  11457. ],
  11458. "time": "2022-11-03T14:55:06+00:00"
  11459. },
  11460. {
  11461. "name": "symfony/polyfill-intl-grapheme",
  11462. "version": "v1.27.0",
  11463. "source": {
  11464. "type": "git",
  11465. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  11466. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  11467. },
  11468. "dist": {
  11469. "type": "zip",
  11470. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  11471. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  11472. "shasum": ""
  11473. },
  11474. "require": {
  11475. "php": ">=7.1"
  11476. },
  11477. "suggest": {
  11478. "ext-intl": "For best performance"
  11479. },
  11480. "type": "library",
  11481. "extra": {
  11482. "branch-alias": {
  11483. "dev-main": "1.27-dev"
  11484. },
  11485. "thanks": {
  11486. "name": "symfony/polyfill",
  11487. "url": "https://github.com/symfony/polyfill"
  11488. }
  11489. },
  11490. "autoload": {
  11491. "files": [
  11492. "bootstrap.php"
  11493. ],
  11494. "psr-4": {
  11495. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  11496. }
  11497. },
  11498. "notification-url": "https://packagist.org/downloads/",
  11499. "license": [
  11500. "MIT"
  11501. ],
  11502. "authors": [
  11503. {
  11504. "name": "Nicolas Grekas",
  11505. "email": "p@tchwork.com"
  11506. },
  11507. {
  11508. "name": "Symfony Community",
  11509. "homepage": "https://symfony.com/contributors"
  11510. }
  11511. ],
  11512. "description": "Symfony polyfill for intl's grapheme_* functions",
  11513. "homepage": "https://symfony.com",
  11514. "keywords": [
  11515. "compatibility",
  11516. "grapheme",
  11517. "intl",
  11518. "polyfill",
  11519. "portable",
  11520. "shim"
  11521. ],
  11522. "support": {
  11523. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  11524. },
  11525. "funding": [
  11526. {
  11527. "url": "https://symfony.com/sponsor",
  11528. "type": "custom"
  11529. },
  11530. {
  11531. "url": "https://github.com/fabpot",
  11532. "type": "github"
  11533. },
  11534. {
  11535. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11536. "type": "tidelift"
  11537. }
  11538. ],
  11539. "time": "2022-11-03T14:55:06+00:00"
  11540. },
  11541. {
  11542. "name": "symfony/polyfill-intl-idn",
  11543. "version": "v1.27.0",
  11544. "source": {
  11545. "type": "git",
  11546. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  11547. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  11548. },
  11549. "dist": {
  11550. "type": "zip",
  11551. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  11552. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  11553. "shasum": ""
  11554. },
  11555. "require": {
  11556. "php": ">=7.1",
  11557. "symfony/polyfill-intl-normalizer": "^1.10",
  11558. "symfony/polyfill-php72": "^1.10"
  11559. },
  11560. "suggest": {
  11561. "ext-intl": "For best performance"
  11562. },
  11563. "type": "library",
  11564. "extra": {
  11565. "branch-alias": {
  11566. "dev-main": "1.27-dev"
  11567. },
  11568. "thanks": {
  11569. "name": "symfony/polyfill",
  11570. "url": "https://github.com/symfony/polyfill"
  11571. }
  11572. },
  11573. "autoload": {
  11574. "files": [
  11575. "bootstrap.php"
  11576. ],
  11577. "psr-4": {
  11578. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  11579. }
  11580. },
  11581. "notification-url": "https://packagist.org/downloads/",
  11582. "license": [
  11583. "MIT"
  11584. ],
  11585. "authors": [
  11586. {
  11587. "name": "Laurent Bassin",
  11588. "email": "laurent@bassin.info"
  11589. },
  11590. {
  11591. "name": "Trevor Rowbotham",
  11592. "email": "trevor.rowbotham@pm.me"
  11593. },
  11594. {
  11595. "name": "Symfony Community",
  11596. "homepage": "https://symfony.com/contributors"
  11597. }
  11598. ],
  11599. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  11600. "homepage": "https://symfony.com",
  11601. "keywords": [
  11602. "compatibility",
  11603. "idn",
  11604. "intl",
  11605. "polyfill",
  11606. "portable",
  11607. "shim"
  11608. ],
  11609. "support": {
  11610. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  11611. },
  11612. "funding": [
  11613. {
  11614. "url": "https://symfony.com/sponsor",
  11615. "type": "custom"
  11616. },
  11617. {
  11618. "url": "https://github.com/fabpot",
  11619. "type": "github"
  11620. },
  11621. {
  11622. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11623. "type": "tidelift"
  11624. }
  11625. ],
  11626. "time": "2022-11-03T14:55:06+00:00"
  11627. },
  11628. {
  11629. "name": "symfony/polyfill-intl-normalizer",
  11630. "version": "v1.27.0",
  11631. "source": {
  11632. "type": "git",
  11633. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  11634. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  11635. },
  11636. "dist": {
  11637. "type": "zip",
  11638. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  11639. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  11640. "shasum": ""
  11641. },
  11642. "require": {
  11643. "php": ">=7.1"
  11644. },
  11645. "suggest": {
  11646. "ext-intl": "For best performance"
  11647. },
  11648. "type": "library",
  11649. "extra": {
  11650. "branch-alias": {
  11651. "dev-main": "1.27-dev"
  11652. },
  11653. "thanks": {
  11654. "name": "symfony/polyfill",
  11655. "url": "https://github.com/symfony/polyfill"
  11656. }
  11657. },
  11658. "autoload": {
  11659. "files": [
  11660. "bootstrap.php"
  11661. ],
  11662. "psr-4": {
  11663. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  11664. },
  11665. "classmap": [
  11666. "Resources/stubs"
  11667. ]
  11668. },
  11669. "notification-url": "https://packagist.org/downloads/",
  11670. "license": [
  11671. "MIT"
  11672. ],
  11673. "authors": [
  11674. {
  11675. "name": "Nicolas Grekas",
  11676. "email": "p@tchwork.com"
  11677. },
  11678. {
  11679. "name": "Symfony Community",
  11680. "homepage": "https://symfony.com/contributors"
  11681. }
  11682. ],
  11683. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  11684. "homepage": "https://symfony.com",
  11685. "keywords": [
  11686. "compatibility",
  11687. "intl",
  11688. "normalizer",
  11689. "polyfill",
  11690. "portable",
  11691. "shim"
  11692. ],
  11693. "support": {
  11694. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  11695. },
  11696. "funding": [
  11697. {
  11698. "url": "https://symfony.com/sponsor",
  11699. "type": "custom"
  11700. },
  11701. {
  11702. "url": "https://github.com/fabpot",
  11703. "type": "github"
  11704. },
  11705. {
  11706. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11707. "type": "tidelift"
  11708. }
  11709. ],
  11710. "time": "2022-11-03T14:55:06+00:00"
  11711. },
  11712. {
  11713. "name": "symfony/polyfill-mbstring",
  11714. "version": "v1.27.0",
  11715. "source": {
  11716. "type": "git",
  11717. "url": "https://github.com/symfony/polyfill-mbstring.git",
  11718. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  11719. },
  11720. "dist": {
  11721. "type": "zip",
  11722. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  11723. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  11724. "shasum": ""
  11725. },
  11726. "require": {
  11727. "php": ">=7.1"
  11728. },
  11729. "provide": {
  11730. "ext-mbstring": "*"
  11731. },
  11732. "suggest": {
  11733. "ext-mbstring": "For best performance"
  11734. },
  11735. "type": "library",
  11736. "extra": {
  11737. "branch-alias": {
  11738. "dev-main": "1.27-dev"
  11739. },
  11740. "thanks": {
  11741. "name": "symfony/polyfill",
  11742. "url": "https://github.com/symfony/polyfill"
  11743. }
  11744. },
  11745. "autoload": {
  11746. "files": [
  11747. "bootstrap.php"
  11748. ],
  11749. "psr-4": {
  11750. "Symfony\\Polyfill\\Mbstring\\": ""
  11751. }
  11752. },
  11753. "notification-url": "https://packagist.org/downloads/",
  11754. "license": [
  11755. "MIT"
  11756. ],
  11757. "authors": [
  11758. {
  11759. "name": "Nicolas Grekas",
  11760. "email": "p@tchwork.com"
  11761. },
  11762. {
  11763. "name": "Symfony Community",
  11764. "homepage": "https://symfony.com/contributors"
  11765. }
  11766. ],
  11767. "description": "Symfony polyfill for the Mbstring extension",
  11768. "homepage": "https://symfony.com",
  11769. "keywords": [
  11770. "compatibility",
  11771. "mbstring",
  11772. "polyfill",
  11773. "portable",
  11774. "shim"
  11775. ],
  11776. "support": {
  11777. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  11778. },
  11779. "funding": [
  11780. {
  11781. "url": "https://symfony.com/sponsor",
  11782. "type": "custom"
  11783. },
  11784. {
  11785. "url": "https://github.com/fabpot",
  11786. "type": "github"
  11787. },
  11788. {
  11789. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11790. "type": "tidelift"
  11791. }
  11792. ],
  11793. "time": "2022-11-03T14:55:06+00:00"
  11794. },
  11795. {
  11796. "name": "symfony/polyfill-php72",
  11797. "version": "v1.28.0",
  11798. "source": {
  11799. "type": "git",
  11800. "url": "https://github.com/symfony/polyfill-php72.git",
  11801. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  11802. },
  11803. "dist": {
  11804. "type": "zip",
  11805. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  11806. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  11807. "shasum": ""
  11808. },
  11809. "require": {
  11810. "php": ">=7.1"
  11811. },
  11812. "type": "library",
  11813. "extra": {
  11814. "branch-alias": {
  11815. "dev-main": "1.28-dev"
  11816. },
  11817. "thanks": {
  11818. "name": "symfony/polyfill",
  11819. "url": "https://github.com/symfony/polyfill"
  11820. }
  11821. },
  11822. "autoload": {
  11823. "files": [
  11824. "bootstrap.php"
  11825. ],
  11826. "psr-4": {
  11827. "Symfony\\Polyfill\\Php72\\": ""
  11828. }
  11829. },
  11830. "notification-url": "https://packagist.org/downloads/",
  11831. "license": [
  11832. "MIT"
  11833. ],
  11834. "authors": [
  11835. {
  11836. "name": "Nicolas Grekas",
  11837. "email": "p@tchwork.com"
  11838. },
  11839. {
  11840. "name": "Symfony Community",
  11841. "homepage": "https://symfony.com/contributors"
  11842. }
  11843. ],
  11844. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  11845. "homepage": "https://symfony.com",
  11846. "keywords": [
  11847. "compatibility",
  11848. "polyfill",
  11849. "portable",
  11850. "shim"
  11851. ],
  11852. "support": {
  11853. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  11854. },
  11855. "funding": [
  11856. {
  11857. "url": "https://symfony.com/sponsor",
  11858. "type": "custom"
  11859. },
  11860. {
  11861. "url": "https://github.com/fabpot",
  11862. "type": "github"
  11863. },
  11864. {
  11865. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11866. "type": "tidelift"
  11867. }
  11868. ],
  11869. "time": "2023-01-26T09:26:14+00:00"
  11870. },
  11871. {
  11872. "name": "symfony/polyfill-php80",
  11873. "version": "v1.28.0",
  11874. "source": {
  11875. "type": "git",
  11876. "url": "https://github.com/symfony/polyfill-php80.git",
  11877. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  11878. },
  11879. "dist": {
  11880. "type": "zip",
  11881. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  11882. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  11883. "shasum": ""
  11884. },
  11885. "require": {
  11886. "php": ">=7.1"
  11887. },
  11888. "type": "library",
  11889. "extra": {
  11890. "branch-alias": {
  11891. "dev-main": "1.28-dev"
  11892. },
  11893. "thanks": {
  11894. "name": "symfony/polyfill",
  11895. "url": "https://github.com/symfony/polyfill"
  11896. }
  11897. },
  11898. "autoload": {
  11899. "files": [
  11900. "bootstrap.php"
  11901. ],
  11902. "psr-4": {
  11903. "Symfony\\Polyfill\\Php80\\": ""
  11904. },
  11905. "classmap": [
  11906. "Resources/stubs"
  11907. ]
  11908. },
  11909. "notification-url": "https://packagist.org/downloads/",
  11910. "license": [
  11911. "MIT"
  11912. ],
  11913. "authors": [
  11914. {
  11915. "name": "Ion Bazan",
  11916. "email": "ion.bazan@gmail.com"
  11917. },
  11918. {
  11919. "name": "Nicolas Grekas",
  11920. "email": "p@tchwork.com"
  11921. },
  11922. {
  11923. "name": "Symfony Community",
  11924. "homepage": "https://symfony.com/contributors"
  11925. }
  11926. ],
  11927. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  11928. "homepage": "https://symfony.com",
  11929. "keywords": [
  11930. "compatibility",
  11931. "polyfill",
  11932. "portable",
  11933. "shim"
  11934. ],
  11935. "support": {
  11936. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  11937. },
  11938. "funding": [
  11939. {
  11940. "url": "https://symfony.com/sponsor",
  11941. "type": "custom"
  11942. },
  11943. {
  11944. "url": "https://github.com/fabpot",
  11945. "type": "github"
  11946. },
  11947. {
  11948. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11949. "type": "tidelift"
  11950. }
  11951. ],
  11952. "time": "2023-01-26T09:26:14+00:00"
  11953. },
  11954. {
  11955. "name": "symfony/polyfill-php81",
  11956. "version": "v1.28.0",
  11957. "source": {
  11958. "type": "git",
  11959. "url": "https://github.com/symfony/polyfill-php81.git",
  11960. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  11961. },
  11962. "dist": {
  11963. "type": "zip",
  11964. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  11965. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  11966. "shasum": ""
  11967. },
  11968. "require": {
  11969. "php": ">=7.1"
  11970. },
  11971. "type": "library",
  11972. "extra": {
  11973. "branch-alias": {
  11974. "dev-main": "1.28-dev"
  11975. },
  11976. "thanks": {
  11977. "name": "symfony/polyfill",
  11978. "url": "https://github.com/symfony/polyfill"
  11979. }
  11980. },
  11981. "autoload": {
  11982. "files": [
  11983. "bootstrap.php"
  11984. ],
  11985. "psr-4": {
  11986. "Symfony\\Polyfill\\Php81\\": ""
  11987. },
  11988. "classmap": [
  11989. "Resources/stubs"
  11990. ]
  11991. },
  11992. "notification-url": "https://packagist.org/downloads/",
  11993. "license": [
  11994. "MIT"
  11995. ],
  11996. "authors": [
  11997. {
  11998. "name": "Nicolas Grekas",
  11999. "email": "p@tchwork.com"
  12000. },
  12001. {
  12002. "name": "Symfony Community",
  12003. "homepage": "https://symfony.com/contributors"
  12004. }
  12005. ],
  12006. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  12007. "homepage": "https://symfony.com",
  12008. "keywords": [
  12009. "compatibility",
  12010. "polyfill",
  12011. "portable",
  12012. "shim"
  12013. ],
  12014. "support": {
  12015. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  12016. },
  12017. "funding": [
  12018. {
  12019. "url": "https://symfony.com/sponsor",
  12020. "type": "custom"
  12021. },
  12022. {
  12023. "url": "https://github.com/fabpot",
  12024. "type": "github"
  12025. },
  12026. {
  12027. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12028. "type": "tidelift"
  12029. }
  12030. ],
  12031. "time": "2023-01-26T09:26:14+00:00"
  12032. },
  12033. {
  12034. "name": "symfony/polyfill-php83",
  12035. "version": "v1.27.0",
  12036. "source": {
  12037. "type": "git",
  12038. "url": "https://github.com/symfony/polyfill-php83.git",
  12039. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57"
  12040. },
  12041. "dist": {
  12042. "type": "zip",
  12043. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/508c652ba3ccf69f8c97f251534f229791b52a57",
  12044. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57",
  12045. "shasum": ""
  12046. },
  12047. "require": {
  12048. "php": ">=7.1",
  12049. "symfony/polyfill-php80": "^1.14"
  12050. },
  12051. "type": "library",
  12052. "extra": {
  12053. "branch-alias": {
  12054. "dev-main": "1.27-dev"
  12055. },
  12056. "thanks": {
  12057. "name": "symfony/polyfill",
  12058. "url": "https://github.com/symfony/polyfill"
  12059. }
  12060. },
  12061. "autoload": {
  12062. "files": [
  12063. "bootstrap.php"
  12064. ],
  12065. "psr-4": {
  12066. "Symfony\\Polyfill\\Php83\\": ""
  12067. }
  12068. },
  12069. "notification-url": "https://packagist.org/downloads/",
  12070. "license": [
  12071. "MIT"
  12072. ],
  12073. "authors": [
  12074. {
  12075. "name": "Nicolas Grekas",
  12076. "email": "p@tchwork.com"
  12077. },
  12078. {
  12079. "name": "Symfony Community",
  12080. "homepage": "https://symfony.com/contributors"
  12081. }
  12082. ],
  12083. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  12084. "homepage": "https://symfony.com",
  12085. "keywords": [
  12086. "compatibility",
  12087. "polyfill",
  12088. "portable",
  12089. "shim"
  12090. ],
  12091. "support": {
  12092. "source": "https://github.com/symfony/polyfill-php83/tree/v1.27.0"
  12093. },
  12094. "funding": [
  12095. {
  12096. "url": "https://symfony.com/sponsor",
  12097. "type": "custom"
  12098. },
  12099. {
  12100. "url": "https://github.com/fabpot",
  12101. "type": "github"
  12102. },
  12103. {
  12104. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12105. "type": "tidelift"
  12106. }
  12107. ],
  12108. "time": "2022-11-03T14:55:06+00:00"
  12109. },
  12110. {
  12111. "name": "symfony/process",
  12112. "version": "v6.3.4",
  12113. "source": {
  12114. "type": "git",
  12115. "url": "https://github.com/symfony/process.git",
  12116. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54"
  12117. },
  12118. "dist": {
  12119. "type": "zip",
  12120. "url": "https://api.github.com/repos/symfony/process/zipball/0b5c29118f2e980d455d2e34a5659f4579847c54",
  12121. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54",
  12122. "shasum": ""
  12123. },
  12124. "require": {
  12125. "php": ">=8.1"
  12126. },
  12127. "type": "library",
  12128. "autoload": {
  12129. "psr-4": {
  12130. "Symfony\\Component\\Process\\": ""
  12131. },
  12132. "exclude-from-classmap": [
  12133. "/Tests/"
  12134. ]
  12135. },
  12136. "notification-url": "https://packagist.org/downloads/",
  12137. "license": [
  12138. "MIT"
  12139. ],
  12140. "authors": [
  12141. {
  12142. "name": "Fabien Potencier",
  12143. "email": "fabien@symfony.com"
  12144. },
  12145. {
  12146. "name": "Symfony Community",
  12147. "homepage": "https://symfony.com/contributors"
  12148. }
  12149. ],
  12150. "description": "Executes commands in sub-processes",
  12151. "homepage": "https://symfony.com",
  12152. "support": {
  12153. "source": "https://github.com/symfony/process/tree/v6.3.4"
  12154. },
  12155. "funding": [
  12156. {
  12157. "url": "https://symfony.com/sponsor",
  12158. "type": "custom"
  12159. },
  12160. {
  12161. "url": "https://github.com/fabpot",
  12162. "type": "github"
  12163. },
  12164. {
  12165. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12166. "type": "tidelift"
  12167. }
  12168. ],
  12169. "time": "2023-08-07T10:39:22+00:00"
  12170. },
  12171. {
  12172. "name": "symfony/psr-http-message-bridge",
  12173. "version": "v2.2.0",
  12174. "source": {
  12175. "type": "git",
  12176. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  12177. "reference": "28a732c05bbad801304ad5a5c674cf2970508993"
  12178. },
  12179. "dist": {
  12180. "type": "zip",
  12181. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/28a732c05bbad801304ad5a5c674cf2970508993",
  12182. "reference": "28a732c05bbad801304ad5a5c674cf2970508993",
  12183. "shasum": ""
  12184. },
  12185. "require": {
  12186. "php": ">=7.2.5",
  12187. "psr/http-message": "^1.0 || ^2.0",
  12188. "symfony/http-foundation": "^5.4 || ^6.0"
  12189. },
  12190. "require-dev": {
  12191. "nyholm/psr7": "^1.1",
  12192. "psr/log": "^1.1 || ^2 || ^3",
  12193. "symfony/browser-kit": "^5.4 || ^6.0",
  12194. "symfony/config": "^5.4 || ^6.0",
  12195. "symfony/event-dispatcher": "^5.4 || ^6.0",
  12196. "symfony/framework-bundle": "^5.4 || ^6.0",
  12197. "symfony/http-kernel": "^5.4 || ^6.0",
  12198. "symfony/phpunit-bridge": "^6.2"
  12199. },
  12200. "suggest": {
  12201. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  12202. },
  12203. "type": "symfony-bridge",
  12204. "extra": {
  12205. "branch-alias": {
  12206. "dev-main": "2.2-dev"
  12207. }
  12208. },
  12209. "autoload": {
  12210. "psr-4": {
  12211. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  12212. },
  12213. "exclude-from-classmap": [
  12214. "/Tests/"
  12215. ]
  12216. },
  12217. "notification-url": "https://packagist.org/downloads/",
  12218. "license": [
  12219. "MIT"
  12220. ],
  12221. "authors": [
  12222. {
  12223. "name": "Fabien Potencier",
  12224. "email": "fabien@symfony.com"
  12225. },
  12226. {
  12227. "name": "Symfony Community",
  12228. "homepage": "http://symfony.com/contributors"
  12229. }
  12230. ],
  12231. "description": "PSR HTTP message bridge",
  12232. "homepage": "http://symfony.com",
  12233. "keywords": [
  12234. "http",
  12235. "http-message",
  12236. "psr-17",
  12237. "psr-7"
  12238. ],
  12239. "support": {
  12240. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  12241. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.2.0"
  12242. },
  12243. "funding": [
  12244. {
  12245. "url": "https://symfony.com/sponsor",
  12246. "type": "custom"
  12247. },
  12248. {
  12249. "url": "https://github.com/fabpot",
  12250. "type": "github"
  12251. },
  12252. {
  12253. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12254. "type": "tidelift"
  12255. }
  12256. ],
  12257. "time": "2023-04-21T08:40:19+00:00"
  12258. },
  12259. {
  12260. "name": "symfony/routing",
  12261. "version": "v6.3.5",
  12262. "source": {
  12263. "type": "git",
  12264. "url": "https://github.com/symfony/routing.git",
  12265. "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31"
  12266. },
  12267. "dist": {
  12268. "type": "zip",
  12269. "url": "https://api.github.com/repos/symfony/routing/zipball/82616e59acd3e3d9c916bba798326cb7796d7d31",
  12270. "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31",
  12271. "shasum": ""
  12272. },
  12273. "require": {
  12274. "php": ">=8.1",
  12275. "symfony/deprecation-contracts": "^2.5|^3"
  12276. },
  12277. "conflict": {
  12278. "doctrine/annotations": "<1.12",
  12279. "symfony/config": "<6.2",
  12280. "symfony/dependency-injection": "<5.4",
  12281. "symfony/yaml": "<5.4"
  12282. },
  12283. "require-dev": {
  12284. "doctrine/annotations": "^1.12|^2",
  12285. "psr/log": "^1|^2|^3",
  12286. "symfony/config": "^6.2",
  12287. "symfony/dependency-injection": "^5.4|^6.0",
  12288. "symfony/expression-language": "^5.4|^6.0",
  12289. "symfony/http-foundation": "^5.4|^6.0",
  12290. "symfony/yaml": "^5.4|^6.0"
  12291. },
  12292. "type": "library",
  12293. "autoload": {
  12294. "psr-4": {
  12295. "Symfony\\Component\\Routing\\": ""
  12296. },
  12297. "exclude-from-classmap": [
  12298. "/Tests/"
  12299. ]
  12300. },
  12301. "notification-url": "https://packagist.org/downloads/",
  12302. "license": [
  12303. "MIT"
  12304. ],
  12305. "authors": [
  12306. {
  12307. "name": "Fabien Potencier",
  12308. "email": "fabien@symfony.com"
  12309. },
  12310. {
  12311. "name": "Symfony Community",
  12312. "homepage": "https://symfony.com/contributors"
  12313. }
  12314. ],
  12315. "description": "Maps an HTTP request to a set of configuration variables",
  12316. "homepage": "https://symfony.com",
  12317. "keywords": [
  12318. "router",
  12319. "routing",
  12320. "uri",
  12321. "url"
  12322. ],
  12323. "support": {
  12324. "source": "https://github.com/symfony/routing/tree/v6.3.5"
  12325. },
  12326. "funding": [
  12327. {
  12328. "url": "https://symfony.com/sponsor",
  12329. "type": "custom"
  12330. },
  12331. {
  12332. "url": "https://github.com/fabpot",
  12333. "type": "github"
  12334. },
  12335. {
  12336. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12337. "type": "tidelift"
  12338. }
  12339. ],
  12340. "time": "2023-09-20T16:05:51+00:00"
  12341. },
  12342. {
  12343. "name": "symfony/serializer",
  12344. "version": "v6.3.8",
  12345. "source": {
  12346. "type": "git",
  12347. "url": "https://github.com/symfony/serializer.git",
  12348. "reference": "b3ad1515a276473f7919ac97e560017284a7c4bf"
  12349. },
  12350. "dist": {
  12351. "type": "zip",
  12352. "url": "https://api.github.com/repos/symfony/serializer/zipball/b3ad1515a276473f7919ac97e560017284a7c4bf",
  12353. "reference": "b3ad1515a276473f7919ac97e560017284a7c4bf",
  12354. "shasum": ""
  12355. },
  12356. "require": {
  12357. "php": ">=8.1",
  12358. "symfony/deprecation-contracts": "^2.5|^3",
  12359. "symfony/polyfill-ctype": "~1.8"
  12360. },
  12361. "conflict": {
  12362. "doctrine/annotations": "<1.12",
  12363. "phpdocumentor/reflection-docblock": "<3.2.2",
  12364. "phpdocumentor/type-resolver": "<1.4.0",
  12365. "symfony/dependency-injection": "<5.4",
  12366. "symfony/property-access": "<5.4",
  12367. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  12368. "symfony/uid": "<5.4",
  12369. "symfony/yaml": "<5.4"
  12370. },
  12371. "require-dev": {
  12372. "doctrine/annotations": "^1.12|^2",
  12373. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  12374. "symfony/cache": "^5.4|^6.0",
  12375. "symfony/config": "^5.4|^6.0",
  12376. "symfony/console": "^5.4|^6.0",
  12377. "symfony/dependency-injection": "^5.4|^6.0",
  12378. "symfony/error-handler": "^5.4|^6.0",
  12379. "symfony/filesystem": "^5.4|^6.0",
  12380. "symfony/form": "^5.4|^6.0",
  12381. "symfony/http-foundation": "^5.4|^6.0",
  12382. "symfony/http-kernel": "^5.4|^6.0",
  12383. "symfony/mime": "^5.4|^6.0",
  12384. "symfony/property-access": "^5.4|^6.0",
  12385. "symfony/property-info": "^5.4.24|^6.2.11",
  12386. "symfony/uid": "^5.4|^6.0",
  12387. "symfony/validator": "^5.4|^6.0",
  12388. "symfony/var-dumper": "^5.4|^6.0",
  12389. "symfony/var-exporter": "^5.4|^6.0",
  12390. "symfony/yaml": "^5.4|^6.0"
  12391. },
  12392. "type": "library",
  12393. "autoload": {
  12394. "psr-4": {
  12395. "Symfony\\Component\\Serializer\\": ""
  12396. },
  12397. "exclude-from-classmap": [
  12398. "/Tests/"
  12399. ]
  12400. },
  12401. "notification-url": "https://packagist.org/downloads/",
  12402. "license": [
  12403. "MIT"
  12404. ],
  12405. "authors": [
  12406. {
  12407. "name": "Fabien Potencier",
  12408. "email": "fabien@symfony.com"
  12409. },
  12410. {
  12411. "name": "Symfony Community",
  12412. "homepage": "https://symfony.com/contributors"
  12413. }
  12414. ],
  12415. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  12416. "homepage": "https://symfony.com",
  12417. "support": {
  12418. "source": "https://github.com/symfony/serializer/tree/v6.3.8"
  12419. },
  12420. "funding": [
  12421. {
  12422. "url": "https://symfony.com/sponsor",
  12423. "type": "custom"
  12424. },
  12425. {
  12426. "url": "https://github.com/fabpot",
  12427. "type": "github"
  12428. },
  12429. {
  12430. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12431. "type": "tidelift"
  12432. }
  12433. ],
  12434. "time": "2023-11-07T10:11:25+00:00"
  12435. },
  12436. {
  12437. "name": "symfony/service-contracts",
  12438. "version": "v3.3.0",
  12439. "source": {
  12440. "type": "git",
  12441. "url": "https://github.com/symfony/service-contracts.git",
  12442. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
  12443. },
  12444. "dist": {
  12445. "type": "zip",
  12446. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  12447. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  12448. "shasum": ""
  12449. },
  12450. "require": {
  12451. "php": ">=8.1",
  12452. "psr/container": "^2.0"
  12453. },
  12454. "conflict": {
  12455. "ext-psr": "<1.1|>=2"
  12456. },
  12457. "type": "library",
  12458. "extra": {
  12459. "branch-alias": {
  12460. "dev-main": "3.4-dev"
  12461. },
  12462. "thanks": {
  12463. "name": "symfony/contracts",
  12464. "url": "https://github.com/symfony/contracts"
  12465. }
  12466. },
  12467. "autoload": {
  12468. "psr-4": {
  12469. "Symfony\\Contracts\\Service\\": ""
  12470. },
  12471. "exclude-from-classmap": [
  12472. "/Test/"
  12473. ]
  12474. },
  12475. "notification-url": "https://packagist.org/downloads/",
  12476. "license": [
  12477. "MIT"
  12478. ],
  12479. "authors": [
  12480. {
  12481. "name": "Nicolas Grekas",
  12482. "email": "p@tchwork.com"
  12483. },
  12484. {
  12485. "name": "Symfony Community",
  12486. "homepage": "https://symfony.com/contributors"
  12487. }
  12488. ],
  12489. "description": "Generic abstractions related to writing services",
  12490. "homepage": "https://symfony.com",
  12491. "keywords": [
  12492. "abstractions",
  12493. "contracts",
  12494. "decoupling",
  12495. "interfaces",
  12496. "interoperability",
  12497. "standards"
  12498. ],
  12499. "support": {
  12500. "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
  12501. },
  12502. "funding": [
  12503. {
  12504. "url": "https://symfony.com/sponsor",
  12505. "type": "custom"
  12506. },
  12507. {
  12508. "url": "https://github.com/fabpot",
  12509. "type": "github"
  12510. },
  12511. {
  12512. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12513. "type": "tidelift"
  12514. }
  12515. ],
  12516. "time": "2023-05-23T14:45:45+00:00"
  12517. },
  12518. {
  12519. "name": "symfony/string",
  12520. "version": "v6.3.8",
  12521. "source": {
  12522. "type": "git",
  12523. "url": "https://github.com/symfony/string.git",
  12524. "reference": "13880a87790c76ef994c91e87efb96134522577a"
  12525. },
  12526. "dist": {
  12527. "type": "zip",
  12528. "url": "https://api.github.com/repos/symfony/string/zipball/13880a87790c76ef994c91e87efb96134522577a",
  12529. "reference": "13880a87790c76ef994c91e87efb96134522577a",
  12530. "shasum": ""
  12531. },
  12532. "require": {
  12533. "php": ">=8.1",
  12534. "symfony/polyfill-ctype": "~1.8",
  12535. "symfony/polyfill-intl-grapheme": "~1.0",
  12536. "symfony/polyfill-intl-normalizer": "~1.0",
  12537. "symfony/polyfill-mbstring": "~1.0"
  12538. },
  12539. "conflict": {
  12540. "symfony/translation-contracts": "<2.5"
  12541. },
  12542. "require-dev": {
  12543. "symfony/error-handler": "^5.4|^6.0",
  12544. "symfony/http-client": "^5.4|^6.0",
  12545. "symfony/intl": "^6.2",
  12546. "symfony/translation-contracts": "^2.5|^3.0",
  12547. "symfony/var-exporter": "^5.4|^6.0"
  12548. },
  12549. "type": "library",
  12550. "autoload": {
  12551. "files": [
  12552. "Resources/functions.php"
  12553. ],
  12554. "psr-4": {
  12555. "Symfony\\Component\\String\\": ""
  12556. },
  12557. "exclude-from-classmap": [
  12558. "/Tests/"
  12559. ]
  12560. },
  12561. "notification-url": "https://packagist.org/downloads/",
  12562. "license": [
  12563. "MIT"
  12564. ],
  12565. "authors": [
  12566. {
  12567. "name": "Nicolas Grekas",
  12568. "email": "p@tchwork.com"
  12569. },
  12570. {
  12571. "name": "Symfony Community",
  12572. "homepage": "https://symfony.com/contributors"
  12573. }
  12574. ],
  12575. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  12576. "homepage": "https://symfony.com",
  12577. "keywords": [
  12578. "grapheme",
  12579. "i18n",
  12580. "string",
  12581. "unicode",
  12582. "utf-8",
  12583. "utf8"
  12584. ],
  12585. "support": {
  12586. "source": "https://github.com/symfony/string/tree/v6.3.8"
  12587. },
  12588. "funding": [
  12589. {
  12590. "url": "https://symfony.com/sponsor",
  12591. "type": "custom"
  12592. },
  12593. {
  12594. "url": "https://github.com/fabpot",
  12595. "type": "github"
  12596. },
  12597. {
  12598. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12599. "type": "tidelift"
  12600. }
  12601. ],
  12602. "time": "2023-11-09T08:28:21+00:00"
  12603. },
  12604. {
  12605. "name": "symfony/translation-contracts",
  12606. "version": "v3.3.0",
  12607. "source": {
  12608. "type": "git",
  12609. "url": "https://github.com/symfony/translation-contracts.git",
  12610. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86"
  12611. },
  12612. "dist": {
  12613. "type": "zip",
  12614. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86",
  12615. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86",
  12616. "shasum": ""
  12617. },
  12618. "require": {
  12619. "php": ">=8.1"
  12620. },
  12621. "type": "library",
  12622. "extra": {
  12623. "branch-alias": {
  12624. "dev-main": "3.4-dev"
  12625. },
  12626. "thanks": {
  12627. "name": "symfony/contracts",
  12628. "url": "https://github.com/symfony/contracts"
  12629. }
  12630. },
  12631. "autoload": {
  12632. "psr-4": {
  12633. "Symfony\\Contracts\\Translation\\": ""
  12634. },
  12635. "exclude-from-classmap": [
  12636. "/Test/"
  12637. ]
  12638. },
  12639. "notification-url": "https://packagist.org/downloads/",
  12640. "license": [
  12641. "MIT"
  12642. ],
  12643. "authors": [
  12644. {
  12645. "name": "Nicolas Grekas",
  12646. "email": "p@tchwork.com"
  12647. },
  12648. {
  12649. "name": "Symfony Community",
  12650. "homepage": "https://symfony.com/contributors"
  12651. }
  12652. ],
  12653. "description": "Generic abstractions related to translation",
  12654. "homepage": "https://symfony.com",
  12655. "keywords": [
  12656. "abstractions",
  12657. "contracts",
  12658. "decoupling",
  12659. "interfaces",
  12660. "interoperability",
  12661. "standards"
  12662. ],
  12663. "support": {
  12664. "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0"
  12665. },
  12666. "funding": [
  12667. {
  12668. "url": "https://symfony.com/sponsor",
  12669. "type": "custom"
  12670. },
  12671. {
  12672. "url": "https://github.com/fabpot",
  12673. "type": "github"
  12674. },
  12675. {
  12676. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12677. "type": "tidelift"
  12678. }
  12679. ],
  12680. "time": "2023-05-30T17:17:10+00:00"
  12681. },
  12682. {
  12683. "name": "symfony/validator",
  12684. "version": "v6.3.8",
  12685. "source": {
  12686. "type": "git",
  12687. "url": "https://github.com/symfony/validator.git",
  12688. "reference": "f75b40e088d095db1e788b81605a76f4563cb80e"
  12689. },
  12690. "dist": {
  12691. "type": "zip",
  12692. "url": "https://api.github.com/repos/symfony/validator/zipball/f75b40e088d095db1e788b81605a76f4563cb80e",
  12693. "reference": "f75b40e088d095db1e788b81605a76f4563cb80e",
  12694. "shasum": ""
  12695. },
  12696. "require": {
  12697. "php": ">=8.1",
  12698. "symfony/deprecation-contracts": "^2.5|^3",
  12699. "symfony/polyfill-ctype": "~1.8",
  12700. "symfony/polyfill-mbstring": "~1.0",
  12701. "symfony/polyfill-php83": "^1.27",
  12702. "symfony/translation-contracts": "^2.5|^3"
  12703. },
  12704. "conflict": {
  12705. "doctrine/annotations": "<1.13",
  12706. "doctrine/lexer": "<1.1",
  12707. "symfony/dependency-injection": "<5.4",
  12708. "symfony/expression-language": "<5.4",
  12709. "symfony/http-kernel": "<5.4",
  12710. "symfony/intl": "<5.4",
  12711. "symfony/property-info": "<5.4",
  12712. "symfony/translation": "<5.4",
  12713. "symfony/yaml": "<5.4"
  12714. },
  12715. "require-dev": {
  12716. "doctrine/annotations": "^1.13|^2",
  12717. "egulias/email-validator": "^2.1.10|^3|^4",
  12718. "symfony/cache": "^5.4|^6.0",
  12719. "symfony/config": "^5.4|^6.0",
  12720. "symfony/console": "^5.4|^6.0",
  12721. "symfony/dependency-injection": "^5.4|^6.0",
  12722. "symfony/expression-language": "^5.4|^6.0",
  12723. "symfony/finder": "^5.4|^6.0",
  12724. "symfony/http-client": "^5.4|^6.0",
  12725. "symfony/http-foundation": "^5.4|^6.0",
  12726. "symfony/http-kernel": "^5.4|^6.0",
  12727. "symfony/intl": "^5.4|^6.0",
  12728. "symfony/mime": "^5.4|^6.0",
  12729. "symfony/property-access": "^5.4|^6.0",
  12730. "symfony/property-info": "^5.4|^6.0",
  12731. "symfony/translation": "^5.4|^6.0",
  12732. "symfony/yaml": "^5.4|^6.0"
  12733. },
  12734. "type": "library",
  12735. "autoload": {
  12736. "psr-4": {
  12737. "Symfony\\Component\\Validator\\": ""
  12738. },
  12739. "exclude-from-classmap": [
  12740. "/Tests/"
  12741. ]
  12742. },
  12743. "notification-url": "https://packagist.org/downloads/",
  12744. "license": [
  12745. "MIT"
  12746. ],
  12747. "authors": [
  12748. {
  12749. "name": "Fabien Potencier",
  12750. "email": "fabien@symfony.com"
  12751. },
  12752. {
  12753. "name": "Symfony Community",
  12754. "homepage": "https://symfony.com/contributors"
  12755. }
  12756. ],
  12757. "description": "Provides tools to validate values",
  12758. "homepage": "https://symfony.com",
  12759. "support": {
  12760. "source": "https://github.com/symfony/validator/tree/v6.3.8"
  12761. },
  12762. "funding": [
  12763. {
  12764. "url": "https://symfony.com/sponsor",
  12765. "type": "custom"
  12766. },
  12767. {
  12768. "url": "https://github.com/fabpot",
  12769. "type": "github"
  12770. },
  12771. {
  12772. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12773. "type": "tidelift"
  12774. }
  12775. ],
  12776. "time": "2023-11-07T10:17:15+00:00"
  12777. },
  12778. {
  12779. "name": "symfony/var-dumper",
  12780. "version": "v6.3.8",
  12781. "source": {
  12782. "type": "git",
  12783. "url": "https://github.com/symfony/var-dumper.git",
  12784. "reference": "81acabba9046550e89634876ca64bfcd3c06aa0a"
  12785. },
  12786. "dist": {
  12787. "type": "zip",
  12788. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/81acabba9046550e89634876ca64bfcd3c06aa0a",
  12789. "reference": "81acabba9046550e89634876ca64bfcd3c06aa0a",
  12790. "shasum": ""
  12791. },
  12792. "require": {
  12793. "php": ">=8.1",
  12794. "symfony/deprecation-contracts": "^2.5|^3",
  12795. "symfony/polyfill-mbstring": "~1.0"
  12796. },
  12797. "conflict": {
  12798. "symfony/console": "<5.4"
  12799. },
  12800. "require-dev": {
  12801. "ext-iconv": "*",
  12802. "symfony/console": "^5.4|^6.0",
  12803. "symfony/http-kernel": "^5.4|^6.0",
  12804. "symfony/process": "^5.4|^6.0",
  12805. "symfony/uid": "^5.4|^6.0",
  12806. "twig/twig": "^2.13|^3.0.4"
  12807. },
  12808. "bin": [
  12809. "Resources/bin/var-dump-server"
  12810. ],
  12811. "type": "library",
  12812. "autoload": {
  12813. "files": [
  12814. "Resources/functions/dump.php"
  12815. ],
  12816. "psr-4": {
  12817. "Symfony\\Component\\VarDumper\\": ""
  12818. },
  12819. "exclude-from-classmap": [
  12820. "/Tests/"
  12821. ]
  12822. },
  12823. "notification-url": "https://packagist.org/downloads/",
  12824. "license": [
  12825. "MIT"
  12826. ],
  12827. "authors": [
  12828. {
  12829. "name": "Nicolas Grekas",
  12830. "email": "p@tchwork.com"
  12831. },
  12832. {
  12833. "name": "Symfony Community",
  12834. "homepage": "https://symfony.com/contributors"
  12835. }
  12836. ],
  12837. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  12838. "homepage": "https://symfony.com",
  12839. "keywords": [
  12840. "debug",
  12841. "dump"
  12842. ],
  12843. "support": {
  12844. "source": "https://github.com/symfony/var-dumper/tree/v6.3.8"
  12845. },
  12846. "funding": [
  12847. {
  12848. "url": "https://symfony.com/sponsor",
  12849. "type": "custom"
  12850. },
  12851. {
  12852. "url": "https://github.com/fabpot",
  12853. "type": "github"
  12854. },
  12855. {
  12856. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12857. "type": "tidelift"
  12858. }
  12859. ],
  12860. "time": "2023-11-08T10:42:36+00:00"
  12861. },
  12862. {
  12863. "name": "symfony/var-exporter",
  12864. "version": "v6.3.6",
  12865. "source": {
  12866. "type": "git",
  12867. "url": "https://github.com/symfony/var-exporter.git",
  12868. "reference": "374d289c13cb989027274c86206ddc63b16a2441"
  12869. },
  12870. "dist": {
  12871. "type": "zip",
  12872. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/374d289c13cb989027274c86206ddc63b16a2441",
  12873. "reference": "374d289c13cb989027274c86206ddc63b16a2441",
  12874. "shasum": ""
  12875. },
  12876. "require": {
  12877. "php": ">=8.1"
  12878. },
  12879. "require-dev": {
  12880. "symfony/var-dumper": "^5.4|^6.0"
  12881. },
  12882. "type": "library",
  12883. "autoload": {
  12884. "psr-4": {
  12885. "Symfony\\Component\\VarExporter\\": ""
  12886. },
  12887. "exclude-from-classmap": [
  12888. "/Tests/"
  12889. ]
  12890. },
  12891. "notification-url": "https://packagist.org/downloads/",
  12892. "license": [
  12893. "MIT"
  12894. ],
  12895. "authors": [
  12896. {
  12897. "name": "Nicolas Grekas",
  12898. "email": "p@tchwork.com"
  12899. },
  12900. {
  12901. "name": "Symfony Community",
  12902. "homepage": "https://symfony.com/contributors"
  12903. }
  12904. ],
  12905. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  12906. "homepage": "https://symfony.com",
  12907. "keywords": [
  12908. "clone",
  12909. "construct",
  12910. "export",
  12911. "hydrate",
  12912. "instantiate",
  12913. "lazy-loading",
  12914. "proxy",
  12915. "serialize"
  12916. ],
  12917. "support": {
  12918. "source": "https://github.com/symfony/var-exporter/tree/v6.3.6"
  12919. },
  12920. "funding": [
  12921. {
  12922. "url": "https://symfony.com/sponsor",
  12923. "type": "custom"
  12924. },
  12925. {
  12926. "url": "https://github.com/fabpot",
  12927. "type": "github"
  12928. },
  12929. {
  12930. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12931. "type": "tidelift"
  12932. }
  12933. ],
  12934. "time": "2023-10-13T09:16:49+00:00"
  12935. },
  12936. {
  12937. "name": "symfony/yaml",
  12938. "version": "v6.3.8",
  12939. "source": {
  12940. "type": "git",
  12941. "url": "https://github.com/symfony/yaml.git",
  12942. "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92"
  12943. },
  12944. "dist": {
  12945. "type": "zip",
  12946. "url": "https://api.github.com/repos/symfony/yaml/zipball/3493af8a8dad7fa91c77fa473ba23ecd95334a92",
  12947. "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92",
  12948. "shasum": ""
  12949. },
  12950. "require": {
  12951. "php": ">=8.1",
  12952. "symfony/deprecation-contracts": "^2.5|^3",
  12953. "symfony/polyfill-ctype": "^1.8"
  12954. },
  12955. "conflict": {
  12956. "symfony/console": "<5.4"
  12957. },
  12958. "require-dev": {
  12959. "symfony/console": "^5.4|^6.0"
  12960. },
  12961. "bin": [
  12962. "Resources/bin/yaml-lint"
  12963. ],
  12964. "type": "library",
  12965. "autoload": {
  12966. "psr-4": {
  12967. "Symfony\\Component\\Yaml\\": ""
  12968. },
  12969. "exclude-from-classmap": [
  12970. "/Tests/"
  12971. ]
  12972. },
  12973. "notification-url": "https://packagist.org/downloads/",
  12974. "license": [
  12975. "MIT"
  12976. ],
  12977. "authors": [
  12978. {
  12979. "name": "Fabien Potencier",
  12980. "email": "fabien@symfony.com"
  12981. },
  12982. {
  12983. "name": "Symfony Community",
  12984. "homepage": "https://symfony.com/contributors"
  12985. }
  12986. ],
  12987. "description": "Loads and dumps YAML files",
  12988. "homepage": "https://symfony.com",
  12989. "support": {
  12990. "source": "https://github.com/symfony/yaml/tree/v6.3.8"
  12991. },
  12992. "funding": [
  12993. {
  12994. "url": "https://symfony.com/sponsor",
  12995. "type": "custom"
  12996. },
  12997. {
  12998. "url": "https://github.com/fabpot",
  12999. "type": "github"
  13000. },
  13001. {
  13002. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13003. "type": "tidelift"
  13004. }
  13005. ],
  13006. "time": "2023-11-06T10:58:05+00:00"
  13007. },
  13008. {
  13009. "name": "twig/twig",
  13010. "version": "v3.6.1",
  13011. "source": {
  13012. "type": "git",
  13013. "url": "https://github.com/twigphp/Twig.git",
  13014. "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd"
  13015. },
  13016. "dist": {
  13017. "type": "zip",
  13018. "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd",
  13019. "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd",
  13020. "shasum": ""
  13021. },
  13022. "require": {
  13023. "php": ">=7.2.5",
  13024. "symfony/polyfill-ctype": "^1.8",
  13025. "symfony/polyfill-mbstring": "^1.3"
  13026. },
  13027. "require-dev": {
  13028. "psr/container": "^1.0|^2.0",
  13029. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  13030. },
  13031. "type": "library",
  13032. "autoload": {
  13033. "psr-4": {
  13034. "Twig\\": "src/"
  13035. }
  13036. },
  13037. "notification-url": "https://packagist.org/downloads/",
  13038. "license": [
  13039. "BSD-3-Clause"
  13040. ],
  13041. "authors": [
  13042. {
  13043. "name": "Fabien Potencier",
  13044. "email": "fabien@symfony.com",
  13045. "homepage": "http://fabien.potencier.org",
  13046. "role": "Lead Developer"
  13047. },
  13048. {
  13049. "name": "Twig Team",
  13050. "role": "Contributors"
  13051. },
  13052. {
  13053. "name": "Armin Ronacher",
  13054. "email": "armin.ronacher@active-4.com",
  13055. "role": "Project Founder"
  13056. }
  13057. ],
  13058. "description": "Twig, the flexible, fast, and secure template language for PHP",
  13059. "homepage": "https://twig.symfony.com",
  13060. "keywords": [
  13061. "templating"
  13062. ],
  13063. "support": {
  13064. "issues": "https://github.com/twigphp/Twig/issues",
  13065. "source": "https://github.com/twigphp/Twig/tree/v3.6.1"
  13066. },
  13067. "funding": [
  13068. {
  13069. "url": "https://github.com/fabpot",
  13070. "type": "github"
  13071. },
  13072. {
  13073. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  13074. "type": "tidelift"
  13075. }
  13076. ],
  13077. "time": "2023-06-08T12:52:13+00:00"
  13078. },
  13079. {
  13080. "name": "webflo/drupal-finder",
  13081. "version": "1.2.2",
  13082. "source": {
  13083. "type": "git",
  13084. "url": "https://github.com/webflo/drupal-finder.git",
  13085. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  13086. },
  13087. "dist": {
  13088. "type": "zip",
  13089. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  13090. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  13091. "shasum": ""
  13092. },
  13093. "require": {
  13094. "ext-json": "*"
  13095. },
  13096. "require-dev": {
  13097. "mikey179/vfsstream": "^1.6",
  13098. "phpunit/phpunit": "^4.8"
  13099. },
  13100. "type": "library",
  13101. "autoload": {
  13102. "classmap": [
  13103. "src/DrupalFinder.php"
  13104. ]
  13105. },
  13106. "notification-url": "https://packagist.org/downloads/",
  13107. "license": [
  13108. "GPL-2.0-or-later"
  13109. ],
  13110. "authors": [
  13111. {
  13112. "name": "Florian Weber",
  13113. "email": "florian@webflo.org"
  13114. }
  13115. ],
  13116. "description": "Helper class to locate a Drupal installation from a given path.",
  13117. "support": {
  13118. "issues": "https://github.com/webflo/drupal-finder/issues",
  13119. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  13120. },
  13121. "time": "2020-10-27T09:42:17+00:00"
  13122. },
  13123. {
  13124. "name": "wikimedia/composer-merge-plugin",
  13125. "version": "v2.1.0",
  13126. "source": {
  13127. "type": "git",
  13128. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  13129. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc"
  13130. },
  13131. "dist": {
  13132. "type": "zip",
  13133. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  13134. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  13135. "shasum": ""
  13136. },
  13137. "require": {
  13138. "composer-plugin-api": "^1.1||^2.0",
  13139. "php": ">=7.2.0"
  13140. },
  13141. "require-dev": {
  13142. "composer/composer": "^1.1||^2.0",
  13143. "ext-json": "*",
  13144. "mediawiki/mediawiki-phan-config": "0.11.1",
  13145. "php-parallel-lint/php-parallel-lint": "~1.3.1",
  13146. "phpspec/prophecy": "~1.15.0",
  13147. "phpunit/phpunit": "^8.5||^9.0",
  13148. "squizlabs/php_codesniffer": "~3.7.1"
  13149. },
  13150. "type": "composer-plugin",
  13151. "extra": {
  13152. "branch-alias": {
  13153. "dev-master": "2.x-dev"
  13154. },
  13155. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  13156. },
  13157. "autoload": {
  13158. "psr-4": {
  13159. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  13160. }
  13161. },
  13162. "notification-url": "https://packagist.org/downloads/",
  13163. "license": [
  13164. "MIT"
  13165. ],
  13166. "authors": [
  13167. {
  13168. "name": "Bryan Davis",
  13169. "email": "bd808@wikimedia.org"
  13170. }
  13171. ],
  13172. "description": "Composer plugin to merge multiple composer.json files",
  13173. "support": {
  13174. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  13175. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0"
  13176. },
  13177. "time": "2023-04-15T19:07:00+00:00"
  13178. }
  13179. ],
  13180. "packages-dev": [],
  13181. "aliases": [],
  13182. "minimum-stability": "stable",
  13183. "stability-flags": {
  13184. "drupal/conditional_fields": 15,
  13185. "drupal/login_destination": 20,
  13186. "drupal/mimemail": 15,
  13187. "drupal/notify": 10,
  13188. "drupal/page_manager": 5,
  13189. "drupal/phone_number": 15,
  13190. "drupal/rules": 15,
  13191. "drupal/typed_data": 10,
  13192. "drupal/advanced_text_formatter": 5,
  13193. "drupal/bulkdelete": 20,
  13194. "drupal/config_ignore": 5,
  13195. "drupal/config_devel": 20,
  13196. "drupal/config_update": 15,
  13197. "drupal/context": 5,
  13198. "drupal/date_range_formatter": 20,
  13199. "drupal/email_registration": 5,
  13200. "drupal/entity_clone": 20,
  13201. "drupal/field_group": 20,
  13202. "drupal/filter_perms": 20,
  13203. "drupal/inline_entity_form": 5,
  13204. "drupal/linkit": 10,
  13205. "drupal/maillog": 20,
  13206. "drupal/maxlength": 10,
  13207. "drupal/menu_block": 20,
  13208. "drupal/menu_position": 20,
  13209. "drupal/path_alias_xt": 20,
  13210. "drupal/pathologic": 15,
  13211. "drupal/profile": 5,
  13212. "drupal/smtp": 10,
  13213. "drupal/synonyms": 10,
  13214. "drupal/translation_views": 15,
  13215. "drupal/ultimate_cron": 15
  13216. },
  13217. "prefer-stable": true,
  13218. "prefer-lowest": false,
  13219. "platform": [],
  13220. "platform-dev": [],
  13221. "plugin-api-version": "2.6.0"
  13222. }