composer.lock 462 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346123471234812349123501235112352123531235412355123561235712358123591236012361123621236312364123651236612367123681236912370123711237212373123741237512376123771237812379123801238112382123831238412385123861238712388123891239012391123921239312394123951239612397123981239912400124011240212403124041240512406124071240812409124101241112412124131241412415124161241712418124191242012421124221242312424124251242612427124281242912430124311243212433124341243512436124371243812439124401244112442124431244412445124461244712448124491245012451124521245312454124551245612457124581245912460124611246212463124641246512466124671246812469124701247112472124731247412475124761247712478124791248012481124821248312484124851248612487124881248912490124911249212493124941249512496124971249812499125001250112502125031250412505125061250712508125091251012511125121251312514125151251612517125181251912520125211252212523125241252512526125271252812529125301253112532125331253412535125361253712538125391254012541125421254312544125451254612547125481254912550125511255212553125541255512556125571255812559125601256112562125631256412565125661256712568125691257012571125721257312574125751257612577125781257912580125811258212583125841258512586125871258812589125901259112592125931259412595125961259712598125991260012601126021260312604126051260612607126081260912610126111261212613126141261512616126171261812619
  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": "ae52207c0580112eec7a01ad7b214aeb",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  20. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.2|^8.0",
  25. "symfony/http-foundation": "^4|^5|^6",
  26. "symfony/http-kernel": "^4|^5|^6"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^7|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.1-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  62. },
  63. "time": "2022-01-18T09:12:03+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "2.6.2",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "22ed1cc02dc47814e8239de577da541e9b9bd980"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/22ed1cc02dc47814e8239de577da541e9b9bd980",
  76. "reference": "22ed1cc02dc47814e8239de577da541e9b9bd980",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=7.4",
  82. "psr/log": "^1.1 || ^2.0 || ^3.0",
  83. "symfony/console": "^4.4.15 || ^5.1 || ^6.0",
  84. "symfony/filesystem": "^4.4 || ^5.1 || ^6",
  85. "symfony/polyfill-php80": "^1.23",
  86. "symfony/string": "^5.1 || ^6",
  87. "twig/twig": "^2.14.11 || ^3.1"
  88. },
  89. "conflict": {
  90. "squizlabs/php_codesniffer": "<3.6"
  91. },
  92. "require-dev": {
  93. "chi-teck/drupal-coder-extension": "^1.2",
  94. "drupal/coder": "^8.3.14",
  95. "phpspec/prophecy-phpunit": "^2.0",
  96. "phpunit/phpunit": "^9.4",
  97. "squizlabs/php_codesniffer": "^3.5",
  98. "symfony/var-dumper": "^5.2 || ^6.0",
  99. "symfony/yaml": "^5.2 || ^6.0"
  100. },
  101. "bin": [
  102. "bin/dcg"
  103. ],
  104. "type": "library",
  105. "extra": {
  106. "branch-alias": {
  107. "dev-master": "2.x-dev"
  108. }
  109. },
  110. "autoload": {
  111. "psr-4": {
  112. "DrupalCodeGenerator\\": "src"
  113. }
  114. },
  115. "notification-url": "https://packagist.org/downloads/",
  116. "license": [
  117. "GPL-2.0-or-later"
  118. ],
  119. "description": "Drupal code generator",
  120. "support": {
  121. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  122. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/2.6.2"
  123. },
  124. "time": "2022-11-11T15:34:04+00:00"
  125. },
  126. {
  127. "name": "commerceguys/addressing",
  128. "version": "v1.4.2",
  129. "source": {
  130. "type": "git",
  131. "url": "https://github.com/commerceguys/addressing.git",
  132. "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308"
  133. },
  134. "dist": {
  135. "type": "zip",
  136. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
  137. "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
  138. "shasum": ""
  139. },
  140. "require": {
  141. "doctrine/collections": "^1.2 || ^2.0",
  142. "php": ">=7.3"
  143. },
  144. "require-dev": {
  145. "ext-json": "*",
  146. "mikey179/vfsstream": "^1.6.10",
  147. "phpunit/phpunit": "^9.5",
  148. "squizlabs/php_codesniffer": "^3.6",
  149. "symfony/validator": "^4.4 || ^5.4 || ^6.0"
  150. },
  151. "suggest": {
  152. "symfony/validator": "to validate addresses"
  153. },
  154. "type": "library",
  155. "extra": {
  156. "branch-alias": {
  157. "dev-master": "1.x-dev"
  158. }
  159. },
  160. "autoload": {
  161. "psr-4": {
  162. "CommerceGuys\\Addressing\\": "src"
  163. }
  164. },
  165. "notification-url": "https://packagist.org/downloads/",
  166. "license": [
  167. "MIT"
  168. ],
  169. "authors": [
  170. {
  171. "name": "Bojan Zivanovic"
  172. },
  173. {
  174. "name": "Damien Tournoud"
  175. }
  176. ],
  177. "description": "Addressing library powered by CLDR and Google's address data.",
  178. "keywords": [
  179. "address",
  180. "internationalization",
  181. "localization",
  182. "postal"
  183. ],
  184. "support": {
  185. "issues": "https://github.com/commerceguys/addressing/issues",
  186. "source": "https://github.com/commerceguys/addressing/tree/v1.4.2"
  187. },
  188. "time": "2023-02-15T10:11:14+00:00"
  189. },
  190. {
  191. "name": "components/highlightjs",
  192. "version": "9.7.0",
  193. "dist": {
  194. "type": "zip",
  195. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip"
  196. },
  197. "type": "drupal-library"
  198. },
  199. {
  200. "name": "composer/installers",
  201. "version": "v2.2.0",
  202. "source": {
  203. "type": "git",
  204. "url": "https://github.com/composer/installers.git",
  205. "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35"
  206. },
  207. "dist": {
  208. "type": "zip",
  209. "url": "https://api.github.com/repos/composer/installers/zipball/c29dc4b93137acb82734f672c37e029dfbd95b35",
  210. "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35",
  211. "shasum": ""
  212. },
  213. "require": {
  214. "composer-plugin-api": "^1.0 || ^2.0",
  215. "php": "^7.2 || ^8.0"
  216. },
  217. "require-dev": {
  218. "composer/composer": "1.6.* || ^2.0",
  219. "composer/semver": "^1 || ^3",
  220. "phpstan/phpstan": "^0.12.55",
  221. "phpstan/phpstan-phpunit": "^0.12.16",
  222. "symfony/phpunit-bridge": "^5.3",
  223. "symfony/process": "^5"
  224. },
  225. "type": "composer-plugin",
  226. "extra": {
  227. "class": "Composer\\Installers\\Plugin",
  228. "branch-alias": {
  229. "dev-main": "2.x-dev"
  230. },
  231. "plugin-modifies-install-path": true
  232. },
  233. "autoload": {
  234. "psr-4": {
  235. "Composer\\Installers\\": "src/Composer/Installers"
  236. }
  237. },
  238. "notification-url": "https://packagist.org/downloads/",
  239. "license": [
  240. "MIT"
  241. ],
  242. "authors": [
  243. {
  244. "name": "Kyle Robinson Young",
  245. "email": "kyle@dontkry.com",
  246. "homepage": "https://github.com/shama"
  247. }
  248. ],
  249. "description": "A multi-framework Composer library installer",
  250. "homepage": "https://composer.github.io/installers/",
  251. "keywords": [
  252. "Dolibarr",
  253. "Eliasis",
  254. "Hurad",
  255. "ImageCMS",
  256. "Kanboard",
  257. "Lan Management System",
  258. "MODX Evo",
  259. "MantisBT",
  260. "Mautic",
  261. "Maya",
  262. "OXID",
  263. "Plentymarkets",
  264. "Porto",
  265. "RadPHP",
  266. "SMF",
  267. "Starbug",
  268. "Thelia",
  269. "Whmcs",
  270. "WolfCMS",
  271. "agl",
  272. "annotatecms",
  273. "attogram",
  274. "bitrix",
  275. "cakephp",
  276. "chef",
  277. "cockpit",
  278. "codeigniter",
  279. "concrete5",
  280. "croogo",
  281. "dokuwiki",
  282. "drupal",
  283. "eZ Platform",
  284. "elgg",
  285. "expressionengine",
  286. "fuelphp",
  287. "grav",
  288. "installer",
  289. "itop",
  290. "known",
  291. "kohana",
  292. "laravel",
  293. "lavalite",
  294. "lithium",
  295. "magento",
  296. "majima",
  297. "mako",
  298. "matomo",
  299. "mediawiki",
  300. "miaoxing",
  301. "modulework",
  302. "modx",
  303. "moodle",
  304. "osclass",
  305. "pantheon",
  306. "phpbb",
  307. "piwik",
  308. "ppi",
  309. "processwire",
  310. "puppet",
  311. "pxcms",
  312. "reindex",
  313. "roundcube",
  314. "shopware",
  315. "silverstripe",
  316. "sydes",
  317. "sylius",
  318. "tastyigniter",
  319. "wordpress",
  320. "yawik",
  321. "zend",
  322. "zikula"
  323. ],
  324. "support": {
  325. "issues": "https://github.com/composer/installers/issues",
  326. "source": "https://github.com/composer/installers/tree/v2.2.0"
  327. },
  328. "funding": [
  329. {
  330. "url": "https://packagist.com",
  331. "type": "custom"
  332. },
  333. {
  334. "url": "https://github.com/composer",
  335. "type": "github"
  336. },
  337. {
  338. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  339. "type": "tidelift"
  340. }
  341. ],
  342. "time": "2022-08-20T06:45:11+00:00"
  343. },
  344. {
  345. "name": "composer/semver",
  346. "version": "3.3.2",
  347. "source": {
  348. "type": "git",
  349. "url": "https://github.com/composer/semver.git",
  350. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  351. },
  352. "dist": {
  353. "type": "zip",
  354. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  355. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  356. "shasum": ""
  357. },
  358. "require": {
  359. "php": "^5.3.2 || ^7.0 || ^8.0"
  360. },
  361. "require-dev": {
  362. "phpstan/phpstan": "^1.4",
  363. "symfony/phpunit-bridge": "^4.2 || ^5"
  364. },
  365. "type": "library",
  366. "extra": {
  367. "branch-alias": {
  368. "dev-main": "3.x-dev"
  369. }
  370. },
  371. "autoload": {
  372. "psr-4": {
  373. "Composer\\Semver\\": "src"
  374. }
  375. },
  376. "notification-url": "https://packagist.org/downloads/",
  377. "license": [
  378. "MIT"
  379. ],
  380. "authors": [
  381. {
  382. "name": "Nils Adermann",
  383. "email": "naderman@naderman.de",
  384. "homepage": "http://www.naderman.de"
  385. },
  386. {
  387. "name": "Jordi Boggiano",
  388. "email": "j.boggiano@seld.be",
  389. "homepage": "http://seld.be"
  390. },
  391. {
  392. "name": "Rob Bast",
  393. "email": "rob.bast@gmail.com",
  394. "homepage": "http://robbast.nl"
  395. }
  396. ],
  397. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  398. "keywords": [
  399. "semantic",
  400. "semver",
  401. "validation",
  402. "versioning"
  403. ],
  404. "support": {
  405. "irc": "irc://irc.freenode.org/composer",
  406. "issues": "https://github.com/composer/semver/issues",
  407. "source": "https://github.com/composer/semver/tree/3.3.2"
  408. },
  409. "funding": [
  410. {
  411. "url": "https://packagist.com",
  412. "type": "custom"
  413. },
  414. {
  415. "url": "https://github.com/composer",
  416. "type": "github"
  417. },
  418. {
  419. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  420. "type": "tidelift"
  421. }
  422. ],
  423. "time": "2022-04-01T19:23:25+00:00"
  424. },
  425. {
  426. "name": "consolidation/annotated-command",
  427. "version": "4.9.1",
  428. "source": {
  429. "type": "git",
  430. "url": "https://github.com/consolidation/annotated-command.git",
  431. "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9"
  432. },
  433. "dist": {
  434. "type": "zip",
  435. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/e01152f698eff4cb5df3ebfe5e097ef335dbd3c9",
  436. "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9",
  437. "shasum": ""
  438. },
  439. "require": {
  440. "consolidation/output-formatters": "^4.3.1",
  441. "php": ">=7.1.3",
  442. "psr/log": "^1 || ^2 || ^3",
  443. "symfony/console": "^4.4.8 || ^5 || ^6",
  444. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6",
  445. "symfony/finder": "^4.4.8 || ^5 || ^6"
  446. },
  447. "require-dev": {
  448. "composer-runtime-api": "^2.0",
  449. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  450. "squizlabs/php_codesniffer": "^3",
  451. "yoast/phpunit-polyfills": "^0.2.0"
  452. },
  453. "type": "library",
  454. "extra": {
  455. "branch-alias": {
  456. "dev-main": "4.x-dev"
  457. }
  458. },
  459. "autoload": {
  460. "psr-4": {
  461. "Consolidation\\AnnotatedCommand\\": "src"
  462. }
  463. },
  464. "notification-url": "https://packagist.org/downloads/",
  465. "license": [
  466. "MIT"
  467. ],
  468. "authors": [
  469. {
  470. "name": "Greg Anderson",
  471. "email": "greg.1.anderson@greenknowe.org"
  472. }
  473. ],
  474. "description": "Initialize Symfony Console commands from annotated command class methods.",
  475. "support": {
  476. "issues": "https://github.com/consolidation/annotated-command/issues",
  477. "source": "https://github.com/consolidation/annotated-command/tree/4.9.1"
  478. },
  479. "time": "2023-05-20T04:19:01+00:00"
  480. },
  481. {
  482. "name": "consolidation/config",
  483. "version": "2.1.2",
  484. "source": {
  485. "type": "git",
  486. "url": "https://github.com/consolidation/config.git",
  487. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae"
  488. },
  489. "dist": {
  490. "type": "zip",
  491. "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae",
  492. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae",
  493. "shasum": ""
  494. },
  495. "require": {
  496. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  497. "grasmash/expander": "^2.0.1 || ^3",
  498. "php": ">=7.1.3",
  499. "symfony/event-dispatcher": "^4 || ^5 || ^6"
  500. },
  501. "require-dev": {
  502. "ext-json": "*",
  503. "phpunit/phpunit": ">=7.5.20",
  504. "squizlabs/php_codesniffer": "^3",
  505. "symfony/console": "^4 || ^5 || ^6",
  506. "symfony/yaml": "^4 || ^5 || ^6",
  507. "yoast/phpunit-polyfills": "^1"
  508. },
  509. "suggest": {
  510. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  511. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  512. },
  513. "type": "library",
  514. "extra": {
  515. "branch-alias": {
  516. "dev-main": "2.x-dev"
  517. }
  518. },
  519. "autoload": {
  520. "psr-4": {
  521. "Consolidation\\Config\\": "src"
  522. }
  523. },
  524. "notification-url": "https://packagist.org/downloads/",
  525. "license": [
  526. "MIT"
  527. ],
  528. "authors": [
  529. {
  530. "name": "Greg Anderson",
  531. "email": "greg.1.anderson@greenknowe.org"
  532. }
  533. ],
  534. "description": "Provide configuration services for a commandline tool.",
  535. "support": {
  536. "issues": "https://github.com/consolidation/config/issues",
  537. "source": "https://github.com/consolidation/config/tree/2.1.2"
  538. },
  539. "time": "2022-10-06T17:48:03+00:00"
  540. },
  541. {
  542. "name": "consolidation/filter-via-dot-access-data",
  543. "version": "2.0.2",
  544. "source": {
  545. "type": "git",
  546. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  547. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b"
  548. },
  549. "dist": {
  550. "type": "zip",
  551. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  552. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  553. "shasum": ""
  554. },
  555. "require": {
  556. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  557. "php": ">=7.1.3"
  558. },
  559. "require-dev": {
  560. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  561. "squizlabs/php_codesniffer": "^3",
  562. "yoast/phpunit-polyfills": "^0.2.0"
  563. },
  564. "type": "library",
  565. "extra": {
  566. "branch-alias": {
  567. "dev-main": "2.x-dev"
  568. }
  569. },
  570. "autoload": {
  571. "psr-4": {
  572. "Consolidation\\Filter\\": "src"
  573. }
  574. },
  575. "notification-url": "https://packagist.org/downloads/",
  576. "license": [
  577. "MIT"
  578. ],
  579. "authors": [
  580. {
  581. "name": "Greg Anderson",
  582. "email": "greg.1.anderson@greenknowe.org"
  583. }
  584. ],
  585. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  586. "support": {
  587. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2"
  588. },
  589. "time": "2021-12-30T03:56:08+00:00"
  590. },
  591. {
  592. "name": "consolidation/log",
  593. "version": "3.0.0",
  594. "source": {
  595. "type": "git",
  596. "url": "https://github.com/consolidation/log.git",
  597. "reference": "caaad9d70dae54eb49002666f000e3c607066878"
  598. },
  599. "dist": {
  600. "type": "zip",
  601. "url": "https://api.github.com/repos/consolidation/log/zipball/caaad9d70dae54eb49002666f000e3c607066878",
  602. "reference": "caaad9d70dae54eb49002666f000e3c607066878",
  603. "shasum": ""
  604. },
  605. "require": {
  606. "php": ">=8.0.0",
  607. "psr/log": "^3",
  608. "symfony/console": "^5 || ^6"
  609. },
  610. "require-dev": {
  611. "phpunit/phpunit": ">=7.5.20",
  612. "squizlabs/php_codesniffer": "^3",
  613. "yoast/phpunit-polyfills": "^0.2.0"
  614. },
  615. "type": "library",
  616. "extra": {
  617. "branch-alias": {
  618. "dev-main": "2.x-dev"
  619. }
  620. },
  621. "autoload": {
  622. "psr-4": {
  623. "Consolidation\\Log\\": "src"
  624. }
  625. },
  626. "notification-url": "https://packagist.org/downloads/",
  627. "license": [
  628. "MIT"
  629. ],
  630. "authors": [
  631. {
  632. "name": "Greg Anderson",
  633. "email": "greg.1.anderson@greenknowe.org"
  634. }
  635. ],
  636. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  637. "support": {
  638. "issues": "https://github.com/consolidation/log/issues",
  639. "source": "https://github.com/consolidation/log/tree/3.0.0"
  640. },
  641. "time": "2022-04-05T16:53:32+00:00"
  642. },
  643. {
  644. "name": "consolidation/output-formatters",
  645. "version": "4.3.2",
  646. "source": {
  647. "type": "git",
  648. "url": "https://github.com/consolidation/output-formatters.git",
  649. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58"
  650. },
  651. "dist": {
  652. "type": "zip",
  653. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/06711568b4cd169700ff7e8075db0a9a341ceb58",
  654. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58",
  655. "shasum": ""
  656. },
  657. "require": {
  658. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  659. "php": ">=7.1.3",
  660. "symfony/console": "^4 || ^5 || ^6",
  661. "symfony/finder": "^4 || ^5 || ^6"
  662. },
  663. "require-dev": {
  664. "php-coveralls/php-coveralls": "^2.4.2",
  665. "phpunit/phpunit": "^7 || ^8 || ^9",
  666. "squizlabs/php_codesniffer": "^3",
  667. "symfony/var-dumper": "^4 || ^5 || ^6",
  668. "symfony/yaml": "^4 || ^5 || ^6",
  669. "yoast/phpunit-polyfills": "^1"
  670. },
  671. "suggest": {
  672. "symfony/var-dumper": "For using the var_dump formatter"
  673. },
  674. "type": "library",
  675. "autoload": {
  676. "psr-4": {
  677. "Consolidation\\OutputFormatters\\": "src"
  678. }
  679. },
  680. "notification-url": "https://packagist.org/downloads/",
  681. "license": [
  682. "MIT"
  683. ],
  684. "authors": [
  685. {
  686. "name": "Greg Anderson",
  687. "email": "greg.1.anderson@greenknowe.org"
  688. }
  689. ],
  690. "description": "Format text by applying transformations provided by plug-in formatters.",
  691. "support": {
  692. "issues": "https://github.com/consolidation/output-formatters/issues",
  693. "source": "https://github.com/consolidation/output-formatters/tree/4.3.2"
  694. },
  695. "time": "2023-07-06T04:45:41+00:00"
  696. },
  697. {
  698. "name": "consolidation/robo",
  699. "version": "4.0.6",
  700. "source": {
  701. "type": "git",
  702. "url": "https://github.com/consolidation/robo.git",
  703. "reference": "55a272370940607649e5c46eb173c5c54f7c166d"
  704. },
  705. "dist": {
  706. "type": "zip",
  707. "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d",
  708. "reference": "55a272370940607649e5c46eb173c5c54f7c166d",
  709. "shasum": ""
  710. },
  711. "require": {
  712. "consolidation/annotated-command": "^4.8.1",
  713. "consolidation/config": "^2.0.1",
  714. "consolidation/log": "^2.0.2 || ^3",
  715. "consolidation/output-formatters": "^4.1.2",
  716. "consolidation/self-update": "^2.0",
  717. "league/container": "^3.3.1 || ^4.0",
  718. "php": ">=8.0",
  719. "phpowermove/docblock": "^4.0",
  720. "symfony/console": "^6",
  721. "symfony/event-dispatcher": "^6",
  722. "symfony/filesystem": "^6",
  723. "symfony/finder": "^6",
  724. "symfony/process": "^6",
  725. "symfony/yaml": "^6"
  726. },
  727. "conflict": {
  728. "codegyre/robo": "*"
  729. },
  730. "require-dev": {
  731. "natxet/cssmin": "3.0.4",
  732. "patchwork/jsqueeze": "^2",
  733. "pear/archive_tar": "^1.4.4",
  734. "phpunit/phpunit": "^7.5.20 || ^8",
  735. "squizlabs/php_codesniffer": "^3.6",
  736. "yoast/phpunit-polyfills": "^0.2.0"
  737. },
  738. "suggest": {
  739. "natxet/cssmin": "For minifying CSS files in taskMinify",
  740. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  741. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  742. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  743. },
  744. "bin": [
  745. "robo"
  746. ],
  747. "type": "library",
  748. "autoload": {
  749. "psr-4": {
  750. "Robo\\": "src"
  751. }
  752. },
  753. "notification-url": "https://packagist.org/downloads/",
  754. "license": [
  755. "MIT"
  756. ],
  757. "authors": [
  758. {
  759. "name": "Davert",
  760. "email": "davert.php@resend.cc"
  761. }
  762. ],
  763. "description": "Modern task runner",
  764. "support": {
  765. "issues": "https://github.com/consolidation/robo/issues",
  766. "source": "https://github.com/consolidation/robo/tree/4.0.6"
  767. },
  768. "time": "2023-04-30T21:49:04+00:00"
  769. },
  770. {
  771. "name": "consolidation/self-update",
  772. "version": "2.2.0",
  773. "source": {
  774. "type": "git",
  775. "url": "https://github.com/consolidation/self-update.git",
  776. "reference": "972a1016761c9b63314e040836a12795dff6953a"
  777. },
  778. "dist": {
  779. "type": "zip",
  780. "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a",
  781. "reference": "972a1016761c9b63314e040836a12795dff6953a",
  782. "shasum": ""
  783. },
  784. "require": {
  785. "composer/semver": "^3.2",
  786. "php": ">=5.5.0",
  787. "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
  788. "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6"
  789. },
  790. "bin": [
  791. "scripts/release"
  792. ],
  793. "type": "library",
  794. "extra": {
  795. "branch-alias": {
  796. "dev-main": "2.x-dev"
  797. }
  798. },
  799. "autoload": {
  800. "psr-4": {
  801. "SelfUpdate\\": "src"
  802. }
  803. },
  804. "notification-url": "https://packagist.org/downloads/",
  805. "license": [
  806. "MIT"
  807. ],
  808. "authors": [
  809. {
  810. "name": "Alexander Menk",
  811. "email": "menk@mestrona.net"
  812. },
  813. {
  814. "name": "Greg Anderson",
  815. "email": "greg.1.anderson@greenknowe.org"
  816. }
  817. ],
  818. "description": "Provides a self:update command for Symfony Console applications.",
  819. "support": {
  820. "issues": "https://github.com/consolidation/self-update/issues",
  821. "source": "https://github.com/consolidation/self-update/tree/2.2.0"
  822. },
  823. "time": "2023-03-18T01:37:41+00:00"
  824. },
  825. {
  826. "name": "consolidation/site-alias",
  827. "version": "4.0.1",
  828. "source": {
  829. "type": "git",
  830. "url": "https://github.com/consolidation/site-alias.git",
  831. "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5"
  832. },
  833. "dist": {
  834. "type": "zip",
  835. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
  836. "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
  837. "shasum": ""
  838. },
  839. "require": {
  840. "consolidation/config": "^1.2.1 || ^2",
  841. "php": ">=7.4",
  842. "symfony/filesystem": "^5.4 || ^6",
  843. "symfony/finder": "^5 || ^6"
  844. },
  845. "require-dev": {
  846. "php-coveralls/php-coveralls": "^2.4.2",
  847. "phpunit/phpunit": ">=7",
  848. "squizlabs/php_codesniffer": "^3",
  849. "symfony/var-dumper": "^4",
  850. "yoast/phpunit-polyfills": "^0.2.0"
  851. },
  852. "type": "library",
  853. "extra": {
  854. "branch-alias": {
  855. "dev-main": "4.x-dev"
  856. }
  857. },
  858. "autoload": {
  859. "psr-4": {
  860. "Consolidation\\SiteAlias\\": "src"
  861. }
  862. },
  863. "notification-url": "https://packagist.org/downloads/",
  864. "license": [
  865. "MIT"
  866. ],
  867. "authors": [
  868. {
  869. "name": "Greg Anderson",
  870. "email": "greg.1.anderson@greenknowe.org"
  871. },
  872. {
  873. "name": "Moshe Weitzman",
  874. "email": "weitzman@tejasa.com"
  875. }
  876. ],
  877. "description": "Manage alias records for local and remote sites.",
  878. "support": {
  879. "issues": "https://github.com/consolidation/site-alias/issues",
  880. "source": "https://github.com/consolidation/site-alias/tree/4.0.1"
  881. },
  882. "time": "2023-04-29T17:18:10+00:00"
  883. },
  884. {
  885. "name": "consolidation/site-process",
  886. "version": "5.2.0",
  887. "source": {
  888. "type": "git",
  889. "url": "https://github.com/consolidation/site-process.git",
  890. "reference": "6c44638d7af8a8b4abe12c3180701243f480539d"
  891. },
  892. "dist": {
  893. "type": "zip",
  894. "url": "https://api.github.com/repos/consolidation/site-process/zipball/6c44638d7af8a8b4abe12c3180701243f480539d",
  895. "reference": "6c44638d7af8a8b4abe12c3180701243f480539d",
  896. "shasum": ""
  897. },
  898. "require": {
  899. "consolidation/config": "^2",
  900. "consolidation/site-alias": "^3 || ^4",
  901. "php": ">=8.0.14",
  902. "symfony/console": "^5.4 || ^6",
  903. "symfony/process": "^6"
  904. },
  905. "require-dev": {
  906. "phpunit/phpunit": "^9",
  907. "squizlabs/php_codesniffer": "^3"
  908. },
  909. "type": "library",
  910. "extra": {
  911. "branch-alias": {
  912. "dev-main": "5.x-dev"
  913. }
  914. },
  915. "autoload": {
  916. "psr-4": {
  917. "Consolidation\\SiteProcess\\": "src"
  918. }
  919. },
  920. "notification-url": "https://packagist.org/downloads/",
  921. "license": [
  922. "MIT"
  923. ],
  924. "authors": [
  925. {
  926. "name": "Greg Anderson",
  927. "email": "greg.1.anderson@greenknowe.org"
  928. },
  929. {
  930. "name": "Moshe Weitzman",
  931. "email": "weitzman@tejasa.com"
  932. }
  933. ],
  934. "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.",
  935. "support": {
  936. "issues": "https://github.com/consolidation/site-process/issues",
  937. "source": "https://github.com/consolidation/site-process/tree/5.2.0"
  938. },
  939. "time": "2022-12-06T17:57:16+00:00"
  940. },
  941. {
  942. "name": "cweagans/composer-patches",
  943. "version": "1.7.3",
  944. "source": {
  945. "type": "git",
  946. "url": "https://github.com/cweagans/composer-patches.git",
  947. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  948. },
  949. "dist": {
  950. "type": "zip",
  951. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  952. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  953. "shasum": ""
  954. },
  955. "require": {
  956. "composer-plugin-api": "^1.0 || ^2.0",
  957. "php": ">=5.3.0"
  958. },
  959. "require-dev": {
  960. "composer/composer": "~1.0 || ~2.0",
  961. "phpunit/phpunit": "~4.6"
  962. },
  963. "type": "composer-plugin",
  964. "extra": {
  965. "class": "cweagans\\Composer\\Patches"
  966. },
  967. "autoload": {
  968. "psr-4": {
  969. "cweagans\\Composer\\": "src"
  970. }
  971. },
  972. "notification-url": "https://packagist.org/downloads/",
  973. "license": [
  974. "BSD-3-Clause"
  975. ],
  976. "authors": [
  977. {
  978. "name": "Cameron Eagans",
  979. "email": "me@cweagans.net"
  980. }
  981. ],
  982. "description": "Provides a way to patch Composer packages.",
  983. "support": {
  984. "issues": "https://github.com/cweagans/composer-patches/issues",
  985. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  986. },
  987. "time": "2022-12-20T22:53:13+00:00"
  988. },
  989. {
  990. "name": "d3/d3",
  991. "version": "v3.5.17",
  992. "dist": {
  993. "type": "zip",
  994. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  995. },
  996. "type": "drupal-library"
  997. },
  998. {
  999. "name": "dflydev/dot-access-data",
  1000. "version": "v3.0.2",
  1001. "source": {
  1002. "type": "git",
  1003. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1004. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  1005. },
  1006. "dist": {
  1007. "type": "zip",
  1008. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  1009. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  1010. "shasum": ""
  1011. },
  1012. "require": {
  1013. "php": "^7.1 || ^8.0"
  1014. },
  1015. "require-dev": {
  1016. "phpstan/phpstan": "^0.12.42",
  1017. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1018. "scrutinizer/ocular": "1.6.0",
  1019. "squizlabs/php_codesniffer": "^3.5",
  1020. "vimeo/psalm": "^4.0.0"
  1021. },
  1022. "type": "library",
  1023. "extra": {
  1024. "branch-alias": {
  1025. "dev-main": "3.x-dev"
  1026. }
  1027. },
  1028. "autoload": {
  1029. "psr-4": {
  1030. "Dflydev\\DotAccessData\\": "src/"
  1031. }
  1032. },
  1033. "notification-url": "https://packagist.org/downloads/",
  1034. "license": [
  1035. "MIT"
  1036. ],
  1037. "authors": [
  1038. {
  1039. "name": "Dragonfly Development Inc.",
  1040. "email": "info@dflydev.com",
  1041. "homepage": "http://dflydev.com"
  1042. },
  1043. {
  1044. "name": "Beau Simensen",
  1045. "email": "beau@dflydev.com",
  1046. "homepage": "http://beausimensen.com"
  1047. },
  1048. {
  1049. "name": "Carlos Frutos",
  1050. "email": "carlos@kiwing.it",
  1051. "homepage": "https://github.com/cfrutos"
  1052. },
  1053. {
  1054. "name": "Colin O'Dell",
  1055. "email": "colinodell@gmail.com",
  1056. "homepage": "https://www.colinodell.com"
  1057. }
  1058. ],
  1059. "description": "Given a deep data structure, access data by dot notation.",
  1060. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1061. "keywords": [
  1062. "access",
  1063. "data",
  1064. "dot",
  1065. "notation"
  1066. ],
  1067. "support": {
  1068. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1069. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  1070. },
  1071. "time": "2022-10-27T11:44:00+00:00"
  1072. },
  1073. {
  1074. "name": "doctrine/annotations",
  1075. "version": "1.14.3",
  1076. "source": {
  1077. "type": "git",
  1078. "url": "https://github.com/doctrine/annotations.git",
  1079. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af"
  1080. },
  1081. "dist": {
  1082. "type": "zip",
  1083. "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1084. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1085. "shasum": ""
  1086. },
  1087. "require": {
  1088. "doctrine/lexer": "^1 || ^2",
  1089. "ext-tokenizer": "*",
  1090. "php": "^7.1 || ^8.0",
  1091. "psr/cache": "^1 || ^2 || ^3"
  1092. },
  1093. "require-dev": {
  1094. "doctrine/cache": "^1.11 || ^2.0",
  1095. "doctrine/coding-standard": "^9 || ^10",
  1096. "phpstan/phpstan": "~1.4.10 || ^1.8.0",
  1097. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1098. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1099. "vimeo/psalm": "^4.10"
  1100. },
  1101. "suggest": {
  1102. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  1103. },
  1104. "type": "library",
  1105. "autoload": {
  1106. "psr-4": {
  1107. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1108. }
  1109. },
  1110. "notification-url": "https://packagist.org/downloads/",
  1111. "license": [
  1112. "MIT"
  1113. ],
  1114. "authors": [
  1115. {
  1116. "name": "Guilherme Blanco",
  1117. "email": "guilhermeblanco@gmail.com"
  1118. },
  1119. {
  1120. "name": "Roman Borschel",
  1121. "email": "roman@code-factory.org"
  1122. },
  1123. {
  1124. "name": "Benjamin Eberlei",
  1125. "email": "kontakt@beberlei.de"
  1126. },
  1127. {
  1128. "name": "Jonathan Wage",
  1129. "email": "jonwage@gmail.com"
  1130. },
  1131. {
  1132. "name": "Johannes Schmitt",
  1133. "email": "schmittjoh@gmail.com"
  1134. }
  1135. ],
  1136. "description": "Docblock Annotations Parser",
  1137. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1138. "keywords": [
  1139. "annotations",
  1140. "docblock",
  1141. "parser"
  1142. ],
  1143. "support": {
  1144. "issues": "https://github.com/doctrine/annotations/issues",
  1145. "source": "https://github.com/doctrine/annotations/tree/1.14.3"
  1146. },
  1147. "time": "2023-02-01T09:20:38+00:00"
  1148. },
  1149. {
  1150. "name": "doctrine/collections",
  1151. "version": "2.1.4",
  1152. "source": {
  1153. "type": "git",
  1154. "url": "https://github.com/doctrine/collections.git",
  1155. "reference": "72328a11443a0de79967104ad36ba7b30bded134"
  1156. },
  1157. "dist": {
  1158. "type": "zip",
  1159. "url": "https://api.github.com/repos/doctrine/collections/zipball/72328a11443a0de79967104ad36ba7b30bded134",
  1160. "reference": "72328a11443a0de79967104ad36ba7b30bded134",
  1161. "shasum": ""
  1162. },
  1163. "require": {
  1164. "doctrine/deprecations": "^1",
  1165. "php": "^8.1"
  1166. },
  1167. "require-dev": {
  1168. "doctrine/coding-standard": "^12",
  1169. "ext-json": "*",
  1170. "phpstan/phpstan": "^1.8",
  1171. "phpstan/phpstan-phpunit": "^1.0",
  1172. "phpunit/phpunit": "^9.5",
  1173. "vimeo/psalm": "^5.11"
  1174. },
  1175. "type": "library",
  1176. "autoload": {
  1177. "psr-4": {
  1178. "Doctrine\\Common\\Collections\\": "src"
  1179. }
  1180. },
  1181. "notification-url": "https://packagist.org/downloads/",
  1182. "license": [
  1183. "MIT"
  1184. ],
  1185. "authors": [
  1186. {
  1187. "name": "Guilherme Blanco",
  1188. "email": "guilhermeblanco@gmail.com"
  1189. },
  1190. {
  1191. "name": "Roman Borschel",
  1192. "email": "roman@code-factory.org"
  1193. },
  1194. {
  1195. "name": "Benjamin Eberlei",
  1196. "email": "kontakt@beberlei.de"
  1197. },
  1198. {
  1199. "name": "Jonathan Wage",
  1200. "email": "jonwage@gmail.com"
  1201. },
  1202. {
  1203. "name": "Johannes Schmitt",
  1204. "email": "schmittjoh@gmail.com"
  1205. }
  1206. ],
  1207. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1208. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1209. "keywords": [
  1210. "array",
  1211. "collections",
  1212. "iterators",
  1213. "php"
  1214. ],
  1215. "support": {
  1216. "issues": "https://github.com/doctrine/collections/issues",
  1217. "source": "https://github.com/doctrine/collections/tree/2.1.4"
  1218. },
  1219. "funding": [
  1220. {
  1221. "url": "https://www.doctrine-project.org/sponsorship.html",
  1222. "type": "custom"
  1223. },
  1224. {
  1225. "url": "https://www.patreon.com/phpdoctrine",
  1226. "type": "patreon"
  1227. },
  1228. {
  1229. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  1230. "type": "tidelift"
  1231. }
  1232. ],
  1233. "time": "2023-10-03T09:22:33+00:00"
  1234. },
  1235. {
  1236. "name": "doctrine/common",
  1237. "version": "3.4.3",
  1238. "source": {
  1239. "type": "git",
  1240. "url": "https://github.com/doctrine/common.git",
  1241. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced"
  1242. },
  1243. "dist": {
  1244. "type": "zip",
  1245. "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced",
  1246. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced",
  1247. "shasum": ""
  1248. },
  1249. "require": {
  1250. "doctrine/persistence": "^2.0 || ^3.0",
  1251. "php": "^7.1 || ^8.0"
  1252. },
  1253. "require-dev": {
  1254. "doctrine/coding-standard": "^9.0 || ^10.0",
  1255. "doctrine/collections": "^1",
  1256. "phpstan/phpstan": "^1.4.1",
  1257. "phpstan/phpstan-phpunit": "^1",
  1258. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1259. "squizlabs/php_codesniffer": "^3.0",
  1260. "symfony/phpunit-bridge": "^6.1",
  1261. "vimeo/psalm": "^4.4"
  1262. },
  1263. "type": "library",
  1264. "autoload": {
  1265. "psr-4": {
  1266. "Doctrine\\Common\\": "src"
  1267. }
  1268. },
  1269. "notification-url": "https://packagist.org/downloads/",
  1270. "license": [
  1271. "MIT"
  1272. ],
  1273. "authors": [
  1274. {
  1275. "name": "Guilherme Blanco",
  1276. "email": "guilhermeblanco@gmail.com"
  1277. },
  1278. {
  1279. "name": "Roman Borschel",
  1280. "email": "roman@code-factory.org"
  1281. },
  1282. {
  1283. "name": "Benjamin Eberlei",
  1284. "email": "kontakt@beberlei.de"
  1285. },
  1286. {
  1287. "name": "Jonathan Wage",
  1288. "email": "jonwage@gmail.com"
  1289. },
  1290. {
  1291. "name": "Johannes Schmitt",
  1292. "email": "schmittjoh@gmail.com"
  1293. },
  1294. {
  1295. "name": "Marco Pivetta",
  1296. "email": "ocramius@gmail.com"
  1297. }
  1298. ],
  1299. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
  1300. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1301. "keywords": [
  1302. "common",
  1303. "doctrine",
  1304. "php"
  1305. ],
  1306. "support": {
  1307. "issues": "https://github.com/doctrine/common/issues",
  1308. "source": "https://github.com/doctrine/common/tree/3.4.3"
  1309. },
  1310. "funding": [
  1311. {
  1312. "url": "https://www.doctrine-project.org/sponsorship.html",
  1313. "type": "custom"
  1314. },
  1315. {
  1316. "url": "https://www.patreon.com/phpdoctrine",
  1317. "type": "patreon"
  1318. },
  1319. {
  1320. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1321. "type": "tidelift"
  1322. }
  1323. ],
  1324. "time": "2022-10-09T11:47:59+00:00"
  1325. },
  1326. {
  1327. "name": "doctrine/deprecations",
  1328. "version": "1.1.2",
  1329. "source": {
  1330. "type": "git",
  1331. "url": "https://github.com/doctrine/deprecations.git",
  1332. "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931"
  1333. },
  1334. "dist": {
  1335. "type": "zip",
  1336. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
  1337. "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
  1338. "shasum": ""
  1339. },
  1340. "require": {
  1341. "php": "^7.1 || ^8.0"
  1342. },
  1343. "require-dev": {
  1344. "doctrine/coding-standard": "^9",
  1345. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1346. "phpstan/phpstan-phpunit": "^1.0",
  1347. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1348. "psalm/plugin-phpunit": "0.18.4",
  1349. "psr/log": "^1 || ^2 || ^3",
  1350. "vimeo/psalm": "4.30.0 || 5.12.0"
  1351. },
  1352. "suggest": {
  1353. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1354. },
  1355. "type": "library",
  1356. "autoload": {
  1357. "psr-4": {
  1358. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1359. }
  1360. },
  1361. "notification-url": "https://packagist.org/downloads/",
  1362. "license": [
  1363. "MIT"
  1364. ],
  1365. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  1366. "homepage": "https://www.doctrine-project.org/",
  1367. "support": {
  1368. "issues": "https://github.com/doctrine/deprecations/issues",
  1369. "source": "https://github.com/doctrine/deprecations/tree/1.1.2"
  1370. },
  1371. "time": "2023-09-27T20:04:15+00:00"
  1372. },
  1373. {
  1374. "name": "doctrine/event-manager",
  1375. "version": "2.0.0",
  1376. "source": {
  1377. "type": "git",
  1378. "url": "https://github.com/doctrine/event-manager.git",
  1379. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  1380. },
  1381. "dist": {
  1382. "type": "zip",
  1383. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  1384. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  1385. "shasum": ""
  1386. },
  1387. "require": {
  1388. "php": "^8.1"
  1389. },
  1390. "conflict": {
  1391. "doctrine/common": "<2.9"
  1392. },
  1393. "require-dev": {
  1394. "doctrine/coding-standard": "^10",
  1395. "phpstan/phpstan": "^1.8.8",
  1396. "phpunit/phpunit": "^9.5",
  1397. "vimeo/psalm": "^4.28"
  1398. },
  1399. "type": "library",
  1400. "autoload": {
  1401. "psr-4": {
  1402. "Doctrine\\Common\\": "src"
  1403. }
  1404. },
  1405. "notification-url": "https://packagist.org/downloads/",
  1406. "license": [
  1407. "MIT"
  1408. ],
  1409. "authors": [
  1410. {
  1411. "name": "Guilherme Blanco",
  1412. "email": "guilhermeblanco@gmail.com"
  1413. },
  1414. {
  1415. "name": "Roman Borschel",
  1416. "email": "roman@code-factory.org"
  1417. },
  1418. {
  1419. "name": "Benjamin Eberlei",
  1420. "email": "kontakt@beberlei.de"
  1421. },
  1422. {
  1423. "name": "Jonathan Wage",
  1424. "email": "jonwage@gmail.com"
  1425. },
  1426. {
  1427. "name": "Johannes Schmitt",
  1428. "email": "schmittjoh@gmail.com"
  1429. },
  1430. {
  1431. "name": "Marco Pivetta",
  1432. "email": "ocramius@gmail.com"
  1433. }
  1434. ],
  1435. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1436. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1437. "keywords": [
  1438. "event",
  1439. "event dispatcher",
  1440. "event manager",
  1441. "event system",
  1442. "events"
  1443. ],
  1444. "support": {
  1445. "issues": "https://github.com/doctrine/event-manager/issues",
  1446. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  1447. },
  1448. "funding": [
  1449. {
  1450. "url": "https://www.doctrine-project.org/sponsorship.html",
  1451. "type": "custom"
  1452. },
  1453. {
  1454. "url": "https://www.patreon.com/phpdoctrine",
  1455. "type": "patreon"
  1456. },
  1457. {
  1458. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1459. "type": "tidelift"
  1460. }
  1461. ],
  1462. "time": "2022-10-12T20:59:15+00:00"
  1463. },
  1464. {
  1465. "name": "doctrine/lexer",
  1466. "version": "2.1.0",
  1467. "source": {
  1468. "type": "git",
  1469. "url": "https://github.com/doctrine/lexer.git",
  1470. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
  1471. },
  1472. "dist": {
  1473. "type": "zip",
  1474. "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1475. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1476. "shasum": ""
  1477. },
  1478. "require": {
  1479. "doctrine/deprecations": "^1.0",
  1480. "php": "^7.1 || ^8.0"
  1481. },
  1482. "require-dev": {
  1483. "doctrine/coding-standard": "^9 || ^10",
  1484. "phpstan/phpstan": "^1.3",
  1485. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1486. "psalm/plugin-phpunit": "^0.18.3",
  1487. "vimeo/psalm": "^4.11 || ^5.0"
  1488. },
  1489. "type": "library",
  1490. "autoload": {
  1491. "psr-4": {
  1492. "Doctrine\\Common\\Lexer\\": "src"
  1493. }
  1494. },
  1495. "notification-url": "https://packagist.org/downloads/",
  1496. "license": [
  1497. "MIT"
  1498. ],
  1499. "authors": [
  1500. {
  1501. "name": "Guilherme Blanco",
  1502. "email": "guilhermeblanco@gmail.com"
  1503. },
  1504. {
  1505. "name": "Roman Borschel",
  1506. "email": "roman@code-factory.org"
  1507. },
  1508. {
  1509. "name": "Johannes Schmitt",
  1510. "email": "schmittjoh@gmail.com"
  1511. }
  1512. ],
  1513. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1514. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1515. "keywords": [
  1516. "annotations",
  1517. "docblock",
  1518. "lexer",
  1519. "parser",
  1520. "php"
  1521. ],
  1522. "support": {
  1523. "issues": "https://github.com/doctrine/lexer/issues",
  1524. "source": "https://github.com/doctrine/lexer/tree/2.1.0"
  1525. },
  1526. "funding": [
  1527. {
  1528. "url": "https://www.doctrine-project.org/sponsorship.html",
  1529. "type": "custom"
  1530. },
  1531. {
  1532. "url": "https://www.patreon.com/phpdoctrine",
  1533. "type": "patreon"
  1534. },
  1535. {
  1536. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1537. "type": "tidelift"
  1538. }
  1539. ],
  1540. "time": "2022-12-14T08:49:07+00:00"
  1541. },
  1542. {
  1543. "name": "doctrine/persistence",
  1544. "version": "3.2.0",
  1545. "source": {
  1546. "type": "git",
  1547. "url": "https://github.com/doctrine/persistence.git",
  1548. "reference": "63fee8c33bef740db6730eb2a750cd3da6495603"
  1549. },
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://api.github.com/repos/doctrine/persistence/zipball/63fee8c33bef740db6730eb2a750cd3da6495603",
  1553. "reference": "63fee8c33bef740db6730eb2a750cd3da6495603",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "doctrine/event-manager": "^1 || ^2",
  1558. "php": "^7.2 || ^8.0",
  1559. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1560. },
  1561. "conflict": {
  1562. "doctrine/common": "<2.10"
  1563. },
  1564. "require-dev": {
  1565. "composer/package-versions-deprecated": "^1.11",
  1566. "doctrine/coding-standard": "^11",
  1567. "doctrine/common": "^3.0",
  1568. "phpstan/phpstan": "1.9.4",
  1569. "phpstan/phpstan-phpunit": "^1",
  1570. "phpstan/phpstan-strict-rules": "^1.1",
  1571. "phpunit/phpunit": "^8.5 || ^9.5",
  1572. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1573. "vimeo/psalm": "4.30.0 || 5.3.0"
  1574. },
  1575. "type": "library",
  1576. "autoload": {
  1577. "psr-4": {
  1578. "Doctrine\\Persistence\\": "src/Persistence"
  1579. }
  1580. },
  1581. "notification-url": "https://packagist.org/downloads/",
  1582. "license": [
  1583. "MIT"
  1584. ],
  1585. "authors": [
  1586. {
  1587. "name": "Guilherme Blanco",
  1588. "email": "guilhermeblanco@gmail.com"
  1589. },
  1590. {
  1591. "name": "Roman Borschel",
  1592. "email": "roman@code-factory.org"
  1593. },
  1594. {
  1595. "name": "Benjamin Eberlei",
  1596. "email": "kontakt@beberlei.de"
  1597. },
  1598. {
  1599. "name": "Jonathan Wage",
  1600. "email": "jonwage@gmail.com"
  1601. },
  1602. {
  1603. "name": "Johannes Schmitt",
  1604. "email": "schmittjoh@gmail.com"
  1605. },
  1606. {
  1607. "name": "Marco Pivetta",
  1608. "email": "ocramius@gmail.com"
  1609. }
  1610. ],
  1611. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1612. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1613. "keywords": [
  1614. "mapper",
  1615. "object",
  1616. "odm",
  1617. "orm",
  1618. "persistence"
  1619. ],
  1620. "support": {
  1621. "issues": "https://github.com/doctrine/persistence/issues",
  1622. "source": "https://github.com/doctrine/persistence/tree/3.2.0"
  1623. },
  1624. "funding": [
  1625. {
  1626. "url": "https://www.doctrine-project.org/sponsorship.html",
  1627. "type": "custom"
  1628. },
  1629. {
  1630. "url": "https://www.patreon.com/phpdoctrine",
  1631. "type": "patreon"
  1632. },
  1633. {
  1634. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1635. "type": "tidelift"
  1636. }
  1637. ],
  1638. "time": "2023-05-17T18:32:04+00:00"
  1639. },
  1640. {
  1641. "name": "drupal/address",
  1642. "version": "1.12.0",
  1643. "source": {
  1644. "type": "git",
  1645. "url": "https://git.drupalcode.org/project/address.git",
  1646. "reference": "8.x-1.12"
  1647. },
  1648. "dist": {
  1649. "type": "zip",
  1650. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.12.zip",
  1651. "reference": "8.x-1.12",
  1652. "shasum": "67dd4699040aabf0cd6169e437706fa6a39b0b3a"
  1653. },
  1654. "require": {
  1655. "commerceguys/addressing": "^1.4.2",
  1656. "drupal/core": "^9.2 || ^10",
  1657. "php": "^7.3 || ^8.0"
  1658. },
  1659. "require-dev": {
  1660. "drupal/token": "^1.0"
  1661. },
  1662. "type": "drupal-module",
  1663. "extra": {
  1664. "drupal": {
  1665. "version": "8.x-1.12",
  1666. "datestamp": "1684710176",
  1667. "security-coverage": {
  1668. "status": "covered",
  1669. "message": "Covered by Drupal's security advisory policy"
  1670. }
  1671. }
  1672. },
  1673. "notification-url": "https://packages.drupal.org/8/downloads",
  1674. "license": [
  1675. "GPL-2.0-or-later"
  1676. ],
  1677. "authors": [
  1678. {
  1679. "name": "bojanz",
  1680. "homepage": "https://www.drupal.org/user/86106"
  1681. },
  1682. {
  1683. "name": "Centarro",
  1684. "homepage": "https://www.drupal.org/user/3661446"
  1685. },
  1686. {
  1687. "name": "dww",
  1688. "homepage": "https://www.drupal.org/user/46549"
  1689. },
  1690. {
  1691. "name": "googletorp",
  1692. "homepage": "https://www.drupal.org/user/386230"
  1693. },
  1694. {
  1695. "name": "jsacksick",
  1696. "homepage": "https://www.drupal.org/user/972218"
  1697. },
  1698. {
  1699. "name": "mglaman",
  1700. "homepage": "https://www.drupal.org/user/2416470"
  1701. },
  1702. {
  1703. "name": "rszrama",
  1704. "homepage": "https://www.drupal.org/user/49344"
  1705. }
  1706. ],
  1707. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1708. "homepage": "http://drupal.org/project/address",
  1709. "support": {
  1710. "source": "https://git.drupalcode.org/project/address"
  1711. }
  1712. },
  1713. {
  1714. "name": "drupal/admin_toolbar",
  1715. "version": "3.4.2",
  1716. "source": {
  1717. "type": "git",
  1718. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1719. "reference": "3.4.2"
  1720. },
  1721. "dist": {
  1722. "type": "zip",
  1723. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.4.2.zip",
  1724. "reference": "3.4.2",
  1725. "shasum": "f5a008e5c73f5a11c6c8067c0ea6ebb76aa33854"
  1726. },
  1727. "require": {
  1728. "drupal/core": "^9.2 || ^10"
  1729. },
  1730. "require-dev": {
  1731. "drupal/admin_toolbar_tools": "*"
  1732. },
  1733. "type": "drupal-module",
  1734. "extra": {
  1735. "drupal": {
  1736. "version": "3.4.2",
  1737. "datestamp": "1696006195",
  1738. "security-coverage": {
  1739. "status": "covered",
  1740. "message": "Covered by Drupal's security advisory policy"
  1741. }
  1742. }
  1743. },
  1744. "notification-url": "https://packages.drupal.org/8/downloads",
  1745. "license": [
  1746. "GPL-2.0-or-later"
  1747. ],
  1748. "authors": [
  1749. {
  1750. "name": "Wilfrid Roze (eme)",
  1751. "homepage": "https://www.drupal.org/u/eme",
  1752. "role": "Maintainer"
  1753. },
  1754. {
  1755. "name": "Romain Jarraud (romainj)",
  1756. "homepage": "https://www.drupal.org/u/romainj",
  1757. "role": "Maintainer"
  1758. },
  1759. {
  1760. "name": "Adrian Cid Almaguer (adriancid)",
  1761. "homepage": "https://www.drupal.org/u/adriancid",
  1762. "email": "adriancid@gmail.com",
  1763. "role": "Maintainer"
  1764. },
  1765. {
  1766. "name": "Mohamed Anis Taktak (matio89)",
  1767. "homepage": "https://www.drupal.org/u/matio89",
  1768. "role": "Maintainer"
  1769. },
  1770. {
  1771. "name": "matio89",
  1772. "homepage": "https://www.drupal.org/user/2320090"
  1773. },
  1774. {
  1775. "name": "Musa.thomas",
  1776. "homepage": "https://www.drupal.org/user/1213824"
  1777. },
  1778. {
  1779. "name": "romainj",
  1780. "homepage": "https://www.drupal.org/user/370706"
  1781. }
  1782. ],
  1783. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1784. "homepage": "http://drupal.org/project/admin_toolbar",
  1785. "keywords": [
  1786. "Drupal",
  1787. "Toolbar"
  1788. ],
  1789. "support": {
  1790. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1791. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1792. }
  1793. },
  1794. {
  1795. "name": "drupal/adminimal_theme",
  1796. "version": "1.7.0",
  1797. "source": {
  1798. "type": "git",
  1799. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1800. "reference": "8.x-1.7"
  1801. },
  1802. "dist": {
  1803. "type": "zip",
  1804. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1805. "reference": "8.x-1.7",
  1806. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1807. },
  1808. "require": {
  1809. "drupal/core": "^9.3 || ^10",
  1810. "drupal/seven": "~1.0"
  1811. },
  1812. "type": "drupal-theme",
  1813. "extra": {
  1814. "drupal": {
  1815. "version": "8.x-1.7",
  1816. "datestamp": "1691504486",
  1817. "security-coverage": {
  1818. "status": "covered",
  1819. "message": "Covered by Drupal's security advisory policy"
  1820. }
  1821. }
  1822. },
  1823. "notification-url": "https://packages.drupal.org/8/downloads",
  1824. "license": [
  1825. "GPL-2.0+"
  1826. ],
  1827. "authors": [
  1828. {
  1829. "name": "ANDiTKO",
  1830. "homepage": "https://www.drupal.org/user/1428124"
  1831. },
  1832. {
  1833. "name": "andrey.troeglazov",
  1834. "homepage": "https://www.drupal.org/user/3145389"
  1835. },
  1836. {
  1837. "name": "realityloop",
  1838. "homepage": "https://www.drupal.org/user/139189"
  1839. },
  1840. {
  1841. "name": "rjjakes",
  1842. "homepage": "https://www.drupal.org/user/3457245"
  1843. }
  1844. ],
  1845. "description": "Drupal administration theme with modern minimalist design.",
  1846. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1847. "support": {
  1848. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1849. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1850. }
  1851. },
  1852. {
  1853. "name": "drupal/advanced_email_validation",
  1854. "version": "1.1.5",
  1855. "source": {
  1856. "type": "git",
  1857. "url": "https://git.drupalcode.org/project/advanced_email_validation.git",
  1858. "reference": "1.1.5"
  1859. },
  1860. "dist": {
  1861. "type": "zip",
  1862. "url": "https://ftp.drupal.org/files/projects/advanced_email_validation-1.1.5.zip",
  1863. "reference": "1.1.5",
  1864. "shasum": "39bb313fe3be5c329012aa5310a6081cdc7e9df0"
  1865. },
  1866. "require": {
  1867. "drupal/core": "^9.3 || ^10",
  1868. "stymiee/email-validator": "^1.0.1"
  1869. },
  1870. "type": "drupal-module",
  1871. "extra": {
  1872. "drupal": {
  1873. "version": "1.1.5",
  1874. "datestamp": "1686705109",
  1875. "security-coverage": {
  1876. "status": "covered",
  1877. "message": "Covered by Drupal's security advisory policy"
  1878. }
  1879. }
  1880. },
  1881. "notification-url": "https://packages.drupal.org/8/downloads",
  1882. "license": [
  1883. "GPL-2.0+"
  1884. ],
  1885. "authors": [
  1886. {
  1887. "name": "Max Pogonowski (darvanen)",
  1888. "homepage": "https://www.drupal.org/u/darvanen",
  1889. "role": "Maintainer"
  1890. }
  1891. ],
  1892. "description": "User account email validation using MX records and lists of free or disposable emails (configurable).",
  1893. "homepage": "https://www.drupal.org/project/advanced_email_validation",
  1894. "keywords": [
  1895. "Drupal"
  1896. ],
  1897. "support": {
  1898. "source": "http://cgit.drupalcode.org/advanced_email_validation",
  1899. "issues": "https://www.drupal.org/project/issues/advanced_email_validation"
  1900. }
  1901. },
  1902. {
  1903. "name": "drupal/advanced_text_formatter",
  1904. "version": "3.0.0-rc1",
  1905. "source": {
  1906. "type": "git",
  1907. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  1908. "reference": "3.0.0-rc1"
  1909. },
  1910. "dist": {
  1911. "type": "zip",
  1912. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-3.0.0-rc1.zip",
  1913. "reference": "3.0.0-rc1",
  1914. "shasum": "394729127f44a6398e29f5e5702e6def00a06e20"
  1915. },
  1916. "require": {
  1917. "drupal/core": "^8 || ^9 || ^10"
  1918. },
  1919. "type": "drupal-module",
  1920. "extra": {
  1921. "drupal": {
  1922. "version": "3.0.0-rc1",
  1923. "datestamp": "1675163352",
  1924. "security-coverage": {
  1925. "status": "not-covered",
  1926. "message": "RC releases are not covered by Drupal security advisories."
  1927. }
  1928. }
  1929. },
  1930. "notification-url": "https://packages.drupal.org/8/downloads",
  1931. "license": [
  1932. "GPL-2.0-or-later"
  1933. ],
  1934. "authors": [
  1935. {
  1936. "name": "azovsky",
  1937. "homepage": "https://www.drupal.org/user/330533"
  1938. },
  1939. {
  1940. "name": "thmnhat",
  1941. "homepage": "https://www.drupal.org/user/998946"
  1942. }
  1943. ],
  1944. "description": "Provides an additional formatter for text field, text area and text format.",
  1945. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  1946. "support": {
  1947. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  1948. }
  1949. },
  1950. {
  1951. "name": "drupal/audiofield",
  1952. "version": "1.13.0",
  1953. "source": {
  1954. "type": "git",
  1955. "url": "https://git.drupalcode.org/project/audiofield.git",
  1956. "reference": "8.x-1.13"
  1957. },
  1958. "dist": {
  1959. "type": "zip",
  1960. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1961. "reference": "8.x-1.13",
  1962. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1963. },
  1964. "require": {
  1965. "drupal/core": "^8 || ^9 || ^10"
  1966. },
  1967. "type": "drupal-module",
  1968. "extra": {
  1969. "drupal": {
  1970. "version": "8.x-1.13",
  1971. "datestamp": "1681143245",
  1972. "security-coverage": {
  1973. "status": "covered",
  1974. "message": "Covered by Drupal's security advisory policy"
  1975. }
  1976. },
  1977. "drush": {
  1978. "services": {
  1979. "drush.services.yml": "^9"
  1980. }
  1981. }
  1982. },
  1983. "notification-url": "https://packages.drupal.org/8/downloads",
  1984. "license": [
  1985. "GPL-2.0-or-later"
  1986. ],
  1987. "authors": [
  1988. {
  1989. "name": "Daniel Moberly",
  1990. "homepage": "https://www.drupal.org/u/danielmoberly",
  1991. "role": "Maintainer"
  1992. },
  1993. {
  1994. "name": "tamerzg",
  1995. "homepage": "https://www.drupal.org/user/464564"
  1996. }
  1997. ],
  1998. "description": "AudioField Module",
  1999. "homepage": "https://www.drupal.org/project/audiofield",
  2000. "support": {
  2001. "source": "https://git.drupalcode.org/project/audiofield",
  2002. "issues": "https://www.drupal.org/project/issues/audiofield"
  2003. }
  2004. },
  2005. {
  2006. "name": "drupal/autocomplete_deluxe",
  2007. "version": "2.0.3",
  2008. "source": {
  2009. "type": "git",
  2010. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  2011. "reference": "2.0.3"
  2012. },
  2013. "dist": {
  2014. "type": "zip",
  2015. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.0.3.zip",
  2016. "reference": "2.0.3",
  2017. "shasum": "686bb49e7366d59f7eef7acf8906ba907898497f"
  2018. },
  2019. "require": {
  2020. "drupal/core": "^8 || ^9 || ^10"
  2021. },
  2022. "type": "drupal-module",
  2023. "extra": {
  2024. "drupal": {
  2025. "version": "2.0.3",
  2026. "datestamp": "1673454732",
  2027. "security-coverage": {
  2028. "status": "covered",
  2029. "message": "Covered by Drupal's security advisory policy"
  2030. }
  2031. }
  2032. },
  2033. "notification-url": "https://packages.drupal.org/8/downloads",
  2034. "license": [
  2035. "GPL-2.0-or-later"
  2036. ],
  2037. "authors": [
  2038. {
  2039. "name": "Vardot",
  2040. "homepage": "https://www.drupal.org/vardot",
  2041. "role": "Maintenance for D8 and D9 versions"
  2042. },
  2043. {
  2044. "name": "Mediacurrent",
  2045. "homepage": "https://www.drupal.org/mediacurrent",
  2046. "role": "Supporting organization"
  2047. },
  2048. {
  2049. "name": "Mohammed J. Razem",
  2050. "homepage": "https://www.drupal.org/user/255384"
  2051. },
  2052. {
  2053. "name": "mpriscella",
  2054. "homepage": "https://www.drupal.org/user/2354820"
  2055. },
  2056. {
  2057. "name": "Rajab Natshah",
  2058. "homepage": "https://www.drupal.org/user/1414312"
  2059. },
  2060. {
  2061. "name": "sepgil",
  2062. "homepage": "https://www.drupal.org/user/512828"
  2063. }
  2064. ],
  2065. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2066. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2067. "support": {
  2068. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2069. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2070. }
  2071. },
  2072. {
  2073. "name": "drupal/autologout",
  2074. "version": "1.4.0",
  2075. "source": {
  2076. "type": "git",
  2077. "url": "https://git.drupalcode.org/project/autologout.git",
  2078. "reference": "8.x-1.4"
  2079. },
  2080. "dist": {
  2081. "type": "zip",
  2082. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.4.zip",
  2083. "reference": "8.x-1.4",
  2084. "shasum": "f751062f463d0b52df81764f67cee3a0be97825e"
  2085. },
  2086. "require": {
  2087. "drupal/core": "^9.2 || ^10"
  2088. },
  2089. "type": "drupal-module",
  2090. "extra": {
  2091. "drupal": {
  2092. "version": "8.x-1.4",
  2093. "datestamp": "1658168199",
  2094. "security-coverage": {
  2095. "status": "covered",
  2096. "message": "Covered by Drupal's security advisory policy"
  2097. }
  2098. }
  2099. },
  2100. "notification-url": "https://packages.drupal.org/8/downloads",
  2101. "license": [
  2102. "GPL-2.0-or-later"
  2103. ],
  2104. "authors": [
  2105. {
  2106. "name": "AjitS",
  2107. "homepage": "https://www.drupal.org/user/981944"
  2108. },
  2109. {
  2110. "name": "AjK",
  2111. "homepage": "https://www.drupal.org/user/39030"
  2112. },
  2113. {
  2114. "name": "boshtian",
  2115. "homepage": "https://www.drupal.org/user/1773456"
  2116. },
  2117. {
  2118. "name": "dandrews",
  2119. "homepage": "https://www.drupal.org/user/2014490"
  2120. },
  2121. {
  2122. "name": "darksnow",
  2123. "homepage": "https://www.drupal.org/user/391915"
  2124. },
  2125. {
  2126. "name": "japerry",
  2127. "homepage": "https://www.drupal.org/user/45640"
  2128. },
  2129. {
  2130. "name": "johnennew",
  2131. "homepage": "https://www.drupal.org/user/1150042"
  2132. },
  2133. {
  2134. "name": "jrglasgow",
  2135. "homepage": "https://www.drupal.org/user/36590"
  2136. },
  2137. {
  2138. "name": "kmasood",
  2139. "homepage": "https://www.drupal.org/user/1262860"
  2140. },
  2141. {
  2142. "name": "levelos",
  2143. "homepage": "https://www.drupal.org/user/54135"
  2144. },
  2145. {
  2146. "name": "prabeen.giri",
  2147. "homepage": "https://www.drupal.org/user/913078"
  2148. },
  2149. {
  2150. "name": "str8",
  2151. "homepage": "https://www.drupal.org/user/2865063"
  2152. }
  2153. ],
  2154. "description": "Adds automated timed logout.",
  2155. "homepage": "http://drupal.org/project/autologout",
  2156. "support": {
  2157. "source": "https://git.drupalcode.org/project/autologout"
  2158. }
  2159. },
  2160. {
  2161. "name": "drupal/better_exposed_filters",
  2162. "version": "6.0.3",
  2163. "source": {
  2164. "type": "git",
  2165. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2166. "reference": "6.0.3"
  2167. },
  2168. "dist": {
  2169. "type": "zip",
  2170. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.3.zip",
  2171. "reference": "6.0.3",
  2172. "shasum": "b5c20207d7679542bb81955771956c18083e6e0b"
  2173. },
  2174. "require": {
  2175. "drupal/core": "^9 || ^10",
  2176. "drupal/jquery_ui": "^1.6",
  2177. "drupal/jquery_ui_datepicker": "^2.0",
  2178. "drupal/jquery_ui_slider": "^2.0.0",
  2179. "drupal/jquery_ui_touch_punch": "^1.0"
  2180. },
  2181. "type": "drupal-module",
  2182. "extra": {
  2183. "drupal": {
  2184. "version": "6.0.3",
  2185. "datestamp": "1671541877",
  2186. "security-coverage": {
  2187. "status": "covered",
  2188. "message": "Covered by Drupal's security advisory policy"
  2189. }
  2190. }
  2191. },
  2192. "notification-url": "https://packages.drupal.org/8/downloads",
  2193. "license": [
  2194. "GPL-2.0-or-later"
  2195. ],
  2196. "authors": [
  2197. {
  2198. "name": "Mike Keran",
  2199. "homepage": "https://www.drupal.org/u/mikeker"
  2200. },
  2201. {
  2202. "name": "Martin Keereman",
  2203. "homepage": "https://www.drupal.org/u/etroid"
  2204. },
  2205. {
  2206. "name": "Neslee Canil Pinto",
  2207. "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
  2208. },
  2209. {
  2210. "name": "mikeker",
  2211. "homepage": "https://www.drupal.org/user/192273"
  2212. },
  2213. {
  2214. "name": "Neslee Canil Pinto",
  2215. "homepage": "https://www.drupal.org/user/3580850"
  2216. },
  2217. {
  2218. "name": "podarok",
  2219. "homepage": "https://www.drupal.org/user/116002"
  2220. },
  2221. {
  2222. "name": "rlhawk",
  2223. "homepage": "https://www.drupal.org/user/352283"
  2224. }
  2225. ],
  2226. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2227. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2228. "support": {
  2229. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2230. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2231. }
  2232. },
  2233. {
  2234. "name": "drupal/block_class",
  2235. "version": "2.0.11",
  2236. "source": {
  2237. "type": "git",
  2238. "url": "https://git.drupalcode.org/project/block_class.git",
  2239. "reference": "2.0.11"
  2240. },
  2241. "dist": {
  2242. "type": "zip",
  2243. "url": "https://ftp.drupal.org/files/projects/block_class-2.0.11.zip",
  2244. "reference": "2.0.11",
  2245. "shasum": "bd098ef0071b5baca1248c0deaa9bbedc0ddcaf4"
  2246. },
  2247. "require": {
  2248. "drupal/core": "^8 || ^9 || ^10"
  2249. },
  2250. "type": "drupal-module",
  2251. "extra": {
  2252. "drupal": {
  2253. "version": "2.0.11",
  2254. "datestamp": "1672065313",
  2255. "security-coverage": {
  2256. "status": "covered",
  2257. "message": "Covered by Drupal's security advisory policy"
  2258. }
  2259. }
  2260. },
  2261. "notification-url": "https://packages.drupal.org/8/downloads",
  2262. "license": [
  2263. "GPL-2.0-or-later"
  2264. ],
  2265. "authors": [
  2266. {
  2267. "name": "Todd Nienkerk",
  2268. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2269. "role": "Maintainer"
  2270. },
  2271. {
  2272. "name": "Renato Gonçalves (RenatoG)",
  2273. "homepage": "https://www.drupal.org/u/RenatoG",
  2274. "role": "Maintainer"
  2275. },
  2276. {
  2277. "name": "Neslee Canil Pinto",
  2278. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2279. "role": "Maintainer"
  2280. },
  2281. {
  2282. "name": "Aaron Stanush",
  2283. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2284. "role": "Maintainer"
  2285. },
  2286. {
  2287. "name": "David Suissa (DYdave)",
  2288. "homepage": "https://www.drupal.org/u/DYdave",
  2289. "role": "Maintainer"
  2290. },
  2291. {
  2292. "name": "Four Kitchens",
  2293. "homepage": "https://www.drupal.org/user/358502",
  2294. "role": "Maintainer"
  2295. },
  2296. {
  2297. "name": "berenddeboer",
  2298. "homepage": "https://www.drupal.org/u/berenddeboer",
  2299. "role": "Maintainer"
  2300. },
  2301. {
  2302. "name": "elliotttf",
  2303. "homepage": "https://www.drupal.org/u/elliotttf",
  2304. "role": "Maintainer"
  2305. },
  2306. {
  2307. "name": "Michal Minecki (mirzu)",
  2308. "homepage": "https://www.drupal.org/u/mirzu",
  2309. "role": "Maintainer"
  2310. },
  2311. {
  2312. "name": "Patrick Coffey (pcoffey)",
  2313. "homepage": "https://www.drupal.org/u/pcoffey",
  2314. "role": "Maintainer"
  2315. },
  2316. {
  2317. "name": "Taylor Smith (tsmith512)",
  2318. "homepage": "https://www.drupal.org/u/tsmith512",
  2319. "role": "Maintainer"
  2320. }
  2321. ],
  2322. "description": "Allows assigning classes to Blocks.",
  2323. "homepage": "https://www.drupal.org/project/block_class",
  2324. "keywords": [
  2325. "Drupal"
  2326. ],
  2327. "support": {
  2328. "source": "https://git.drupalcode.org/project/block_class",
  2329. "issues": "https://www.drupal.org/project/issues/block_class",
  2330. "irc": "irc://irc.freenode.org/drupal-contribute"
  2331. }
  2332. },
  2333. {
  2334. "name": "drupal/bulkdelete",
  2335. "version": "dev-1.x",
  2336. "source": {
  2337. "type": "git",
  2338. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2339. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  2340. },
  2341. "require": {
  2342. "drupal/core": "^8.7.7 || ^9 || ^10"
  2343. },
  2344. "type": "drupal-module",
  2345. "extra": {
  2346. "branch-alias": {
  2347. "dev-1.x": "1.x-dev"
  2348. },
  2349. "drupal": {
  2350. "version": "8.x-1.x-dev",
  2351. "datestamp": "1655322426",
  2352. "security-coverage": {
  2353. "status": "not-covered",
  2354. "message": "Dev releases are not covered by Drupal security advisories."
  2355. }
  2356. }
  2357. },
  2358. "notification-url": "https://packages.drupal.org/8/downloads",
  2359. "license": [
  2360. "GPL-2.0-or-later"
  2361. ],
  2362. "authors": [
  2363. {
  2364. "name": "Kars-T",
  2365. "homepage": "https://www.drupal.org/user/224499"
  2366. },
  2367. {
  2368. "name": "Rahul Seth",
  2369. "homepage": "https://www.drupal.org/user/2694359"
  2370. },
  2371. {
  2372. "name": "adriancid",
  2373. "homepage": "https://www.drupal.org/user/1962106"
  2374. },
  2375. {
  2376. "name": "robertDouglass",
  2377. "homepage": "https://www.drupal.org/user/5449"
  2378. }
  2379. ],
  2380. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2381. "homepage": "https://www.drupal.org/project/bulkdelete",
  2382. "support": {
  2383. "source": "https://git.drupalcode.org/project/bulkdelete"
  2384. }
  2385. },
  2386. {
  2387. "name": "drupal/config_devel",
  2388. "version": "dev-1.x",
  2389. "source": {
  2390. "type": "git",
  2391. "url": "https://git.drupalcode.org/project/config_devel.git",
  2392. "reference": "d0a98704eb6f9d4bdfe8e91e678b895648bb3c83"
  2393. },
  2394. "require": {
  2395. "drupal/core": "^9.3 || ^10"
  2396. },
  2397. "type": "drupal-module",
  2398. "extra": {
  2399. "branch-alias": {
  2400. "dev-1.x": "1.x-dev"
  2401. },
  2402. "drupal": {
  2403. "version": "8.x-1.8+2-dev",
  2404. "datestamp": "1678264720",
  2405. "security-coverage": {
  2406. "status": "not-covered",
  2407. "message": "Dev releases are not covered by Drupal security advisories."
  2408. }
  2409. }
  2410. },
  2411. "notification-url": "https://packages.drupal.org/8/downloads",
  2412. "license": [
  2413. "GPL-2.0+"
  2414. ],
  2415. "authors": [
  2416. {
  2417. "name": "alexpott",
  2418. "homepage": "https://www.drupal.org/user/157725"
  2419. },
  2420. {
  2421. "name": "benjy",
  2422. "homepage": "https://www.drupal.org/user/1852732"
  2423. },
  2424. {
  2425. "name": "chx",
  2426. "homepage": "https://www.drupal.org/user/9446"
  2427. },
  2428. {
  2429. "name": "joachim",
  2430. "homepage": "https://www.drupal.org/user/107701"
  2431. },
  2432. {
  2433. "name": "nedjo",
  2434. "homepage": "https://www.drupal.org/user/4481"
  2435. },
  2436. {
  2437. "name": "vijaycs85",
  2438. "homepage": "https://www.drupal.org/user/93488"
  2439. }
  2440. ],
  2441. "description": "Helps developers work with configuration.",
  2442. "homepage": "https://www.drupal.org/project/config_devel",
  2443. "support": {
  2444. "source": "https://git.drupalcode.org/project/config_devel"
  2445. }
  2446. },
  2447. {
  2448. "name": "drupal/config_filter",
  2449. "version": "2.6.0",
  2450. "source": {
  2451. "type": "git",
  2452. "url": "https://git.drupalcode.org/project/config_filter.git",
  2453. "reference": "8.x-2.6"
  2454. },
  2455. "dist": {
  2456. "type": "zip",
  2457. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.6.zip",
  2458. "reference": "8.x-2.6",
  2459. "shasum": "fd1a057a402436fc906c63bf0a74722f73b9b155"
  2460. },
  2461. "require": {
  2462. "drupal/core": "^8.8 || ^9 || ^10"
  2463. },
  2464. "conflict": {
  2465. "drush/drush": "<10"
  2466. },
  2467. "suggest": {
  2468. "drupal/config_split": "Split site configuration for different environments."
  2469. },
  2470. "type": "drupal-module",
  2471. "extra": {
  2472. "drupal": {
  2473. "version": "8.x-2.6",
  2474. "datestamp": "1698308577",
  2475. "security-coverage": {
  2476. "status": "covered",
  2477. "message": "Covered by Drupal's security advisory policy"
  2478. }
  2479. }
  2480. },
  2481. "notification-url": "https://packages.drupal.org/8/downloads",
  2482. "license": [
  2483. "GPL-2.0-or-later"
  2484. ],
  2485. "authors": [
  2486. {
  2487. "name": "Fabian Bircher",
  2488. "homepage": "https://www.drupal.org/u/bircher",
  2489. "email": "opensource@fabianbircher.com",
  2490. "role": "Maintainer"
  2491. },
  2492. {
  2493. "name": "Nuvole Web",
  2494. "homepage": "http://nuvole.org",
  2495. "email": "info@nuvole.org",
  2496. "role": "Maintainer"
  2497. },
  2498. {
  2499. "name": "pescetti",
  2500. "homepage": "https://www.drupal.org/user/436244"
  2501. }
  2502. ],
  2503. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2504. "homepage": "https://www.drupal.org/project/config_filter",
  2505. "keywords": [
  2506. "Drupal",
  2507. "configuration",
  2508. "configuration management"
  2509. ],
  2510. "support": {
  2511. "source": "https://git.drupalcode.org/project/config_filter",
  2512. "issues": "https://www.drupal.org/project/issues/config_filter",
  2513. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2514. }
  2515. },
  2516. {
  2517. "name": "drupal/config_ignore",
  2518. "version": "2.4.0",
  2519. "source": {
  2520. "type": "git",
  2521. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2522. "reference": "8.x-2.4"
  2523. },
  2524. "dist": {
  2525. "type": "zip",
  2526. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.4.zip",
  2527. "reference": "8.x-2.4",
  2528. "shasum": "e0e45dde2d6927c5d26de59f352792fb6cf26554"
  2529. },
  2530. "require": {
  2531. "drupal/config_filter": "^1 || ^2",
  2532. "drupal/core": "^8 || ^9 || ^10"
  2533. },
  2534. "type": "drupal-module",
  2535. "extra": {
  2536. "drupal": {
  2537. "version": "8.x-2.4",
  2538. "datestamp": "1676045435",
  2539. "security-coverage": {
  2540. "status": "covered",
  2541. "message": "Covered by Drupal's security advisory policy"
  2542. }
  2543. }
  2544. },
  2545. "notification-url": "https://packages.drupal.org/8/downloads",
  2546. "license": [
  2547. "GPL-2.0-or-later"
  2548. ],
  2549. "authors": [
  2550. {
  2551. "name": "Tommy Lynge Jørgensen",
  2552. "homepage": "https://www.drupal.org/u/tlyngej",
  2553. "email": "tlyngej@gmail.com",
  2554. "role": "Maintainer"
  2555. },
  2556. {
  2557. "name": "Fabian Bircher",
  2558. "homepage": "https://www.drupal.org/u/bircher",
  2559. "role": "Maintainer"
  2560. },
  2561. {
  2562. "name": "tlyngej",
  2563. "homepage": "https://www.drupal.org/user/413139"
  2564. }
  2565. ],
  2566. "description": "Ignore certain configuration during import.",
  2567. "homepage": "http://drupal.org/project/config_ignore",
  2568. "support": {
  2569. "source": "https://git.drupalcode.org/project/config_ignore",
  2570. "issues": "https://drupal.org/project/config_ignore",
  2571. "irc": "irc://irc.freenode.org/drupal-contribute"
  2572. }
  2573. },
  2574. {
  2575. "name": "drupal/config_pages",
  2576. "version": "2.15.0",
  2577. "source": {
  2578. "type": "git",
  2579. "url": "https://git.drupalcode.org/project/config_pages.git",
  2580. "reference": "8.x-2.15"
  2581. },
  2582. "dist": {
  2583. "type": "zip",
  2584. "url": "https://ftp.drupal.org/files/projects/config_pages-8.x-2.15.zip",
  2585. "reference": "8.x-2.15",
  2586. "shasum": "55d4a898c6df03295e26ce07930c6b7d06183287"
  2587. },
  2588. "require": {
  2589. "drupal/core": "^8.5 | ^9 || ^10"
  2590. },
  2591. "type": "drupal-module",
  2592. "extra": {
  2593. "drupal": {
  2594. "version": "8.x-2.15",
  2595. "datestamp": "1688847929",
  2596. "security-coverage": {
  2597. "status": "covered",
  2598. "message": "Covered by Drupal's security advisory policy"
  2599. }
  2600. },
  2601. "drush": {
  2602. "services": {
  2603. "drush.services.yml": "^9"
  2604. }
  2605. }
  2606. },
  2607. "notification-url": "https://packages.drupal.org/8/downloads",
  2608. "license": [
  2609. "GPL-2.0-or-later"
  2610. ],
  2611. "authors": [
  2612. {
  2613. "name": "m.krestnicov",
  2614. "homepage": "https://www.drupal.org/user/3193903"
  2615. },
  2616. {
  2617. "name": "Qwaygon",
  2618. "homepage": "https://www.drupal.org/user/636624"
  2619. },
  2620. {
  2621. "name": "shumer",
  2622. "homepage": "https://www.drupal.org/user/2297432"
  2623. }
  2624. ],
  2625. "description": "ConfigPages module",
  2626. "homepage": "http://drupal.org/project/config_pages",
  2627. "keywords": [
  2628. "Drupal"
  2629. ],
  2630. "support": {
  2631. "source": "http://cgit.drupalcode.org/config_pages",
  2632. "issues": "http://drupal.org/project/issues/config_pages"
  2633. }
  2634. },
  2635. {
  2636. "name": "drupal/config_update",
  2637. "version": "2.0.0-alpha3",
  2638. "source": {
  2639. "type": "git",
  2640. "url": "https://git.drupalcode.org/project/config_update.git",
  2641. "reference": "2.0.0-alpha3"
  2642. },
  2643. "dist": {
  2644. "type": "zip",
  2645. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha3.zip",
  2646. "reference": "2.0.0-alpha3",
  2647. "shasum": "c35e81e8fb77efdff5ddca3a87116ea0c522a7e2"
  2648. },
  2649. "require": {
  2650. "drupal/core": "^9.4 || ^10"
  2651. },
  2652. "type": "drupal-module",
  2653. "extra": {
  2654. "drupal": {
  2655. "version": "2.0.0-alpha3",
  2656. "datestamp": "1683807608",
  2657. "security-coverage": {
  2658. "status": "not-covered",
  2659. "message": "Alpha releases are not covered by Drupal security advisories."
  2660. }
  2661. }
  2662. },
  2663. "notification-url": "https://packages.drupal.org/8/downloads",
  2664. "license": [
  2665. "GPL-2.0-or-later"
  2666. ],
  2667. "authors": [
  2668. {
  2669. "name": "codebymikey",
  2670. "homepage": "https://www.drupal.org/user/3573206"
  2671. },
  2672. {
  2673. "name": "Pasqualle",
  2674. "homepage": "https://www.drupal.org/user/80733"
  2675. }
  2676. ],
  2677. "description": "Provides basic revert and update functionality for other modules.",
  2678. "homepage": "https://www.drupal.org/project/config_update",
  2679. "support": {
  2680. "source": "https://git.drupalcode.org/project/config_update"
  2681. }
  2682. },
  2683. {
  2684. "name": "drupal/content_as_config",
  2685. "version": "1.0.10",
  2686. "source": {
  2687. "type": "git",
  2688. "url": "https://git.drupalcode.org/project/content_as_config.git",
  2689. "reference": "1.0.10"
  2690. },
  2691. "dist": {
  2692. "type": "zip",
  2693. "url": "https://ftp.drupal.org/files/projects/content_as_config-1.0.10.zip",
  2694. "reference": "1.0.10",
  2695. "shasum": "3ed5dd56486a98b6832eb6fea257792d5af145b4"
  2696. },
  2697. "require": {
  2698. "drupal/core": "^9.3 || ^10"
  2699. },
  2700. "conflict": {
  2701. "drupal/structure_sync": "*"
  2702. },
  2703. "require-dev": {
  2704. "drupal/feeds": "*",
  2705. "drupal/group": "*"
  2706. },
  2707. "suggest": {
  2708. "drupal/markdown": "Render module help more elegantly."
  2709. },
  2710. "type": "drupal-module",
  2711. "extra": {
  2712. "drupal": {
  2713. "version": "1.0.10",
  2714. "datestamp": "1665066743",
  2715. "security-coverage": {
  2716. "status": "covered",
  2717. "message": "Covered by Drupal's security advisory policy"
  2718. }
  2719. },
  2720. "drush": {
  2721. "services": {
  2722. "drush.services.yml": "^9"
  2723. }
  2724. }
  2725. },
  2726. "notification-url": "https://packages.drupal.org/8/downloads",
  2727. "license": [
  2728. "GPL-2.0-or-later"
  2729. ],
  2730. "authors": [
  2731. {
  2732. "name": "Daniel Johnson (daniel_j)",
  2733. "homepage": "https://www.drupal.org/u/daniel_j",
  2734. "role": "Maintainer"
  2735. }
  2736. ],
  2737. "description": "Allows content entities to be exported/imported as configuration.",
  2738. "homepage": "https://drupal.org/project/content_as_config",
  2739. "keywords": [
  2740. "Configuration",
  2741. "Drupal"
  2742. ],
  2743. "support": {
  2744. "source": "https://git.drupalcode.org/project/content_as_config",
  2745. "issues": "https://www.drupal.org/project/issues/content_as_config"
  2746. }
  2747. },
  2748. {
  2749. "name": "drupal/content_lock",
  2750. "version": "2.3.0",
  2751. "source": {
  2752. "type": "git",
  2753. "url": "https://git.drupalcode.org/project/content_lock.git",
  2754. "reference": "8.x-2.3"
  2755. },
  2756. "dist": {
  2757. "type": "zip",
  2758. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.3.zip",
  2759. "reference": "8.x-2.3",
  2760. "shasum": "0e8343f82330899baef65aa85d9994154e29506f"
  2761. },
  2762. "require": {
  2763. "drupal/core": "^9.0 || ^10.0"
  2764. },
  2765. "type": "drupal-module",
  2766. "extra": {
  2767. "drupal": {
  2768. "version": "8.x-2.3",
  2769. "datestamp": "1668427342",
  2770. "security-coverage": {
  2771. "status": "covered",
  2772. "message": "Covered by Drupal's security advisory policy"
  2773. }
  2774. }
  2775. },
  2776. "notification-url": "https://packages.drupal.org/8/downloads",
  2777. "license": [
  2778. "GPL-2.0-or-later"
  2779. ],
  2780. "authors": [
  2781. {
  2782. "name": "alexpott",
  2783. "homepage": "https://www.drupal.org/user/157725"
  2784. },
  2785. {
  2786. "name": "chr.fritsch",
  2787. "homepage": "https://www.drupal.org/user/2103716"
  2788. },
  2789. {
  2790. "name": "daniel.bosen",
  2791. "homepage": "https://www.drupal.org/user/404865"
  2792. },
  2793. {
  2794. "name": "ergonlogic",
  2795. "homepage": "https://www.drupal.org/user/368613"
  2796. },
  2797. {
  2798. "name": "mfb",
  2799. "homepage": "https://www.drupal.org/user/12302"
  2800. },
  2801. {
  2802. "name": "pandaski",
  2803. "homepage": "https://www.drupal.org/user/1987218"
  2804. },
  2805. {
  2806. "name": "volkerk",
  2807. "homepage": "https://www.drupal.org/user/57527"
  2808. }
  2809. ],
  2810. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  2811. "homepage": "https://www.drupal.org/project/content_lock",
  2812. "support": {
  2813. "source": "https://git.drupalcode.org/project/content_lock"
  2814. }
  2815. },
  2816. {
  2817. "name": "drupal/context",
  2818. "version": "5.0.0-rc1",
  2819. "source": {
  2820. "type": "git",
  2821. "url": "https://git.drupalcode.org/project/context.git",
  2822. "reference": "5.0.0-rc1"
  2823. },
  2824. "dist": {
  2825. "type": "zip",
  2826. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc1.zip",
  2827. "reference": "5.0.0-rc1",
  2828. "shasum": "ae1549bc5e5c75c0c6799b7b737d7391cfc5be73"
  2829. },
  2830. "require": {
  2831. "drupal/core": "^9.3 || ^10"
  2832. },
  2833. "type": "drupal-module",
  2834. "extra": {
  2835. "drupal": {
  2836. "version": "5.0.0-rc1",
  2837. "datestamp": "1677054769",
  2838. "security-coverage": {
  2839. "status": "not-covered",
  2840. "message": "RC releases are not covered by Drupal security advisories."
  2841. }
  2842. }
  2843. },
  2844. "notification-url": "https://packages.drupal.org/8/downloads",
  2845. "license": [
  2846. "MIT"
  2847. ],
  2848. "authors": [
  2849. {
  2850. "name": "Christoffer Palm",
  2851. "homepage": "http://www.oddhill.se/",
  2852. "email": "christoffer.palm@oddhill.se",
  2853. "role": "Developer"
  2854. },
  2855. {
  2856. "name": "boshtian",
  2857. "homepage": "https://www.drupal.org/user/1773456"
  2858. },
  2859. {
  2860. "name": "colan",
  2861. "homepage": "https://www.drupal.org/user/58704"
  2862. },
  2863. {
  2864. "name": "emanaton",
  2865. "homepage": "https://www.drupal.org/user/120853"
  2866. },
  2867. {
  2868. "name": "febbraro",
  2869. "homepage": "https://www.drupal.org/user/43670"
  2870. },
  2871. {
  2872. "name": "fizk",
  2873. "homepage": "https://www.drupal.org/user/473174"
  2874. },
  2875. {
  2876. "name": "hass",
  2877. "homepage": "https://www.drupal.org/user/85918"
  2878. },
  2879. {
  2880. "name": "hefox",
  2881. "homepage": "https://www.drupal.org/user/426416"
  2882. },
  2883. {
  2884. "name": "jmiccolis",
  2885. "homepage": "https://www.drupal.org/user/31731"
  2886. },
  2887. {
  2888. "name": "Kristen Pol",
  2889. "homepage": "https://www.drupal.org/user/8389"
  2890. },
  2891. {
  2892. "name": "nedjo",
  2893. "homepage": "https://www.drupal.org/user/4481"
  2894. },
  2895. {
  2896. "name": "NormySan",
  2897. "homepage": "https://www.drupal.org/user/112352"
  2898. },
  2899. {
  2900. "name": "patricksettle",
  2901. "homepage": "https://www.drupal.org/user/26618"
  2902. },
  2903. {
  2904. "name": "paulocs",
  2905. "homepage": "https://www.drupal.org/user/3640109"
  2906. },
  2907. {
  2908. "name": "Steven Jones",
  2909. "homepage": "https://www.drupal.org/user/99644"
  2910. },
  2911. {
  2912. "name": "tekante",
  2913. "homepage": "https://www.drupal.org/user/640024"
  2914. },
  2915. {
  2916. "name": "yhahn",
  2917. "homepage": "https://www.drupal.org/user/264833"
  2918. }
  2919. ],
  2920. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2921. "homepage": "https://github.com/oddhill/context",
  2922. "keywords": [
  2923. "Drupal",
  2924. "block",
  2925. "conditions",
  2926. "context",
  2927. "visibility"
  2928. ],
  2929. "support": {
  2930. "source": "https://github.com/oddhill/context",
  2931. "issues": "https://github.com/oddhill/context/issues",
  2932. "docs": "https://github.com/oddhill/context"
  2933. }
  2934. },
  2935. {
  2936. "name": "drupal/core",
  2937. "version": "10.1.6",
  2938. "source": {
  2939. "type": "git",
  2940. "url": "https://github.com/drupal/core.git",
  2941. "reference": "33695caf467e3e1e8c75d42215df57bee31be9ec"
  2942. },
  2943. "dist": {
  2944. "type": "zip",
  2945. "url": "https://api.github.com/repos/drupal/core/zipball/33695caf467e3e1e8c75d42215df57bee31be9ec",
  2946. "reference": "33695caf467e3e1e8c75d42215df57bee31be9ec",
  2947. "shasum": ""
  2948. },
  2949. "require": {
  2950. "asm89/stack-cors": "^2.1",
  2951. "composer-runtime-api": "^2.1",
  2952. "composer/semver": "^3.3",
  2953. "doctrine/annotations": "^1.14",
  2954. "egulias/email-validator": "^3.2.1|^4.0",
  2955. "ext-date": "*",
  2956. "ext-dom": "*",
  2957. "ext-filter": "*",
  2958. "ext-gd": "*",
  2959. "ext-hash": "*",
  2960. "ext-json": "*",
  2961. "ext-pcre": "*",
  2962. "ext-pdo": "*",
  2963. "ext-session": "*",
  2964. "ext-simplexml": "*",
  2965. "ext-spl": "*",
  2966. "ext-tokenizer": "*",
  2967. "ext-xml": "*",
  2968. "guzzlehttp/guzzle": "^7.5",
  2969. "guzzlehttp/psr7": "^2.4.5",
  2970. "masterminds/html5": "^2.7",
  2971. "mck89/peast": "^1.14",
  2972. "pear/archive_tar": "^1.4.14",
  2973. "php": ">=8.1.0",
  2974. "psr/log": "^3.0",
  2975. "sebastian/diff": "^4",
  2976. "symfony/console": "^6.3",
  2977. "symfony/dependency-injection": "^6.3",
  2978. "symfony/event-dispatcher": "^6.3",
  2979. "symfony/http-foundation": "^6.3",
  2980. "symfony/http-kernel": "^6.3",
  2981. "symfony/mime": "^6.3",
  2982. "symfony/polyfill-iconv": "^1.26",
  2983. "symfony/process": "^6.3",
  2984. "symfony/psr-http-message-bridge": "^2.1",
  2985. "symfony/routing": "^6.3",
  2986. "symfony/serializer": "^6.3",
  2987. "symfony/validator": "^6.3",
  2988. "symfony/yaml": "^6.3",
  2989. "twig/twig": "^3.5.0"
  2990. },
  2991. "conflict": {
  2992. "drush/drush": "<8.1.10"
  2993. },
  2994. "replace": {
  2995. "drupal/core-annotation": "self.version",
  2996. "drupal/core-assertion": "self.version",
  2997. "drupal/core-class-finder": "self.version",
  2998. "drupal/core-datetime": "self.version",
  2999. "drupal/core-dependency-injection": "self.version",
  3000. "drupal/core-diff": "self.version",
  3001. "drupal/core-discovery": "self.version",
  3002. "drupal/core-event-dispatcher": "self.version",
  3003. "drupal/core-file-cache": "self.version",
  3004. "drupal/core-file-security": "self.version",
  3005. "drupal/core-filesystem": "self.version",
  3006. "drupal/core-front-matter": "self.version",
  3007. "drupal/core-gettext": "self.version",
  3008. "drupal/core-graph": "self.version",
  3009. "drupal/core-http-foundation": "self.version",
  3010. "drupal/core-php-storage": "self.version",
  3011. "drupal/core-plugin": "self.version",
  3012. "drupal/core-proxy-builder": "self.version",
  3013. "drupal/core-render": "self.version",
  3014. "drupal/core-serialization": "self.version",
  3015. "drupal/core-transliteration": "self.version",
  3016. "drupal/core-utility": "self.version",
  3017. "drupal/core-uuid": "self.version",
  3018. "drupal/core-version": "self.version"
  3019. },
  3020. "suggest": {
  3021. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  3022. },
  3023. "type": "drupal-core",
  3024. "extra": {
  3025. "drupal-scaffold": {
  3026. "file-mapping": {
  3027. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  3028. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  3029. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  3030. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  3031. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  3032. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  3033. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  3034. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  3035. "[web-root]/index.php": "assets/scaffold/files/index.php",
  3036. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  3037. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  3038. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  3039. "[web-root]/update.php": "assets/scaffold/files/update.php",
  3040. "[web-root]/web.config": "assets/scaffold/files/web.config",
  3041. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  3042. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  3043. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  3044. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  3045. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  3046. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  3047. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  3048. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  3049. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3050. }
  3051. }
  3052. },
  3053. "autoload": {
  3054. "files": [
  3055. "includes/bootstrap.inc"
  3056. ],
  3057. "psr-4": {
  3058. "Drupal\\Core\\": "lib/Drupal/Core",
  3059. "Drupal\\Component\\": "lib/Drupal/Component"
  3060. },
  3061. "classmap": [
  3062. "lib/Drupal.php",
  3063. "lib/Drupal/Component/DependencyInjection/Container.php",
  3064. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3065. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3066. "lib/Drupal/Component/Utility/Timer.php",
  3067. "lib/Drupal/Component/Utility/Unicode.php",
  3068. "lib/Drupal/Core/Cache/Cache.php",
  3069. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3070. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3071. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3072. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3073. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3074. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3075. "lib/Drupal/Core/Database/Connection.php",
  3076. "lib/Drupal/Core/Database/Database.php",
  3077. "lib/Drupal/Core/Database/StatementInterface.php",
  3078. "lib/Drupal/Core/DependencyInjection/Container.php",
  3079. "lib/Drupal/Core/DrupalKernel.php",
  3080. "lib/Drupal/Core/DrupalKernelInterface.php",
  3081. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3082. "lib/Drupal/Core/Site/Settings.php"
  3083. ]
  3084. },
  3085. "notification-url": "https://packagist.org/downloads/",
  3086. "license": [
  3087. "GPL-2.0-or-later"
  3088. ],
  3089. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3090. "support": {
  3091. "source": "https://github.com/drupal/core/tree/10.1.6"
  3092. },
  3093. "time": "2023-11-01T11:59:20+00:00"
  3094. },
  3095. {
  3096. "name": "drupal/core-composer-scaffold",
  3097. "version": "10.1.6",
  3098. "source": {
  3099. "type": "git",
  3100. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3101. "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51"
  3102. },
  3103. "dist": {
  3104. "type": "zip",
  3105. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51",
  3106. "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51",
  3107. "shasum": ""
  3108. },
  3109. "require": {
  3110. "composer-plugin-api": "^2",
  3111. "php": ">=7.3.0"
  3112. },
  3113. "conflict": {
  3114. "drupal-composer/drupal-scaffold": "*"
  3115. },
  3116. "require-dev": {
  3117. "composer/composer": "^1.8@stable"
  3118. },
  3119. "type": "composer-plugin",
  3120. "extra": {
  3121. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3122. "branch-alias": {
  3123. "dev-master": "1.0.x-dev"
  3124. }
  3125. },
  3126. "autoload": {
  3127. "psr-4": {
  3128. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3129. }
  3130. },
  3131. "notification-url": "https://packagist.org/downloads/",
  3132. "license": [
  3133. "GPL-2.0-or-later"
  3134. ],
  3135. "description": "A flexible Composer project scaffold builder.",
  3136. "homepage": "https://www.drupal.org/project/drupal",
  3137. "keywords": [
  3138. "drupal"
  3139. ],
  3140. "support": {
  3141. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.1.6"
  3142. },
  3143. "time": "2023-04-30T16:15:32+00:00"
  3144. },
  3145. {
  3146. "name": "drupal/core-project-message",
  3147. "version": "10.1.6",
  3148. "source": {
  3149. "type": "git",
  3150. "url": "https://github.com/drupal/core-project-message.git",
  3151. "reference": "59b4475f01debd9a0f173938a06189982c8ebffd"
  3152. },
  3153. "dist": {
  3154. "type": "zip",
  3155. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/59b4475f01debd9a0f173938a06189982c8ebffd",
  3156. "reference": "59b4475f01debd9a0f173938a06189982c8ebffd",
  3157. "shasum": ""
  3158. },
  3159. "require": {
  3160. "composer-plugin-api": "^2",
  3161. "php": ">=7.3.0"
  3162. },
  3163. "type": "composer-plugin",
  3164. "extra": {
  3165. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3166. },
  3167. "autoload": {
  3168. "psr-4": {
  3169. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3170. }
  3171. },
  3172. "notification-url": "https://packagist.org/downloads/",
  3173. "license": [
  3174. "GPL-2.0-or-later"
  3175. ],
  3176. "description": "Adds a message after Composer installation.",
  3177. "homepage": "https://www.drupal.org/project/drupal",
  3178. "keywords": [
  3179. "drupal"
  3180. ],
  3181. "support": {
  3182. "source": "https://github.com/drupal/core-project-message/tree/10.1.6"
  3183. },
  3184. "time": "2022-07-01T08:32:39+00:00"
  3185. },
  3186. {
  3187. "name": "drupal/core-recommended",
  3188. "version": "10.1.6",
  3189. "source": {
  3190. "type": "git",
  3191. "url": "https://github.com/drupal/core-recommended.git",
  3192. "reference": "13f5968854fe8bc02e659d8a4facc04a1a576ce5"
  3193. },
  3194. "dist": {
  3195. "type": "zip",
  3196. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/13f5968854fe8bc02e659d8a4facc04a1a576ce5",
  3197. "reference": "13f5968854fe8bc02e659d8a4facc04a1a576ce5",
  3198. "shasum": ""
  3199. },
  3200. "require": {
  3201. "asm89/stack-cors": "~v2.1.1",
  3202. "composer/semver": "~3.3.2",
  3203. "doctrine/annotations": "~1.14.3",
  3204. "doctrine/deprecations": "~v1.1.1",
  3205. "doctrine/lexer": "~2.1.0",
  3206. "drupal/core": "10.1.6",
  3207. "egulias/email-validator": "~4.0.1",
  3208. "guzzlehttp/guzzle": "~7.7.0",
  3209. "guzzlehttp/psr7": "~2.5.0",
  3210. "masterminds/html5": "~2.8.0",
  3211. "mck89/peast": "~v1.15.4",
  3212. "pear/archive_tar": "~1.4.14",
  3213. "pear/console_getopt": "~v1.4.3",
  3214. "pear/pear-core-minimal": "~v1.10.13",
  3215. "pear/pear_exception": "~v1.0.2",
  3216. "psr/cache": "~3.0.0",
  3217. "psr/container": "~2.0.2",
  3218. "psr/event-dispatcher": "~1.0.0",
  3219. "psr/http-client": "~1.0.2",
  3220. "psr/http-factory": "~1.0.2",
  3221. "psr/log": "~3.0.0",
  3222. "ralouphie/getallheaders": "~3.0.3",
  3223. "sebastian/diff": "~4.0.5",
  3224. "symfony/console": "~v6.3.0",
  3225. "symfony/dependency-injection": "~v6.3.0",
  3226. "symfony/deprecation-contracts": "~v3.3.0",
  3227. "symfony/error-handler": "~v6.3.0",
  3228. "symfony/event-dispatcher": "~v6.3.0",
  3229. "symfony/event-dispatcher-contracts": "~v3.3.0",
  3230. "symfony/http-foundation": "~v6.3.0",
  3231. "symfony/http-kernel": "~v6.3.0",
  3232. "symfony/mime": "~v6.3.0",
  3233. "symfony/polyfill-ctype": "~v1.27.0",
  3234. "symfony/polyfill-iconv": "~v1.27.0",
  3235. "symfony/polyfill-intl-grapheme": "~v1.27.0",
  3236. "symfony/polyfill-intl-idn": "~v1.27.0",
  3237. "symfony/polyfill-intl-normalizer": "~v1.27.0",
  3238. "symfony/polyfill-mbstring": "~v1.27.0",
  3239. "symfony/polyfill-php83": "~v1.27.0",
  3240. "symfony/process": "~v6.3.0",
  3241. "symfony/psr-http-message-bridge": "~v2.2.0",
  3242. "symfony/routing": "~v6.3.0",
  3243. "symfony/serializer": "~v6.3.0",
  3244. "symfony/service-contracts": "~v3.3.0",
  3245. "symfony/string": "~v6.3.0",
  3246. "symfony/translation-contracts": "~v3.3.0",
  3247. "symfony/validator": "~v6.3.0",
  3248. "symfony/var-dumper": "~v6.3.0",
  3249. "symfony/var-exporter": "~v6.3.0",
  3250. "symfony/yaml": "~v6.3.0",
  3251. "twig/twig": "~v3.6.0"
  3252. },
  3253. "conflict": {
  3254. "webflo/drupal-core-strict": "*"
  3255. },
  3256. "type": "metapackage",
  3257. "notification-url": "https://packagist.org/downloads/",
  3258. "license": [
  3259. "GPL-2.0-or-later"
  3260. ],
  3261. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3262. "support": {
  3263. "source": "https://github.com/drupal/core-recommended/tree/10.1.6"
  3264. },
  3265. "time": "2023-11-01T11:59:20+00:00"
  3266. },
  3267. {
  3268. "name": "drupal/cshs",
  3269. "version": "4.0.0",
  3270. "source": {
  3271. "type": "git",
  3272. "url": "https://git.drupalcode.org/project/cshs.git",
  3273. "reference": "4.0.0"
  3274. },
  3275. "dist": {
  3276. "type": "zip",
  3277. "url": "https://ftp.drupal.org/files/projects/cshs-4.0.0.zip",
  3278. "reference": "4.0.0",
  3279. "shasum": "ebcd3932481aba4004f4e2078038cdc7293738b0"
  3280. },
  3281. "require": {
  3282. "drupal/core": "^9 || ^10",
  3283. "php": ">=8.0"
  3284. },
  3285. "type": "drupal-module",
  3286. "extra": {
  3287. "drupal": {
  3288. "version": "4.0.0",
  3289. "datestamp": "1668457722",
  3290. "security-coverage": {
  3291. "status": "covered",
  3292. "message": "Covered by Drupal's security advisory policy"
  3293. }
  3294. }
  3295. },
  3296. "notification-url": "https://packages.drupal.org/8/downloads",
  3297. "license": [
  3298. "GPL-2.0-or-later"
  3299. ],
  3300. "authors": [
  3301. {
  3302. "name": "Walter Jenner",
  3303. "homepage": "https://drupal.org/u/valderama"
  3304. },
  3305. {
  3306. "name": "Sergii Bondarenko",
  3307. "homepage": "https://drupal.org/u/BR0kEN",
  3308. "email": "sb@firstvector.org"
  3309. },
  3310. {
  3311. "name": "Daneel Cruz",
  3312. "homepage": "https://drupal.org/u/daneelcm"
  3313. },
  3314. {
  3315. "name": "Purushotam Rai",
  3316. "homepage": "https://drupal.org/u/purushotam.rai"
  3317. }
  3318. ],
  3319. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  3320. "homepage": "https://www.drupal.org/project/cshs",
  3321. "keywords": [
  3322. "client-side-select",
  3323. "hierarchical-select",
  3324. "module",
  3325. "select",
  3326. "taxonomy"
  3327. ],
  3328. "support": {
  3329. "source": "https://git.drupalcode.org/project/cshs",
  3330. "issues": "https://www.drupal.org/project/issues/cshs"
  3331. }
  3332. },
  3333. {
  3334. "name": "drupal/ctools",
  3335. "version": "3.14.0",
  3336. "source": {
  3337. "type": "git",
  3338. "url": "https://git.drupalcode.org/project/ctools.git",
  3339. "reference": "8.x-3.14"
  3340. },
  3341. "dist": {
  3342. "type": "zip",
  3343. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.14.zip",
  3344. "reference": "8.x-3.14",
  3345. "shasum": "8895a8e47199b458013bc153ceafa0b1495f33c1"
  3346. },
  3347. "require": {
  3348. "drupal/core": "^9.3 || ^10"
  3349. },
  3350. "type": "drupal-module",
  3351. "extra": {
  3352. "drupal": {
  3353. "version": "8.x-3.14",
  3354. "datestamp": "1684299793",
  3355. "security-coverage": {
  3356. "status": "covered",
  3357. "message": "Covered by Drupal's security advisory policy"
  3358. }
  3359. },
  3360. "branch-alias": {
  3361. "dev-8.x-3.x": "3.x-dev"
  3362. }
  3363. },
  3364. "notification-url": "https://packages.drupal.org/8/downloads",
  3365. "license": [
  3366. "GPL-2.0-or-later"
  3367. ],
  3368. "authors": [
  3369. {
  3370. "name": "Kris Vanderwater (EclipseGc)",
  3371. "homepage": "https://www.drupal.org/u/eclipsegc",
  3372. "role": "Maintainer"
  3373. },
  3374. {
  3375. "name": "Jakob Perry (japerry)",
  3376. "homepage": "https://www.drupal.org/u/japerry",
  3377. "role": "Maintainer"
  3378. },
  3379. {
  3380. "name": "Tim Plunkett (tim.plunkett)",
  3381. "homepage": "https://www.drupal.org/u/timplunkett",
  3382. "role": "Maintainer"
  3383. },
  3384. {
  3385. "name": "James Gilliland (neclimdul)",
  3386. "homepage": "https://www.drupal.org/u/neclimdul",
  3387. "role": "Maintainer"
  3388. },
  3389. {
  3390. "name": "Daniel Wehner (dawehner)",
  3391. "homepage": "https://www.drupal.org/u/dawehner",
  3392. "role": "Maintainer"
  3393. },
  3394. {
  3395. "name": "joelpittet",
  3396. "homepage": "https://www.drupal.org/user/160302"
  3397. },
  3398. {
  3399. "name": "merlinofchaos",
  3400. "homepage": "https://www.drupal.org/user/26979"
  3401. },
  3402. {
  3403. "name": "neclimdul",
  3404. "homepage": "https://www.drupal.org/user/48673"
  3405. },
  3406. {
  3407. "name": "sdboyer",
  3408. "homepage": "https://www.drupal.org/user/146719"
  3409. },
  3410. {
  3411. "name": "sun",
  3412. "homepage": "https://www.drupal.org/user/54136"
  3413. },
  3414. {
  3415. "name": "tim.plunkett",
  3416. "homepage": "https://www.drupal.org/user/241634"
  3417. }
  3418. ],
  3419. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3420. "homepage": "https://www.drupal.org/project/ctools",
  3421. "support": {
  3422. "source": "https://git.drupalcode.org/project/ctools",
  3423. "issues": "https://www.drupal.org/project/issues/ctools"
  3424. }
  3425. },
  3426. {
  3427. "name": "drupal/date_range_formatter",
  3428. "version": "dev-9.0.x",
  3429. "source": {
  3430. "type": "git",
  3431. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3432. "reference": "8808a9c324c781b4a7cae9ea5f16017a6b8f63f7"
  3433. },
  3434. "require": {
  3435. "drupal/core": "^8 || ^9 || ^10"
  3436. },
  3437. "type": "drupal-module",
  3438. "extra": {
  3439. "branch-alias": {
  3440. "dev-9.0.x": "9.0.x-dev"
  3441. },
  3442. "drupal": {
  3443. "version": "9.0.x-dev",
  3444. "datestamp": "1661511425",
  3445. "security-coverage": {
  3446. "status": "not-covered",
  3447. "message": "Dev releases are not covered by Drupal security advisories."
  3448. }
  3449. }
  3450. },
  3451. "notification-url": "https://packages.drupal.org/8/downloads",
  3452. "license": [
  3453. "GPL-2.0-or-later"
  3454. ],
  3455. "authors": [
  3456. {
  3457. "name": "maximpodorov",
  3458. "homepage": "https://www.drupal.org/user/515310"
  3459. },
  3460. {
  3461. "name": "sudishth",
  3462. "homepage": "https://www.drupal.org/user/1440562"
  3463. }
  3464. ],
  3465. "description": "Formats date ranges.",
  3466. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3467. "support": {
  3468. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3469. }
  3470. },
  3471. {
  3472. "name": "drupal/devel",
  3473. "version": "5.1.2",
  3474. "source": {
  3475. "type": "git",
  3476. "url": "https://git.drupalcode.org/project/devel.git",
  3477. "reference": "5.1.2"
  3478. },
  3479. "dist": {
  3480. "type": "zip",
  3481. "url": "https://ftp.drupal.org/files/projects/devel-5.1.2.zip",
  3482. "reference": "5.1.2",
  3483. "shasum": "9b35e38bf2043bf87f88585b3d9100f38da8f07f"
  3484. },
  3485. "require": {
  3486. "doctrine/common": "^2.7 || ^3.4",
  3487. "drupal/core": "^9 || ^10",
  3488. "php": ">=7.4",
  3489. "symfony/var-dumper": "^4 || ^5 || ^6"
  3490. },
  3491. "conflict": {
  3492. "kint-php/kint": "<3"
  3493. },
  3494. "require-dev": {
  3495. "drush/drush": "^11"
  3496. },
  3497. "suggest": {
  3498. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3499. },
  3500. "type": "drupal-module",
  3501. "extra": {
  3502. "drupal": {
  3503. "version": "5.1.2",
  3504. "datestamp": "1686161028",
  3505. "security-coverage": {
  3506. "status": "covered",
  3507. "message": "Covered by Drupal's security advisory policy"
  3508. }
  3509. },
  3510. "drush": {
  3511. "services": {
  3512. "drush.services.yml": "^9 || ^10 || ^11"
  3513. }
  3514. }
  3515. },
  3516. "notification-url": "https://packages.drupal.org/8/downloads",
  3517. "license": [
  3518. "GPL-2.0-or-later"
  3519. ],
  3520. "authors": [
  3521. {
  3522. "name": "drupalspoons",
  3523. "homepage": "https://www.drupal.org/user/3647684"
  3524. },
  3525. {
  3526. "name": "moshe weitzman",
  3527. "homepage": "https://www.drupal.org/user/23"
  3528. }
  3529. ],
  3530. "description": "Various blocks, pages, and functions for developers.",
  3531. "homepage": "https://www.drupal.org/project/devel",
  3532. "support": {
  3533. "source": "https://gitlab.com/drupalspoons/devel",
  3534. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3535. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3536. }
  3537. },
  3538. {
  3539. "name": "drupal/devel_kint_extras",
  3540. "version": "1.1.0",
  3541. "source": {
  3542. "type": "git",
  3543. "url": "https://git.drupalcode.org/project/devel_kint_extras.git",
  3544. "reference": "1.1.0"
  3545. },
  3546. "dist": {
  3547. "type": "zip",
  3548. "url": "https://ftp.drupal.org/files/projects/devel_kint_extras-1.1.0.zip",
  3549. "reference": "1.1.0",
  3550. "shasum": "c9f485f6f2562710d2bd2c62f0073aa0049f5c8c"
  3551. },
  3552. "require": {
  3553. "drupal/core": "^9 || ^10",
  3554. "drupal/devel": "^4.0 || ^5.0",
  3555. "kint-php/kint": "^3.3 || ^4.0"
  3556. },
  3557. "type": "drupal-module",
  3558. "extra": {
  3559. "drupal": {
  3560. "version": "1.1.0",
  3561. "datestamp": "1663760998",
  3562. "security-coverage": {
  3563. "status": "covered",
  3564. "message": "Covered by Drupal's security advisory policy"
  3565. }
  3566. }
  3567. },
  3568. "notification-url": "https://packages.drupal.org/8/downloads",
  3569. "license": [
  3570. "GPL-2.0-or-later"
  3571. ],
  3572. "authors": [
  3573. {
  3574. "name": "Jan Chojnacki",
  3575. "homepage": "https://www.drupal.org/u/janchojnacki"
  3576. },
  3577. {
  3578. "name": "Other contributors",
  3579. "homepage": "https://www.drupal.org/node/3164492/committers"
  3580. }
  3581. ],
  3582. "description": "Shows methods and statics available for an object when using Kint with Devel",
  3583. "homepage": "https://www.drupal.org/project/devel_kint_extras",
  3584. "support": {
  3585. "source": "http://git.drupal.org/project/devel_kint_extras.git",
  3586. "issues": "https://www.drupal.org/project/issues/devel_kint_extras",
  3587. "chat": "irc://irc.freenode.org/drupal-contribute"
  3588. }
  3589. },
  3590. {
  3591. "name": "drupal/email_registration",
  3592. "version": "1.3.0",
  3593. "source": {
  3594. "type": "git",
  3595. "url": "https://git.drupalcode.org/project/email_registration.git",
  3596. "reference": "8.x-1.3"
  3597. },
  3598. "dist": {
  3599. "type": "zip",
  3600. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.3.zip",
  3601. "reference": "8.x-1.3",
  3602. "shasum": "6fe425246511e29dfef4294139c8704aec16cbec"
  3603. },
  3604. "require": {
  3605. "drupal/core": "^9.1 || ^10"
  3606. },
  3607. "conflict": {
  3608. "drupal/commerce": "<2.12"
  3609. },
  3610. "require-dev": {
  3611. "drupal/commerce": "^2.0",
  3612. "drupal/token": "*"
  3613. },
  3614. "type": "drupal-module",
  3615. "extra": {
  3616. "drupal": {
  3617. "version": "8.x-1.3",
  3618. "datestamp": "1697182609",
  3619. "security-coverage": {
  3620. "status": "covered",
  3621. "message": "Covered by Drupal's security advisory policy"
  3622. }
  3623. }
  3624. },
  3625. "notification-url": "https://packages.drupal.org/8/downloads",
  3626. "license": [
  3627. "GPL-2.0-or-later"
  3628. ],
  3629. "authors": [
  3630. {
  3631. "name": "Greg Knaddison (greggles)",
  3632. "homepage": "https://www.drupal.org/u/greggles",
  3633. "role": "Maintainer"
  3634. },
  3635. {
  3636. "name": "Andrey Postnikov (andypost)",
  3637. "homepage": "https://www.drupal.org/u/andypost",
  3638. "role": "Maintainer"
  3639. },
  3640. {
  3641. "name": "Chris Herberte",
  3642. "homepage": "https://www.drupal.org/u/chris-herberte",
  3643. "role": "Maintainer"
  3644. },
  3645. {
  3646. "name": "Moshe Weitzman (moshe weitzman)",
  3647. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3648. "role": "Maintainer"
  3649. },
  3650. {
  3651. "name": "Grevil",
  3652. "homepage": "https://www.drupal.org/user/3668491"
  3653. },
  3654. {
  3655. "name": "moshe weitzman",
  3656. "homepage": "https://www.drupal.org/user/23"
  3657. }
  3658. ],
  3659. "description": "Allows users to register with an email address as their username.",
  3660. "homepage": "https://www.drupal.org/project/email_registration",
  3661. "support": {
  3662. "source": "https://git.drupalcode.org/project/email_registration",
  3663. "issues": "http://drupal.org/project/issues/email_registration"
  3664. }
  3665. },
  3666. {
  3667. "name": "drupal/embed",
  3668. "version": "1.7.0",
  3669. "source": {
  3670. "type": "git",
  3671. "url": "https://git.drupalcode.org/project/embed.git",
  3672. "reference": "8.x-1.7"
  3673. },
  3674. "dist": {
  3675. "type": "zip",
  3676. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.7.zip",
  3677. "reference": "8.x-1.7",
  3678. "shasum": "b7ca4264be51038f947d26b6725fc0446b224f60"
  3679. },
  3680. "require": {
  3681. "drupal/core": "^9.3 | ^10"
  3682. },
  3683. "require-dev": {
  3684. "drupal/ckeditor": "*"
  3685. },
  3686. "type": "drupal-module",
  3687. "extra": {
  3688. "drupal": {
  3689. "version": "8.x-1.7",
  3690. "datestamp": "1697642867",
  3691. "security-coverage": {
  3692. "status": "covered",
  3693. "message": "Covered by Drupal's security advisory policy"
  3694. }
  3695. }
  3696. },
  3697. "notification-url": "https://packages.drupal.org/8/downloads",
  3698. "license": [
  3699. "GPL-2.0-or-later"
  3700. ],
  3701. "authors": [
  3702. {
  3703. "name": "cs_shadow",
  3704. "homepage": "https://www.drupal.org/user/2828287"
  3705. },
  3706. {
  3707. "name": "Dave Reid",
  3708. "homepage": "https://www.drupal.org/user/53892"
  3709. },
  3710. {
  3711. "name": "Devin Carlson",
  3712. "homepage": "https://www.drupal.org/user/290182"
  3713. },
  3714. {
  3715. "name": "Drupal Media Team",
  3716. "homepage": "https://www.drupal.org/user/3260690"
  3717. },
  3718. {
  3719. "name": "phenaproxima",
  3720. "homepage": "https://www.drupal.org/user/205645"
  3721. },
  3722. {
  3723. "name": "slashrsm",
  3724. "homepage": "https://www.drupal.org/user/744628"
  3725. }
  3726. ],
  3727. "description": "Provides a framework for different types of embeds in text editors.",
  3728. "homepage": "https://www.drupal.org/project/embed",
  3729. "support": {
  3730. "source": "https://git.drupalcode.org/project/embed"
  3731. }
  3732. },
  3733. {
  3734. "name": "drupal/entity",
  3735. "version": "1.4.0",
  3736. "source": {
  3737. "type": "git",
  3738. "url": "https://git.drupalcode.org/project/entity.git",
  3739. "reference": "8.x-1.4"
  3740. },
  3741. "dist": {
  3742. "type": "zip",
  3743. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.4.zip",
  3744. "reference": "8.x-1.4",
  3745. "shasum": "1cf7712318fad144eab106a8fcfcd396aeb5676f"
  3746. },
  3747. "require": {
  3748. "drupal/core": "^9.2|^10.0"
  3749. },
  3750. "type": "drupal-module",
  3751. "extra": {
  3752. "drupal": {
  3753. "version": "8.x-1.4",
  3754. "datestamp": "1661898023",
  3755. "security-coverage": {
  3756. "status": "covered",
  3757. "message": "Covered by Drupal's security advisory policy"
  3758. }
  3759. }
  3760. },
  3761. "notification-url": "https://packages.drupal.org/8/downloads",
  3762. "license": [
  3763. "GPL-2.0-or-later"
  3764. ],
  3765. "authors": [
  3766. {
  3767. "name": "Berdir",
  3768. "homepage": "https://www.drupal.org/user/214652"
  3769. },
  3770. {
  3771. "name": "bojanz",
  3772. "homepage": "https://www.drupal.org/user/86106"
  3773. },
  3774. {
  3775. "name": "dawehner",
  3776. "homepage": "https://www.drupal.org/user/99340"
  3777. },
  3778. {
  3779. "name": "dixon_",
  3780. "homepage": "https://www.drupal.org/user/239911"
  3781. },
  3782. {
  3783. "name": "fago",
  3784. "homepage": "https://www.drupal.org/user/16747"
  3785. },
  3786. {
  3787. "name": "mglaman",
  3788. "homepage": "https://www.drupal.org/user/2416470"
  3789. },
  3790. {
  3791. "name": "TR",
  3792. "homepage": "https://www.drupal.org/user/202830"
  3793. }
  3794. ],
  3795. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3796. "homepage": "https://www.drupal.org/project/entity",
  3797. "support": {
  3798. "source": "https://git.drupalcode.org/project/entity",
  3799. "issues": "https://www.drupal.org/project/issues/entity"
  3800. }
  3801. },
  3802. {
  3803. "name": "drupal/entity_browser",
  3804. "version": "2.9.0",
  3805. "source": {
  3806. "type": "git",
  3807. "url": "https://git.drupalcode.org/project/entity_browser.git",
  3808. "reference": "8.x-2.9"
  3809. },
  3810. "dist": {
  3811. "type": "zip",
  3812. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.9.zip",
  3813. "reference": "8.x-2.9",
  3814. "shasum": "251afad80cde9fa547501a8d9de5d94b9f5bacff"
  3815. },
  3816. "require": {
  3817. "drupal/core": "^9.2 || ^10"
  3818. },
  3819. "require-dev": {
  3820. "drupal/embed": "~1.0",
  3821. "drupal/entity_embed": "1.x-dev",
  3822. "drupal/entity_reference_revisions": "1.x-dev",
  3823. "drupal/entityqueue": "1.x-dev",
  3824. "drupal/inline_entity_form": "1.x-dev",
  3825. "drupal/paragraphs": "1.x-dev",
  3826. "drupal/token": "1.x-dev"
  3827. },
  3828. "type": "drupal-module",
  3829. "extra": {
  3830. "drupal": {
  3831. "version": "8.x-2.9",
  3832. "datestamp": "1674070933",
  3833. "security-coverage": {
  3834. "status": "covered",
  3835. "message": "Covered by Drupal's security advisory policy"
  3836. }
  3837. }
  3838. },
  3839. "notification-url": "https://packages.drupal.org/8/downloads",
  3840. "license": [
  3841. "GPL-2.0+"
  3842. ],
  3843. "authors": [
  3844. {
  3845. "name": "Janez Urevc",
  3846. "homepage": "https://github.com/slashrsm",
  3847. "role": "Maintainer"
  3848. },
  3849. {
  3850. "name": "Primoz Hmeljak",
  3851. "homepage": "https://github.com/primsi",
  3852. "role": "Maintainer"
  3853. },
  3854. {
  3855. "name": "See other contributors",
  3856. "homepage": "https://www.drupal.org/node/1943336/committers",
  3857. "role": "contributor"
  3858. },
  3859. {
  3860. "name": "Drupal Media Team",
  3861. "homepage": "https://www.drupal.org/user/3260690"
  3862. },
  3863. {
  3864. "name": "marcingy",
  3865. "homepage": "https://www.drupal.org/user/77320"
  3866. },
  3867. {
  3868. "name": "oknate",
  3869. "homepage": "https://www.drupal.org/user/471638"
  3870. },
  3871. {
  3872. "name": "Primsi",
  3873. "homepage": "https://www.drupal.org/user/282629"
  3874. },
  3875. {
  3876. "name": "samuel.mortenson",
  3877. "homepage": "https://www.drupal.org/user/2582268"
  3878. },
  3879. {
  3880. "name": "slashrsm",
  3881. "homepage": "https://www.drupal.org/user/744628"
  3882. }
  3883. ],
  3884. "description": "Entity browsing and selecting component.",
  3885. "homepage": "http://drupal.org/project/entity_browser",
  3886. "support": {
  3887. "source": "https://git.drupalcode.org/project/entity_browser",
  3888. "issues": "https://www.drupal.org/project/issues/entity_browser",
  3889. "irc": "irc://irc.freenode.org/drupal-contribute"
  3890. }
  3891. },
  3892. {
  3893. "name": "drupal/entity_browser_enhanced",
  3894. "version": "2.0.0",
  3895. "source": {
  3896. "type": "git",
  3897. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  3898. "reference": "2.0.0"
  3899. },
  3900. "dist": {
  3901. "type": "zip",
  3902. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.0.zip",
  3903. "reference": "2.0.0",
  3904. "shasum": "2880829c847c1c4b06092ab5335adb6ea960317b"
  3905. },
  3906. "require": {
  3907. "drupal/core": "^9 || ^10",
  3908. "drupal/entity_browser": "~2.0"
  3909. },
  3910. "type": "drupal-module",
  3911. "extra": {
  3912. "drupal": {
  3913. "version": "2.0.0",
  3914. "datestamp": "1697211243",
  3915. "security-coverage": {
  3916. "status": "covered",
  3917. "message": "Covered by Drupal's security advisory policy"
  3918. }
  3919. }
  3920. },
  3921. "notification-url": "https://packages.drupal.org/8/downloads",
  3922. "license": [
  3923. "GPL-2.0-or-later"
  3924. ],
  3925. "authors": [
  3926. {
  3927. "name": "Vardot",
  3928. "homepage": "https://www.drupal.org/vardot",
  3929. "role": "Maintainer"
  3930. },
  3931. {
  3932. "name": "Rajab Natshah",
  3933. "homepage": "https://www.drupal.org/user/1414312"
  3934. }
  3935. ],
  3936. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  3937. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  3938. "support": {
  3939. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  3940. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  3941. }
  3942. },
  3943. {
  3944. "name": "drupal/entity_clone",
  3945. "version": "dev-2.x",
  3946. "source": {
  3947. "type": "git",
  3948. "url": "https://git.drupalcode.org/project/entity_clone.git",
  3949. "reference": "5cbfafdbc860cbda7bef91c89628aefca25efe7b"
  3950. },
  3951. "require": {
  3952. "drupal/core": "^8.8 || ^9 || ^10"
  3953. },
  3954. "require-dev": {
  3955. "drupal/entity_browser": "2.x-dev",
  3956. "drupal/entity_usage": "2.x-dev",
  3957. "drupal/paragraphs": "^1.0",
  3958. "drupal/search_api": "~1.0"
  3959. },
  3960. "type": "drupal-module",
  3961. "extra": {
  3962. "branch-alias": {
  3963. "dev-2.x": "2.x-dev"
  3964. },
  3965. "drupal": {
  3966. "version": "2.0.0-beta4+3-dev",
  3967. "datestamp": "1697545494",
  3968. "security-coverage": {
  3969. "status": "not-covered",
  3970. "message": "Dev releases are not covered by Drupal security advisories."
  3971. }
  3972. }
  3973. },
  3974. "notification-url": "https://packages.drupal.org/8/downloads",
  3975. "license": [
  3976. "GPL-2.0-or-later"
  3977. ],
  3978. "authors": [
  3979. {
  3980. "name": "colan",
  3981. "homepage": "https://www.drupal.org/user/58704"
  3982. },
  3983. {
  3984. "name": "joevagyok",
  3985. "homepage": "https://www.drupal.org/user/2876343"
  3986. },
  3987. {
  3988. "name": "NickDickinsonWilde",
  3989. "homepage": "https://www.drupal.org/user/3094661"
  3990. },
  3991. {
  3992. "name": "Rajeshreeputra",
  3993. "homepage": "https://www.drupal.org/user/3418561"
  3994. },
  3995. {
  3996. "name": "Upchuk",
  3997. "homepage": "https://www.drupal.org/user/1885838"
  3998. },
  3999. {
  4000. "name": "vpeltot",
  4001. "homepage": "https://www.drupal.org/user/1361586"
  4002. }
  4003. ],
  4004. "description": "Add a clone action for all entities.",
  4005. "homepage": "https://drupal.org/project/entity_clone",
  4006. "support": {
  4007. "source": "https://git.drupalcode.org/project/entity_clone"
  4008. }
  4009. },
  4010. {
  4011. "name": "drupal/entity_reference_revisions",
  4012. "version": "1.10.0",
  4013. "source": {
  4014. "type": "git",
  4015. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  4016. "reference": "8.x-1.10"
  4017. },
  4018. "dist": {
  4019. "type": "zip",
  4020. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.10.zip",
  4021. "reference": "8.x-1.10",
  4022. "shasum": "edd23b91c4a34db65ea22c4db54b7458edc7513b"
  4023. },
  4024. "require": {
  4025. "drupal/core": "^9 || ^10"
  4026. },
  4027. "require-dev": {
  4028. "drupal/diff": "1.x-dev"
  4029. },
  4030. "type": "drupal-module",
  4031. "extra": {
  4032. "drupal": {
  4033. "version": "8.x-1.10",
  4034. "datestamp": "1660664712",
  4035. "security-coverage": {
  4036. "status": "covered",
  4037. "message": "Covered by Drupal's security advisory policy"
  4038. }
  4039. },
  4040. "drush": {
  4041. "services": {
  4042. "drush.services.yml": "^9 || ^10 || ^11"
  4043. }
  4044. }
  4045. },
  4046. "notification-url": "https://packages.drupal.org/8/downloads",
  4047. "license": [
  4048. "GPL-2.0-or-later"
  4049. ],
  4050. "authors": [
  4051. {
  4052. "name": "Berdir",
  4053. "homepage": "https://www.drupal.org/user/214652"
  4054. },
  4055. {
  4056. "name": "Frans",
  4057. "homepage": "https://www.drupal.org/user/514222"
  4058. },
  4059. {
  4060. "name": "jeroen.b",
  4061. "homepage": "https://www.drupal.org/user/1853532"
  4062. },
  4063. {
  4064. "name": "miro_dietiker",
  4065. "homepage": "https://www.drupal.org/user/227761"
  4066. }
  4067. ],
  4068. "description": "Entity Reference Revisions",
  4069. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  4070. "support": {
  4071. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  4072. }
  4073. },
  4074. {
  4075. "name": "drupal/extlink",
  4076. "version": "1.7.0",
  4077. "source": {
  4078. "type": "git",
  4079. "url": "https://git.drupalcode.org/project/extlink.git",
  4080. "reference": "8.x-1.7"
  4081. },
  4082. "dist": {
  4083. "type": "zip",
  4084. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.7.zip",
  4085. "reference": "8.x-1.7",
  4086. "shasum": "38650688b5a58496db59f40b2a7f36c4bedcbfb4"
  4087. },
  4088. "require": {
  4089. "drupal/core": "^8 || ^9 || ^10"
  4090. },
  4091. "type": "drupal-module",
  4092. "extra": {
  4093. "drupal": {
  4094. "version": "8.x-1.7",
  4095. "datestamp": "1665770295",
  4096. "security-coverage": {
  4097. "status": "covered",
  4098. "message": "Covered by Drupal's security advisory policy"
  4099. }
  4100. }
  4101. },
  4102. "notification-url": "https://packages.drupal.org/8/downloads",
  4103. "license": [
  4104. "GPL-2.0-or-later"
  4105. ],
  4106. "authors": [
  4107. {
  4108. "name": "Nate Lampton",
  4109. "homepage": "https://www.drupal.org/u/quicksketch",
  4110. "role": "Maintainer"
  4111. },
  4112. {
  4113. "name": "Lachlan Ennis",
  4114. "homepage": "https://www.drupal.org/u/elachlan",
  4115. "role": "Maintainer"
  4116. },
  4117. {
  4118. "name": "Neslee Canil Pinto",
  4119. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4120. "role": "Maintainer"
  4121. }
  4122. ],
  4123. "description": "Modify behavior and appearance of external links.",
  4124. "homepage": "https://www.drupal.org/project/extlink",
  4125. "keywords": [
  4126. "Drupal",
  4127. "External Links"
  4128. ],
  4129. "support": {
  4130. "source": "https://git.drupalcode.org/project/extlink",
  4131. "issues": "https://www.drupal.org/project/issues/extlink"
  4132. }
  4133. },
  4134. {
  4135. "name": "drupal/field_group",
  4136. "version": "dev-3.x",
  4137. "source": {
  4138. "type": "git",
  4139. "url": "https://git.drupalcode.org/project/field_group.git",
  4140. "reference": "1211c8f4e06592418ca368afe88ef9aa237e900a"
  4141. },
  4142. "require": {
  4143. "drupal/core": "^9.2 || ^10"
  4144. },
  4145. "type": "drupal-module",
  4146. "extra": {
  4147. "branch-alias": {
  4148. "dev-3.x": "3.x-dev"
  4149. },
  4150. "drupal": {
  4151. "version": "8.x-3.4+4-dev",
  4152. "datestamp": "1696831482",
  4153. "security-coverage": {
  4154. "status": "not-covered",
  4155. "message": "Dev releases are not covered by Drupal security advisories."
  4156. }
  4157. }
  4158. },
  4159. "notification-url": "https://packages.drupal.org/8/downloads",
  4160. "license": [
  4161. "GPL-2.0-or-later"
  4162. ],
  4163. "authors": [
  4164. {
  4165. "name": "Anybody",
  4166. "homepage": "https://www.drupal.org/user/291091"
  4167. },
  4168. {
  4169. "name": "Hydra",
  4170. "homepage": "https://www.drupal.org/user/647364"
  4171. },
  4172. {
  4173. "name": "jyve",
  4174. "homepage": "https://www.drupal.org/user/591438"
  4175. },
  4176. {
  4177. "name": "nils.destoop",
  4178. "homepage": "https://www.drupal.org/user/361625"
  4179. },
  4180. {
  4181. "name": "Stalski",
  4182. "homepage": "https://www.drupal.org/user/322618"
  4183. },
  4184. {
  4185. "name": "swentel",
  4186. "homepage": "https://www.drupal.org/user/107403"
  4187. }
  4188. ],
  4189. "description": "Provides the field_group module.",
  4190. "homepage": "https://www.drupal.org/project/field_group",
  4191. "support": {
  4192. "source": "https://git.drupalcode.org/project/field_group",
  4193. "issues": "https://www.drupal.org/project/issues/field_group"
  4194. }
  4195. },
  4196. {
  4197. "name": "drupal/file_mdm",
  4198. "version": "2.6.0",
  4199. "source": {
  4200. "type": "git",
  4201. "url": "https://git.drupalcode.org/project/file_mdm.git",
  4202. "reference": "8.x-2.6"
  4203. },
  4204. "dist": {
  4205. "type": "zip",
  4206. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.6.zip",
  4207. "reference": "8.x-2.6",
  4208. "shasum": "56c7c06107ce6e249b6d644136e6807573efb0e3"
  4209. },
  4210. "require": {
  4211. "drupal/core": "^9.3 | ^10",
  4212. "fileeye/pel": "^0.9.20",
  4213. "phenx/php-font-lib": "^0.5.4"
  4214. },
  4215. "require-dev": {
  4216. "drupal/vendor_stream_wrapper": "^2.0.2",
  4217. "fileeye/linuxlibertine-fonts": "^5.3"
  4218. },
  4219. "type": "drupal-module",
  4220. "extra": {
  4221. "drupal": {
  4222. "version": "8.x-2.6",
  4223. "datestamp": "1688489716",
  4224. "security-coverage": {
  4225. "status": "covered",
  4226. "message": "Covered by Drupal's security advisory policy"
  4227. }
  4228. }
  4229. },
  4230. "notification-url": "https://packages.drupal.org/8/downloads",
  4231. "license": [
  4232. "GPL-2.0-or-later"
  4233. ],
  4234. "authors": [
  4235. {
  4236. "name": "mondrake",
  4237. "homepage": "https://www.drupal.org/user/1307444"
  4238. }
  4239. ],
  4240. "description": "Provides a service to manage file metadata.",
  4241. "homepage": "https://www.drupal.org/project/file_mdm",
  4242. "support": {
  4243. "source": "https://git.drupalcode.org/project/file_mdm"
  4244. }
  4245. },
  4246. {
  4247. "name": "drupal/filter_perms",
  4248. "version": "dev-1.x",
  4249. "source": {
  4250. "type": "git",
  4251. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4252. "reference": "1ba486b620e0c0ea1c323cfcadb0f965d9022d1c"
  4253. },
  4254. "require": {
  4255. "drupal/core": "^9.0 || ^10.0"
  4256. },
  4257. "type": "drupal-module",
  4258. "extra": {
  4259. "branch-alias": {
  4260. "dev-1.x": "1.x-dev"
  4261. },
  4262. "drupal": {
  4263. "version": "8.x-1.0-alpha2+1-dev",
  4264. "datestamp": "1697635045",
  4265. "security-coverage": {
  4266. "status": "not-covered",
  4267. "message": "Dev releases are not covered by Drupal security advisories."
  4268. }
  4269. }
  4270. },
  4271. "notification-url": "https://packages.drupal.org/8/downloads",
  4272. "license": [
  4273. "GPL-2.0+"
  4274. ],
  4275. "authors": [
  4276. {
  4277. "name": "cYu",
  4278. "homepage": "https://www.drupal.org/user/202205"
  4279. },
  4280. {
  4281. "name": "deekayen",
  4282. "homepage": "https://www.drupal.org/user/972"
  4283. },
  4284. {
  4285. "name": "ivavictoria",
  4286. "homepage": "https://www.drupal.org/user/3061533"
  4287. },
  4288. {
  4289. "name": "justcaldwell",
  4290. "homepage": "https://www.drupal.org/user/290069"
  4291. },
  4292. {
  4293. "name": "mgbellaire",
  4294. "homepage": "https://www.drupal.org/user/1831932"
  4295. },
  4296. {
  4297. "name": "willzyx",
  4298. "homepage": "https://www.drupal.org/user/1043862"
  4299. }
  4300. ],
  4301. "description": "Provides role and module filters to simplify the user permissions page.",
  4302. "homepage": "https://www.drupal.org/project/filter_perms",
  4303. "support": {
  4304. "source": "http://cgit.drupalcode.org/filter_perms",
  4305. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  4306. }
  4307. },
  4308. {
  4309. "name": "drupal/formatter_suite",
  4310. "version": "2.0.0",
  4311. "source": {
  4312. "type": "git",
  4313. "url": "https://git.drupalcode.org/project/formatter_suite.git",
  4314. "reference": "2.0.0"
  4315. },
  4316. "dist": {
  4317. "type": "zip",
  4318. "url": "https://ftp.drupal.org/files/projects/formatter_suite-2.0.0.zip",
  4319. "reference": "2.0.0",
  4320. "shasum": "1c6c0fc11d381c10a7b13c51ec2848ae91b40cec"
  4321. },
  4322. "require": {
  4323. "drupal/core": "^9 || ^10"
  4324. },
  4325. "type": "drupal-module",
  4326. "extra": {
  4327. "drupal": {
  4328. "version": "2.0.0",
  4329. "datestamp": "1694036572",
  4330. "security-coverage": {
  4331. "status": "covered",
  4332. "message": "Covered by Drupal's security advisory policy"
  4333. }
  4334. }
  4335. },
  4336. "notification-url": "https://packages.drupal.org/8/downloads",
  4337. "license": [
  4338. "GPL-2.0-or-later"
  4339. ],
  4340. "authors": [
  4341. {
  4342. "name": "thecooltechguy",
  4343. "homepage": "https://www.drupal.org/user/3674323"
  4344. },
  4345. {
  4346. "name": "toamit",
  4347. "homepage": "https://www.drupal.org/user/2820523"
  4348. }
  4349. ],
  4350. "description": "Field formaters to present numbers, text, links, etc.",
  4351. "homepage": "https://www.drupal.org/project/formatter_suite",
  4352. "keywords": [
  4353. "Drupal",
  4354. "Format"
  4355. ],
  4356. "support": {
  4357. "source": "http://cgit.drupalcode.org/formatter_suite",
  4358. "issues": "http://drupal.org/project/issues/formatter_suite"
  4359. }
  4360. },
  4361. {
  4362. "name": "drupal/honeypot",
  4363. "version": "2.1.3",
  4364. "source": {
  4365. "type": "git",
  4366. "url": "https://git.drupalcode.org/project/honeypot.git",
  4367. "reference": "2.1.3"
  4368. },
  4369. "dist": {
  4370. "type": "zip",
  4371. "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.3.zip",
  4372. "reference": "2.1.3",
  4373. "shasum": "101105029a10a574ef6017824182500ab9905856"
  4374. },
  4375. "require": {
  4376. "drupal/core": "^9.2 || ^10"
  4377. },
  4378. "require-dev": {
  4379. "drupal/rules": "^3.0"
  4380. },
  4381. "type": "drupal-module",
  4382. "extra": {
  4383. "drupal": {
  4384. "version": "2.1.3",
  4385. "datestamp": "1695604754",
  4386. "security-coverage": {
  4387. "status": "covered",
  4388. "message": "Covered by Drupal's security advisory policy"
  4389. }
  4390. }
  4391. },
  4392. "notification-url": "https://packages.drupal.org/8/downloads",
  4393. "license": [
  4394. "GPL-2.0-or-later"
  4395. ],
  4396. "authors": [
  4397. {
  4398. "name": "Jeff Geerling",
  4399. "homepage": "https://www.drupal.org/user/389011",
  4400. "email": "geerlingguy@mac.com"
  4401. },
  4402. {
  4403. "name": "Manuel Garcia",
  4404. "homepage": "https://www.drupal.org/user/213194"
  4405. },
  4406. {
  4407. "name": "TR",
  4408. "homepage": "https://www.drupal.org/user/202830"
  4409. },
  4410. {
  4411. "name": "vijaycs85",
  4412. "homepage": "https://www.drupal.org/user/93488"
  4413. }
  4414. ],
  4415. "description": "Mitigates spam form submissions using the honeypot method.",
  4416. "homepage": "https://www.drupal.org/project/honeypot",
  4417. "keywords": [
  4418. "deterrent",
  4419. "form",
  4420. "honeypot",
  4421. "honeytrap",
  4422. "php",
  4423. "spam"
  4424. ],
  4425. "support": {
  4426. "source": "https://git.drupalcode.org/project/honeypot",
  4427. "issues": "https://www.drupal.org/project/issues/honeypot"
  4428. }
  4429. },
  4430. {
  4431. "name": "drupal/imagemagick",
  4432. "version": "3.4.0",
  4433. "source": {
  4434. "type": "git",
  4435. "url": "https://git.drupalcode.org/project/imagemagick.git",
  4436. "reference": "8.x-3.4"
  4437. },
  4438. "dist": {
  4439. "type": "zip",
  4440. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.4.zip",
  4441. "reference": "8.x-3.4",
  4442. "shasum": "9f07b7db4bba2cb0e4ff004629f8f78242bb7226"
  4443. },
  4444. "require": {
  4445. "drupal/core": "^9.3 || ^10",
  4446. "drupal/file_mdm": "^2.5",
  4447. "drupal/sophron": "^1.2 || ^2"
  4448. },
  4449. "type": "drupal-module",
  4450. "extra": {
  4451. "drupal": {
  4452. "version": "8.x-3.4",
  4453. "datestamp": "1663947784",
  4454. "security-coverage": {
  4455. "status": "covered",
  4456. "message": "Covered by Drupal's security advisory policy"
  4457. }
  4458. }
  4459. },
  4460. "notification-url": "https://packages.drupal.org/8/downloads",
  4461. "license": [
  4462. "GPL-2.0-or-later"
  4463. ],
  4464. "authors": [
  4465. {
  4466. "name": "Chris Charlton",
  4467. "homepage": "https://www.drupal.org/user/17089"
  4468. },
  4469. {
  4470. "name": "chx",
  4471. "homepage": "https://www.drupal.org/user/9446"
  4472. },
  4473. {
  4474. "name": "claudiu.cristea",
  4475. "homepage": "https://www.drupal.org/user/56348"
  4476. },
  4477. {
  4478. "name": "dman",
  4479. "homepage": "https://www.drupal.org/user/33240"
  4480. },
  4481. {
  4482. "name": "dopry",
  4483. "homepage": "https://www.drupal.org/user/22202"
  4484. },
  4485. {
  4486. "name": "drewish",
  4487. "homepage": "https://www.drupal.org/user/34869"
  4488. },
  4489. {
  4490. "name": "gdl",
  4491. "homepage": "https://www.drupal.org/user/507326"
  4492. },
  4493. {
  4494. "name": "mondrake",
  4495. "homepage": "https://www.drupal.org/user/1307444"
  4496. },
  4497. {
  4498. "name": "quicksketch",
  4499. "homepage": "https://www.drupal.org/user/35821"
  4500. },
  4501. {
  4502. "name": "sun",
  4503. "homepage": "https://www.drupal.org/user/54136"
  4504. },
  4505. {
  4506. "name": "walkah",
  4507. "homepage": "https://www.drupal.org/user/1531"
  4508. }
  4509. ],
  4510. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  4511. "homepage": "https://www.drupal.org/project/imagemagick",
  4512. "support": {
  4513. "source": "https://git.drupalcode.org/project/imagemagick"
  4514. }
  4515. },
  4516. {
  4517. "name": "drupal/inline_entity_form",
  4518. "version": "1.0.0-rc15",
  4519. "source": {
  4520. "type": "git",
  4521. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  4522. "reference": "8.x-1.0-rc15"
  4523. },
  4524. "dist": {
  4525. "type": "zip",
  4526. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc15.zip",
  4527. "reference": "8.x-1.0-rc15",
  4528. "shasum": "7702801f7e599956fc3d10cff8257809f53ac3ec"
  4529. },
  4530. "require": {
  4531. "drupal/core": "^8.8 || ^9 || ^10",
  4532. "php": ">=7.1"
  4533. },
  4534. "require-dev": {
  4535. "drupal/entity_reference_revisions": "^1.0"
  4536. },
  4537. "type": "drupal-module",
  4538. "extra": {
  4539. "drupal": {
  4540. "version": "8.x-1.0-rc15",
  4541. "datestamp": "1678126675",
  4542. "security-coverage": {
  4543. "status": "not-covered",
  4544. "message": "RC releases are not covered by Drupal security advisories."
  4545. }
  4546. }
  4547. },
  4548. "notification-url": "https://packages.drupal.org/8/downloads",
  4549. "license": [
  4550. "GPL-2.0-or-later"
  4551. ],
  4552. "authors": [
  4553. {
  4554. "name": "bojanz",
  4555. "homepage": "https://www.drupal.org/user/86106"
  4556. },
  4557. {
  4558. "name": "Centarro",
  4559. "homepage": "https://www.drupal.org/user/3661446"
  4560. },
  4561. {
  4562. "name": "dawehner",
  4563. "homepage": "https://www.drupal.org/user/99340"
  4564. },
  4565. {
  4566. "name": "geek-merlin",
  4567. "homepage": "https://www.drupal.org/user/229048"
  4568. },
  4569. {
  4570. "name": "joachim",
  4571. "homepage": "https://www.drupal.org/user/107701"
  4572. },
  4573. {
  4574. "name": "jsacksick",
  4575. "homepage": "https://www.drupal.org/user/972218"
  4576. },
  4577. {
  4578. "name": "oknate",
  4579. "homepage": "https://www.drupal.org/user/471638"
  4580. },
  4581. {
  4582. "name": "podarok",
  4583. "homepage": "https://www.drupal.org/user/116002"
  4584. },
  4585. {
  4586. "name": "ram4nd",
  4587. "homepage": "https://www.drupal.org/user/601534"
  4588. },
  4589. {
  4590. "name": "rszrama",
  4591. "homepage": "https://www.drupal.org/user/49344"
  4592. },
  4593. {
  4594. "name": "slashrsm",
  4595. "homepage": "https://www.drupal.org/user/744628"
  4596. },
  4597. {
  4598. "name": "webflo",
  4599. "homepage": "https://www.drupal.org/user/254778"
  4600. }
  4601. ],
  4602. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  4603. "homepage": "https://www.drupal.org/project/inline_entity_form",
  4604. "support": {
  4605. "source": "https://git.drupalcode.org/project/inline_entity_form"
  4606. }
  4607. },
  4608. {
  4609. "name": "drupal/jquery_ui",
  4610. "version": "1.6.0",
  4611. "source": {
  4612. "type": "git",
  4613. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  4614. "reference": "8.x-1.6"
  4615. },
  4616. "dist": {
  4617. "type": "zip",
  4618. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip",
  4619. "reference": "8.x-1.6",
  4620. "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0"
  4621. },
  4622. "require": {
  4623. "drupal/core": "^9.2 || ^10"
  4624. },
  4625. "type": "drupal-module",
  4626. "extra": {
  4627. "drupal": {
  4628. "version": "8.x-1.6",
  4629. "datestamp": "1668521197",
  4630. "security-coverage": {
  4631. "status": "covered",
  4632. "message": "Covered by Drupal's security advisory policy"
  4633. }
  4634. }
  4635. },
  4636. "notification-url": "https://packages.drupal.org/8/downloads",
  4637. "license": [
  4638. "GPL-2.0-or-later"
  4639. ],
  4640. "authors": [
  4641. {
  4642. "name": "bnjmnm",
  4643. "homepage": "https://www.drupal.org/user/2369194"
  4644. },
  4645. {
  4646. "name": "jjeff",
  4647. "homepage": "https://www.drupal.org/user/17190"
  4648. },
  4649. {
  4650. "name": "lauriii",
  4651. "homepage": "https://www.drupal.org/user/1078742"
  4652. },
  4653. {
  4654. "name": "litwol",
  4655. "homepage": "https://www.drupal.org/user/78134"
  4656. },
  4657. {
  4658. "name": "mfb",
  4659. "homepage": "https://www.drupal.org/user/12302"
  4660. },
  4661. {
  4662. "name": "mfer",
  4663. "homepage": "https://www.drupal.org/user/25701"
  4664. },
  4665. {
  4666. "name": "mikelutz",
  4667. "homepage": "https://www.drupal.org/user/2972409"
  4668. },
  4669. {
  4670. "name": "nod_",
  4671. "homepage": "https://www.drupal.org/user/598310"
  4672. },
  4673. {
  4674. "name": "phenaproxima",
  4675. "homepage": "https://www.drupal.org/user/205645"
  4676. },
  4677. {
  4678. "name": "RobLoach",
  4679. "homepage": "https://www.drupal.org/user/61114"
  4680. },
  4681. {
  4682. "name": "sun",
  4683. "homepage": "https://www.drupal.org/user/54136"
  4684. },
  4685. {
  4686. "name": "webchick",
  4687. "homepage": "https://www.drupal.org/user/24967"
  4688. },
  4689. {
  4690. "name": "Wim Leers",
  4691. "homepage": "https://www.drupal.org/user/99777"
  4692. },
  4693. {
  4694. "name": "zrpnr",
  4695. "homepage": "https://www.drupal.org/user/1448368"
  4696. }
  4697. ],
  4698. "description": "Provides jQuery UI library.",
  4699. "homepage": "https://www.drupal.org/project/jquery_ui",
  4700. "support": {
  4701. "source": "https://git.drupalcode.org/project/jquery_ui"
  4702. }
  4703. },
  4704. {
  4705. "name": "drupal/jquery_ui_datepicker",
  4706. "version": "2.0.0",
  4707. "source": {
  4708. "type": "git",
  4709. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  4710. "reference": "2.0.0"
  4711. },
  4712. "dist": {
  4713. "type": "zip",
  4714. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.0.0.zip",
  4715. "reference": "2.0.0",
  4716. "shasum": "ce40cf8ab400866bffda1ac3f7e4a5ac20bb3ae5"
  4717. },
  4718. "require": {
  4719. "drupal/core": "^9.2 || ^10",
  4720. "drupal/jquery_ui": "^1.6"
  4721. },
  4722. "type": "drupal-module",
  4723. "extra": {
  4724. "drupal": {
  4725. "version": "2.0.0",
  4726. "datestamp": "1670871494",
  4727. "security-coverage": {
  4728. "status": "covered",
  4729. "message": "Covered by Drupal's security advisory policy"
  4730. }
  4731. }
  4732. },
  4733. "notification-url": "https://packages.drupal.org/8/downloads",
  4734. "license": [
  4735. "GPL-2.0-or-later"
  4736. ],
  4737. "authors": [
  4738. {
  4739. "name": "bnjmnm",
  4740. "homepage": "https://www.drupal.org/user/2369194"
  4741. },
  4742. {
  4743. "name": "jrockowitz",
  4744. "homepage": "https://www.drupal.org/user/371407"
  4745. },
  4746. {
  4747. "name": "lauriii",
  4748. "homepage": "https://www.drupal.org/user/1078742"
  4749. },
  4750. {
  4751. "name": "nod_",
  4752. "homepage": "https://www.drupal.org/user/598310"
  4753. },
  4754. {
  4755. "name": "phenaproxima",
  4756. "homepage": "https://www.drupal.org/user/205645"
  4757. },
  4758. {
  4759. "name": "zrpnr",
  4760. "homepage": "https://www.drupal.org/user/1448368"
  4761. }
  4762. ],
  4763. "description": "Provides jQuery UI Datepicker library.",
  4764. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  4765. "support": {
  4766. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  4767. }
  4768. },
  4769. {
  4770. "name": "drupal/jquery_ui_draggable",
  4771. "version": "2.0.0",
  4772. "source": {
  4773. "type": "git",
  4774. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  4775. "reference": "2.0.0"
  4776. },
  4777. "dist": {
  4778. "type": "zip",
  4779. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.0.0.zip",
  4780. "reference": "2.0.0",
  4781. "shasum": "13a8f4bf037449cd176ddb967fc9cba9a466a705"
  4782. },
  4783. "require": {
  4784. "drupal/core": "^9.2 || ^10",
  4785. "drupal/jquery_ui": "^1.6"
  4786. },
  4787. "type": "drupal-module",
  4788. "extra": {
  4789. "drupal": {
  4790. "version": "2.0.0",
  4791. "datestamp": "1670871516",
  4792. "security-coverage": {
  4793. "status": "covered",
  4794. "message": "Covered by Drupal's security advisory policy"
  4795. }
  4796. }
  4797. },
  4798. "notification-url": "https://packages.drupal.org/8/downloads",
  4799. "license": [
  4800. "GPL-2.0-or-later"
  4801. ],
  4802. "authors": [
  4803. {
  4804. "name": "bnjmnm",
  4805. "homepage": "https://www.drupal.org/user/2369194"
  4806. },
  4807. {
  4808. "name": "lauriii",
  4809. "homepage": "https://www.drupal.org/user/1078742"
  4810. },
  4811. {
  4812. "name": "zrpnr",
  4813. "homepage": "https://www.drupal.org/user/1448368"
  4814. }
  4815. ],
  4816. "description": "Provides jQuery UI Draggable library.",
  4817. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  4818. "support": {
  4819. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  4820. }
  4821. },
  4822. {
  4823. "name": "drupal/jquery_ui_droppable",
  4824. "version": "1.5.0",
  4825. "source": {
  4826. "type": "git",
  4827. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  4828. "reference": "8.x-1.5"
  4829. },
  4830. "dist": {
  4831. "type": "zip",
  4832. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.5.zip",
  4833. "reference": "8.x-1.5",
  4834. "shasum": "ee9fec147493ce6c81fdf95ec463f7092606e913"
  4835. },
  4836. "require": {
  4837. "drupal/core": "^9.2 || ^10",
  4838. "drupal/jquery_ui": "^1.5",
  4839. "drupal/jquery_ui_draggable": "*"
  4840. },
  4841. "type": "drupal-module",
  4842. "extra": {
  4843. "drupal": {
  4844. "version": "8.x-1.5",
  4845. "datestamp": "1668452746",
  4846. "security-coverage": {
  4847. "status": "covered",
  4848. "message": "Covered by Drupal's security advisory policy"
  4849. }
  4850. }
  4851. },
  4852. "notification-url": "https://packages.drupal.org/8/downloads",
  4853. "license": [
  4854. "GPL-2.0-or-later"
  4855. ],
  4856. "authors": [
  4857. {
  4858. "name": "bnjmnm",
  4859. "homepage": "https://www.drupal.org/user/2369194"
  4860. },
  4861. {
  4862. "name": "lauriii",
  4863. "homepage": "https://www.drupal.org/user/1078742"
  4864. },
  4865. {
  4866. "name": "zrpnr",
  4867. "homepage": "https://www.drupal.org/user/1448368"
  4868. }
  4869. ],
  4870. "description": "Provides jQuery UI Droppable library.",
  4871. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  4872. "support": {
  4873. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  4874. }
  4875. },
  4876. {
  4877. "name": "drupal/jquery_ui_slider",
  4878. "version": "2.0.0",
  4879. "source": {
  4880. "type": "git",
  4881. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  4882. "reference": "2.0.0"
  4883. },
  4884. "dist": {
  4885. "type": "zip",
  4886. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.0.0.zip",
  4887. "reference": "2.0.0",
  4888. "shasum": "86b7d71e91013cffafb8021dbf8047745ebc5fd6"
  4889. },
  4890. "require": {
  4891. "drupal/core": "^9.2 || ^10",
  4892. "drupal/jquery_ui": "^1.6"
  4893. },
  4894. "type": "drupal-module",
  4895. "extra": {
  4896. "drupal": {
  4897. "version": "2.0.0",
  4898. "datestamp": "1670871571",
  4899. "security-coverage": {
  4900. "status": "covered",
  4901. "message": "Covered by Drupal's security advisory policy"
  4902. }
  4903. }
  4904. },
  4905. "notification-url": "https://packages.drupal.org/8/downloads",
  4906. "license": [
  4907. "GPL-2.0-or-later"
  4908. ],
  4909. "authors": [
  4910. {
  4911. "name": "bnjmnm",
  4912. "homepage": "https://www.drupal.org/user/2369194"
  4913. },
  4914. {
  4915. "name": "lauriii",
  4916. "homepage": "https://www.drupal.org/user/1078742"
  4917. },
  4918. {
  4919. "name": "zrpnr",
  4920. "homepage": "https://www.drupal.org/user/1448368"
  4921. }
  4922. ],
  4923. "description": "Provides jQuery UI Slider library.",
  4924. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  4925. "support": {
  4926. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  4927. }
  4928. },
  4929. {
  4930. "name": "drupal/jquery_ui_touch_punch",
  4931. "version": "1.1.0",
  4932. "source": {
  4933. "type": "git",
  4934. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  4935. "reference": "1.1.0"
  4936. },
  4937. "dist": {
  4938. "type": "zip",
  4939. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.0.zip",
  4940. "reference": "1.1.0",
  4941. "shasum": "4b7e50a98246dfa6ef48e5b12c70277873902824"
  4942. },
  4943. "require": {
  4944. "drupal/core": "^8 || ^9 || ^10",
  4945. "drupal/jquery_ui": "^1.0",
  4946. "politsin/jquery-ui-touch-punch": "^1.0"
  4947. },
  4948. "type": "drupal-module",
  4949. "extra": {
  4950. "drupal": {
  4951. "version": "1.1.0",
  4952. "datestamp": "1662744607",
  4953. "security-coverage": {
  4954. "status": "covered",
  4955. "message": "Covered by Drupal's security advisory policy"
  4956. }
  4957. }
  4958. },
  4959. "notification-url": "https://packages.drupal.org/8/downloads",
  4960. "license": [
  4961. "GPL-2.0-or-later"
  4962. ],
  4963. "authors": [
  4964. {
  4965. "name": "Naveen Valecha",
  4966. "homepage": "https://drupal.org/u/naveenvalecha",
  4967. "role": "Maintainer"
  4968. },
  4969. {
  4970. "name": "naveenvalecha",
  4971. "homepage": "https://www.drupal.org/user/2665733"
  4972. }
  4973. ],
  4974. "description": "Provides jQuery UI Touch Punch library.",
  4975. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  4976. "keywords": [
  4977. "Drupal",
  4978. "jquery_ui_touch_punch"
  4979. ],
  4980. "support": {
  4981. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  4982. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch"
  4983. }
  4984. },
  4985. {
  4986. "name": "drupal/link_attributes",
  4987. "version": "1.14.0",
  4988. "source": {
  4989. "type": "git",
  4990. "url": "https://git.drupalcode.org/project/link_attributes.git",
  4991. "reference": "8.x-1.14"
  4992. },
  4993. "dist": {
  4994. "type": "zip",
  4995. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.14.zip",
  4996. "reference": "8.x-1.14",
  4997. "shasum": "fa4f27ecaed7e6b3c58c0adc679918a9beb7ded5"
  4998. },
  4999. "require": {
  5000. "drupal/core": "^9 || ^10"
  5001. },
  5002. "type": "drupal-module",
  5003. "extra": {
  5004. "drupal": {
  5005. "version": "8.x-1.14",
  5006. "datestamp": "1687393687",
  5007. "security-coverage": {
  5008. "status": "covered",
  5009. "message": "Covered by Drupal's security advisory policy"
  5010. }
  5011. }
  5012. },
  5013. "notification-url": "https://packages.drupal.org/8/downloads",
  5014. "license": [
  5015. "GPL-2.0-or-later"
  5016. ],
  5017. "authors": [
  5018. {
  5019. "name": "larowlan",
  5020. "homepage": "https://www.drupal.org/user/395439"
  5021. }
  5022. ],
  5023. "description": "Provides a widget to allow settings of link attributes for menu links.",
  5024. "homepage": "https://www.drupal.org/project/link_attributes",
  5025. "keywords": [
  5026. "Drupal"
  5027. ],
  5028. "support": {
  5029. "source": "https://git.drupalcode.org/project/link_attributes",
  5030. "issues": "https://www.drupal.org/project/issues/link_attributes"
  5031. }
  5032. },
  5033. {
  5034. "name": "drupal/linked_field",
  5035. "version": "1.5.0",
  5036. "source": {
  5037. "type": "git",
  5038. "url": "https://git.drupalcode.org/project/linked_field.git",
  5039. "reference": "8.x-1.5"
  5040. },
  5041. "dist": {
  5042. "type": "zip",
  5043. "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.5.zip",
  5044. "reference": "8.x-1.5",
  5045. "shasum": "31ed8008d2f88c693334f6faad03112280820fe0"
  5046. },
  5047. "require": {
  5048. "drupal/core": "^8.8 || ^9 || ^10"
  5049. },
  5050. "type": "drupal-module",
  5051. "extra": {
  5052. "drupal": {
  5053. "version": "8.x-1.5",
  5054. "datestamp": "1677239525",
  5055. "security-coverage": {
  5056. "status": "covered",
  5057. "message": "Covered by Drupal's security advisory policy"
  5058. }
  5059. }
  5060. },
  5061. "notification-url": "https://packages.drupal.org/8/downloads",
  5062. "license": [
  5063. "GPL-2.0-or-later"
  5064. ],
  5065. "authors": [
  5066. {
  5067. "name": "jcnventura",
  5068. "homepage": "https://www.drupal.org/user/122464"
  5069. },
  5070. {
  5071. "name": "yannickoo",
  5072. "homepage": "https://www.drupal.org/user/531118"
  5073. }
  5074. ],
  5075. "description": "Adds the functionality to link fields to a specific destination.",
  5076. "homepage": "https://www.drupal.org/project/linked_field",
  5077. "support": {
  5078. "source": "https://git.drupalcode.org/project/linked_field"
  5079. }
  5080. },
  5081. {
  5082. "name": "drupal/linkit",
  5083. "version": "6.1.2",
  5084. "source": {
  5085. "type": "git",
  5086. "url": "https://git.drupalcode.org/project/linkit.git",
  5087. "reference": "6.1.2"
  5088. },
  5089. "dist": {
  5090. "type": "zip",
  5091. "url": "https://ftp.drupal.org/files/projects/linkit-6.1.2.zip",
  5092. "reference": "6.1.2",
  5093. "shasum": "63fb311d2b78df81a9a588330429b640ec7da0e8"
  5094. },
  5095. "require": {
  5096. "drupal/core": "^10.1"
  5097. },
  5098. "require-dev": {
  5099. "drupal/ckeditor": "*",
  5100. "drupal/imce": "*"
  5101. },
  5102. "type": "drupal-module",
  5103. "extra": {
  5104. "drupal": {
  5105. "version": "6.1.2",
  5106. "datestamp": "1696865478",
  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": "Emil Stjerneman",
  5120. "homepage": "https://stjerneman.com",
  5121. "email": "emil@stjerneman.com",
  5122. "role": "Maintainer"
  5123. },
  5124. {
  5125. "name": "johnwebdev",
  5126. "homepage": "https://www.drupal.org/user/3331569"
  5127. },
  5128. {
  5129. "name": "mark_fullmer",
  5130. "homepage": "https://www.drupal.org/user/2612816"
  5131. }
  5132. ],
  5133. "description": "Linkit - Enriched linking experience",
  5134. "homepage": "http://drupal.org/project/linkit",
  5135. "support": {
  5136. "source": "http://cgit.drupalcode.org/linkit",
  5137. "issues": "http://drupal.org/project/linkit"
  5138. }
  5139. },
  5140. {
  5141. "name": "drupal/login_destination",
  5142. "version": "dev-2.x",
  5143. "source": {
  5144. "type": "git",
  5145. "url": "https://git.drupalcode.org/project/login_destination.git",
  5146. "reference": "5ba35c477e9b902b08c70c60e1d28eff11cc8e9f"
  5147. },
  5148. "require": {
  5149. "drupal/core": "^8.7.10 || ^9 || ^10"
  5150. },
  5151. "require-dev": {
  5152. "drupal/admin_toolbar": "^1.23",
  5153. "drupal/admin_toolbar_tools": "*"
  5154. },
  5155. "type": "drupal-module",
  5156. "extra": {
  5157. "branch-alias": {
  5158. "dev-2.x": "2.x-dev"
  5159. },
  5160. "drupal": {
  5161. "version": "8.x-2.0-beta5+3-dev",
  5162. "datestamp": "1680181961",
  5163. "security-coverage": {
  5164. "status": "not-covered",
  5165. "message": "Dev releases are not covered by Drupal security advisories."
  5166. }
  5167. }
  5168. },
  5169. "notification-url": "https://packages.drupal.org/8/downloads",
  5170. "license": [
  5171. "GPL-2.0-or-later"
  5172. ],
  5173. "authors": [
  5174. {
  5175. "name": "rsvelko",
  5176. "homepage": "https://www.drupal.org/u/rsvelko",
  5177. "role": "Creator, Maintainer"
  5178. },
  5179. {
  5180. "name": "Other Contributors",
  5181. "homepage": "https://www.drupal.org/node/69051/committers",
  5182. "role": "Contributors"
  5183. },
  5184. {
  5185. "name": "ddrozdik",
  5186. "homepage": "https://www.drupal.org/user/574124"
  5187. },
  5188. {
  5189. "name": "jng12",
  5190. "homepage": "https://www.drupal.org/user/204316"
  5191. },
  5192. {
  5193. "name": "marcp",
  5194. "homepage": "https://www.drupal.org/user/20885"
  5195. },
  5196. {
  5197. "name": "mithy",
  5198. "homepage": "https://www.drupal.org/user/258911"
  5199. },
  5200. {
  5201. "name": "moshe weitzman",
  5202. "homepage": "https://www.drupal.org/user/23"
  5203. },
  5204. {
  5205. "name": "Oliver Huynh",
  5206. "homepage": "https://www.drupal.org/user/243730"
  5207. },
  5208. {
  5209. "name": "perennial.sky",
  5210. "homepage": "https://www.drupal.org/user/2622667"
  5211. },
  5212. {
  5213. "name": "rsvelko",
  5214. "homepage": "https://www.drupal.org/user/337401"
  5215. }
  5216. ],
  5217. "description": "Customizes the destination the user is redirected to after login/logout/registration/one-time login.",
  5218. "homepage": "https://drupal.org/project/login_destination",
  5219. "support": {
  5220. "source": "https://git.drupalcode.org/project/login_destination",
  5221. "issues": "https://drupal.org/project/issues/login_destination"
  5222. }
  5223. },
  5224. {
  5225. "name": "drupal/maillog",
  5226. "version": "dev-1.x",
  5227. "source": {
  5228. "type": "git",
  5229. "url": "https://git.drupalcode.org/project/maillog.git",
  5230. "reference": "baa5d6ca739e6aecfdf28461d54911a2f6a038a4"
  5231. },
  5232. "require": {
  5233. "drupal/core": "^9 || ^10"
  5234. },
  5235. "type": "drupal-module",
  5236. "extra": {
  5237. "branch-alias": {
  5238. "dev-1.x": "1.x-dev"
  5239. },
  5240. "drupal": {
  5241. "version": "8.x-1.1+2-dev",
  5242. "datestamp": "1686405787",
  5243. "security-coverage": {
  5244. "status": "not-covered",
  5245. "message": "Dev releases are not covered by Drupal security advisories."
  5246. }
  5247. }
  5248. },
  5249. "notification-url": "https://packages.drupal.org/8/downloads",
  5250. "license": [
  5251. "GPL-2.0-or-later"
  5252. ],
  5253. "authors": [
  5254. {
  5255. "name": "Berdir",
  5256. "homepage": "https://www.drupal.org/user/214652"
  5257. },
  5258. {
  5259. "name": "DamienMcKenna",
  5260. "homepage": "https://www.drupal.org/user/108450"
  5261. },
  5262. {
  5263. "name": "miro_dietiker",
  5264. "homepage": "https://www.drupal.org/user/227761"
  5265. },
  5266. {
  5267. "name": "pluess",
  5268. "homepage": "https://www.drupal.org/user/84659"
  5269. }
  5270. ],
  5271. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  5272. "homepage": "https://www.drupal.org/project/maillog",
  5273. "support": {
  5274. "source": "https://git.drupalcode.org/project/maillog"
  5275. }
  5276. },
  5277. {
  5278. "name": "drupal/matomo",
  5279. "version": "1.22.0",
  5280. "source": {
  5281. "type": "git",
  5282. "url": "https://git.drupalcode.org/project/matomo.git",
  5283. "reference": "8.x-1.22"
  5284. },
  5285. "dist": {
  5286. "type": "zip",
  5287. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.22.zip",
  5288. "reference": "8.x-1.22",
  5289. "shasum": "b41bb83d9c0c6f8c27f72f6b1b62f691dab65a5d"
  5290. },
  5291. "require": {
  5292. "drupal/core": "^9.0 || ^10"
  5293. },
  5294. "conflict": {
  5295. "drupal/csp": "<1.12"
  5296. },
  5297. "require-dev": {
  5298. "drupal/csp": "~1.12",
  5299. "drupal/php": "~1.1",
  5300. "drupal/token": "~1.9"
  5301. },
  5302. "type": "drupal-module",
  5303. "extra": {
  5304. "drupal": {
  5305. "version": "8.x-1.22",
  5306. "datestamp": "1691004328",
  5307. "security-coverage": {
  5308. "status": "covered",
  5309. "message": "Covered by Drupal's security advisory policy"
  5310. }
  5311. }
  5312. },
  5313. "notification-url": "https://packages.drupal.org/8/downloads",
  5314. "license": [
  5315. "GPL-2.0-or-later"
  5316. ],
  5317. "authors": [
  5318. {
  5319. "name": "C-Logemann",
  5320. "homepage": "https://www.drupal.org/user/218368"
  5321. },
  5322. {
  5323. "name": "Grimreaper",
  5324. "homepage": "https://www.drupal.org/user/2388214"
  5325. },
  5326. {
  5327. "name": "hass",
  5328. "homepage": "https://www.drupal.org/user/85918"
  5329. },
  5330. {
  5331. "name": "shelane",
  5332. "homepage": "https://www.drupal.org/user/2674989"
  5333. }
  5334. ],
  5335. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  5336. "homepage": "https://www.drupal.org/project/matomo",
  5337. "support": {
  5338. "source": "https://git.drupalcode.org/project/matomo"
  5339. }
  5340. },
  5341. {
  5342. "name": "drupal/maxlength",
  5343. "version": "2.1.2",
  5344. "source": {
  5345. "type": "git",
  5346. "url": "https://git.drupalcode.org/project/maxlength.git",
  5347. "reference": "2.1.2"
  5348. },
  5349. "dist": {
  5350. "type": "zip",
  5351. "url": "https://ftp.drupal.org/files/projects/maxlength-2.1.2.zip",
  5352. "reference": "2.1.2",
  5353. "shasum": "97015e4d1065770a92953c9f37fef5d55b360cf6"
  5354. },
  5355. "require": {
  5356. "drupal/core": "^9.2 || ^10"
  5357. },
  5358. "type": "drupal-module",
  5359. "extra": {
  5360. "drupal": {
  5361. "version": "2.1.2",
  5362. "datestamp": "1689974531",
  5363. "security-coverage": {
  5364. "status": "covered",
  5365. "message": "Covered by Drupal's security advisory policy"
  5366. }
  5367. }
  5368. },
  5369. "notification-url": "https://packages.drupal.org/8/downloads",
  5370. "license": [
  5371. "GPL-2.0-or-later"
  5372. ],
  5373. "authors": [
  5374. {
  5375. "name": "Marius Scurtescu (mariuss)",
  5376. "homepage": "https://www.drupal.org/u/mariuss",
  5377. "role": "Maintainer"
  5378. },
  5379. {
  5380. "name": "Clayton Dewey (cedewey)",
  5381. "homepage": "https://www.drupal.org/u/cedewey",
  5382. "role": "Maintainer"
  5383. },
  5384. {
  5385. "name": "Daniel Wehner (dawehner)",
  5386. "homepage": "https://www.drupal.org/u/dawehner",
  5387. "role": "Maintainer"
  5388. },
  5389. {
  5390. "name": "Paulino Michelazzo (pmichelazzo)",
  5391. "homepage": "https://www.drupal.org/u/pmichelazzo",
  5392. "role": "Maintainer"
  5393. },
  5394. {
  5395. "name": "Jeff Hipp (hipp2bsquare)",
  5396. "homepage": "https://www.drupal.org/u/hipp2bsquare",
  5397. "role": "Maintainer"
  5398. },
  5399. {
  5400. "name": "Steven DuBois (srdtwc)",
  5401. "homepage": "https://www.drupal.org/u/srdtwc",
  5402. "role": "Maintainer"
  5403. },
  5404. {
  5405. "name": "srdtwc",
  5406. "homepage": "https://www.drupal.org/user/3422763"
  5407. }
  5408. ],
  5409. "description": "MaxLength allows a soft or hard character limit to be set on titles, text fields and link fields.",
  5410. "homepage": "https://www.drupal.org/project/maxlength",
  5411. "support": {
  5412. "source": "https://git.drupalcode.org/project/maxlength",
  5413. "issues": "https://www.drupal.org/project/issues/maxlength"
  5414. }
  5415. },
  5416. {
  5417. "name": "drupal/menu_admin_per_menu",
  5418. "version": "1.5.0",
  5419. "source": {
  5420. "type": "git",
  5421. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  5422. "reference": "8.x-1.5"
  5423. },
  5424. "dist": {
  5425. "type": "zip",
  5426. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.5.zip",
  5427. "reference": "8.x-1.5",
  5428. "shasum": "ec8c7a4a064aa285dfb722dad264da9936fc81b6"
  5429. },
  5430. "require": {
  5431. "drupal/core": "^9 || ^10"
  5432. },
  5433. "type": "drupal-module",
  5434. "extra": {
  5435. "drupal": {
  5436. "version": "8.x-1.5",
  5437. "datestamp": "1660918821",
  5438. "security-coverage": {
  5439. "status": "covered",
  5440. "message": "Covered by Drupal's security advisory policy"
  5441. }
  5442. }
  5443. },
  5444. "notification-url": "https://packages.drupal.org/8/downloads",
  5445. "license": [
  5446. "GPL-2.0-or-later"
  5447. ],
  5448. "authors": [
  5449. {
  5450. "name": "anrikun",
  5451. "homepage": "https://www.drupal.org/user/410199"
  5452. },
  5453. {
  5454. "name": "JeroenT",
  5455. "homepage": "https://www.drupal.org/user/2228934"
  5456. },
  5457. {
  5458. "name": "jonas139",
  5459. "homepage": "https://www.drupal.org/user/2873401"
  5460. },
  5461. {
  5462. "name": "mkdok",
  5463. "homepage": "https://www.drupal.org/user/3308753"
  5464. }
  5465. ],
  5466. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  5467. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  5468. "support": {
  5469. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  5470. }
  5471. },
  5472. {
  5473. "name": "drupal/menu_block",
  5474. "version": "dev-1.x",
  5475. "source": {
  5476. "type": "git",
  5477. "url": "https://git.drupalcode.org/project/menu_block.git",
  5478. "reference": "aafb3953b765e93d4de49c4fb6130a49304e6f2a"
  5479. },
  5480. "require": {
  5481. "drupal/core": "^9.1 || ^10"
  5482. },
  5483. "type": "drupal-module",
  5484. "extra": {
  5485. "branch-alias": {
  5486. "dev-1.x": "1.x-dev"
  5487. },
  5488. "drupal": {
  5489. "version": "8.x-1.9+1-dev",
  5490. "datestamp": "1667434044",
  5491. "security-coverage": {
  5492. "status": "not-covered",
  5493. "message": "Dev releases are not covered by Drupal security advisories."
  5494. }
  5495. }
  5496. },
  5497. "notification-url": "https://packages.drupal.org/8/downloads",
  5498. "license": [
  5499. "GPL-2.0-or-later"
  5500. ],
  5501. "authors": [
  5502. {
  5503. "name": "Dave Reid",
  5504. "homepage": "https://www.drupal.org/user/53892"
  5505. },
  5506. {
  5507. "name": "joelpittet",
  5508. "homepage": "https://www.drupal.org/user/160302"
  5509. },
  5510. {
  5511. "name": "JohnAlbin",
  5512. "homepage": "https://www.drupal.org/user/32095"
  5513. },
  5514. {
  5515. "name": "kim.pepper",
  5516. "homepage": "https://www.drupal.org/user/370574"
  5517. },
  5518. {
  5519. "name": "RenatoG",
  5520. "homepage": "https://www.drupal.org/user/3326031"
  5521. },
  5522. {
  5523. "name": "rrrob",
  5524. "homepage": "https://www.drupal.org/user/273533"
  5525. }
  5526. ],
  5527. "description": "Provides configurable blocks of menu links.",
  5528. "homepage": "https://www.drupal.org/project/menu_block",
  5529. "support": {
  5530. "source": "https://git.drupalcode.org/project/menu_block"
  5531. }
  5532. },
  5533. {
  5534. "name": "drupal/menu_position",
  5535. "version": "dev-1.x",
  5536. "source": {
  5537. "type": "git",
  5538. "url": "https://git.drupalcode.org/project/menu_position.git",
  5539. "reference": "f88cef07a70af63337a82652b9224a9c0b08b5b2"
  5540. },
  5541. "require": {
  5542. "drupal/core": "^8 || ^9 || ^10"
  5543. },
  5544. "type": "drupal-module",
  5545. "extra": {
  5546. "branch-alias": {
  5547. "dev-1.x": "1.x-dev"
  5548. },
  5549. "drupal": {
  5550. "version": "8.x-1.0+6-dev",
  5551. "datestamp": "1685505680",
  5552. "security-coverage": {
  5553. "status": "not-covered",
  5554. "message": "Dev releases are not covered by Drupal security advisories."
  5555. }
  5556. }
  5557. },
  5558. "notification-url": "https://packages.drupal.org/8/downloads",
  5559. "license": [
  5560. "GPL-2.0-or-later"
  5561. ],
  5562. "authors": [
  5563. {
  5564. "name": "BarisW",
  5565. "homepage": "https://www.drupal.org/user/107229"
  5566. },
  5567. {
  5568. "name": "joelpittet",
  5569. "homepage": "https://www.drupal.org/user/160302"
  5570. },
  5571. {
  5572. "name": "JohnAlbin",
  5573. "homepage": "https://www.drupal.org/user/32095"
  5574. },
  5575. {
  5576. "name": "lbainbridge",
  5577. "homepage": "https://www.drupal.org/user/2406996"
  5578. },
  5579. {
  5580. "name": "Rajab Natshah",
  5581. "homepage": "https://www.drupal.org/user/1414312"
  5582. },
  5583. {
  5584. "name": "Sutharsan",
  5585. "homepage": "https://www.drupal.org/user/73854"
  5586. }
  5587. ],
  5588. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  5589. "homepage": "https://www.drupal.org/project/menu_position",
  5590. "support": {
  5591. "source": "https://git.drupalcode.org/project/menu_position",
  5592. "issues": "https://www.drupal.org/project/issues/menu_position"
  5593. }
  5594. },
  5595. {
  5596. "name": "drupal/page_manager",
  5597. "version": "4.0.0-rc2",
  5598. "source": {
  5599. "type": "git",
  5600. "url": "https://git.drupalcode.org/project/page_manager.git",
  5601. "reference": "8.x-4.0-rc2"
  5602. },
  5603. "dist": {
  5604. "type": "zip",
  5605. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc2.zip",
  5606. "reference": "8.x-4.0-rc2",
  5607. "shasum": "4a1e96284c5775343fbb4612072a2abfc83ebc33"
  5608. },
  5609. "require": {
  5610. "drupal/core": "^9.3 || ^10",
  5611. "drupal/ctools": "^3.11 || ^4.0"
  5612. },
  5613. "type": "drupal-module",
  5614. "extra": {
  5615. "drupal": {
  5616. "version": "8.x-4.0-rc2",
  5617. "datestamp": "1671210021",
  5618. "security-coverage": {
  5619. "status": "not-covered",
  5620. "message": "RC releases are not covered by Drupal security advisories."
  5621. }
  5622. },
  5623. "branch-alias": {
  5624. "dev-8.x-4.x": "4.x-dev"
  5625. }
  5626. },
  5627. "notification-url": "https://packages.drupal.org/8/downloads",
  5628. "license": [
  5629. "GPL-2.0-or-later"
  5630. ],
  5631. "authors": [
  5632. {
  5633. "name": "Tim Plunkett",
  5634. "homepage": "https://www.drupal.org/u/tim.plunkett",
  5635. "role": "Maintainer"
  5636. },
  5637. {
  5638. "name": "EclipseGc",
  5639. "homepage": "https://www.drupal.org/user/61203"
  5640. },
  5641. {
  5642. "name": "ivnish",
  5643. "homepage": "https://www.drupal.org/user/3547706"
  5644. },
  5645. {
  5646. "name": "japerry",
  5647. "homepage": "https://www.drupal.org/user/45640"
  5648. },
  5649. {
  5650. "name": "joelpittet",
  5651. "homepage": "https://www.drupal.org/user/160302"
  5652. },
  5653. {
  5654. "name": "manuel.adan",
  5655. "homepage": "https://www.drupal.org/user/516420"
  5656. },
  5657. {
  5658. "name": "phenaproxima",
  5659. "homepage": "https://www.drupal.org/user/205645"
  5660. }
  5661. ],
  5662. "description": "Provides a way to place blocks on a custom page.",
  5663. "homepage": "https://www.drupal.org/project/page_manager",
  5664. "support": {
  5665. "source": "https://git.drupal.org/project/page_manager.git",
  5666. "issues": "https://www.drupal.org/project/issues/page_manager",
  5667. "irc": "irc://irc.freenode.org/drupal-contribute"
  5668. }
  5669. },
  5670. {
  5671. "name": "drupal/pagerer",
  5672. "version": "3.0.0",
  5673. "source": {
  5674. "type": "git",
  5675. "url": "https://git.drupalcode.org/project/pagerer.git",
  5676. "reference": "3.0.0"
  5677. },
  5678. "dist": {
  5679. "type": "zip",
  5680. "url": "https://ftp.drupal.org/files/projects/pagerer-3.0.0.zip",
  5681. "reference": "3.0.0",
  5682. "shasum": "8b81271842b68399c1c58d0809cf1c737fa2aa1c"
  5683. },
  5684. "require": {
  5685. "drupal/core": "^10"
  5686. },
  5687. "type": "drupal-module",
  5688. "extra": {
  5689. "drupal": {
  5690. "version": "3.0.0",
  5691. "datestamp": "1663962586",
  5692. "security-coverage": {
  5693. "status": "covered",
  5694. "message": "Covered by Drupal's security advisory policy"
  5695. }
  5696. }
  5697. },
  5698. "notification-url": "https://packages.drupal.org/8/downloads",
  5699. "license": [
  5700. "GPL-2.0-or-later"
  5701. ],
  5702. "authors": [
  5703. {
  5704. "name": "mondrake",
  5705. "homepage": "https://www.drupal.org/user/1307444"
  5706. }
  5707. ],
  5708. "description": "Configurable pager styles.",
  5709. "homepage": "https://www.drupal.org/project/pagerer",
  5710. "support": {
  5711. "source": "https://git.drupalcode.org/project/pagerer"
  5712. }
  5713. },
  5714. {
  5715. "name": "drupal/panels",
  5716. "version": "4.7.0",
  5717. "source": {
  5718. "type": "git",
  5719. "url": "https://git.drupalcode.org/project/panels.git",
  5720. "reference": "8.x-4.7"
  5721. },
  5722. "dist": {
  5723. "type": "zip",
  5724. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.7.zip",
  5725. "reference": "8.x-4.7",
  5726. "shasum": "5536f192d328e93a9f8c4a2646df15c514d75639"
  5727. },
  5728. "require": {
  5729. "drupal/core": "^9.2 || ^10",
  5730. "drupal/ctools": "^3.12",
  5731. "drupal/jquery_ui_droppable": "^1.5"
  5732. },
  5733. "require-dev": {
  5734. "drupal/jquery_ui_droppable": "*",
  5735. "drupal/page_manager": "^4"
  5736. },
  5737. "type": "drupal-module",
  5738. "extra": {
  5739. "drupal": {
  5740. "version": "8.x-4.7",
  5741. "datestamp": "1668632919",
  5742. "security-coverage": {
  5743. "status": "covered",
  5744. "message": "Covered by Drupal's security advisory policy"
  5745. }
  5746. },
  5747. "branch-alias": {
  5748. "dev-8.x-4.x": "4.x-dev"
  5749. }
  5750. },
  5751. "notification-url": "https://packages.drupal.org/8/downloads",
  5752. "license": [
  5753. "GPL-2.0+"
  5754. ],
  5755. "authors": [
  5756. {
  5757. "name": "Jakob Perry",
  5758. "homepage": "https://www.drupal.org/u/japerry"
  5759. },
  5760. {
  5761. "name": "Samuel Mortenson",
  5762. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  5763. },
  5764. {
  5765. "name": "See other contributors",
  5766. "homepage": "https://www.drupal.org/node/74958/committers"
  5767. },
  5768. {
  5769. "name": "joelpittet",
  5770. "homepage": "https://www.drupal.org/user/160302"
  5771. },
  5772. {
  5773. "name": "Letharion",
  5774. "homepage": "https://www.drupal.org/user/373603"
  5775. },
  5776. {
  5777. "name": "merlinofchaos",
  5778. "homepage": "https://www.drupal.org/user/26979"
  5779. },
  5780. {
  5781. "name": "neclimdul",
  5782. "homepage": "https://www.drupal.org/user/48673"
  5783. },
  5784. {
  5785. "name": "phenaproxima",
  5786. "homepage": "https://www.drupal.org/user/205645"
  5787. },
  5788. {
  5789. "name": "samuel.mortenson",
  5790. "homepage": "https://www.drupal.org/user/2582268"
  5791. }
  5792. ],
  5793. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  5794. "homepage": "https://www.drupal.org/project/panels",
  5795. "support": {
  5796. "source": "http://git.drupal.org/project/panels.git",
  5797. "issues": "https://www.drupal.org/project/issues/panels",
  5798. "irc": "irc://irc.freenode.org/drupal-scotch"
  5799. }
  5800. },
  5801. {
  5802. "name": "drupal/paragraphs",
  5803. "version": "1.16.0",
  5804. "source": {
  5805. "type": "git",
  5806. "url": "https://git.drupalcode.org/project/paragraphs.git",
  5807. "reference": "8.x-1.16"
  5808. },
  5809. "dist": {
  5810. "type": "zip",
  5811. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.16.zip",
  5812. "reference": "8.x-1.16",
  5813. "shasum": "48f60810fd8086a52d56e84af8b212cce7a270e8"
  5814. },
  5815. "require": {
  5816. "drupal/core": "^9.3 || ^10",
  5817. "drupal/entity_reference_revisions": "~1.3"
  5818. },
  5819. "require-dev": {
  5820. "drupal/block_field": "1.x-dev",
  5821. "drupal/diff": "1.x-dev",
  5822. "drupal/entity_browser": "2.x-dev",
  5823. "drupal/entity_usage": "2.x-dev",
  5824. "drupal/field_group": "3.x-dev",
  5825. "drupal/inline_entity_form": "1.x-dev",
  5826. "drupal/paragraphs-paragraphs_library": "*",
  5827. "drupal/replicate": "1.x-dev",
  5828. "drupal/search_api": "1.x-dev",
  5829. "drupal/search_api_db": "*"
  5830. },
  5831. "suggest": {
  5832. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  5833. },
  5834. "type": "drupal-module",
  5835. "extra": {
  5836. "drupal": {
  5837. "version": "8.x-1.16",
  5838. "datestamp": "1694007797",
  5839. "security-coverage": {
  5840. "status": "covered",
  5841. "message": "Covered by Drupal's security advisory policy"
  5842. }
  5843. }
  5844. },
  5845. "notification-url": "https://packages.drupal.org/8/downloads",
  5846. "license": [
  5847. "GPL-2.0-or-later"
  5848. ],
  5849. "authors": [
  5850. {
  5851. "name": "Berdir",
  5852. "homepage": "https://www.drupal.org/user/214652"
  5853. },
  5854. {
  5855. "name": "Frans",
  5856. "homepage": "https://www.drupal.org/user/514222"
  5857. },
  5858. {
  5859. "name": "jeroen.b",
  5860. "homepage": "https://www.drupal.org/user/1853532"
  5861. },
  5862. {
  5863. "name": "jstoller",
  5864. "homepage": "https://www.drupal.org/user/99012"
  5865. },
  5866. {
  5867. "name": "miro_dietiker",
  5868. "homepage": "https://www.drupal.org/user/227761"
  5869. },
  5870. {
  5871. "name": "Primsi",
  5872. "homepage": "https://www.drupal.org/user/282629"
  5873. }
  5874. ],
  5875. "description": "Enables the creation of Paragraphs entities.",
  5876. "homepage": "https://www.drupal.org/project/paragraphs",
  5877. "support": {
  5878. "source": "https://git.drupalcode.org/project/paragraphs"
  5879. }
  5880. },
  5881. {
  5882. "name": "drupal/path_alias_xt",
  5883. "version": "dev-1.x",
  5884. "source": {
  5885. "type": "git",
  5886. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  5887. "reference": "0573ad218a2f7143544626165418eaeec03e1157"
  5888. },
  5889. "require": {
  5890. "drupal/core": "^9.3 || ^10"
  5891. },
  5892. "type": "drupal-module",
  5893. "extra": {
  5894. "branch-alias": {
  5895. "dev-1.x": "1.x-dev"
  5896. },
  5897. "drupal": {
  5898. "version": "8.x-1.x-dev",
  5899. "datestamp": "1658166545",
  5900. "security-coverage": {
  5901. "status": "not-covered",
  5902. "message": "Dev releases are not covered by Drupal security advisories."
  5903. }
  5904. }
  5905. },
  5906. "notification-url": "https://packages.drupal.org/8/downloads",
  5907. "license": [
  5908. "GPL-2.0-or-later"
  5909. ],
  5910. "authors": [
  5911. {
  5912. "name": "adriancid",
  5913. "homepage": "https://www.drupal.org/user/1962106"
  5914. },
  5915. {
  5916. "name": "RdeBoer",
  5917. "homepage": "https://www.drupal.org/user/404007"
  5918. },
  5919. {
  5920. "name": "sdstyles",
  5921. "homepage": "https://www.drupal.org/user/1420228"
  5922. }
  5923. ],
  5924. "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.",
  5925. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5926. "support": {
  5927. "source": "https://git.drupalcode.org/project/path_alias_xt"
  5928. }
  5929. },
  5930. {
  5931. "name": "drupal/pathauto",
  5932. "version": "1.12.0",
  5933. "source": {
  5934. "type": "git",
  5935. "url": "https://git.drupalcode.org/project/pathauto.git",
  5936. "reference": "8.x-1.12"
  5937. },
  5938. "dist": {
  5939. "type": "zip",
  5940. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.12.zip",
  5941. "reference": "8.x-1.12",
  5942. "shasum": "b7b6432e315e38e59a7c6cc117134326c580de4c"
  5943. },
  5944. "require": {
  5945. "drupal/core": "^9.3 || ^10",
  5946. "drupal/ctools": "*",
  5947. "drupal/token": "*"
  5948. },
  5949. "suggest": {
  5950. "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."
  5951. },
  5952. "type": "drupal-module",
  5953. "extra": {
  5954. "drupal": {
  5955. "version": "8.x-1.12",
  5956. "datestamp": "1696776683",
  5957. "security-coverage": {
  5958. "status": "covered",
  5959. "message": "Covered by Drupal's security advisory policy"
  5960. }
  5961. },
  5962. "drush": {
  5963. "services": {
  5964. "drush.services.yml": "^9 || ^10"
  5965. }
  5966. }
  5967. },
  5968. "notification-url": "https://packages.drupal.org/8/downloads",
  5969. "license": [
  5970. "GPL-2.0-or-later"
  5971. ],
  5972. "authors": [
  5973. {
  5974. "name": "Berdir",
  5975. "homepage": "https://www.drupal.org/user/214652"
  5976. },
  5977. {
  5978. "name": "Dave Reid",
  5979. "homepage": "https://www.drupal.org/user/53892"
  5980. },
  5981. {
  5982. "name": "Freso",
  5983. "homepage": "https://www.drupal.org/user/27504"
  5984. },
  5985. {
  5986. "name": "greggles",
  5987. "homepage": "https://www.drupal.org/user/36762"
  5988. }
  5989. ],
  5990. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  5991. "homepage": "https://www.drupal.org/project/pathauto",
  5992. "support": {
  5993. "source": "https://cgit.drupalcode.org/pathauto",
  5994. "issues": "https://www.drupal.org/project/issues/pathauto",
  5995. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  5996. }
  5997. },
  5998. {
  5999. "name": "drupal/pathologic",
  6000. "version": "2.0.0-alpha1",
  6001. "source": {
  6002. "type": "git",
  6003. "url": "https://git.drupalcode.org/project/pathologic.git",
  6004. "reference": "2.0.0-alpha1"
  6005. },
  6006. "dist": {
  6007. "type": "zip",
  6008. "url": "https://ftp.drupal.org/files/projects/pathologic-2.0.0-alpha1.zip",
  6009. "reference": "2.0.0-alpha1",
  6010. "shasum": "be911b098ece7d1ffa55cf0d5f33d38ea40acda4"
  6011. },
  6012. "require": {
  6013. "drupal/core": "^9 || ^10"
  6014. },
  6015. "type": "drupal-module",
  6016. "extra": {
  6017. "drupal": {
  6018. "version": "2.0.0-alpha1",
  6019. "datestamp": "1681263978",
  6020. "security-coverage": {
  6021. "status": "not-covered",
  6022. "message": "Alpha releases are not covered by Drupal security advisories."
  6023. }
  6024. }
  6025. },
  6026. "notification-url": "https://packages.drupal.org/8/downloads",
  6027. "license": [
  6028. "GPL-2.0+"
  6029. ],
  6030. "authors": [
  6031. {
  6032. "name": "Berdir",
  6033. "homepage": "https://www.drupal.org/user/214652"
  6034. },
  6035. {
  6036. "name": "dww",
  6037. "homepage": "https://www.drupal.org/user/46549"
  6038. },
  6039. {
  6040. "name": "Garrett Albright",
  6041. "homepage": "https://www.drupal.org/user/191212"
  6042. },
  6043. {
  6044. "name": "mark_fullmer",
  6045. "homepage": "https://www.drupal.org/user/2612816"
  6046. }
  6047. ],
  6048. "description": "Helps avoid broken links and incorrect paths in content.",
  6049. "homepage": "https://www.drupal.org/project/pathologic",
  6050. "support": {
  6051. "source": "https://git.drupalcode.org/project/pathologic"
  6052. }
  6053. },
  6054. {
  6055. "name": "drupal/persistent_login",
  6056. "version": "1.6.0",
  6057. "source": {
  6058. "type": "git",
  6059. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6060. "reference": "8.x-1.6"
  6061. },
  6062. "dist": {
  6063. "type": "zip",
  6064. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.6.zip",
  6065. "reference": "8.x-1.6",
  6066. "shasum": "87bc87ae8c4035efbdf8d6cae17c489c4fdd0aa3"
  6067. },
  6068. "require": {
  6069. "drupal/core": "^9.2 || ^10"
  6070. },
  6071. "type": "drupal-module",
  6072. "extra": {
  6073. "drupal": {
  6074. "version": "8.x-1.6",
  6075. "datestamp": "1679547817",
  6076. "security-coverage": {
  6077. "status": "covered",
  6078. "message": "Covered by Drupal's security advisory policy"
  6079. }
  6080. }
  6081. },
  6082. "notification-url": "https://packages.drupal.org/8/downloads",
  6083. "license": [
  6084. "GPL-2.0-or-later"
  6085. ],
  6086. "authors": [
  6087. {
  6088. "name": "gapple",
  6089. "homepage": "https://www.drupal.org/user/490940"
  6090. }
  6091. ],
  6092. "description": "Provides a \"Remember Me\" feature on the login form.",
  6093. "homepage": "https://www.drupal.org/project/persistent_login",
  6094. "keywords": [
  6095. "Drupal"
  6096. ],
  6097. "support": {
  6098. "source": "https://git.drupalcode.org/project/persistent_login",
  6099. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6100. }
  6101. },
  6102. {
  6103. "name": "drupal/phone_number",
  6104. "version": "2.0.0-alpha5",
  6105. "source": {
  6106. "type": "git",
  6107. "url": "https://git.drupalcode.org/project/phone_number.git",
  6108. "reference": "2.0.0-alpha5"
  6109. },
  6110. "dist": {
  6111. "type": "zip",
  6112. "url": "https://ftp.drupal.org/files/projects/phone_number-2.0.0-alpha5.zip",
  6113. "reference": "2.0.0-alpha5",
  6114. "shasum": "b57f78b8d68c6e1017cdeb7ff77440729d9216c4"
  6115. },
  6116. "require": {
  6117. "drupal/core": "^9.2 || ^10",
  6118. "giggsey/libphonenumber-for-php": "^8.0"
  6119. },
  6120. "type": "drupal-module",
  6121. "extra": {
  6122. "drupal": {
  6123. "version": "2.0.0-alpha5",
  6124. "datestamp": "1698159525",
  6125. "security-coverage": {
  6126. "status": "not-covered",
  6127. "message": "Alpha releases are not covered by Drupal security advisories."
  6128. }
  6129. }
  6130. },
  6131. "notification-url": "https://packages.drupal.org/8/downloads",
  6132. "license": [
  6133. "GPL-2.0+"
  6134. ],
  6135. "authors": [
  6136. {
  6137. "name": "Christopher Caldwell",
  6138. "homepage": "https://www.drupal.org/u/chrisolof",
  6139. "email": "chrisolof@gmail.com",
  6140. "role": "Maintainer"
  6141. },
  6142. {
  6143. "name": "nyariv",
  6144. "homepage": "https://www.drupal.org/user/2747789"
  6145. },
  6146. {
  6147. "name": "tim-diels",
  6148. "homepage": "https://www.drupal.org/user/2915097"
  6149. },
  6150. {
  6151. "name": "vaish",
  6152. "homepage": "https://www.drupal.org/user/92189"
  6153. }
  6154. ],
  6155. "description": "A validated phone number field.",
  6156. "homepage": "http://drupal.org/project/phone_number",
  6157. "support": {
  6158. "source": "https://git.drupalcode.org/project/phone_number"
  6159. }
  6160. },
  6161. {
  6162. "name": "drupal/profile",
  6163. "version": "1.7.0",
  6164. "source": {
  6165. "type": "git",
  6166. "url": "https://git.drupalcode.org/project/profile.git",
  6167. "reference": "8.x-1.7"
  6168. },
  6169. "dist": {
  6170. "type": "zip",
  6171. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.7.zip",
  6172. "reference": "8.x-1.7",
  6173. "shasum": "f0236acff507aff2a1e2e11cb9c873a0b608ec1c"
  6174. },
  6175. "require": {
  6176. "drupal/core": "^9 || ^10",
  6177. "drupal/entity": "^1.0"
  6178. },
  6179. "require-dev": {
  6180. "drupal/token": "^1.7"
  6181. },
  6182. "type": "drupal-module",
  6183. "extra": {
  6184. "drupal": {
  6185. "version": "8.x-1.7",
  6186. "datestamp": "1665131792",
  6187. "security-coverage": {
  6188. "status": "covered",
  6189. "message": "Covered by Drupal's security advisory policy"
  6190. }
  6191. }
  6192. },
  6193. "notification-url": "https://packages.drupal.org/8/downloads",
  6194. "license": [
  6195. "GPL-2.0-or-later"
  6196. ],
  6197. "authors": [
  6198. {
  6199. "name": "bojanz",
  6200. "homepage": "https://www.drupal.org/user/86106"
  6201. },
  6202. {
  6203. "name": "daggerhart",
  6204. "homepage": "https://www.drupal.org/user/167806"
  6205. },
  6206. {
  6207. "name": "fago",
  6208. "homepage": "https://www.drupal.org/user/16747"
  6209. },
  6210. {
  6211. "name": "jsacksick",
  6212. "homepage": "https://www.drupal.org/user/972218"
  6213. },
  6214. {
  6215. "name": "mglaman",
  6216. "homepage": "https://www.drupal.org/user/2416470"
  6217. },
  6218. {
  6219. "name": "pcambra",
  6220. "homepage": "https://www.drupal.org/user/122101"
  6221. }
  6222. ],
  6223. "description": "Provides configurable user profiles.",
  6224. "homepage": "https://drupal.org/project/profile",
  6225. "support": {
  6226. "source": "https://git.drupalcode.org/project/profile"
  6227. }
  6228. },
  6229. {
  6230. "name": "drupal/redirect",
  6231. "version": "1.9.0",
  6232. "source": {
  6233. "type": "git",
  6234. "url": "https://git.drupalcode.org/project/redirect.git",
  6235. "reference": "8.x-1.9"
  6236. },
  6237. "dist": {
  6238. "type": "zip",
  6239. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip",
  6240. "reference": "8.x-1.9",
  6241. "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e"
  6242. },
  6243. "require": {
  6244. "drupal/core": "^9.2 || ^10"
  6245. },
  6246. "type": "drupal-module",
  6247. "extra": {
  6248. "drupal": {
  6249. "version": "8.x-1.9",
  6250. "datestamp": "1693393506",
  6251. "security-coverage": {
  6252. "status": "covered",
  6253. "message": "Covered by Drupal's security advisory policy"
  6254. }
  6255. }
  6256. },
  6257. "notification-url": "https://packages.drupal.org/8/downloads",
  6258. "license": [
  6259. "GPL-2.0-or-later"
  6260. ],
  6261. "authors": [
  6262. {
  6263. "name": "Berdir",
  6264. "homepage": "https://www.drupal.org/user/214652"
  6265. },
  6266. {
  6267. "name": "Dave Reid",
  6268. "homepage": "https://www.drupal.org/user/53892"
  6269. },
  6270. {
  6271. "name": "Kristen Pol",
  6272. "homepage": "https://www.drupal.org/user/8389"
  6273. },
  6274. {
  6275. "name": "pifagor",
  6276. "homepage": "https://www.drupal.org/user/2375692"
  6277. }
  6278. ],
  6279. "description": "Allows users to redirect from old URLs to new URLs.",
  6280. "homepage": "https://www.drupal.org/project/redirect",
  6281. "support": {
  6282. "source": "https://git.drupalcode.org/project/redirect"
  6283. }
  6284. },
  6285. {
  6286. "name": "drupal/redis",
  6287. "version": "1.7.0",
  6288. "source": {
  6289. "type": "git",
  6290. "url": "https://git.drupalcode.org/project/redis.git",
  6291. "reference": "8.x-1.7"
  6292. },
  6293. "dist": {
  6294. "type": "zip",
  6295. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.7.zip",
  6296. "reference": "8.x-1.7",
  6297. "shasum": "602043bdad62ff047321121edcfde8abf3638c7c"
  6298. },
  6299. "require": {
  6300. "drupal/core": "^9.3 || ^10"
  6301. },
  6302. "suggest": {
  6303. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  6304. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  6305. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  6306. },
  6307. "type": "drupal-module",
  6308. "extra": {
  6309. "drupal": {
  6310. "version": "8.x-1.7",
  6311. "datestamp": "1686175620",
  6312. "security-coverage": {
  6313. "status": "covered",
  6314. "message": "Covered by Drupal's security advisory policy"
  6315. }
  6316. }
  6317. },
  6318. "autoload": {
  6319. "psr-4": {
  6320. "Drupal\\redis\\": "src"
  6321. }
  6322. },
  6323. "notification-url": "https://packages.drupal.org/8/downloads",
  6324. "license": [
  6325. "GPL-2.0-or-later"
  6326. ],
  6327. "authors": [
  6328. {
  6329. "name": "Berdir",
  6330. "homepage": "https://www.drupal.org/user/214652"
  6331. },
  6332. {
  6333. "name": "greg.1.anderson",
  6334. "homepage": "https://www.drupal.org/user/438598"
  6335. },
  6336. {
  6337. "name": "kporras07",
  6338. "homepage": "https://www.drupal.org/user/1349780"
  6339. },
  6340. {
  6341. "name": "pounard",
  6342. "homepage": "https://www.drupal.org/user/240164"
  6343. }
  6344. ],
  6345. "description": "Integration of Drupal with the Redis key-value store.",
  6346. "homepage": "https://www.drupal.org/project/redis",
  6347. "support": {
  6348. "source": "https://git.drupalcode.org/project/redis"
  6349. }
  6350. },
  6351. {
  6352. "name": "drupal/rules",
  6353. "version": "3.0.0-alpha8",
  6354. "source": {
  6355. "type": "git",
  6356. "url": "https://git.drupalcode.org/project/rules.git",
  6357. "reference": "8.x-3.0-alpha8"
  6358. },
  6359. "dist": {
  6360. "type": "zip",
  6361. "url": "https://ftp.drupal.org/files/projects/rules-8.x-3.0-alpha8.zip",
  6362. "reference": "8.x-3.0-alpha8",
  6363. "shasum": "22a44298b98000697efd86a29a8df1c0ce0bf44f"
  6364. },
  6365. "require": {
  6366. "drupal/core": "^9.1 || ^10",
  6367. "drupal/typed_data": "^1.0"
  6368. },
  6369. "type": "drupal-module",
  6370. "extra": {
  6371. "drupal": {
  6372. "version": "8.x-3.0-alpha8",
  6373. "datestamp": "1696376270",
  6374. "security-coverage": {
  6375. "status": "not-covered",
  6376. "message": "Alpha releases are not covered by Drupal security advisories."
  6377. }
  6378. },
  6379. "drush": {
  6380. "services": {
  6381. "drush.services.yml": "^9 || ^10"
  6382. }
  6383. }
  6384. },
  6385. "notification-url": "https://packages.drupal.org/8/downloads",
  6386. "license": [
  6387. "GPL-2.0-or-later"
  6388. ],
  6389. "authors": [
  6390. {
  6391. "name": "fago",
  6392. "homepage": "https://www.drupal.org/user/16747"
  6393. },
  6394. {
  6395. "name": "klausi",
  6396. "homepage": "https://www.drupal.org/user/262198"
  6397. },
  6398. {
  6399. "name": "TR",
  6400. "homepage": "https://www.drupal.org/user/202830"
  6401. }
  6402. ],
  6403. "description": "React on events and conditionally evaluate actions.",
  6404. "homepage": "https://www.drupal.org/project/rules",
  6405. "support": {
  6406. "source": "https://git.drupalcode.org/project/rules",
  6407. "issues": "https://www.drupal.org/project/issues/rules"
  6408. }
  6409. },
  6410. {
  6411. "name": "drupal/search_api",
  6412. "version": "1.30.0",
  6413. "source": {
  6414. "type": "git",
  6415. "url": "https://git.drupalcode.org/project/search_api.git",
  6416. "reference": "8.x-1.30"
  6417. },
  6418. "dist": {
  6419. "type": "zip",
  6420. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.30.zip",
  6421. "reference": "8.x-1.30",
  6422. "shasum": "25bd2cfab6a6332c595fbc8be1c4cfff33a85ce8"
  6423. },
  6424. "require": {
  6425. "drupal/core": "^9.3 || ^10.0"
  6426. },
  6427. "conflict": {
  6428. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  6429. },
  6430. "require-dev": {
  6431. "drupal/language_fallback_fix": "@dev",
  6432. "drupal/search_api_autocomplete": "@dev",
  6433. "drupal/search_api_db": "*"
  6434. },
  6435. "suggest": {
  6436. "drupal/facets": "Adds the ability to create faceted searches.",
  6437. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6438. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6439. },
  6440. "type": "drupal-module",
  6441. "extra": {
  6442. "drupal": {
  6443. "version": "8.x-1.30",
  6444. "datestamp": "1697366291",
  6445. "security-coverage": {
  6446. "status": "covered",
  6447. "message": "Covered by Drupal's security advisory policy"
  6448. }
  6449. },
  6450. "drush": {
  6451. "services": {
  6452. "drush.services.yml": "^9 || ^10 || ^11"
  6453. }
  6454. }
  6455. },
  6456. "notification-url": "https://packages.drupal.org/8/downloads",
  6457. "license": [
  6458. "GPL-2.0-or-later"
  6459. ],
  6460. "authors": [
  6461. {
  6462. "name": "Thomas Seidl",
  6463. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6464. },
  6465. {
  6466. "name": "Nick Veenhof",
  6467. "homepage": "https://www.drupal.org/u/nick_vh"
  6468. },
  6469. {
  6470. "name": "See other contributors",
  6471. "homepage": "https://www.drupal.org/node/790418/committers"
  6472. }
  6473. ],
  6474. "description": "Provides a generic framework for modules offering search capabilities.",
  6475. "homepage": "https://www.drupal.org/project/search_api",
  6476. "support": {
  6477. "source": "https://git.drupalcode.org/project/search_api",
  6478. "issues": "https://www.drupal.org/project/issues/search_api",
  6479. "irc": "irc://irc.freenode.org/drupal-search-api"
  6480. }
  6481. },
  6482. {
  6483. "name": "drupal/search_api_db",
  6484. "version": "1.30.0",
  6485. "require": {
  6486. "drupal/core": "^9.2 || ^10.0",
  6487. "drupal/search_api": "*"
  6488. },
  6489. "type": "metapackage",
  6490. "extra": {
  6491. "drupal": {
  6492. "version": "8.x-1.30",
  6493. "datestamp": "1697366291",
  6494. "security-coverage": {
  6495. "status": "covered",
  6496. "message": "Covered by Drupal's security advisory policy"
  6497. }
  6498. }
  6499. },
  6500. "notification-url": "https://packages.drupal.org/8/downloads",
  6501. "license": [
  6502. "GPL-2.0-or-later"
  6503. ],
  6504. "authors": [
  6505. {
  6506. "name": "borisson_",
  6507. "homepage": "https://www.drupal.org/user/2393360"
  6508. },
  6509. {
  6510. "name": "drunken monkey",
  6511. "homepage": "https://www.drupal.org/user/205582"
  6512. },
  6513. {
  6514. "name": "Nick_vh",
  6515. "homepage": "https://www.drupal.org/user/122682"
  6516. }
  6517. ],
  6518. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6519. "homepage": "https://www.drupal.org/project/search_api",
  6520. "support": {
  6521. "source": "https://git.drupalcode.org/project/search_api"
  6522. }
  6523. },
  6524. {
  6525. "name": "drupal/seven",
  6526. "version": "1.0.0",
  6527. "source": {
  6528. "type": "git",
  6529. "url": "https://git.drupalcode.org/project/seven.git",
  6530. "reference": "1.0.0"
  6531. },
  6532. "dist": {
  6533. "type": "zip",
  6534. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  6535. "reference": "1.0.0",
  6536. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  6537. },
  6538. "require": {
  6539. "drupal/core": "^9 || ^10"
  6540. },
  6541. "type": "drupal-theme",
  6542. "extra": {
  6543. "drupal": {
  6544. "version": "1.0.0",
  6545. "datestamp": "1683652106",
  6546. "security-coverage": {
  6547. "status": "covered",
  6548. "message": "Covered by Drupal's security advisory policy"
  6549. }
  6550. }
  6551. },
  6552. "notification-url": "https://packages.drupal.org/8/downloads",
  6553. "license": [
  6554. "GPL-2.0-or-later"
  6555. ],
  6556. "authors": [
  6557. {
  6558. "name": "bnjmnm",
  6559. "homepage": "https://www.drupal.org/user/2369194"
  6560. },
  6561. {
  6562. "name": "lauriii",
  6563. "homepage": "https://www.drupal.org/user/1078742"
  6564. },
  6565. {
  6566. "name": "mcrittenden",
  6567. "homepage": "https://www.drupal.org/user/420631"
  6568. },
  6569. {
  6570. "name": "mrfelton",
  6571. "homepage": "https://www.drupal.org/user/305669"
  6572. },
  6573. {
  6574. "name": "TravisCarden",
  6575. "homepage": "https://www.drupal.org/user/236758"
  6576. }
  6577. ],
  6578. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  6579. "homepage": "https://www.drupal.org/project/seven",
  6580. "support": {
  6581. "source": "https://git.drupalcode.org/project/seven"
  6582. }
  6583. },
  6584. {
  6585. "name": "drupal/smart_trim",
  6586. "version": "2.1.0",
  6587. "source": {
  6588. "type": "git",
  6589. "url": "https://git.drupalcode.org/project/smart_trim.git",
  6590. "reference": "2.1.0"
  6591. },
  6592. "dist": {
  6593. "type": "zip",
  6594. "url": "https://ftp.drupal.org/files/projects/smart_trim-2.1.0.zip",
  6595. "reference": "2.1.0",
  6596. "shasum": "874b4cbddc4833f1b9adc76a8398377903fd73ee"
  6597. },
  6598. "require": {
  6599. "drupal/core": "^8 || ^9 || ^10",
  6600. "drupal/token": "^1.0",
  6601. "php": ">=7.4.0"
  6602. },
  6603. "require-dev": {
  6604. "drupal/token_filter": "^2.0"
  6605. },
  6606. "type": "drupal-module",
  6607. "extra": {
  6608. "drupal": {
  6609. "version": "2.1.0",
  6610. "datestamp": "1686152417",
  6611. "security-coverage": {
  6612. "status": "covered",
  6613. "message": "Covered by Drupal's security advisory policy"
  6614. }
  6615. }
  6616. },
  6617. "notification-url": "https://packages.drupal.org/8/downloads",
  6618. "license": [
  6619. "GPL-2.0-or-later"
  6620. ],
  6621. "authors": [
  6622. {
  6623. "name": "Mark Casias (markie)",
  6624. "homepage": "https://www.drupal.org/u/markie",
  6625. "role": "Maintainer"
  6626. },
  6627. {
  6628. "name": "AmyJune Hineline (volkswagenchick)",
  6629. "homepage": "https://www.drupal.org/u/volkswagenchick",
  6630. "role": "Maintainer"
  6631. },
  6632. {
  6633. "name": "Michael Anello (ultimike)",
  6634. "homepage": "https://www.drupal.org/u/ultimike",
  6635. "role": "Maintainer"
  6636. }
  6637. ],
  6638. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  6639. "homepage": "https://drupal.org/project/smart_trim",
  6640. "support": {
  6641. "source": "https://git.drupalcode.org/project/smart_trim",
  6642. "issues": "https://drupal.org/project/issues/smart_trim"
  6643. }
  6644. },
  6645. {
  6646. "name": "drupal/smtp",
  6647. "version": "1.2.0",
  6648. "source": {
  6649. "type": "git",
  6650. "url": "https://git.drupalcode.org/project/smtp.git",
  6651. "reference": "8.x-1.2"
  6652. },
  6653. "dist": {
  6654. "type": "zip",
  6655. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.2.zip",
  6656. "reference": "8.x-1.2",
  6657. "shasum": "10d302d4a90521d674bdd078da8aed886fa5ec41"
  6658. },
  6659. "require": {
  6660. "drupal/core": ">=8.9 <11",
  6661. "phpmailer/phpmailer": "^6.1.7"
  6662. },
  6663. "suggest": {
  6664. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  6665. },
  6666. "type": "drupal-module",
  6667. "extra": {
  6668. "drupal": {
  6669. "version": "8.x-1.2",
  6670. "datestamp": "1667416337",
  6671. "security-coverage": {
  6672. "status": "covered",
  6673. "message": "Covered by Drupal's security advisory policy"
  6674. }
  6675. },
  6676. "branch-alias": {
  6677. "dev-8.x-1.x": "1.x-dev"
  6678. }
  6679. },
  6680. "notification-url": "https://packages.drupal.org/8/downloads",
  6681. "license": [
  6682. "GPL-2.0-or-later"
  6683. ],
  6684. "authors": [
  6685. {
  6686. "name": "japerry",
  6687. "homepage": "https://www.drupal.org/user/45640"
  6688. },
  6689. {
  6690. "name": "joseph.olstad",
  6691. "homepage": "https://www.drupal.org/user/1321830"
  6692. },
  6693. {
  6694. "name": "josesanmartin",
  6695. "homepage": "https://www.drupal.org/user/72012"
  6696. },
  6697. {
  6698. "name": "LukeLast",
  6699. "homepage": "https://www.drupal.org/user/30151"
  6700. },
  6701. {
  6702. "name": "oadaeh",
  6703. "homepage": "https://www.drupal.org/user/4649"
  6704. },
  6705. {
  6706. "name": "sadashiv",
  6707. "homepage": "https://www.drupal.org/user/1773304"
  6708. },
  6709. {
  6710. "name": "wundo",
  6711. "homepage": "https://www.drupal.org/user/25523"
  6712. },
  6713. {
  6714. "name": "yettyn",
  6715. "homepage": "https://www.drupal.org/user/93281"
  6716. }
  6717. ],
  6718. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  6719. "homepage": "https://www.drupal.org/project/smtp",
  6720. "support": {
  6721. "source": "https://git.drupalcode.org/project/smtp",
  6722. "issues": "https://www.drupal.org/project/issues/smtp"
  6723. }
  6724. },
  6725. {
  6726. "name": "drupal/social_media_links",
  6727. "version": "2.9.0",
  6728. "source": {
  6729. "type": "git",
  6730. "url": "https://git.drupalcode.org/project/social_media_links.git",
  6731. "reference": "8.x-2.9"
  6732. },
  6733. "dist": {
  6734. "type": "zip",
  6735. "url": "https://ftp.drupal.org/files/projects/social_media_links-8.x-2.9.zip",
  6736. "reference": "8.x-2.9",
  6737. "shasum": "d73ea6199b48e11e57fe8a2aeb2afbf3c295704a"
  6738. },
  6739. "require": {
  6740. "drupal/core": "^8 || ^9 || ^10"
  6741. },
  6742. "type": "drupal-module",
  6743. "extra": {
  6744. "drupal": {
  6745. "version": "8.x-2.9",
  6746. "datestamp": "1665768361",
  6747. "security-coverage": {
  6748. "status": "covered",
  6749. "message": "Covered by Drupal's security advisory policy"
  6750. }
  6751. }
  6752. },
  6753. "notification-url": "https://packages.drupal.org/8/downloads",
  6754. "license": [
  6755. "GPL-2.0-or-later"
  6756. ],
  6757. "authors": [
  6758. {
  6759. "name": "Neslee Canil Pinto",
  6760. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  6761. "role": "Maintainer"
  6762. },
  6763. {
  6764. "name": "Christian Beier",
  6765. "homepage": "https://www.drupal.org/u/cbeier",
  6766. "role": "Maintainer"
  6767. }
  6768. ],
  6769. "description": "The module provides a block that display links (icons) to your profiles on various social networking sites.",
  6770. "homepage": "https://www.drupal.org/project/social_media_links",
  6771. "support": {
  6772. "source": "https://git.drupalcode.org/project/social_media_links",
  6773. "issues": "https://www.drupal.org/project/issues/social_media_links"
  6774. }
  6775. },
  6776. {
  6777. "name": "drupal/sophron",
  6778. "version": "2.0.1",
  6779. "source": {
  6780. "type": "git",
  6781. "url": "https://git.drupalcode.org/project/sophron.git",
  6782. "reference": "2.0.1"
  6783. },
  6784. "dist": {
  6785. "type": "zip",
  6786. "url": "https://ftp.drupal.org/files/projects/sophron-2.0.1.zip",
  6787. "reference": "2.0.1",
  6788. "shasum": "eb9b22e843400392ba7fa35dc99c644d2cf08982"
  6789. },
  6790. "require": {
  6791. "drupal/core": "^10",
  6792. "fileeye/mimemap": "^2.0.1"
  6793. },
  6794. "type": "drupal-module",
  6795. "extra": {
  6796. "drupal": {
  6797. "version": "2.0.1",
  6798. "datestamp": "1676319965",
  6799. "security-coverage": {
  6800. "status": "covered",
  6801. "message": "Covered by Drupal's security advisory policy"
  6802. }
  6803. }
  6804. },
  6805. "autoload": {
  6806. "psr-4": {
  6807. "Drupal\\sophron\\": "src/"
  6808. }
  6809. },
  6810. "notification-url": "https://packages.drupal.org/8/downloads",
  6811. "license": [
  6812. "GPL-2.0-or-later"
  6813. ],
  6814. "authors": [
  6815. {
  6816. "name": "mondrake",
  6817. "homepage": "https://www.drupal.org/user/1307444"
  6818. }
  6819. ],
  6820. "description": "Provides an extensive MIME types management API",
  6821. "homepage": "https://www.drupal.org/project/sophron",
  6822. "support": {
  6823. "source": "https://git.drupalcode.org/project/sophron"
  6824. }
  6825. },
  6826. {
  6827. "name": "drupal/synonyms",
  6828. "version": "2.1.2",
  6829. "source": {
  6830. "type": "git",
  6831. "url": "https://git.drupalcode.org/project/synonyms.git",
  6832. "reference": "2.1.2"
  6833. },
  6834. "dist": {
  6835. "type": "zip",
  6836. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.2.zip",
  6837. "reference": "2.1.2",
  6838. "shasum": "b6b88dc80ecb88b67bf4cbf220ea5e712137ca4d"
  6839. },
  6840. "require": {
  6841. "drupal/core": "^9 || ^10"
  6842. },
  6843. "require-dev": {
  6844. "drupal/synonyms_list_field": "*"
  6845. },
  6846. "type": "drupal-module",
  6847. "extra": {
  6848. "drupal": {
  6849. "version": "2.1.2",
  6850. "datestamp": "1665785027",
  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": "Bojan Zivanovic",
  6864. "homepage": "https://www.drupal.org/u/bojanz",
  6865. "role": "Author and D5, D6 and D7 versions developer."
  6866. },
  6867. {
  6868. "name": "Alex Trosenko",
  6869. "homepage": "https://www.drupal.org/u/bucefal91",
  6870. "role": "D7 and D8 versions developer."
  6871. },
  6872. {
  6873. "name": "Duro Arezina",
  6874. "homepage": "https://www.drupal.org/u/devad",
  6875. "role": "D8, D9 and D10 versions maintenance"
  6876. },
  6877. {
  6878. "name": "See other contributors",
  6879. "homepage": "https://www.drupal.org/node/148775/committers"
  6880. }
  6881. ],
  6882. "description": "Provides synonyms feature for all entities.",
  6883. "homepage": "https://www.drupal.org/project/synonyms",
  6884. "support": {
  6885. "source": "https://git.drupalcode.org/project/synonyms",
  6886. "issues": "https://www.drupal.org/project/issues/synonyms"
  6887. }
  6888. },
  6889. {
  6890. "name": "drupal/token",
  6891. "version": "1.13.0",
  6892. "source": {
  6893. "type": "git",
  6894. "url": "https://git.drupalcode.org/project/token.git",
  6895. "reference": "8.x-1.13"
  6896. },
  6897. "dist": {
  6898. "type": "zip",
  6899. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip",
  6900. "reference": "8.x-1.13",
  6901. "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2"
  6902. },
  6903. "require": {
  6904. "drupal/core": "^9.2 || ^10"
  6905. },
  6906. "type": "drupal-module",
  6907. "extra": {
  6908. "drupal": {
  6909. "version": "8.x-1.13",
  6910. "datestamp": "1697885927",
  6911. "security-coverage": {
  6912. "status": "covered",
  6913. "message": "Covered by Drupal's security advisory policy"
  6914. }
  6915. },
  6916. "drush": {
  6917. "services": {
  6918. "drush.services.yml": ">=9"
  6919. }
  6920. }
  6921. },
  6922. "notification-url": "https://packages.drupal.org/8/downloads",
  6923. "license": [
  6924. "GPL-2.0-or-later"
  6925. ],
  6926. "authors": [
  6927. {
  6928. "name": "Berdir",
  6929. "homepage": "https://www.drupal.org/user/214652"
  6930. },
  6931. {
  6932. "name": "Dave Reid",
  6933. "homepage": "https://www.drupal.org/user/53892"
  6934. },
  6935. {
  6936. "name": "eaton",
  6937. "homepage": "https://www.drupal.org/user/16496"
  6938. },
  6939. {
  6940. "name": "fago",
  6941. "homepage": "https://www.drupal.org/user/16747"
  6942. },
  6943. {
  6944. "name": "greggles",
  6945. "homepage": "https://www.drupal.org/user/36762"
  6946. },
  6947. {
  6948. "name": "mikeryan",
  6949. "homepage": "https://www.drupal.org/user/4420"
  6950. }
  6951. ],
  6952. "description": "Provides a user interface for the Token API, some missing core tokens.",
  6953. "homepage": "https://www.drupal.org/project/token",
  6954. "support": {
  6955. "source": "https://git.drupalcode.org/project/token"
  6956. }
  6957. },
  6958. {
  6959. "name": "drupal/translation_views",
  6960. "version": "1.0.0-alpha11",
  6961. "source": {
  6962. "type": "git",
  6963. "url": "https://git.drupalcode.org/project/translation_views.git",
  6964. "reference": "8.x-1.0-alpha11"
  6965. },
  6966. "dist": {
  6967. "type": "zip",
  6968. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  6969. "reference": "8.x-1.0-alpha11",
  6970. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  6971. },
  6972. "require": {
  6973. "drupal/core": "^8.8 || ^9 || ^10"
  6974. },
  6975. "require-dev": {
  6976. "drupal/translators_content": "^1.0@alpha"
  6977. },
  6978. "type": "drupal-module",
  6979. "extra": {
  6980. "drupal": {
  6981. "version": "8.x-1.0-alpha11",
  6982. "datestamp": "1679660668",
  6983. "security-coverage": {
  6984. "status": "not-covered",
  6985. "message": "Project has not opted into security advisory coverage!"
  6986. }
  6987. }
  6988. },
  6989. "notification-url": "https://packages.drupal.org/8/downloads",
  6990. "license": [
  6991. "GPL-2.0-or-later"
  6992. ],
  6993. "authors": [
  6994. {
  6995. "name": "matsbla",
  6996. "homepage": "https://www.drupal.org/user/2325394"
  6997. },
  6998. {
  6999. "name": "vlad.dancer",
  7000. "homepage": "https://www.drupal.org/user/903844"
  7001. }
  7002. ],
  7003. "description": "Create customized lists and queries of translations from your database.",
  7004. "homepage": "https://www.drupal.org/project/translation_views",
  7005. "support": {
  7006. "source": "https://git.drupalcode.org/project/translation_views"
  7007. }
  7008. },
  7009. {
  7010. "name": "drupal/typed_data",
  7011. "version": "1.0.0-beta2",
  7012. "source": {
  7013. "type": "git",
  7014. "url": "https://git.drupalcode.org/project/typed_data.git",
  7015. "reference": "8.x-1.0-beta2"
  7016. },
  7017. "dist": {
  7018. "type": "zip",
  7019. "url": "https://ftp.drupal.org/files/projects/typed_data-8.x-1.0-beta2.zip",
  7020. "reference": "8.x-1.0-beta2",
  7021. "shasum": "e0aa651b129d8dcd765ca49cba8682ebe09e6e73"
  7022. },
  7023. "require": {
  7024. "drupal/core": "^9.1 || ^10"
  7025. },
  7026. "type": "drupal-module",
  7027. "extra": {
  7028. "drupal": {
  7029. "version": "8.x-1.0-beta2",
  7030. "datestamp": "1679429196",
  7031. "security-coverage": {
  7032. "status": "not-covered",
  7033. "message": "Beta releases are not covered by Drupal security advisories."
  7034. }
  7035. },
  7036. "drush": {
  7037. "services": {
  7038. "drush.services.yml": ">=9"
  7039. }
  7040. }
  7041. },
  7042. "notification-url": "https://packages.drupal.org/8/downloads",
  7043. "license": [
  7044. "GPL-2.0-or-later"
  7045. ],
  7046. "authors": [
  7047. {
  7048. "name": "fago",
  7049. "homepage": "https://www.drupal.org/user/16747"
  7050. },
  7051. {
  7052. "name": "TR",
  7053. "homepage": "https://www.drupal.org/user/202830"
  7054. }
  7055. ],
  7056. "description": "Extends the core Typed Data API with new APIs and features.",
  7057. "homepage": "https://www.drupal.org/project/typed_data",
  7058. "support": {
  7059. "source": "https://git.drupalcode.org/project/typed_data",
  7060. "issues": "https://www.drupal.org/project/issues/typed_data"
  7061. }
  7062. },
  7063. {
  7064. "name": "drupal/ultimate_cron",
  7065. "version": "2.0.0-alpha6",
  7066. "source": {
  7067. "type": "git",
  7068. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  7069. "reference": "8.x-2.0-alpha6"
  7070. },
  7071. "dist": {
  7072. "type": "zip",
  7073. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha6.zip",
  7074. "reference": "8.x-2.0-alpha6",
  7075. "shasum": "42ab6df8e94a9b3772876a378062534552a32826"
  7076. },
  7077. "require": {
  7078. "drupal/core": "^9 || ^10"
  7079. },
  7080. "type": "drupal-module",
  7081. "extra": {
  7082. "drupal": {
  7083. "version": "8.x-2.0-alpha6",
  7084. "datestamp": "1666471448",
  7085. "security-coverage": {
  7086. "status": "not-covered",
  7087. "message": "Alpha releases are not covered by Drupal security advisories."
  7088. }
  7089. },
  7090. "drush": {
  7091. "services": {
  7092. "drush.services.yml": "^9 || ^10 || ^11"
  7093. }
  7094. }
  7095. },
  7096. "notification-url": "https://packages.drupal.org/8/downloads",
  7097. "license": [
  7098. "GPL-2.0+"
  7099. ],
  7100. "authors": [
  7101. {
  7102. "name": "arnested",
  7103. "homepage": "https://www.drupal.org/user/245635"
  7104. },
  7105. {
  7106. "name": "Berdir",
  7107. "homepage": "https://www.drupal.org/user/214652"
  7108. },
  7109. {
  7110. "name": "Dane Powell",
  7111. "homepage": "https://www.drupal.org/user/339326"
  7112. },
  7113. {
  7114. "name": "gielfeldt",
  7115. "homepage": "https://www.drupal.org/user/366993"
  7116. },
  7117. {
  7118. "name": "miro_dietiker",
  7119. "homepage": "https://www.drupal.org/user/227761"
  7120. },
  7121. {
  7122. "name": "Primsi",
  7123. "homepage": "https://www.drupal.org/user/282629"
  7124. }
  7125. ],
  7126. "description": "Ultimate cron",
  7127. "homepage": "https://www.drupal.org/project/ultimate_cron",
  7128. "support": {
  7129. "source": "https://git.drupalcode.org/project/ultimate_cron"
  7130. }
  7131. },
  7132. {
  7133. "name": "drupal/video_embed_field",
  7134. "version": "2.5.0",
  7135. "source": {
  7136. "type": "git",
  7137. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  7138. "reference": "8.x-2.5"
  7139. },
  7140. "dist": {
  7141. "type": "zip",
  7142. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  7143. "reference": "8.x-2.5",
  7144. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  7145. },
  7146. "require": {
  7147. "drupal/core": "^9.2 || ^10"
  7148. },
  7149. "require-dev": {
  7150. "drupal/ckeditor": "^1",
  7151. "drupal/colorbox": "^2",
  7152. "drupal/video_embed_media": "*"
  7153. },
  7154. "type": "drupal-module",
  7155. "extra": {
  7156. "drupal": {
  7157. "version": "8.x-2.5",
  7158. "datestamp": "1671413311",
  7159. "security-coverage": {
  7160. "status": "covered",
  7161. "message": "Covered by Drupal's security advisory policy"
  7162. }
  7163. }
  7164. },
  7165. "notification-url": "https://packages.drupal.org/8/downloads",
  7166. "license": [
  7167. "GPL-2.0-or-later"
  7168. ],
  7169. "authors": [
  7170. {
  7171. "name": "abhinesh",
  7172. "homepage": "https://www.drupal.org/user/3645979"
  7173. },
  7174. {
  7175. "name": "jec006",
  7176. "homepage": "https://www.drupal.org/user/855980"
  7177. },
  7178. {
  7179. "name": "plopesc",
  7180. "homepage": "https://www.drupal.org/user/282415"
  7181. },
  7182. {
  7183. "name": "Sam152",
  7184. "homepage": "https://www.drupal.org/user/1485048"
  7185. }
  7186. ],
  7187. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  7188. "homepage": "https://www.drupal.org/project/video_embed_field",
  7189. "support": {
  7190. "source": "https://git.drupalcode.org/project/video_embed_field"
  7191. }
  7192. },
  7193. {
  7194. "name": "drupal/views_bulk_edit",
  7195. "version": "2.9.0",
  7196. "source": {
  7197. "type": "git",
  7198. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  7199. "reference": "8.x-2.9"
  7200. },
  7201. "dist": {
  7202. "type": "zip",
  7203. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.9.zip",
  7204. "reference": "8.x-2.9",
  7205. "shasum": "db45a8cc9ac629859374b24974eafcef257e4387"
  7206. },
  7207. "require": {
  7208. "drupal/core": "^9.4 || ^10"
  7209. },
  7210. "require-dev": {
  7211. "drupal/views_bulk_operations": "~4.2.4"
  7212. },
  7213. "suggest": {
  7214. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  7215. },
  7216. "type": "drupal-module",
  7217. "extra": {
  7218. "drupal": {
  7219. "version": "8.x-2.9",
  7220. "datestamp": "1690222256",
  7221. "security-coverage": {
  7222. "status": "covered",
  7223. "message": "Covered by Drupal's security advisory policy"
  7224. }
  7225. }
  7226. },
  7227. "notification-url": "https://packages.drupal.org/8/downloads",
  7228. "license": [
  7229. "GPL-2.0+"
  7230. ],
  7231. "authors": [
  7232. {
  7233. "name": "Marcin Grabias",
  7234. "homepage": "https://www.drupal.org/u/graber"
  7235. },
  7236. {
  7237. "name": "Graber",
  7238. "homepage": "https://www.drupal.org/user/1599440"
  7239. },
  7240. {
  7241. "name": "joseph.olstad",
  7242. "homepage": "https://www.drupal.org/user/1321830"
  7243. }
  7244. ],
  7245. "description": "Allows bulk edition of entity field values.",
  7246. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  7247. "support": {
  7248. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  7249. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  7250. }
  7251. },
  7252. {
  7253. "name": "drupal/views_bulk_operations",
  7254. "version": "4.2.5",
  7255. "source": {
  7256. "type": "git",
  7257. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  7258. "reference": "4.2.5"
  7259. },
  7260. "dist": {
  7261. "type": "zip",
  7262. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.2.5.zip",
  7263. "reference": "4.2.5",
  7264. "shasum": "220479c5187b1619d5703f64c6f8c272afecf897"
  7265. },
  7266. "require": {
  7267. "drupal/core": "^9.4 || ^10",
  7268. "php": ">=7.4.0"
  7269. },
  7270. "require-dev": {
  7271. "drush/drush": "^11"
  7272. },
  7273. "suggest": {
  7274. "drush/drush": "^10 || ^11"
  7275. },
  7276. "type": "drupal-module",
  7277. "extra": {
  7278. "drupal": {
  7279. "version": "4.2.5",
  7280. "datestamp": "1691066184",
  7281. "security-coverage": {
  7282. "status": "covered",
  7283. "message": "Covered by Drupal's security advisory policy"
  7284. }
  7285. },
  7286. "drush": {
  7287. "services": {
  7288. "drush.services.yml": "^10 || ^11"
  7289. }
  7290. }
  7291. },
  7292. "notification-url": "https://packages.drupal.org/8/downloads",
  7293. "license": [
  7294. "GPL-2.0-or-later"
  7295. ],
  7296. "authors": [
  7297. {
  7298. "name": "Marcin Grabias",
  7299. "homepage": "https://www.drupal.org/u/graber"
  7300. },
  7301. {
  7302. "name": "Graber",
  7303. "homepage": "https://www.drupal.org/user/1599440"
  7304. },
  7305. {
  7306. "name": "joelpittet",
  7307. "homepage": "https://www.drupal.org/user/160302"
  7308. }
  7309. ],
  7310. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7311. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7312. "support": {
  7313. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  7314. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  7315. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  7316. }
  7317. },
  7318. {
  7319. "name": "drupal/webform",
  7320. "version": "6.2.0",
  7321. "source": {
  7322. "type": "git",
  7323. "url": "https://git.drupalcode.org/project/webform.git",
  7324. "reference": "6.2.0"
  7325. },
  7326. "dist": {
  7327. "type": "zip",
  7328. "url": "https://ftp.drupal.org/files/projects/webform-6.2.0.zip",
  7329. "reference": "6.2.0",
  7330. "shasum": "7a8292fb86fa60c88377279769fd6f1b1fad05c2"
  7331. },
  7332. "require": {
  7333. "drupal/core": "^9.4 || ^10",
  7334. "php": ">=8.1"
  7335. },
  7336. "require-dev": {
  7337. "drupal/address": "1.x-dev",
  7338. "drupal/bootstrap": "3.x-dev",
  7339. "drupal/captcha": "^1 || ^2",
  7340. "drupal/chosen": "3.0.x-dev",
  7341. "drupal/ckeditor": "1.0.x-dev",
  7342. "drupal/clientside_validation": "^3 || ^4",
  7343. "drupal/clientside_validation_jquery": "*",
  7344. "drupal/devel": "5.x-dev",
  7345. "drupal/entity": "1.x-dev",
  7346. "drupal/entity_print": "2.x-dev",
  7347. "drupal/group": "1.x-dev",
  7348. "drupal/hal": "1 - 2",
  7349. "drupal/jquery_ui": "1.x-dev",
  7350. "drupal/jquery_ui_checkboxradio": "2.x-dev",
  7351. "drupal/jquery_ui_datepicker": "2.x-dev",
  7352. "drupal/mailsystem": "4.x-dev",
  7353. "drupal/metatag": "1.x-dev",
  7354. "drupal/paragraphs": "1.x-dev",
  7355. "drupal/select2": "1.x-dev",
  7356. "drupal/smtp": "1.x-dev",
  7357. "drupal/styleguide": "^1 || ^2",
  7358. "drupal/telephone_validation": "2.x-dev",
  7359. "drupal/token": "1.x-dev",
  7360. "drupal/variationcache": "1.x-dev",
  7361. "drupal/webform_access": "*",
  7362. "drupal/webform_attachment": "*",
  7363. "drupal/webform_clientside_validation": "*",
  7364. "drupal/webform_devel": "*",
  7365. "drupal/webform_entity_print": "*",
  7366. "drupal/webform_node": "*",
  7367. "drupal/webform_options_limit": "*",
  7368. "drupal/webform_scheduled_email": "*",
  7369. "drupal/webform_share": "*",
  7370. "drupal/webform_ui": "*"
  7371. },
  7372. "suggest": {
  7373. "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.",
  7374. "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."
  7375. },
  7376. "type": "drupal-module",
  7377. "extra": {
  7378. "drupal": {
  7379. "version": "6.2.0",
  7380. "datestamp": "1698674300",
  7381. "security-coverage": {
  7382. "status": "covered",
  7383. "message": "Covered by Drupal's security advisory policy"
  7384. }
  7385. },
  7386. "drush": {
  7387. "services": {
  7388. "drush.services.yml": ">=9"
  7389. }
  7390. }
  7391. },
  7392. "notification-url": "https://packages.drupal.org/8/downloads",
  7393. "license": [
  7394. "GPL-2.0-or-later"
  7395. ],
  7396. "authors": [
  7397. {
  7398. "name": "Jacob Rockowitz (jrockowitz)",
  7399. "homepage": "https://www.drupal.org/u/jrockowitz",
  7400. "role": "Maintainer"
  7401. },
  7402. {
  7403. "name": "Contributors",
  7404. "homepage": "https://www.drupal.org/node/7404/committers",
  7405. "role": "Contributor"
  7406. },
  7407. {
  7408. "name": "Liam Morland",
  7409. "homepage": "https://www.drupal.org/user/493050"
  7410. },
  7411. {
  7412. "name": "quicksketch",
  7413. "homepage": "https://www.drupal.org/user/35821"
  7414. },
  7415. {
  7416. "name": "torotil",
  7417. "homepage": "https://www.drupal.org/user/865256"
  7418. }
  7419. ],
  7420. "description": "Enables the creation of webforms and questionnaires.",
  7421. "homepage": "https://drupal.org/project/webform",
  7422. "support": {
  7423. "source": "https://git.drupalcode.org/project/webform",
  7424. "issues": "https://www.drupal.org/project/issues/webform?version=8.x",
  7425. "docs": "https://www.drupal.org/docs/8/modules/webform",
  7426. "forum": "https://drupal.stackexchange.com/questions/tagged/webform"
  7427. }
  7428. },
  7429. {
  7430. "name": "drush/drush",
  7431. "version": "11.6.0",
  7432. "source": {
  7433. "type": "git",
  7434. "url": "https://github.com/drush-ops/drush.git",
  7435. "reference": "f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78"
  7436. },
  7437. "dist": {
  7438. "type": "zip",
  7439. "url": "https://api.github.com/repos/drush-ops/drush/zipball/f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78",
  7440. "reference": "f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78",
  7441. "shasum": ""
  7442. },
  7443. "require": {
  7444. "chi-teck/drupal-code-generator": "^2.4",
  7445. "composer/semver": "^1.4 || ^3",
  7446. "consolidation/annotated-command": "^4.8.2",
  7447. "consolidation/config": "^2",
  7448. "consolidation/filter-via-dot-access-data": "^2",
  7449. "consolidation/robo": "^3.0.9 || ^4.0.1",
  7450. "consolidation/site-alias": "^3.1.6 || ^4",
  7451. "consolidation/site-process": "^4.1.3 || ^5",
  7452. "enlightn/security-checker": "^1",
  7453. "ext-dom": "*",
  7454. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  7455. "league/container": "^3.4 || ^4",
  7456. "php": ">=7.4",
  7457. "psy/psysh": "~0.11",
  7458. "symfony/event-dispatcher": "^4.0 || ^5.0 || ^6.0",
  7459. "symfony/filesystem": "^4.4 || ^5.4 || ^6.1",
  7460. "symfony/finder": "^4.0 || ^5 || ^6",
  7461. "symfony/polyfill-php80": "^1.23",
  7462. "symfony/var-dumper": "^4.0 || ^5.0 || ^6.0",
  7463. "symfony/yaml": "^4.0 || ^5.0 || ^6.0",
  7464. "webflo/drupal-finder": "^1.2"
  7465. },
  7466. "conflict": {
  7467. "drupal/core": "< 9.2",
  7468. "drupal/migrate_run": "*",
  7469. "drupal/migrate_tools": "<= 5"
  7470. },
  7471. "require-dev": {
  7472. "composer/installers": "^1.7",
  7473. "cweagans/composer-patches": "~1.0",
  7474. "david-garcia/phpwhois": "4.3.0",
  7475. "drupal/core-recommended": "^9 || ^10",
  7476. "drupal/semver_example": "2.3.0",
  7477. "phpunit/phpunit": ">=7.5.20",
  7478. "rector/rector": "^0.12",
  7479. "squizlabs/php_codesniffer": "^3.6",
  7480. "vlucas/phpdotenv": "^2.4",
  7481. "yoast/phpunit-polyfills": "^0.2.0"
  7482. },
  7483. "bin": [
  7484. "drush"
  7485. ],
  7486. "type": "library",
  7487. "extra": {
  7488. "installer-paths": {
  7489. "sut/core": [
  7490. "type:drupal-core"
  7491. ],
  7492. "sut/libraries/{$name}": [
  7493. "type:drupal-library"
  7494. ],
  7495. "sut/modules/unish/{$name}": [
  7496. "drupal/devel"
  7497. ],
  7498. "sut/themes/unish/{$name}": [
  7499. "drupal/empty_theme"
  7500. ],
  7501. "sut/modules/contrib/{$name}": [
  7502. "type:drupal-module"
  7503. ],
  7504. "sut/profiles/contrib/{$name}": [
  7505. "type:drupal-profile"
  7506. ],
  7507. "sut/themes/contrib/{$name}": [
  7508. "type:drupal-theme"
  7509. ],
  7510. "sut/drush/contrib/{$name}": [
  7511. "type:drupal-drush"
  7512. ]
  7513. }
  7514. },
  7515. "autoload": {
  7516. "psr-4": {
  7517. "Drush\\": "src/"
  7518. }
  7519. },
  7520. "notification-url": "https://packagist.org/downloads/",
  7521. "license": [
  7522. "GPL-2.0-or-later"
  7523. ],
  7524. "authors": [
  7525. {
  7526. "name": "Moshe Weitzman",
  7527. "email": "weitzman@tejasa.com"
  7528. },
  7529. {
  7530. "name": "Owen Barton",
  7531. "email": "drupal@owenbarton.com"
  7532. },
  7533. {
  7534. "name": "Greg Anderson",
  7535. "email": "greg.1.anderson@greenknowe.org"
  7536. },
  7537. {
  7538. "name": "Jonathan Araña Cruz",
  7539. "email": "jonhattan@faita.net"
  7540. },
  7541. {
  7542. "name": "Jonathan Hedstrom",
  7543. "email": "jhedstrom@gmail.com"
  7544. },
  7545. {
  7546. "name": "Christopher Gervais",
  7547. "email": "chris@ergonlogic.com"
  7548. },
  7549. {
  7550. "name": "Dave Reid",
  7551. "email": "dave@davereid.net"
  7552. },
  7553. {
  7554. "name": "Damian Lee",
  7555. "email": "damiankloip@googlemail.com"
  7556. }
  7557. ],
  7558. "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.",
  7559. "homepage": "http://www.drush.org",
  7560. "support": {
  7561. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  7562. "issues": "https://github.com/drush-ops/drush/issues",
  7563. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  7564. "source": "https://github.com/drush-ops/drush/tree/11.6.0"
  7565. },
  7566. "funding": [
  7567. {
  7568. "url": "https://github.com/weitzman",
  7569. "type": "github"
  7570. }
  7571. ],
  7572. "time": "2023-06-06T18:46:18+00:00"
  7573. },
  7574. {
  7575. "name": "egulias/email-validator",
  7576. "version": "4.0.2",
  7577. "source": {
  7578. "type": "git",
  7579. "url": "https://github.com/egulias/EmailValidator.git",
  7580. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  7581. },
  7582. "dist": {
  7583. "type": "zip",
  7584. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  7585. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  7586. "shasum": ""
  7587. },
  7588. "require": {
  7589. "doctrine/lexer": "^2.0 || ^3.0",
  7590. "php": ">=8.1",
  7591. "symfony/polyfill-intl-idn": "^1.26"
  7592. },
  7593. "require-dev": {
  7594. "phpunit/phpunit": "^10.2",
  7595. "vimeo/psalm": "^5.12"
  7596. },
  7597. "suggest": {
  7598. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  7599. },
  7600. "type": "library",
  7601. "extra": {
  7602. "branch-alias": {
  7603. "dev-master": "4.0.x-dev"
  7604. }
  7605. },
  7606. "autoload": {
  7607. "psr-4": {
  7608. "Egulias\\EmailValidator\\": "src"
  7609. }
  7610. },
  7611. "notification-url": "https://packagist.org/downloads/",
  7612. "license": [
  7613. "MIT"
  7614. ],
  7615. "authors": [
  7616. {
  7617. "name": "Eduardo Gulias Davis"
  7618. }
  7619. ],
  7620. "description": "A library for validating emails against several RFCs",
  7621. "homepage": "https://github.com/egulias/EmailValidator",
  7622. "keywords": [
  7623. "email",
  7624. "emailvalidation",
  7625. "emailvalidator",
  7626. "validation",
  7627. "validator"
  7628. ],
  7629. "support": {
  7630. "issues": "https://github.com/egulias/EmailValidator/issues",
  7631. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  7632. },
  7633. "funding": [
  7634. {
  7635. "url": "https://github.com/egulias",
  7636. "type": "github"
  7637. }
  7638. ],
  7639. "time": "2023-10-06T06:47:41+00:00"
  7640. },
  7641. {
  7642. "name": "enlightn/security-checker",
  7643. "version": "v1.10.0",
  7644. "source": {
  7645. "type": "git",
  7646. "url": "https://github.com/enlightn/security-checker.git",
  7647. "reference": "196bacc76e7a72a63d0e1220926dbb190272db97"
  7648. },
  7649. "dist": {
  7650. "type": "zip",
  7651. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/196bacc76e7a72a63d0e1220926dbb190272db97",
  7652. "reference": "196bacc76e7a72a63d0e1220926dbb190272db97",
  7653. "shasum": ""
  7654. },
  7655. "require": {
  7656. "ext-json": "*",
  7657. "guzzlehttp/guzzle": "^6.3|^7.0",
  7658. "php": ">=5.6",
  7659. "symfony/console": "^3.4|^4|^5|^6",
  7660. "symfony/finder": "^3|^4|^5|^6",
  7661. "symfony/process": "^3.4|^4|^5|^6",
  7662. "symfony/yaml": "^3.4|^4|^5|^6"
  7663. },
  7664. "require-dev": {
  7665. "ext-zip": "*",
  7666. "friendsofphp/php-cs-fixer": "^2.18|^3.0",
  7667. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  7668. },
  7669. "bin": [
  7670. "security-checker"
  7671. ],
  7672. "type": "library",
  7673. "autoload": {
  7674. "psr-4": {
  7675. "Enlightn\\SecurityChecker\\": "src"
  7676. }
  7677. },
  7678. "notification-url": "https://packagist.org/downloads/",
  7679. "license": [
  7680. "MIT"
  7681. ],
  7682. "authors": [
  7683. {
  7684. "name": "Paras Malhotra",
  7685. "email": "paras@laravel-enlightn.com"
  7686. },
  7687. {
  7688. "name": "Miguel Piedrafita",
  7689. "email": "soy@miguelpiedrafita.com"
  7690. }
  7691. ],
  7692. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  7693. "keywords": [
  7694. "package",
  7695. "php",
  7696. "scanner",
  7697. "security",
  7698. "security advisories",
  7699. "vulnerability scanner"
  7700. ],
  7701. "support": {
  7702. "issues": "https://github.com/enlightn/security-checker/issues",
  7703. "source": "https://github.com/enlightn/security-checker/tree/v1.10.0"
  7704. },
  7705. "time": "2022-02-21T22:40:16+00:00"
  7706. },
  7707. {
  7708. "name": "fileeye/mimemap",
  7709. "version": "2.0.2",
  7710. "source": {
  7711. "type": "git",
  7712. "url": "https://github.com/FileEye/MimeMap.git",
  7713. "reference": "befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d"
  7714. },
  7715. "dist": {
  7716. "type": "zip",
  7717. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d",
  7718. "reference": "befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d",
  7719. "shasum": ""
  7720. },
  7721. "require": {
  7722. "php": ">=7.3"
  7723. },
  7724. "require-dev": {
  7725. "composer-runtime-api": "^2.0.0",
  7726. "phpstan/phpstan": "^1.2",
  7727. "phpunit/phpunit": "^9 | ^10",
  7728. "sebastian/comparator": ">=4",
  7729. "sebastian/diff": ">=4",
  7730. "squizlabs/php_codesniffer": ">=3.6",
  7731. "symfony/console": ">=5.4",
  7732. "symfony/filesystem": ">=5.4",
  7733. "symfony/var-dumper": ">=5.4",
  7734. "symfony/yaml": ">=5.4",
  7735. "vimeo/psalm": "^4.23 | ^5"
  7736. },
  7737. "bin": [
  7738. "bin/fileeye-mimemap"
  7739. ],
  7740. "type": "library",
  7741. "extra": {
  7742. "branch-alias": {
  7743. "dev-master": "2.x-dev"
  7744. }
  7745. },
  7746. "autoload": {
  7747. "psr-4": {
  7748. "FileEye\\MimeMap\\": "src/"
  7749. }
  7750. },
  7751. "notification-url": "https://packagist.org/downloads/",
  7752. "license": [
  7753. "LGPL-3.0-or-later"
  7754. ],
  7755. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  7756. "homepage": "https://github.com/FileEye/MimeMap",
  7757. "keywords": [
  7758. "mime",
  7759. "mime-database",
  7760. "mime-parser",
  7761. "mime-type"
  7762. ],
  7763. "support": {
  7764. "issues": "https://github.com/FileEye/MimeMap/issues",
  7765. "source": "https://github.com/FileEye/MimeMap/tree/2.0.2"
  7766. },
  7767. "time": "2023-08-29T16:20:26+00:00"
  7768. },
  7769. {
  7770. "name": "fileeye/pel",
  7771. "version": "0.9.20",
  7772. "source": {
  7773. "type": "git",
  7774. "url": "https://github.com/FileEye/pel.git",
  7775. "reference": "1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede"
  7776. },
  7777. "dist": {
  7778. "type": "zip",
  7779. "url": "https://api.github.com/repos/FileEye/pel/zipball/1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede",
  7780. "reference": "1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede",
  7781. "shasum": ""
  7782. },
  7783. "require": {
  7784. "php": ">=7.1.0"
  7785. },
  7786. "require-dev": {
  7787. "ext-exif": "*",
  7788. "ext-gd": "*",
  7789. "php-coveralls/php-coveralls": ">2.4",
  7790. "phpstan/phpstan": "^1.4",
  7791. "squizlabs/php_codesniffer": ">3.5",
  7792. "symfony/phpunit-bridge": "^4 || ^5 || ^6"
  7793. },
  7794. "type": "library",
  7795. "autoload": {
  7796. "psr-4": {
  7797. "lsolesen\\pel\\": "src/"
  7798. }
  7799. },
  7800. "notification-url": "https://packagist.org/downloads/",
  7801. "license": [
  7802. "GPL-2.0"
  7803. ],
  7804. "authors": [
  7805. {
  7806. "name": "Lars Olesen",
  7807. "email": "lars@intraface.dk",
  7808. "homepage": "http://intraface.dk",
  7809. "role": "Developer"
  7810. },
  7811. {
  7812. "name": "Martin Geisler",
  7813. "email": "martin@geisler.net",
  7814. "homepage": "http://geisler.net",
  7815. "role": "Developer"
  7816. }
  7817. ],
  7818. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  7819. "homepage": "https://github.com/FileEye/pel",
  7820. "keywords": [
  7821. "exif",
  7822. "image"
  7823. ],
  7824. "support": {
  7825. "issues": "https://github.com/FileEye/pel/issues",
  7826. "source": "https://github.com/FileEye/pel/tree/0.9.20"
  7827. },
  7828. "time": "2023-06-20T07:10:35+00:00"
  7829. },
  7830. {
  7831. "name": "giggsey/libphonenumber-for-php",
  7832. "version": "8.13.25",
  7833. "source": {
  7834. "type": "git",
  7835. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  7836. "reference": "fe9c0b201941977b91b6b086c9551aff07a733ae"
  7837. },
  7838. "dist": {
  7839. "type": "zip",
  7840. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/fe9c0b201941977b91b6b086c9551aff07a733ae",
  7841. "reference": "fe9c0b201941977b91b6b086c9551aff07a733ae",
  7842. "shasum": ""
  7843. },
  7844. "require": {
  7845. "giggsey/locale": "^1.7|^2.0",
  7846. "php": ">=5.3.2",
  7847. "symfony/polyfill-mbstring": "^1.17"
  7848. },
  7849. "require-dev": {
  7850. "pear/pear-core-minimal": "^1.9",
  7851. "pear/pear_exception": "^1.0",
  7852. "pear/versioncontrol_git": "^0.5",
  7853. "phing/phing": "^2.7",
  7854. "php-coveralls/php-coveralls": "^1.0|^2.0",
  7855. "symfony/console": "^2.8|^3.0|^v4.4|^v5.2",
  7856. "symfony/phpunit-bridge": "^4.2 || ^5"
  7857. },
  7858. "type": "library",
  7859. "extra": {
  7860. "branch-alias": {
  7861. "dev-master": "8.x-dev"
  7862. }
  7863. },
  7864. "autoload": {
  7865. "psr-4": {
  7866. "libphonenumber\\": "src/"
  7867. },
  7868. "exclude-from-classmap": [
  7869. "/src/data/",
  7870. "/src/carrier/data/",
  7871. "/src/geocoding/data/",
  7872. "/src/timezone/data/"
  7873. ]
  7874. },
  7875. "notification-url": "https://packagist.org/downloads/",
  7876. "license": [
  7877. "Apache-2.0"
  7878. ],
  7879. "authors": [
  7880. {
  7881. "name": "Joshua Gigg",
  7882. "email": "giggsey@gmail.com",
  7883. "homepage": "https://giggsey.com/"
  7884. }
  7885. ],
  7886. "description": "PHP Port of Google's libphonenumber",
  7887. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  7888. "keywords": [
  7889. "geocoding",
  7890. "geolocation",
  7891. "libphonenumber",
  7892. "mobile",
  7893. "phonenumber",
  7894. "validation"
  7895. ],
  7896. "support": {
  7897. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
  7898. "source": "https://github.com/giggsey/libphonenumber-for-php"
  7899. },
  7900. "time": "2023-11-13T09:34:15+00:00"
  7901. },
  7902. {
  7903. "name": "giggsey/locale",
  7904. "version": "2.5",
  7905. "source": {
  7906. "type": "git",
  7907. "url": "https://github.com/giggsey/Locale.git",
  7908. "reference": "e6d4540109a01dd2bc7334cdc842d6a6a67cf239"
  7909. },
  7910. "dist": {
  7911. "type": "zip",
  7912. "url": "https://api.github.com/repos/giggsey/Locale/zipball/e6d4540109a01dd2bc7334cdc842d6a6a67cf239",
  7913. "reference": "e6d4540109a01dd2bc7334cdc842d6a6a67cf239",
  7914. "shasum": ""
  7915. },
  7916. "require": {
  7917. "php": ">=7.2"
  7918. },
  7919. "require-dev": {
  7920. "ext-json": "*",
  7921. "pear/pear-core-minimal": "^1.9",
  7922. "pear/pear_exception": "^1.0",
  7923. "pear/versioncontrol_git": "^0.5",
  7924. "phing/phing": "^2.7",
  7925. "php-coveralls/php-coveralls": "^2.0",
  7926. "phpunit/phpunit": "^8.5|^9.5",
  7927. "symfony/console": "^5.0|^6.0",
  7928. "symfony/filesystem": "^5.0|^6.0",
  7929. "symfony/finder": "^5.0|^6.0",
  7930. "symfony/process": "^5.0|^6.0"
  7931. },
  7932. "type": "library",
  7933. "autoload": {
  7934. "psr-4": {
  7935. "Giggsey\\Locale\\": "src/"
  7936. }
  7937. },
  7938. "notification-url": "https://packagist.org/downloads/",
  7939. "license": [
  7940. "MIT"
  7941. ],
  7942. "authors": [
  7943. {
  7944. "name": "Joshua Gigg",
  7945. "email": "giggsey@gmail.com",
  7946. "homepage": "https://giggsey.com/"
  7947. }
  7948. ],
  7949. "description": "Locale functions required by libphonenumber-for-php",
  7950. "support": {
  7951. "issues": "https://github.com/giggsey/Locale/issues",
  7952. "source": "https://github.com/giggsey/Locale/tree/2.5"
  7953. },
  7954. "time": "2023-11-01T17:19:48+00:00"
  7955. },
  7956. {
  7957. "name": "grasmash/expander",
  7958. "version": "3.0.0",
  7959. "source": {
  7960. "type": "git",
  7961. "url": "https://github.com/grasmash/expander.git",
  7962. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82"
  7963. },
  7964. "dist": {
  7965. "type": "zip",
  7966. "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  7967. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  7968. "shasum": ""
  7969. },
  7970. "require": {
  7971. "dflydev/dot-access-data": "^3.0.0",
  7972. "php": ">=8.0",
  7973. "psr/log": "^2 | ^3"
  7974. },
  7975. "require-dev": {
  7976. "greg-1-anderson/composer-test-scenarios": "^1",
  7977. "php-coveralls/php-coveralls": "^2.5",
  7978. "phpunit/phpunit": "^9",
  7979. "squizlabs/php_codesniffer": "^3.3"
  7980. },
  7981. "type": "library",
  7982. "extra": {
  7983. "branch-alias": {
  7984. "dev-master": "1.x-dev"
  7985. }
  7986. },
  7987. "autoload": {
  7988. "psr-4": {
  7989. "Grasmash\\Expander\\": "src/"
  7990. }
  7991. },
  7992. "notification-url": "https://packagist.org/downloads/",
  7993. "license": [
  7994. "MIT"
  7995. ],
  7996. "authors": [
  7997. {
  7998. "name": "Matthew Grasmick"
  7999. }
  8000. ],
  8001. "description": "Expands internal property references in PHP arrays file.",
  8002. "support": {
  8003. "issues": "https://github.com/grasmash/expander/issues",
  8004. "source": "https://github.com/grasmash/expander/tree/3.0.0"
  8005. },
  8006. "time": "2022-05-10T13:14:49+00:00"
  8007. },
  8008. {
  8009. "name": "guzzlehttp/guzzle",
  8010. "version": "7.7.1",
  8011. "source": {
  8012. "type": "git",
  8013. "url": "https://github.com/guzzle/guzzle.git",
  8014. "reference": "085b026db54d4b5012f727c80c9958e8b8cbc454"
  8015. },
  8016. "dist": {
  8017. "type": "zip",
  8018. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/085b026db54d4b5012f727c80c9958e8b8cbc454",
  8019. "reference": "085b026db54d4b5012f727c80c9958e8b8cbc454",
  8020. "shasum": ""
  8021. },
  8022. "require": {
  8023. "ext-json": "*",
  8024. "guzzlehttp/promises": "^1.5.3 || ^2.0",
  8025. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  8026. "php": "^7.2.5 || ^8.0",
  8027. "psr/http-client": "^1.0",
  8028. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  8029. },
  8030. "provide": {
  8031. "psr/http-client-implementation": "1.0"
  8032. },
  8033. "require-dev": {
  8034. "bamarni/composer-bin-plugin": "^1.8.1",
  8035. "ext-curl": "*",
  8036. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  8037. "php-http/message-factory": "^1.1",
  8038. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  8039. "psr/log": "^1.1 || ^2.0 || ^3.0"
  8040. },
  8041. "suggest": {
  8042. "ext-curl": "Required for CURL handler support",
  8043. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  8044. "psr/log": "Required for using the Log middleware"
  8045. },
  8046. "type": "library",
  8047. "extra": {
  8048. "bamarni-bin": {
  8049. "bin-links": true,
  8050. "forward-command": false
  8051. }
  8052. },
  8053. "autoload": {
  8054. "files": [
  8055. "src/functions_include.php"
  8056. ],
  8057. "psr-4": {
  8058. "GuzzleHttp\\": "src/"
  8059. }
  8060. },
  8061. "notification-url": "https://packagist.org/downloads/",
  8062. "license": [
  8063. "MIT"
  8064. ],
  8065. "authors": [
  8066. {
  8067. "name": "Graham Campbell",
  8068. "email": "hello@gjcampbell.co.uk",
  8069. "homepage": "https://github.com/GrahamCampbell"
  8070. },
  8071. {
  8072. "name": "Michael Dowling",
  8073. "email": "mtdowling@gmail.com",
  8074. "homepage": "https://github.com/mtdowling"
  8075. },
  8076. {
  8077. "name": "Jeremy Lindblom",
  8078. "email": "jeremeamia@gmail.com",
  8079. "homepage": "https://github.com/jeremeamia"
  8080. },
  8081. {
  8082. "name": "George Mponos",
  8083. "email": "gmponos@gmail.com",
  8084. "homepage": "https://github.com/gmponos"
  8085. },
  8086. {
  8087. "name": "Tobias Nyholm",
  8088. "email": "tobias.nyholm@gmail.com",
  8089. "homepage": "https://github.com/Nyholm"
  8090. },
  8091. {
  8092. "name": "Márk Sági-Kazár",
  8093. "email": "mark.sagikazar@gmail.com",
  8094. "homepage": "https://github.com/sagikazarmark"
  8095. },
  8096. {
  8097. "name": "Tobias Schultze",
  8098. "email": "webmaster@tubo-world.de",
  8099. "homepage": "https://github.com/Tobion"
  8100. }
  8101. ],
  8102. "description": "Guzzle is a PHP HTTP client library",
  8103. "keywords": [
  8104. "client",
  8105. "curl",
  8106. "framework",
  8107. "http",
  8108. "http client",
  8109. "psr-18",
  8110. "psr-7",
  8111. "rest",
  8112. "web service"
  8113. ],
  8114. "support": {
  8115. "issues": "https://github.com/guzzle/guzzle/issues",
  8116. "source": "https://github.com/guzzle/guzzle/tree/7.7.1"
  8117. },
  8118. "funding": [
  8119. {
  8120. "url": "https://github.com/GrahamCampbell",
  8121. "type": "github"
  8122. },
  8123. {
  8124. "url": "https://github.com/Nyholm",
  8125. "type": "github"
  8126. },
  8127. {
  8128. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  8129. "type": "tidelift"
  8130. }
  8131. ],
  8132. "time": "2023-08-27T10:02:06+00:00"
  8133. },
  8134. {
  8135. "name": "guzzlehttp/promises",
  8136. "version": "2.0.1",
  8137. "source": {
  8138. "type": "git",
  8139. "url": "https://github.com/guzzle/promises.git",
  8140. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  8141. },
  8142. "dist": {
  8143. "type": "zip",
  8144. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  8145. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  8146. "shasum": ""
  8147. },
  8148. "require": {
  8149. "php": "^7.2.5 || ^8.0"
  8150. },
  8151. "require-dev": {
  8152. "bamarni/composer-bin-plugin": "^1.8.1",
  8153. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  8154. },
  8155. "type": "library",
  8156. "extra": {
  8157. "bamarni-bin": {
  8158. "bin-links": true,
  8159. "forward-command": false
  8160. }
  8161. },
  8162. "autoload": {
  8163. "psr-4": {
  8164. "GuzzleHttp\\Promise\\": "src/"
  8165. }
  8166. },
  8167. "notification-url": "https://packagist.org/downloads/",
  8168. "license": [
  8169. "MIT"
  8170. ],
  8171. "authors": [
  8172. {
  8173. "name": "Graham Campbell",
  8174. "email": "hello@gjcampbell.co.uk",
  8175. "homepage": "https://github.com/GrahamCampbell"
  8176. },
  8177. {
  8178. "name": "Michael Dowling",
  8179. "email": "mtdowling@gmail.com",
  8180. "homepage": "https://github.com/mtdowling"
  8181. },
  8182. {
  8183. "name": "Tobias Nyholm",
  8184. "email": "tobias.nyholm@gmail.com",
  8185. "homepage": "https://github.com/Nyholm"
  8186. },
  8187. {
  8188. "name": "Tobias Schultze",
  8189. "email": "webmaster@tubo-world.de",
  8190. "homepage": "https://github.com/Tobion"
  8191. }
  8192. ],
  8193. "description": "Guzzle promises library",
  8194. "keywords": [
  8195. "promise"
  8196. ],
  8197. "support": {
  8198. "issues": "https://github.com/guzzle/promises/issues",
  8199. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  8200. },
  8201. "funding": [
  8202. {
  8203. "url": "https://github.com/GrahamCampbell",
  8204. "type": "github"
  8205. },
  8206. {
  8207. "url": "https://github.com/Nyholm",
  8208. "type": "github"
  8209. },
  8210. {
  8211. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  8212. "type": "tidelift"
  8213. }
  8214. ],
  8215. "time": "2023-08-03T15:11:55+00:00"
  8216. },
  8217. {
  8218. "name": "guzzlehttp/psr7",
  8219. "version": "2.5.1",
  8220. "source": {
  8221. "type": "git",
  8222. "url": "https://github.com/guzzle/psr7.git",
  8223. "reference": "a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f"
  8224. },
  8225. "dist": {
  8226. "type": "zip",
  8227. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f",
  8228. "reference": "a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f",
  8229. "shasum": ""
  8230. },
  8231. "require": {
  8232. "php": "^7.2.5 || ^8.0",
  8233. "psr/http-factory": "^1.0",
  8234. "psr/http-message": "^1.1 || ^2.0",
  8235. "ralouphie/getallheaders": "^3.0"
  8236. },
  8237. "provide": {
  8238. "psr/http-factory-implementation": "1.0",
  8239. "psr/http-message-implementation": "1.0"
  8240. },
  8241. "require-dev": {
  8242. "bamarni/composer-bin-plugin": "^1.8.1",
  8243. "http-interop/http-factory-tests": "^0.9",
  8244. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  8245. },
  8246. "suggest": {
  8247. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8248. },
  8249. "type": "library",
  8250. "extra": {
  8251. "bamarni-bin": {
  8252. "bin-links": true,
  8253. "forward-command": false
  8254. }
  8255. },
  8256. "autoload": {
  8257. "psr-4": {
  8258. "GuzzleHttp\\Psr7\\": "src/"
  8259. }
  8260. },
  8261. "notification-url": "https://packagist.org/downloads/",
  8262. "license": [
  8263. "MIT"
  8264. ],
  8265. "authors": [
  8266. {
  8267. "name": "Graham Campbell",
  8268. "email": "hello@gjcampbell.co.uk",
  8269. "homepage": "https://github.com/GrahamCampbell"
  8270. },
  8271. {
  8272. "name": "Michael Dowling",
  8273. "email": "mtdowling@gmail.com",
  8274. "homepage": "https://github.com/mtdowling"
  8275. },
  8276. {
  8277. "name": "George Mponos",
  8278. "email": "gmponos@gmail.com",
  8279. "homepage": "https://github.com/gmponos"
  8280. },
  8281. {
  8282. "name": "Tobias Nyholm",
  8283. "email": "tobias.nyholm@gmail.com",
  8284. "homepage": "https://github.com/Nyholm"
  8285. },
  8286. {
  8287. "name": "Márk Sági-Kazár",
  8288. "email": "mark.sagikazar@gmail.com",
  8289. "homepage": "https://github.com/sagikazarmark"
  8290. },
  8291. {
  8292. "name": "Tobias Schultze",
  8293. "email": "webmaster@tubo-world.de",
  8294. "homepage": "https://github.com/Tobion"
  8295. },
  8296. {
  8297. "name": "Márk Sági-Kazár",
  8298. "email": "mark.sagikazar@gmail.com",
  8299. "homepage": "https://sagikazarmark.hu"
  8300. }
  8301. ],
  8302. "description": "PSR-7 message implementation that also provides common utility methods",
  8303. "keywords": [
  8304. "http",
  8305. "message",
  8306. "psr-7",
  8307. "request",
  8308. "response",
  8309. "stream",
  8310. "uri",
  8311. "url"
  8312. ],
  8313. "support": {
  8314. "issues": "https://github.com/guzzle/psr7/issues",
  8315. "source": "https://github.com/guzzle/psr7/tree/2.5.1"
  8316. },
  8317. "funding": [
  8318. {
  8319. "url": "https://github.com/GrahamCampbell",
  8320. "type": "github"
  8321. },
  8322. {
  8323. "url": "https://github.com/Nyholm",
  8324. "type": "github"
  8325. },
  8326. {
  8327. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  8328. "type": "tidelift"
  8329. }
  8330. ],
  8331. "time": "2023-08-03T15:02:42+00:00"
  8332. },
  8333. {
  8334. "name": "kint-php/kint",
  8335. "version": "3.3",
  8336. "source": {
  8337. "type": "git",
  8338. "url": "https://github.com/kint-php/kint.git",
  8339. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  8340. },
  8341. "dist": {
  8342. "type": "zip",
  8343. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8344. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8345. "shasum": ""
  8346. },
  8347. "require": {
  8348. "php": ">=5.3.6"
  8349. },
  8350. "require-dev": {
  8351. "friendsofphp/php-cs-fixer": "^2.0",
  8352. "phpunit/phpunit": "^4.0",
  8353. "seld/phar-utils": "^1.0",
  8354. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  8355. "vimeo/psalm": "^3.0"
  8356. },
  8357. "suggest": {
  8358. "ext-ctype": "Simple data type tests",
  8359. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  8360. "ext-mbstring": "Provides string encoding detection",
  8361. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  8362. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  8363. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  8364. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  8365. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  8366. },
  8367. "type": "library",
  8368. "autoload": {
  8369. "files": [
  8370. "init.php"
  8371. ],
  8372. "psr-4": {
  8373. "Kint\\": "src/"
  8374. }
  8375. },
  8376. "notification-url": "https://packagist.org/downloads/",
  8377. "license": [
  8378. "MIT"
  8379. ],
  8380. "authors": [
  8381. {
  8382. "name": "Jonathan Vollebregt",
  8383. "homepage": "https://github.com/jnvsor"
  8384. },
  8385. {
  8386. "name": "Rokas Šleinius",
  8387. "homepage": "https://github.com/raveren"
  8388. },
  8389. {
  8390. "name": "Contributors",
  8391. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  8392. }
  8393. ],
  8394. "description": "Kint - debugging tool for PHP developers",
  8395. "homepage": "https://kint-php.github.io/kint/",
  8396. "keywords": [
  8397. "debug",
  8398. "kint",
  8399. "php"
  8400. ],
  8401. "support": {
  8402. "issues": "https://github.com/kint-php/kint/issues",
  8403. "source": "https://github.com/kint-php/kint/tree/master"
  8404. },
  8405. "time": "2019-10-17T18:05:24+00:00"
  8406. },
  8407. {
  8408. "name": "league/container",
  8409. "version": "4.2.0",
  8410. "source": {
  8411. "type": "git",
  8412. "url": "https://github.com/thephpleague/container.git",
  8413. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
  8414. },
  8415. "dist": {
  8416. "type": "zip",
  8417. "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
  8418. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
  8419. "shasum": ""
  8420. },
  8421. "require": {
  8422. "php": "^7.2 || ^8.0",
  8423. "psr/container": "^1.1 || ^2.0"
  8424. },
  8425. "provide": {
  8426. "psr/container-implementation": "^1.0"
  8427. },
  8428. "replace": {
  8429. "orno/di": "~2.0"
  8430. },
  8431. "require-dev": {
  8432. "nette/php-generator": "^3.4",
  8433. "nikic/php-parser": "^4.10",
  8434. "phpstan/phpstan": "^0.12.47",
  8435. "phpunit/phpunit": "^8.5.17",
  8436. "roave/security-advisories": "dev-latest",
  8437. "scrutinizer/ocular": "^1.8",
  8438. "squizlabs/php_codesniffer": "^3.6"
  8439. },
  8440. "type": "library",
  8441. "extra": {
  8442. "branch-alias": {
  8443. "dev-master": "4.x-dev",
  8444. "dev-4.x": "4.x-dev",
  8445. "dev-3.x": "3.x-dev",
  8446. "dev-2.x": "2.x-dev",
  8447. "dev-1.x": "1.x-dev"
  8448. }
  8449. },
  8450. "autoload": {
  8451. "psr-4": {
  8452. "League\\Container\\": "src"
  8453. }
  8454. },
  8455. "notification-url": "https://packagist.org/downloads/",
  8456. "license": [
  8457. "MIT"
  8458. ],
  8459. "authors": [
  8460. {
  8461. "name": "Phil Bennett",
  8462. "email": "mail@philbennett.co.uk",
  8463. "role": "Developer"
  8464. }
  8465. ],
  8466. "description": "A fast and intuitive dependency injection container.",
  8467. "homepage": "https://github.com/thephpleague/container",
  8468. "keywords": [
  8469. "container",
  8470. "dependency",
  8471. "di",
  8472. "injection",
  8473. "league",
  8474. "provider",
  8475. "service"
  8476. ],
  8477. "support": {
  8478. "issues": "https://github.com/thephpleague/container/issues",
  8479. "source": "https://github.com/thephpleague/container/tree/4.2.0"
  8480. },
  8481. "funding": [
  8482. {
  8483. "url": "https://github.com/philipobenito",
  8484. "type": "github"
  8485. }
  8486. ],
  8487. "time": "2021-11-16T10:29:06+00:00"
  8488. },
  8489. {
  8490. "name": "masterminds/html5",
  8491. "version": "2.8.1",
  8492. "source": {
  8493. "type": "git",
  8494. "url": "https://github.com/Masterminds/html5-php.git",
  8495. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  8496. },
  8497. "dist": {
  8498. "type": "zip",
  8499. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  8500. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  8501. "shasum": ""
  8502. },
  8503. "require": {
  8504. "ext-dom": "*",
  8505. "php": ">=5.3.0"
  8506. },
  8507. "require-dev": {
  8508. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  8509. },
  8510. "type": "library",
  8511. "extra": {
  8512. "branch-alias": {
  8513. "dev-master": "2.7-dev"
  8514. }
  8515. },
  8516. "autoload": {
  8517. "psr-4": {
  8518. "Masterminds\\": "src"
  8519. }
  8520. },
  8521. "notification-url": "https://packagist.org/downloads/",
  8522. "license": [
  8523. "MIT"
  8524. ],
  8525. "authors": [
  8526. {
  8527. "name": "Matt Butcher",
  8528. "email": "technosophos@gmail.com"
  8529. },
  8530. {
  8531. "name": "Matt Farina",
  8532. "email": "matt@mattfarina.com"
  8533. },
  8534. {
  8535. "name": "Asmir Mustafic",
  8536. "email": "goetas@gmail.com"
  8537. }
  8538. ],
  8539. "description": "An HTML5 parser and serializer.",
  8540. "homepage": "http://masterminds.github.io/html5-php",
  8541. "keywords": [
  8542. "HTML5",
  8543. "dom",
  8544. "html",
  8545. "parser",
  8546. "querypath",
  8547. "serializer",
  8548. "xml"
  8549. ],
  8550. "support": {
  8551. "issues": "https://github.com/Masterminds/html5-php/issues",
  8552. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  8553. },
  8554. "time": "2023-05-10T11:58:31+00:00"
  8555. },
  8556. {
  8557. "name": "mck89/peast",
  8558. "version": "v1.15.4",
  8559. "source": {
  8560. "type": "git",
  8561. "url": "https://github.com/mck89/peast.git",
  8562. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18"
  8563. },
  8564. "dist": {
  8565. "type": "zip",
  8566. "url": "https://api.github.com/repos/mck89/peast/zipball/1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  8567. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  8568. "shasum": ""
  8569. },
  8570. "require": {
  8571. "ext-mbstring": "*",
  8572. "php": ">=5.4.0"
  8573. },
  8574. "require-dev": {
  8575. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  8576. },
  8577. "type": "library",
  8578. "extra": {
  8579. "branch-alias": {
  8580. "dev-master": "1.15.4-dev"
  8581. }
  8582. },
  8583. "autoload": {
  8584. "psr-4": {
  8585. "Peast\\": "lib/Peast/"
  8586. }
  8587. },
  8588. "notification-url": "https://packagist.org/downloads/",
  8589. "license": [
  8590. "BSD-3-Clause"
  8591. ],
  8592. "authors": [
  8593. {
  8594. "name": "Marco Marchiò",
  8595. "email": "marco.mm89@gmail.com"
  8596. }
  8597. ],
  8598. "description": "Peast is PHP library that generates AST for JavaScript code",
  8599. "support": {
  8600. "issues": "https://github.com/mck89/peast/issues",
  8601. "source": "https://github.com/mck89/peast/tree/v1.15.4"
  8602. },
  8603. "time": "2023-08-12T08:29:29+00:00"
  8604. },
  8605. {
  8606. "name": "nikic/php-parser",
  8607. "version": "v4.17.1",
  8608. "source": {
  8609. "type": "git",
  8610. "url": "https://github.com/nikic/PHP-Parser.git",
  8611. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d"
  8612. },
  8613. "dist": {
  8614. "type": "zip",
  8615. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  8616. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  8617. "shasum": ""
  8618. },
  8619. "require": {
  8620. "ext-tokenizer": "*",
  8621. "php": ">=7.0"
  8622. },
  8623. "require-dev": {
  8624. "ircmaxell/php-yacc": "^0.0.7",
  8625. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  8626. },
  8627. "bin": [
  8628. "bin/php-parse"
  8629. ],
  8630. "type": "library",
  8631. "extra": {
  8632. "branch-alias": {
  8633. "dev-master": "4.9-dev"
  8634. }
  8635. },
  8636. "autoload": {
  8637. "psr-4": {
  8638. "PhpParser\\": "lib/PhpParser"
  8639. }
  8640. },
  8641. "notification-url": "https://packagist.org/downloads/",
  8642. "license": [
  8643. "BSD-3-Clause"
  8644. ],
  8645. "authors": [
  8646. {
  8647. "name": "Nikita Popov"
  8648. }
  8649. ],
  8650. "description": "A PHP parser written in PHP",
  8651. "keywords": [
  8652. "parser",
  8653. "php"
  8654. ],
  8655. "support": {
  8656. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8657. "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1"
  8658. },
  8659. "time": "2023-08-13T19:53:39+00:00"
  8660. },
  8661. {
  8662. "name": "pear/archive_tar",
  8663. "version": "1.4.14",
  8664. "source": {
  8665. "type": "git",
  8666. "url": "https://github.com/pear/Archive_Tar.git",
  8667. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  8668. },
  8669. "dist": {
  8670. "type": "zip",
  8671. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  8672. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  8673. "shasum": ""
  8674. },
  8675. "require": {
  8676. "pear/pear-core-minimal": "^1.10.0alpha2",
  8677. "php": ">=5.2.0"
  8678. },
  8679. "require-dev": {
  8680. "phpunit/phpunit": "*"
  8681. },
  8682. "suggest": {
  8683. "ext-bz2": "Bz2 compression support.",
  8684. "ext-xz": "Lzma2 compression support.",
  8685. "ext-zlib": "Gzip compression support."
  8686. },
  8687. "type": "library",
  8688. "extra": {
  8689. "branch-alias": {
  8690. "dev-master": "1.4.x-dev"
  8691. }
  8692. },
  8693. "autoload": {
  8694. "psr-0": {
  8695. "Archive_Tar": ""
  8696. }
  8697. },
  8698. "notification-url": "https://packagist.org/downloads/",
  8699. "include-path": [
  8700. "./"
  8701. ],
  8702. "license": [
  8703. "BSD-3-Clause"
  8704. ],
  8705. "authors": [
  8706. {
  8707. "name": "Vincent Blavet",
  8708. "email": "vincent@phpconcept.net"
  8709. },
  8710. {
  8711. "name": "Greg Beaver",
  8712. "email": "greg@chiaraquartet.net"
  8713. },
  8714. {
  8715. "name": "Michiel Rook",
  8716. "email": "mrook@php.net"
  8717. }
  8718. ],
  8719. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  8720. "homepage": "https://github.com/pear/Archive_Tar",
  8721. "keywords": [
  8722. "archive",
  8723. "tar"
  8724. ],
  8725. "support": {
  8726. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  8727. "source": "https://github.com/pear/Archive_Tar"
  8728. },
  8729. "funding": [
  8730. {
  8731. "url": "https://github.com/mrook",
  8732. "type": "github"
  8733. },
  8734. {
  8735. "url": "https://www.patreon.com/michielrook",
  8736. "type": "patreon"
  8737. }
  8738. ],
  8739. "time": "2021-07-20T13:53:39+00:00"
  8740. },
  8741. {
  8742. "name": "pear/console_getopt",
  8743. "version": "v1.4.3",
  8744. "source": {
  8745. "type": "git",
  8746. "url": "https://github.com/pear/Console_Getopt.git",
  8747. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  8748. },
  8749. "dist": {
  8750. "type": "zip",
  8751. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  8752. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  8753. "shasum": ""
  8754. },
  8755. "type": "library",
  8756. "autoload": {
  8757. "psr-0": {
  8758. "Console": "./"
  8759. }
  8760. },
  8761. "notification-url": "https://packagist.org/downloads/",
  8762. "include-path": [
  8763. "./"
  8764. ],
  8765. "license": [
  8766. "BSD-2-Clause"
  8767. ],
  8768. "authors": [
  8769. {
  8770. "name": "Andrei Zmievski",
  8771. "email": "andrei@php.net",
  8772. "role": "Lead"
  8773. },
  8774. {
  8775. "name": "Stig Bakken",
  8776. "email": "stig@php.net",
  8777. "role": "Developer"
  8778. },
  8779. {
  8780. "name": "Greg Beaver",
  8781. "email": "cellog@php.net",
  8782. "role": "Helper"
  8783. }
  8784. ],
  8785. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  8786. "support": {
  8787. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  8788. "source": "https://github.com/pear/Console_Getopt"
  8789. },
  8790. "time": "2019-11-20T18:27:48+00:00"
  8791. },
  8792. {
  8793. "name": "pear/pear-core-minimal",
  8794. "version": "v1.10.13",
  8795. "source": {
  8796. "type": "git",
  8797. "url": "https://github.com/pear/pear-core-minimal.git",
  8798. "reference": "aed862e95fd286c53cc546734868dc38ff4b5b1d"
  8799. },
  8800. "dist": {
  8801. "type": "zip",
  8802. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/aed862e95fd286c53cc546734868dc38ff4b5b1d",
  8803. "reference": "aed862e95fd286c53cc546734868dc38ff4b5b1d",
  8804. "shasum": ""
  8805. },
  8806. "require": {
  8807. "pear/console_getopt": "~1.4",
  8808. "pear/pear_exception": "~1.0"
  8809. },
  8810. "replace": {
  8811. "rsky/pear-core-min": "self.version"
  8812. },
  8813. "type": "library",
  8814. "autoload": {
  8815. "psr-0": {
  8816. "": "src/"
  8817. }
  8818. },
  8819. "notification-url": "https://packagist.org/downloads/",
  8820. "include-path": [
  8821. "src/"
  8822. ],
  8823. "license": [
  8824. "BSD-3-Clause"
  8825. ],
  8826. "authors": [
  8827. {
  8828. "name": "Christian Weiske",
  8829. "email": "cweiske@php.net",
  8830. "role": "Lead"
  8831. }
  8832. ],
  8833. "description": "Minimal set of PEAR core files to be used as composer dependency",
  8834. "support": {
  8835. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  8836. "source": "https://github.com/pear/pear-core-minimal"
  8837. },
  8838. "time": "2023-04-19T19:15:47+00:00"
  8839. },
  8840. {
  8841. "name": "pear/pear_exception",
  8842. "version": "v1.0.2",
  8843. "source": {
  8844. "type": "git",
  8845. "url": "https://github.com/pear/PEAR_Exception.git",
  8846. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  8847. },
  8848. "dist": {
  8849. "type": "zip",
  8850. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  8851. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  8852. "shasum": ""
  8853. },
  8854. "require": {
  8855. "php": ">=5.2.0"
  8856. },
  8857. "require-dev": {
  8858. "phpunit/phpunit": "<9"
  8859. },
  8860. "type": "class",
  8861. "extra": {
  8862. "branch-alias": {
  8863. "dev-master": "1.0.x-dev"
  8864. }
  8865. },
  8866. "autoload": {
  8867. "classmap": [
  8868. "PEAR/"
  8869. ]
  8870. },
  8871. "notification-url": "https://packagist.org/downloads/",
  8872. "include-path": [
  8873. "."
  8874. ],
  8875. "license": [
  8876. "BSD-2-Clause"
  8877. ],
  8878. "authors": [
  8879. {
  8880. "name": "Helgi Thormar",
  8881. "email": "dufuz@php.net"
  8882. },
  8883. {
  8884. "name": "Greg Beaver",
  8885. "email": "cellog@php.net"
  8886. }
  8887. ],
  8888. "description": "The PEAR Exception base class.",
  8889. "homepage": "https://github.com/pear/PEAR_Exception",
  8890. "keywords": [
  8891. "exception"
  8892. ],
  8893. "support": {
  8894. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  8895. "source": "https://github.com/pear/PEAR_Exception"
  8896. },
  8897. "time": "2021-03-21T15:43:46+00:00"
  8898. },
  8899. {
  8900. "name": "phenx/php-font-lib",
  8901. "version": "0.5.4",
  8902. "source": {
  8903. "type": "git",
  8904. "url": "https://github.com/dompdf/php-font-lib.git",
  8905. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4"
  8906. },
  8907. "dist": {
  8908. "type": "zip",
  8909. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4",
  8910. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4",
  8911. "shasum": ""
  8912. },
  8913. "require": {
  8914. "ext-mbstring": "*"
  8915. },
  8916. "require-dev": {
  8917. "symfony/phpunit-bridge": "^3 || ^4 || ^5"
  8918. },
  8919. "type": "library",
  8920. "autoload": {
  8921. "psr-4": {
  8922. "FontLib\\": "src/FontLib"
  8923. }
  8924. },
  8925. "notification-url": "https://packagist.org/downloads/",
  8926. "license": [
  8927. "LGPL-3.0"
  8928. ],
  8929. "authors": [
  8930. {
  8931. "name": "Fabien Ménager",
  8932. "email": "fabien.menager@gmail.com"
  8933. }
  8934. ],
  8935. "description": "A library to read, parse, export and make subsets of different types of font files.",
  8936. "homepage": "https://github.com/PhenX/php-font-lib",
  8937. "support": {
  8938. "issues": "https://github.com/dompdf/php-font-lib/issues",
  8939. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.4"
  8940. },
  8941. "time": "2021-12-17T19:44:54+00:00"
  8942. },
  8943. {
  8944. "name": "phootwork/collection",
  8945. "version": "v3.2.2",
  8946. "source": {
  8947. "type": "git",
  8948. "url": "https://github.com/phootwork/collection.git",
  8949. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  8950. },
  8951. "dist": {
  8952. "type": "zip",
  8953. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  8954. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  8955. "shasum": ""
  8956. },
  8957. "require": {
  8958. "phootwork/lang": "^3.0",
  8959. "php": ">=8.0"
  8960. },
  8961. "type": "library",
  8962. "autoload": {
  8963. "psr-4": {
  8964. "phootwork\\collection\\": ""
  8965. }
  8966. },
  8967. "notification-url": "https://packagist.org/downloads/",
  8968. "license": [
  8969. "MIT"
  8970. ],
  8971. "authors": [
  8972. {
  8973. "name": "Thomas Gossmann",
  8974. "homepage": "http://gos.si"
  8975. }
  8976. ],
  8977. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  8978. "homepage": "https://phootwork.github.io/collection/",
  8979. "keywords": [
  8980. "Array object",
  8981. "Text object",
  8982. "collection",
  8983. "collections",
  8984. "json",
  8985. "list",
  8986. "map",
  8987. "queue",
  8988. "set",
  8989. "stack",
  8990. "xml"
  8991. ],
  8992. "support": {
  8993. "issues": "https://github.com/phootwork/phootwork/issues",
  8994. "source": "https://github.com/phootwork/collection/tree/v3.2.2"
  8995. },
  8996. "time": "2022-08-27T12:51:24+00:00"
  8997. },
  8998. {
  8999. "name": "phootwork/lang",
  9000. "version": "v3.2.2",
  9001. "source": {
  9002. "type": "git",
  9003. "url": "https://github.com/phootwork/lang.git",
  9004. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597"
  9005. },
  9006. "dist": {
  9007. "type": "zip",
  9008. "url": "https://api.github.com/repos/phootwork/lang/zipball/baaf154ae7d521ebeee5e89105f5b12b0f234597",
  9009. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597",
  9010. "shasum": ""
  9011. },
  9012. "require": {
  9013. "php": ">=8.0",
  9014. "symfony/polyfill-mbstring": "^1.12",
  9015. "symfony/polyfill-php81": "^1.22"
  9016. },
  9017. "type": "library",
  9018. "autoload": {
  9019. "psr-4": {
  9020. "phootwork\\lang\\": ""
  9021. }
  9022. },
  9023. "notification-url": "https://packagist.org/downloads/",
  9024. "license": [
  9025. "MIT"
  9026. ],
  9027. "authors": [
  9028. {
  9029. "name": "Thomas Gossmann",
  9030. "homepage": "http://gos.si"
  9031. }
  9032. ],
  9033. "description": "Missing PHP language constructs",
  9034. "homepage": "https://phootwork.github.io/lang/",
  9035. "keywords": [
  9036. "array",
  9037. "comparator",
  9038. "comparison",
  9039. "string"
  9040. ],
  9041. "support": {
  9042. "issues": "https://github.com/phootwork/phootwork/issues",
  9043. "source": "https://github.com/phootwork/lang/tree/v3.2.2"
  9044. },
  9045. "time": "2023-05-26T05:37:59+00:00"
  9046. },
  9047. {
  9048. "name": "phpmailer/phpmailer",
  9049. "version": "v6.8.1",
  9050. "source": {
  9051. "type": "git",
  9052. "url": "https://github.com/PHPMailer/PHPMailer.git",
  9053. "reference": "e88da8d679acc3824ff231fdc553565b802ac016"
  9054. },
  9055. "dist": {
  9056. "type": "zip",
  9057. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e88da8d679acc3824ff231fdc553565b802ac016",
  9058. "reference": "e88da8d679acc3824ff231fdc553565b802ac016",
  9059. "shasum": ""
  9060. },
  9061. "require": {
  9062. "ext-ctype": "*",
  9063. "ext-filter": "*",
  9064. "ext-hash": "*",
  9065. "php": ">=5.5.0"
  9066. },
  9067. "require-dev": {
  9068. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  9069. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  9070. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  9071. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  9072. "phpcompatibility/php-compatibility": "^9.3.5",
  9073. "roave/security-advisories": "dev-latest",
  9074. "squizlabs/php_codesniffer": "^3.7.2",
  9075. "yoast/phpunit-polyfills": "^1.0.4"
  9076. },
  9077. "suggest": {
  9078. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  9079. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  9080. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  9081. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  9082. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  9083. "psr/log": "For optional PSR-3 debug logging",
  9084. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  9085. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  9086. },
  9087. "type": "library",
  9088. "autoload": {
  9089. "psr-4": {
  9090. "PHPMailer\\PHPMailer\\": "src/"
  9091. }
  9092. },
  9093. "notification-url": "https://packagist.org/downloads/",
  9094. "license": [
  9095. "LGPL-2.1-only"
  9096. ],
  9097. "authors": [
  9098. {
  9099. "name": "Marcus Bointon",
  9100. "email": "phpmailer@synchromedia.co.uk"
  9101. },
  9102. {
  9103. "name": "Jim Jagielski",
  9104. "email": "jimjag@gmail.com"
  9105. },
  9106. {
  9107. "name": "Andy Prevost",
  9108. "email": "codeworxtech@users.sourceforge.net"
  9109. },
  9110. {
  9111. "name": "Brent R. Matzelle"
  9112. }
  9113. ],
  9114. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  9115. "support": {
  9116. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  9117. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.8.1"
  9118. },
  9119. "funding": [
  9120. {
  9121. "url": "https://github.com/Synchro",
  9122. "type": "github"
  9123. }
  9124. ],
  9125. "time": "2023-08-29T08:26:30+00:00"
  9126. },
  9127. {
  9128. "name": "phpowermove/docblock",
  9129. "version": "v4.0",
  9130. "source": {
  9131. "type": "git",
  9132. "url": "https://github.com/phpowermove/docblock.git",
  9133. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  9134. },
  9135. "dist": {
  9136. "type": "zip",
  9137. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  9138. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  9139. "shasum": ""
  9140. },
  9141. "require": {
  9142. "phootwork/collection": "^3.0",
  9143. "phootwork/lang": "^3.0",
  9144. "php": ">=8.0"
  9145. },
  9146. "require-dev": {
  9147. "phootwork/php-cs-fixer-config": "^0.4",
  9148. "phpunit/phpunit": "^9.0",
  9149. "psalm/phar": "^4.3"
  9150. },
  9151. "type": "library",
  9152. "autoload": {
  9153. "psr-4": {
  9154. "phpowermove\\docblock\\": "src/"
  9155. }
  9156. },
  9157. "notification-url": "https://packagist.org/downloads/",
  9158. "license": [
  9159. "MIT"
  9160. ],
  9161. "authors": [
  9162. {
  9163. "name": "Thomas Gossmann",
  9164. "homepage": "http://gos.si"
  9165. }
  9166. ],
  9167. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  9168. "keywords": [
  9169. "docblock",
  9170. "generator",
  9171. "parser"
  9172. ],
  9173. "support": {
  9174. "issues": "https://github.com/phpowermove/docblock/issues",
  9175. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  9176. },
  9177. "time": "2021-09-22T16:57:06+00:00"
  9178. },
  9179. {
  9180. "name": "politsin/jquery-ui-touch-punch",
  9181. "version": "1.0",
  9182. "source": {
  9183. "type": "git",
  9184. "url": "https://github.com/politsin/jquery-ui-touch-punch.git",
  9185. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd"
  9186. },
  9187. "dist": {
  9188. "type": "zip",
  9189. "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd",
  9190. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd",
  9191. "shasum": ""
  9192. },
  9193. "type": "drupal-library",
  9194. "notification-url": "https://packagist.org/downloads/",
  9195. "license": [
  9196. "MIT"
  9197. ],
  9198. "authors": [
  9199. {
  9200. "name": "Dave Furfero",
  9201. "email": "furf@furf.com"
  9202. }
  9203. ],
  9204. "description": "Extension to jQuery UI for mobile touch event support.",
  9205. "homepage": "http://touchpunch.furf.com/",
  9206. "keywords": [
  9207. "gestures",
  9208. "mobile",
  9209. "touch"
  9210. ],
  9211. "support": {
  9212. "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
  9213. "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
  9214. },
  9215. "time": "2020-12-15T10:26:18+00:00"
  9216. },
  9217. {
  9218. "name": "psr/cache",
  9219. "version": "3.0.0",
  9220. "source": {
  9221. "type": "git",
  9222. "url": "https://github.com/php-fig/cache.git",
  9223. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  9224. },
  9225. "dist": {
  9226. "type": "zip",
  9227. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  9228. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  9229. "shasum": ""
  9230. },
  9231. "require": {
  9232. "php": ">=8.0.0"
  9233. },
  9234. "type": "library",
  9235. "extra": {
  9236. "branch-alias": {
  9237. "dev-master": "1.0.x-dev"
  9238. }
  9239. },
  9240. "autoload": {
  9241. "psr-4": {
  9242. "Psr\\Cache\\": "src/"
  9243. }
  9244. },
  9245. "notification-url": "https://packagist.org/downloads/",
  9246. "license": [
  9247. "MIT"
  9248. ],
  9249. "authors": [
  9250. {
  9251. "name": "PHP-FIG",
  9252. "homepage": "https://www.php-fig.org/"
  9253. }
  9254. ],
  9255. "description": "Common interface for caching libraries",
  9256. "keywords": [
  9257. "cache",
  9258. "psr",
  9259. "psr-6"
  9260. ],
  9261. "support": {
  9262. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  9263. },
  9264. "time": "2021-02-03T23:26:27+00:00"
  9265. },
  9266. {
  9267. "name": "psr/container",
  9268. "version": "2.0.2",
  9269. "source": {
  9270. "type": "git",
  9271. "url": "https://github.com/php-fig/container.git",
  9272. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  9273. },
  9274. "dist": {
  9275. "type": "zip",
  9276. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  9277. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  9278. "shasum": ""
  9279. },
  9280. "require": {
  9281. "php": ">=7.4.0"
  9282. },
  9283. "type": "library",
  9284. "extra": {
  9285. "branch-alias": {
  9286. "dev-master": "2.0.x-dev"
  9287. }
  9288. },
  9289. "autoload": {
  9290. "psr-4": {
  9291. "Psr\\Container\\": "src/"
  9292. }
  9293. },
  9294. "notification-url": "https://packagist.org/downloads/",
  9295. "license": [
  9296. "MIT"
  9297. ],
  9298. "authors": [
  9299. {
  9300. "name": "PHP-FIG",
  9301. "homepage": "https://www.php-fig.org/"
  9302. }
  9303. ],
  9304. "description": "Common Container Interface (PHP FIG PSR-11)",
  9305. "homepage": "https://github.com/php-fig/container",
  9306. "keywords": [
  9307. "PSR-11",
  9308. "container",
  9309. "container-interface",
  9310. "container-interop",
  9311. "psr"
  9312. ],
  9313. "support": {
  9314. "issues": "https://github.com/php-fig/container/issues",
  9315. "source": "https://github.com/php-fig/container/tree/2.0.2"
  9316. },
  9317. "time": "2021-11-05T16:47:00+00:00"
  9318. },
  9319. {
  9320. "name": "psr/event-dispatcher",
  9321. "version": "1.0.0",
  9322. "source": {
  9323. "type": "git",
  9324. "url": "https://github.com/php-fig/event-dispatcher.git",
  9325. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  9326. },
  9327. "dist": {
  9328. "type": "zip",
  9329. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  9330. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  9331. "shasum": ""
  9332. },
  9333. "require": {
  9334. "php": ">=7.2.0"
  9335. },
  9336. "type": "library",
  9337. "extra": {
  9338. "branch-alias": {
  9339. "dev-master": "1.0.x-dev"
  9340. }
  9341. },
  9342. "autoload": {
  9343. "psr-4": {
  9344. "Psr\\EventDispatcher\\": "src/"
  9345. }
  9346. },
  9347. "notification-url": "https://packagist.org/downloads/",
  9348. "license": [
  9349. "MIT"
  9350. ],
  9351. "authors": [
  9352. {
  9353. "name": "PHP-FIG",
  9354. "homepage": "http://www.php-fig.org/"
  9355. }
  9356. ],
  9357. "description": "Standard interfaces for event handling.",
  9358. "keywords": [
  9359. "events",
  9360. "psr",
  9361. "psr-14"
  9362. ],
  9363. "support": {
  9364. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  9365. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  9366. },
  9367. "time": "2019-01-08T18:20:26+00:00"
  9368. },
  9369. {
  9370. "name": "psr/http-client",
  9371. "version": "1.0.3",
  9372. "source": {
  9373. "type": "git",
  9374. "url": "https://github.com/php-fig/http-client.git",
  9375. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  9376. },
  9377. "dist": {
  9378. "type": "zip",
  9379. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  9380. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  9381. "shasum": ""
  9382. },
  9383. "require": {
  9384. "php": "^7.0 || ^8.0",
  9385. "psr/http-message": "^1.0 || ^2.0"
  9386. },
  9387. "type": "library",
  9388. "extra": {
  9389. "branch-alias": {
  9390. "dev-master": "1.0.x-dev"
  9391. }
  9392. },
  9393. "autoload": {
  9394. "psr-4": {
  9395. "Psr\\Http\\Client\\": "src/"
  9396. }
  9397. },
  9398. "notification-url": "https://packagist.org/downloads/",
  9399. "license": [
  9400. "MIT"
  9401. ],
  9402. "authors": [
  9403. {
  9404. "name": "PHP-FIG",
  9405. "homepage": "https://www.php-fig.org/"
  9406. }
  9407. ],
  9408. "description": "Common interface for HTTP clients",
  9409. "homepage": "https://github.com/php-fig/http-client",
  9410. "keywords": [
  9411. "http",
  9412. "http-client",
  9413. "psr",
  9414. "psr-18"
  9415. ],
  9416. "support": {
  9417. "source": "https://github.com/php-fig/http-client"
  9418. },
  9419. "time": "2023-09-23T14:17:50+00:00"
  9420. },
  9421. {
  9422. "name": "psr/http-factory",
  9423. "version": "1.0.2",
  9424. "source": {
  9425. "type": "git",
  9426. "url": "https://github.com/php-fig/http-factory.git",
  9427. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  9428. },
  9429. "dist": {
  9430. "type": "zip",
  9431. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  9432. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  9433. "shasum": ""
  9434. },
  9435. "require": {
  9436. "php": ">=7.0.0",
  9437. "psr/http-message": "^1.0 || ^2.0"
  9438. },
  9439. "type": "library",
  9440. "extra": {
  9441. "branch-alias": {
  9442. "dev-master": "1.0.x-dev"
  9443. }
  9444. },
  9445. "autoload": {
  9446. "psr-4": {
  9447. "Psr\\Http\\Message\\": "src/"
  9448. }
  9449. },
  9450. "notification-url": "https://packagist.org/downloads/",
  9451. "license": [
  9452. "MIT"
  9453. ],
  9454. "authors": [
  9455. {
  9456. "name": "PHP-FIG",
  9457. "homepage": "https://www.php-fig.org/"
  9458. }
  9459. ],
  9460. "description": "Common interfaces for PSR-7 HTTP message factories",
  9461. "keywords": [
  9462. "factory",
  9463. "http",
  9464. "message",
  9465. "psr",
  9466. "psr-17",
  9467. "psr-7",
  9468. "request",
  9469. "response"
  9470. ],
  9471. "support": {
  9472. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  9473. },
  9474. "time": "2023-04-10T20:10:41+00:00"
  9475. },
  9476. {
  9477. "name": "psr/http-message",
  9478. "version": "2.0",
  9479. "source": {
  9480. "type": "git",
  9481. "url": "https://github.com/php-fig/http-message.git",
  9482. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  9483. },
  9484. "dist": {
  9485. "type": "zip",
  9486. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  9487. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  9488. "shasum": ""
  9489. },
  9490. "require": {
  9491. "php": "^7.2 || ^8.0"
  9492. },
  9493. "type": "library",
  9494. "extra": {
  9495. "branch-alias": {
  9496. "dev-master": "2.0.x-dev"
  9497. }
  9498. },
  9499. "autoload": {
  9500. "psr-4": {
  9501. "Psr\\Http\\Message\\": "src/"
  9502. }
  9503. },
  9504. "notification-url": "https://packagist.org/downloads/",
  9505. "license": [
  9506. "MIT"
  9507. ],
  9508. "authors": [
  9509. {
  9510. "name": "PHP-FIG",
  9511. "homepage": "https://www.php-fig.org/"
  9512. }
  9513. ],
  9514. "description": "Common interface for HTTP messages",
  9515. "homepage": "https://github.com/php-fig/http-message",
  9516. "keywords": [
  9517. "http",
  9518. "http-message",
  9519. "psr",
  9520. "psr-7",
  9521. "request",
  9522. "response"
  9523. ],
  9524. "support": {
  9525. "source": "https://github.com/php-fig/http-message/tree/2.0"
  9526. },
  9527. "time": "2023-04-04T09:54:51+00:00"
  9528. },
  9529. {
  9530. "name": "psr/log",
  9531. "version": "3.0.0",
  9532. "source": {
  9533. "type": "git",
  9534. "url": "https://github.com/php-fig/log.git",
  9535. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  9536. },
  9537. "dist": {
  9538. "type": "zip",
  9539. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  9540. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  9541. "shasum": ""
  9542. },
  9543. "require": {
  9544. "php": ">=8.0.0"
  9545. },
  9546. "type": "library",
  9547. "extra": {
  9548. "branch-alias": {
  9549. "dev-master": "3.x-dev"
  9550. }
  9551. },
  9552. "autoload": {
  9553. "psr-4": {
  9554. "Psr\\Log\\": "src"
  9555. }
  9556. },
  9557. "notification-url": "https://packagist.org/downloads/",
  9558. "license": [
  9559. "MIT"
  9560. ],
  9561. "authors": [
  9562. {
  9563. "name": "PHP-FIG",
  9564. "homepage": "https://www.php-fig.org/"
  9565. }
  9566. ],
  9567. "description": "Common interface for logging libraries",
  9568. "homepage": "https://github.com/php-fig/log",
  9569. "keywords": [
  9570. "log",
  9571. "psr",
  9572. "psr-3"
  9573. ],
  9574. "support": {
  9575. "source": "https://github.com/php-fig/log/tree/3.0.0"
  9576. },
  9577. "time": "2021-07-14T16:46:02+00:00"
  9578. },
  9579. {
  9580. "name": "psy/psysh",
  9581. "version": "v0.11.22",
  9582. "source": {
  9583. "type": "git",
  9584. "url": "https://github.com/bobthecow/psysh.git",
  9585. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b"
  9586. },
  9587. "dist": {
  9588. "type": "zip",
  9589. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b",
  9590. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
  9591. "shasum": ""
  9592. },
  9593. "require": {
  9594. "ext-json": "*",
  9595. "ext-tokenizer": "*",
  9596. "nikic/php-parser": "^4.0 || ^3.1",
  9597. "php": "^8.0 || ^7.0.8",
  9598. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  9599. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  9600. },
  9601. "conflict": {
  9602. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  9603. },
  9604. "require-dev": {
  9605. "bamarni/composer-bin-plugin": "^1.2"
  9606. },
  9607. "suggest": {
  9608. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  9609. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  9610. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  9611. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  9612. },
  9613. "bin": [
  9614. "bin/psysh"
  9615. ],
  9616. "type": "library",
  9617. "extra": {
  9618. "branch-alias": {
  9619. "dev-0.11": "0.11.x-dev"
  9620. },
  9621. "bamarni-bin": {
  9622. "bin-links": false,
  9623. "forward-command": false
  9624. }
  9625. },
  9626. "autoload": {
  9627. "files": [
  9628. "src/functions.php"
  9629. ],
  9630. "psr-4": {
  9631. "Psy\\": "src/"
  9632. }
  9633. },
  9634. "notification-url": "https://packagist.org/downloads/",
  9635. "license": [
  9636. "MIT"
  9637. ],
  9638. "authors": [
  9639. {
  9640. "name": "Justin Hileman",
  9641. "email": "justin@justinhileman.info",
  9642. "homepage": "http://justinhileman.com"
  9643. }
  9644. ],
  9645. "description": "An interactive shell for modern PHP.",
  9646. "homepage": "http://psysh.org",
  9647. "keywords": [
  9648. "REPL",
  9649. "console",
  9650. "interactive",
  9651. "shell"
  9652. ],
  9653. "support": {
  9654. "issues": "https://github.com/bobthecow/psysh/issues",
  9655. "source": "https://github.com/bobthecow/psysh/tree/v0.11.22"
  9656. },
  9657. "time": "2023-10-14T21:56:36+00:00"
  9658. },
  9659. {
  9660. "name": "ralouphie/getallheaders",
  9661. "version": "3.0.3",
  9662. "source": {
  9663. "type": "git",
  9664. "url": "https://github.com/ralouphie/getallheaders.git",
  9665. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  9666. },
  9667. "dist": {
  9668. "type": "zip",
  9669. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  9670. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  9671. "shasum": ""
  9672. },
  9673. "require": {
  9674. "php": ">=5.6"
  9675. },
  9676. "require-dev": {
  9677. "php-coveralls/php-coveralls": "^2.1",
  9678. "phpunit/phpunit": "^5 || ^6.5"
  9679. },
  9680. "type": "library",
  9681. "autoload": {
  9682. "files": [
  9683. "src/getallheaders.php"
  9684. ]
  9685. },
  9686. "notification-url": "https://packagist.org/downloads/",
  9687. "license": [
  9688. "MIT"
  9689. ],
  9690. "authors": [
  9691. {
  9692. "name": "Ralph Khattar",
  9693. "email": "ralph.khattar@gmail.com"
  9694. }
  9695. ],
  9696. "description": "A polyfill for getallheaders.",
  9697. "support": {
  9698. "issues": "https://github.com/ralouphie/getallheaders/issues",
  9699. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  9700. },
  9701. "time": "2019-03-08T08:55:37+00:00"
  9702. },
  9703. {
  9704. "name": "sebastian/diff",
  9705. "version": "4.0.5",
  9706. "source": {
  9707. "type": "git",
  9708. "url": "https://github.com/sebastianbergmann/diff.git",
  9709. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  9710. },
  9711. "dist": {
  9712. "type": "zip",
  9713. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9714. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9715. "shasum": ""
  9716. },
  9717. "require": {
  9718. "php": ">=7.3"
  9719. },
  9720. "require-dev": {
  9721. "phpunit/phpunit": "^9.3",
  9722. "symfony/process": "^4.2 || ^5"
  9723. },
  9724. "type": "library",
  9725. "extra": {
  9726. "branch-alias": {
  9727. "dev-master": "4.0-dev"
  9728. }
  9729. },
  9730. "autoload": {
  9731. "classmap": [
  9732. "src/"
  9733. ]
  9734. },
  9735. "notification-url": "https://packagist.org/downloads/",
  9736. "license": [
  9737. "BSD-3-Clause"
  9738. ],
  9739. "authors": [
  9740. {
  9741. "name": "Sebastian Bergmann",
  9742. "email": "sebastian@phpunit.de"
  9743. },
  9744. {
  9745. "name": "Kore Nordmann",
  9746. "email": "mail@kore-nordmann.de"
  9747. }
  9748. ],
  9749. "description": "Diff implementation",
  9750. "homepage": "https://github.com/sebastianbergmann/diff",
  9751. "keywords": [
  9752. "diff",
  9753. "udiff",
  9754. "unidiff",
  9755. "unified diff"
  9756. ],
  9757. "support": {
  9758. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9759. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  9760. },
  9761. "funding": [
  9762. {
  9763. "url": "https://github.com/sebastianbergmann",
  9764. "type": "github"
  9765. }
  9766. ],
  9767. "time": "2023-05-07T05:35:17+00:00"
  9768. },
  9769. {
  9770. "name": "stymiee/email-validator",
  9771. "version": "1.1.3",
  9772. "source": {
  9773. "type": "git",
  9774. "url": "https://github.com/stymiee/email-validator.git",
  9775. "reference": "017a53567aadc82e51773b887d0dff381aae5f2e"
  9776. },
  9777. "dist": {
  9778. "type": "zip",
  9779. "url": "https://api.github.com/repos/stymiee/email-validator/zipball/017a53567aadc82e51773b887d0dff381aae5f2e",
  9780. "reference": "017a53567aadc82e51773b887d0dff381aae5f2e",
  9781. "shasum": ""
  9782. },
  9783. "require": {
  9784. "ext-json": "*",
  9785. "php": ">=7.2.0"
  9786. },
  9787. "require-dev": {
  9788. "nunomaduro/phpinsights": "@stable",
  9789. "phpmd/phpmd": "@stable",
  9790. "phpunit/phpunit": "^8",
  9791. "squizlabs/php_codesniffer": "3.*"
  9792. },
  9793. "type": "library",
  9794. "autoload": {
  9795. "psr-4": {
  9796. "EmailValidator\\": [
  9797. "src/EmailValidator/"
  9798. ]
  9799. }
  9800. },
  9801. "notification-url": "https://packagist.org/downloads/",
  9802. "license": [
  9803. "Apache-2.0"
  9804. ],
  9805. "authors": [
  9806. {
  9807. "name": "John Conde",
  9808. "email": "stymiee@gmail.com",
  9809. "homepage": "https://stymiee.dev",
  9810. "role": "Developer"
  9811. }
  9812. ],
  9813. "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.",
  9814. "homepage": "https://github.com/stymiee/php-simple-encryption",
  9815. "keywords": [
  9816. "email",
  9817. "php",
  9818. "validation"
  9819. ],
  9820. "support": {
  9821. "issues": "https://github.com/stymiee/email-validator/issues",
  9822. "source": "https://github.com/stymiee/email-validator/tree/1.1.3"
  9823. },
  9824. "time": "2022-10-11T19:23:13+00:00"
  9825. },
  9826. {
  9827. "name": "symfony/console",
  9828. "version": "v6.3.8",
  9829. "source": {
  9830. "type": "git",
  9831. "url": "https://github.com/symfony/console.git",
  9832. "reference": "0d14a9f6d04d4ac38a8cea1171f4554e325dae92"
  9833. },
  9834. "dist": {
  9835. "type": "zip",
  9836. "url": "https://api.github.com/repos/symfony/console/zipball/0d14a9f6d04d4ac38a8cea1171f4554e325dae92",
  9837. "reference": "0d14a9f6d04d4ac38a8cea1171f4554e325dae92",
  9838. "shasum": ""
  9839. },
  9840. "require": {
  9841. "php": ">=8.1",
  9842. "symfony/deprecation-contracts": "^2.5|^3",
  9843. "symfony/polyfill-mbstring": "~1.0",
  9844. "symfony/service-contracts": "^2.5|^3",
  9845. "symfony/string": "^5.4|^6.0"
  9846. },
  9847. "conflict": {
  9848. "symfony/dependency-injection": "<5.4",
  9849. "symfony/dotenv": "<5.4",
  9850. "symfony/event-dispatcher": "<5.4",
  9851. "symfony/lock": "<5.4",
  9852. "symfony/process": "<5.4"
  9853. },
  9854. "provide": {
  9855. "psr/log-implementation": "1.0|2.0|3.0"
  9856. },
  9857. "require-dev": {
  9858. "psr/log": "^1|^2|^3",
  9859. "symfony/config": "^5.4|^6.0",
  9860. "symfony/dependency-injection": "^5.4|^6.0",
  9861. "symfony/event-dispatcher": "^5.4|^6.0",
  9862. "symfony/lock": "^5.4|^6.0",
  9863. "symfony/process": "^5.4|^6.0",
  9864. "symfony/var-dumper": "^5.4|^6.0"
  9865. },
  9866. "type": "library",
  9867. "autoload": {
  9868. "psr-4": {
  9869. "Symfony\\Component\\Console\\": ""
  9870. },
  9871. "exclude-from-classmap": [
  9872. "/Tests/"
  9873. ]
  9874. },
  9875. "notification-url": "https://packagist.org/downloads/",
  9876. "license": [
  9877. "MIT"
  9878. ],
  9879. "authors": [
  9880. {
  9881. "name": "Fabien Potencier",
  9882. "email": "fabien@symfony.com"
  9883. },
  9884. {
  9885. "name": "Symfony Community",
  9886. "homepage": "https://symfony.com/contributors"
  9887. }
  9888. ],
  9889. "description": "Eases the creation of beautiful and testable command line interfaces",
  9890. "homepage": "https://symfony.com",
  9891. "keywords": [
  9892. "cli",
  9893. "command-line",
  9894. "console",
  9895. "terminal"
  9896. ],
  9897. "support": {
  9898. "source": "https://github.com/symfony/console/tree/v6.3.8"
  9899. },
  9900. "funding": [
  9901. {
  9902. "url": "https://symfony.com/sponsor",
  9903. "type": "custom"
  9904. },
  9905. {
  9906. "url": "https://github.com/fabpot",
  9907. "type": "github"
  9908. },
  9909. {
  9910. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9911. "type": "tidelift"
  9912. }
  9913. ],
  9914. "time": "2023-10-31T08:09:35+00:00"
  9915. },
  9916. {
  9917. "name": "symfony/dependency-injection",
  9918. "version": "v6.3.8",
  9919. "source": {
  9920. "type": "git",
  9921. "url": "https://github.com/symfony/dependency-injection.git",
  9922. "reference": "1f30f545c4151f611148fc19e28d54d39e0a00bc"
  9923. },
  9924. "dist": {
  9925. "type": "zip",
  9926. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/1f30f545c4151f611148fc19e28d54d39e0a00bc",
  9927. "reference": "1f30f545c4151f611148fc19e28d54d39e0a00bc",
  9928. "shasum": ""
  9929. },
  9930. "require": {
  9931. "php": ">=8.1",
  9932. "psr/container": "^1.1|^2.0",
  9933. "symfony/deprecation-contracts": "^2.5|^3",
  9934. "symfony/service-contracts": "^2.5|^3.0",
  9935. "symfony/var-exporter": "^6.2.10"
  9936. },
  9937. "conflict": {
  9938. "ext-psr": "<1.1|>=2",
  9939. "symfony/config": "<6.1",
  9940. "symfony/finder": "<5.4",
  9941. "symfony/proxy-manager-bridge": "<6.3",
  9942. "symfony/yaml": "<5.4"
  9943. },
  9944. "provide": {
  9945. "psr/container-implementation": "1.1|2.0",
  9946. "symfony/service-implementation": "1.1|2.0|3.0"
  9947. },
  9948. "require-dev": {
  9949. "symfony/config": "^6.1",
  9950. "symfony/expression-language": "^5.4|^6.0",
  9951. "symfony/yaml": "^5.4|^6.0"
  9952. },
  9953. "type": "library",
  9954. "autoload": {
  9955. "psr-4": {
  9956. "Symfony\\Component\\DependencyInjection\\": ""
  9957. },
  9958. "exclude-from-classmap": [
  9959. "/Tests/"
  9960. ]
  9961. },
  9962. "notification-url": "https://packagist.org/downloads/",
  9963. "license": [
  9964. "MIT"
  9965. ],
  9966. "authors": [
  9967. {
  9968. "name": "Fabien Potencier",
  9969. "email": "fabien@symfony.com"
  9970. },
  9971. {
  9972. "name": "Symfony Community",
  9973. "homepage": "https://symfony.com/contributors"
  9974. }
  9975. ],
  9976. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  9977. "homepage": "https://symfony.com",
  9978. "support": {
  9979. "source": "https://github.com/symfony/dependency-injection/tree/v6.3.8"
  9980. },
  9981. "funding": [
  9982. {
  9983. "url": "https://symfony.com/sponsor",
  9984. "type": "custom"
  9985. },
  9986. {
  9987. "url": "https://github.com/fabpot",
  9988. "type": "github"
  9989. },
  9990. {
  9991. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9992. "type": "tidelift"
  9993. }
  9994. ],
  9995. "time": "2023-10-31T08:07:48+00:00"
  9996. },
  9997. {
  9998. "name": "symfony/deprecation-contracts",
  9999. "version": "v3.3.0",
  10000. "source": {
  10001. "type": "git",
  10002. "url": "https://github.com/symfony/deprecation-contracts.git",
  10003. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  10004. },
  10005. "dist": {
  10006. "type": "zip",
  10007. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  10008. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  10009. "shasum": ""
  10010. },
  10011. "require": {
  10012. "php": ">=8.1"
  10013. },
  10014. "type": "library",
  10015. "extra": {
  10016. "branch-alias": {
  10017. "dev-main": "3.4-dev"
  10018. },
  10019. "thanks": {
  10020. "name": "symfony/contracts",
  10021. "url": "https://github.com/symfony/contracts"
  10022. }
  10023. },
  10024. "autoload": {
  10025. "files": [
  10026. "function.php"
  10027. ]
  10028. },
  10029. "notification-url": "https://packagist.org/downloads/",
  10030. "license": [
  10031. "MIT"
  10032. ],
  10033. "authors": [
  10034. {
  10035. "name": "Nicolas Grekas",
  10036. "email": "p@tchwork.com"
  10037. },
  10038. {
  10039. "name": "Symfony Community",
  10040. "homepage": "https://symfony.com/contributors"
  10041. }
  10042. ],
  10043. "description": "A generic function and convention to trigger deprecation notices",
  10044. "homepage": "https://symfony.com",
  10045. "support": {
  10046. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
  10047. },
  10048. "funding": [
  10049. {
  10050. "url": "https://symfony.com/sponsor",
  10051. "type": "custom"
  10052. },
  10053. {
  10054. "url": "https://github.com/fabpot",
  10055. "type": "github"
  10056. },
  10057. {
  10058. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10059. "type": "tidelift"
  10060. }
  10061. ],
  10062. "time": "2023-05-23T14:45:45+00:00"
  10063. },
  10064. {
  10065. "name": "symfony/error-handler",
  10066. "version": "v6.3.5",
  10067. "source": {
  10068. "type": "git",
  10069. "url": "https://github.com/symfony/error-handler.git",
  10070. "reference": "1f69476b64fb47105c06beef757766c376b548c4"
  10071. },
  10072. "dist": {
  10073. "type": "zip",
  10074. "url": "https://api.github.com/repos/symfony/error-handler/zipball/1f69476b64fb47105c06beef757766c376b548c4",
  10075. "reference": "1f69476b64fb47105c06beef757766c376b548c4",
  10076. "shasum": ""
  10077. },
  10078. "require": {
  10079. "php": ">=8.1",
  10080. "psr/log": "^1|^2|^3",
  10081. "symfony/var-dumper": "^5.4|^6.0"
  10082. },
  10083. "conflict": {
  10084. "symfony/deprecation-contracts": "<2.5"
  10085. },
  10086. "require-dev": {
  10087. "symfony/deprecation-contracts": "^2.5|^3",
  10088. "symfony/http-kernel": "^5.4|^6.0",
  10089. "symfony/serializer": "^5.4|^6.0"
  10090. },
  10091. "bin": [
  10092. "Resources/bin/patch-type-declarations"
  10093. ],
  10094. "type": "library",
  10095. "autoload": {
  10096. "psr-4": {
  10097. "Symfony\\Component\\ErrorHandler\\": ""
  10098. },
  10099. "exclude-from-classmap": [
  10100. "/Tests/"
  10101. ]
  10102. },
  10103. "notification-url": "https://packagist.org/downloads/",
  10104. "license": [
  10105. "MIT"
  10106. ],
  10107. "authors": [
  10108. {
  10109. "name": "Fabien Potencier",
  10110. "email": "fabien@symfony.com"
  10111. },
  10112. {
  10113. "name": "Symfony Community",
  10114. "homepage": "https://symfony.com/contributors"
  10115. }
  10116. ],
  10117. "description": "Provides tools to manage errors and ease debugging PHP code",
  10118. "homepage": "https://symfony.com",
  10119. "support": {
  10120. "source": "https://github.com/symfony/error-handler/tree/v6.3.5"
  10121. },
  10122. "funding": [
  10123. {
  10124. "url": "https://symfony.com/sponsor",
  10125. "type": "custom"
  10126. },
  10127. {
  10128. "url": "https://github.com/fabpot",
  10129. "type": "github"
  10130. },
  10131. {
  10132. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10133. "type": "tidelift"
  10134. }
  10135. ],
  10136. "time": "2023-09-12T06:57:20+00:00"
  10137. },
  10138. {
  10139. "name": "symfony/event-dispatcher",
  10140. "version": "v6.3.2",
  10141. "source": {
  10142. "type": "git",
  10143. "url": "https://github.com/symfony/event-dispatcher.git",
  10144. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e"
  10145. },
  10146. "dist": {
  10147. "type": "zip",
  10148. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  10149. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  10150. "shasum": ""
  10151. },
  10152. "require": {
  10153. "php": ">=8.1",
  10154. "symfony/event-dispatcher-contracts": "^2.5|^3"
  10155. },
  10156. "conflict": {
  10157. "symfony/dependency-injection": "<5.4",
  10158. "symfony/service-contracts": "<2.5"
  10159. },
  10160. "provide": {
  10161. "psr/event-dispatcher-implementation": "1.0",
  10162. "symfony/event-dispatcher-implementation": "2.0|3.0"
  10163. },
  10164. "require-dev": {
  10165. "psr/log": "^1|^2|^3",
  10166. "symfony/config": "^5.4|^6.0",
  10167. "symfony/dependency-injection": "^5.4|^6.0",
  10168. "symfony/error-handler": "^5.4|^6.0",
  10169. "symfony/expression-language": "^5.4|^6.0",
  10170. "symfony/http-foundation": "^5.4|^6.0",
  10171. "symfony/service-contracts": "^2.5|^3",
  10172. "symfony/stopwatch": "^5.4|^6.0"
  10173. },
  10174. "type": "library",
  10175. "autoload": {
  10176. "psr-4": {
  10177. "Symfony\\Component\\EventDispatcher\\": ""
  10178. },
  10179. "exclude-from-classmap": [
  10180. "/Tests/"
  10181. ]
  10182. },
  10183. "notification-url": "https://packagist.org/downloads/",
  10184. "license": [
  10185. "MIT"
  10186. ],
  10187. "authors": [
  10188. {
  10189. "name": "Fabien Potencier",
  10190. "email": "fabien@symfony.com"
  10191. },
  10192. {
  10193. "name": "Symfony Community",
  10194. "homepage": "https://symfony.com/contributors"
  10195. }
  10196. ],
  10197. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  10198. "homepage": "https://symfony.com",
  10199. "support": {
  10200. "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.2"
  10201. },
  10202. "funding": [
  10203. {
  10204. "url": "https://symfony.com/sponsor",
  10205. "type": "custom"
  10206. },
  10207. {
  10208. "url": "https://github.com/fabpot",
  10209. "type": "github"
  10210. },
  10211. {
  10212. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10213. "type": "tidelift"
  10214. }
  10215. ],
  10216. "time": "2023-07-06T06:56:43+00:00"
  10217. },
  10218. {
  10219. "name": "symfony/event-dispatcher-contracts",
  10220. "version": "v3.3.0",
  10221. "source": {
  10222. "type": "git",
  10223. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  10224. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  10225. },
  10226. "dist": {
  10227. "type": "zip",
  10228. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  10229. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  10230. "shasum": ""
  10231. },
  10232. "require": {
  10233. "php": ">=8.1",
  10234. "psr/event-dispatcher": "^1"
  10235. },
  10236. "type": "library",
  10237. "extra": {
  10238. "branch-alias": {
  10239. "dev-main": "3.4-dev"
  10240. },
  10241. "thanks": {
  10242. "name": "symfony/contracts",
  10243. "url": "https://github.com/symfony/contracts"
  10244. }
  10245. },
  10246. "autoload": {
  10247. "psr-4": {
  10248. "Symfony\\Contracts\\EventDispatcher\\": ""
  10249. }
  10250. },
  10251. "notification-url": "https://packagist.org/downloads/",
  10252. "license": [
  10253. "MIT"
  10254. ],
  10255. "authors": [
  10256. {
  10257. "name": "Nicolas Grekas",
  10258. "email": "p@tchwork.com"
  10259. },
  10260. {
  10261. "name": "Symfony Community",
  10262. "homepage": "https://symfony.com/contributors"
  10263. }
  10264. ],
  10265. "description": "Generic abstractions related to dispatching event",
  10266. "homepage": "https://symfony.com",
  10267. "keywords": [
  10268. "abstractions",
  10269. "contracts",
  10270. "decoupling",
  10271. "interfaces",
  10272. "interoperability",
  10273. "standards"
  10274. ],
  10275. "support": {
  10276. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0"
  10277. },
  10278. "funding": [
  10279. {
  10280. "url": "https://symfony.com/sponsor",
  10281. "type": "custom"
  10282. },
  10283. {
  10284. "url": "https://github.com/fabpot",
  10285. "type": "github"
  10286. },
  10287. {
  10288. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10289. "type": "tidelift"
  10290. }
  10291. ],
  10292. "time": "2023-05-23T14:45:45+00:00"
  10293. },
  10294. {
  10295. "name": "symfony/filesystem",
  10296. "version": "v6.3.1",
  10297. "source": {
  10298. "type": "git",
  10299. "url": "https://github.com/symfony/filesystem.git",
  10300. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae"
  10301. },
  10302. "dist": {
  10303. "type": "zip",
  10304. "url": "https://api.github.com/repos/symfony/filesystem/zipball/edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  10305. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  10306. "shasum": ""
  10307. },
  10308. "require": {
  10309. "php": ">=8.1",
  10310. "symfony/polyfill-ctype": "~1.8",
  10311. "symfony/polyfill-mbstring": "~1.8"
  10312. },
  10313. "type": "library",
  10314. "autoload": {
  10315. "psr-4": {
  10316. "Symfony\\Component\\Filesystem\\": ""
  10317. },
  10318. "exclude-from-classmap": [
  10319. "/Tests/"
  10320. ]
  10321. },
  10322. "notification-url": "https://packagist.org/downloads/",
  10323. "license": [
  10324. "MIT"
  10325. ],
  10326. "authors": [
  10327. {
  10328. "name": "Fabien Potencier",
  10329. "email": "fabien@symfony.com"
  10330. },
  10331. {
  10332. "name": "Symfony Community",
  10333. "homepage": "https://symfony.com/contributors"
  10334. }
  10335. ],
  10336. "description": "Provides basic utilities for the filesystem",
  10337. "homepage": "https://symfony.com",
  10338. "support": {
  10339. "source": "https://github.com/symfony/filesystem/tree/v6.3.1"
  10340. },
  10341. "funding": [
  10342. {
  10343. "url": "https://symfony.com/sponsor",
  10344. "type": "custom"
  10345. },
  10346. {
  10347. "url": "https://github.com/fabpot",
  10348. "type": "github"
  10349. },
  10350. {
  10351. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10352. "type": "tidelift"
  10353. }
  10354. ],
  10355. "time": "2023-06-01T08:30:39+00:00"
  10356. },
  10357. {
  10358. "name": "symfony/finder",
  10359. "version": "v6.3.5",
  10360. "source": {
  10361. "type": "git",
  10362. "url": "https://github.com/symfony/finder.git",
  10363. "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4"
  10364. },
  10365. "dist": {
  10366. "type": "zip",
  10367. "url": "https://api.github.com/repos/symfony/finder/zipball/a1b31d88c0e998168ca7792f222cbecee47428c4",
  10368. "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4",
  10369. "shasum": ""
  10370. },
  10371. "require": {
  10372. "php": ">=8.1"
  10373. },
  10374. "require-dev": {
  10375. "symfony/filesystem": "^6.0"
  10376. },
  10377. "type": "library",
  10378. "autoload": {
  10379. "psr-4": {
  10380. "Symfony\\Component\\Finder\\": ""
  10381. },
  10382. "exclude-from-classmap": [
  10383. "/Tests/"
  10384. ]
  10385. },
  10386. "notification-url": "https://packagist.org/downloads/",
  10387. "license": [
  10388. "MIT"
  10389. ],
  10390. "authors": [
  10391. {
  10392. "name": "Fabien Potencier",
  10393. "email": "fabien@symfony.com"
  10394. },
  10395. {
  10396. "name": "Symfony Community",
  10397. "homepage": "https://symfony.com/contributors"
  10398. }
  10399. ],
  10400. "description": "Finds files and directories via an intuitive fluent interface",
  10401. "homepage": "https://symfony.com",
  10402. "support": {
  10403. "source": "https://github.com/symfony/finder/tree/v6.3.5"
  10404. },
  10405. "funding": [
  10406. {
  10407. "url": "https://symfony.com/sponsor",
  10408. "type": "custom"
  10409. },
  10410. {
  10411. "url": "https://github.com/fabpot",
  10412. "type": "github"
  10413. },
  10414. {
  10415. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10416. "type": "tidelift"
  10417. }
  10418. ],
  10419. "time": "2023-09-26T12:56:25+00:00"
  10420. },
  10421. {
  10422. "name": "symfony/http-foundation",
  10423. "version": "v6.3.8",
  10424. "source": {
  10425. "type": "git",
  10426. "url": "https://github.com/symfony/http-foundation.git",
  10427. "reference": "ce332676de1912c4389222987193c3ef38033df6"
  10428. },
  10429. "dist": {
  10430. "type": "zip",
  10431. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ce332676de1912c4389222987193c3ef38033df6",
  10432. "reference": "ce332676de1912c4389222987193c3ef38033df6",
  10433. "shasum": ""
  10434. },
  10435. "require": {
  10436. "php": ">=8.1",
  10437. "symfony/deprecation-contracts": "^2.5|^3",
  10438. "symfony/polyfill-mbstring": "~1.1",
  10439. "symfony/polyfill-php83": "^1.27"
  10440. },
  10441. "conflict": {
  10442. "symfony/cache": "<6.3"
  10443. },
  10444. "require-dev": {
  10445. "doctrine/dbal": "^2.13.1|^3|^4",
  10446. "predis/predis": "^1.1|^2.0",
  10447. "symfony/cache": "^6.3",
  10448. "symfony/dependency-injection": "^5.4|^6.0",
  10449. "symfony/expression-language": "^5.4|^6.0",
  10450. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  10451. "symfony/mime": "^5.4|^6.0",
  10452. "symfony/rate-limiter": "^5.2|^6.0"
  10453. },
  10454. "type": "library",
  10455. "autoload": {
  10456. "psr-4": {
  10457. "Symfony\\Component\\HttpFoundation\\": ""
  10458. },
  10459. "exclude-from-classmap": [
  10460. "/Tests/"
  10461. ]
  10462. },
  10463. "notification-url": "https://packagist.org/downloads/",
  10464. "license": [
  10465. "MIT"
  10466. ],
  10467. "authors": [
  10468. {
  10469. "name": "Fabien Potencier",
  10470. "email": "fabien@symfony.com"
  10471. },
  10472. {
  10473. "name": "Symfony Community",
  10474. "homepage": "https://symfony.com/contributors"
  10475. }
  10476. ],
  10477. "description": "Defines an object-oriented layer for the HTTP specification",
  10478. "homepage": "https://symfony.com",
  10479. "support": {
  10480. "source": "https://github.com/symfony/http-foundation/tree/v6.3.8"
  10481. },
  10482. "funding": [
  10483. {
  10484. "url": "https://symfony.com/sponsor",
  10485. "type": "custom"
  10486. },
  10487. {
  10488. "url": "https://github.com/fabpot",
  10489. "type": "github"
  10490. },
  10491. {
  10492. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10493. "type": "tidelift"
  10494. }
  10495. ],
  10496. "time": "2023-11-07T10:17:15+00:00"
  10497. },
  10498. {
  10499. "name": "symfony/http-kernel",
  10500. "version": "v6.3.8",
  10501. "source": {
  10502. "type": "git",
  10503. "url": "https://github.com/symfony/http-kernel.git",
  10504. "reference": "929202375ccf44a309c34aeca8305408442ebcc1"
  10505. },
  10506. "dist": {
  10507. "type": "zip",
  10508. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/929202375ccf44a309c34aeca8305408442ebcc1",
  10509. "reference": "929202375ccf44a309c34aeca8305408442ebcc1",
  10510. "shasum": ""
  10511. },
  10512. "require": {
  10513. "php": ">=8.1",
  10514. "psr/log": "^1|^2|^3",
  10515. "symfony/deprecation-contracts": "^2.5|^3",
  10516. "symfony/error-handler": "^6.3",
  10517. "symfony/event-dispatcher": "^5.4|^6.0",
  10518. "symfony/http-foundation": "^6.3.4",
  10519. "symfony/polyfill-ctype": "^1.8"
  10520. },
  10521. "conflict": {
  10522. "symfony/browser-kit": "<5.4",
  10523. "symfony/cache": "<5.4",
  10524. "symfony/config": "<6.1",
  10525. "symfony/console": "<5.4",
  10526. "symfony/dependency-injection": "<6.3.4",
  10527. "symfony/doctrine-bridge": "<5.4",
  10528. "symfony/form": "<5.4",
  10529. "symfony/http-client": "<5.4",
  10530. "symfony/http-client-contracts": "<2.5",
  10531. "symfony/mailer": "<5.4",
  10532. "symfony/messenger": "<5.4",
  10533. "symfony/translation": "<5.4",
  10534. "symfony/translation-contracts": "<2.5",
  10535. "symfony/twig-bridge": "<5.4",
  10536. "symfony/validator": "<5.4",
  10537. "symfony/var-dumper": "<6.3",
  10538. "twig/twig": "<2.13"
  10539. },
  10540. "provide": {
  10541. "psr/log-implementation": "1.0|2.0|3.0"
  10542. },
  10543. "require-dev": {
  10544. "psr/cache": "^1.0|^2.0|^3.0",
  10545. "symfony/browser-kit": "^5.4|^6.0",
  10546. "symfony/clock": "^6.2",
  10547. "symfony/config": "^6.1",
  10548. "symfony/console": "^5.4|^6.0",
  10549. "symfony/css-selector": "^5.4|^6.0",
  10550. "symfony/dependency-injection": "^6.3.4",
  10551. "symfony/dom-crawler": "^5.4|^6.0",
  10552. "symfony/expression-language": "^5.4|^6.0",
  10553. "symfony/finder": "^5.4|^6.0",
  10554. "symfony/http-client-contracts": "^2.5|^3",
  10555. "symfony/process": "^5.4|^6.0",
  10556. "symfony/property-access": "^5.4.5|^6.0.5",
  10557. "symfony/routing": "^5.4|^6.0",
  10558. "symfony/serializer": "^6.3",
  10559. "symfony/stopwatch": "^5.4|^6.0",
  10560. "symfony/translation": "^5.4|^6.0",
  10561. "symfony/translation-contracts": "^2.5|^3",
  10562. "symfony/uid": "^5.4|^6.0",
  10563. "symfony/validator": "^6.3",
  10564. "symfony/var-exporter": "^6.2",
  10565. "twig/twig": "^2.13|^3.0.4"
  10566. },
  10567. "type": "library",
  10568. "autoload": {
  10569. "psr-4": {
  10570. "Symfony\\Component\\HttpKernel\\": ""
  10571. },
  10572. "exclude-from-classmap": [
  10573. "/Tests/"
  10574. ]
  10575. },
  10576. "notification-url": "https://packagist.org/downloads/",
  10577. "license": [
  10578. "MIT"
  10579. ],
  10580. "authors": [
  10581. {
  10582. "name": "Fabien Potencier",
  10583. "email": "fabien@symfony.com"
  10584. },
  10585. {
  10586. "name": "Symfony Community",
  10587. "homepage": "https://symfony.com/contributors"
  10588. }
  10589. ],
  10590. "description": "Provides a structured process for converting a Request into a Response",
  10591. "homepage": "https://symfony.com",
  10592. "support": {
  10593. "source": "https://github.com/symfony/http-kernel/tree/v6.3.8"
  10594. },
  10595. "funding": [
  10596. {
  10597. "url": "https://symfony.com/sponsor",
  10598. "type": "custom"
  10599. },
  10600. {
  10601. "url": "https://github.com/fabpot",
  10602. "type": "github"
  10603. },
  10604. {
  10605. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10606. "type": "tidelift"
  10607. }
  10608. ],
  10609. "time": "2023-11-10T13:47:32+00:00"
  10610. },
  10611. {
  10612. "name": "symfony/mime",
  10613. "version": "v6.3.5",
  10614. "source": {
  10615. "type": "git",
  10616. "url": "https://github.com/symfony/mime.git",
  10617. "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e"
  10618. },
  10619. "dist": {
  10620. "type": "zip",
  10621. "url": "https://api.github.com/repos/symfony/mime/zipball/d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
  10622. "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
  10623. "shasum": ""
  10624. },
  10625. "require": {
  10626. "php": ">=8.1",
  10627. "symfony/deprecation-contracts": "^2.5|^3",
  10628. "symfony/polyfill-intl-idn": "^1.10",
  10629. "symfony/polyfill-mbstring": "^1.0"
  10630. },
  10631. "conflict": {
  10632. "egulias/email-validator": "~3.0.0",
  10633. "phpdocumentor/reflection-docblock": "<3.2.2",
  10634. "phpdocumentor/type-resolver": "<1.4.0",
  10635. "symfony/mailer": "<5.4",
  10636. "symfony/serializer": "<6.2.13|>=6.3,<6.3.2"
  10637. },
  10638. "require-dev": {
  10639. "egulias/email-validator": "^2.1.10|^3.1|^4",
  10640. "league/html-to-markdown": "^5.0",
  10641. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  10642. "symfony/dependency-injection": "^5.4|^6.0",
  10643. "symfony/property-access": "^5.4|^6.0",
  10644. "symfony/property-info": "^5.4|^6.0",
  10645. "symfony/serializer": "~6.2.13|^6.3.2"
  10646. },
  10647. "type": "library",
  10648. "autoload": {
  10649. "psr-4": {
  10650. "Symfony\\Component\\Mime\\": ""
  10651. },
  10652. "exclude-from-classmap": [
  10653. "/Tests/"
  10654. ]
  10655. },
  10656. "notification-url": "https://packagist.org/downloads/",
  10657. "license": [
  10658. "MIT"
  10659. ],
  10660. "authors": [
  10661. {
  10662. "name": "Fabien Potencier",
  10663. "email": "fabien@symfony.com"
  10664. },
  10665. {
  10666. "name": "Symfony Community",
  10667. "homepage": "https://symfony.com/contributors"
  10668. }
  10669. ],
  10670. "description": "Allows manipulating MIME messages",
  10671. "homepage": "https://symfony.com",
  10672. "keywords": [
  10673. "mime",
  10674. "mime-type"
  10675. ],
  10676. "support": {
  10677. "source": "https://github.com/symfony/mime/tree/v6.3.5"
  10678. },
  10679. "funding": [
  10680. {
  10681. "url": "https://symfony.com/sponsor",
  10682. "type": "custom"
  10683. },
  10684. {
  10685. "url": "https://github.com/fabpot",
  10686. "type": "github"
  10687. },
  10688. {
  10689. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10690. "type": "tidelift"
  10691. }
  10692. ],
  10693. "time": "2023-09-29T06:59:36+00:00"
  10694. },
  10695. {
  10696. "name": "symfony/polyfill-ctype",
  10697. "version": "v1.27.0",
  10698. "source": {
  10699. "type": "git",
  10700. "url": "https://github.com/symfony/polyfill-ctype.git",
  10701. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  10702. },
  10703. "dist": {
  10704. "type": "zip",
  10705. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  10706. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  10707. "shasum": ""
  10708. },
  10709. "require": {
  10710. "php": ">=7.1"
  10711. },
  10712. "provide": {
  10713. "ext-ctype": "*"
  10714. },
  10715. "suggest": {
  10716. "ext-ctype": "For best performance"
  10717. },
  10718. "type": "library",
  10719. "extra": {
  10720. "branch-alias": {
  10721. "dev-main": "1.27-dev"
  10722. },
  10723. "thanks": {
  10724. "name": "symfony/polyfill",
  10725. "url": "https://github.com/symfony/polyfill"
  10726. }
  10727. },
  10728. "autoload": {
  10729. "files": [
  10730. "bootstrap.php"
  10731. ],
  10732. "psr-4": {
  10733. "Symfony\\Polyfill\\Ctype\\": ""
  10734. }
  10735. },
  10736. "notification-url": "https://packagist.org/downloads/",
  10737. "license": [
  10738. "MIT"
  10739. ],
  10740. "authors": [
  10741. {
  10742. "name": "Gert de Pagter",
  10743. "email": "BackEndTea@gmail.com"
  10744. },
  10745. {
  10746. "name": "Symfony Community",
  10747. "homepage": "https://symfony.com/contributors"
  10748. }
  10749. ],
  10750. "description": "Symfony polyfill for ctype functions",
  10751. "homepage": "https://symfony.com",
  10752. "keywords": [
  10753. "compatibility",
  10754. "ctype",
  10755. "polyfill",
  10756. "portable"
  10757. ],
  10758. "support": {
  10759. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  10760. },
  10761. "funding": [
  10762. {
  10763. "url": "https://symfony.com/sponsor",
  10764. "type": "custom"
  10765. },
  10766. {
  10767. "url": "https://github.com/fabpot",
  10768. "type": "github"
  10769. },
  10770. {
  10771. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10772. "type": "tidelift"
  10773. }
  10774. ],
  10775. "time": "2022-11-03T14:55:06+00:00"
  10776. },
  10777. {
  10778. "name": "symfony/polyfill-iconv",
  10779. "version": "v1.27.0",
  10780. "source": {
  10781. "type": "git",
  10782. "url": "https://github.com/symfony/polyfill-iconv.git",
  10783. "reference": "927013f3aac555983a5059aada98e1907d842695"
  10784. },
  10785. "dist": {
  10786. "type": "zip",
  10787. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  10788. "reference": "927013f3aac555983a5059aada98e1907d842695",
  10789. "shasum": ""
  10790. },
  10791. "require": {
  10792. "php": ">=7.1"
  10793. },
  10794. "provide": {
  10795. "ext-iconv": "*"
  10796. },
  10797. "suggest": {
  10798. "ext-iconv": "For best performance"
  10799. },
  10800. "type": "library",
  10801. "extra": {
  10802. "branch-alias": {
  10803. "dev-main": "1.27-dev"
  10804. },
  10805. "thanks": {
  10806. "name": "symfony/polyfill",
  10807. "url": "https://github.com/symfony/polyfill"
  10808. }
  10809. },
  10810. "autoload": {
  10811. "files": [
  10812. "bootstrap.php"
  10813. ],
  10814. "psr-4": {
  10815. "Symfony\\Polyfill\\Iconv\\": ""
  10816. }
  10817. },
  10818. "notification-url": "https://packagist.org/downloads/",
  10819. "license": [
  10820. "MIT"
  10821. ],
  10822. "authors": [
  10823. {
  10824. "name": "Nicolas Grekas",
  10825. "email": "p@tchwork.com"
  10826. },
  10827. {
  10828. "name": "Symfony Community",
  10829. "homepage": "https://symfony.com/contributors"
  10830. }
  10831. ],
  10832. "description": "Symfony polyfill for the Iconv extension",
  10833. "homepage": "https://symfony.com",
  10834. "keywords": [
  10835. "compatibility",
  10836. "iconv",
  10837. "polyfill",
  10838. "portable",
  10839. "shim"
  10840. ],
  10841. "support": {
  10842. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  10843. },
  10844. "funding": [
  10845. {
  10846. "url": "https://symfony.com/sponsor",
  10847. "type": "custom"
  10848. },
  10849. {
  10850. "url": "https://github.com/fabpot",
  10851. "type": "github"
  10852. },
  10853. {
  10854. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10855. "type": "tidelift"
  10856. }
  10857. ],
  10858. "time": "2022-11-03T14:55:06+00:00"
  10859. },
  10860. {
  10861. "name": "symfony/polyfill-intl-grapheme",
  10862. "version": "v1.27.0",
  10863. "source": {
  10864. "type": "git",
  10865. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  10866. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  10867. },
  10868. "dist": {
  10869. "type": "zip",
  10870. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  10871. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  10872. "shasum": ""
  10873. },
  10874. "require": {
  10875. "php": ">=7.1"
  10876. },
  10877. "suggest": {
  10878. "ext-intl": "For best performance"
  10879. },
  10880. "type": "library",
  10881. "extra": {
  10882. "branch-alias": {
  10883. "dev-main": "1.27-dev"
  10884. },
  10885. "thanks": {
  10886. "name": "symfony/polyfill",
  10887. "url": "https://github.com/symfony/polyfill"
  10888. }
  10889. },
  10890. "autoload": {
  10891. "files": [
  10892. "bootstrap.php"
  10893. ],
  10894. "psr-4": {
  10895. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  10896. }
  10897. },
  10898. "notification-url": "https://packagist.org/downloads/",
  10899. "license": [
  10900. "MIT"
  10901. ],
  10902. "authors": [
  10903. {
  10904. "name": "Nicolas Grekas",
  10905. "email": "p@tchwork.com"
  10906. },
  10907. {
  10908. "name": "Symfony Community",
  10909. "homepage": "https://symfony.com/contributors"
  10910. }
  10911. ],
  10912. "description": "Symfony polyfill for intl's grapheme_* functions",
  10913. "homepage": "https://symfony.com",
  10914. "keywords": [
  10915. "compatibility",
  10916. "grapheme",
  10917. "intl",
  10918. "polyfill",
  10919. "portable",
  10920. "shim"
  10921. ],
  10922. "support": {
  10923. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  10924. },
  10925. "funding": [
  10926. {
  10927. "url": "https://symfony.com/sponsor",
  10928. "type": "custom"
  10929. },
  10930. {
  10931. "url": "https://github.com/fabpot",
  10932. "type": "github"
  10933. },
  10934. {
  10935. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10936. "type": "tidelift"
  10937. }
  10938. ],
  10939. "time": "2022-11-03T14:55:06+00:00"
  10940. },
  10941. {
  10942. "name": "symfony/polyfill-intl-idn",
  10943. "version": "v1.27.0",
  10944. "source": {
  10945. "type": "git",
  10946. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  10947. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  10948. },
  10949. "dist": {
  10950. "type": "zip",
  10951. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  10952. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  10953. "shasum": ""
  10954. },
  10955. "require": {
  10956. "php": ">=7.1",
  10957. "symfony/polyfill-intl-normalizer": "^1.10",
  10958. "symfony/polyfill-php72": "^1.10"
  10959. },
  10960. "suggest": {
  10961. "ext-intl": "For best performance"
  10962. },
  10963. "type": "library",
  10964. "extra": {
  10965. "branch-alias": {
  10966. "dev-main": "1.27-dev"
  10967. },
  10968. "thanks": {
  10969. "name": "symfony/polyfill",
  10970. "url": "https://github.com/symfony/polyfill"
  10971. }
  10972. },
  10973. "autoload": {
  10974. "files": [
  10975. "bootstrap.php"
  10976. ],
  10977. "psr-4": {
  10978. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  10979. }
  10980. },
  10981. "notification-url": "https://packagist.org/downloads/",
  10982. "license": [
  10983. "MIT"
  10984. ],
  10985. "authors": [
  10986. {
  10987. "name": "Laurent Bassin",
  10988. "email": "laurent@bassin.info"
  10989. },
  10990. {
  10991. "name": "Trevor Rowbotham",
  10992. "email": "trevor.rowbotham@pm.me"
  10993. },
  10994. {
  10995. "name": "Symfony Community",
  10996. "homepage": "https://symfony.com/contributors"
  10997. }
  10998. ],
  10999. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  11000. "homepage": "https://symfony.com",
  11001. "keywords": [
  11002. "compatibility",
  11003. "idn",
  11004. "intl",
  11005. "polyfill",
  11006. "portable",
  11007. "shim"
  11008. ],
  11009. "support": {
  11010. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  11011. },
  11012. "funding": [
  11013. {
  11014. "url": "https://symfony.com/sponsor",
  11015. "type": "custom"
  11016. },
  11017. {
  11018. "url": "https://github.com/fabpot",
  11019. "type": "github"
  11020. },
  11021. {
  11022. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11023. "type": "tidelift"
  11024. }
  11025. ],
  11026. "time": "2022-11-03T14:55:06+00:00"
  11027. },
  11028. {
  11029. "name": "symfony/polyfill-intl-normalizer",
  11030. "version": "v1.27.0",
  11031. "source": {
  11032. "type": "git",
  11033. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  11034. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  11035. },
  11036. "dist": {
  11037. "type": "zip",
  11038. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  11039. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  11040. "shasum": ""
  11041. },
  11042. "require": {
  11043. "php": ">=7.1"
  11044. },
  11045. "suggest": {
  11046. "ext-intl": "For best performance"
  11047. },
  11048. "type": "library",
  11049. "extra": {
  11050. "branch-alias": {
  11051. "dev-main": "1.27-dev"
  11052. },
  11053. "thanks": {
  11054. "name": "symfony/polyfill",
  11055. "url": "https://github.com/symfony/polyfill"
  11056. }
  11057. },
  11058. "autoload": {
  11059. "files": [
  11060. "bootstrap.php"
  11061. ],
  11062. "psr-4": {
  11063. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  11064. },
  11065. "classmap": [
  11066. "Resources/stubs"
  11067. ]
  11068. },
  11069. "notification-url": "https://packagist.org/downloads/",
  11070. "license": [
  11071. "MIT"
  11072. ],
  11073. "authors": [
  11074. {
  11075. "name": "Nicolas Grekas",
  11076. "email": "p@tchwork.com"
  11077. },
  11078. {
  11079. "name": "Symfony Community",
  11080. "homepage": "https://symfony.com/contributors"
  11081. }
  11082. ],
  11083. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  11084. "homepage": "https://symfony.com",
  11085. "keywords": [
  11086. "compatibility",
  11087. "intl",
  11088. "normalizer",
  11089. "polyfill",
  11090. "portable",
  11091. "shim"
  11092. ],
  11093. "support": {
  11094. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  11095. },
  11096. "funding": [
  11097. {
  11098. "url": "https://symfony.com/sponsor",
  11099. "type": "custom"
  11100. },
  11101. {
  11102. "url": "https://github.com/fabpot",
  11103. "type": "github"
  11104. },
  11105. {
  11106. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11107. "type": "tidelift"
  11108. }
  11109. ],
  11110. "time": "2022-11-03T14:55:06+00:00"
  11111. },
  11112. {
  11113. "name": "symfony/polyfill-mbstring",
  11114. "version": "v1.27.0",
  11115. "source": {
  11116. "type": "git",
  11117. "url": "https://github.com/symfony/polyfill-mbstring.git",
  11118. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  11119. },
  11120. "dist": {
  11121. "type": "zip",
  11122. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  11123. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  11124. "shasum": ""
  11125. },
  11126. "require": {
  11127. "php": ">=7.1"
  11128. },
  11129. "provide": {
  11130. "ext-mbstring": "*"
  11131. },
  11132. "suggest": {
  11133. "ext-mbstring": "For best performance"
  11134. },
  11135. "type": "library",
  11136. "extra": {
  11137. "branch-alias": {
  11138. "dev-main": "1.27-dev"
  11139. },
  11140. "thanks": {
  11141. "name": "symfony/polyfill",
  11142. "url": "https://github.com/symfony/polyfill"
  11143. }
  11144. },
  11145. "autoload": {
  11146. "files": [
  11147. "bootstrap.php"
  11148. ],
  11149. "psr-4": {
  11150. "Symfony\\Polyfill\\Mbstring\\": ""
  11151. }
  11152. },
  11153. "notification-url": "https://packagist.org/downloads/",
  11154. "license": [
  11155. "MIT"
  11156. ],
  11157. "authors": [
  11158. {
  11159. "name": "Nicolas Grekas",
  11160. "email": "p@tchwork.com"
  11161. },
  11162. {
  11163. "name": "Symfony Community",
  11164. "homepage": "https://symfony.com/contributors"
  11165. }
  11166. ],
  11167. "description": "Symfony polyfill for the Mbstring extension",
  11168. "homepage": "https://symfony.com",
  11169. "keywords": [
  11170. "compatibility",
  11171. "mbstring",
  11172. "polyfill",
  11173. "portable",
  11174. "shim"
  11175. ],
  11176. "support": {
  11177. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  11178. },
  11179. "funding": [
  11180. {
  11181. "url": "https://symfony.com/sponsor",
  11182. "type": "custom"
  11183. },
  11184. {
  11185. "url": "https://github.com/fabpot",
  11186. "type": "github"
  11187. },
  11188. {
  11189. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11190. "type": "tidelift"
  11191. }
  11192. ],
  11193. "time": "2022-11-03T14:55:06+00:00"
  11194. },
  11195. {
  11196. "name": "symfony/polyfill-php72",
  11197. "version": "v1.28.0",
  11198. "source": {
  11199. "type": "git",
  11200. "url": "https://github.com/symfony/polyfill-php72.git",
  11201. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  11202. },
  11203. "dist": {
  11204. "type": "zip",
  11205. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  11206. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  11207. "shasum": ""
  11208. },
  11209. "require": {
  11210. "php": ">=7.1"
  11211. },
  11212. "type": "library",
  11213. "extra": {
  11214. "branch-alias": {
  11215. "dev-main": "1.28-dev"
  11216. },
  11217. "thanks": {
  11218. "name": "symfony/polyfill",
  11219. "url": "https://github.com/symfony/polyfill"
  11220. }
  11221. },
  11222. "autoload": {
  11223. "files": [
  11224. "bootstrap.php"
  11225. ],
  11226. "psr-4": {
  11227. "Symfony\\Polyfill\\Php72\\": ""
  11228. }
  11229. },
  11230. "notification-url": "https://packagist.org/downloads/",
  11231. "license": [
  11232. "MIT"
  11233. ],
  11234. "authors": [
  11235. {
  11236. "name": "Nicolas Grekas",
  11237. "email": "p@tchwork.com"
  11238. },
  11239. {
  11240. "name": "Symfony Community",
  11241. "homepage": "https://symfony.com/contributors"
  11242. }
  11243. ],
  11244. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  11245. "homepage": "https://symfony.com",
  11246. "keywords": [
  11247. "compatibility",
  11248. "polyfill",
  11249. "portable",
  11250. "shim"
  11251. ],
  11252. "support": {
  11253. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  11254. },
  11255. "funding": [
  11256. {
  11257. "url": "https://symfony.com/sponsor",
  11258. "type": "custom"
  11259. },
  11260. {
  11261. "url": "https://github.com/fabpot",
  11262. "type": "github"
  11263. },
  11264. {
  11265. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11266. "type": "tidelift"
  11267. }
  11268. ],
  11269. "time": "2023-01-26T09:26:14+00:00"
  11270. },
  11271. {
  11272. "name": "symfony/polyfill-php80",
  11273. "version": "v1.28.0",
  11274. "source": {
  11275. "type": "git",
  11276. "url": "https://github.com/symfony/polyfill-php80.git",
  11277. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  11278. },
  11279. "dist": {
  11280. "type": "zip",
  11281. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  11282. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  11283. "shasum": ""
  11284. },
  11285. "require": {
  11286. "php": ">=7.1"
  11287. },
  11288. "type": "library",
  11289. "extra": {
  11290. "branch-alias": {
  11291. "dev-main": "1.28-dev"
  11292. },
  11293. "thanks": {
  11294. "name": "symfony/polyfill",
  11295. "url": "https://github.com/symfony/polyfill"
  11296. }
  11297. },
  11298. "autoload": {
  11299. "files": [
  11300. "bootstrap.php"
  11301. ],
  11302. "psr-4": {
  11303. "Symfony\\Polyfill\\Php80\\": ""
  11304. },
  11305. "classmap": [
  11306. "Resources/stubs"
  11307. ]
  11308. },
  11309. "notification-url": "https://packagist.org/downloads/",
  11310. "license": [
  11311. "MIT"
  11312. ],
  11313. "authors": [
  11314. {
  11315. "name": "Ion Bazan",
  11316. "email": "ion.bazan@gmail.com"
  11317. },
  11318. {
  11319. "name": "Nicolas Grekas",
  11320. "email": "p@tchwork.com"
  11321. },
  11322. {
  11323. "name": "Symfony Community",
  11324. "homepage": "https://symfony.com/contributors"
  11325. }
  11326. ],
  11327. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  11328. "homepage": "https://symfony.com",
  11329. "keywords": [
  11330. "compatibility",
  11331. "polyfill",
  11332. "portable",
  11333. "shim"
  11334. ],
  11335. "support": {
  11336. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  11337. },
  11338. "funding": [
  11339. {
  11340. "url": "https://symfony.com/sponsor",
  11341. "type": "custom"
  11342. },
  11343. {
  11344. "url": "https://github.com/fabpot",
  11345. "type": "github"
  11346. },
  11347. {
  11348. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11349. "type": "tidelift"
  11350. }
  11351. ],
  11352. "time": "2023-01-26T09:26:14+00:00"
  11353. },
  11354. {
  11355. "name": "symfony/polyfill-php81",
  11356. "version": "v1.28.0",
  11357. "source": {
  11358. "type": "git",
  11359. "url": "https://github.com/symfony/polyfill-php81.git",
  11360. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  11361. },
  11362. "dist": {
  11363. "type": "zip",
  11364. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  11365. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  11366. "shasum": ""
  11367. },
  11368. "require": {
  11369. "php": ">=7.1"
  11370. },
  11371. "type": "library",
  11372. "extra": {
  11373. "branch-alias": {
  11374. "dev-main": "1.28-dev"
  11375. },
  11376. "thanks": {
  11377. "name": "symfony/polyfill",
  11378. "url": "https://github.com/symfony/polyfill"
  11379. }
  11380. },
  11381. "autoload": {
  11382. "files": [
  11383. "bootstrap.php"
  11384. ],
  11385. "psr-4": {
  11386. "Symfony\\Polyfill\\Php81\\": ""
  11387. },
  11388. "classmap": [
  11389. "Resources/stubs"
  11390. ]
  11391. },
  11392. "notification-url": "https://packagist.org/downloads/",
  11393. "license": [
  11394. "MIT"
  11395. ],
  11396. "authors": [
  11397. {
  11398. "name": "Nicolas Grekas",
  11399. "email": "p@tchwork.com"
  11400. },
  11401. {
  11402. "name": "Symfony Community",
  11403. "homepage": "https://symfony.com/contributors"
  11404. }
  11405. ],
  11406. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11407. "homepage": "https://symfony.com",
  11408. "keywords": [
  11409. "compatibility",
  11410. "polyfill",
  11411. "portable",
  11412. "shim"
  11413. ],
  11414. "support": {
  11415. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  11416. },
  11417. "funding": [
  11418. {
  11419. "url": "https://symfony.com/sponsor",
  11420. "type": "custom"
  11421. },
  11422. {
  11423. "url": "https://github.com/fabpot",
  11424. "type": "github"
  11425. },
  11426. {
  11427. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11428. "type": "tidelift"
  11429. }
  11430. ],
  11431. "time": "2023-01-26T09:26:14+00:00"
  11432. },
  11433. {
  11434. "name": "symfony/polyfill-php83",
  11435. "version": "v1.27.0",
  11436. "source": {
  11437. "type": "git",
  11438. "url": "https://github.com/symfony/polyfill-php83.git",
  11439. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57"
  11440. },
  11441. "dist": {
  11442. "type": "zip",
  11443. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/508c652ba3ccf69f8c97f251534f229791b52a57",
  11444. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57",
  11445. "shasum": ""
  11446. },
  11447. "require": {
  11448. "php": ">=7.1",
  11449. "symfony/polyfill-php80": "^1.14"
  11450. },
  11451. "type": "library",
  11452. "extra": {
  11453. "branch-alias": {
  11454. "dev-main": "1.27-dev"
  11455. },
  11456. "thanks": {
  11457. "name": "symfony/polyfill",
  11458. "url": "https://github.com/symfony/polyfill"
  11459. }
  11460. },
  11461. "autoload": {
  11462. "files": [
  11463. "bootstrap.php"
  11464. ],
  11465. "psr-4": {
  11466. "Symfony\\Polyfill\\Php83\\": ""
  11467. }
  11468. },
  11469. "notification-url": "https://packagist.org/downloads/",
  11470. "license": [
  11471. "MIT"
  11472. ],
  11473. "authors": [
  11474. {
  11475. "name": "Nicolas Grekas",
  11476. "email": "p@tchwork.com"
  11477. },
  11478. {
  11479. "name": "Symfony Community",
  11480. "homepage": "https://symfony.com/contributors"
  11481. }
  11482. ],
  11483. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11484. "homepage": "https://symfony.com",
  11485. "keywords": [
  11486. "compatibility",
  11487. "polyfill",
  11488. "portable",
  11489. "shim"
  11490. ],
  11491. "support": {
  11492. "source": "https://github.com/symfony/polyfill-php83/tree/v1.27.0"
  11493. },
  11494. "funding": [
  11495. {
  11496. "url": "https://symfony.com/sponsor",
  11497. "type": "custom"
  11498. },
  11499. {
  11500. "url": "https://github.com/fabpot",
  11501. "type": "github"
  11502. },
  11503. {
  11504. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11505. "type": "tidelift"
  11506. }
  11507. ],
  11508. "time": "2022-11-03T14:55:06+00:00"
  11509. },
  11510. {
  11511. "name": "symfony/process",
  11512. "version": "v6.3.4",
  11513. "source": {
  11514. "type": "git",
  11515. "url": "https://github.com/symfony/process.git",
  11516. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54"
  11517. },
  11518. "dist": {
  11519. "type": "zip",
  11520. "url": "https://api.github.com/repos/symfony/process/zipball/0b5c29118f2e980d455d2e34a5659f4579847c54",
  11521. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54",
  11522. "shasum": ""
  11523. },
  11524. "require": {
  11525. "php": ">=8.1"
  11526. },
  11527. "type": "library",
  11528. "autoload": {
  11529. "psr-4": {
  11530. "Symfony\\Component\\Process\\": ""
  11531. },
  11532. "exclude-from-classmap": [
  11533. "/Tests/"
  11534. ]
  11535. },
  11536. "notification-url": "https://packagist.org/downloads/",
  11537. "license": [
  11538. "MIT"
  11539. ],
  11540. "authors": [
  11541. {
  11542. "name": "Fabien Potencier",
  11543. "email": "fabien@symfony.com"
  11544. },
  11545. {
  11546. "name": "Symfony Community",
  11547. "homepage": "https://symfony.com/contributors"
  11548. }
  11549. ],
  11550. "description": "Executes commands in sub-processes",
  11551. "homepage": "https://symfony.com",
  11552. "support": {
  11553. "source": "https://github.com/symfony/process/tree/v6.3.4"
  11554. },
  11555. "funding": [
  11556. {
  11557. "url": "https://symfony.com/sponsor",
  11558. "type": "custom"
  11559. },
  11560. {
  11561. "url": "https://github.com/fabpot",
  11562. "type": "github"
  11563. },
  11564. {
  11565. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11566. "type": "tidelift"
  11567. }
  11568. ],
  11569. "time": "2023-08-07T10:39:22+00:00"
  11570. },
  11571. {
  11572. "name": "symfony/psr-http-message-bridge",
  11573. "version": "v2.2.0",
  11574. "source": {
  11575. "type": "git",
  11576. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  11577. "reference": "28a732c05bbad801304ad5a5c674cf2970508993"
  11578. },
  11579. "dist": {
  11580. "type": "zip",
  11581. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/28a732c05bbad801304ad5a5c674cf2970508993",
  11582. "reference": "28a732c05bbad801304ad5a5c674cf2970508993",
  11583. "shasum": ""
  11584. },
  11585. "require": {
  11586. "php": ">=7.2.5",
  11587. "psr/http-message": "^1.0 || ^2.0",
  11588. "symfony/http-foundation": "^5.4 || ^6.0"
  11589. },
  11590. "require-dev": {
  11591. "nyholm/psr7": "^1.1",
  11592. "psr/log": "^1.1 || ^2 || ^3",
  11593. "symfony/browser-kit": "^5.4 || ^6.0",
  11594. "symfony/config": "^5.4 || ^6.0",
  11595. "symfony/event-dispatcher": "^5.4 || ^6.0",
  11596. "symfony/framework-bundle": "^5.4 || ^6.0",
  11597. "symfony/http-kernel": "^5.4 || ^6.0",
  11598. "symfony/phpunit-bridge": "^6.2"
  11599. },
  11600. "suggest": {
  11601. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  11602. },
  11603. "type": "symfony-bridge",
  11604. "extra": {
  11605. "branch-alias": {
  11606. "dev-main": "2.2-dev"
  11607. }
  11608. },
  11609. "autoload": {
  11610. "psr-4": {
  11611. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  11612. },
  11613. "exclude-from-classmap": [
  11614. "/Tests/"
  11615. ]
  11616. },
  11617. "notification-url": "https://packagist.org/downloads/",
  11618. "license": [
  11619. "MIT"
  11620. ],
  11621. "authors": [
  11622. {
  11623. "name": "Fabien Potencier",
  11624. "email": "fabien@symfony.com"
  11625. },
  11626. {
  11627. "name": "Symfony Community",
  11628. "homepage": "http://symfony.com/contributors"
  11629. }
  11630. ],
  11631. "description": "PSR HTTP message bridge",
  11632. "homepage": "http://symfony.com",
  11633. "keywords": [
  11634. "http",
  11635. "http-message",
  11636. "psr-17",
  11637. "psr-7"
  11638. ],
  11639. "support": {
  11640. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  11641. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.2.0"
  11642. },
  11643. "funding": [
  11644. {
  11645. "url": "https://symfony.com/sponsor",
  11646. "type": "custom"
  11647. },
  11648. {
  11649. "url": "https://github.com/fabpot",
  11650. "type": "github"
  11651. },
  11652. {
  11653. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11654. "type": "tidelift"
  11655. }
  11656. ],
  11657. "time": "2023-04-21T08:40:19+00:00"
  11658. },
  11659. {
  11660. "name": "symfony/routing",
  11661. "version": "v6.3.5",
  11662. "source": {
  11663. "type": "git",
  11664. "url": "https://github.com/symfony/routing.git",
  11665. "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31"
  11666. },
  11667. "dist": {
  11668. "type": "zip",
  11669. "url": "https://api.github.com/repos/symfony/routing/zipball/82616e59acd3e3d9c916bba798326cb7796d7d31",
  11670. "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31",
  11671. "shasum": ""
  11672. },
  11673. "require": {
  11674. "php": ">=8.1",
  11675. "symfony/deprecation-contracts": "^2.5|^3"
  11676. },
  11677. "conflict": {
  11678. "doctrine/annotations": "<1.12",
  11679. "symfony/config": "<6.2",
  11680. "symfony/dependency-injection": "<5.4",
  11681. "symfony/yaml": "<5.4"
  11682. },
  11683. "require-dev": {
  11684. "doctrine/annotations": "^1.12|^2",
  11685. "psr/log": "^1|^2|^3",
  11686. "symfony/config": "^6.2",
  11687. "symfony/dependency-injection": "^5.4|^6.0",
  11688. "symfony/expression-language": "^5.4|^6.0",
  11689. "symfony/http-foundation": "^5.4|^6.0",
  11690. "symfony/yaml": "^5.4|^6.0"
  11691. },
  11692. "type": "library",
  11693. "autoload": {
  11694. "psr-4": {
  11695. "Symfony\\Component\\Routing\\": ""
  11696. },
  11697. "exclude-from-classmap": [
  11698. "/Tests/"
  11699. ]
  11700. },
  11701. "notification-url": "https://packagist.org/downloads/",
  11702. "license": [
  11703. "MIT"
  11704. ],
  11705. "authors": [
  11706. {
  11707. "name": "Fabien Potencier",
  11708. "email": "fabien@symfony.com"
  11709. },
  11710. {
  11711. "name": "Symfony Community",
  11712. "homepage": "https://symfony.com/contributors"
  11713. }
  11714. ],
  11715. "description": "Maps an HTTP request to a set of configuration variables",
  11716. "homepage": "https://symfony.com",
  11717. "keywords": [
  11718. "router",
  11719. "routing",
  11720. "uri",
  11721. "url"
  11722. ],
  11723. "support": {
  11724. "source": "https://github.com/symfony/routing/tree/v6.3.5"
  11725. },
  11726. "funding": [
  11727. {
  11728. "url": "https://symfony.com/sponsor",
  11729. "type": "custom"
  11730. },
  11731. {
  11732. "url": "https://github.com/fabpot",
  11733. "type": "github"
  11734. },
  11735. {
  11736. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11737. "type": "tidelift"
  11738. }
  11739. ],
  11740. "time": "2023-09-20T16:05:51+00:00"
  11741. },
  11742. {
  11743. "name": "symfony/serializer",
  11744. "version": "v6.3.8",
  11745. "source": {
  11746. "type": "git",
  11747. "url": "https://github.com/symfony/serializer.git",
  11748. "reference": "b3ad1515a276473f7919ac97e560017284a7c4bf"
  11749. },
  11750. "dist": {
  11751. "type": "zip",
  11752. "url": "https://api.github.com/repos/symfony/serializer/zipball/b3ad1515a276473f7919ac97e560017284a7c4bf",
  11753. "reference": "b3ad1515a276473f7919ac97e560017284a7c4bf",
  11754. "shasum": ""
  11755. },
  11756. "require": {
  11757. "php": ">=8.1",
  11758. "symfony/deprecation-contracts": "^2.5|^3",
  11759. "symfony/polyfill-ctype": "~1.8"
  11760. },
  11761. "conflict": {
  11762. "doctrine/annotations": "<1.12",
  11763. "phpdocumentor/reflection-docblock": "<3.2.2",
  11764. "phpdocumentor/type-resolver": "<1.4.0",
  11765. "symfony/dependency-injection": "<5.4",
  11766. "symfony/property-access": "<5.4",
  11767. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  11768. "symfony/uid": "<5.4",
  11769. "symfony/yaml": "<5.4"
  11770. },
  11771. "require-dev": {
  11772. "doctrine/annotations": "^1.12|^2",
  11773. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  11774. "symfony/cache": "^5.4|^6.0",
  11775. "symfony/config": "^5.4|^6.0",
  11776. "symfony/console": "^5.4|^6.0",
  11777. "symfony/dependency-injection": "^5.4|^6.0",
  11778. "symfony/error-handler": "^5.4|^6.0",
  11779. "symfony/filesystem": "^5.4|^6.0",
  11780. "symfony/form": "^5.4|^6.0",
  11781. "symfony/http-foundation": "^5.4|^6.0",
  11782. "symfony/http-kernel": "^5.4|^6.0",
  11783. "symfony/mime": "^5.4|^6.0",
  11784. "symfony/property-access": "^5.4|^6.0",
  11785. "symfony/property-info": "^5.4.24|^6.2.11",
  11786. "symfony/uid": "^5.4|^6.0",
  11787. "symfony/validator": "^5.4|^6.0",
  11788. "symfony/var-dumper": "^5.4|^6.0",
  11789. "symfony/var-exporter": "^5.4|^6.0",
  11790. "symfony/yaml": "^5.4|^6.0"
  11791. },
  11792. "type": "library",
  11793. "autoload": {
  11794. "psr-4": {
  11795. "Symfony\\Component\\Serializer\\": ""
  11796. },
  11797. "exclude-from-classmap": [
  11798. "/Tests/"
  11799. ]
  11800. },
  11801. "notification-url": "https://packagist.org/downloads/",
  11802. "license": [
  11803. "MIT"
  11804. ],
  11805. "authors": [
  11806. {
  11807. "name": "Fabien Potencier",
  11808. "email": "fabien@symfony.com"
  11809. },
  11810. {
  11811. "name": "Symfony Community",
  11812. "homepage": "https://symfony.com/contributors"
  11813. }
  11814. ],
  11815. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  11816. "homepage": "https://symfony.com",
  11817. "support": {
  11818. "source": "https://github.com/symfony/serializer/tree/v6.3.8"
  11819. },
  11820. "funding": [
  11821. {
  11822. "url": "https://symfony.com/sponsor",
  11823. "type": "custom"
  11824. },
  11825. {
  11826. "url": "https://github.com/fabpot",
  11827. "type": "github"
  11828. },
  11829. {
  11830. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11831. "type": "tidelift"
  11832. }
  11833. ],
  11834. "time": "2023-11-07T10:11:25+00:00"
  11835. },
  11836. {
  11837. "name": "symfony/service-contracts",
  11838. "version": "v3.3.0",
  11839. "source": {
  11840. "type": "git",
  11841. "url": "https://github.com/symfony/service-contracts.git",
  11842. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
  11843. },
  11844. "dist": {
  11845. "type": "zip",
  11846. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  11847. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  11848. "shasum": ""
  11849. },
  11850. "require": {
  11851. "php": ">=8.1",
  11852. "psr/container": "^2.0"
  11853. },
  11854. "conflict": {
  11855. "ext-psr": "<1.1|>=2"
  11856. },
  11857. "type": "library",
  11858. "extra": {
  11859. "branch-alias": {
  11860. "dev-main": "3.4-dev"
  11861. },
  11862. "thanks": {
  11863. "name": "symfony/contracts",
  11864. "url": "https://github.com/symfony/contracts"
  11865. }
  11866. },
  11867. "autoload": {
  11868. "psr-4": {
  11869. "Symfony\\Contracts\\Service\\": ""
  11870. },
  11871. "exclude-from-classmap": [
  11872. "/Test/"
  11873. ]
  11874. },
  11875. "notification-url": "https://packagist.org/downloads/",
  11876. "license": [
  11877. "MIT"
  11878. ],
  11879. "authors": [
  11880. {
  11881. "name": "Nicolas Grekas",
  11882. "email": "p@tchwork.com"
  11883. },
  11884. {
  11885. "name": "Symfony Community",
  11886. "homepage": "https://symfony.com/contributors"
  11887. }
  11888. ],
  11889. "description": "Generic abstractions related to writing services",
  11890. "homepage": "https://symfony.com",
  11891. "keywords": [
  11892. "abstractions",
  11893. "contracts",
  11894. "decoupling",
  11895. "interfaces",
  11896. "interoperability",
  11897. "standards"
  11898. ],
  11899. "support": {
  11900. "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
  11901. },
  11902. "funding": [
  11903. {
  11904. "url": "https://symfony.com/sponsor",
  11905. "type": "custom"
  11906. },
  11907. {
  11908. "url": "https://github.com/fabpot",
  11909. "type": "github"
  11910. },
  11911. {
  11912. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11913. "type": "tidelift"
  11914. }
  11915. ],
  11916. "time": "2023-05-23T14:45:45+00:00"
  11917. },
  11918. {
  11919. "name": "symfony/string",
  11920. "version": "v6.3.8",
  11921. "source": {
  11922. "type": "git",
  11923. "url": "https://github.com/symfony/string.git",
  11924. "reference": "13880a87790c76ef994c91e87efb96134522577a"
  11925. },
  11926. "dist": {
  11927. "type": "zip",
  11928. "url": "https://api.github.com/repos/symfony/string/zipball/13880a87790c76ef994c91e87efb96134522577a",
  11929. "reference": "13880a87790c76ef994c91e87efb96134522577a",
  11930. "shasum": ""
  11931. },
  11932. "require": {
  11933. "php": ">=8.1",
  11934. "symfony/polyfill-ctype": "~1.8",
  11935. "symfony/polyfill-intl-grapheme": "~1.0",
  11936. "symfony/polyfill-intl-normalizer": "~1.0",
  11937. "symfony/polyfill-mbstring": "~1.0"
  11938. },
  11939. "conflict": {
  11940. "symfony/translation-contracts": "<2.5"
  11941. },
  11942. "require-dev": {
  11943. "symfony/error-handler": "^5.4|^6.0",
  11944. "symfony/http-client": "^5.4|^6.0",
  11945. "symfony/intl": "^6.2",
  11946. "symfony/translation-contracts": "^2.5|^3.0",
  11947. "symfony/var-exporter": "^5.4|^6.0"
  11948. },
  11949. "type": "library",
  11950. "autoload": {
  11951. "files": [
  11952. "Resources/functions.php"
  11953. ],
  11954. "psr-4": {
  11955. "Symfony\\Component\\String\\": ""
  11956. },
  11957. "exclude-from-classmap": [
  11958. "/Tests/"
  11959. ]
  11960. },
  11961. "notification-url": "https://packagist.org/downloads/",
  11962. "license": [
  11963. "MIT"
  11964. ],
  11965. "authors": [
  11966. {
  11967. "name": "Nicolas Grekas",
  11968. "email": "p@tchwork.com"
  11969. },
  11970. {
  11971. "name": "Symfony Community",
  11972. "homepage": "https://symfony.com/contributors"
  11973. }
  11974. ],
  11975. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  11976. "homepage": "https://symfony.com",
  11977. "keywords": [
  11978. "grapheme",
  11979. "i18n",
  11980. "string",
  11981. "unicode",
  11982. "utf-8",
  11983. "utf8"
  11984. ],
  11985. "support": {
  11986. "source": "https://github.com/symfony/string/tree/v6.3.8"
  11987. },
  11988. "funding": [
  11989. {
  11990. "url": "https://symfony.com/sponsor",
  11991. "type": "custom"
  11992. },
  11993. {
  11994. "url": "https://github.com/fabpot",
  11995. "type": "github"
  11996. },
  11997. {
  11998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11999. "type": "tidelift"
  12000. }
  12001. ],
  12002. "time": "2023-11-09T08:28:21+00:00"
  12003. },
  12004. {
  12005. "name": "symfony/translation-contracts",
  12006. "version": "v3.3.0",
  12007. "source": {
  12008. "type": "git",
  12009. "url": "https://github.com/symfony/translation-contracts.git",
  12010. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86"
  12011. },
  12012. "dist": {
  12013. "type": "zip",
  12014. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86",
  12015. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86",
  12016. "shasum": ""
  12017. },
  12018. "require": {
  12019. "php": ">=8.1"
  12020. },
  12021. "type": "library",
  12022. "extra": {
  12023. "branch-alias": {
  12024. "dev-main": "3.4-dev"
  12025. },
  12026. "thanks": {
  12027. "name": "symfony/contracts",
  12028. "url": "https://github.com/symfony/contracts"
  12029. }
  12030. },
  12031. "autoload": {
  12032. "psr-4": {
  12033. "Symfony\\Contracts\\Translation\\": ""
  12034. },
  12035. "exclude-from-classmap": [
  12036. "/Test/"
  12037. ]
  12038. },
  12039. "notification-url": "https://packagist.org/downloads/",
  12040. "license": [
  12041. "MIT"
  12042. ],
  12043. "authors": [
  12044. {
  12045. "name": "Nicolas Grekas",
  12046. "email": "p@tchwork.com"
  12047. },
  12048. {
  12049. "name": "Symfony Community",
  12050. "homepage": "https://symfony.com/contributors"
  12051. }
  12052. ],
  12053. "description": "Generic abstractions related to translation",
  12054. "homepage": "https://symfony.com",
  12055. "keywords": [
  12056. "abstractions",
  12057. "contracts",
  12058. "decoupling",
  12059. "interfaces",
  12060. "interoperability",
  12061. "standards"
  12062. ],
  12063. "support": {
  12064. "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0"
  12065. },
  12066. "funding": [
  12067. {
  12068. "url": "https://symfony.com/sponsor",
  12069. "type": "custom"
  12070. },
  12071. {
  12072. "url": "https://github.com/fabpot",
  12073. "type": "github"
  12074. },
  12075. {
  12076. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12077. "type": "tidelift"
  12078. }
  12079. ],
  12080. "time": "2023-05-30T17:17:10+00:00"
  12081. },
  12082. {
  12083. "name": "symfony/validator",
  12084. "version": "v6.3.8",
  12085. "source": {
  12086. "type": "git",
  12087. "url": "https://github.com/symfony/validator.git",
  12088. "reference": "f75b40e088d095db1e788b81605a76f4563cb80e"
  12089. },
  12090. "dist": {
  12091. "type": "zip",
  12092. "url": "https://api.github.com/repos/symfony/validator/zipball/f75b40e088d095db1e788b81605a76f4563cb80e",
  12093. "reference": "f75b40e088d095db1e788b81605a76f4563cb80e",
  12094. "shasum": ""
  12095. },
  12096. "require": {
  12097. "php": ">=8.1",
  12098. "symfony/deprecation-contracts": "^2.5|^3",
  12099. "symfony/polyfill-ctype": "~1.8",
  12100. "symfony/polyfill-mbstring": "~1.0",
  12101. "symfony/polyfill-php83": "^1.27",
  12102. "symfony/translation-contracts": "^2.5|^3"
  12103. },
  12104. "conflict": {
  12105. "doctrine/annotations": "<1.13",
  12106. "doctrine/lexer": "<1.1",
  12107. "symfony/dependency-injection": "<5.4",
  12108. "symfony/expression-language": "<5.4",
  12109. "symfony/http-kernel": "<5.4",
  12110. "symfony/intl": "<5.4",
  12111. "symfony/property-info": "<5.4",
  12112. "symfony/translation": "<5.4",
  12113. "symfony/yaml": "<5.4"
  12114. },
  12115. "require-dev": {
  12116. "doctrine/annotations": "^1.13|^2",
  12117. "egulias/email-validator": "^2.1.10|^3|^4",
  12118. "symfony/cache": "^5.4|^6.0",
  12119. "symfony/config": "^5.4|^6.0",
  12120. "symfony/console": "^5.4|^6.0",
  12121. "symfony/dependency-injection": "^5.4|^6.0",
  12122. "symfony/expression-language": "^5.4|^6.0",
  12123. "symfony/finder": "^5.4|^6.0",
  12124. "symfony/http-client": "^5.4|^6.0",
  12125. "symfony/http-foundation": "^5.4|^6.0",
  12126. "symfony/http-kernel": "^5.4|^6.0",
  12127. "symfony/intl": "^5.4|^6.0",
  12128. "symfony/mime": "^5.4|^6.0",
  12129. "symfony/property-access": "^5.4|^6.0",
  12130. "symfony/property-info": "^5.4|^6.0",
  12131. "symfony/translation": "^5.4|^6.0",
  12132. "symfony/yaml": "^5.4|^6.0"
  12133. },
  12134. "type": "library",
  12135. "autoload": {
  12136. "psr-4": {
  12137. "Symfony\\Component\\Validator\\": ""
  12138. },
  12139. "exclude-from-classmap": [
  12140. "/Tests/"
  12141. ]
  12142. },
  12143. "notification-url": "https://packagist.org/downloads/",
  12144. "license": [
  12145. "MIT"
  12146. ],
  12147. "authors": [
  12148. {
  12149. "name": "Fabien Potencier",
  12150. "email": "fabien@symfony.com"
  12151. },
  12152. {
  12153. "name": "Symfony Community",
  12154. "homepage": "https://symfony.com/contributors"
  12155. }
  12156. ],
  12157. "description": "Provides tools to validate values",
  12158. "homepage": "https://symfony.com",
  12159. "support": {
  12160. "source": "https://github.com/symfony/validator/tree/v6.3.8"
  12161. },
  12162. "funding": [
  12163. {
  12164. "url": "https://symfony.com/sponsor",
  12165. "type": "custom"
  12166. },
  12167. {
  12168. "url": "https://github.com/fabpot",
  12169. "type": "github"
  12170. },
  12171. {
  12172. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12173. "type": "tidelift"
  12174. }
  12175. ],
  12176. "time": "2023-11-07T10:17:15+00:00"
  12177. },
  12178. {
  12179. "name": "symfony/var-dumper",
  12180. "version": "v6.3.8",
  12181. "source": {
  12182. "type": "git",
  12183. "url": "https://github.com/symfony/var-dumper.git",
  12184. "reference": "81acabba9046550e89634876ca64bfcd3c06aa0a"
  12185. },
  12186. "dist": {
  12187. "type": "zip",
  12188. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/81acabba9046550e89634876ca64bfcd3c06aa0a",
  12189. "reference": "81acabba9046550e89634876ca64bfcd3c06aa0a",
  12190. "shasum": ""
  12191. },
  12192. "require": {
  12193. "php": ">=8.1",
  12194. "symfony/deprecation-contracts": "^2.5|^3",
  12195. "symfony/polyfill-mbstring": "~1.0"
  12196. },
  12197. "conflict": {
  12198. "symfony/console": "<5.4"
  12199. },
  12200. "require-dev": {
  12201. "ext-iconv": "*",
  12202. "symfony/console": "^5.4|^6.0",
  12203. "symfony/http-kernel": "^5.4|^6.0",
  12204. "symfony/process": "^5.4|^6.0",
  12205. "symfony/uid": "^5.4|^6.0",
  12206. "twig/twig": "^2.13|^3.0.4"
  12207. },
  12208. "bin": [
  12209. "Resources/bin/var-dump-server"
  12210. ],
  12211. "type": "library",
  12212. "autoload": {
  12213. "files": [
  12214. "Resources/functions/dump.php"
  12215. ],
  12216. "psr-4": {
  12217. "Symfony\\Component\\VarDumper\\": ""
  12218. },
  12219. "exclude-from-classmap": [
  12220. "/Tests/"
  12221. ]
  12222. },
  12223. "notification-url": "https://packagist.org/downloads/",
  12224. "license": [
  12225. "MIT"
  12226. ],
  12227. "authors": [
  12228. {
  12229. "name": "Nicolas Grekas",
  12230. "email": "p@tchwork.com"
  12231. },
  12232. {
  12233. "name": "Symfony Community",
  12234. "homepage": "https://symfony.com/contributors"
  12235. }
  12236. ],
  12237. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  12238. "homepage": "https://symfony.com",
  12239. "keywords": [
  12240. "debug",
  12241. "dump"
  12242. ],
  12243. "support": {
  12244. "source": "https://github.com/symfony/var-dumper/tree/v6.3.8"
  12245. },
  12246. "funding": [
  12247. {
  12248. "url": "https://symfony.com/sponsor",
  12249. "type": "custom"
  12250. },
  12251. {
  12252. "url": "https://github.com/fabpot",
  12253. "type": "github"
  12254. },
  12255. {
  12256. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12257. "type": "tidelift"
  12258. }
  12259. ],
  12260. "time": "2023-11-08T10:42:36+00:00"
  12261. },
  12262. {
  12263. "name": "symfony/var-exporter",
  12264. "version": "v6.3.6",
  12265. "source": {
  12266. "type": "git",
  12267. "url": "https://github.com/symfony/var-exporter.git",
  12268. "reference": "374d289c13cb989027274c86206ddc63b16a2441"
  12269. },
  12270. "dist": {
  12271. "type": "zip",
  12272. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/374d289c13cb989027274c86206ddc63b16a2441",
  12273. "reference": "374d289c13cb989027274c86206ddc63b16a2441",
  12274. "shasum": ""
  12275. },
  12276. "require": {
  12277. "php": ">=8.1"
  12278. },
  12279. "require-dev": {
  12280. "symfony/var-dumper": "^5.4|^6.0"
  12281. },
  12282. "type": "library",
  12283. "autoload": {
  12284. "psr-4": {
  12285. "Symfony\\Component\\VarExporter\\": ""
  12286. },
  12287. "exclude-from-classmap": [
  12288. "/Tests/"
  12289. ]
  12290. },
  12291. "notification-url": "https://packagist.org/downloads/",
  12292. "license": [
  12293. "MIT"
  12294. ],
  12295. "authors": [
  12296. {
  12297. "name": "Nicolas Grekas",
  12298. "email": "p@tchwork.com"
  12299. },
  12300. {
  12301. "name": "Symfony Community",
  12302. "homepage": "https://symfony.com/contributors"
  12303. }
  12304. ],
  12305. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  12306. "homepage": "https://symfony.com",
  12307. "keywords": [
  12308. "clone",
  12309. "construct",
  12310. "export",
  12311. "hydrate",
  12312. "instantiate",
  12313. "lazy-loading",
  12314. "proxy",
  12315. "serialize"
  12316. ],
  12317. "support": {
  12318. "source": "https://github.com/symfony/var-exporter/tree/v6.3.6"
  12319. },
  12320. "funding": [
  12321. {
  12322. "url": "https://symfony.com/sponsor",
  12323. "type": "custom"
  12324. },
  12325. {
  12326. "url": "https://github.com/fabpot",
  12327. "type": "github"
  12328. },
  12329. {
  12330. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12331. "type": "tidelift"
  12332. }
  12333. ],
  12334. "time": "2023-10-13T09:16:49+00:00"
  12335. },
  12336. {
  12337. "name": "symfony/yaml",
  12338. "version": "v6.3.8",
  12339. "source": {
  12340. "type": "git",
  12341. "url": "https://github.com/symfony/yaml.git",
  12342. "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92"
  12343. },
  12344. "dist": {
  12345. "type": "zip",
  12346. "url": "https://api.github.com/repos/symfony/yaml/zipball/3493af8a8dad7fa91c77fa473ba23ecd95334a92",
  12347. "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92",
  12348. "shasum": ""
  12349. },
  12350. "require": {
  12351. "php": ">=8.1",
  12352. "symfony/deprecation-contracts": "^2.5|^3",
  12353. "symfony/polyfill-ctype": "^1.8"
  12354. },
  12355. "conflict": {
  12356. "symfony/console": "<5.4"
  12357. },
  12358. "require-dev": {
  12359. "symfony/console": "^5.4|^6.0"
  12360. },
  12361. "bin": [
  12362. "Resources/bin/yaml-lint"
  12363. ],
  12364. "type": "library",
  12365. "autoload": {
  12366. "psr-4": {
  12367. "Symfony\\Component\\Yaml\\": ""
  12368. },
  12369. "exclude-from-classmap": [
  12370. "/Tests/"
  12371. ]
  12372. },
  12373. "notification-url": "https://packagist.org/downloads/",
  12374. "license": [
  12375. "MIT"
  12376. ],
  12377. "authors": [
  12378. {
  12379. "name": "Fabien Potencier",
  12380. "email": "fabien@symfony.com"
  12381. },
  12382. {
  12383. "name": "Symfony Community",
  12384. "homepage": "https://symfony.com/contributors"
  12385. }
  12386. ],
  12387. "description": "Loads and dumps YAML files",
  12388. "homepage": "https://symfony.com",
  12389. "support": {
  12390. "source": "https://github.com/symfony/yaml/tree/v6.3.8"
  12391. },
  12392. "funding": [
  12393. {
  12394. "url": "https://symfony.com/sponsor",
  12395. "type": "custom"
  12396. },
  12397. {
  12398. "url": "https://github.com/fabpot",
  12399. "type": "github"
  12400. },
  12401. {
  12402. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12403. "type": "tidelift"
  12404. }
  12405. ],
  12406. "time": "2023-11-06T10:58:05+00:00"
  12407. },
  12408. {
  12409. "name": "twig/twig",
  12410. "version": "v3.6.1",
  12411. "source": {
  12412. "type": "git",
  12413. "url": "https://github.com/twigphp/Twig.git",
  12414. "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd"
  12415. },
  12416. "dist": {
  12417. "type": "zip",
  12418. "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd",
  12419. "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd",
  12420. "shasum": ""
  12421. },
  12422. "require": {
  12423. "php": ">=7.2.5",
  12424. "symfony/polyfill-ctype": "^1.8",
  12425. "symfony/polyfill-mbstring": "^1.3"
  12426. },
  12427. "require-dev": {
  12428. "psr/container": "^1.0|^2.0",
  12429. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  12430. },
  12431. "type": "library",
  12432. "autoload": {
  12433. "psr-4": {
  12434. "Twig\\": "src/"
  12435. }
  12436. },
  12437. "notification-url": "https://packagist.org/downloads/",
  12438. "license": [
  12439. "BSD-3-Clause"
  12440. ],
  12441. "authors": [
  12442. {
  12443. "name": "Fabien Potencier",
  12444. "email": "fabien@symfony.com",
  12445. "homepage": "http://fabien.potencier.org",
  12446. "role": "Lead Developer"
  12447. },
  12448. {
  12449. "name": "Twig Team",
  12450. "role": "Contributors"
  12451. },
  12452. {
  12453. "name": "Armin Ronacher",
  12454. "email": "armin.ronacher@active-4.com",
  12455. "role": "Project Founder"
  12456. }
  12457. ],
  12458. "description": "Twig, the flexible, fast, and secure template language for PHP",
  12459. "homepage": "https://twig.symfony.com",
  12460. "keywords": [
  12461. "templating"
  12462. ],
  12463. "support": {
  12464. "issues": "https://github.com/twigphp/Twig/issues",
  12465. "source": "https://github.com/twigphp/Twig/tree/v3.6.1"
  12466. },
  12467. "funding": [
  12468. {
  12469. "url": "https://github.com/fabpot",
  12470. "type": "github"
  12471. },
  12472. {
  12473. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  12474. "type": "tidelift"
  12475. }
  12476. ],
  12477. "time": "2023-06-08T12:52:13+00:00"
  12478. },
  12479. {
  12480. "name": "webflo/drupal-finder",
  12481. "version": "1.2.2",
  12482. "source": {
  12483. "type": "git",
  12484. "url": "https://github.com/webflo/drupal-finder.git",
  12485. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  12486. },
  12487. "dist": {
  12488. "type": "zip",
  12489. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12490. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12491. "shasum": ""
  12492. },
  12493. "require": {
  12494. "ext-json": "*"
  12495. },
  12496. "require-dev": {
  12497. "mikey179/vfsstream": "^1.6",
  12498. "phpunit/phpunit": "^4.8"
  12499. },
  12500. "type": "library",
  12501. "autoload": {
  12502. "classmap": [
  12503. "src/DrupalFinder.php"
  12504. ]
  12505. },
  12506. "notification-url": "https://packagist.org/downloads/",
  12507. "license": [
  12508. "GPL-2.0-or-later"
  12509. ],
  12510. "authors": [
  12511. {
  12512. "name": "Florian Weber",
  12513. "email": "florian@webflo.org"
  12514. }
  12515. ],
  12516. "description": "Helper class to locate a Drupal installation from a given path.",
  12517. "support": {
  12518. "issues": "https://github.com/webflo/drupal-finder/issues",
  12519. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  12520. },
  12521. "time": "2020-10-27T09:42:17+00:00"
  12522. },
  12523. {
  12524. "name": "wikimedia/composer-merge-plugin",
  12525. "version": "v2.1.0",
  12526. "source": {
  12527. "type": "git",
  12528. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  12529. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc"
  12530. },
  12531. "dist": {
  12532. "type": "zip",
  12533. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  12534. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  12535. "shasum": ""
  12536. },
  12537. "require": {
  12538. "composer-plugin-api": "^1.1||^2.0",
  12539. "php": ">=7.2.0"
  12540. },
  12541. "require-dev": {
  12542. "composer/composer": "^1.1||^2.0",
  12543. "ext-json": "*",
  12544. "mediawiki/mediawiki-phan-config": "0.11.1",
  12545. "php-parallel-lint/php-parallel-lint": "~1.3.1",
  12546. "phpspec/prophecy": "~1.15.0",
  12547. "phpunit/phpunit": "^8.5||^9.0",
  12548. "squizlabs/php_codesniffer": "~3.7.1"
  12549. },
  12550. "type": "composer-plugin",
  12551. "extra": {
  12552. "branch-alias": {
  12553. "dev-master": "2.x-dev"
  12554. },
  12555. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  12556. },
  12557. "autoload": {
  12558. "psr-4": {
  12559. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  12560. }
  12561. },
  12562. "notification-url": "https://packagist.org/downloads/",
  12563. "license": [
  12564. "MIT"
  12565. ],
  12566. "authors": [
  12567. {
  12568. "name": "Bryan Davis",
  12569. "email": "bd808@wikimedia.org"
  12570. }
  12571. ],
  12572. "description": "Composer plugin to merge multiple composer.json files",
  12573. "support": {
  12574. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  12575. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0"
  12576. },
  12577. "time": "2023-04-15T19:07:00+00:00"
  12578. }
  12579. ],
  12580. "packages-dev": [],
  12581. "aliases": [],
  12582. "minimum-stability": "stable",
  12583. "stability-flags": {
  12584. "drupal/login_destination": 20,
  12585. "drupal/page_manager": 5,
  12586. "drupal/phone_number": 15,
  12587. "drupal/rules": 15,
  12588. "drupal/typed_data": 10,
  12589. "drupal/advanced_text_formatter": 5,
  12590. "drupal/bulkdelete": 20,
  12591. "drupal/config_ignore": 5,
  12592. "drupal/config_devel": 20,
  12593. "drupal/config_update": 15,
  12594. "drupal/context": 5,
  12595. "drupal/date_range_formatter": 20,
  12596. "drupal/email_registration": 5,
  12597. "drupal/entity_clone": 20,
  12598. "drupal/field_group": 20,
  12599. "drupal/filter_perms": 20,
  12600. "drupal/inline_entity_form": 5,
  12601. "drupal/linkit": 10,
  12602. "drupal/maillog": 20,
  12603. "drupal/maxlength": 10,
  12604. "drupal/menu_block": 20,
  12605. "drupal/menu_position": 20,
  12606. "drupal/path_alias_xt": 20,
  12607. "drupal/pathologic": 15,
  12608. "drupal/profile": 5,
  12609. "drupal/smtp": 10,
  12610. "drupal/synonyms": 10,
  12611. "drupal/translation_views": 15,
  12612. "drupal/ultimate_cron": 15
  12613. },
  12614. "prefer-stable": true,
  12615. "prefer-lowest": false,
  12616. "platform": [],
  12617. "platform-dev": [],
  12618. "plugin-api-version": "2.6.0"
  12619. }