composer.lock 451 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795107961079710798107991080010801108021080310804108051080610807108081080910810108111081210813108141081510816108171081810819108201082110822108231082410825108261082710828108291083010831108321083310834108351083610837108381083910840108411084210843108441084510846108471084810849108501085110852108531085410855108561085710858108591086010861108621086310864108651086610867108681086910870108711087210873108741087510876108771087810879108801088110882108831088410885108861088710888108891089010891108921089310894108951089610897108981089910900109011090210903109041090510906109071090810909109101091110912109131091410915109161091710918109191092010921109221092310924109251092610927109281092910930109311093210933109341093510936109371093810939109401094110942109431094410945109461094710948109491095010951109521095310954109551095610957109581095910960109611096210963109641096510966109671096810969109701097110972109731097410975109761097710978109791098010981109821098310984109851098610987109881098910990109911099210993109941099510996109971099810999110001100111002110031100411005110061100711008110091101011011110121101311014110151101611017110181101911020110211102211023110241102511026110271102811029110301103111032110331103411035110361103711038110391104011041110421104311044110451104611047110481104911050110511105211053110541105511056110571105811059110601106111062110631106411065110661106711068110691107011071110721107311074110751107611077110781107911080110811108211083110841108511086110871108811089110901109111092110931109411095110961109711098110991110011101111021110311104111051110611107111081110911110111111111211113111141111511116111171111811119111201112111122111231112411125111261112711128111291113011131111321113311134111351113611137111381113911140111411114211143111441114511146111471114811149111501115111152111531115411155111561115711158111591116011161111621116311164111651116611167111681116911170111711117211173111741117511176111771117811179111801118111182111831118411185111861118711188111891119011191111921119311194111951119611197111981119911200112011120211203112041120511206112071120811209112101121111212112131121411215112161121711218112191122011221112221122311224112251122611227112281122911230112311123211233112341123511236112371123811239112401124111242112431124411245112461124711248112491125011251112521125311254112551125611257112581125911260112611126211263112641126511266112671126811269112701127111272112731127411275112761127711278112791128011281112821128311284112851128611287112881128911290112911129211293112941129511296112971129811299113001130111302113031130411305113061130711308113091131011311113121131311314113151131611317113181131911320113211132211323113241132511326113271132811329113301133111332113331133411335113361133711338113391134011341113421134311344113451134611347113481134911350113511135211353113541135511356113571135811359113601136111362113631136411365113661136711368113691137011371113721137311374113751137611377113781137911380113811138211383113841138511386113871138811389113901139111392113931139411395113961139711398113991140011401114021140311404114051140611407114081140911410114111141211413114141141511416114171141811419114201142111422114231142411425114261142711428114291143011431114321143311434114351143611437114381143911440114411144211443114441144511446114471144811449114501145111452114531145411455114561145711458114591146011461114621146311464114651146611467114681146911470114711147211473114741147511476114771147811479114801148111482114831148411485114861148711488114891149011491114921149311494114951149611497114981149911500115011150211503115041150511506115071150811509115101151111512115131151411515115161151711518115191152011521115221152311524115251152611527115281152911530115311153211533115341153511536115371153811539115401154111542115431154411545115461154711548115491155011551115521155311554115551155611557115581155911560115611156211563115641156511566115671156811569115701157111572115731157411575115761157711578115791158011581115821158311584115851158611587115881158911590115911159211593115941159511596115971159811599116001160111602116031160411605116061160711608116091161011611116121161311614116151161611617116181161911620116211162211623116241162511626116271162811629116301163111632116331163411635116361163711638116391164011641116421164311644116451164611647116481164911650116511165211653116541165511656116571165811659116601166111662116631166411665116661166711668116691167011671116721167311674116751167611677116781167911680116811168211683116841168511686116871168811689116901169111692116931169411695116961169711698116991170011701117021170311704117051170611707117081170911710117111171211713117141171511716117171171811719117201172111722117231172411725117261172711728117291173011731117321173311734117351173611737117381173911740117411174211743117441174511746117471174811749117501175111752117531175411755117561175711758117591176011761117621176311764117651176611767117681176911770117711177211773117741177511776117771177811779117801178111782117831178411785117861178711788117891179011791117921179311794117951179611797117981179911800118011180211803118041180511806118071180811809118101181111812118131181411815118161181711818118191182011821118221182311824118251182611827118281182911830118311183211833118341183511836118371183811839118401184111842118431184411845118461184711848118491185011851118521185311854118551185611857118581185911860118611186211863118641186511866118671186811869118701187111872118731187411875118761187711878118791188011881118821188311884118851188611887118881188911890118911189211893118941189511896118971189811899119001190111902119031190411905119061190711908119091191011911119121191311914119151191611917119181191911920119211192211923119241192511926119271192811929119301193111932119331193411935119361193711938119391194011941119421194311944119451194611947119481194911950119511195211953119541195511956119571195811959119601196111962119631196411965119661196711968119691197011971119721197311974119751197611977119781197911980119811198211983119841198511986119871198811989119901199111992119931199411995119961199711998119991200012001120021200312004120051200612007120081200912010120111201212013120141201512016120171201812019120201202112022120231202412025120261202712028120291203012031120321203312034120351203612037120381203912040120411204212043120441204512046120471204812049120501205112052120531205412055120561205712058120591206012061120621206312064120651206612067120681206912070120711207212073120741207512076120771207812079120801208112082120831208412085120861208712088120891209012091120921209312094120951209612097120981209912100121011210212103121041210512106121071210812109121101211112112121131211412115121161211712118121191212012121121221212312124121251212612127121281212912130121311213212133121341213512136121371213812139121401214112142121431214412145121461214712148121491215012151121521215312154121551215612157121581215912160121611216212163121641216512166121671216812169121701217112172121731217412175121761217712178121791218012181121821218312184121851218612187121881218912190121911219212193121941219512196121971219812199122001220112202122031220412205122061220712208122091221012211122121221312214122151221612217122181221912220122211222212223122241222512226122271222812229122301223112232122331223412235122361223712238122391224012241122421224312244122451224612247122481224912250122511225212253122541225512256122571225812259122601226112262122631226412265122661226712268122691227012271122721227312274122751227612277122781227912280122811228212283122841228512286122871228812289122901229112292122931229412295122961229712298122991230012301123021230312304123051230612307123081230912310123111231212313123141231512316123171231812319123201232112322123231232412325123261232712328123291233012331123321233312334123351233612337123381233912340123411234212343123441234512346
  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": "da66dc5565e7553b45e62f2a3453d6c4",
  8. "packages": [
  9. {
  10. "name": "asm89/stack-cors",
  11. "version": "v2.1.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/asm89/stack-cors.git",
  15. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/asm89/stack-cors/zipball/73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  20. "reference": "73e5b88775c64ccc0b84fb60836b30dc9d92ac4a",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^7.2|^8.0",
  25. "symfony/http-foundation": "^4|^5|^6",
  26. "symfony/http-kernel": "^4|^5|^6"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^7|^9",
  30. "squizlabs/php_codesniffer": "^3.5"
  31. },
  32. "type": "library",
  33. "extra": {
  34. "branch-alias": {
  35. "dev-master": "2.1-dev"
  36. }
  37. },
  38. "autoload": {
  39. "psr-4": {
  40. "Asm89\\Stack\\": "src/"
  41. }
  42. },
  43. "notification-url": "https://packagist.org/downloads/",
  44. "license": [
  45. "MIT"
  46. ],
  47. "authors": [
  48. {
  49. "name": "Alexander",
  50. "email": "iam.asm89@gmail.com"
  51. }
  52. ],
  53. "description": "Cross-origin resource sharing library and stack middleware",
  54. "homepage": "https://github.com/asm89/stack-cors",
  55. "keywords": [
  56. "cors",
  57. "stack"
  58. ],
  59. "support": {
  60. "issues": "https://github.com/asm89/stack-cors/issues",
  61. "source": "https://github.com/asm89/stack-cors/tree/v2.1.1"
  62. },
  63. "time": "2022-01-18T09:12:03+00:00"
  64. },
  65. {
  66. "name": "chi-teck/drupal-code-generator",
  67. "version": "2.6.2",
  68. "source": {
  69. "type": "git",
  70. "url": "https://github.com/Chi-teck/drupal-code-generator.git",
  71. "reference": "22ed1cc02dc47814e8239de577da541e9b9bd980"
  72. },
  73. "dist": {
  74. "type": "zip",
  75. "url": "https://api.github.com/repos/Chi-teck/drupal-code-generator/zipball/22ed1cc02dc47814e8239de577da541e9b9bd980",
  76. "reference": "22ed1cc02dc47814e8239de577da541e9b9bd980",
  77. "shasum": ""
  78. },
  79. "require": {
  80. "ext-json": "*",
  81. "php": ">=7.4",
  82. "psr/log": "^1.1 || ^2.0 || ^3.0",
  83. "symfony/console": "^4.4.15 || ^5.1 || ^6.0",
  84. "symfony/filesystem": "^4.4 || ^5.1 || ^6",
  85. "symfony/polyfill-php80": "^1.23",
  86. "symfony/string": "^5.1 || ^6",
  87. "twig/twig": "^2.14.11 || ^3.1"
  88. },
  89. "conflict": {
  90. "squizlabs/php_codesniffer": "<3.6"
  91. },
  92. "require-dev": {
  93. "chi-teck/drupal-coder-extension": "^1.2",
  94. "drupal/coder": "^8.3.14",
  95. "phpspec/prophecy-phpunit": "^2.0",
  96. "phpunit/phpunit": "^9.4",
  97. "squizlabs/php_codesniffer": "^3.5",
  98. "symfony/var-dumper": "^5.2 || ^6.0",
  99. "symfony/yaml": "^5.2 || ^6.0"
  100. },
  101. "bin": [
  102. "bin/dcg"
  103. ],
  104. "type": "library",
  105. "extra": {
  106. "branch-alias": {
  107. "dev-master": "2.x-dev"
  108. }
  109. },
  110. "autoload": {
  111. "psr-4": {
  112. "DrupalCodeGenerator\\": "src"
  113. }
  114. },
  115. "notification-url": "https://packagist.org/downloads/",
  116. "license": [
  117. "GPL-2.0-or-later"
  118. ],
  119. "description": "Drupal code generator",
  120. "support": {
  121. "issues": "https://github.com/Chi-teck/drupal-code-generator/issues",
  122. "source": "https://github.com/Chi-teck/drupal-code-generator/tree/2.6.2"
  123. },
  124. "time": "2022-11-11T15:34:04+00:00"
  125. },
  126. {
  127. "name": "commerceguys/addressing",
  128. "version": "v1.4.2",
  129. "source": {
  130. "type": "git",
  131. "url": "https://github.com/commerceguys/addressing.git",
  132. "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308"
  133. },
  134. "dist": {
  135. "type": "zip",
  136. "url": "https://api.github.com/repos/commerceguys/addressing/zipball/406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
  137. "reference": "406c7b5f0fbe4f6a64155c0fe03b1adb34d01308",
  138. "shasum": ""
  139. },
  140. "require": {
  141. "doctrine/collections": "^1.2 || ^2.0",
  142. "php": ">=7.3"
  143. },
  144. "require-dev": {
  145. "ext-json": "*",
  146. "mikey179/vfsstream": "^1.6.10",
  147. "phpunit/phpunit": "^9.5",
  148. "squizlabs/php_codesniffer": "^3.6",
  149. "symfony/validator": "^4.4 || ^5.4 || ^6.0"
  150. },
  151. "suggest": {
  152. "symfony/validator": "to validate addresses"
  153. },
  154. "type": "library",
  155. "extra": {
  156. "branch-alias": {
  157. "dev-master": "1.x-dev"
  158. }
  159. },
  160. "autoload": {
  161. "psr-4": {
  162. "CommerceGuys\\Addressing\\": "src"
  163. }
  164. },
  165. "notification-url": "https://packagist.org/downloads/",
  166. "license": [
  167. "MIT"
  168. ],
  169. "authors": [
  170. {
  171. "name": "Bojan Zivanovic"
  172. },
  173. {
  174. "name": "Damien Tournoud"
  175. }
  176. ],
  177. "description": "Addressing library powered by CLDR and Google's address data.",
  178. "keywords": [
  179. "address",
  180. "internationalization",
  181. "localization",
  182. "postal"
  183. ],
  184. "support": {
  185. "issues": "https://github.com/commerceguys/addressing/issues",
  186. "source": "https://github.com/commerceguys/addressing/tree/v1.4.2"
  187. },
  188. "time": "2023-02-15T10:11:14+00:00"
  189. },
  190. {
  191. "name": "components/highlightjs",
  192. "version": "9.7.0",
  193. "dist": {
  194. "type": "zip",
  195. "url": "https://github.com/components/highlightjs/archive/9.7.0.zip"
  196. },
  197. "type": "drupal-library"
  198. },
  199. {
  200. "name": "composer/installers",
  201. "version": "v2.2.0",
  202. "source": {
  203. "type": "git",
  204. "url": "https://github.com/composer/installers.git",
  205. "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35"
  206. },
  207. "dist": {
  208. "type": "zip",
  209. "url": "https://api.github.com/repos/composer/installers/zipball/c29dc4b93137acb82734f672c37e029dfbd95b35",
  210. "reference": "c29dc4b93137acb82734f672c37e029dfbd95b35",
  211. "shasum": ""
  212. },
  213. "require": {
  214. "composer-plugin-api": "^1.0 || ^2.0",
  215. "php": "^7.2 || ^8.0"
  216. },
  217. "require-dev": {
  218. "composer/composer": "1.6.* || ^2.0",
  219. "composer/semver": "^1 || ^3",
  220. "phpstan/phpstan": "^0.12.55",
  221. "phpstan/phpstan-phpunit": "^0.12.16",
  222. "symfony/phpunit-bridge": "^5.3",
  223. "symfony/process": "^5"
  224. },
  225. "type": "composer-plugin",
  226. "extra": {
  227. "class": "Composer\\Installers\\Plugin",
  228. "branch-alias": {
  229. "dev-main": "2.x-dev"
  230. },
  231. "plugin-modifies-install-path": true
  232. },
  233. "autoload": {
  234. "psr-4": {
  235. "Composer\\Installers\\": "src/Composer/Installers"
  236. }
  237. },
  238. "notification-url": "https://packagist.org/downloads/",
  239. "license": [
  240. "MIT"
  241. ],
  242. "authors": [
  243. {
  244. "name": "Kyle Robinson Young",
  245. "email": "kyle@dontkry.com",
  246. "homepage": "https://github.com/shama"
  247. }
  248. ],
  249. "description": "A multi-framework Composer library installer",
  250. "homepage": "https://composer.github.io/installers/",
  251. "keywords": [
  252. "Dolibarr",
  253. "Eliasis",
  254. "Hurad",
  255. "ImageCMS",
  256. "Kanboard",
  257. "Lan Management System",
  258. "MODX Evo",
  259. "MantisBT",
  260. "Mautic",
  261. "Maya",
  262. "OXID",
  263. "Plentymarkets",
  264. "Porto",
  265. "RadPHP",
  266. "SMF",
  267. "Starbug",
  268. "Thelia",
  269. "Whmcs",
  270. "WolfCMS",
  271. "agl",
  272. "annotatecms",
  273. "attogram",
  274. "bitrix",
  275. "cakephp",
  276. "chef",
  277. "cockpit",
  278. "codeigniter",
  279. "concrete5",
  280. "croogo",
  281. "dokuwiki",
  282. "drupal",
  283. "eZ Platform",
  284. "elgg",
  285. "expressionengine",
  286. "fuelphp",
  287. "grav",
  288. "installer",
  289. "itop",
  290. "known",
  291. "kohana",
  292. "laravel",
  293. "lavalite",
  294. "lithium",
  295. "magento",
  296. "majima",
  297. "mako",
  298. "matomo",
  299. "mediawiki",
  300. "miaoxing",
  301. "modulework",
  302. "modx",
  303. "moodle",
  304. "osclass",
  305. "pantheon",
  306. "phpbb",
  307. "piwik",
  308. "ppi",
  309. "processwire",
  310. "puppet",
  311. "pxcms",
  312. "reindex",
  313. "roundcube",
  314. "shopware",
  315. "silverstripe",
  316. "sydes",
  317. "sylius",
  318. "tastyigniter",
  319. "wordpress",
  320. "yawik",
  321. "zend",
  322. "zikula"
  323. ],
  324. "support": {
  325. "issues": "https://github.com/composer/installers/issues",
  326. "source": "https://github.com/composer/installers/tree/v2.2.0"
  327. },
  328. "funding": [
  329. {
  330. "url": "https://packagist.com",
  331. "type": "custom"
  332. },
  333. {
  334. "url": "https://github.com/composer",
  335. "type": "github"
  336. },
  337. {
  338. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  339. "type": "tidelift"
  340. }
  341. ],
  342. "time": "2022-08-20T06:45:11+00:00"
  343. },
  344. {
  345. "name": "composer/semver",
  346. "version": "3.3.2",
  347. "source": {
  348. "type": "git",
  349. "url": "https://github.com/composer/semver.git",
  350. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  351. },
  352. "dist": {
  353. "type": "zip",
  354. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  355. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  356. "shasum": ""
  357. },
  358. "require": {
  359. "php": "^5.3.2 || ^7.0 || ^8.0"
  360. },
  361. "require-dev": {
  362. "phpstan/phpstan": "^1.4",
  363. "symfony/phpunit-bridge": "^4.2 || ^5"
  364. },
  365. "type": "library",
  366. "extra": {
  367. "branch-alias": {
  368. "dev-main": "3.x-dev"
  369. }
  370. },
  371. "autoload": {
  372. "psr-4": {
  373. "Composer\\Semver\\": "src"
  374. }
  375. },
  376. "notification-url": "https://packagist.org/downloads/",
  377. "license": [
  378. "MIT"
  379. ],
  380. "authors": [
  381. {
  382. "name": "Nils Adermann",
  383. "email": "naderman@naderman.de",
  384. "homepage": "http://www.naderman.de"
  385. },
  386. {
  387. "name": "Jordi Boggiano",
  388. "email": "j.boggiano@seld.be",
  389. "homepage": "http://seld.be"
  390. },
  391. {
  392. "name": "Rob Bast",
  393. "email": "rob.bast@gmail.com",
  394. "homepage": "http://robbast.nl"
  395. }
  396. ],
  397. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  398. "keywords": [
  399. "semantic",
  400. "semver",
  401. "validation",
  402. "versioning"
  403. ],
  404. "support": {
  405. "irc": "irc://irc.freenode.org/composer",
  406. "issues": "https://github.com/composer/semver/issues",
  407. "source": "https://github.com/composer/semver/tree/3.3.2"
  408. },
  409. "funding": [
  410. {
  411. "url": "https://packagist.com",
  412. "type": "custom"
  413. },
  414. {
  415. "url": "https://github.com/composer",
  416. "type": "github"
  417. },
  418. {
  419. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  420. "type": "tidelift"
  421. }
  422. ],
  423. "time": "2022-04-01T19:23:25+00:00"
  424. },
  425. {
  426. "name": "consolidation/annotated-command",
  427. "version": "4.9.1",
  428. "source": {
  429. "type": "git",
  430. "url": "https://github.com/consolidation/annotated-command.git",
  431. "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9"
  432. },
  433. "dist": {
  434. "type": "zip",
  435. "url": "https://api.github.com/repos/consolidation/annotated-command/zipball/e01152f698eff4cb5df3ebfe5e097ef335dbd3c9",
  436. "reference": "e01152f698eff4cb5df3ebfe5e097ef335dbd3c9",
  437. "shasum": ""
  438. },
  439. "require": {
  440. "consolidation/output-formatters": "^4.3.1",
  441. "php": ">=7.1.3",
  442. "psr/log": "^1 || ^2 || ^3",
  443. "symfony/console": "^4.4.8 || ^5 || ^6",
  444. "symfony/event-dispatcher": "^4.4.8 || ^5 || ^6",
  445. "symfony/finder": "^4.4.8 || ^5 || ^6"
  446. },
  447. "require-dev": {
  448. "composer-runtime-api": "^2.0",
  449. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  450. "squizlabs/php_codesniffer": "^3",
  451. "yoast/phpunit-polyfills": "^0.2.0"
  452. },
  453. "type": "library",
  454. "extra": {
  455. "branch-alias": {
  456. "dev-main": "4.x-dev"
  457. }
  458. },
  459. "autoload": {
  460. "psr-4": {
  461. "Consolidation\\AnnotatedCommand\\": "src"
  462. }
  463. },
  464. "notification-url": "https://packagist.org/downloads/",
  465. "license": [
  466. "MIT"
  467. ],
  468. "authors": [
  469. {
  470. "name": "Greg Anderson",
  471. "email": "greg.1.anderson@greenknowe.org"
  472. }
  473. ],
  474. "description": "Initialize Symfony Console commands from annotated command class methods.",
  475. "support": {
  476. "issues": "https://github.com/consolidation/annotated-command/issues",
  477. "source": "https://github.com/consolidation/annotated-command/tree/4.9.1"
  478. },
  479. "time": "2023-05-20T04:19:01+00:00"
  480. },
  481. {
  482. "name": "consolidation/config",
  483. "version": "2.1.2",
  484. "source": {
  485. "type": "git",
  486. "url": "https://github.com/consolidation/config.git",
  487. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae"
  488. },
  489. "dist": {
  490. "type": "zip",
  491. "url": "https://api.github.com/repos/consolidation/config/zipball/597f8d7fbeef801736250ec10c3e190569b1b0ae",
  492. "reference": "597f8d7fbeef801736250ec10c3e190569b1b0ae",
  493. "shasum": ""
  494. },
  495. "require": {
  496. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  497. "grasmash/expander": "^2.0.1 || ^3",
  498. "php": ">=7.1.3",
  499. "symfony/event-dispatcher": "^4 || ^5 || ^6"
  500. },
  501. "require-dev": {
  502. "ext-json": "*",
  503. "phpunit/phpunit": ">=7.5.20",
  504. "squizlabs/php_codesniffer": "^3",
  505. "symfony/console": "^4 || ^5 || ^6",
  506. "symfony/yaml": "^4 || ^5 || ^6",
  507. "yoast/phpunit-polyfills": "^1"
  508. },
  509. "suggest": {
  510. "symfony/event-dispatcher": "Required to inject configuration into Command options",
  511. "symfony/yaml": "Required to use Consolidation\\Config\\Loader\\YamlConfigLoader"
  512. },
  513. "type": "library",
  514. "extra": {
  515. "branch-alias": {
  516. "dev-main": "2.x-dev"
  517. }
  518. },
  519. "autoload": {
  520. "psr-4": {
  521. "Consolidation\\Config\\": "src"
  522. }
  523. },
  524. "notification-url": "https://packagist.org/downloads/",
  525. "license": [
  526. "MIT"
  527. ],
  528. "authors": [
  529. {
  530. "name": "Greg Anderson",
  531. "email": "greg.1.anderson@greenknowe.org"
  532. }
  533. ],
  534. "description": "Provide configuration services for a commandline tool.",
  535. "support": {
  536. "issues": "https://github.com/consolidation/config/issues",
  537. "source": "https://github.com/consolidation/config/tree/2.1.2"
  538. },
  539. "time": "2022-10-06T17:48:03+00:00"
  540. },
  541. {
  542. "name": "consolidation/filter-via-dot-access-data",
  543. "version": "2.0.2",
  544. "source": {
  545. "type": "git",
  546. "url": "https://github.com/consolidation/filter-via-dot-access-data.git",
  547. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b"
  548. },
  549. "dist": {
  550. "type": "zip",
  551. "url": "https://api.github.com/repos/consolidation/filter-via-dot-access-data/zipball/cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  552. "reference": "cb2eeba41f8e2e3c61698a5cf70ef048ff6c9d5b",
  553. "shasum": ""
  554. },
  555. "require": {
  556. "dflydev/dot-access-data": "^1.1.0 || ^2.0.0 || ^3.0.0",
  557. "php": ">=7.1.3"
  558. },
  559. "require-dev": {
  560. "phpunit/phpunit": "^7.5.20 || ^8 || ^9",
  561. "squizlabs/php_codesniffer": "^3",
  562. "yoast/phpunit-polyfills": "^0.2.0"
  563. },
  564. "type": "library",
  565. "extra": {
  566. "branch-alias": {
  567. "dev-main": "2.x-dev"
  568. }
  569. },
  570. "autoload": {
  571. "psr-4": {
  572. "Consolidation\\Filter\\": "src"
  573. }
  574. },
  575. "notification-url": "https://packagist.org/downloads/",
  576. "license": [
  577. "MIT"
  578. ],
  579. "authors": [
  580. {
  581. "name": "Greg Anderson",
  582. "email": "greg.1.anderson@greenknowe.org"
  583. }
  584. ],
  585. "description": "This project uses dflydev/dot-access-data to provide simple output filtering for applications built with annotated-command / Robo.",
  586. "support": {
  587. "source": "https://github.com/consolidation/filter-via-dot-access-data/tree/2.0.2"
  588. },
  589. "time": "2021-12-30T03:56:08+00:00"
  590. },
  591. {
  592. "name": "consolidation/log",
  593. "version": "3.0.0",
  594. "source": {
  595. "type": "git",
  596. "url": "https://github.com/consolidation/log.git",
  597. "reference": "caaad9d70dae54eb49002666f000e3c607066878"
  598. },
  599. "dist": {
  600. "type": "zip",
  601. "url": "https://api.github.com/repos/consolidation/log/zipball/caaad9d70dae54eb49002666f000e3c607066878",
  602. "reference": "caaad9d70dae54eb49002666f000e3c607066878",
  603. "shasum": ""
  604. },
  605. "require": {
  606. "php": ">=8.0.0",
  607. "psr/log": "^3",
  608. "symfony/console": "^5 || ^6"
  609. },
  610. "require-dev": {
  611. "phpunit/phpunit": ">=7.5.20",
  612. "squizlabs/php_codesniffer": "^3",
  613. "yoast/phpunit-polyfills": "^0.2.0"
  614. },
  615. "type": "library",
  616. "extra": {
  617. "branch-alias": {
  618. "dev-main": "2.x-dev"
  619. }
  620. },
  621. "autoload": {
  622. "psr-4": {
  623. "Consolidation\\Log\\": "src"
  624. }
  625. },
  626. "notification-url": "https://packagist.org/downloads/",
  627. "license": [
  628. "MIT"
  629. ],
  630. "authors": [
  631. {
  632. "name": "Greg Anderson",
  633. "email": "greg.1.anderson@greenknowe.org"
  634. }
  635. ],
  636. "description": "Improved Psr-3 / Psr\\Log logger based on Symfony Console components.",
  637. "support": {
  638. "issues": "https://github.com/consolidation/log/issues",
  639. "source": "https://github.com/consolidation/log/tree/3.0.0"
  640. },
  641. "time": "2022-04-05T16:53:32+00:00"
  642. },
  643. {
  644. "name": "consolidation/output-formatters",
  645. "version": "4.3.2",
  646. "source": {
  647. "type": "git",
  648. "url": "https://github.com/consolidation/output-formatters.git",
  649. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58"
  650. },
  651. "dist": {
  652. "type": "zip",
  653. "url": "https://api.github.com/repos/consolidation/output-formatters/zipball/06711568b4cd169700ff7e8075db0a9a341ceb58",
  654. "reference": "06711568b4cd169700ff7e8075db0a9a341ceb58",
  655. "shasum": ""
  656. },
  657. "require": {
  658. "dflydev/dot-access-data": "^1.1.0 || ^2 || ^3",
  659. "php": ">=7.1.3",
  660. "symfony/console": "^4 || ^5 || ^6",
  661. "symfony/finder": "^4 || ^5 || ^6"
  662. },
  663. "require-dev": {
  664. "php-coveralls/php-coveralls": "^2.4.2",
  665. "phpunit/phpunit": "^7 || ^8 || ^9",
  666. "squizlabs/php_codesniffer": "^3",
  667. "symfony/var-dumper": "^4 || ^5 || ^6",
  668. "symfony/yaml": "^4 || ^5 || ^6",
  669. "yoast/phpunit-polyfills": "^1"
  670. },
  671. "suggest": {
  672. "symfony/var-dumper": "For using the var_dump formatter"
  673. },
  674. "type": "library",
  675. "autoload": {
  676. "psr-4": {
  677. "Consolidation\\OutputFormatters\\": "src"
  678. }
  679. },
  680. "notification-url": "https://packagist.org/downloads/",
  681. "license": [
  682. "MIT"
  683. ],
  684. "authors": [
  685. {
  686. "name": "Greg Anderson",
  687. "email": "greg.1.anderson@greenknowe.org"
  688. }
  689. ],
  690. "description": "Format text by applying transformations provided by plug-in formatters.",
  691. "support": {
  692. "issues": "https://github.com/consolidation/output-formatters/issues",
  693. "source": "https://github.com/consolidation/output-formatters/tree/4.3.2"
  694. },
  695. "time": "2023-07-06T04:45:41+00:00"
  696. },
  697. {
  698. "name": "consolidation/robo",
  699. "version": "4.0.6",
  700. "source": {
  701. "type": "git",
  702. "url": "https://github.com/consolidation/robo.git",
  703. "reference": "55a272370940607649e5c46eb173c5c54f7c166d"
  704. },
  705. "dist": {
  706. "type": "zip",
  707. "url": "https://api.github.com/repos/consolidation/robo/zipball/55a272370940607649e5c46eb173c5c54f7c166d",
  708. "reference": "55a272370940607649e5c46eb173c5c54f7c166d",
  709. "shasum": ""
  710. },
  711. "require": {
  712. "consolidation/annotated-command": "^4.8.1",
  713. "consolidation/config": "^2.0.1",
  714. "consolidation/log": "^2.0.2 || ^3",
  715. "consolidation/output-formatters": "^4.1.2",
  716. "consolidation/self-update": "^2.0",
  717. "league/container": "^3.3.1 || ^4.0",
  718. "php": ">=8.0",
  719. "phpowermove/docblock": "^4.0",
  720. "symfony/console": "^6",
  721. "symfony/event-dispatcher": "^6",
  722. "symfony/filesystem": "^6",
  723. "symfony/finder": "^6",
  724. "symfony/process": "^6",
  725. "symfony/yaml": "^6"
  726. },
  727. "conflict": {
  728. "codegyre/robo": "*"
  729. },
  730. "require-dev": {
  731. "natxet/cssmin": "3.0.4",
  732. "patchwork/jsqueeze": "^2",
  733. "pear/archive_tar": "^1.4.4",
  734. "phpunit/phpunit": "^7.5.20 || ^8",
  735. "squizlabs/php_codesniffer": "^3.6",
  736. "yoast/phpunit-polyfills": "^0.2.0"
  737. },
  738. "suggest": {
  739. "natxet/cssmin": "For minifying CSS files in taskMinify",
  740. "patchwork/jsqueeze": "For minifying JS files in taskMinify",
  741. "pear/archive_tar": "Allows tar archives to be created and extracted in taskPack and taskExtract, respectively.",
  742. "totten/lurkerlite": "For monitoring filesystem changes in taskWatch"
  743. },
  744. "bin": [
  745. "robo"
  746. ],
  747. "type": "library",
  748. "autoload": {
  749. "psr-4": {
  750. "Robo\\": "src"
  751. }
  752. },
  753. "notification-url": "https://packagist.org/downloads/",
  754. "license": [
  755. "MIT"
  756. ],
  757. "authors": [
  758. {
  759. "name": "Davert",
  760. "email": "davert.php@resend.cc"
  761. }
  762. ],
  763. "description": "Modern task runner",
  764. "support": {
  765. "issues": "https://github.com/consolidation/robo/issues",
  766. "source": "https://github.com/consolidation/robo/tree/4.0.6"
  767. },
  768. "time": "2023-04-30T21:49:04+00:00"
  769. },
  770. {
  771. "name": "consolidation/self-update",
  772. "version": "2.2.0",
  773. "source": {
  774. "type": "git",
  775. "url": "https://github.com/consolidation/self-update.git",
  776. "reference": "972a1016761c9b63314e040836a12795dff6953a"
  777. },
  778. "dist": {
  779. "type": "zip",
  780. "url": "https://api.github.com/repos/consolidation/self-update/zipball/972a1016761c9b63314e040836a12795dff6953a",
  781. "reference": "972a1016761c9b63314e040836a12795dff6953a",
  782. "shasum": ""
  783. },
  784. "require": {
  785. "composer/semver": "^3.2",
  786. "php": ">=5.5.0",
  787. "symfony/console": "^2.8 || ^3 || ^4 || ^5 || ^6",
  788. "symfony/filesystem": "^2.5 || ^3 || ^4 || ^5 || ^6"
  789. },
  790. "bin": [
  791. "scripts/release"
  792. ],
  793. "type": "library",
  794. "extra": {
  795. "branch-alias": {
  796. "dev-main": "2.x-dev"
  797. }
  798. },
  799. "autoload": {
  800. "psr-4": {
  801. "SelfUpdate\\": "src"
  802. }
  803. },
  804. "notification-url": "https://packagist.org/downloads/",
  805. "license": [
  806. "MIT"
  807. ],
  808. "authors": [
  809. {
  810. "name": "Alexander Menk",
  811. "email": "menk@mestrona.net"
  812. },
  813. {
  814. "name": "Greg Anderson",
  815. "email": "greg.1.anderson@greenknowe.org"
  816. }
  817. ],
  818. "description": "Provides a self:update command for Symfony Console applications.",
  819. "support": {
  820. "issues": "https://github.com/consolidation/self-update/issues",
  821. "source": "https://github.com/consolidation/self-update/tree/2.2.0"
  822. },
  823. "time": "2023-03-18T01:37:41+00:00"
  824. },
  825. {
  826. "name": "consolidation/site-alias",
  827. "version": "4.0.1",
  828. "source": {
  829. "type": "git",
  830. "url": "https://github.com/consolidation/site-alias.git",
  831. "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5"
  832. },
  833. "dist": {
  834. "type": "zip",
  835. "url": "https://api.github.com/repos/consolidation/site-alias/zipball/b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
  836. "reference": "b0eeb8c8f3d54d072824ee31b5e00cb5181f91c5",
  837. "shasum": ""
  838. },
  839. "require": {
  840. "consolidation/config": "^1.2.1 || ^2",
  841. "php": ">=7.4",
  842. "symfony/filesystem": "^5.4 || ^6",
  843. "symfony/finder": "^5 || ^6"
  844. },
  845. "require-dev": {
  846. "php-coveralls/php-coveralls": "^2.4.2",
  847. "phpunit/phpunit": ">=7",
  848. "squizlabs/php_codesniffer": "^3",
  849. "symfony/var-dumper": "^4",
  850. "yoast/phpunit-polyfills": "^0.2.0"
  851. },
  852. "type": "library",
  853. "extra": {
  854. "branch-alias": {
  855. "dev-main": "4.x-dev"
  856. }
  857. },
  858. "autoload": {
  859. "psr-4": {
  860. "Consolidation\\SiteAlias\\": "src"
  861. }
  862. },
  863. "notification-url": "https://packagist.org/downloads/",
  864. "license": [
  865. "MIT"
  866. ],
  867. "authors": [
  868. {
  869. "name": "Greg Anderson",
  870. "email": "greg.1.anderson@greenknowe.org"
  871. },
  872. {
  873. "name": "Moshe Weitzman",
  874. "email": "weitzman@tejasa.com"
  875. }
  876. ],
  877. "description": "Manage alias records for local and remote sites.",
  878. "support": {
  879. "issues": "https://github.com/consolidation/site-alias/issues",
  880. "source": "https://github.com/consolidation/site-alias/tree/4.0.1"
  881. },
  882. "time": "2023-04-29T17:18:10+00:00"
  883. },
  884. {
  885. "name": "consolidation/site-process",
  886. "version": "5.2.0",
  887. "source": {
  888. "type": "git",
  889. "url": "https://github.com/consolidation/site-process.git",
  890. "reference": "6c44638d7af8a8b4abe12c3180701243f480539d"
  891. },
  892. "dist": {
  893. "type": "zip",
  894. "url": "https://api.github.com/repos/consolidation/site-process/zipball/6c44638d7af8a8b4abe12c3180701243f480539d",
  895. "reference": "6c44638d7af8a8b4abe12c3180701243f480539d",
  896. "shasum": ""
  897. },
  898. "require": {
  899. "consolidation/config": "^2",
  900. "consolidation/site-alias": "^3 || ^4",
  901. "php": ">=8.0.14",
  902. "symfony/console": "^5.4 || ^6",
  903. "symfony/process": "^6"
  904. },
  905. "require-dev": {
  906. "phpunit/phpunit": "^9",
  907. "squizlabs/php_codesniffer": "^3"
  908. },
  909. "type": "library",
  910. "extra": {
  911. "branch-alias": {
  912. "dev-main": "5.x-dev"
  913. }
  914. },
  915. "autoload": {
  916. "psr-4": {
  917. "Consolidation\\SiteProcess\\": "src"
  918. }
  919. },
  920. "notification-url": "https://packagist.org/downloads/",
  921. "license": [
  922. "MIT"
  923. ],
  924. "authors": [
  925. {
  926. "name": "Greg Anderson",
  927. "email": "greg.1.anderson@greenknowe.org"
  928. },
  929. {
  930. "name": "Moshe Weitzman",
  931. "email": "weitzman@tejasa.com"
  932. }
  933. ],
  934. "description": "A thin wrapper around the Symfony Process Component that allows applications to use the Site Alias library to specify the target for a remote call.",
  935. "support": {
  936. "issues": "https://github.com/consolidation/site-process/issues",
  937. "source": "https://github.com/consolidation/site-process/tree/5.2.0"
  938. },
  939. "time": "2022-12-06T17:57:16+00:00"
  940. },
  941. {
  942. "name": "cweagans/composer-patches",
  943. "version": "1.7.3",
  944. "source": {
  945. "type": "git",
  946. "url": "https://github.com/cweagans/composer-patches.git",
  947. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db"
  948. },
  949. "dist": {
  950. "type": "zip",
  951. "url": "https://api.github.com/repos/cweagans/composer-patches/zipball/e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  952. "reference": "e190d4466fe2b103a55467dfa83fc2fecfcaf2db",
  953. "shasum": ""
  954. },
  955. "require": {
  956. "composer-plugin-api": "^1.0 || ^2.0",
  957. "php": ">=5.3.0"
  958. },
  959. "require-dev": {
  960. "composer/composer": "~1.0 || ~2.0",
  961. "phpunit/phpunit": "~4.6"
  962. },
  963. "type": "composer-plugin",
  964. "extra": {
  965. "class": "cweagans\\Composer\\Patches"
  966. },
  967. "autoload": {
  968. "psr-4": {
  969. "cweagans\\Composer\\": "src"
  970. }
  971. },
  972. "notification-url": "https://packagist.org/downloads/",
  973. "license": [
  974. "BSD-3-Clause"
  975. ],
  976. "authors": [
  977. {
  978. "name": "Cameron Eagans",
  979. "email": "me@cweagans.net"
  980. }
  981. ],
  982. "description": "Provides a way to patch Composer packages.",
  983. "support": {
  984. "issues": "https://github.com/cweagans/composer-patches/issues",
  985. "source": "https://github.com/cweagans/composer-patches/tree/1.7.3"
  986. },
  987. "time": "2022-12-20T22:53:13+00:00"
  988. },
  989. {
  990. "name": "d3/d3",
  991. "version": "v3.5.17",
  992. "dist": {
  993. "type": "zip",
  994. "url": "https://github.com/d3/d3/archive/v3.5.17.zip"
  995. },
  996. "type": "drupal-library"
  997. },
  998. {
  999. "name": "dflydev/dot-access-data",
  1000. "version": "v3.0.2",
  1001. "source": {
  1002. "type": "git",
  1003. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1004. "reference": "f41715465d65213d644d3141a6a93081be5d3549"
  1005. },
  1006. "dist": {
  1007. "type": "zip",
  1008. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/f41715465d65213d644d3141a6a93081be5d3549",
  1009. "reference": "f41715465d65213d644d3141a6a93081be5d3549",
  1010. "shasum": ""
  1011. },
  1012. "require": {
  1013. "php": "^7.1 || ^8.0"
  1014. },
  1015. "require-dev": {
  1016. "phpstan/phpstan": "^0.12.42",
  1017. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1018. "scrutinizer/ocular": "1.6.0",
  1019. "squizlabs/php_codesniffer": "^3.5",
  1020. "vimeo/psalm": "^4.0.0"
  1021. },
  1022. "type": "library",
  1023. "extra": {
  1024. "branch-alias": {
  1025. "dev-main": "3.x-dev"
  1026. }
  1027. },
  1028. "autoload": {
  1029. "psr-4": {
  1030. "Dflydev\\DotAccessData\\": "src/"
  1031. }
  1032. },
  1033. "notification-url": "https://packagist.org/downloads/",
  1034. "license": [
  1035. "MIT"
  1036. ],
  1037. "authors": [
  1038. {
  1039. "name": "Dragonfly Development Inc.",
  1040. "email": "info@dflydev.com",
  1041. "homepage": "http://dflydev.com"
  1042. },
  1043. {
  1044. "name": "Beau Simensen",
  1045. "email": "beau@dflydev.com",
  1046. "homepage": "http://beausimensen.com"
  1047. },
  1048. {
  1049. "name": "Carlos Frutos",
  1050. "email": "carlos@kiwing.it",
  1051. "homepage": "https://github.com/cfrutos"
  1052. },
  1053. {
  1054. "name": "Colin O'Dell",
  1055. "email": "colinodell@gmail.com",
  1056. "homepage": "https://www.colinodell.com"
  1057. }
  1058. ],
  1059. "description": "Given a deep data structure, access data by dot notation.",
  1060. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1061. "keywords": [
  1062. "access",
  1063. "data",
  1064. "dot",
  1065. "notation"
  1066. ],
  1067. "support": {
  1068. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1069. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.2"
  1070. },
  1071. "time": "2022-10-27T11:44:00+00:00"
  1072. },
  1073. {
  1074. "name": "doctrine/annotations",
  1075. "version": "1.14.3",
  1076. "source": {
  1077. "type": "git",
  1078. "url": "https://github.com/doctrine/annotations.git",
  1079. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af"
  1080. },
  1081. "dist": {
  1082. "type": "zip",
  1083. "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1084. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  1085. "shasum": ""
  1086. },
  1087. "require": {
  1088. "doctrine/lexer": "^1 || ^2",
  1089. "ext-tokenizer": "*",
  1090. "php": "^7.1 || ^8.0",
  1091. "psr/cache": "^1 || ^2 || ^3"
  1092. },
  1093. "require-dev": {
  1094. "doctrine/cache": "^1.11 || ^2.0",
  1095. "doctrine/coding-standard": "^9 || ^10",
  1096. "phpstan/phpstan": "~1.4.10 || ^1.8.0",
  1097. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1098. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1099. "vimeo/psalm": "^4.10"
  1100. },
  1101. "suggest": {
  1102. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  1103. },
  1104. "type": "library",
  1105. "autoload": {
  1106. "psr-4": {
  1107. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  1108. }
  1109. },
  1110. "notification-url": "https://packagist.org/downloads/",
  1111. "license": [
  1112. "MIT"
  1113. ],
  1114. "authors": [
  1115. {
  1116. "name": "Guilherme Blanco",
  1117. "email": "guilhermeblanco@gmail.com"
  1118. },
  1119. {
  1120. "name": "Roman Borschel",
  1121. "email": "roman@code-factory.org"
  1122. },
  1123. {
  1124. "name": "Benjamin Eberlei",
  1125. "email": "kontakt@beberlei.de"
  1126. },
  1127. {
  1128. "name": "Jonathan Wage",
  1129. "email": "jonwage@gmail.com"
  1130. },
  1131. {
  1132. "name": "Johannes Schmitt",
  1133. "email": "schmittjoh@gmail.com"
  1134. }
  1135. ],
  1136. "description": "Docblock Annotations Parser",
  1137. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  1138. "keywords": [
  1139. "annotations",
  1140. "docblock",
  1141. "parser"
  1142. ],
  1143. "support": {
  1144. "issues": "https://github.com/doctrine/annotations/issues",
  1145. "source": "https://github.com/doctrine/annotations/tree/1.14.3"
  1146. },
  1147. "time": "2023-02-01T09:20:38+00:00"
  1148. },
  1149. {
  1150. "name": "doctrine/collections",
  1151. "version": "2.1.4",
  1152. "source": {
  1153. "type": "git",
  1154. "url": "https://github.com/doctrine/collections.git",
  1155. "reference": "72328a11443a0de79967104ad36ba7b30bded134"
  1156. },
  1157. "dist": {
  1158. "type": "zip",
  1159. "url": "https://api.github.com/repos/doctrine/collections/zipball/72328a11443a0de79967104ad36ba7b30bded134",
  1160. "reference": "72328a11443a0de79967104ad36ba7b30bded134",
  1161. "shasum": ""
  1162. },
  1163. "require": {
  1164. "doctrine/deprecations": "^1",
  1165. "php": "^8.1"
  1166. },
  1167. "require-dev": {
  1168. "doctrine/coding-standard": "^12",
  1169. "ext-json": "*",
  1170. "phpstan/phpstan": "^1.8",
  1171. "phpstan/phpstan-phpunit": "^1.0",
  1172. "phpunit/phpunit": "^9.5",
  1173. "vimeo/psalm": "^5.11"
  1174. },
  1175. "type": "library",
  1176. "autoload": {
  1177. "psr-4": {
  1178. "Doctrine\\Common\\Collections\\": "src"
  1179. }
  1180. },
  1181. "notification-url": "https://packagist.org/downloads/",
  1182. "license": [
  1183. "MIT"
  1184. ],
  1185. "authors": [
  1186. {
  1187. "name": "Guilherme Blanco",
  1188. "email": "guilhermeblanco@gmail.com"
  1189. },
  1190. {
  1191. "name": "Roman Borschel",
  1192. "email": "roman@code-factory.org"
  1193. },
  1194. {
  1195. "name": "Benjamin Eberlei",
  1196. "email": "kontakt@beberlei.de"
  1197. },
  1198. {
  1199. "name": "Jonathan Wage",
  1200. "email": "jonwage@gmail.com"
  1201. },
  1202. {
  1203. "name": "Johannes Schmitt",
  1204. "email": "schmittjoh@gmail.com"
  1205. }
  1206. ],
  1207. "description": "PHP Doctrine Collections library that adds additional functionality on top of PHP arrays.",
  1208. "homepage": "https://www.doctrine-project.org/projects/collections.html",
  1209. "keywords": [
  1210. "array",
  1211. "collections",
  1212. "iterators",
  1213. "php"
  1214. ],
  1215. "support": {
  1216. "issues": "https://github.com/doctrine/collections/issues",
  1217. "source": "https://github.com/doctrine/collections/tree/2.1.4"
  1218. },
  1219. "funding": [
  1220. {
  1221. "url": "https://www.doctrine-project.org/sponsorship.html",
  1222. "type": "custom"
  1223. },
  1224. {
  1225. "url": "https://www.patreon.com/phpdoctrine",
  1226. "type": "patreon"
  1227. },
  1228. {
  1229. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcollections",
  1230. "type": "tidelift"
  1231. }
  1232. ],
  1233. "time": "2023-10-03T09:22:33+00:00"
  1234. },
  1235. {
  1236. "name": "doctrine/common",
  1237. "version": "3.4.3",
  1238. "source": {
  1239. "type": "git",
  1240. "url": "https://github.com/doctrine/common.git",
  1241. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced"
  1242. },
  1243. "dist": {
  1244. "type": "zip",
  1245. "url": "https://api.github.com/repos/doctrine/common/zipball/8b5e5650391f851ed58910b3e3d48a71062eeced",
  1246. "reference": "8b5e5650391f851ed58910b3e3d48a71062eeced",
  1247. "shasum": ""
  1248. },
  1249. "require": {
  1250. "doctrine/persistence": "^2.0 || ^3.0",
  1251. "php": "^7.1 || ^8.0"
  1252. },
  1253. "require-dev": {
  1254. "doctrine/coding-standard": "^9.0 || ^10.0",
  1255. "doctrine/collections": "^1",
  1256. "phpstan/phpstan": "^1.4.1",
  1257. "phpstan/phpstan-phpunit": "^1",
  1258. "phpunit/phpunit": "^7.5.20 || ^8.5 || ^9.0",
  1259. "squizlabs/php_codesniffer": "^3.0",
  1260. "symfony/phpunit-bridge": "^6.1",
  1261. "vimeo/psalm": "^4.4"
  1262. },
  1263. "type": "library",
  1264. "autoload": {
  1265. "psr-4": {
  1266. "Doctrine\\Common\\": "src"
  1267. }
  1268. },
  1269. "notification-url": "https://packagist.org/downloads/",
  1270. "license": [
  1271. "MIT"
  1272. ],
  1273. "authors": [
  1274. {
  1275. "name": "Guilherme Blanco",
  1276. "email": "guilhermeblanco@gmail.com"
  1277. },
  1278. {
  1279. "name": "Roman Borschel",
  1280. "email": "roman@code-factory.org"
  1281. },
  1282. {
  1283. "name": "Benjamin Eberlei",
  1284. "email": "kontakt@beberlei.de"
  1285. },
  1286. {
  1287. "name": "Jonathan Wage",
  1288. "email": "jonwage@gmail.com"
  1289. },
  1290. {
  1291. "name": "Johannes Schmitt",
  1292. "email": "schmittjoh@gmail.com"
  1293. },
  1294. {
  1295. "name": "Marco Pivetta",
  1296. "email": "ocramius@gmail.com"
  1297. }
  1298. ],
  1299. "description": "PHP Doctrine Common project is a library that provides additional functionality that other Doctrine projects depend on such as better reflection support, proxies and much more.",
  1300. "homepage": "https://www.doctrine-project.org/projects/common.html",
  1301. "keywords": [
  1302. "common",
  1303. "doctrine",
  1304. "php"
  1305. ],
  1306. "support": {
  1307. "issues": "https://github.com/doctrine/common/issues",
  1308. "source": "https://github.com/doctrine/common/tree/3.4.3"
  1309. },
  1310. "funding": [
  1311. {
  1312. "url": "https://www.doctrine-project.org/sponsorship.html",
  1313. "type": "custom"
  1314. },
  1315. {
  1316. "url": "https://www.patreon.com/phpdoctrine",
  1317. "type": "patreon"
  1318. },
  1319. {
  1320. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcommon",
  1321. "type": "tidelift"
  1322. }
  1323. ],
  1324. "time": "2022-10-09T11:47:59+00:00"
  1325. },
  1326. {
  1327. "name": "doctrine/deprecations",
  1328. "version": "1.1.2",
  1329. "source": {
  1330. "type": "git",
  1331. "url": "https://github.com/doctrine/deprecations.git",
  1332. "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931"
  1333. },
  1334. "dist": {
  1335. "type": "zip",
  1336. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
  1337. "reference": "4f2d4f2836e7ec4e7a8625e75c6aa916004db931",
  1338. "shasum": ""
  1339. },
  1340. "require": {
  1341. "php": "^7.1 || ^8.0"
  1342. },
  1343. "require-dev": {
  1344. "doctrine/coding-standard": "^9",
  1345. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1346. "phpstan/phpstan-phpunit": "^1.0",
  1347. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1348. "psalm/plugin-phpunit": "0.18.4",
  1349. "psr/log": "^1 || ^2 || ^3",
  1350. "vimeo/psalm": "4.30.0 || 5.12.0"
  1351. },
  1352. "suggest": {
  1353. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1354. },
  1355. "type": "library",
  1356. "autoload": {
  1357. "psr-4": {
  1358. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1359. }
  1360. },
  1361. "notification-url": "https://packagist.org/downloads/",
  1362. "license": [
  1363. "MIT"
  1364. ],
  1365. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  1366. "homepage": "https://www.doctrine-project.org/",
  1367. "support": {
  1368. "issues": "https://github.com/doctrine/deprecations/issues",
  1369. "source": "https://github.com/doctrine/deprecations/tree/1.1.2"
  1370. },
  1371. "time": "2023-09-27T20:04:15+00:00"
  1372. },
  1373. {
  1374. "name": "doctrine/event-manager",
  1375. "version": "2.0.0",
  1376. "source": {
  1377. "type": "git",
  1378. "url": "https://github.com/doctrine/event-manager.git",
  1379. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32"
  1380. },
  1381. "dist": {
  1382. "type": "zip",
  1383. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/750671534e0241a7c50ea5b43f67e23eb5c96f32",
  1384. "reference": "750671534e0241a7c50ea5b43f67e23eb5c96f32",
  1385. "shasum": ""
  1386. },
  1387. "require": {
  1388. "php": "^8.1"
  1389. },
  1390. "conflict": {
  1391. "doctrine/common": "<2.9"
  1392. },
  1393. "require-dev": {
  1394. "doctrine/coding-standard": "^10",
  1395. "phpstan/phpstan": "^1.8.8",
  1396. "phpunit/phpunit": "^9.5",
  1397. "vimeo/psalm": "^4.28"
  1398. },
  1399. "type": "library",
  1400. "autoload": {
  1401. "psr-4": {
  1402. "Doctrine\\Common\\": "src"
  1403. }
  1404. },
  1405. "notification-url": "https://packagist.org/downloads/",
  1406. "license": [
  1407. "MIT"
  1408. ],
  1409. "authors": [
  1410. {
  1411. "name": "Guilherme Blanco",
  1412. "email": "guilhermeblanco@gmail.com"
  1413. },
  1414. {
  1415. "name": "Roman Borschel",
  1416. "email": "roman@code-factory.org"
  1417. },
  1418. {
  1419. "name": "Benjamin Eberlei",
  1420. "email": "kontakt@beberlei.de"
  1421. },
  1422. {
  1423. "name": "Jonathan Wage",
  1424. "email": "jonwage@gmail.com"
  1425. },
  1426. {
  1427. "name": "Johannes Schmitt",
  1428. "email": "schmittjoh@gmail.com"
  1429. },
  1430. {
  1431. "name": "Marco Pivetta",
  1432. "email": "ocramius@gmail.com"
  1433. }
  1434. ],
  1435. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1436. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1437. "keywords": [
  1438. "event",
  1439. "event dispatcher",
  1440. "event manager",
  1441. "event system",
  1442. "events"
  1443. ],
  1444. "support": {
  1445. "issues": "https://github.com/doctrine/event-manager/issues",
  1446. "source": "https://github.com/doctrine/event-manager/tree/2.0.0"
  1447. },
  1448. "funding": [
  1449. {
  1450. "url": "https://www.doctrine-project.org/sponsorship.html",
  1451. "type": "custom"
  1452. },
  1453. {
  1454. "url": "https://www.patreon.com/phpdoctrine",
  1455. "type": "patreon"
  1456. },
  1457. {
  1458. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1459. "type": "tidelift"
  1460. }
  1461. ],
  1462. "time": "2022-10-12T20:59:15+00:00"
  1463. },
  1464. {
  1465. "name": "doctrine/lexer",
  1466. "version": "2.1.0",
  1467. "source": {
  1468. "type": "git",
  1469. "url": "https://github.com/doctrine/lexer.git",
  1470. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
  1471. },
  1472. "dist": {
  1473. "type": "zip",
  1474. "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1475. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  1476. "shasum": ""
  1477. },
  1478. "require": {
  1479. "doctrine/deprecations": "^1.0",
  1480. "php": "^7.1 || ^8.0"
  1481. },
  1482. "require-dev": {
  1483. "doctrine/coding-standard": "^9 || ^10",
  1484. "phpstan/phpstan": "^1.3",
  1485. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1486. "psalm/plugin-phpunit": "^0.18.3",
  1487. "vimeo/psalm": "^4.11 || ^5.0"
  1488. },
  1489. "type": "library",
  1490. "autoload": {
  1491. "psr-4": {
  1492. "Doctrine\\Common\\Lexer\\": "src"
  1493. }
  1494. },
  1495. "notification-url": "https://packagist.org/downloads/",
  1496. "license": [
  1497. "MIT"
  1498. ],
  1499. "authors": [
  1500. {
  1501. "name": "Guilherme Blanco",
  1502. "email": "guilhermeblanco@gmail.com"
  1503. },
  1504. {
  1505. "name": "Roman Borschel",
  1506. "email": "roman@code-factory.org"
  1507. },
  1508. {
  1509. "name": "Johannes Schmitt",
  1510. "email": "schmittjoh@gmail.com"
  1511. }
  1512. ],
  1513. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1514. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1515. "keywords": [
  1516. "annotations",
  1517. "docblock",
  1518. "lexer",
  1519. "parser",
  1520. "php"
  1521. ],
  1522. "support": {
  1523. "issues": "https://github.com/doctrine/lexer/issues",
  1524. "source": "https://github.com/doctrine/lexer/tree/2.1.0"
  1525. },
  1526. "funding": [
  1527. {
  1528. "url": "https://www.doctrine-project.org/sponsorship.html",
  1529. "type": "custom"
  1530. },
  1531. {
  1532. "url": "https://www.patreon.com/phpdoctrine",
  1533. "type": "patreon"
  1534. },
  1535. {
  1536. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1537. "type": "tidelift"
  1538. }
  1539. ],
  1540. "time": "2022-12-14T08:49:07+00:00"
  1541. },
  1542. {
  1543. "name": "doctrine/persistence",
  1544. "version": "3.2.0",
  1545. "source": {
  1546. "type": "git",
  1547. "url": "https://github.com/doctrine/persistence.git",
  1548. "reference": "63fee8c33bef740db6730eb2a750cd3da6495603"
  1549. },
  1550. "dist": {
  1551. "type": "zip",
  1552. "url": "https://api.github.com/repos/doctrine/persistence/zipball/63fee8c33bef740db6730eb2a750cd3da6495603",
  1553. "reference": "63fee8c33bef740db6730eb2a750cd3da6495603",
  1554. "shasum": ""
  1555. },
  1556. "require": {
  1557. "doctrine/event-manager": "^1 || ^2",
  1558. "php": "^7.2 || ^8.0",
  1559. "psr/cache": "^1.0 || ^2.0 || ^3.0"
  1560. },
  1561. "conflict": {
  1562. "doctrine/common": "<2.10"
  1563. },
  1564. "require-dev": {
  1565. "composer/package-versions-deprecated": "^1.11",
  1566. "doctrine/coding-standard": "^11",
  1567. "doctrine/common": "^3.0",
  1568. "phpstan/phpstan": "1.9.4",
  1569. "phpstan/phpstan-phpunit": "^1",
  1570. "phpstan/phpstan-strict-rules": "^1.1",
  1571. "phpunit/phpunit": "^8.5 || ^9.5",
  1572. "symfony/cache": "^4.4 || ^5.4 || ^6.0",
  1573. "vimeo/psalm": "4.30.0 || 5.3.0"
  1574. },
  1575. "type": "library",
  1576. "autoload": {
  1577. "psr-4": {
  1578. "Doctrine\\Persistence\\": "src/Persistence"
  1579. }
  1580. },
  1581. "notification-url": "https://packagist.org/downloads/",
  1582. "license": [
  1583. "MIT"
  1584. ],
  1585. "authors": [
  1586. {
  1587. "name": "Guilherme Blanco",
  1588. "email": "guilhermeblanco@gmail.com"
  1589. },
  1590. {
  1591. "name": "Roman Borschel",
  1592. "email": "roman@code-factory.org"
  1593. },
  1594. {
  1595. "name": "Benjamin Eberlei",
  1596. "email": "kontakt@beberlei.de"
  1597. },
  1598. {
  1599. "name": "Jonathan Wage",
  1600. "email": "jonwage@gmail.com"
  1601. },
  1602. {
  1603. "name": "Johannes Schmitt",
  1604. "email": "schmittjoh@gmail.com"
  1605. },
  1606. {
  1607. "name": "Marco Pivetta",
  1608. "email": "ocramius@gmail.com"
  1609. }
  1610. ],
  1611. "description": "The Doctrine Persistence project is a set of shared interfaces and functionality that the different Doctrine object mappers share.",
  1612. "homepage": "https://www.doctrine-project.org/projects/persistence.html",
  1613. "keywords": [
  1614. "mapper",
  1615. "object",
  1616. "odm",
  1617. "orm",
  1618. "persistence"
  1619. ],
  1620. "support": {
  1621. "issues": "https://github.com/doctrine/persistence/issues",
  1622. "source": "https://github.com/doctrine/persistence/tree/3.2.0"
  1623. },
  1624. "funding": [
  1625. {
  1626. "url": "https://www.doctrine-project.org/sponsorship.html",
  1627. "type": "custom"
  1628. },
  1629. {
  1630. "url": "https://www.patreon.com/phpdoctrine",
  1631. "type": "patreon"
  1632. },
  1633. {
  1634. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fpersistence",
  1635. "type": "tidelift"
  1636. }
  1637. ],
  1638. "time": "2023-05-17T18:32:04+00:00"
  1639. },
  1640. {
  1641. "name": "drupal/address",
  1642. "version": "1.12.0",
  1643. "source": {
  1644. "type": "git",
  1645. "url": "https://git.drupalcode.org/project/address.git",
  1646. "reference": "8.x-1.12"
  1647. },
  1648. "dist": {
  1649. "type": "zip",
  1650. "url": "https://ftp.drupal.org/files/projects/address-8.x-1.12.zip",
  1651. "reference": "8.x-1.12",
  1652. "shasum": "67dd4699040aabf0cd6169e437706fa6a39b0b3a"
  1653. },
  1654. "require": {
  1655. "commerceguys/addressing": "^1.4.2",
  1656. "drupal/core": "^9.2 || ^10",
  1657. "php": "^7.3 || ^8.0"
  1658. },
  1659. "require-dev": {
  1660. "drupal/token": "^1.0"
  1661. },
  1662. "type": "drupal-module",
  1663. "extra": {
  1664. "drupal": {
  1665. "version": "8.x-1.12",
  1666. "datestamp": "1684710176",
  1667. "security-coverage": {
  1668. "status": "covered",
  1669. "message": "Covered by Drupal's security advisory policy"
  1670. }
  1671. }
  1672. },
  1673. "notification-url": "https://packages.drupal.org/8/downloads",
  1674. "license": [
  1675. "GPL-2.0-or-later"
  1676. ],
  1677. "authors": [
  1678. {
  1679. "name": "bojanz",
  1680. "homepage": "https://www.drupal.org/user/86106"
  1681. },
  1682. {
  1683. "name": "Centarro",
  1684. "homepage": "https://www.drupal.org/user/3661446"
  1685. },
  1686. {
  1687. "name": "dww",
  1688. "homepage": "https://www.drupal.org/user/46549"
  1689. },
  1690. {
  1691. "name": "googletorp",
  1692. "homepage": "https://www.drupal.org/user/386230"
  1693. },
  1694. {
  1695. "name": "jsacksick",
  1696. "homepage": "https://www.drupal.org/user/972218"
  1697. },
  1698. {
  1699. "name": "mglaman",
  1700. "homepage": "https://www.drupal.org/user/2416470"
  1701. },
  1702. {
  1703. "name": "rszrama",
  1704. "homepage": "https://www.drupal.org/user/49344"
  1705. }
  1706. ],
  1707. "description": "Provides functionality for storing, validating and displaying international postal addresses.",
  1708. "homepage": "http://drupal.org/project/address",
  1709. "support": {
  1710. "source": "https://git.drupalcode.org/project/address"
  1711. }
  1712. },
  1713. {
  1714. "name": "drupal/admin_toolbar",
  1715. "version": "3.4.2",
  1716. "source": {
  1717. "type": "git",
  1718. "url": "https://git.drupalcode.org/project/admin_toolbar.git",
  1719. "reference": "3.4.2"
  1720. },
  1721. "dist": {
  1722. "type": "zip",
  1723. "url": "https://ftp.drupal.org/files/projects/admin_toolbar-3.4.2.zip",
  1724. "reference": "3.4.2",
  1725. "shasum": "f5a008e5c73f5a11c6c8067c0ea6ebb76aa33854"
  1726. },
  1727. "require": {
  1728. "drupal/core": "^9.2 || ^10"
  1729. },
  1730. "require-dev": {
  1731. "drupal/admin_toolbar_tools": "*"
  1732. },
  1733. "type": "drupal-module",
  1734. "extra": {
  1735. "drupal": {
  1736. "version": "3.4.2",
  1737. "datestamp": "1696006195",
  1738. "security-coverage": {
  1739. "status": "covered",
  1740. "message": "Covered by Drupal's security advisory policy"
  1741. }
  1742. }
  1743. },
  1744. "notification-url": "https://packages.drupal.org/8/downloads",
  1745. "license": [
  1746. "GPL-2.0-or-later"
  1747. ],
  1748. "authors": [
  1749. {
  1750. "name": "Wilfrid Roze (eme)",
  1751. "homepage": "https://www.drupal.org/u/eme",
  1752. "role": "Maintainer"
  1753. },
  1754. {
  1755. "name": "Romain Jarraud (romainj)",
  1756. "homepage": "https://www.drupal.org/u/romainj",
  1757. "role": "Maintainer"
  1758. },
  1759. {
  1760. "name": "Adrian Cid Almaguer (adriancid)",
  1761. "homepage": "https://www.drupal.org/u/adriancid",
  1762. "email": "adriancid@gmail.com",
  1763. "role": "Maintainer"
  1764. },
  1765. {
  1766. "name": "Mohamed Anis Taktak (matio89)",
  1767. "homepage": "https://www.drupal.org/u/matio89",
  1768. "role": "Maintainer"
  1769. },
  1770. {
  1771. "name": "matio89",
  1772. "homepage": "https://www.drupal.org/user/2320090"
  1773. },
  1774. {
  1775. "name": "Musa.thomas",
  1776. "homepage": "https://www.drupal.org/user/1213824"
  1777. },
  1778. {
  1779. "name": "romainj",
  1780. "homepage": "https://www.drupal.org/user/370706"
  1781. }
  1782. ],
  1783. "description": "Provides a drop-down menu interface to the core Drupal Toolbar.",
  1784. "homepage": "http://drupal.org/project/admin_toolbar",
  1785. "keywords": [
  1786. "Drupal",
  1787. "Toolbar"
  1788. ],
  1789. "support": {
  1790. "source": "https://git.drupalcode.org/project/admin_toolbar",
  1791. "issues": "https://www.drupal.org/project/issues/admin_toolbar"
  1792. }
  1793. },
  1794. {
  1795. "name": "drupal/adminimal_theme",
  1796. "version": "1.7.0",
  1797. "source": {
  1798. "type": "git",
  1799. "url": "https://git.drupalcode.org/project/adminimal_theme.git",
  1800. "reference": "8.x-1.7"
  1801. },
  1802. "dist": {
  1803. "type": "zip",
  1804. "url": "https://ftp.drupal.org/files/projects/adminimal_theme-8.x-1.7.zip",
  1805. "reference": "8.x-1.7",
  1806. "shasum": "0fe020fecab6a1f6d877f2e622fb9f916ada52bb"
  1807. },
  1808. "require": {
  1809. "drupal/core": "^9.3 || ^10",
  1810. "drupal/seven": "~1.0"
  1811. },
  1812. "type": "drupal-theme",
  1813. "extra": {
  1814. "drupal": {
  1815. "version": "8.x-1.7",
  1816. "datestamp": "1691504486",
  1817. "security-coverage": {
  1818. "status": "covered",
  1819. "message": "Covered by Drupal's security advisory policy"
  1820. }
  1821. }
  1822. },
  1823. "notification-url": "https://packages.drupal.org/8/downloads",
  1824. "license": [
  1825. "GPL-2.0+"
  1826. ],
  1827. "authors": [
  1828. {
  1829. "name": "ANDiTKO",
  1830. "homepage": "https://www.drupal.org/user/1428124"
  1831. },
  1832. {
  1833. "name": "andrey.troeglazov",
  1834. "homepage": "https://www.drupal.org/user/3145389"
  1835. },
  1836. {
  1837. "name": "realityloop",
  1838. "homepage": "https://www.drupal.org/user/139189"
  1839. },
  1840. {
  1841. "name": "rjjakes",
  1842. "homepage": "https://www.drupal.org/user/3457245"
  1843. }
  1844. ],
  1845. "description": "Drupal administration theme with modern minimalist design.",
  1846. "homepage": "https://www.drupal.org/project/adminimal_theme",
  1847. "support": {
  1848. "source": "https://git.drupalcode.org/project/adminimal_theme",
  1849. "issues": "https://www.drupal.org/project/issues/adminimal_theme"
  1850. }
  1851. },
  1852. {
  1853. "name": "drupal/advanced_text_formatter",
  1854. "version": "3.0.0-rc1",
  1855. "source": {
  1856. "type": "git",
  1857. "url": "https://git.drupalcode.org/project/advanced_text_formatter.git",
  1858. "reference": "3.0.0-rc1"
  1859. },
  1860. "dist": {
  1861. "type": "zip",
  1862. "url": "https://ftp.drupal.org/files/projects/advanced_text_formatter-3.0.0-rc1.zip",
  1863. "reference": "3.0.0-rc1",
  1864. "shasum": "394729127f44a6398e29f5e5702e6def00a06e20"
  1865. },
  1866. "require": {
  1867. "drupal/core": "^8 || ^9 || ^10"
  1868. },
  1869. "type": "drupal-module",
  1870. "extra": {
  1871. "drupal": {
  1872. "version": "3.0.0-rc1",
  1873. "datestamp": "1675163352",
  1874. "security-coverage": {
  1875. "status": "not-covered",
  1876. "message": "RC releases are not covered by Drupal security advisories."
  1877. }
  1878. }
  1879. },
  1880. "notification-url": "https://packages.drupal.org/8/downloads",
  1881. "license": [
  1882. "GPL-2.0-or-later"
  1883. ],
  1884. "authors": [
  1885. {
  1886. "name": "azovsky",
  1887. "homepage": "https://www.drupal.org/user/330533"
  1888. },
  1889. {
  1890. "name": "thmnhat",
  1891. "homepage": "https://www.drupal.org/user/998946"
  1892. }
  1893. ],
  1894. "description": "Provides an additional formatter for text field, text area and text format.",
  1895. "homepage": "https://www.drupal.org/project/advanced_text_formatter",
  1896. "support": {
  1897. "source": "https://git.drupalcode.org/project/advanced_text_formatter"
  1898. }
  1899. },
  1900. {
  1901. "name": "drupal/audiofield",
  1902. "version": "1.13.0",
  1903. "source": {
  1904. "type": "git",
  1905. "url": "https://git.drupalcode.org/project/audiofield.git",
  1906. "reference": "8.x-1.13"
  1907. },
  1908. "dist": {
  1909. "type": "zip",
  1910. "url": "https://ftp.drupal.org/files/projects/audiofield-8.x-1.13.zip",
  1911. "reference": "8.x-1.13",
  1912. "shasum": "85bb66d231b2f961728b559351d5dfd155b2c78c"
  1913. },
  1914. "require": {
  1915. "drupal/core": "^8 || ^9 || ^10"
  1916. },
  1917. "type": "drupal-module",
  1918. "extra": {
  1919. "drupal": {
  1920. "version": "8.x-1.13",
  1921. "datestamp": "1681143245",
  1922. "security-coverage": {
  1923. "status": "covered",
  1924. "message": "Covered by Drupal's security advisory policy"
  1925. }
  1926. },
  1927. "drush": {
  1928. "services": {
  1929. "drush.services.yml": "^9"
  1930. }
  1931. }
  1932. },
  1933. "notification-url": "https://packages.drupal.org/8/downloads",
  1934. "license": [
  1935. "GPL-2.0-or-later"
  1936. ],
  1937. "authors": [
  1938. {
  1939. "name": "Daniel Moberly",
  1940. "homepage": "https://www.drupal.org/u/danielmoberly",
  1941. "role": "Maintainer"
  1942. },
  1943. {
  1944. "name": "tamerzg",
  1945. "homepage": "https://www.drupal.org/user/464564"
  1946. }
  1947. ],
  1948. "description": "AudioField Module",
  1949. "homepage": "https://www.drupal.org/project/audiofield",
  1950. "support": {
  1951. "source": "https://git.drupalcode.org/project/audiofield",
  1952. "issues": "https://www.drupal.org/project/issues/audiofield"
  1953. }
  1954. },
  1955. {
  1956. "name": "drupal/autocomplete_deluxe",
  1957. "version": "2.0.3",
  1958. "source": {
  1959. "type": "git",
  1960. "url": "https://git.drupalcode.org/project/autocomplete_deluxe.git",
  1961. "reference": "2.0.3"
  1962. },
  1963. "dist": {
  1964. "type": "zip",
  1965. "url": "https://ftp.drupal.org/files/projects/autocomplete_deluxe-2.0.3.zip",
  1966. "reference": "2.0.3",
  1967. "shasum": "686bb49e7366d59f7eef7acf8906ba907898497f"
  1968. },
  1969. "require": {
  1970. "drupal/core": "^8 || ^9 || ^10"
  1971. },
  1972. "type": "drupal-module",
  1973. "extra": {
  1974. "drupal": {
  1975. "version": "2.0.3",
  1976. "datestamp": "1673454732",
  1977. "security-coverage": {
  1978. "status": "covered",
  1979. "message": "Covered by Drupal's security advisory policy"
  1980. }
  1981. }
  1982. },
  1983. "notification-url": "https://packages.drupal.org/8/downloads",
  1984. "license": [
  1985. "GPL-2.0-or-later"
  1986. ],
  1987. "authors": [
  1988. {
  1989. "name": "Vardot",
  1990. "homepage": "https://www.drupal.org/vardot",
  1991. "role": "Maintenance for D8 and D9 versions"
  1992. },
  1993. {
  1994. "name": "Mediacurrent",
  1995. "homepage": "https://www.drupal.org/mediacurrent",
  1996. "role": "Supporting organization"
  1997. },
  1998. {
  1999. "name": "Mohammed J. Razem",
  2000. "homepage": "https://www.drupal.org/user/255384"
  2001. },
  2002. {
  2003. "name": "mpriscella",
  2004. "homepage": "https://www.drupal.org/user/2354820"
  2005. },
  2006. {
  2007. "name": "Rajab Natshah",
  2008. "homepage": "https://www.drupal.org/user/1414312"
  2009. },
  2010. {
  2011. "name": "sepgil",
  2012. "homepage": "https://www.drupal.org/user/512828"
  2013. }
  2014. ],
  2015. "description": "Enhanced autocomplete using Jquery UI autocomplete.",
  2016. "homepage": "https://www.drupal.org/project/autocomplete_deluxe",
  2017. "support": {
  2018. "source": "http://cgit.drupalcode.org/autocomplete_deluxe",
  2019. "issues": "https://www.drupal.org/project/issues/autocomplete_deluxe"
  2020. }
  2021. },
  2022. {
  2023. "name": "drupal/autologout",
  2024. "version": "1.4.0",
  2025. "source": {
  2026. "type": "git",
  2027. "url": "https://git.drupalcode.org/project/autologout.git",
  2028. "reference": "8.x-1.4"
  2029. },
  2030. "dist": {
  2031. "type": "zip",
  2032. "url": "https://ftp.drupal.org/files/projects/autologout-8.x-1.4.zip",
  2033. "reference": "8.x-1.4",
  2034. "shasum": "f751062f463d0b52df81764f67cee3a0be97825e"
  2035. },
  2036. "require": {
  2037. "drupal/core": "^9.2 || ^10"
  2038. },
  2039. "type": "drupal-module",
  2040. "extra": {
  2041. "drupal": {
  2042. "version": "8.x-1.4",
  2043. "datestamp": "1658168199",
  2044. "security-coverage": {
  2045. "status": "covered",
  2046. "message": "Covered by Drupal's security advisory policy"
  2047. }
  2048. }
  2049. },
  2050. "notification-url": "https://packages.drupal.org/8/downloads",
  2051. "license": [
  2052. "GPL-2.0-or-later"
  2053. ],
  2054. "authors": [
  2055. {
  2056. "name": "AjitS",
  2057. "homepage": "https://www.drupal.org/user/981944"
  2058. },
  2059. {
  2060. "name": "AjK",
  2061. "homepage": "https://www.drupal.org/user/39030"
  2062. },
  2063. {
  2064. "name": "boshtian",
  2065. "homepage": "https://www.drupal.org/user/1773456"
  2066. },
  2067. {
  2068. "name": "dandrews",
  2069. "homepage": "https://www.drupal.org/user/2014490"
  2070. },
  2071. {
  2072. "name": "darksnow",
  2073. "homepage": "https://www.drupal.org/user/391915"
  2074. },
  2075. {
  2076. "name": "japerry",
  2077. "homepage": "https://www.drupal.org/user/45640"
  2078. },
  2079. {
  2080. "name": "johnennew",
  2081. "homepage": "https://www.drupal.org/user/1150042"
  2082. },
  2083. {
  2084. "name": "jrglasgow",
  2085. "homepage": "https://www.drupal.org/user/36590"
  2086. },
  2087. {
  2088. "name": "kmasood",
  2089. "homepage": "https://www.drupal.org/user/1262860"
  2090. },
  2091. {
  2092. "name": "levelos",
  2093. "homepage": "https://www.drupal.org/user/54135"
  2094. },
  2095. {
  2096. "name": "prabeen.giri",
  2097. "homepage": "https://www.drupal.org/user/913078"
  2098. },
  2099. {
  2100. "name": "str8",
  2101. "homepage": "https://www.drupal.org/user/2865063"
  2102. }
  2103. ],
  2104. "description": "Adds automated timed logout.",
  2105. "homepage": "http://drupal.org/project/autologout",
  2106. "support": {
  2107. "source": "https://git.drupalcode.org/project/autologout"
  2108. }
  2109. },
  2110. {
  2111. "name": "drupal/better_exposed_filters",
  2112. "version": "6.0.3",
  2113. "source": {
  2114. "type": "git",
  2115. "url": "https://git.drupalcode.org/project/better_exposed_filters.git",
  2116. "reference": "6.0.3"
  2117. },
  2118. "dist": {
  2119. "type": "zip",
  2120. "url": "https://ftp.drupal.org/files/projects/better_exposed_filters-6.0.3.zip",
  2121. "reference": "6.0.3",
  2122. "shasum": "b5c20207d7679542bb81955771956c18083e6e0b"
  2123. },
  2124. "require": {
  2125. "drupal/core": "^9 || ^10",
  2126. "drupal/jquery_ui": "^1.6",
  2127. "drupal/jquery_ui_datepicker": "^2.0",
  2128. "drupal/jquery_ui_slider": "^2.0.0",
  2129. "drupal/jquery_ui_touch_punch": "^1.0"
  2130. },
  2131. "type": "drupal-module",
  2132. "extra": {
  2133. "drupal": {
  2134. "version": "6.0.3",
  2135. "datestamp": "1671541877",
  2136. "security-coverage": {
  2137. "status": "covered",
  2138. "message": "Covered by Drupal's security advisory policy"
  2139. }
  2140. }
  2141. },
  2142. "notification-url": "https://packages.drupal.org/8/downloads",
  2143. "license": [
  2144. "GPL-2.0-or-later"
  2145. ],
  2146. "authors": [
  2147. {
  2148. "name": "Mike Keran",
  2149. "homepage": "https://www.drupal.org/u/mikeker"
  2150. },
  2151. {
  2152. "name": "Martin Keereman",
  2153. "homepage": "https://www.drupal.org/u/etroid"
  2154. },
  2155. {
  2156. "name": "Neslee Canil Pinto",
  2157. "homepage": "https://www.drupal.org/u/neslee-canil-pinto"
  2158. },
  2159. {
  2160. "name": "mikeker",
  2161. "homepage": "https://www.drupal.org/user/192273"
  2162. },
  2163. {
  2164. "name": "Neslee Canil Pinto",
  2165. "homepage": "https://www.drupal.org/user/3580850"
  2166. },
  2167. {
  2168. "name": "podarok",
  2169. "homepage": "https://www.drupal.org/user/116002"
  2170. },
  2171. {
  2172. "name": "rlhawk",
  2173. "homepage": "https://www.drupal.org/user/352283"
  2174. }
  2175. ],
  2176. "description": "Replaces the Views default single- or multi-select boxes with more advanced options.",
  2177. "homepage": "https://www.drupal.org/project/better_exposed_filters",
  2178. "support": {
  2179. "source": "https://git.drupalcode.org/project/better_exposed_filters",
  2180. "issues": "https://www.drupal.org/project/issues/better_exposed_filters"
  2181. }
  2182. },
  2183. {
  2184. "name": "drupal/block_class",
  2185. "version": "2.0.11",
  2186. "source": {
  2187. "type": "git",
  2188. "url": "https://git.drupalcode.org/project/block_class.git",
  2189. "reference": "2.0.11"
  2190. },
  2191. "dist": {
  2192. "type": "zip",
  2193. "url": "https://ftp.drupal.org/files/projects/block_class-2.0.11.zip",
  2194. "reference": "2.0.11",
  2195. "shasum": "bd098ef0071b5baca1248c0deaa9bbedc0ddcaf4"
  2196. },
  2197. "require": {
  2198. "drupal/core": "^8 || ^9 || ^10"
  2199. },
  2200. "type": "drupal-module",
  2201. "extra": {
  2202. "drupal": {
  2203. "version": "2.0.11",
  2204. "datestamp": "1672065313",
  2205. "security-coverage": {
  2206. "status": "covered",
  2207. "message": "Covered by Drupal's security advisory policy"
  2208. }
  2209. }
  2210. },
  2211. "notification-url": "https://packages.drupal.org/8/downloads",
  2212. "license": [
  2213. "GPL-2.0-or-later"
  2214. ],
  2215. "authors": [
  2216. {
  2217. "name": "Todd Nienkerk",
  2218. "homepage": "https://www.drupal.org/u/todd-nienkerk",
  2219. "role": "Maintainer"
  2220. },
  2221. {
  2222. "name": "Renato Gonçalves (RenatoG)",
  2223. "homepage": "https://www.drupal.org/u/RenatoG",
  2224. "role": "Maintainer"
  2225. },
  2226. {
  2227. "name": "Neslee Canil Pinto",
  2228. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  2229. "role": "Maintainer"
  2230. },
  2231. {
  2232. "name": "Aaron Stanush",
  2233. "homepage": "https://www.drupal.org/u/aaron-stanush",
  2234. "role": "Maintainer"
  2235. },
  2236. {
  2237. "name": "David Suissa (DYdave)",
  2238. "homepage": "https://www.drupal.org/u/DYdave",
  2239. "role": "Maintainer"
  2240. },
  2241. {
  2242. "name": "Four Kitchens",
  2243. "homepage": "https://www.drupal.org/user/358502",
  2244. "role": "Maintainer"
  2245. },
  2246. {
  2247. "name": "berenddeboer",
  2248. "homepage": "https://www.drupal.org/u/berenddeboer",
  2249. "role": "Maintainer"
  2250. },
  2251. {
  2252. "name": "elliotttf",
  2253. "homepage": "https://www.drupal.org/u/elliotttf",
  2254. "role": "Maintainer"
  2255. },
  2256. {
  2257. "name": "Michal Minecki (mirzu)",
  2258. "homepage": "https://www.drupal.org/u/mirzu",
  2259. "role": "Maintainer"
  2260. },
  2261. {
  2262. "name": "Patrick Coffey (pcoffey)",
  2263. "homepage": "https://www.drupal.org/u/pcoffey",
  2264. "role": "Maintainer"
  2265. },
  2266. {
  2267. "name": "Taylor Smith (tsmith512)",
  2268. "homepage": "https://www.drupal.org/u/tsmith512",
  2269. "role": "Maintainer"
  2270. }
  2271. ],
  2272. "description": "Allows assigning classes to Blocks.",
  2273. "homepage": "https://www.drupal.org/project/block_class",
  2274. "keywords": [
  2275. "Drupal"
  2276. ],
  2277. "support": {
  2278. "source": "https://git.drupalcode.org/project/block_class",
  2279. "issues": "https://www.drupal.org/project/issues/block_class",
  2280. "irc": "irc://irc.freenode.org/drupal-contribute"
  2281. }
  2282. },
  2283. {
  2284. "name": "drupal/bulkdelete",
  2285. "version": "dev-1.x",
  2286. "source": {
  2287. "type": "git",
  2288. "url": "https://git.drupalcode.org/project/bulkdelete.git",
  2289. "reference": "95a7ff49f152021be88ba562c247347ff36392c7"
  2290. },
  2291. "require": {
  2292. "drupal/core": "^8.7.7 || ^9 || ^10"
  2293. },
  2294. "type": "drupal-module",
  2295. "extra": {
  2296. "branch-alias": {
  2297. "dev-1.x": "1.x-dev"
  2298. },
  2299. "drupal": {
  2300. "version": "8.x-1.x-dev",
  2301. "datestamp": "1655322426",
  2302. "security-coverage": {
  2303. "status": "not-covered",
  2304. "message": "Dev releases are not covered by Drupal security advisories."
  2305. }
  2306. }
  2307. },
  2308. "notification-url": "https://packages.drupal.org/8/downloads",
  2309. "license": [
  2310. "GPL-2.0-or-later"
  2311. ],
  2312. "authors": [
  2313. {
  2314. "name": "Kars-T",
  2315. "homepage": "https://www.drupal.org/user/224499"
  2316. },
  2317. {
  2318. "name": "Rahul Seth",
  2319. "homepage": "https://www.drupal.org/user/2694359"
  2320. },
  2321. {
  2322. "name": "adriancid",
  2323. "homepage": "https://www.drupal.org/user/1962106"
  2324. },
  2325. {
  2326. "name": "robertDouglass",
  2327. "homepage": "https://www.drupal.org/user/5449"
  2328. }
  2329. ],
  2330. "description": "Adds an administrative option to bulk delete nodes by content type using the batch API.",
  2331. "homepage": "https://www.drupal.org/project/bulkdelete",
  2332. "support": {
  2333. "source": "https://git.drupalcode.org/project/bulkdelete"
  2334. }
  2335. },
  2336. {
  2337. "name": "drupal/config_devel",
  2338. "version": "dev-1.x",
  2339. "source": {
  2340. "type": "git",
  2341. "url": "https://git.drupalcode.org/project/config_devel.git",
  2342. "reference": "d0a98704eb6f9d4bdfe8e91e678b895648bb3c83"
  2343. },
  2344. "require": {
  2345. "drupal/core": "^9.3 || ^10"
  2346. },
  2347. "type": "drupal-module",
  2348. "extra": {
  2349. "branch-alias": {
  2350. "dev-1.x": "1.x-dev"
  2351. },
  2352. "drupal": {
  2353. "version": "8.x-1.8+2-dev",
  2354. "datestamp": "1678264720",
  2355. "security-coverage": {
  2356. "status": "not-covered",
  2357. "message": "Dev releases are not covered by Drupal security advisories."
  2358. }
  2359. }
  2360. },
  2361. "notification-url": "https://packages.drupal.org/8/downloads",
  2362. "license": [
  2363. "GPL-2.0+"
  2364. ],
  2365. "authors": [
  2366. {
  2367. "name": "alexpott",
  2368. "homepage": "https://www.drupal.org/user/157725"
  2369. },
  2370. {
  2371. "name": "benjy",
  2372. "homepage": "https://www.drupal.org/user/1852732"
  2373. },
  2374. {
  2375. "name": "chx",
  2376. "homepage": "https://www.drupal.org/user/9446"
  2377. },
  2378. {
  2379. "name": "joachim",
  2380. "homepage": "https://www.drupal.org/user/107701"
  2381. },
  2382. {
  2383. "name": "nedjo",
  2384. "homepage": "https://www.drupal.org/user/4481"
  2385. },
  2386. {
  2387. "name": "vijaycs85",
  2388. "homepage": "https://www.drupal.org/user/93488"
  2389. }
  2390. ],
  2391. "description": "Helps developers work with configuration.",
  2392. "homepage": "https://www.drupal.org/project/config_devel",
  2393. "support": {
  2394. "source": "https://git.drupalcode.org/project/config_devel"
  2395. }
  2396. },
  2397. {
  2398. "name": "drupal/config_filter",
  2399. "version": "2.6.0",
  2400. "source": {
  2401. "type": "git",
  2402. "url": "https://git.drupalcode.org/project/config_filter.git",
  2403. "reference": "8.x-2.6"
  2404. },
  2405. "dist": {
  2406. "type": "zip",
  2407. "url": "https://ftp.drupal.org/files/projects/config_filter-8.x-2.6.zip",
  2408. "reference": "8.x-2.6",
  2409. "shasum": "fd1a057a402436fc906c63bf0a74722f73b9b155"
  2410. },
  2411. "require": {
  2412. "drupal/core": "^8.8 || ^9 || ^10"
  2413. },
  2414. "conflict": {
  2415. "drush/drush": "<10"
  2416. },
  2417. "suggest": {
  2418. "drupal/config_split": "Split site configuration for different environments."
  2419. },
  2420. "type": "drupal-module",
  2421. "extra": {
  2422. "drupal": {
  2423. "version": "8.x-2.6",
  2424. "datestamp": "1698308577",
  2425. "security-coverage": {
  2426. "status": "covered",
  2427. "message": "Covered by Drupal's security advisory policy"
  2428. }
  2429. }
  2430. },
  2431. "notification-url": "https://packages.drupal.org/8/downloads",
  2432. "license": [
  2433. "GPL-2.0-or-later"
  2434. ],
  2435. "authors": [
  2436. {
  2437. "name": "Fabian Bircher",
  2438. "homepage": "https://www.drupal.org/u/bircher",
  2439. "email": "opensource@fabianbircher.com",
  2440. "role": "Maintainer"
  2441. },
  2442. {
  2443. "name": "Nuvole Web",
  2444. "homepage": "http://nuvole.org",
  2445. "email": "info@nuvole.org",
  2446. "role": "Maintainer"
  2447. },
  2448. {
  2449. "name": "pescetti",
  2450. "homepage": "https://www.drupal.org/user/436244"
  2451. }
  2452. ],
  2453. "description": "Config Filter allows other modules to interact with a ConfigStorage through filter plugins.",
  2454. "homepage": "https://www.drupal.org/project/config_filter",
  2455. "keywords": [
  2456. "Drupal",
  2457. "configuration",
  2458. "configuration management"
  2459. ],
  2460. "support": {
  2461. "source": "https://git.drupalcode.org/project/config_filter",
  2462. "issues": "https://www.drupal.org/project/issues/config_filter",
  2463. "slack": "https://drupal.slack.com/archives/C45342CDD"
  2464. }
  2465. },
  2466. {
  2467. "name": "drupal/config_ignore",
  2468. "version": "2.4.0",
  2469. "source": {
  2470. "type": "git",
  2471. "url": "https://git.drupalcode.org/project/config_ignore.git",
  2472. "reference": "8.x-2.4"
  2473. },
  2474. "dist": {
  2475. "type": "zip",
  2476. "url": "https://ftp.drupal.org/files/projects/config_ignore-8.x-2.4.zip",
  2477. "reference": "8.x-2.4",
  2478. "shasum": "e0e45dde2d6927c5d26de59f352792fb6cf26554"
  2479. },
  2480. "require": {
  2481. "drupal/config_filter": "^1 || ^2",
  2482. "drupal/core": "^8 || ^9 || ^10"
  2483. },
  2484. "type": "drupal-module",
  2485. "extra": {
  2486. "drupal": {
  2487. "version": "8.x-2.4",
  2488. "datestamp": "1676045435",
  2489. "security-coverage": {
  2490. "status": "covered",
  2491. "message": "Covered by Drupal's security advisory policy"
  2492. }
  2493. }
  2494. },
  2495. "notification-url": "https://packages.drupal.org/8/downloads",
  2496. "license": [
  2497. "GPL-2.0-or-later"
  2498. ],
  2499. "authors": [
  2500. {
  2501. "name": "Tommy Lynge Jørgensen",
  2502. "homepage": "https://www.drupal.org/u/tlyngej",
  2503. "email": "tlyngej@gmail.com",
  2504. "role": "Maintainer"
  2505. },
  2506. {
  2507. "name": "Fabian Bircher",
  2508. "homepage": "https://www.drupal.org/u/bircher",
  2509. "role": "Maintainer"
  2510. },
  2511. {
  2512. "name": "tlyngej",
  2513. "homepage": "https://www.drupal.org/user/413139"
  2514. }
  2515. ],
  2516. "description": "Ignore certain configuration during import.",
  2517. "homepage": "http://drupal.org/project/config_ignore",
  2518. "support": {
  2519. "source": "https://git.drupalcode.org/project/config_ignore",
  2520. "issues": "https://drupal.org/project/config_ignore",
  2521. "irc": "irc://irc.freenode.org/drupal-contribute"
  2522. }
  2523. },
  2524. {
  2525. "name": "drupal/config_pages",
  2526. "version": "2.15.0",
  2527. "source": {
  2528. "type": "git",
  2529. "url": "https://git.drupalcode.org/project/config_pages.git",
  2530. "reference": "8.x-2.15"
  2531. },
  2532. "dist": {
  2533. "type": "zip",
  2534. "url": "https://ftp.drupal.org/files/projects/config_pages-8.x-2.15.zip",
  2535. "reference": "8.x-2.15",
  2536. "shasum": "55d4a898c6df03295e26ce07930c6b7d06183287"
  2537. },
  2538. "require": {
  2539. "drupal/core": "^8.5 | ^9 || ^10"
  2540. },
  2541. "type": "drupal-module",
  2542. "extra": {
  2543. "drupal": {
  2544. "version": "8.x-2.15",
  2545. "datestamp": "1688847929",
  2546. "security-coverage": {
  2547. "status": "covered",
  2548. "message": "Covered by Drupal's security advisory policy"
  2549. }
  2550. },
  2551. "drush": {
  2552. "services": {
  2553. "drush.services.yml": "^9"
  2554. }
  2555. }
  2556. },
  2557. "notification-url": "https://packages.drupal.org/8/downloads",
  2558. "license": [
  2559. "GPL-2.0-or-later"
  2560. ],
  2561. "authors": [
  2562. {
  2563. "name": "m.krestnicov",
  2564. "homepage": "https://www.drupal.org/user/3193903"
  2565. },
  2566. {
  2567. "name": "Qwaygon",
  2568. "homepage": "https://www.drupal.org/user/636624"
  2569. },
  2570. {
  2571. "name": "shumer",
  2572. "homepage": "https://www.drupal.org/user/2297432"
  2573. }
  2574. ],
  2575. "description": "ConfigPages module",
  2576. "homepage": "http://drupal.org/project/config_pages",
  2577. "keywords": [
  2578. "Drupal"
  2579. ],
  2580. "support": {
  2581. "source": "http://cgit.drupalcode.org/config_pages",
  2582. "issues": "http://drupal.org/project/issues/config_pages"
  2583. }
  2584. },
  2585. {
  2586. "name": "drupal/config_update",
  2587. "version": "2.0.0-alpha3",
  2588. "source": {
  2589. "type": "git",
  2590. "url": "https://git.drupalcode.org/project/config_update.git",
  2591. "reference": "2.0.0-alpha3"
  2592. },
  2593. "dist": {
  2594. "type": "zip",
  2595. "url": "https://ftp.drupal.org/files/projects/config_update-2.0.0-alpha3.zip",
  2596. "reference": "2.0.0-alpha3",
  2597. "shasum": "c35e81e8fb77efdff5ddca3a87116ea0c522a7e2"
  2598. },
  2599. "require": {
  2600. "drupal/core": "^9.4 || ^10"
  2601. },
  2602. "type": "drupal-module",
  2603. "extra": {
  2604. "drupal": {
  2605. "version": "2.0.0-alpha3",
  2606. "datestamp": "1683807608",
  2607. "security-coverage": {
  2608. "status": "not-covered",
  2609. "message": "Alpha releases are not covered by Drupal security advisories."
  2610. }
  2611. }
  2612. },
  2613. "notification-url": "https://packages.drupal.org/8/downloads",
  2614. "license": [
  2615. "GPL-2.0-or-later"
  2616. ],
  2617. "authors": [
  2618. {
  2619. "name": "codebymikey",
  2620. "homepage": "https://www.drupal.org/user/3573206"
  2621. },
  2622. {
  2623. "name": "Pasqualle",
  2624. "homepage": "https://www.drupal.org/user/80733"
  2625. }
  2626. ],
  2627. "description": "Provides basic revert and update functionality for other modules.",
  2628. "homepage": "https://www.drupal.org/project/config_update",
  2629. "support": {
  2630. "source": "https://git.drupalcode.org/project/config_update"
  2631. }
  2632. },
  2633. {
  2634. "name": "drupal/content_as_config",
  2635. "version": "1.0.10",
  2636. "source": {
  2637. "type": "git",
  2638. "url": "https://git.drupalcode.org/project/content_as_config.git",
  2639. "reference": "1.0.10"
  2640. },
  2641. "dist": {
  2642. "type": "zip",
  2643. "url": "https://ftp.drupal.org/files/projects/content_as_config-1.0.10.zip",
  2644. "reference": "1.0.10",
  2645. "shasum": "3ed5dd56486a98b6832eb6fea257792d5af145b4"
  2646. },
  2647. "require": {
  2648. "drupal/core": "^9.3 || ^10"
  2649. },
  2650. "conflict": {
  2651. "drupal/structure_sync": "*"
  2652. },
  2653. "require-dev": {
  2654. "drupal/feeds": "*",
  2655. "drupal/group": "*"
  2656. },
  2657. "suggest": {
  2658. "drupal/markdown": "Render module help more elegantly."
  2659. },
  2660. "type": "drupal-module",
  2661. "extra": {
  2662. "drupal": {
  2663. "version": "1.0.10",
  2664. "datestamp": "1665066743",
  2665. "security-coverage": {
  2666. "status": "covered",
  2667. "message": "Covered by Drupal's security advisory policy"
  2668. }
  2669. },
  2670. "drush": {
  2671. "services": {
  2672. "drush.services.yml": "^9"
  2673. }
  2674. }
  2675. },
  2676. "notification-url": "https://packages.drupal.org/8/downloads",
  2677. "license": [
  2678. "GPL-2.0-or-later"
  2679. ],
  2680. "authors": [
  2681. {
  2682. "name": "Daniel Johnson (daniel_j)",
  2683. "homepage": "https://www.drupal.org/u/daniel_j",
  2684. "role": "Maintainer"
  2685. }
  2686. ],
  2687. "description": "Allows content entities to be exported/imported as configuration.",
  2688. "homepage": "https://drupal.org/project/content_as_config",
  2689. "keywords": [
  2690. "Configuration",
  2691. "Drupal"
  2692. ],
  2693. "support": {
  2694. "source": "https://git.drupalcode.org/project/content_as_config",
  2695. "issues": "https://www.drupal.org/project/issues/content_as_config"
  2696. }
  2697. },
  2698. {
  2699. "name": "drupal/content_lock",
  2700. "version": "2.3.0",
  2701. "source": {
  2702. "type": "git",
  2703. "url": "https://git.drupalcode.org/project/content_lock.git",
  2704. "reference": "8.x-2.3"
  2705. },
  2706. "dist": {
  2707. "type": "zip",
  2708. "url": "https://ftp.drupal.org/files/projects/content_lock-8.x-2.3.zip",
  2709. "reference": "8.x-2.3",
  2710. "shasum": "0e8343f82330899baef65aa85d9994154e29506f"
  2711. },
  2712. "require": {
  2713. "drupal/core": "^9.0 || ^10.0"
  2714. },
  2715. "type": "drupal-module",
  2716. "extra": {
  2717. "drupal": {
  2718. "version": "8.x-2.3",
  2719. "datestamp": "1668427342",
  2720. "security-coverage": {
  2721. "status": "covered",
  2722. "message": "Covered by Drupal's security advisory policy"
  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": "alexpott",
  2733. "homepage": "https://www.drupal.org/user/157725"
  2734. },
  2735. {
  2736. "name": "chr.fritsch",
  2737. "homepage": "https://www.drupal.org/user/2103716"
  2738. },
  2739. {
  2740. "name": "daniel.bosen",
  2741. "homepage": "https://www.drupal.org/user/404865"
  2742. },
  2743. {
  2744. "name": "ergonlogic",
  2745. "homepage": "https://www.drupal.org/user/368613"
  2746. },
  2747. {
  2748. "name": "mfb",
  2749. "homepage": "https://www.drupal.org/user/12302"
  2750. },
  2751. {
  2752. "name": "pandaski",
  2753. "homepage": "https://www.drupal.org/user/1987218"
  2754. },
  2755. {
  2756. "name": "volkerk",
  2757. "homepage": "https://www.drupal.org/user/57527"
  2758. }
  2759. ],
  2760. "description": "Prevents multiple users from trying to edit a content entity simultaneously to prevent edit conflicts.",
  2761. "homepage": "https://www.drupal.org/project/content_lock",
  2762. "support": {
  2763. "source": "https://git.drupalcode.org/project/content_lock"
  2764. }
  2765. },
  2766. {
  2767. "name": "drupal/context",
  2768. "version": "5.0.0-rc1",
  2769. "source": {
  2770. "type": "git",
  2771. "url": "https://git.drupalcode.org/project/context.git",
  2772. "reference": "5.0.0-rc1"
  2773. },
  2774. "dist": {
  2775. "type": "zip",
  2776. "url": "https://ftp.drupal.org/files/projects/context-5.0.0-rc1.zip",
  2777. "reference": "5.0.0-rc1",
  2778. "shasum": "ae1549bc5e5c75c0c6799b7b737d7391cfc5be73"
  2779. },
  2780. "require": {
  2781. "drupal/core": "^9.3 || ^10"
  2782. },
  2783. "type": "drupal-module",
  2784. "extra": {
  2785. "drupal": {
  2786. "version": "5.0.0-rc1",
  2787. "datestamp": "1677054769",
  2788. "security-coverage": {
  2789. "status": "not-covered",
  2790. "message": "RC releases are not covered by Drupal security advisories."
  2791. }
  2792. }
  2793. },
  2794. "notification-url": "https://packages.drupal.org/8/downloads",
  2795. "license": [
  2796. "MIT"
  2797. ],
  2798. "authors": [
  2799. {
  2800. "name": "Christoffer Palm",
  2801. "homepage": "http://www.oddhill.se/",
  2802. "email": "christoffer.palm@oddhill.se",
  2803. "role": "Developer"
  2804. },
  2805. {
  2806. "name": "boshtian",
  2807. "homepage": "https://www.drupal.org/user/1773456"
  2808. },
  2809. {
  2810. "name": "colan",
  2811. "homepage": "https://www.drupal.org/user/58704"
  2812. },
  2813. {
  2814. "name": "emanaton",
  2815. "homepage": "https://www.drupal.org/user/120853"
  2816. },
  2817. {
  2818. "name": "febbraro",
  2819. "homepage": "https://www.drupal.org/user/43670"
  2820. },
  2821. {
  2822. "name": "fizk",
  2823. "homepage": "https://www.drupal.org/user/473174"
  2824. },
  2825. {
  2826. "name": "hass",
  2827. "homepage": "https://www.drupal.org/user/85918"
  2828. },
  2829. {
  2830. "name": "hefox",
  2831. "homepage": "https://www.drupal.org/user/426416"
  2832. },
  2833. {
  2834. "name": "jmiccolis",
  2835. "homepage": "https://www.drupal.org/user/31731"
  2836. },
  2837. {
  2838. "name": "Kristen Pol",
  2839. "homepage": "https://www.drupal.org/user/8389"
  2840. },
  2841. {
  2842. "name": "nedjo",
  2843. "homepage": "https://www.drupal.org/user/4481"
  2844. },
  2845. {
  2846. "name": "NormySan",
  2847. "homepage": "https://www.drupal.org/user/112352"
  2848. },
  2849. {
  2850. "name": "patricksettle",
  2851. "homepage": "https://www.drupal.org/user/26618"
  2852. },
  2853. {
  2854. "name": "paulocs",
  2855. "homepage": "https://www.drupal.org/user/3640109"
  2856. },
  2857. {
  2858. "name": "Steven Jones",
  2859. "homepage": "https://www.drupal.org/user/99644"
  2860. },
  2861. {
  2862. "name": "tekante",
  2863. "homepage": "https://www.drupal.org/user/640024"
  2864. },
  2865. {
  2866. "name": "yhahn",
  2867. "homepage": "https://www.drupal.org/user/264833"
  2868. }
  2869. ],
  2870. "description": "Manage contextual conditions and reactions for different portions of your site.",
  2871. "homepage": "https://github.com/oddhill/context",
  2872. "keywords": [
  2873. "Drupal",
  2874. "block",
  2875. "conditions",
  2876. "context",
  2877. "visibility"
  2878. ],
  2879. "support": {
  2880. "source": "https://github.com/oddhill/context",
  2881. "issues": "https://github.com/oddhill/context/issues",
  2882. "docs": "https://github.com/oddhill/context"
  2883. }
  2884. },
  2885. {
  2886. "name": "drupal/core",
  2887. "version": "10.1.6",
  2888. "source": {
  2889. "type": "git",
  2890. "url": "https://github.com/drupal/core.git",
  2891. "reference": "33695caf467e3e1e8c75d42215df57bee31be9ec"
  2892. },
  2893. "dist": {
  2894. "type": "zip",
  2895. "url": "https://api.github.com/repos/drupal/core/zipball/33695caf467e3e1e8c75d42215df57bee31be9ec",
  2896. "reference": "33695caf467e3e1e8c75d42215df57bee31be9ec",
  2897. "shasum": ""
  2898. },
  2899. "require": {
  2900. "asm89/stack-cors": "^2.1",
  2901. "composer-runtime-api": "^2.1",
  2902. "composer/semver": "^3.3",
  2903. "doctrine/annotations": "^1.14",
  2904. "egulias/email-validator": "^3.2.1|^4.0",
  2905. "ext-date": "*",
  2906. "ext-dom": "*",
  2907. "ext-filter": "*",
  2908. "ext-gd": "*",
  2909. "ext-hash": "*",
  2910. "ext-json": "*",
  2911. "ext-pcre": "*",
  2912. "ext-pdo": "*",
  2913. "ext-session": "*",
  2914. "ext-simplexml": "*",
  2915. "ext-spl": "*",
  2916. "ext-tokenizer": "*",
  2917. "ext-xml": "*",
  2918. "guzzlehttp/guzzle": "^7.5",
  2919. "guzzlehttp/psr7": "^2.4.5",
  2920. "masterminds/html5": "^2.7",
  2921. "mck89/peast": "^1.14",
  2922. "pear/archive_tar": "^1.4.14",
  2923. "php": ">=8.1.0",
  2924. "psr/log": "^3.0",
  2925. "sebastian/diff": "^4",
  2926. "symfony/console": "^6.3",
  2927. "symfony/dependency-injection": "^6.3",
  2928. "symfony/event-dispatcher": "^6.3",
  2929. "symfony/http-foundation": "^6.3",
  2930. "symfony/http-kernel": "^6.3",
  2931. "symfony/mime": "^6.3",
  2932. "symfony/polyfill-iconv": "^1.26",
  2933. "symfony/process": "^6.3",
  2934. "symfony/psr-http-message-bridge": "^2.1",
  2935. "symfony/routing": "^6.3",
  2936. "symfony/serializer": "^6.3",
  2937. "symfony/validator": "^6.3",
  2938. "symfony/yaml": "^6.3",
  2939. "twig/twig": "^3.5.0"
  2940. },
  2941. "conflict": {
  2942. "drush/drush": "<8.1.10"
  2943. },
  2944. "replace": {
  2945. "drupal/core-annotation": "self.version",
  2946. "drupal/core-assertion": "self.version",
  2947. "drupal/core-class-finder": "self.version",
  2948. "drupal/core-datetime": "self.version",
  2949. "drupal/core-dependency-injection": "self.version",
  2950. "drupal/core-diff": "self.version",
  2951. "drupal/core-discovery": "self.version",
  2952. "drupal/core-event-dispatcher": "self.version",
  2953. "drupal/core-file-cache": "self.version",
  2954. "drupal/core-file-security": "self.version",
  2955. "drupal/core-filesystem": "self.version",
  2956. "drupal/core-front-matter": "self.version",
  2957. "drupal/core-gettext": "self.version",
  2958. "drupal/core-graph": "self.version",
  2959. "drupal/core-http-foundation": "self.version",
  2960. "drupal/core-php-storage": "self.version",
  2961. "drupal/core-plugin": "self.version",
  2962. "drupal/core-proxy-builder": "self.version",
  2963. "drupal/core-render": "self.version",
  2964. "drupal/core-serialization": "self.version",
  2965. "drupal/core-transliteration": "self.version",
  2966. "drupal/core-utility": "self.version",
  2967. "drupal/core-uuid": "self.version",
  2968. "drupal/core-version": "self.version"
  2969. },
  2970. "suggest": {
  2971. "ext-zip": "Needed to extend the plugin.manager.archiver service capability with the handling of files in the ZIP format."
  2972. },
  2973. "type": "drupal-core",
  2974. "extra": {
  2975. "drupal-scaffold": {
  2976. "file-mapping": {
  2977. "[project-root]/.editorconfig": "assets/scaffold/files/editorconfig",
  2978. "[project-root]/.gitattributes": "assets/scaffold/files/gitattributes",
  2979. "[web-root]/.csslintrc": "assets/scaffold/files/csslintrc",
  2980. "[web-root]/.eslintignore": "assets/scaffold/files/eslintignore",
  2981. "[web-root]/.eslintrc.json": "assets/scaffold/files/eslintrc.json",
  2982. "[web-root]/.ht.router.php": "assets/scaffold/files/ht.router.php",
  2983. "[web-root]/.htaccess": "assets/scaffold/files/htaccess",
  2984. "[web-root]/example.gitignore": "assets/scaffold/files/example.gitignore",
  2985. "[web-root]/index.php": "assets/scaffold/files/index.php",
  2986. "[web-root]/INSTALL.txt": "assets/scaffold/files/drupal.INSTALL.txt",
  2987. "[web-root]/README.md": "assets/scaffold/files/drupal.README.md",
  2988. "[web-root]/robots.txt": "assets/scaffold/files/robots.txt",
  2989. "[web-root]/update.php": "assets/scaffold/files/update.php",
  2990. "[web-root]/web.config": "assets/scaffold/files/web.config",
  2991. "[web-root]/sites/README.txt": "assets/scaffold/files/sites.README.txt",
  2992. "[web-root]/sites/development.services.yml": "assets/scaffold/files/development.services.yml",
  2993. "[web-root]/sites/example.settings.local.php": "assets/scaffold/files/example.settings.local.php",
  2994. "[web-root]/sites/example.sites.php": "assets/scaffold/files/example.sites.php",
  2995. "[web-root]/sites/default/default.services.yml": "assets/scaffold/files/default.services.yml",
  2996. "[web-root]/sites/default/default.settings.php": "assets/scaffold/files/default.settings.php",
  2997. "[web-root]/modules/README.txt": "assets/scaffold/files/modules.README.txt",
  2998. "[web-root]/profiles/README.txt": "assets/scaffold/files/profiles.README.txt",
  2999. "[web-root]/themes/README.txt": "assets/scaffold/files/themes.README.txt"
  3000. }
  3001. }
  3002. },
  3003. "autoload": {
  3004. "files": [
  3005. "includes/bootstrap.inc"
  3006. ],
  3007. "psr-4": {
  3008. "Drupal\\Core\\": "lib/Drupal/Core",
  3009. "Drupal\\Component\\": "lib/Drupal/Component"
  3010. },
  3011. "classmap": [
  3012. "lib/Drupal.php",
  3013. "lib/Drupal/Component/DependencyInjection/Container.php",
  3014. "lib/Drupal/Component/DependencyInjection/PhpArrayContainer.php",
  3015. "lib/Drupal/Component/FileCache/FileCacheFactory.php",
  3016. "lib/Drupal/Component/Utility/Timer.php",
  3017. "lib/Drupal/Component/Utility/Unicode.php",
  3018. "lib/Drupal/Core/Cache/Cache.php",
  3019. "lib/Drupal/Core/Cache/CacheBackendInterface.php",
  3020. "lib/Drupal/Core/Cache/CacheTagsChecksumInterface.php",
  3021. "lib/Drupal/Core/Cache/CacheTagsChecksumTrait.php",
  3022. "lib/Drupal/Core/Cache/CacheTagsInvalidatorInterface.php",
  3023. "lib/Drupal/Core/Cache/DatabaseBackend.php",
  3024. "lib/Drupal/Core/Cache/DatabaseCacheTagsChecksum.php",
  3025. "lib/Drupal/Core/Database/Connection.php",
  3026. "lib/Drupal/Core/Database/Database.php",
  3027. "lib/Drupal/Core/Database/StatementInterface.php",
  3028. "lib/Drupal/Core/DependencyInjection/Container.php",
  3029. "lib/Drupal/Core/DrupalKernel.php",
  3030. "lib/Drupal/Core/DrupalKernelInterface.php",
  3031. "lib/Drupal/Core/Installer/InstallerRedirectTrait.php",
  3032. "lib/Drupal/Core/Site/Settings.php"
  3033. ]
  3034. },
  3035. "notification-url": "https://packagist.org/downloads/",
  3036. "license": [
  3037. "GPL-2.0-or-later"
  3038. ],
  3039. "description": "Drupal is an open source content management platform powering millions of websites and applications.",
  3040. "support": {
  3041. "source": "https://github.com/drupal/core/tree/10.1.6"
  3042. },
  3043. "time": "2023-11-01T11:59:20+00:00"
  3044. },
  3045. {
  3046. "name": "drupal/core-composer-scaffold",
  3047. "version": "10.1.6",
  3048. "source": {
  3049. "type": "git",
  3050. "url": "https://github.com/drupal/core-composer-scaffold.git",
  3051. "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51"
  3052. },
  3053. "dist": {
  3054. "type": "zip",
  3055. "url": "https://api.github.com/repos/drupal/core-composer-scaffold/zipball/1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51",
  3056. "reference": "1ccd7db5ff8a5425b5bbba9b9a05e366363c0a51",
  3057. "shasum": ""
  3058. },
  3059. "require": {
  3060. "composer-plugin-api": "^2",
  3061. "php": ">=7.3.0"
  3062. },
  3063. "conflict": {
  3064. "drupal-composer/drupal-scaffold": "*"
  3065. },
  3066. "require-dev": {
  3067. "composer/composer": "^1.8@stable"
  3068. },
  3069. "type": "composer-plugin",
  3070. "extra": {
  3071. "class": "Drupal\\Composer\\Plugin\\Scaffold\\Plugin",
  3072. "branch-alias": {
  3073. "dev-master": "1.0.x-dev"
  3074. }
  3075. },
  3076. "autoload": {
  3077. "psr-4": {
  3078. "Drupal\\Composer\\Plugin\\Scaffold\\": ""
  3079. }
  3080. },
  3081. "notification-url": "https://packagist.org/downloads/",
  3082. "license": [
  3083. "GPL-2.0-or-later"
  3084. ],
  3085. "description": "A flexible Composer project scaffold builder.",
  3086. "homepage": "https://www.drupal.org/project/drupal",
  3087. "keywords": [
  3088. "drupal"
  3089. ],
  3090. "support": {
  3091. "source": "https://github.com/drupal/core-composer-scaffold/tree/10.1.6"
  3092. },
  3093. "time": "2023-04-30T16:15:32+00:00"
  3094. },
  3095. {
  3096. "name": "drupal/core-project-message",
  3097. "version": "10.1.6",
  3098. "source": {
  3099. "type": "git",
  3100. "url": "https://github.com/drupal/core-project-message.git",
  3101. "reference": "59b4475f01debd9a0f173938a06189982c8ebffd"
  3102. },
  3103. "dist": {
  3104. "type": "zip",
  3105. "url": "https://api.github.com/repos/drupal/core-project-message/zipball/59b4475f01debd9a0f173938a06189982c8ebffd",
  3106. "reference": "59b4475f01debd9a0f173938a06189982c8ebffd",
  3107. "shasum": ""
  3108. },
  3109. "require": {
  3110. "composer-plugin-api": "^2",
  3111. "php": ">=7.3.0"
  3112. },
  3113. "type": "composer-plugin",
  3114. "extra": {
  3115. "class": "Drupal\\Composer\\Plugin\\ProjectMessage\\MessagePlugin"
  3116. },
  3117. "autoload": {
  3118. "psr-4": {
  3119. "Drupal\\Composer\\Plugin\\ProjectMessage\\": "."
  3120. }
  3121. },
  3122. "notification-url": "https://packagist.org/downloads/",
  3123. "license": [
  3124. "GPL-2.0-or-later"
  3125. ],
  3126. "description": "Adds a message after Composer installation.",
  3127. "homepage": "https://www.drupal.org/project/drupal",
  3128. "keywords": [
  3129. "drupal"
  3130. ],
  3131. "support": {
  3132. "source": "https://github.com/drupal/core-project-message/tree/10.1.6"
  3133. },
  3134. "time": "2022-07-01T08:32:39+00:00"
  3135. },
  3136. {
  3137. "name": "drupal/core-recommended",
  3138. "version": "10.1.6",
  3139. "source": {
  3140. "type": "git",
  3141. "url": "https://github.com/drupal/core-recommended.git",
  3142. "reference": "13f5968854fe8bc02e659d8a4facc04a1a576ce5"
  3143. },
  3144. "dist": {
  3145. "type": "zip",
  3146. "url": "https://api.github.com/repos/drupal/core-recommended/zipball/13f5968854fe8bc02e659d8a4facc04a1a576ce5",
  3147. "reference": "13f5968854fe8bc02e659d8a4facc04a1a576ce5",
  3148. "shasum": ""
  3149. },
  3150. "require": {
  3151. "asm89/stack-cors": "~v2.1.1",
  3152. "composer/semver": "~3.3.2",
  3153. "doctrine/annotations": "~1.14.3",
  3154. "doctrine/deprecations": "~v1.1.1",
  3155. "doctrine/lexer": "~2.1.0",
  3156. "drupal/core": "10.1.6",
  3157. "egulias/email-validator": "~4.0.1",
  3158. "guzzlehttp/guzzle": "~7.7.0",
  3159. "guzzlehttp/psr7": "~2.5.0",
  3160. "masterminds/html5": "~2.8.0",
  3161. "mck89/peast": "~v1.15.4",
  3162. "pear/archive_tar": "~1.4.14",
  3163. "pear/console_getopt": "~v1.4.3",
  3164. "pear/pear-core-minimal": "~v1.10.13",
  3165. "pear/pear_exception": "~v1.0.2",
  3166. "psr/cache": "~3.0.0",
  3167. "psr/container": "~2.0.2",
  3168. "psr/event-dispatcher": "~1.0.0",
  3169. "psr/http-client": "~1.0.2",
  3170. "psr/http-factory": "~1.0.2",
  3171. "psr/log": "~3.0.0",
  3172. "ralouphie/getallheaders": "~3.0.3",
  3173. "sebastian/diff": "~4.0.5",
  3174. "symfony/console": "~v6.3.0",
  3175. "symfony/dependency-injection": "~v6.3.0",
  3176. "symfony/deprecation-contracts": "~v3.3.0",
  3177. "symfony/error-handler": "~v6.3.0",
  3178. "symfony/event-dispatcher": "~v6.3.0",
  3179. "symfony/event-dispatcher-contracts": "~v3.3.0",
  3180. "symfony/http-foundation": "~v6.3.0",
  3181. "symfony/http-kernel": "~v6.3.0",
  3182. "symfony/mime": "~v6.3.0",
  3183. "symfony/polyfill-ctype": "~v1.27.0",
  3184. "symfony/polyfill-iconv": "~v1.27.0",
  3185. "symfony/polyfill-intl-grapheme": "~v1.27.0",
  3186. "symfony/polyfill-intl-idn": "~v1.27.0",
  3187. "symfony/polyfill-intl-normalizer": "~v1.27.0",
  3188. "symfony/polyfill-mbstring": "~v1.27.0",
  3189. "symfony/polyfill-php83": "~v1.27.0",
  3190. "symfony/process": "~v6.3.0",
  3191. "symfony/psr-http-message-bridge": "~v2.2.0",
  3192. "symfony/routing": "~v6.3.0",
  3193. "symfony/serializer": "~v6.3.0",
  3194. "symfony/service-contracts": "~v3.3.0",
  3195. "symfony/string": "~v6.3.0",
  3196. "symfony/translation-contracts": "~v3.3.0",
  3197. "symfony/validator": "~v6.3.0",
  3198. "symfony/var-dumper": "~v6.3.0",
  3199. "symfony/var-exporter": "~v6.3.0",
  3200. "symfony/yaml": "~v6.3.0",
  3201. "twig/twig": "~v3.6.0"
  3202. },
  3203. "conflict": {
  3204. "webflo/drupal-core-strict": "*"
  3205. },
  3206. "type": "metapackage",
  3207. "notification-url": "https://packagist.org/downloads/",
  3208. "license": [
  3209. "GPL-2.0-or-later"
  3210. ],
  3211. "description": "Core and its dependencies with known-compatible minor versions. Require this project INSTEAD OF drupal/core.",
  3212. "support": {
  3213. "source": "https://github.com/drupal/core-recommended/tree/10.1.6"
  3214. },
  3215. "time": "2023-11-01T11:59:20+00:00"
  3216. },
  3217. {
  3218. "name": "drupal/cshs",
  3219. "version": "4.0.0",
  3220. "source": {
  3221. "type": "git",
  3222. "url": "https://git.drupalcode.org/project/cshs.git",
  3223. "reference": "4.0.0"
  3224. },
  3225. "dist": {
  3226. "type": "zip",
  3227. "url": "https://ftp.drupal.org/files/projects/cshs-4.0.0.zip",
  3228. "reference": "4.0.0",
  3229. "shasum": "ebcd3932481aba4004f4e2078038cdc7293738b0"
  3230. },
  3231. "require": {
  3232. "drupal/core": "^9 || ^10",
  3233. "php": ">=8.0"
  3234. },
  3235. "type": "drupal-module",
  3236. "extra": {
  3237. "drupal": {
  3238. "version": "4.0.0",
  3239. "datestamp": "1668457722",
  3240. "security-coverage": {
  3241. "status": "covered",
  3242. "message": "Covered by Drupal's security advisory policy"
  3243. }
  3244. }
  3245. },
  3246. "notification-url": "https://packages.drupal.org/8/downloads",
  3247. "license": [
  3248. "GPL-2.0-or-later"
  3249. ],
  3250. "authors": [
  3251. {
  3252. "name": "Walter Jenner",
  3253. "homepage": "https://drupal.org/u/valderama"
  3254. },
  3255. {
  3256. "name": "Sergii Bondarenko",
  3257. "homepage": "https://drupal.org/u/BR0kEN",
  3258. "email": "sb@firstvector.org"
  3259. },
  3260. {
  3261. "name": "Daneel Cruz",
  3262. "homepage": "https://drupal.org/u/daneelcm"
  3263. },
  3264. {
  3265. "name": "Purushotam Rai",
  3266. "homepage": "https://drupal.org/u/purushotam.rai"
  3267. }
  3268. ],
  3269. "description": "A simple client-side hierarchical select widget for taxonomy terms.",
  3270. "homepage": "https://www.drupal.org/project/cshs",
  3271. "keywords": [
  3272. "client-side-select",
  3273. "hierarchical-select",
  3274. "module",
  3275. "select",
  3276. "taxonomy"
  3277. ],
  3278. "support": {
  3279. "source": "https://git.drupalcode.org/project/cshs",
  3280. "issues": "https://www.drupal.org/project/issues/cshs"
  3281. }
  3282. },
  3283. {
  3284. "name": "drupal/ctools",
  3285. "version": "3.14.0",
  3286. "source": {
  3287. "type": "git",
  3288. "url": "https://git.drupalcode.org/project/ctools.git",
  3289. "reference": "8.x-3.14"
  3290. },
  3291. "dist": {
  3292. "type": "zip",
  3293. "url": "https://ftp.drupal.org/files/projects/ctools-8.x-3.14.zip",
  3294. "reference": "8.x-3.14",
  3295. "shasum": "8895a8e47199b458013bc153ceafa0b1495f33c1"
  3296. },
  3297. "require": {
  3298. "drupal/core": "^9.3 || ^10"
  3299. },
  3300. "type": "drupal-module",
  3301. "extra": {
  3302. "drupal": {
  3303. "version": "8.x-3.14",
  3304. "datestamp": "1684299793",
  3305. "security-coverage": {
  3306. "status": "covered",
  3307. "message": "Covered by Drupal's security advisory policy"
  3308. }
  3309. },
  3310. "branch-alias": {
  3311. "dev-8.x-3.x": "3.x-dev"
  3312. }
  3313. },
  3314. "notification-url": "https://packages.drupal.org/8/downloads",
  3315. "license": [
  3316. "GPL-2.0-or-later"
  3317. ],
  3318. "authors": [
  3319. {
  3320. "name": "Kris Vanderwater (EclipseGc)",
  3321. "homepage": "https://www.drupal.org/u/eclipsegc",
  3322. "role": "Maintainer"
  3323. },
  3324. {
  3325. "name": "Jakob Perry (japerry)",
  3326. "homepage": "https://www.drupal.org/u/japerry",
  3327. "role": "Maintainer"
  3328. },
  3329. {
  3330. "name": "Tim Plunkett (tim.plunkett)",
  3331. "homepage": "https://www.drupal.org/u/timplunkett",
  3332. "role": "Maintainer"
  3333. },
  3334. {
  3335. "name": "James Gilliland (neclimdul)",
  3336. "homepage": "https://www.drupal.org/u/neclimdul",
  3337. "role": "Maintainer"
  3338. },
  3339. {
  3340. "name": "Daniel Wehner (dawehner)",
  3341. "homepage": "https://www.drupal.org/u/dawehner",
  3342. "role": "Maintainer"
  3343. },
  3344. {
  3345. "name": "joelpittet",
  3346. "homepage": "https://www.drupal.org/user/160302"
  3347. },
  3348. {
  3349. "name": "merlinofchaos",
  3350. "homepage": "https://www.drupal.org/user/26979"
  3351. },
  3352. {
  3353. "name": "neclimdul",
  3354. "homepage": "https://www.drupal.org/user/48673"
  3355. },
  3356. {
  3357. "name": "sdboyer",
  3358. "homepage": "https://www.drupal.org/user/146719"
  3359. },
  3360. {
  3361. "name": "sun",
  3362. "homepage": "https://www.drupal.org/user/54136"
  3363. },
  3364. {
  3365. "name": "tim.plunkett",
  3366. "homepage": "https://www.drupal.org/user/241634"
  3367. }
  3368. ],
  3369. "description": "Provides a number of utility and helper APIs for Drupal developers and site builders.",
  3370. "homepage": "https://www.drupal.org/project/ctools",
  3371. "support": {
  3372. "source": "https://git.drupalcode.org/project/ctools",
  3373. "issues": "https://www.drupal.org/project/issues/ctools"
  3374. }
  3375. },
  3376. {
  3377. "name": "drupal/date_range_formatter",
  3378. "version": "dev-9.0.x",
  3379. "source": {
  3380. "type": "git",
  3381. "url": "https://git.drupalcode.org/project/date_range_formatter.git",
  3382. "reference": "8808a9c324c781b4a7cae9ea5f16017a6b8f63f7"
  3383. },
  3384. "require": {
  3385. "drupal/core": "^8 || ^9 || ^10"
  3386. },
  3387. "type": "drupal-module",
  3388. "extra": {
  3389. "branch-alias": {
  3390. "dev-9.0.x": "9.0.x-dev"
  3391. },
  3392. "drupal": {
  3393. "version": "9.0.x-dev",
  3394. "datestamp": "1661511425",
  3395. "security-coverage": {
  3396. "status": "not-covered",
  3397. "message": "Dev releases are not covered by Drupal security advisories."
  3398. }
  3399. }
  3400. },
  3401. "notification-url": "https://packages.drupal.org/8/downloads",
  3402. "license": [
  3403. "GPL-2.0-or-later"
  3404. ],
  3405. "authors": [
  3406. {
  3407. "name": "maximpodorov",
  3408. "homepage": "https://www.drupal.org/user/515310"
  3409. },
  3410. {
  3411. "name": "sudishth",
  3412. "homepage": "https://www.drupal.org/user/1440562"
  3413. }
  3414. ],
  3415. "description": "Formats date ranges.",
  3416. "homepage": "https://www.drupal.org/project/date_range_formatter",
  3417. "support": {
  3418. "source": "https://git.drupalcode.org/project/date_range_formatter"
  3419. }
  3420. },
  3421. {
  3422. "name": "drupal/devel",
  3423. "version": "5.1.2",
  3424. "source": {
  3425. "type": "git",
  3426. "url": "https://git.drupalcode.org/project/devel.git",
  3427. "reference": "5.1.2"
  3428. },
  3429. "dist": {
  3430. "type": "zip",
  3431. "url": "https://ftp.drupal.org/files/projects/devel-5.1.2.zip",
  3432. "reference": "5.1.2",
  3433. "shasum": "9b35e38bf2043bf87f88585b3d9100f38da8f07f"
  3434. },
  3435. "require": {
  3436. "doctrine/common": "^2.7 || ^3.4",
  3437. "drupal/core": "^9 || ^10",
  3438. "php": ">=7.4",
  3439. "symfony/var-dumper": "^4 || ^5 || ^6"
  3440. },
  3441. "conflict": {
  3442. "kint-php/kint": "<3"
  3443. },
  3444. "require-dev": {
  3445. "drush/drush": "^11"
  3446. },
  3447. "suggest": {
  3448. "kint-php/kint": "Kint provides an informative display of arrays/objects. Useful for debugging and developing."
  3449. },
  3450. "type": "drupal-module",
  3451. "extra": {
  3452. "drupal": {
  3453. "version": "5.1.2",
  3454. "datestamp": "1686161028",
  3455. "security-coverage": {
  3456. "status": "covered",
  3457. "message": "Covered by Drupal's security advisory policy"
  3458. }
  3459. },
  3460. "drush": {
  3461. "services": {
  3462. "drush.services.yml": "^9 || ^10 || ^11"
  3463. }
  3464. }
  3465. },
  3466. "notification-url": "https://packages.drupal.org/8/downloads",
  3467. "license": [
  3468. "GPL-2.0-or-later"
  3469. ],
  3470. "authors": [
  3471. {
  3472. "name": "drupalspoons",
  3473. "homepage": "https://www.drupal.org/user/3647684"
  3474. },
  3475. {
  3476. "name": "moshe weitzman",
  3477. "homepage": "https://www.drupal.org/user/23"
  3478. }
  3479. ],
  3480. "description": "Various blocks, pages, and functions for developers.",
  3481. "homepage": "https://www.drupal.org/project/devel",
  3482. "support": {
  3483. "source": "https://gitlab.com/drupalspoons/devel",
  3484. "issues": "https://gitlab.com/drupalspoons/devel/-/issues",
  3485. "slack": "https://drupal.slack.com/archives/C012WAW1MH6"
  3486. }
  3487. },
  3488. {
  3489. "name": "drupal/devel_kint_extras",
  3490. "version": "1.1.0",
  3491. "source": {
  3492. "type": "git",
  3493. "url": "https://git.drupalcode.org/project/devel_kint_extras.git",
  3494. "reference": "1.1.0"
  3495. },
  3496. "dist": {
  3497. "type": "zip",
  3498. "url": "https://ftp.drupal.org/files/projects/devel_kint_extras-1.1.0.zip",
  3499. "reference": "1.1.0",
  3500. "shasum": "c9f485f6f2562710d2bd2c62f0073aa0049f5c8c"
  3501. },
  3502. "require": {
  3503. "drupal/core": "^9 || ^10",
  3504. "drupal/devel": "^4.0 || ^5.0",
  3505. "kint-php/kint": "^3.3 || ^4.0"
  3506. },
  3507. "type": "drupal-module",
  3508. "extra": {
  3509. "drupal": {
  3510. "version": "1.1.0",
  3511. "datestamp": "1663760998",
  3512. "security-coverage": {
  3513. "status": "covered",
  3514. "message": "Covered by Drupal's security advisory policy"
  3515. }
  3516. }
  3517. },
  3518. "notification-url": "https://packages.drupal.org/8/downloads",
  3519. "license": [
  3520. "GPL-2.0-or-later"
  3521. ],
  3522. "authors": [
  3523. {
  3524. "name": "Jan Chojnacki",
  3525. "homepage": "https://www.drupal.org/u/janchojnacki"
  3526. },
  3527. {
  3528. "name": "Other contributors",
  3529. "homepage": "https://www.drupal.org/node/3164492/committers"
  3530. }
  3531. ],
  3532. "description": "Shows methods and statics available for an object when using Kint with Devel",
  3533. "homepage": "https://www.drupal.org/project/devel_kint_extras",
  3534. "support": {
  3535. "source": "http://git.drupal.org/project/devel_kint_extras.git",
  3536. "issues": "https://www.drupal.org/project/issues/devel_kint_extras",
  3537. "chat": "irc://irc.freenode.org/drupal-contribute"
  3538. }
  3539. },
  3540. {
  3541. "name": "drupal/email_registration",
  3542. "version": "1.3.0",
  3543. "source": {
  3544. "type": "git",
  3545. "url": "https://git.drupalcode.org/project/email_registration.git",
  3546. "reference": "8.x-1.3"
  3547. },
  3548. "dist": {
  3549. "type": "zip",
  3550. "url": "https://ftp.drupal.org/files/projects/email_registration-8.x-1.3.zip",
  3551. "reference": "8.x-1.3",
  3552. "shasum": "6fe425246511e29dfef4294139c8704aec16cbec"
  3553. },
  3554. "require": {
  3555. "drupal/core": "^9.1 || ^10"
  3556. },
  3557. "conflict": {
  3558. "drupal/commerce": "<2.12"
  3559. },
  3560. "require-dev": {
  3561. "drupal/commerce": "^2.0",
  3562. "drupal/token": "*"
  3563. },
  3564. "type": "drupal-module",
  3565. "extra": {
  3566. "drupal": {
  3567. "version": "8.x-1.3",
  3568. "datestamp": "1697182609",
  3569. "security-coverage": {
  3570. "status": "covered",
  3571. "message": "Covered by Drupal's security advisory policy"
  3572. }
  3573. }
  3574. },
  3575. "notification-url": "https://packages.drupal.org/8/downloads",
  3576. "license": [
  3577. "GPL-2.0-or-later"
  3578. ],
  3579. "authors": [
  3580. {
  3581. "name": "Greg Knaddison (greggles)",
  3582. "homepage": "https://www.drupal.org/u/greggles",
  3583. "role": "Maintainer"
  3584. },
  3585. {
  3586. "name": "Andrey Postnikov (andypost)",
  3587. "homepage": "https://www.drupal.org/u/andypost",
  3588. "role": "Maintainer"
  3589. },
  3590. {
  3591. "name": "Chris Herberte",
  3592. "homepage": "https://www.drupal.org/u/chris-herberte",
  3593. "role": "Maintainer"
  3594. },
  3595. {
  3596. "name": "Moshe Weitzman (moshe weitzman)",
  3597. "homepage": "https://www.drupal.org/u/moshe-weitzman",
  3598. "role": "Maintainer"
  3599. },
  3600. {
  3601. "name": "Grevil",
  3602. "homepage": "https://www.drupal.org/user/3668491"
  3603. },
  3604. {
  3605. "name": "moshe weitzman",
  3606. "homepage": "https://www.drupal.org/user/23"
  3607. }
  3608. ],
  3609. "description": "Allows users to register with an email address as their username.",
  3610. "homepage": "https://www.drupal.org/project/email_registration",
  3611. "support": {
  3612. "source": "https://git.drupalcode.org/project/email_registration",
  3613. "issues": "http://drupal.org/project/issues/email_registration"
  3614. }
  3615. },
  3616. {
  3617. "name": "drupal/embed",
  3618. "version": "1.7.0",
  3619. "source": {
  3620. "type": "git",
  3621. "url": "https://git.drupalcode.org/project/embed.git",
  3622. "reference": "8.x-1.7"
  3623. },
  3624. "dist": {
  3625. "type": "zip",
  3626. "url": "https://ftp.drupal.org/files/projects/embed-8.x-1.7.zip",
  3627. "reference": "8.x-1.7",
  3628. "shasum": "b7ca4264be51038f947d26b6725fc0446b224f60"
  3629. },
  3630. "require": {
  3631. "drupal/core": "^9.3 | ^10"
  3632. },
  3633. "require-dev": {
  3634. "drupal/ckeditor": "*"
  3635. },
  3636. "type": "drupal-module",
  3637. "extra": {
  3638. "drupal": {
  3639. "version": "8.x-1.7",
  3640. "datestamp": "1697642867",
  3641. "security-coverage": {
  3642. "status": "covered",
  3643. "message": "Covered by Drupal's security advisory policy"
  3644. }
  3645. }
  3646. },
  3647. "notification-url": "https://packages.drupal.org/8/downloads",
  3648. "license": [
  3649. "GPL-2.0-or-later"
  3650. ],
  3651. "authors": [
  3652. {
  3653. "name": "cs_shadow",
  3654. "homepage": "https://www.drupal.org/user/2828287"
  3655. },
  3656. {
  3657. "name": "Dave Reid",
  3658. "homepage": "https://www.drupal.org/user/53892"
  3659. },
  3660. {
  3661. "name": "Devin Carlson",
  3662. "homepage": "https://www.drupal.org/user/290182"
  3663. },
  3664. {
  3665. "name": "Drupal Media Team",
  3666. "homepage": "https://www.drupal.org/user/3260690"
  3667. },
  3668. {
  3669. "name": "phenaproxima",
  3670. "homepage": "https://www.drupal.org/user/205645"
  3671. },
  3672. {
  3673. "name": "slashrsm",
  3674. "homepage": "https://www.drupal.org/user/744628"
  3675. }
  3676. ],
  3677. "description": "Provides a framework for different types of embeds in text editors.",
  3678. "homepage": "https://www.drupal.org/project/embed",
  3679. "support": {
  3680. "source": "https://git.drupalcode.org/project/embed"
  3681. }
  3682. },
  3683. {
  3684. "name": "drupal/entity",
  3685. "version": "1.4.0",
  3686. "source": {
  3687. "type": "git",
  3688. "url": "https://git.drupalcode.org/project/entity.git",
  3689. "reference": "8.x-1.4"
  3690. },
  3691. "dist": {
  3692. "type": "zip",
  3693. "url": "https://ftp.drupal.org/files/projects/entity-8.x-1.4.zip",
  3694. "reference": "8.x-1.4",
  3695. "shasum": "1cf7712318fad144eab106a8fcfcd396aeb5676f"
  3696. },
  3697. "require": {
  3698. "drupal/core": "^9.2|^10.0"
  3699. },
  3700. "type": "drupal-module",
  3701. "extra": {
  3702. "drupal": {
  3703. "version": "8.x-1.4",
  3704. "datestamp": "1661898023",
  3705. "security-coverage": {
  3706. "status": "covered",
  3707. "message": "Covered by Drupal's security advisory policy"
  3708. }
  3709. }
  3710. },
  3711. "notification-url": "https://packages.drupal.org/8/downloads",
  3712. "license": [
  3713. "GPL-2.0-or-later"
  3714. ],
  3715. "authors": [
  3716. {
  3717. "name": "Berdir",
  3718. "homepage": "https://www.drupal.org/user/214652"
  3719. },
  3720. {
  3721. "name": "bojanz",
  3722. "homepage": "https://www.drupal.org/user/86106"
  3723. },
  3724. {
  3725. "name": "dawehner",
  3726. "homepage": "https://www.drupal.org/user/99340"
  3727. },
  3728. {
  3729. "name": "dixon_",
  3730. "homepage": "https://www.drupal.org/user/239911"
  3731. },
  3732. {
  3733. "name": "fago",
  3734. "homepage": "https://www.drupal.org/user/16747"
  3735. },
  3736. {
  3737. "name": "mglaman",
  3738. "homepage": "https://www.drupal.org/user/2416470"
  3739. },
  3740. {
  3741. "name": "TR",
  3742. "homepage": "https://www.drupal.org/user/202830"
  3743. }
  3744. ],
  3745. "description": "Provides expanded entity APIs, which will be moved to Drupal core one day.",
  3746. "homepage": "https://www.drupal.org/project/entity",
  3747. "support": {
  3748. "source": "https://git.drupalcode.org/project/entity",
  3749. "issues": "https://www.drupal.org/project/issues/entity"
  3750. }
  3751. },
  3752. {
  3753. "name": "drupal/entity_browser",
  3754. "version": "2.9.0",
  3755. "source": {
  3756. "type": "git",
  3757. "url": "https://git.drupalcode.org/project/entity_browser.git",
  3758. "reference": "8.x-2.9"
  3759. },
  3760. "dist": {
  3761. "type": "zip",
  3762. "url": "https://ftp.drupal.org/files/projects/entity_browser-8.x-2.9.zip",
  3763. "reference": "8.x-2.9",
  3764. "shasum": "251afad80cde9fa547501a8d9de5d94b9f5bacff"
  3765. },
  3766. "require": {
  3767. "drupal/core": "^9.2 || ^10"
  3768. },
  3769. "require-dev": {
  3770. "drupal/embed": "~1.0",
  3771. "drupal/entity_embed": "1.x-dev",
  3772. "drupal/entity_reference_revisions": "1.x-dev",
  3773. "drupal/entityqueue": "1.x-dev",
  3774. "drupal/inline_entity_form": "1.x-dev",
  3775. "drupal/paragraphs": "1.x-dev",
  3776. "drupal/token": "1.x-dev"
  3777. },
  3778. "type": "drupal-module",
  3779. "extra": {
  3780. "drupal": {
  3781. "version": "8.x-2.9",
  3782. "datestamp": "1674070933",
  3783. "security-coverage": {
  3784. "status": "covered",
  3785. "message": "Covered by Drupal's security advisory policy"
  3786. }
  3787. }
  3788. },
  3789. "notification-url": "https://packages.drupal.org/8/downloads",
  3790. "license": [
  3791. "GPL-2.0+"
  3792. ],
  3793. "authors": [
  3794. {
  3795. "name": "Janez Urevc",
  3796. "homepage": "https://github.com/slashrsm",
  3797. "role": "Maintainer"
  3798. },
  3799. {
  3800. "name": "Primoz Hmeljak",
  3801. "homepage": "https://github.com/primsi",
  3802. "role": "Maintainer"
  3803. },
  3804. {
  3805. "name": "See other contributors",
  3806. "homepage": "https://www.drupal.org/node/1943336/committers",
  3807. "role": "contributor"
  3808. },
  3809. {
  3810. "name": "Drupal Media Team",
  3811. "homepage": "https://www.drupal.org/user/3260690"
  3812. },
  3813. {
  3814. "name": "marcingy",
  3815. "homepage": "https://www.drupal.org/user/77320"
  3816. },
  3817. {
  3818. "name": "oknate",
  3819. "homepage": "https://www.drupal.org/user/471638"
  3820. },
  3821. {
  3822. "name": "Primsi",
  3823. "homepage": "https://www.drupal.org/user/282629"
  3824. },
  3825. {
  3826. "name": "samuel.mortenson",
  3827. "homepage": "https://www.drupal.org/user/2582268"
  3828. },
  3829. {
  3830. "name": "slashrsm",
  3831. "homepage": "https://www.drupal.org/user/744628"
  3832. }
  3833. ],
  3834. "description": "Entity browsing and selecting component.",
  3835. "homepage": "http://drupal.org/project/entity_browser",
  3836. "support": {
  3837. "source": "https://git.drupalcode.org/project/entity_browser",
  3838. "issues": "https://www.drupal.org/project/issues/entity_browser",
  3839. "irc": "irc://irc.freenode.org/drupal-contribute"
  3840. }
  3841. },
  3842. {
  3843. "name": "drupal/entity_browser_enhanced",
  3844. "version": "2.0.0",
  3845. "source": {
  3846. "type": "git",
  3847. "url": "https://git.drupalcode.org/project/entity_browser_enhanced.git",
  3848. "reference": "2.0.0"
  3849. },
  3850. "dist": {
  3851. "type": "zip",
  3852. "url": "https://ftp.drupal.org/files/projects/entity_browser_enhanced-2.0.0.zip",
  3853. "reference": "2.0.0",
  3854. "shasum": "2880829c847c1c4b06092ab5335adb6ea960317b"
  3855. },
  3856. "require": {
  3857. "drupal/core": "^9 || ^10",
  3858. "drupal/entity_browser": "~2.0"
  3859. },
  3860. "type": "drupal-module",
  3861. "extra": {
  3862. "drupal": {
  3863. "version": "2.0.0",
  3864. "datestamp": "1697211243",
  3865. "security-coverage": {
  3866. "status": "covered",
  3867. "message": "Covered by Drupal's security advisory policy"
  3868. }
  3869. }
  3870. },
  3871. "notification-url": "https://packages.drupal.org/8/downloads",
  3872. "license": [
  3873. "GPL-2.0-or-later"
  3874. ],
  3875. "authors": [
  3876. {
  3877. "name": "Vardot",
  3878. "homepage": "https://www.drupal.org/vardot",
  3879. "role": "Maintainer"
  3880. },
  3881. {
  3882. "name": "Rajab Natshah",
  3883. "homepage": "https://www.drupal.org/user/1414312"
  3884. }
  3885. ],
  3886. "description": "Provides some behavior and style enhancements to Entity Browsers, specifically for multiselect and image/media browsers.",
  3887. "homepage": "https://www.drupal.org/project/entity_browser_enhanced",
  3888. "support": {
  3889. "source": "http://cgit.drupalcode.org/entity_browser_enhanced",
  3890. "issues": "https://www.drupal.org/project/issues/entity_browser_enhanced"
  3891. }
  3892. },
  3893. {
  3894. "name": "drupal/entity_clone",
  3895. "version": "dev-2.x",
  3896. "source": {
  3897. "type": "git",
  3898. "url": "https://git.drupalcode.org/project/entity_clone.git",
  3899. "reference": "5cbfafdbc860cbda7bef91c89628aefca25efe7b"
  3900. },
  3901. "require": {
  3902. "drupal/core": "^8.8 || ^9 || ^10"
  3903. },
  3904. "require-dev": {
  3905. "drupal/entity_browser": "2.x-dev",
  3906. "drupal/entity_usage": "2.x-dev",
  3907. "drupal/paragraphs": "^1.0",
  3908. "drupal/search_api": "~1.0"
  3909. },
  3910. "type": "drupal-module",
  3911. "extra": {
  3912. "branch-alias": {
  3913. "dev-2.x": "2.x-dev"
  3914. },
  3915. "drupal": {
  3916. "version": "2.0.0-beta4+3-dev",
  3917. "datestamp": "1697545494",
  3918. "security-coverage": {
  3919. "status": "not-covered",
  3920. "message": "Dev releases are not covered by Drupal security advisories."
  3921. }
  3922. }
  3923. },
  3924. "notification-url": "https://packages.drupal.org/8/downloads",
  3925. "license": [
  3926. "GPL-2.0-or-later"
  3927. ],
  3928. "authors": [
  3929. {
  3930. "name": "colan",
  3931. "homepage": "https://www.drupal.org/user/58704"
  3932. },
  3933. {
  3934. "name": "joevagyok",
  3935. "homepage": "https://www.drupal.org/user/2876343"
  3936. },
  3937. {
  3938. "name": "NickDickinsonWilde",
  3939. "homepage": "https://www.drupal.org/user/3094661"
  3940. },
  3941. {
  3942. "name": "Rajeshreeputra",
  3943. "homepage": "https://www.drupal.org/user/3418561"
  3944. },
  3945. {
  3946. "name": "Upchuk",
  3947. "homepage": "https://www.drupal.org/user/1885838"
  3948. },
  3949. {
  3950. "name": "vpeltot",
  3951. "homepage": "https://www.drupal.org/user/1361586"
  3952. }
  3953. ],
  3954. "description": "Add a clone action for all entities.",
  3955. "homepage": "https://drupal.org/project/entity_clone",
  3956. "support": {
  3957. "source": "https://git.drupalcode.org/project/entity_clone"
  3958. }
  3959. },
  3960. {
  3961. "name": "drupal/entity_reference_revisions",
  3962. "version": "1.10.0",
  3963. "source": {
  3964. "type": "git",
  3965. "url": "https://git.drupalcode.org/project/entity_reference_revisions.git",
  3966. "reference": "8.x-1.10"
  3967. },
  3968. "dist": {
  3969. "type": "zip",
  3970. "url": "https://ftp.drupal.org/files/projects/entity_reference_revisions-8.x-1.10.zip",
  3971. "reference": "8.x-1.10",
  3972. "shasum": "edd23b91c4a34db65ea22c4db54b7458edc7513b"
  3973. },
  3974. "require": {
  3975. "drupal/core": "^9 || ^10"
  3976. },
  3977. "require-dev": {
  3978. "drupal/diff": "1.x-dev"
  3979. },
  3980. "type": "drupal-module",
  3981. "extra": {
  3982. "drupal": {
  3983. "version": "8.x-1.10",
  3984. "datestamp": "1660664712",
  3985. "security-coverage": {
  3986. "status": "covered",
  3987. "message": "Covered by Drupal's security advisory policy"
  3988. }
  3989. },
  3990. "drush": {
  3991. "services": {
  3992. "drush.services.yml": "^9 || ^10 || ^11"
  3993. }
  3994. }
  3995. },
  3996. "notification-url": "https://packages.drupal.org/8/downloads",
  3997. "license": [
  3998. "GPL-2.0-or-later"
  3999. ],
  4000. "authors": [
  4001. {
  4002. "name": "Berdir",
  4003. "homepage": "https://www.drupal.org/user/214652"
  4004. },
  4005. {
  4006. "name": "Frans",
  4007. "homepage": "https://www.drupal.org/user/514222"
  4008. },
  4009. {
  4010. "name": "jeroen.b",
  4011. "homepage": "https://www.drupal.org/user/1853532"
  4012. },
  4013. {
  4014. "name": "miro_dietiker",
  4015. "homepage": "https://www.drupal.org/user/227761"
  4016. }
  4017. ],
  4018. "description": "Entity Reference Revisions",
  4019. "homepage": "https://www.drupal.org/project/entity_reference_revisions",
  4020. "support": {
  4021. "source": "https://git.drupalcode.org/project/entity_reference_revisions"
  4022. }
  4023. },
  4024. {
  4025. "name": "drupal/extlink",
  4026. "version": "1.7.0",
  4027. "source": {
  4028. "type": "git",
  4029. "url": "https://git.drupalcode.org/project/extlink.git",
  4030. "reference": "8.x-1.7"
  4031. },
  4032. "dist": {
  4033. "type": "zip",
  4034. "url": "https://ftp.drupal.org/files/projects/extlink-8.x-1.7.zip",
  4035. "reference": "8.x-1.7",
  4036. "shasum": "38650688b5a58496db59f40b2a7f36c4bedcbfb4"
  4037. },
  4038. "require": {
  4039. "drupal/core": "^8 || ^9 || ^10"
  4040. },
  4041. "type": "drupal-module",
  4042. "extra": {
  4043. "drupal": {
  4044. "version": "8.x-1.7",
  4045. "datestamp": "1665770295",
  4046. "security-coverage": {
  4047. "status": "covered",
  4048. "message": "Covered by Drupal's security advisory policy"
  4049. }
  4050. }
  4051. },
  4052. "notification-url": "https://packages.drupal.org/8/downloads",
  4053. "license": [
  4054. "GPL-2.0-or-later"
  4055. ],
  4056. "authors": [
  4057. {
  4058. "name": "Nate Lampton",
  4059. "homepage": "https://www.drupal.org/u/quicksketch",
  4060. "role": "Maintainer"
  4061. },
  4062. {
  4063. "name": "Lachlan Ennis",
  4064. "homepage": "https://www.drupal.org/u/elachlan",
  4065. "role": "Maintainer"
  4066. },
  4067. {
  4068. "name": "Neslee Canil Pinto",
  4069. "homepage": "https://www.drupal.org/u/neslee-canil-pinto",
  4070. "role": "Maintainer"
  4071. }
  4072. ],
  4073. "description": "Modify behavior and appearance of external links.",
  4074. "homepage": "https://www.drupal.org/project/extlink",
  4075. "keywords": [
  4076. "Drupal",
  4077. "External Links"
  4078. ],
  4079. "support": {
  4080. "source": "https://git.drupalcode.org/project/extlink",
  4081. "issues": "https://www.drupal.org/project/issues/extlink"
  4082. }
  4083. },
  4084. {
  4085. "name": "drupal/field_group",
  4086. "version": "dev-3.x",
  4087. "source": {
  4088. "type": "git",
  4089. "url": "https://git.drupalcode.org/project/field_group.git",
  4090. "reference": "1211c8f4e06592418ca368afe88ef9aa237e900a"
  4091. },
  4092. "require": {
  4093. "drupal/core": "^9.2 || ^10"
  4094. },
  4095. "type": "drupal-module",
  4096. "extra": {
  4097. "branch-alias": {
  4098. "dev-3.x": "3.x-dev"
  4099. },
  4100. "drupal": {
  4101. "version": "8.x-3.4+4-dev",
  4102. "datestamp": "1696831482",
  4103. "security-coverage": {
  4104. "status": "not-covered",
  4105. "message": "Dev releases are not covered by Drupal security advisories."
  4106. }
  4107. }
  4108. },
  4109. "notification-url": "https://packages.drupal.org/8/downloads",
  4110. "license": [
  4111. "GPL-2.0-or-later"
  4112. ],
  4113. "authors": [
  4114. {
  4115. "name": "Anybody",
  4116. "homepage": "https://www.drupal.org/user/291091"
  4117. },
  4118. {
  4119. "name": "Hydra",
  4120. "homepage": "https://www.drupal.org/user/647364"
  4121. },
  4122. {
  4123. "name": "jyve",
  4124. "homepage": "https://www.drupal.org/user/591438"
  4125. },
  4126. {
  4127. "name": "nils.destoop",
  4128. "homepage": "https://www.drupal.org/user/361625"
  4129. },
  4130. {
  4131. "name": "Stalski",
  4132. "homepage": "https://www.drupal.org/user/322618"
  4133. },
  4134. {
  4135. "name": "swentel",
  4136. "homepage": "https://www.drupal.org/user/107403"
  4137. }
  4138. ],
  4139. "description": "Provides the field_group module.",
  4140. "homepage": "https://www.drupal.org/project/field_group",
  4141. "support": {
  4142. "source": "https://git.drupalcode.org/project/field_group",
  4143. "issues": "https://www.drupal.org/project/issues/field_group"
  4144. }
  4145. },
  4146. {
  4147. "name": "drupal/file_mdm",
  4148. "version": "2.6.0",
  4149. "source": {
  4150. "type": "git",
  4151. "url": "https://git.drupalcode.org/project/file_mdm.git",
  4152. "reference": "8.x-2.6"
  4153. },
  4154. "dist": {
  4155. "type": "zip",
  4156. "url": "https://ftp.drupal.org/files/projects/file_mdm-8.x-2.6.zip",
  4157. "reference": "8.x-2.6",
  4158. "shasum": "56c7c06107ce6e249b6d644136e6807573efb0e3"
  4159. },
  4160. "require": {
  4161. "drupal/core": "^9.3 | ^10",
  4162. "fileeye/pel": "^0.9.20",
  4163. "phenx/php-font-lib": "^0.5.4"
  4164. },
  4165. "require-dev": {
  4166. "drupal/vendor_stream_wrapper": "^2.0.2",
  4167. "fileeye/linuxlibertine-fonts": "^5.3"
  4168. },
  4169. "type": "drupal-module",
  4170. "extra": {
  4171. "drupal": {
  4172. "version": "8.x-2.6",
  4173. "datestamp": "1688489716",
  4174. "security-coverage": {
  4175. "status": "covered",
  4176. "message": "Covered by Drupal's security advisory policy"
  4177. }
  4178. }
  4179. },
  4180. "notification-url": "https://packages.drupal.org/8/downloads",
  4181. "license": [
  4182. "GPL-2.0-or-later"
  4183. ],
  4184. "authors": [
  4185. {
  4186. "name": "mondrake",
  4187. "homepage": "https://www.drupal.org/user/1307444"
  4188. }
  4189. ],
  4190. "description": "Provides a service to manage file metadata.",
  4191. "homepage": "https://www.drupal.org/project/file_mdm",
  4192. "support": {
  4193. "source": "https://git.drupalcode.org/project/file_mdm"
  4194. }
  4195. },
  4196. {
  4197. "name": "drupal/filter_perms",
  4198. "version": "dev-1.x",
  4199. "source": {
  4200. "type": "git",
  4201. "url": "https://git.drupalcode.org/project/filter_perms.git",
  4202. "reference": "1ba486b620e0c0ea1c323cfcadb0f965d9022d1c"
  4203. },
  4204. "require": {
  4205. "drupal/core": "^9.0 || ^10.0"
  4206. },
  4207. "type": "drupal-module",
  4208. "extra": {
  4209. "branch-alias": {
  4210. "dev-1.x": "1.x-dev"
  4211. },
  4212. "drupal": {
  4213. "version": "8.x-1.0-alpha2+1-dev",
  4214. "datestamp": "1697635045",
  4215. "security-coverage": {
  4216. "status": "not-covered",
  4217. "message": "Dev releases are not covered by Drupal security advisories."
  4218. }
  4219. }
  4220. },
  4221. "notification-url": "https://packages.drupal.org/8/downloads",
  4222. "license": [
  4223. "GPL-2.0+"
  4224. ],
  4225. "authors": [
  4226. {
  4227. "name": "cYu",
  4228. "homepage": "https://www.drupal.org/user/202205"
  4229. },
  4230. {
  4231. "name": "deekayen",
  4232. "homepage": "https://www.drupal.org/user/972"
  4233. },
  4234. {
  4235. "name": "ivavictoria",
  4236. "homepage": "https://www.drupal.org/user/3061533"
  4237. },
  4238. {
  4239. "name": "justcaldwell",
  4240. "homepage": "https://www.drupal.org/user/290069"
  4241. },
  4242. {
  4243. "name": "mgbellaire",
  4244. "homepage": "https://www.drupal.org/user/1831932"
  4245. },
  4246. {
  4247. "name": "willzyx",
  4248. "homepage": "https://www.drupal.org/user/1043862"
  4249. }
  4250. ],
  4251. "description": "Provides role and module filters to simplify the user permissions page.",
  4252. "homepage": "https://www.drupal.org/project/filter_perms",
  4253. "support": {
  4254. "source": "http://cgit.drupalcode.org/filter_perms",
  4255. "issues": "https://www.drupal.org/project/issues/filter_perms?categories=All"
  4256. }
  4257. },
  4258. {
  4259. "name": "drupal/formatter_suite",
  4260. "version": "2.0.0",
  4261. "source": {
  4262. "type": "git",
  4263. "url": "https://git.drupalcode.org/project/formatter_suite.git",
  4264. "reference": "2.0.0"
  4265. },
  4266. "dist": {
  4267. "type": "zip",
  4268. "url": "https://ftp.drupal.org/files/projects/formatter_suite-2.0.0.zip",
  4269. "reference": "2.0.0",
  4270. "shasum": "1c6c0fc11d381c10a7b13c51ec2848ae91b40cec"
  4271. },
  4272. "require": {
  4273. "drupal/core": "^9 || ^10"
  4274. },
  4275. "type": "drupal-module",
  4276. "extra": {
  4277. "drupal": {
  4278. "version": "2.0.0",
  4279. "datestamp": "1694036572",
  4280. "security-coverage": {
  4281. "status": "covered",
  4282. "message": "Covered by Drupal's security advisory policy"
  4283. }
  4284. }
  4285. },
  4286. "notification-url": "https://packages.drupal.org/8/downloads",
  4287. "license": [
  4288. "GPL-2.0-or-later"
  4289. ],
  4290. "authors": [
  4291. {
  4292. "name": "thecooltechguy",
  4293. "homepage": "https://www.drupal.org/user/3674323"
  4294. },
  4295. {
  4296. "name": "toamit",
  4297. "homepage": "https://www.drupal.org/user/2820523"
  4298. }
  4299. ],
  4300. "description": "Field formaters to present numbers, text, links, etc.",
  4301. "homepage": "https://www.drupal.org/project/formatter_suite",
  4302. "keywords": [
  4303. "Drupal",
  4304. "Format"
  4305. ],
  4306. "support": {
  4307. "source": "http://cgit.drupalcode.org/formatter_suite",
  4308. "issues": "http://drupal.org/project/issues/formatter_suite"
  4309. }
  4310. },
  4311. {
  4312. "name": "drupal/honeypot",
  4313. "version": "2.1.3",
  4314. "source": {
  4315. "type": "git",
  4316. "url": "https://git.drupalcode.org/project/honeypot.git",
  4317. "reference": "2.1.3"
  4318. },
  4319. "dist": {
  4320. "type": "zip",
  4321. "url": "https://ftp.drupal.org/files/projects/honeypot-2.1.3.zip",
  4322. "reference": "2.1.3",
  4323. "shasum": "101105029a10a574ef6017824182500ab9905856"
  4324. },
  4325. "require": {
  4326. "drupal/core": "^9.2 || ^10"
  4327. },
  4328. "require-dev": {
  4329. "drupal/rules": "^3.0"
  4330. },
  4331. "type": "drupal-module",
  4332. "extra": {
  4333. "drupal": {
  4334. "version": "2.1.3",
  4335. "datestamp": "1695604754",
  4336. "security-coverage": {
  4337. "status": "covered",
  4338. "message": "Covered by Drupal's security advisory policy"
  4339. }
  4340. }
  4341. },
  4342. "notification-url": "https://packages.drupal.org/8/downloads",
  4343. "license": [
  4344. "GPL-2.0-or-later"
  4345. ],
  4346. "authors": [
  4347. {
  4348. "name": "Jeff Geerling",
  4349. "homepage": "https://www.drupal.org/user/389011",
  4350. "email": "geerlingguy@mac.com"
  4351. },
  4352. {
  4353. "name": "Manuel Garcia",
  4354. "homepage": "https://www.drupal.org/user/213194"
  4355. },
  4356. {
  4357. "name": "TR",
  4358. "homepage": "https://www.drupal.org/user/202830"
  4359. },
  4360. {
  4361. "name": "vijaycs85",
  4362. "homepage": "https://www.drupal.org/user/93488"
  4363. }
  4364. ],
  4365. "description": "Mitigates spam form submissions using the honeypot method.",
  4366. "homepage": "https://www.drupal.org/project/honeypot",
  4367. "keywords": [
  4368. "deterrent",
  4369. "form",
  4370. "honeypot",
  4371. "honeytrap",
  4372. "php",
  4373. "spam"
  4374. ],
  4375. "support": {
  4376. "source": "https://git.drupalcode.org/project/honeypot",
  4377. "issues": "https://www.drupal.org/project/issues/honeypot"
  4378. }
  4379. },
  4380. {
  4381. "name": "drupal/imagemagick",
  4382. "version": "3.4.0",
  4383. "source": {
  4384. "type": "git",
  4385. "url": "https://git.drupalcode.org/project/imagemagick.git",
  4386. "reference": "8.x-3.4"
  4387. },
  4388. "dist": {
  4389. "type": "zip",
  4390. "url": "https://ftp.drupal.org/files/projects/imagemagick-8.x-3.4.zip",
  4391. "reference": "8.x-3.4",
  4392. "shasum": "9f07b7db4bba2cb0e4ff004629f8f78242bb7226"
  4393. },
  4394. "require": {
  4395. "drupal/core": "^9.3 || ^10",
  4396. "drupal/file_mdm": "^2.5",
  4397. "drupal/sophron": "^1.2 || ^2"
  4398. },
  4399. "type": "drupal-module",
  4400. "extra": {
  4401. "drupal": {
  4402. "version": "8.x-3.4",
  4403. "datestamp": "1663947784",
  4404. "security-coverage": {
  4405. "status": "covered",
  4406. "message": "Covered by Drupal's security advisory policy"
  4407. }
  4408. }
  4409. },
  4410. "notification-url": "https://packages.drupal.org/8/downloads",
  4411. "license": [
  4412. "GPL-2.0-or-later"
  4413. ],
  4414. "authors": [
  4415. {
  4416. "name": "Chris Charlton",
  4417. "homepage": "https://www.drupal.org/user/17089"
  4418. },
  4419. {
  4420. "name": "chx",
  4421. "homepage": "https://www.drupal.org/user/9446"
  4422. },
  4423. {
  4424. "name": "claudiu.cristea",
  4425. "homepage": "https://www.drupal.org/user/56348"
  4426. },
  4427. {
  4428. "name": "dman",
  4429. "homepage": "https://www.drupal.org/user/33240"
  4430. },
  4431. {
  4432. "name": "dopry",
  4433. "homepage": "https://www.drupal.org/user/22202"
  4434. },
  4435. {
  4436. "name": "drewish",
  4437. "homepage": "https://www.drupal.org/user/34869"
  4438. },
  4439. {
  4440. "name": "gdl",
  4441. "homepage": "https://www.drupal.org/user/507326"
  4442. },
  4443. {
  4444. "name": "mondrake",
  4445. "homepage": "https://www.drupal.org/user/1307444"
  4446. },
  4447. {
  4448. "name": "quicksketch",
  4449. "homepage": "https://www.drupal.org/user/35821"
  4450. },
  4451. {
  4452. "name": "sun",
  4453. "homepage": "https://www.drupal.org/user/54136"
  4454. },
  4455. {
  4456. "name": "walkah",
  4457. "homepage": "https://www.drupal.org/user/1531"
  4458. }
  4459. ],
  4460. "description": "Provides an image toolkit to integrate ImageMagick with the Image API.",
  4461. "homepage": "https://www.drupal.org/project/imagemagick",
  4462. "support": {
  4463. "source": "https://git.drupalcode.org/project/imagemagick"
  4464. }
  4465. },
  4466. {
  4467. "name": "drupal/inline_entity_form",
  4468. "version": "1.0.0-rc15",
  4469. "source": {
  4470. "type": "git",
  4471. "url": "https://git.drupalcode.org/project/inline_entity_form.git",
  4472. "reference": "8.x-1.0-rc15"
  4473. },
  4474. "dist": {
  4475. "type": "zip",
  4476. "url": "https://ftp.drupal.org/files/projects/inline_entity_form-8.x-1.0-rc15.zip",
  4477. "reference": "8.x-1.0-rc15",
  4478. "shasum": "7702801f7e599956fc3d10cff8257809f53ac3ec"
  4479. },
  4480. "require": {
  4481. "drupal/core": "^8.8 || ^9 || ^10",
  4482. "php": ">=7.1"
  4483. },
  4484. "require-dev": {
  4485. "drupal/entity_reference_revisions": "^1.0"
  4486. },
  4487. "type": "drupal-module",
  4488. "extra": {
  4489. "drupal": {
  4490. "version": "8.x-1.0-rc15",
  4491. "datestamp": "1678126675",
  4492. "security-coverage": {
  4493. "status": "not-covered",
  4494. "message": "RC releases are not covered by Drupal security advisories."
  4495. }
  4496. }
  4497. },
  4498. "notification-url": "https://packages.drupal.org/8/downloads",
  4499. "license": [
  4500. "GPL-2.0-or-later"
  4501. ],
  4502. "authors": [
  4503. {
  4504. "name": "bojanz",
  4505. "homepage": "https://www.drupal.org/user/86106"
  4506. },
  4507. {
  4508. "name": "Centarro",
  4509. "homepage": "https://www.drupal.org/user/3661446"
  4510. },
  4511. {
  4512. "name": "dawehner",
  4513. "homepage": "https://www.drupal.org/user/99340"
  4514. },
  4515. {
  4516. "name": "geek-merlin",
  4517. "homepage": "https://www.drupal.org/user/229048"
  4518. },
  4519. {
  4520. "name": "joachim",
  4521. "homepage": "https://www.drupal.org/user/107701"
  4522. },
  4523. {
  4524. "name": "jsacksick",
  4525. "homepage": "https://www.drupal.org/user/972218"
  4526. },
  4527. {
  4528. "name": "oknate",
  4529. "homepage": "https://www.drupal.org/user/471638"
  4530. },
  4531. {
  4532. "name": "podarok",
  4533. "homepage": "https://www.drupal.org/user/116002"
  4534. },
  4535. {
  4536. "name": "ram4nd",
  4537. "homepage": "https://www.drupal.org/user/601534"
  4538. },
  4539. {
  4540. "name": "rszrama",
  4541. "homepage": "https://www.drupal.org/user/49344"
  4542. },
  4543. {
  4544. "name": "slashrsm",
  4545. "homepage": "https://www.drupal.org/user/744628"
  4546. },
  4547. {
  4548. "name": "webflo",
  4549. "homepage": "https://www.drupal.org/user/254778"
  4550. }
  4551. ],
  4552. "description": "Provides a widget for inline management (creation, modification, removal) of referenced entities.",
  4553. "homepage": "https://www.drupal.org/project/inline_entity_form",
  4554. "support": {
  4555. "source": "https://git.drupalcode.org/project/inline_entity_form"
  4556. }
  4557. },
  4558. {
  4559. "name": "drupal/jquery_ui",
  4560. "version": "1.6.0",
  4561. "source": {
  4562. "type": "git",
  4563. "url": "https://git.drupalcode.org/project/jquery_ui.git",
  4564. "reference": "8.x-1.6"
  4565. },
  4566. "dist": {
  4567. "type": "zip",
  4568. "url": "https://ftp.drupal.org/files/projects/jquery_ui-8.x-1.6.zip",
  4569. "reference": "8.x-1.6",
  4570. "shasum": "0ddccdcf35a066de1843e1d9670677ee1a2faac0"
  4571. },
  4572. "require": {
  4573. "drupal/core": "^9.2 || ^10"
  4574. },
  4575. "type": "drupal-module",
  4576. "extra": {
  4577. "drupal": {
  4578. "version": "8.x-1.6",
  4579. "datestamp": "1668521197",
  4580. "security-coverage": {
  4581. "status": "covered",
  4582. "message": "Covered by Drupal's security advisory policy"
  4583. }
  4584. }
  4585. },
  4586. "notification-url": "https://packages.drupal.org/8/downloads",
  4587. "license": [
  4588. "GPL-2.0-or-later"
  4589. ],
  4590. "authors": [
  4591. {
  4592. "name": "bnjmnm",
  4593. "homepage": "https://www.drupal.org/user/2369194"
  4594. },
  4595. {
  4596. "name": "jjeff",
  4597. "homepage": "https://www.drupal.org/user/17190"
  4598. },
  4599. {
  4600. "name": "lauriii",
  4601. "homepage": "https://www.drupal.org/user/1078742"
  4602. },
  4603. {
  4604. "name": "litwol",
  4605. "homepage": "https://www.drupal.org/user/78134"
  4606. },
  4607. {
  4608. "name": "mfb",
  4609. "homepage": "https://www.drupal.org/user/12302"
  4610. },
  4611. {
  4612. "name": "mfer",
  4613. "homepage": "https://www.drupal.org/user/25701"
  4614. },
  4615. {
  4616. "name": "mikelutz",
  4617. "homepage": "https://www.drupal.org/user/2972409"
  4618. },
  4619. {
  4620. "name": "nod_",
  4621. "homepage": "https://www.drupal.org/user/598310"
  4622. },
  4623. {
  4624. "name": "phenaproxima",
  4625. "homepage": "https://www.drupal.org/user/205645"
  4626. },
  4627. {
  4628. "name": "RobLoach",
  4629. "homepage": "https://www.drupal.org/user/61114"
  4630. },
  4631. {
  4632. "name": "sun",
  4633. "homepage": "https://www.drupal.org/user/54136"
  4634. },
  4635. {
  4636. "name": "webchick",
  4637. "homepage": "https://www.drupal.org/user/24967"
  4638. },
  4639. {
  4640. "name": "Wim Leers",
  4641. "homepage": "https://www.drupal.org/user/99777"
  4642. },
  4643. {
  4644. "name": "zrpnr",
  4645. "homepage": "https://www.drupal.org/user/1448368"
  4646. }
  4647. ],
  4648. "description": "Provides jQuery UI library.",
  4649. "homepage": "https://www.drupal.org/project/jquery_ui",
  4650. "support": {
  4651. "source": "https://git.drupalcode.org/project/jquery_ui"
  4652. }
  4653. },
  4654. {
  4655. "name": "drupal/jquery_ui_datepicker",
  4656. "version": "2.0.0",
  4657. "source": {
  4658. "type": "git",
  4659. "url": "https://git.drupalcode.org/project/jquery_ui_datepicker.git",
  4660. "reference": "2.0.0"
  4661. },
  4662. "dist": {
  4663. "type": "zip",
  4664. "url": "https://ftp.drupal.org/files/projects/jquery_ui_datepicker-2.0.0.zip",
  4665. "reference": "2.0.0",
  4666. "shasum": "ce40cf8ab400866bffda1ac3f7e4a5ac20bb3ae5"
  4667. },
  4668. "require": {
  4669. "drupal/core": "^9.2 || ^10",
  4670. "drupal/jquery_ui": "^1.6"
  4671. },
  4672. "type": "drupal-module",
  4673. "extra": {
  4674. "drupal": {
  4675. "version": "2.0.0",
  4676. "datestamp": "1670871494",
  4677. "security-coverage": {
  4678. "status": "covered",
  4679. "message": "Covered by Drupal's security advisory policy"
  4680. }
  4681. }
  4682. },
  4683. "notification-url": "https://packages.drupal.org/8/downloads",
  4684. "license": [
  4685. "GPL-2.0-or-later"
  4686. ],
  4687. "authors": [
  4688. {
  4689. "name": "bnjmnm",
  4690. "homepage": "https://www.drupal.org/user/2369194"
  4691. },
  4692. {
  4693. "name": "jrockowitz",
  4694. "homepage": "https://www.drupal.org/user/371407"
  4695. },
  4696. {
  4697. "name": "lauriii",
  4698. "homepage": "https://www.drupal.org/user/1078742"
  4699. },
  4700. {
  4701. "name": "nod_",
  4702. "homepage": "https://www.drupal.org/user/598310"
  4703. },
  4704. {
  4705. "name": "phenaproxima",
  4706. "homepage": "https://www.drupal.org/user/205645"
  4707. },
  4708. {
  4709. "name": "zrpnr",
  4710. "homepage": "https://www.drupal.org/user/1448368"
  4711. }
  4712. ],
  4713. "description": "Provides jQuery UI Datepicker library.",
  4714. "homepage": "https://www.drupal.org/project/jquery_ui_datepicker",
  4715. "support": {
  4716. "source": "https://git.drupalcode.org/project/jquery_ui_datepicker"
  4717. }
  4718. },
  4719. {
  4720. "name": "drupal/jquery_ui_draggable",
  4721. "version": "2.0.0",
  4722. "source": {
  4723. "type": "git",
  4724. "url": "https://git.drupalcode.org/project/jquery_ui_draggable.git",
  4725. "reference": "2.0.0"
  4726. },
  4727. "dist": {
  4728. "type": "zip",
  4729. "url": "https://ftp.drupal.org/files/projects/jquery_ui_draggable-2.0.0.zip",
  4730. "reference": "2.0.0",
  4731. "shasum": "13a8f4bf037449cd176ddb967fc9cba9a466a705"
  4732. },
  4733. "require": {
  4734. "drupal/core": "^9.2 || ^10",
  4735. "drupal/jquery_ui": "^1.6"
  4736. },
  4737. "type": "drupal-module",
  4738. "extra": {
  4739. "drupal": {
  4740. "version": "2.0.0",
  4741. "datestamp": "1670871516",
  4742. "security-coverage": {
  4743. "status": "covered",
  4744. "message": "Covered by Drupal's security advisory policy"
  4745. }
  4746. }
  4747. },
  4748. "notification-url": "https://packages.drupal.org/8/downloads",
  4749. "license": [
  4750. "GPL-2.0-or-later"
  4751. ],
  4752. "authors": [
  4753. {
  4754. "name": "bnjmnm",
  4755. "homepage": "https://www.drupal.org/user/2369194"
  4756. },
  4757. {
  4758. "name": "lauriii",
  4759. "homepage": "https://www.drupal.org/user/1078742"
  4760. },
  4761. {
  4762. "name": "zrpnr",
  4763. "homepage": "https://www.drupal.org/user/1448368"
  4764. }
  4765. ],
  4766. "description": "Provides jQuery UI Draggable library.",
  4767. "homepage": "https://www.drupal.org/project/jquery_ui_draggable",
  4768. "support": {
  4769. "source": "https://git.drupalcode.org/project/jquery_ui_draggable"
  4770. }
  4771. },
  4772. {
  4773. "name": "drupal/jquery_ui_droppable",
  4774. "version": "1.5.0",
  4775. "source": {
  4776. "type": "git",
  4777. "url": "https://git.drupalcode.org/project/jquery_ui_droppable.git",
  4778. "reference": "8.x-1.5"
  4779. },
  4780. "dist": {
  4781. "type": "zip",
  4782. "url": "https://ftp.drupal.org/files/projects/jquery_ui_droppable-8.x-1.5.zip",
  4783. "reference": "8.x-1.5",
  4784. "shasum": "ee9fec147493ce6c81fdf95ec463f7092606e913"
  4785. },
  4786. "require": {
  4787. "drupal/core": "^9.2 || ^10",
  4788. "drupal/jquery_ui": "^1.5",
  4789. "drupal/jquery_ui_draggable": "*"
  4790. },
  4791. "type": "drupal-module",
  4792. "extra": {
  4793. "drupal": {
  4794. "version": "8.x-1.5",
  4795. "datestamp": "1668452746",
  4796. "security-coverage": {
  4797. "status": "covered",
  4798. "message": "Covered by Drupal's security advisory policy"
  4799. }
  4800. }
  4801. },
  4802. "notification-url": "https://packages.drupal.org/8/downloads",
  4803. "license": [
  4804. "GPL-2.0-or-later"
  4805. ],
  4806. "authors": [
  4807. {
  4808. "name": "bnjmnm",
  4809. "homepage": "https://www.drupal.org/user/2369194"
  4810. },
  4811. {
  4812. "name": "lauriii",
  4813. "homepage": "https://www.drupal.org/user/1078742"
  4814. },
  4815. {
  4816. "name": "zrpnr",
  4817. "homepage": "https://www.drupal.org/user/1448368"
  4818. }
  4819. ],
  4820. "description": "Provides jQuery UI Droppable library.",
  4821. "homepage": "https://www.drupal.org/project/jquery_ui_droppable",
  4822. "support": {
  4823. "source": "https://git.drupalcode.org/project/jquery_ui_droppable"
  4824. }
  4825. },
  4826. {
  4827. "name": "drupal/jquery_ui_slider",
  4828. "version": "2.0.0",
  4829. "source": {
  4830. "type": "git",
  4831. "url": "https://git.drupalcode.org/project/jquery_ui_slider.git",
  4832. "reference": "2.0.0"
  4833. },
  4834. "dist": {
  4835. "type": "zip",
  4836. "url": "https://ftp.drupal.org/files/projects/jquery_ui_slider-2.0.0.zip",
  4837. "reference": "2.0.0",
  4838. "shasum": "86b7d71e91013cffafb8021dbf8047745ebc5fd6"
  4839. },
  4840. "require": {
  4841. "drupal/core": "^9.2 || ^10",
  4842. "drupal/jquery_ui": "^1.6"
  4843. },
  4844. "type": "drupal-module",
  4845. "extra": {
  4846. "drupal": {
  4847. "version": "2.0.0",
  4848. "datestamp": "1670871571",
  4849. "security-coverage": {
  4850. "status": "covered",
  4851. "message": "Covered by Drupal's security advisory policy"
  4852. }
  4853. }
  4854. },
  4855. "notification-url": "https://packages.drupal.org/8/downloads",
  4856. "license": [
  4857. "GPL-2.0-or-later"
  4858. ],
  4859. "authors": [
  4860. {
  4861. "name": "bnjmnm",
  4862. "homepage": "https://www.drupal.org/user/2369194"
  4863. },
  4864. {
  4865. "name": "lauriii",
  4866. "homepage": "https://www.drupal.org/user/1078742"
  4867. },
  4868. {
  4869. "name": "zrpnr",
  4870. "homepage": "https://www.drupal.org/user/1448368"
  4871. }
  4872. ],
  4873. "description": "Provides jQuery UI Slider library.",
  4874. "homepage": "https://www.drupal.org/project/jquery_ui_slider",
  4875. "support": {
  4876. "source": "https://git.drupalcode.org/project/jquery_ui_slider"
  4877. }
  4878. },
  4879. {
  4880. "name": "drupal/jquery_ui_touch_punch",
  4881. "version": "1.1.0",
  4882. "source": {
  4883. "type": "git",
  4884. "url": "https://git.drupalcode.org/project/jquery_ui_touch_punch.git",
  4885. "reference": "1.1.0"
  4886. },
  4887. "dist": {
  4888. "type": "zip",
  4889. "url": "https://ftp.drupal.org/files/projects/jquery_ui_touch_punch-1.1.0.zip",
  4890. "reference": "1.1.0",
  4891. "shasum": "4b7e50a98246dfa6ef48e5b12c70277873902824"
  4892. },
  4893. "require": {
  4894. "drupal/core": "^8 || ^9 || ^10",
  4895. "drupal/jquery_ui": "^1.0",
  4896. "politsin/jquery-ui-touch-punch": "^1.0"
  4897. },
  4898. "type": "drupal-module",
  4899. "extra": {
  4900. "drupal": {
  4901. "version": "1.1.0",
  4902. "datestamp": "1662744607",
  4903. "security-coverage": {
  4904. "status": "covered",
  4905. "message": "Covered by Drupal's security advisory policy"
  4906. }
  4907. }
  4908. },
  4909. "notification-url": "https://packages.drupal.org/8/downloads",
  4910. "license": [
  4911. "GPL-2.0-or-later"
  4912. ],
  4913. "authors": [
  4914. {
  4915. "name": "Naveen Valecha",
  4916. "homepage": "https://drupal.org/u/naveenvalecha",
  4917. "role": "Maintainer"
  4918. },
  4919. {
  4920. "name": "naveenvalecha",
  4921. "homepage": "https://www.drupal.org/user/2665733"
  4922. }
  4923. ],
  4924. "description": "Provides jQuery UI Touch Punch library.",
  4925. "homepage": "https://www.drupal.org/project/jquery_ui_touch_punch",
  4926. "keywords": [
  4927. "Drupal",
  4928. "jquery_ui_touch_punch"
  4929. ],
  4930. "support": {
  4931. "source": "https://www.drupal.org/project/jquery_ui_touch_punch",
  4932. "issues": "https://www.drupal.org/project/issues/jquery_ui_touch_punch"
  4933. }
  4934. },
  4935. {
  4936. "name": "drupal/link_attributes",
  4937. "version": "1.14.0",
  4938. "source": {
  4939. "type": "git",
  4940. "url": "https://git.drupalcode.org/project/link_attributes.git",
  4941. "reference": "8.x-1.14"
  4942. },
  4943. "dist": {
  4944. "type": "zip",
  4945. "url": "https://ftp.drupal.org/files/projects/link_attributes-8.x-1.14.zip",
  4946. "reference": "8.x-1.14",
  4947. "shasum": "fa4f27ecaed7e6b3c58c0adc679918a9beb7ded5"
  4948. },
  4949. "require": {
  4950. "drupal/core": "^9 || ^10"
  4951. },
  4952. "type": "drupal-module",
  4953. "extra": {
  4954. "drupal": {
  4955. "version": "8.x-1.14",
  4956. "datestamp": "1687393687",
  4957. "security-coverage": {
  4958. "status": "covered",
  4959. "message": "Covered by Drupal's security advisory policy"
  4960. }
  4961. }
  4962. },
  4963. "notification-url": "https://packages.drupal.org/8/downloads",
  4964. "license": [
  4965. "GPL-2.0-or-later"
  4966. ],
  4967. "authors": [
  4968. {
  4969. "name": "larowlan",
  4970. "homepage": "https://www.drupal.org/user/395439"
  4971. }
  4972. ],
  4973. "description": "Provides a widget to allow settings of link attributes for menu links.",
  4974. "homepage": "https://www.drupal.org/project/link_attributes",
  4975. "keywords": [
  4976. "Drupal"
  4977. ],
  4978. "support": {
  4979. "source": "https://git.drupalcode.org/project/link_attributes",
  4980. "issues": "https://www.drupal.org/project/issues/link_attributes"
  4981. }
  4982. },
  4983. {
  4984. "name": "drupal/linked_field",
  4985. "version": "1.5.0",
  4986. "source": {
  4987. "type": "git",
  4988. "url": "https://git.drupalcode.org/project/linked_field.git",
  4989. "reference": "8.x-1.5"
  4990. },
  4991. "dist": {
  4992. "type": "zip",
  4993. "url": "https://ftp.drupal.org/files/projects/linked_field-8.x-1.5.zip",
  4994. "reference": "8.x-1.5",
  4995. "shasum": "31ed8008d2f88c693334f6faad03112280820fe0"
  4996. },
  4997. "require": {
  4998. "drupal/core": "^8.8 || ^9 || ^10"
  4999. },
  5000. "type": "drupal-module",
  5001. "extra": {
  5002. "drupal": {
  5003. "version": "8.x-1.5",
  5004. "datestamp": "1677239525",
  5005. "security-coverage": {
  5006. "status": "covered",
  5007. "message": "Covered by Drupal's security advisory policy"
  5008. }
  5009. }
  5010. },
  5011. "notification-url": "https://packages.drupal.org/8/downloads",
  5012. "license": [
  5013. "GPL-2.0-or-later"
  5014. ],
  5015. "authors": [
  5016. {
  5017. "name": "jcnventura",
  5018. "homepage": "https://www.drupal.org/user/122464"
  5019. },
  5020. {
  5021. "name": "yannickoo",
  5022. "homepage": "https://www.drupal.org/user/531118"
  5023. }
  5024. ],
  5025. "description": "Adds the functionality to link fields to a specific destination.",
  5026. "homepage": "https://www.drupal.org/project/linked_field",
  5027. "support": {
  5028. "source": "https://git.drupalcode.org/project/linked_field"
  5029. }
  5030. },
  5031. {
  5032. "name": "drupal/linkit",
  5033. "version": "6.1.2",
  5034. "source": {
  5035. "type": "git",
  5036. "url": "https://git.drupalcode.org/project/linkit.git",
  5037. "reference": "6.1.2"
  5038. },
  5039. "dist": {
  5040. "type": "zip",
  5041. "url": "https://ftp.drupal.org/files/projects/linkit-6.1.2.zip",
  5042. "reference": "6.1.2",
  5043. "shasum": "63fb311d2b78df81a9a588330429b640ec7da0e8"
  5044. },
  5045. "require": {
  5046. "drupal/core": "^10.1"
  5047. },
  5048. "require-dev": {
  5049. "drupal/ckeditor": "*",
  5050. "drupal/imce": "*"
  5051. },
  5052. "type": "drupal-module",
  5053. "extra": {
  5054. "drupal": {
  5055. "version": "6.1.2",
  5056. "datestamp": "1696865478",
  5057. "security-coverage": {
  5058. "status": "covered",
  5059. "message": "Covered by Drupal's security advisory policy"
  5060. }
  5061. }
  5062. },
  5063. "notification-url": "https://packages.drupal.org/8/downloads",
  5064. "license": [
  5065. "GPL-2.0-or-later"
  5066. ],
  5067. "authors": [
  5068. {
  5069. "name": "Emil Stjerneman",
  5070. "homepage": "https://stjerneman.com",
  5071. "email": "emil@stjerneman.com",
  5072. "role": "Maintainer"
  5073. },
  5074. {
  5075. "name": "johnwebdev",
  5076. "homepage": "https://www.drupal.org/user/3331569"
  5077. },
  5078. {
  5079. "name": "mark_fullmer",
  5080. "homepage": "https://www.drupal.org/user/2612816"
  5081. }
  5082. ],
  5083. "description": "Linkit - Enriched linking experience",
  5084. "homepage": "http://drupal.org/project/linkit",
  5085. "support": {
  5086. "source": "http://cgit.drupalcode.org/linkit",
  5087. "issues": "http://drupal.org/project/linkit"
  5088. }
  5089. },
  5090. {
  5091. "name": "drupal/login_destination",
  5092. "version": "dev-2.x",
  5093. "source": {
  5094. "type": "git",
  5095. "url": "https://git.drupalcode.org/project/login_destination.git",
  5096. "reference": "5ba35c477e9b902b08c70c60e1d28eff11cc8e9f"
  5097. },
  5098. "require": {
  5099. "drupal/core": "^8.7.10 || ^9 || ^10"
  5100. },
  5101. "require-dev": {
  5102. "drupal/admin_toolbar": "^1.23",
  5103. "drupal/admin_toolbar_tools": "*"
  5104. },
  5105. "type": "drupal-module",
  5106. "extra": {
  5107. "branch-alias": {
  5108. "dev-2.x": "2.x-dev"
  5109. },
  5110. "drupal": {
  5111. "version": "8.x-2.0-beta5+3-dev",
  5112. "datestamp": "1680181961",
  5113. "security-coverage": {
  5114. "status": "not-covered",
  5115. "message": "Dev releases are not covered by Drupal security advisories."
  5116. }
  5117. }
  5118. },
  5119. "notification-url": "https://packages.drupal.org/8/downloads",
  5120. "license": [
  5121. "GPL-2.0-or-later"
  5122. ],
  5123. "authors": [
  5124. {
  5125. "name": "rsvelko",
  5126. "homepage": "https://www.drupal.org/u/rsvelko",
  5127. "role": "Creator, Maintainer"
  5128. },
  5129. {
  5130. "name": "Other Contributors",
  5131. "homepage": "https://www.drupal.org/node/69051/committers",
  5132. "role": "Contributors"
  5133. },
  5134. {
  5135. "name": "ddrozdik",
  5136. "homepage": "https://www.drupal.org/user/574124"
  5137. },
  5138. {
  5139. "name": "jng12",
  5140. "homepage": "https://www.drupal.org/user/204316"
  5141. },
  5142. {
  5143. "name": "marcp",
  5144. "homepage": "https://www.drupal.org/user/20885"
  5145. },
  5146. {
  5147. "name": "mithy",
  5148. "homepage": "https://www.drupal.org/user/258911"
  5149. },
  5150. {
  5151. "name": "moshe weitzman",
  5152. "homepage": "https://www.drupal.org/user/23"
  5153. },
  5154. {
  5155. "name": "Oliver Huynh",
  5156. "homepage": "https://www.drupal.org/user/243730"
  5157. },
  5158. {
  5159. "name": "perennial.sky",
  5160. "homepage": "https://www.drupal.org/user/2622667"
  5161. },
  5162. {
  5163. "name": "rsvelko",
  5164. "homepage": "https://www.drupal.org/user/337401"
  5165. }
  5166. ],
  5167. "description": "Customizes the destination the user is redirected to after login/logout/registration/one-time login.",
  5168. "homepage": "https://drupal.org/project/login_destination",
  5169. "support": {
  5170. "source": "https://git.drupalcode.org/project/login_destination",
  5171. "issues": "https://drupal.org/project/issues/login_destination"
  5172. }
  5173. },
  5174. {
  5175. "name": "drupal/maillog",
  5176. "version": "dev-1.x",
  5177. "source": {
  5178. "type": "git",
  5179. "url": "https://git.drupalcode.org/project/maillog.git",
  5180. "reference": "baa5d6ca739e6aecfdf28461d54911a2f6a038a4"
  5181. },
  5182. "require": {
  5183. "drupal/core": "^9 || ^10"
  5184. },
  5185. "type": "drupal-module",
  5186. "extra": {
  5187. "branch-alias": {
  5188. "dev-1.x": "1.x-dev"
  5189. },
  5190. "drupal": {
  5191. "version": "8.x-1.1+2-dev",
  5192. "datestamp": "1686405787",
  5193. "security-coverage": {
  5194. "status": "not-covered",
  5195. "message": "Dev releases are not covered by Drupal security advisories."
  5196. }
  5197. }
  5198. },
  5199. "notification-url": "https://packages.drupal.org/8/downloads",
  5200. "license": [
  5201. "GPL-2.0-or-later"
  5202. ],
  5203. "authors": [
  5204. {
  5205. "name": "Berdir",
  5206. "homepage": "https://www.drupal.org/user/214652"
  5207. },
  5208. {
  5209. "name": "DamienMcKenna",
  5210. "homepage": "https://www.drupal.org/user/108450"
  5211. },
  5212. {
  5213. "name": "miro_dietiker",
  5214. "homepage": "https://www.drupal.org/user/227761"
  5215. },
  5216. {
  5217. "name": "pluess",
  5218. "homepage": "https://www.drupal.org/user/84659"
  5219. }
  5220. ],
  5221. "description": "Utility to log all Mails for debugging purposes. It is possible to suppress mail delivery for e.g. dev or staging systems.",
  5222. "homepage": "https://www.drupal.org/project/maillog",
  5223. "support": {
  5224. "source": "https://git.drupalcode.org/project/maillog"
  5225. }
  5226. },
  5227. {
  5228. "name": "drupal/matomo",
  5229. "version": "1.22.0",
  5230. "source": {
  5231. "type": "git",
  5232. "url": "https://git.drupalcode.org/project/matomo.git",
  5233. "reference": "8.x-1.22"
  5234. },
  5235. "dist": {
  5236. "type": "zip",
  5237. "url": "https://ftp.drupal.org/files/projects/matomo-8.x-1.22.zip",
  5238. "reference": "8.x-1.22",
  5239. "shasum": "b41bb83d9c0c6f8c27f72f6b1b62f691dab65a5d"
  5240. },
  5241. "require": {
  5242. "drupal/core": "^9.0 || ^10"
  5243. },
  5244. "conflict": {
  5245. "drupal/csp": "<1.12"
  5246. },
  5247. "require-dev": {
  5248. "drupal/csp": "~1.12",
  5249. "drupal/php": "~1.1",
  5250. "drupal/token": "~1.9"
  5251. },
  5252. "type": "drupal-module",
  5253. "extra": {
  5254. "drupal": {
  5255. "version": "8.x-1.22",
  5256. "datestamp": "1691004328",
  5257. "security-coverage": {
  5258. "status": "covered",
  5259. "message": "Covered by Drupal's security advisory policy"
  5260. }
  5261. }
  5262. },
  5263. "notification-url": "https://packages.drupal.org/8/downloads",
  5264. "license": [
  5265. "GPL-2.0-or-later"
  5266. ],
  5267. "authors": [
  5268. {
  5269. "name": "C-Logemann",
  5270. "homepage": "https://www.drupal.org/user/218368"
  5271. },
  5272. {
  5273. "name": "Grimreaper",
  5274. "homepage": "https://www.drupal.org/user/2388214"
  5275. },
  5276. {
  5277. "name": "hass",
  5278. "homepage": "https://www.drupal.org/user/85918"
  5279. },
  5280. {
  5281. "name": "shelane",
  5282. "homepage": "https://www.drupal.org/user/2674989"
  5283. }
  5284. ],
  5285. "description": "Adds Matomo javascript tracking code to all your site's pages.",
  5286. "homepage": "https://www.drupal.org/project/matomo",
  5287. "support": {
  5288. "source": "https://git.drupalcode.org/project/matomo"
  5289. }
  5290. },
  5291. {
  5292. "name": "drupal/maxlength",
  5293. "version": "2.1.2",
  5294. "source": {
  5295. "type": "git",
  5296. "url": "https://git.drupalcode.org/project/maxlength.git",
  5297. "reference": "2.1.2"
  5298. },
  5299. "dist": {
  5300. "type": "zip",
  5301. "url": "https://ftp.drupal.org/files/projects/maxlength-2.1.2.zip",
  5302. "reference": "2.1.2",
  5303. "shasum": "97015e4d1065770a92953c9f37fef5d55b360cf6"
  5304. },
  5305. "require": {
  5306. "drupal/core": "^9.2 || ^10"
  5307. },
  5308. "type": "drupal-module",
  5309. "extra": {
  5310. "drupal": {
  5311. "version": "2.1.2",
  5312. "datestamp": "1689974531",
  5313. "security-coverage": {
  5314. "status": "covered",
  5315. "message": "Covered by Drupal's security advisory policy"
  5316. }
  5317. }
  5318. },
  5319. "notification-url": "https://packages.drupal.org/8/downloads",
  5320. "license": [
  5321. "GPL-2.0-or-later"
  5322. ],
  5323. "authors": [
  5324. {
  5325. "name": "Marius Scurtescu (mariuss)",
  5326. "homepage": "https://www.drupal.org/u/mariuss",
  5327. "role": "Maintainer"
  5328. },
  5329. {
  5330. "name": "Clayton Dewey (cedewey)",
  5331. "homepage": "https://www.drupal.org/u/cedewey",
  5332. "role": "Maintainer"
  5333. },
  5334. {
  5335. "name": "Daniel Wehner (dawehner)",
  5336. "homepage": "https://www.drupal.org/u/dawehner",
  5337. "role": "Maintainer"
  5338. },
  5339. {
  5340. "name": "Paulino Michelazzo (pmichelazzo)",
  5341. "homepage": "https://www.drupal.org/u/pmichelazzo",
  5342. "role": "Maintainer"
  5343. },
  5344. {
  5345. "name": "Jeff Hipp (hipp2bsquare)",
  5346. "homepage": "https://www.drupal.org/u/hipp2bsquare",
  5347. "role": "Maintainer"
  5348. },
  5349. {
  5350. "name": "Steven DuBois (srdtwc)",
  5351. "homepage": "https://www.drupal.org/u/srdtwc",
  5352. "role": "Maintainer"
  5353. },
  5354. {
  5355. "name": "srdtwc",
  5356. "homepage": "https://www.drupal.org/user/3422763"
  5357. }
  5358. ],
  5359. "description": "MaxLength allows a soft or hard character limit to be set on titles, text fields and link fields.",
  5360. "homepage": "https://www.drupal.org/project/maxlength",
  5361. "support": {
  5362. "source": "https://git.drupalcode.org/project/maxlength",
  5363. "issues": "https://www.drupal.org/project/issues/maxlength"
  5364. }
  5365. },
  5366. {
  5367. "name": "drupal/menu_admin_per_menu",
  5368. "version": "1.5.0",
  5369. "source": {
  5370. "type": "git",
  5371. "url": "https://git.drupalcode.org/project/menu_admin_per_menu.git",
  5372. "reference": "8.x-1.5"
  5373. },
  5374. "dist": {
  5375. "type": "zip",
  5376. "url": "https://ftp.drupal.org/files/projects/menu_admin_per_menu-8.x-1.5.zip",
  5377. "reference": "8.x-1.5",
  5378. "shasum": "ec8c7a4a064aa285dfb722dad264da9936fc81b6"
  5379. },
  5380. "require": {
  5381. "drupal/core": "^9 || ^10"
  5382. },
  5383. "type": "drupal-module",
  5384. "extra": {
  5385. "drupal": {
  5386. "version": "8.x-1.5",
  5387. "datestamp": "1660918821",
  5388. "security-coverage": {
  5389. "status": "covered",
  5390. "message": "Covered by Drupal's security advisory policy"
  5391. }
  5392. }
  5393. },
  5394. "notification-url": "https://packages.drupal.org/8/downloads",
  5395. "license": [
  5396. "GPL-2.0-or-later"
  5397. ],
  5398. "authors": [
  5399. {
  5400. "name": "anrikun",
  5401. "homepage": "https://www.drupal.org/user/410199"
  5402. },
  5403. {
  5404. "name": "JeroenT",
  5405. "homepage": "https://www.drupal.org/user/2228934"
  5406. },
  5407. {
  5408. "name": "jonas139",
  5409. "homepage": "https://www.drupal.org/user/2873401"
  5410. },
  5411. {
  5412. "name": "mkdok",
  5413. "homepage": "https://www.drupal.org/user/3308753"
  5414. }
  5415. ],
  5416. "description": "Allows to give roles per menu admin permissions without giving them full administer menu permission.",
  5417. "homepage": "https://www.drupal.org/project/menu_admin_per_menu",
  5418. "support": {
  5419. "source": "https://git.drupalcode.org/project/menu_admin_per_menu"
  5420. }
  5421. },
  5422. {
  5423. "name": "drupal/menu_block",
  5424. "version": "dev-1.x",
  5425. "source": {
  5426. "type": "git",
  5427. "url": "https://git.drupalcode.org/project/menu_block.git",
  5428. "reference": "aafb3953b765e93d4de49c4fb6130a49304e6f2a"
  5429. },
  5430. "require": {
  5431. "drupal/core": "^9.1 || ^10"
  5432. },
  5433. "type": "drupal-module",
  5434. "extra": {
  5435. "branch-alias": {
  5436. "dev-1.x": "1.x-dev"
  5437. },
  5438. "drupal": {
  5439. "version": "8.x-1.9+1-dev",
  5440. "datestamp": "1667434044",
  5441. "security-coverage": {
  5442. "status": "not-covered",
  5443. "message": "Dev releases are not covered by Drupal security advisories."
  5444. }
  5445. }
  5446. },
  5447. "notification-url": "https://packages.drupal.org/8/downloads",
  5448. "license": [
  5449. "GPL-2.0-or-later"
  5450. ],
  5451. "authors": [
  5452. {
  5453. "name": "Dave Reid",
  5454. "homepage": "https://www.drupal.org/user/53892"
  5455. },
  5456. {
  5457. "name": "joelpittet",
  5458. "homepage": "https://www.drupal.org/user/160302"
  5459. },
  5460. {
  5461. "name": "JohnAlbin",
  5462. "homepage": "https://www.drupal.org/user/32095"
  5463. },
  5464. {
  5465. "name": "kim.pepper",
  5466. "homepage": "https://www.drupal.org/user/370574"
  5467. },
  5468. {
  5469. "name": "RenatoG",
  5470. "homepage": "https://www.drupal.org/user/3326031"
  5471. },
  5472. {
  5473. "name": "rrrob",
  5474. "homepage": "https://www.drupal.org/user/273533"
  5475. }
  5476. ],
  5477. "description": "Provides configurable blocks of menu links.",
  5478. "homepage": "https://www.drupal.org/project/menu_block",
  5479. "support": {
  5480. "source": "https://git.drupalcode.org/project/menu_block"
  5481. }
  5482. },
  5483. {
  5484. "name": "drupal/menu_position",
  5485. "version": "dev-1.x",
  5486. "source": {
  5487. "type": "git",
  5488. "url": "https://git.drupalcode.org/project/menu_position.git",
  5489. "reference": "f88cef07a70af63337a82652b9224a9c0b08b5b2"
  5490. },
  5491. "require": {
  5492. "drupal/core": "^8 || ^9 || ^10"
  5493. },
  5494. "type": "drupal-module",
  5495. "extra": {
  5496. "branch-alias": {
  5497. "dev-1.x": "1.x-dev"
  5498. },
  5499. "drupal": {
  5500. "version": "8.x-1.0+6-dev",
  5501. "datestamp": "1685505680",
  5502. "security-coverage": {
  5503. "status": "not-covered",
  5504. "message": "Dev releases are not covered by Drupal security advisories."
  5505. }
  5506. }
  5507. },
  5508. "notification-url": "https://packages.drupal.org/8/downloads",
  5509. "license": [
  5510. "GPL-2.0-or-later"
  5511. ],
  5512. "authors": [
  5513. {
  5514. "name": "BarisW",
  5515. "homepage": "https://www.drupal.org/user/107229"
  5516. },
  5517. {
  5518. "name": "joelpittet",
  5519. "homepage": "https://www.drupal.org/user/160302"
  5520. },
  5521. {
  5522. "name": "JohnAlbin",
  5523. "homepage": "https://www.drupal.org/user/32095"
  5524. },
  5525. {
  5526. "name": "lbainbridge",
  5527. "homepage": "https://www.drupal.org/user/2406996"
  5528. },
  5529. {
  5530. "name": "Rajab Natshah",
  5531. "homepage": "https://www.drupal.org/user/1414312"
  5532. },
  5533. {
  5534. "name": "Sutharsan",
  5535. "homepage": "https://www.drupal.org/user/73854"
  5536. }
  5537. ],
  5538. "description": "This module allows for the creation of rules that will dynamically add the current page into the menu system at the requested spots.",
  5539. "homepage": "https://www.drupal.org/project/menu_position",
  5540. "support": {
  5541. "source": "https://git.drupalcode.org/project/menu_position",
  5542. "issues": "https://www.drupal.org/project/issues/menu_position"
  5543. }
  5544. },
  5545. {
  5546. "name": "drupal/page_manager",
  5547. "version": "4.0.0-rc2",
  5548. "source": {
  5549. "type": "git",
  5550. "url": "https://git.drupalcode.org/project/page_manager.git",
  5551. "reference": "8.x-4.0-rc2"
  5552. },
  5553. "dist": {
  5554. "type": "zip",
  5555. "url": "https://ftp.drupal.org/files/projects/page_manager-8.x-4.0-rc2.zip",
  5556. "reference": "8.x-4.0-rc2",
  5557. "shasum": "4a1e96284c5775343fbb4612072a2abfc83ebc33"
  5558. },
  5559. "require": {
  5560. "drupal/core": "^9.3 || ^10",
  5561. "drupal/ctools": "^3.11 || ^4.0"
  5562. },
  5563. "type": "drupal-module",
  5564. "extra": {
  5565. "drupal": {
  5566. "version": "8.x-4.0-rc2",
  5567. "datestamp": "1671210021",
  5568. "security-coverage": {
  5569. "status": "not-covered",
  5570. "message": "RC releases are not covered by Drupal security advisories."
  5571. }
  5572. },
  5573. "branch-alias": {
  5574. "dev-8.x-4.x": "4.x-dev"
  5575. }
  5576. },
  5577. "notification-url": "https://packages.drupal.org/8/downloads",
  5578. "license": [
  5579. "GPL-2.0-or-later"
  5580. ],
  5581. "authors": [
  5582. {
  5583. "name": "Tim Plunkett",
  5584. "homepage": "https://www.drupal.org/u/tim.plunkett",
  5585. "role": "Maintainer"
  5586. },
  5587. {
  5588. "name": "EclipseGc",
  5589. "homepage": "https://www.drupal.org/user/61203"
  5590. },
  5591. {
  5592. "name": "ivnish",
  5593. "homepage": "https://www.drupal.org/user/3547706"
  5594. },
  5595. {
  5596. "name": "japerry",
  5597. "homepage": "https://www.drupal.org/user/45640"
  5598. },
  5599. {
  5600. "name": "joelpittet",
  5601. "homepage": "https://www.drupal.org/user/160302"
  5602. },
  5603. {
  5604. "name": "manuel.adan",
  5605. "homepage": "https://www.drupal.org/user/516420"
  5606. },
  5607. {
  5608. "name": "phenaproxima",
  5609. "homepage": "https://www.drupal.org/user/205645"
  5610. }
  5611. ],
  5612. "description": "Provides a way to place blocks on a custom page.",
  5613. "homepage": "https://www.drupal.org/project/page_manager",
  5614. "support": {
  5615. "source": "https://git.drupal.org/project/page_manager.git",
  5616. "issues": "https://www.drupal.org/project/issues/page_manager",
  5617. "irc": "irc://irc.freenode.org/drupal-contribute"
  5618. }
  5619. },
  5620. {
  5621. "name": "drupal/pagerer",
  5622. "version": "3.0.0",
  5623. "source": {
  5624. "type": "git",
  5625. "url": "https://git.drupalcode.org/project/pagerer.git",
  5626. "reference": "3.0.0"
  5627. },
  5628. "dist": {
  5629. "type": "zip",
  5630. "url": "https://ftp.drupal.org/files/projects/pagerer-3.0.0.zip",
  5631. "reference": "3.0.0",
  5632. "shasum": "8b81271842b68399c1c58d0809cf1c737fa2aa1c"
  5633. },
  5634. "require": {
  5635. "drupal/core": "^10"
  5636. },
  5637. "type": "drupal-module",
  5638. "extra": {
  5639. "drupal": {
  5640. "version": "3.0.0",
  5641. "datestamp": "1663962586",
  5642. "security-coverage": {
  5643. "status": "covered",
  5644. "message": "Covered by Drupal's security advisory policy"
  5645. }
  5646. }
  5647. },
  5648. "notification-url": "https://packages.drupal.org/8/downloads",
  5649. "license": [
  5650. "GPL-2.0-or-later"
  5651. ],
  5652. "authors": [
  5653. {
  5654. "name": "mondrake",
  5655. "homepage": "https://www.drupal.org/user/1307444"
  5656. }
  5657. ],
  5658. "description": "Configurable pager styles.",
  5659. "homepage": "https://www.drupal.org/project/pagerer",
  5660. "support": {
  5661. "source": "https://git.drupalcode.org/project/pagerer"
  5662. }
  5663. },
  5664. {
  5665. "name": "drupal/panels",
  5666. "version": "4.7.0",
  5667. "source": {
  5668. "type": "git",
  5669. "url": "https://git.drupalcode.org/project/panels.git",
  5670. "reference": "8.x-4.7"
  5671. },
  5672. "dist": {
  5673. "type": "zip",
  5674. "url": "https://ftp.drupal.org/files/projects/panels-8.x-4.7.zip",
  5675. "reference": "8.x-4.7",
  5676. "shasum": "5536f192d328e93a9f8c4a2646df15c514d75639"
  5677. },
  5678. "require": {
  5679. "drupal/core": "^9.2 || ^10",
  5680. "drupal/ctools": "^3.12",
  5681. "drupal/jquery_ui_droppable": "^1.5"
  5682. },
  5683. "require-dev": {
  5684. "drupal/jquery_ui_droppable": "*",
  5685. "drupal/page_manager": "^4"
  5686. },
  5687. "type": "drupal-module",
  5688. "extra": {
  5689. "drupal": {
  5690. "version": "8.x-4.7",
  5691. "datestamp": "1668632919",
  5692. "security-coverage": {
  5693. "status": "covered",
  5694. "message": "Covered by Drupal's security advisory policy"
  5695. }
  5696. },
  5697. "branch-alias": {
  5698. "dev-8.x-4.x": "4.x-dev"
  5699. }
  5700. },
  5701. "notification-url": "https://packages.drupal.org/8/downloads",
  5702. "license": [
  5703. "GPL-2.0+"
  5704. ],
  5705. "authors": [
  5706. {
  5707. "name": "Jakob Perry",
  5708. "homepage": "https://www.drupal.org/u/japerry"
  5709. },
  5710. {
  5711. "name": "Samuel Mortenson",
  5712. "homepage": "https://www.drupal.org/u/samuel.mortenson"
  5713. },
  5714. {
  5715. "name": "See other contributors",
  5716. "homepage": "https://www.drupal.org/node/74958/committers"
  5717. },
  5718. {
  5719. "name": "joelpittet",
  5720. "homepage": "https://www.drupal.org/user/160302"
  5721. },
  5722. {
  5723. "name": "Letharion",
  5724. "homepage": "https://www.drupal.org/user/373603"
  5725. },
  5726. {
  5727. "name": "merlinofchaos",
  5728. "homepage": "https://www.drupal.org/user/26979"
  5729. },
  5730. {
  5731. "name": "neclimdul",
  5732. "homepage": "https://www.drupal.org/user/48673"
  5733. },
  5734. {
  5735. "name": "phenaproxima",
  5736. "homepage": "https://www.drupal.org/user/205645"
  5737. },
  5738. {
  5739. "name": "samuel.mortenson",
  5740. "homepage": "https://www.drupal.org/user/2582268"
  5741. }
  5742. ],
  5743. "description": "Core Panels display functions; provides no external UI, at least one other Panels module should be enabled.",
  5744. "homepage": "https://www.drupal.org/project/panels",
  5745. "support": {
  5746. "source": "http://git.drupal.org/project/panels.git",
  5747. "issues": "https://www.drupal.org/project/issues/panels",
  5748. "irc": "irc://irc.freenode.org/drupal-scotch"
  5749. }
  5750. },
  5751. {
  5752. "name": "drupal/paragraphs",
  5753. "version": "1.16.0",
  5754. "source": {
  5755. "type": "git",
  5756. "url": "https://git.drupalcode.org/project/paragraphs.git",
  5757. "reference": "8.x-1.16"
  5758. },
  5759. "dist": {
  5760. "type": "zip",
  5761. "url": "https://ftp.drupal.org/files/projects/paragraphs-8.x-1.16.zip",
  5762. "reference": "8.x-1.16",
  5763. "shasum": "48f60810fd8086a52d56e84af8b212cce7a270e8"
  5764. },
  5765. "require": {
  5766. "drupal/core": "^9.3 || ^10",
  5767. "drupal/entity_reference_revisions": "~1.3"
  5768. },
  5769. "require-dev": {
  5770. "drupal/block_field": "1.x-dev",
  5771. "drupal/diff": "1.x-dev",
  5772. "drupal/entity_browser": "2.x-dev",
  5773. "drupal/entity_usage": "2.x-dev",
  5774. "drupal/field_group": "3.x-dev",
  5775. "drupal/inline_entity_form": "1.x-dev",
  5776. "drupal/paragraphs-paragraphs_library": "*",
  5777. "drupal/replicate": "1.x-dev",
  5778. "drupal/search_api": "1.x-dev",
  5779. "drupal/search_api_db": "*"
  5780. },
  5781. "suggest": {
  5782. "drupal/entity_browser": "Recommended for an improved user experience when using the Paragraphs library module"
  5783. },
  5784. "type": "drupal-module",
  5785. "extra": {
  5786. "drupal": {
  5787. "version": "8.x-1.16",
  5788. "datestamp": "1694007797",
  5789. "security-coverage": {
  5790. "status": "covered",
  5791. "message": "Covered by Drupal's security advisory policy"
  5792. }
  5793. }
  5794. },
  5795. "notification-url": "https://packages.drupal.org/8/downloads",
  5796. "license": [
  5797. "GPL-2.0-or-later"
  5798. ],
  5799. "authors": [
  5800. {
  5801. "name": "Berdir",
  5802. "homepage": "https://www.drupal.org/user/214652"
  5803. },
  5804. {
  5805. "name": "Frans",
  5806. "homepage": "https://www.drupal.org/user/514222"
  5807. },
  5808. {
  5809. "name": "jeroen.b",
  5810. "homepage": "https://www.drupal.org/user/1853532"
  5811. },
  5812. {
  5813. "name": "jstoller",
  5814. "homepage": "https://www.drupal.org/user/99012"
  5815. },
  5816. {
  5817. "name": "miro_dietiker",
  5818. "homepage": "https://www.drupal.org/user/227761"
  5819. },
  5820. {
  5821. "name": "Primsi",
  5822. "homepage": "https://www.drupal.org/user/282629"
  5823. }
  5824. ],
  5825. "description": "Enables the creation of Paragraphs entities.",
  5826. "homepage": "https://www.drupal.org/project/paragraphs",
  5827. "support": {
  5828. "source": "https://git.drupalcode.org/project/paragraphs"
  5829. }
  5830. },
  5831. {
  5832. "name": "drupal/path_alias_xt",
  5833. "version": "dev-1.x",
  5834. "source": {
  5835. "type": "git",
  5836. "url": "https://git.drupalcode.org/project/path_alias_xt.git",
  5837. "reference": "0573ad218a2f7143544626165418eaeec03e1157"
  5838. },
  5839. "require": {
  5840. "drupal/core": "^9.3 || ^10"
  5841. },
  5842. "type": "drupal-module",
  5843. "extra": {
  5844. "branch-alias": {
  5845. "dev-1.x": "1.x-dev"
  5846. },
  5847. "drupal": {
  5848. "version": "8.x-1.x-dev",
  5849. "datestamp": "1658166545",
  5850. "security-coverage": {
  5851. "status": "not-covered",
  5852. "message": "Dev releases are not covered by Drupal security advisories."
  5853. }
  5854. }
  5855. },
  5856. "notification-url": "https://packages.drupal.org/8/downloads",
  5857. "license": [
  5858. "GPL-2.0-or-later"
  5859. ],
  5860. "authors": [
  5861. {
  5862. "name": "adriancid",
  5863. "homepage": "https://www.drupal.org/user/1962106"
  5864. },
  5865. {
  5866. "name": "RdeBoer",
  5867. "homepage": "https://www.drupal.org/user/404007"
  5868. },
  5869. {
  5870. "name": "sdstyles",
  5871. "homepage": "https://www.drupal.org/user/1420228"
  5872. }
  5873. ],
  5874. "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.",
  5875. "homepage": "https://www.drupal.org/project/path_alias_xt",
  5876. "support": {
  5877. "source": "https://git.drupalcode.org/project/path_alias_xt"
  5878. }
  5879. },
  5880. {
  5881. "name": "drupal/pathauto",
  5882. "version": "1.12.0",
  5883. "source": {
  5884. "type": "git",
  5885. "url": "https://git.drupalcode.org/project/pathauto.git",
  5886. "reference": "8.x-1.12"
  5887. },
  5888. "dist": {
  5889. "type": "zip",
  5890. "url": "https://ftp.drupal.org/files/projects/pathauto-8.x-1.12.zip",
  5891. "reference": "8.x-1.12",
  5892. "shasum": "b7b6432e315e38e59a7c6cc117134326c580de4c"
  5893. },
  5894. "require": {
  5895. "drupal/core": "^9.3 || ^10",
  5896. "drupal/ctools": "*",
  5897. "drupal/token": "*"
  5898. },
  5899. "suggest": {
  5900. "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."
  5901. },
  5902. "type": "drupal-module",
  5903. "extra": {
  5904. "drupal": {
  5905. "version": "8.x-1.12",
  5906. "datestamp": "1696776683",
  5907. "security-coverage": {
  5908. "status": "covered",
  5909. "message": "Covered by Drupal's security advisory policy"
  5910. }
  5911. },
  5912. "drush": {
  5913. "services": {
  5914. "drush.services.yml": "^9 || ^10"
  5915. }
  5916. }
  5917. },
  5918. "notification-url": "https://packages.drupal.org/8/downloads",
  5919. "license": [
  5920. "GPL-2.0-or-later"
  5921. ],
  5922. "authors": [
  5923. {
  5924. "name": "Berdir",
  5925. "homepage": "https://www.drupal.org/user/214652"
  5926. },
  5927. {
  5928. "name": "Dave Reid",
  5929. "homepage": "https://www.drupal.org/user/53892"
  5930. },
  5931. {
  5932. "name": "Freso",
  5933. "homepage": "https://www.drupal.org/user/27504"
  5934. },
  5935. {
  5936. "name": "greggles",
  5937. "homepage": "https://www.drupal.org/user/36762"
  5938. }
  5939. ],
  5940. "description": "Provides a mechanism for modules to automatically generate aliases for the content they manage.",
  5941. "homepage": "https://www.drupal.org/project/pathauto",
  5942. "support": {
  5943. "source": "https://cgit.drupalcode.org/pathauto",
  5944. "issues": "https://www.drupal.org/project/issues/pathauto",
  5945. "documentation": "https://www.drupal.org/docs/8/modules/pathauto"
  5946. }
  5947. },
  5948. {
  5949. "name": "drupal/pathologic",
  5950. "version": "2.0.0-alpha1",
  5951. "source": {
  5952. "type": "git",
  5953. "url": "https://git.drupalcode.org/project/pathologic.git",
  5954. "reference": "2.0.0-alpha1"
  5955. },
  5956. "dist": {
  5957. "type": "zip",
  5958. "url": "https://ftp.drupal.org/files/projects/pathologic-2.0.0-alpha1.zip",
  5959. "reference": "2.0.0-alpha1",
  5960. "shasum": "be911b098ece7d1ffa55cf0d5f33d38ea40acda4"
  5961. },
  5962. "require": {
  5963. "drupal/core": "^9 || ^10"
  5964. },
  5965. "type": "drupal-module",
  5966. "extra": {
  5967. "drupal": {
  5968. "version": "2.0.0-alpha1",
  5969. "datestamp": "1681263978",
  5970. "security-coverage": {
  5971. "status": "not-covered",
  5972. "message": "Alpha releases are not covered by Drupal security advisories."
  5973. }
  5974. }
  5975. },
  5976. "notification-url": "https://packages.drupal.org/8/downloads",
  5977. "license": [
  5978. "GPL-2.0+"
  5979. ],
  5980. "authors": [
  5981. {
  5982. "name": "Berdir",
  5983. "homepage": "https://www.drupal.org/user/214652"
  5984. },
  5985. {
  5986. "name": "dww",
  5987. "homepage": "https://www.drupal.org/user/46549"
  5988. },
  5989. {
  5990. "name": "Garrett Albright",
  5991. "homepage": "https://www.drupal.org/user/191212"
  5992. },
  5993. {
  5994. "name": "mark_fullmer",
  5995. "homepage": "https://www.drupal.org/user/2612816"
  5996. }
  5997. ],
  5998. "description": "Helps avoid broken links and incorrect paths in content.",
  5999. "homepage": "https://www.drupal.org/project/pathologic",
  6000. "support": {
  6001. "source": "https://git.drupalcode.org/project/pathologic"
  6002. }
  6003. },
  6004. {
  6005. "name": "drupal/persistent_login",
  6006. "version": "1.6.0",
  6007. "source": {
  6008. "type": "git",
  6009. "url": "https://git.drupalcode.org/project/persistent_login.git",
  6010. "reference": "8.x-1.6"
  6011. },
  6012. "dist": {
  6013. "type": "zip",
  6014. "url": "https://ftp.drupal.org/files/projects/persistent_login-8.x-1.6.zip",
  6015. "reference": "8.x-1.6",
  6016. "shasum": "87bc87ae8c4035efbdf8d6cae17c489c4fdd0aa3"
  6017. },
  6018. "require": {
  6019. "drupal/core": "^9.2 || ^10"
  6020. },
  6021. "type": "drupal-module",
  6022. "extra": {
  6023. "drupal": {
  6024. "version": "8.x-1.6",
  6025. "datestamp": "1679547817",
  6026. "security-coverage": {
  6027. "status": "covered",
  6028. "message": "Covered by Drupal's security advisory policy"
  6029. }
  6030. }
  6031. },
  6032. "notification-url": "https://packages.drupal.org/8/downloads",
  6033. "license": [
  6034. "GPL-2.0-or-later"
  6035. ],
  6036. "authors": [
  6037. {
  6038. "name": "gapple",
  6039. "homepage": "https://www.drupal.org/user/490940"
  6040. }
  6041. ],
  6042. "description": "Provides a \"Remember Me\" feature on the login form.",
  6043. "homepage": "https://www.drupal.org/project/persistent_login",
  6044. "keywords": [
  6045. "Drupal"
  6046. ],
  6047. "support": {
  6048. "source": "https://git.drupalcode.org/project/persistent_login",
  6049. "issues": "https://www.drupal.org/project/issues/persistent_login"
  6050. }
  6051. },
  6052. {
  6053. "name": "drupal/phone_number",
  6054. "version": "2.0.0-alpha5",
  6055. "source": {
  6056. "type": "git",
  6057. "url": "https://git.drupalcode.org/project/phone_number.git",
  6058. "reference": "2.0.0-alpha5"
  6059. },
  6060. "dist": {
  6061. "type": "zip",
  6062. "url": "https://ftp.drupal.org/files/projects/phone_number-2.0.0-alpha5.zip",
  6063. "reference": "2.0.0-alpha5",
  6064. "shasum": "b57f78b8d68c6e1017cdeb7ff77440729d9216c4"
  6065. },
  6066. "require": {
  6067. "drupal/core": "^9.2 || ^10",
  6068. "giggsey/libphonenumber-for-php": "^8.0"
  6069. },
  6070. "type": "drupal-module",
  6071. "extra": {
  6072. "drupal": {
  6073. "version": "2.0.0-alpha5",
  6074. "datestamp": "1698159525",
  6075. "security-coverage": {
  6076. "status": "not-covered",
  6077. "message": "Alpha releases are not covered by Drupal security advisories."
  6078. }
  6079. }
  6080. },
  6081. "notification-url": "https://packages.drupal.org/8/downloads",
  6082. "license": [
  6083. "GPL-2.0+"
  6084. ],
  6085. "authors": [
  6086. {
  6087. "name": "Christopher Caldwell",
  6088. "homepage": "https://www.drupal.org/u/chrisolof",
  6089. "email": "chrisolof@gmail.com",
  6090. "role": "Maintainer"
  6091. },
  6092. {
  6093. "name": "nyariv",
  6094. "homepage": "https://www.drupal.org/user/2747789"
  6095. },
  6096. {
  6097. "name": "tim-diels",
  6098. "homepage": "https://www.drupal.org/user/2915097"
  6099. },
  6100. {
  6101. "name": "vaish",
  6102. "homepage": "https://www.drupal.org/user/92189"
  6103. }
  6104. ],
  6105. "description": "A validated phone number field.",
  6106. "homepage": "http://drupal.org/project/phone_number",
  6107. "support": {
  6108. "source": "https://git.drupalcode.org/project/phone_number"
  6109. }
  6110. },
  6111. {
  6112. "name": "drupal/profile",
  6113. "version": "1.7.0",
  6114. "source": {
  6115. "type": "git",
  6116. "url": "https://git.drupalcode.org/project/profile.git",
  6117. "reference": "8.x-1.7"
  6118. },
  6119. "dist": {
  6120. "type": "zip",
  6121. "url": "https://ftp.drupal.org/files/projects/profile-8.x-1.7.zip",
  6122. "reference": "8.x-1.7",
  6123. "shasum": "f0236acff507aff2a1e2e11cb9c873a0b608ec1c"
  6124. },
  6125. "require": {
  6126. "drupal/core": "^9 || ^10",
  6127. "drupal/entity": "^1.0"
  6128. },
  6129. "require-dev": {
  6130. "drupal/token": "^1.7"
  6131. },
  6132. "type": "drupal-module",
  6133. "extra": {
  6134. "drupal": {
  6135. "version": "8.x-1.7",
  6136. "datestamp": "1665131792",
  6137. "security-coverage": {
  6138. "status": "covered",
  6139. "message": "Covered by Drupal's security advisory policy"
  6140. }
  6141. }
  6142. },
  6143. "notification-url": "https://packages.drupal.org/8/downloads",
  6144. "license": [
  6145. "GPL-2.0-or-later"
  6146. ],
  6147. "authors": [
  6148. {
  6149. "name": "bojanz",
  6150. "homepage": "https://www.drupal.org/user/86106"
  6151. },
  6152. {
  6153. "name": "daggerhart",
  6154. "homepage": "https://www.drupal.org/user/167806"
  6155. },
  6156. {
  6157. "name": "fago",
  6158. "homepage": "https://www.drupal.org/user/16747"
  6159. },
  6160. {
  6161. "name": "jsacksick",
  6162. "homepage": "https://www.drupal.org/user/972218"
  6163. },
  6164. {
  6165. "name": "mglaman",
  6166. "homepage": "https://www.drupal.org/user/2416470"
  6167. },
  6168. {
  6169. "name": "pcambra",
  6170. "homepage": "https://www.drupal.org/user/122101"
  6171. }
  6172. ],
  6173. "description": "Provides configurable user profiles.",
  6174. "homepage": "https://drupal.org/project/profile",
  6175. "support": {
  6176. "source": "https://git.drupalcode.org/project/profile"
  6177. }
  6178. },
  6179. {
  6180. "name": "drupal/redirect",
  6181. "version": "1.9.0",
  6182. "source": {
  6183. "type": "git",
  6184. "url": "https://git.drupalcode.org/project/redirect.git",
  6185. "reference": "8.x-1.9"
  6186. },
  6187. "dist": {
  6188. "type": "zip",
  6189. "url": "https://ftp.drupal.org/files/projects/redirect-8.x-1.9.zip",
  6190. "reference": "8.x-1.9",
  6191. "shasum": "2987de20f509e9f7cec8a0f81d3a6774f9b0ba3e"
  6192. },
  6193. "require": {
  6194. "drupal/core": "^9.2 || ^10"
  6195. },
  6196. "type": "drupal-module",
  6197. "extra": {
  6198. "drupal": {
  6199. "version": "8.x-1.9",
  6200. "datestamp": "1693393506",
  6201. "security-coverage": {
  6202. "status": "covered",
  6203. "message": "Covered by Drupal's security advisory policy"
  6204. }
  6205. }
  6206. },
  6207. "notification-url": "https://packages.drupal.org/8/downloads",
  6208. "license": [
  6209. "GPL-2.0-or-later"
  6210. ],
  6211. "authors": [
  6212. {
  6213. "name": "Berdir",
  6214. "homepage": "https://www.drupal.org/user/214652"
  6215. },
  6216. {
  6217. "name": "Dave Reid",
  6218. "homepage": "https://www.drupal.org/user/53892"
  6219. },
  6220. {
  6221. "name": "Kristen Pol",
  6222. "homepage": "https://www.drupal.org/user/8389"
  6223. },
  6224. {
  6225. "name": "pifagor",
  6226. "homepage": "https://www.drupal.org/user/2375692"
  6227. }
  6228. ],
  6229. "description": "Allows users to redirect from old URLs to new URLs.",
  6230. "homepage": "https://www.drupal.org/project/redirect",
  6231. "support": {
  6232. "source": "https://git.drupalcode.org/project/redirect"
  6233. }
  6234. },
  6235. {
  6236. "name": "drupal/redis",
  6237. "version": "1.7.0",
  6238. "source": {
  6239. "type": "git",
  6240. "url": "https://git.drupalcode.org/project/redis.git",
  6241. "reference": "8.x-1.7"
  6242. },
  6243. "dist": {
  6244. "type": "zip",
  6245. "url": "https://ftp.drupal.org/files/projects/redis-8.x-1.7.zip",
  6246. "reference": "8.x-1.7",
  6247. "shasum": "602043bdad62ff047321121edcfde8abf3638c7c"
  6248. },
  6249. "require": {
  6250. "drupal/core": "^9.3 || ^10"
  6251. },
  6252. "suggest": {
  6253. "ext-redis": "Required to use the PhpRedis as redis driver (^4.0|^5.0).",
  6254. "ext-relay": "Required to use the Relay as Redis driver (^0.5|^1.0).",
  6255. "predis/predis": "Required to use the Predis as redis driver (^1.1|^2.0)."
  6256. },
  6257. "type": "drupal-module",
  6258. "extra": {
  6259. "drupal": {
  6260. "version": "8.x-1.7",
  6261. "datestamp": "1686175620",
  6262. "security-coverage": {
  6263. "status": "covered",
  6264. "message": "Covered by Drupal's security advisory policy"
  6265. }
  6266. }
  6267. },
  6268. "autoload": {
  6269. "psr-4": {
  6270. "Drupal\\redis\\": "src"
  6271. }
  6272. },
  6273. "notification-url": "https://packages.drupal.org/8/downloads",
  6274. "license": [
  6275. "GPL-2.0-or-later"
  6276. ],
  6277. "authors": [
  6278. {
  6279. "name": "Berdir",
  6280. "homepage": "https://www.drupal.org/user/214652"
  6281. },
  6282. {
  6283. "name": "greg.1.anderson",
  6284. "homepage": "https://www.drupal.org/user/438598"
  6285. },
  6286. {
  6287. "name": "kporras07",
  6288. "homepage": "https://www.drupal.org/user/1349780"
  6289. },
  6290. {
  6291. "name": "pounard",
  6292. "homepage": "https://www.drupal.org/user/240164"
  6293. }
  6294. ],
  6295. "description": "Integration of Drupal with the Redis key-value store.",
  6296. "homepage": "https://www.drupal.org/project/redis",
  6297. "support": {
  6298. "source": "https://git.drupalcode.org/project/redis"
  6299. }
  6300. },
  6301. {
  6302. "name": "drupal/search_api",
  6303. "version": "1.30.0",
  6304. "source": {
  6305. "type": "git",
  6306. "url": "https://git.drupalcode.org/project/search_api.git",
  6307. "reference": "8.x-1.30"
  6308. },
  6309. "dist": {
  6310. "type": "zip",
  6311. "url": "https://ftp.drupal.org/files/projects/search_api-8.x-1.30.zip",
  6312. "reference": "8.x-1.30",
  6313. "shasum": "25bd2cfab6a6332c595fbc8be1c4cfff33a85ce8"
  6314. },
  6315. "require": {
  6316. "drupal/core": "^9.3 || ^10.0"
  6317. },
  6318. "conflict": {
  6319. "drupal/search_api_solr": "2.* || 3.0 || 3.1"
  6320. },
  6321. "require-dev": {
  6322. "drupal/language_fallback_fix": "@dev",
  6323. "drupal/search_api_autocomplete": "@dev",
  6324. "drupal/search_api_db": "*"
  6325. },
  6326. "suggest": {
  6327. "drupal/facets": "Adds the ability to create faceted searches.",
  6328. "drupal/search_api_autocomplete": "Allows adding autocomplete suggestions to search fields.",
  6329. "drupal/search_api_solr": "Adds support for using Apache Solr as a backend."
  6330. },
  6331. "type": "drupal-module",
  6332. "extra": {
  6333. "drupal": {
  6334. "version": "8.x-1.30",
  6335. "datestamp": "1697366291",
  6336. "security-coverage": {
  6337. "status": "covered",
  6338. "message": "Covered by Drupal's security advisory policy"
  6339. }
  6340. },
  6341. "drush": {
  6342. "services": {
  6343. "drush.services.yml": "^9 || ^10 || ^11"
  6344. }
  6345. }
  6346. },
  6347. "notification-url": "https://packages.drupal.org/8/downloads",
  6348. "license": [
  6349. "GPL-2.0-or-later"
  6350. ],
  6351. "authors": [
  6352. {
  6353. "name": "Thomas Seidl",
  6354. "homepage": "https://www.drupal.org/u/drunken-monkey"
  6355. },
  6356. {
  6357. "name": "Nick Veenhof",
  6358. "homepage": "https://www.drupal.org/u/nick_vh"
  6359. },
  6360. {
  6361. "name": "See other contributors",
  6362. "homepage": "https://www.drupal.org/node/790418/committers"
  6363. }
  6364. ],
  6365. "description": "Provides a generic framework for modules offering search capabilities.",
  6366. "homepage": "https://www.drupal.org/project/search_api",
  6367. "support": {
  6368. "source": "https://git.drupalcode.org/project/search_api",
  6369. "issues": "https://www.drupal.org/project/issues/search_api",
  6370. "irc": "irc://irc.freenode.org/drupal-search-api"
  6371. }
  6372. },
  6373. {
  6374. "name": "drupal/search_api_db",
  6375. "version": "1.30.0",
  6376. "require": {
  6377. "drupal/core": "^9.2 || ^10.0",
  6378. "drupal/search_api": "*"
  6379. },
  6380. "type": "metapackage",
  6381. "extra": {
  6382. "drupal": {
  6383. "version": "8.x-1.30",
  6384. "datestamp": "1697366291",
  6385. "security-coverage": {
  6386. "status": "covered",
  6387. "message": "Covered by Drupal's security advisory policy"
  6388. }
  6389. }
  6390. },
  6391. "notification-url": "https://packages.drupal.org/8/downloads",
  6392. "license": [
  6393. "GPL-2.0-or-later"
  6394. ],
  6395. "authors": [
  6396. {
  6397. "name": "borisson_",
  6398. "homepage": "https://www.drupal.org/user/2393360"
  6399. },
  6400. {
  6401. "name": "drunken monkey",
  6402. "homepage": "https://www.drupal.org/user/205582"
  6403. },
  6404. {
  6405. "name": "Nick_vh",
  6406. "homepage": "https://www.drupal.org/user/122682"
  6407. }
  6408. ],
  6409. "description": "Offers an implementation of the Search API that uses database tables for indexing content.",
  6410. "homepage": "https://www.drupal.org/project/search_api",
  6411. "support": {
  6412. "source": "https://git.drupalcode.org/project/search_api"
  6413. }
  6414. },
  6415. {
  6416. "name": "drupal/seven",
  6417. "version": "1.0.0",
  6418. "source": {
  6419. "type": "git",
  6420. "url": "https://git.drupalcode.org/project/seven.git",
  6421. "reference": "1.0.0"
  6422. },
  6423. "dist": {
  6424. "type": "zip",
  6425. "url": "https://ftp.drupal.org/files/projects/seven-1.0.0.zip",
  6426. "reference": "1.0.0",
  6427. "shasum": "88e86926388c7e6cf66b0502d13a0470ce2399cd"
  6428. },
  6429. "require": {
  6430. "drupal/core": "^9 || ^10"
  6431. },
  6432. "type": "drupal-theme",
  6433. "extra": {
  6434. "drupal": {
  6435. "version": "1.0.0",
  6436. "datestamp": "1683652106",
  6437. "security-coverage": {
  6438. "status": "covered",
  6439. "message": "Covered by Drupal's security advisory policy"
  6440. }
  6441. }
  6442. },
  6443. "notification-url": "https://packages.drupal.org/8/downloads",
  6444. "license": [
  6445. "GPL-2.0-or-later"
  6446. ],
  6447. "authors": [
  6448. {
  6449. "name": "bnjmnm",
  6450. "homepage": "https://www.drupal.org/user/2369194"
  6451. },
  6452. {
  6453. "name": "lauriii",
  6454. "homepage": "https://www.drupal.org/user/1078742"
  6455. },
  6456. {
  6457. "name": "mcrittenden",
  6458. "homepage": "https://www.drupal.org/user/420631"
  6459. },
  6460. {
  6461. "name": "mrfelton",
  6462. "homepage": "https://www.drupal.org/user/305669"
  6463. },
  6464. {
  6465. "name": "TravisCarden",
  6466. "homepage": "https://www.drupal.org/user/236758"
  6467. }
  6468. ],
  6469. "description": "The Seven theme from Drupal 8/9 moved to contrib",
  6470. "homepage": "https://www.drupal.org/project/seven",
  6471. "support": {
  6472. "source": "https://git.drupalcode.org/project/seven"
  6473. }
  6474. },
  6475. {
  6476. "name": "drupal/smart_trim",
  6477. "version": "2.1.0",
  6478. "source": {
  6479. "type": "git",
  6480. "url": "https://git.drupalcode.org/project/smart_trim.git",
  6481. "reference": "2.1.0"
  6482. },
  6483. "dist": {
  6484. "type": "zip",
  6485. "url": "https://ftp.drupal.org/files/projects/smart_trim-2.1.0.zip",
  6486. "reference": "2.1.0",
  6487. "shasum": "874b4cbddc4833f1b9adc76a8398377903fd73ee"
  6488. },
  6489. "require": {
  6490. "drupal/core": "^8 || ^9 || ^10",
  6491. "drupal/token": "^1.0",
  6492. "php": ">=7.4.0"
  6493. },
  6494. "require-dev": {
  6495. "drupal/token_filter": "^2.0"
  6496. },
  6497. "type": "drupal-module",
  6498. "extra": {
  6499. "drupal": {
  6500. "version": "2.1.0",
  6501. "datestamp": "1686152417",
  6502. "security-coverage": {
  6503. "status": "covered",
  6504. "message": "Covered by Drupal's security advisory policy"
  6505. }
  6506. }
  6507. },
  6508. "notification-url": "https://packages.drupal.org/8/downloads",
  6509. "license": [
  6510. "GPL-2.0-or-later"
  6511. ],
  6512. "authors": [
  6513. {
  6514. "name": "Mark Casias (markie)",
  6515. "homepage": "https://www.drupal.org/u/markie",
  6516. "role": "Maintainer"
  6517. },
  6518. {
  6519. "name": "AmyJune Hineline (volkswagenchick)",
  6520. "homepage": "https://www.drupal.org/u/volkswagenchick",
  6521. "role": "Maintainer"
  6522. },
  6523. {
  6524. "name": "Michael Anello (ultimike)",
  6525. "homepage": "https://www.drupal.org/u/ultimike",
  6526. "role": "Maintainer"
  6527. }
  6528. ],
  6529. "description": "Provides a more robust alternative to 'summary or trimmed' textfield format.",
  6530. "homepage": "https://drupal.org/project/smart_trim",
  6531. "support": {
  6532. "source": "https://git.drupalcode.org/project/smart_trim",
  6533. "issues": "https://drupal.org/project/issues/smart_trim"
  6534. }
  6535. },
  6536. {
  6537. "name": "drupal/smtp",
  6538. "version": "1.2.0",
  6539. "source": {
  6540. "type": "git",
  6541. "url": "https://git.drupalcode.org/project/smtp.git",
  6542. "reference": "8.x-1.2"
  6543. },
  6544. "dist": {
  6545. "type": "zip",
  6546. "url": "https://ftp.drupal.org/files/projects/smtp-8.x-1.2.zip",
  6547. "reference": "8.x-1.2",
  6548. "shasum": "10d302d4a90521d674bdd078da8aed886fa5ec41"
  6549. },
  6550. "require": {
  6551. "drupal/core": ">=8.9 <11",
  6552. "phpmailer/phpmailer": "^6.1.7"
  6553. },
  6554. "suggest": {
  6555. "drupal/mailsystem": "Allows using SMTP alongside other mail modules."
  6556. },
  6557. "type": "drupal-module",
  6558. "extra": {
  6559. "drupal": {
  6560. "version": "8.x-1.2",
  6561. "datestamp": "1667416337",
  6562. "security-coverage": {
  6563. "status": "covered",
  6564. "message": "Covered by Drupal's security advisory policy"
  6565. }
  6566. },
  6567. "branch-alias": {
  6568. "dev-8.x-1.x": "1.x-dev"
  6569. }
  6570. },
  6571. "notification-url": "https://packages.drupal.org/8/downloads",
  6572. "license": [
  6573. "GPL-2.0-or-later"
  6574. ],
  6575. "authors": [
  6576. {
  6577. "name": "japerry",
  6578. "homepage": "https://www.drupal.org/user/45640"
  6579. },
  6580. {
  6581. "name": "joseph.olstad",
  6582. "homepage": "https://www.drupal.org/user/1321830"
  6583. },
  6584. {
  6585. "name": "josesanmartin",
  6586. "homepage": "https://www.drupal.org/user/72012"
  6587. },
  6588. {
  6589. "name": "LukeLast",
  6590. "homepage": "https://www.drupal.org/user/30151"
  6591. },
  6592. {
  6593. "name": "oadaeh",
  6594. "homepage": "https://www.drupal.org/user/4649"
  6595. },
  6596. {
  6597. "name": "sadashiv",
  6598. "homepage": "https://www.drupal.org/user/1773304"
  6599. },
  6600. {
  6601. "name": "wundo",
  6602. "homepage": "https://www.drupal.org/user/25523"
  6603. },
  6604. {
  6605. "name": "yettyn",
  6606. "homepage": "https://www.drupal.org/user/93281"
  6607. }
  6608. ],
  6609. "description": "Allow for site emails to be sent through an SMTP server of your choice.",
  6610. "homepage": "https://www.drupal.org/project/smtp",
  6611. "support": {
  6612. "source": "https://git.drupalcode.org/project/smtp",
  6613. "issues": "https://www.drupal.org/project/issues/smtp"
  6614. }
  6615. },
  6616. {
  6617. "name": "drupal/sophron",
  6618. "version": "2.0.1",
  6619. "source": {
  6620. "type": "git",
  6621. "url": "https://git.drupalcode.org/project/sophron.git",
  6622. "reference": "2.0.1"
  6623. },
  6624. "dist": {
  6625. "type": "zip",
  6626. "url": "https://ftp.drupal.org/files/projects/sophron-2.0.1.zip",
  6627. "reference": "2.0.1",
  6628. "shasum": "eb9b22e843400392ba7fa35dc99c644d2cf08982"
  6629. },
  6630. "require": {
  6631. "drupal/core": "^10",
  6632. "fileeye/mimemap": "^2.0.1"
  6633. },
  6634. "type": "drupal-module",
  6635. "extra": {
  6636. "drupal": {
  6637. "version": "2.0.1",
  6638. "datestamp": "1676319965",
  6639. "security-coverage": {
  6640. "status": "covered",
  6641. "message": "Covered by Drupal's security advisory policy"
  6642. }
  6643. }
  6644. },
  6645. "autoload": {
  6646. "psr-4": {
  6647. "Drupal\\sophron\\": "src/"
  6648. }
  6649. },
  6650. "notification-url": "https://packages.drupal.org/8/downloads",
  6651. "license": [
  6652. "GPL-2.0-or-later"
  6653. ],
  6654. "authors": [
  6655. {
  6656. "name": "mondrake",
  6657. "homepage": "https://www.drupal.org/user/1307444"
  6658. }
  6659. ],
  6660. "description": "Provides an extensive MIME types management API",
  6661. "homepage": "https://www.drupal.org/project/sophron",
  6662. "support": {
  6663. "source": "https://git.drupalcode.org/project/sophron"
  6664. }
  6665. },
  6666. {
  6667. "name": "drupal/synonyms",
  6668. "version": "2.1.2",
  6669. "source": {
  6670. "type": "git",
  6671. "url": "https://git.drupalcode.org/project/synonyms.git",
  6672. "reference": "2.1.2"
  6673. },
  6674. "dist": {
  6675. "type": "zip",
  6676. "url": "https://ftp.drupal.org/files/projects/synonyms-2.1.2.zip",
  6677. "reference": "2.1.2",
  6678. "shasum": "b6b88dc80ecb88b67bf4cbf220ea5e712137ca4d"
  6679. },
  6680. "require": {
  6681. "drupal/core": "^9 || ^10"
  6682. },
  6683. "require-dev": {
  6684. "drupal/synonyms_list_field": "*"
  6685. },
  6686. "type": "drupal-module",
  6687. "extra": {
  6688. "drupal": {
  6689. "version": "2.1.2",
  6690. "datestamp": "1665785027",
  6691. "security-coverage": {
  6692. "status": "covered",
  6693. "message": "Covered by Drupal's security advisory policy"
  6694. }
  6695. }
  6696. },
  6697. "notification-url": "https://packages.drupal.org/8/downloads",
  6698. "license": [
  6699. "GPL-2.0-or-later"
  6700. ],
  6701. "authors": [
  6702. {
  6703. "name": "Bojan Zivanovic",
  6704. "homepage": "https://www.drupal.org/u/bojanz",
  6705. "role": "Author and D5, D6 and D7 versions developer."
  6706. },
  6707. {
  6708. "name": "Alex Trosenko",
  6709. "homepage": "https://www.drupal.org/u/bucefal91",
  6710. "role": "D7 and D8 versions developer."
  6711. },
  6712. {
  6713. "name": "Duro Arezina",
  6714. "homepage": "https://www.drupal.org/u/devad",
  6715. "role": "D8, D9 and D10 versions maintenance"
  6716. },
  6717. {
  6718. "name": "See other contributors",
  6719. "homepage": "https://www.drupal.org/node/148775/committers"
  6720. }
  6721. ],
  6722. "description": "Provides synonyms feature for all entities.",
  6723. "homepage": "https://www.drupal.org/project/synonyms",
  6724. "support": {
  6725. "source": "https://git.drupalcode.org/project/synonyms",
  6726. "issues": "https://www.drupal.org/project/issues/synonyms"
  6727. }
  6728. },
  6729. {
  6730. "name": "drupal/token",
  6731. "version": "1.13.0",
  6732. "source": {
  6733. "type": "git",
  6734. "url": "https://git.drupalcode.org/project/token.git",
  6735. "reference": "8.x-1.13"
  6736. },
  6737. "dist": {
  6738. "type": "zip",
  6739. "url": "https://ftp.drupal.org/files/projects/token-8.x-1.13.zip",
  6740. "reference": "8.x-1.13",
  6741. "shasum": "f2a074b51726de3727c1d900237d6d471806a4d2"
  6742. },
  6743. "require": {
  6744. "drupal/core": "^9.2 || ^10"
  6745. },
  6746. "type": "drupal-module",
  6747. "extra": {
  6748. "drupal": {
  6749. "version": "8.x-1.13",
  6750. "datestamp": "1697885927",
  6751. "security-coverage": {
  6752. "status": "covered",
  6753. "message": "Covered by Drupal's security advisory policy"
  6754. }
  6755. },
  6756. "drush": {
  6757. "services": {
  6758. "drush.services.yml": ">=9"
  6759. }
  6760. }
  6761. },
  6762. "notification-url": "https://packages.drupal.org/8/downloads",
  6763. "license": [
  6764. "GPL-2.0-or-later"
  6765. ],
  6766. "authors": [
  6767. {
  6768. "name": "Berdir",
  6769. "homepage": "https://www.drupal.org/user/214652"
  6770. },
  6771. {
  6772. "name": "Dave Reid",
  6773. "homepage": "https://www.drupal.org/user/53892"
  6774. },
  6775. {
  6776. "name": "eaton",
  6777. "homepage": "https://www.drupal.org/user/16496"
  6778. },
  6779. {
  6780. "name": "fago",
  6781. "homepage": "https://www.drupal.org/user/16747"
  6782. },
  6783. {
  6784. "name": "greggles",
  6785. "homepage": "https://www.drupal.org/user/36762"
  6786. },
  6787. {
  6788. "name": "mikeryan",
  6789. "homepage": "https://www.drupal.org/user/4420"
  6790. }
  6791. ],
  6792. "description": "Provides a user interface for the Token API, some missing core tokens.",
  6793. "homepage": "https://www.drupal.org/project/token",
  6794. "support": {
  6795. "source": "https://git.drupalcode.org/project/token"
  6796. }
  6797. },
  6798. {
  6799. "name": "drupal/translation_views",
  6800. "version": "1.0.0-alpha11",
  6801. "source": {
  6802. "type": "git",
  6803. "url": "https://git.drupalcode.org/project/translation_views.git",
  6804. "reference": "8.x-1.0-alpha11"
  6805. },
  6806. "dist": {
  6807. "type": "zip",
  6808. "url": "https://ftp.drupal.org/files/projects/translation_views-8.x-1.0-alpha11.zip",
  6809. "reference": "8.x-1.0-alpha11",
  6810. "shasum": "331c0ec63e99760d7ae34a4db1ba7766f683f6d1"
  6811. },
  6812. "require": {
  6813. "drupal/core": "^8.8 || ^9 || ^10"
  6814. },
  6815. "require-dev": {
  6816. "drupal/translators_content": "^1.0@alpha"
  6817. },
  6818. "type": "drupal-module",
  6819. "extra": {
  6820. "drupal": {
  6821. "version": "8.x-1.0-alpha11",
  6822. "datestamp": "1679660668",
  6823. "security-coverage": {
  6824. "status": "not-covered",
  6825. "message": "Project has not opted into security advisory coverage!"
  6826. }
  6827. }
  6828. },
  6829. "notification-url": "https://packages.drupal.org/8/downloads",
  6830. "license": [
  6831. "GPL-2.0-or-later"
  6832. ],
  6833. "authors": [
  6834. {
  6835. "name": "matsbla",
  6836. "homepage": "https://www.drupal.org/user/2325394"
  6837. },
  6838. {
  6839. "name": "vlad.dancer",
  6840. "homepage": "https://www.drupal.org/user/903844"
  6841. }
  6842. ],
  6843. "description": "Create customized lists and queries of translations from your database.",
  6844. "homepage": "https://www.drupal.org/project/translation_views",
  6845. "support": {
  6846. "source": "https://git.drupalcode.org/project/translation_views"
  6847. }
  6848. },
  6849. {
  6850. "name": "drupal/ultimate_cron",
  6851. "version": "2.0.0-alpha6",
  6852. "source": {
  6853. "type": "git",
  6854. "url": "https://git.drupalcode.org/project/ultimate_cron.git",
  6855. "reference": "8.x-2.0-alpha6"
  6856. },
  6857. "dist": {
  6858. "type": "zip",
  6859. "url": "https://ftp.drupal.org/files/projects/ultimate_cron-8.x-2.0-alpha6.zip",
  6860. "reference": "8.x-2.0-alpha6",
  6861. "shasum": "42ab6df8e94a9b3772876a378062534552a32826"
  6862. },
  6863. "require": {
  6864. "drupal/core": "^9 || ^10"
  6865. },
  6866. "type": "drupal-module",
  6867. "extra": {
  6868. "drupal": {
  6869. "version": "8.x-2.0-alpha6",
  6870. "datestamp": "1666471448",
  6871. "security-coverage": {
  6872. "status": "not-covered",
  6873. "message": "Alpha releases are not covered by Drupal security advisories."
  6874. }
  6875. },
  6876. "drush": {
  6877. "services": {
  6878. "drush.services.yml": "^9 || ^10 || ^11"
  6879. }
  6880. }
  6881. },
  6882. "notification-url": "https://packages.drupal.org/8/downloads",
  6883. "license": [
  6884. "GPL-2.0+"
  6885. ],
  6886. "authors": [
  6887. {
  6888. "name": "arnested",
  6889. "homepage": "https://www.drupal.org/user/245635"
  6890. },
  6891. {
  6892. "name": "Berdir",
  6893. "homepage": "https://www.drupal.org/user/214652"
  6894. },
  6895. {
  6896. "name": "Dane Powell",
  6897. "homepage": "https://www.drupal.org/user/339326"
  6898. },
  6899. {
  6900. "name": "gielfeldt",
  6901. "homepage": "https://www.drupal.org/user/366993"
  6902. },
  6903. {
  6904. "name": "miro_dietiker",
  6905. "homepage": "https://www.drupal.org/user/227761"
  6906. },
  6907. {
  6908. "name": "Primsi",
  6909. "homepage": "https://www.drupal.org/user/282629"
  6910. }
  6911. ],
  6912. "description": "Ultimate cron",
  6913. "homepage": "https://www.drupal.org/project/ultimate_cron",
  6914. "support": {
  6915. "source": "https://git.drupalcode.org/project/ultimate_cron"
  6916. }
  6917. },
  6918. {
  6919. "name": "drupal/video_embed_field",
  6920. "version": "2.5.0",
  6921. "source": {
  6922. "type": "git",
  6923. "url": "https://git.drupalcode.org/project/video_embed_field.git",
  6924. "reference": "8.x-2.5"
  6925. },
  6926. "dist": {
  6927. "type": "zip",
  6928. "url": "https://ftp.drupal.org/files/projects/video_embed_field-8.x-2.5.zip",
  6929. "reference": "8.x-2.5",
  6930. "shasum": "997ed67b6873e822fe628f87f65bd6da67e7350c"
  6931. },
  6932. "require": {
  6933. "drupal/core": "^9.2 || ^10"
  6934. },
  6935. "require-dev": {
  6936. "drupal/ckeditor": "^1",
  6937. "drupal/colorbox": "^2",
  6938. "drupal/video_embed_media": "*"
  6939. },
  6940. "type": "drupal-module",
  6941. "extra": {
  6942. "drupal": {
  6943. "version": "8.x-2.5",
  6944. "datestamp": "1671413311",
  6945. "security-coverage": {
  6946. "status": "covered",
  6947. "message": "Covered by Drupal's security advisory policy"
  6948. }
  6949. }
  6950. },
  6951. "notification-url": "https://packages.drupal.org/8/downloads",
  6952. "license": [
  6953. "GPL-2.0-or-later"
  6954. ],
  6955. "authors": [
  6956. {
  6957. "name": "abhinesh",
  6958. "homepage": "https://www.drupal.org/user/3645979"
  6959. },
  6960. {
  6961. "name": "jec006",
  6962. "homepage": "https://www.drupal.org/user/855980"
  6963. },
  6964. {
  6965. "name": "plopesc",
  6966. "homepage": "https://www.drupal.org/user/282415"
  6967. },
  6968. {
  6969. "name": "Sam152",
  6970. "homepage": "https://www.drupal.org/user/1485048"
  6971. }
  6972. ],
  6973. "description": "A pluggable field type for storing videos from external video hosts such as Vimeo and YouTube.",
  6974. "homepage": "https://www.drupal.org/project/video_embed_field",
  6975. "support": {
  6976. "source": "https://git.drupalcode.org/project/video_embed_field"
  6977. }
  6978. },
  6979. {
  6980. "name": "drupal/views_bulk_edit",
  6981. "version": "2.9.0",
  6982. "source": {
  6983. "type": "git",
  6984. "url": "https://git.drupalcode.org/project/views_bulk_edit.git",
  6985. "reference": "8.x-2.9"
  6986. },
  6987. "dist": {
  6988. "type": "zip",
  6989. "url": "https://ftp.drupal.org/files/projects/views_bulk_edit-8.x-2.9.zip",
  6990. "reference": "8.x-2.9",
  6991. "shasum": "db45a8cc9ac629859374b24974eafcef257e4387"
  6992. },
  6993. "require": {
  6994. "drupal/core": "^9.4 || ^10"
  6995. },
  6996. "require-dev": {
  6997. "drupal/views_bulk_operations": "~4.2.4"
  6998. },
  6999. "suggest": {
  7000. "drupal/views_bulk_operations": "Get VBO for all the views benefits like batching, ability to select all view results or persistent selection across pages"
  7001. },
  7002. "type": "drupal-module",
  7003. "extra": {
  7004. "drupal": {
  7005. "version": "8.x-2.9",
  7006. "datestamp": "1690222256",
  7007. "security-coverage": {
  7008. "status": "covered",
  7009. "message": "Covered by Drupal's security advisory policy"
  7010. }
  7011. }
  7012. },
  7013. "notification-url": "https://packages.drupal.org/8/downloads",
  7014. "license": [
  7015. "GPL-2.0+"
  7016. ],
  7017. "authors": [
  7018. {
  7019. "name": "Marcin Grabias",
  7020. "homepage": "https://www.drupal.org/u/graber"
  7021. },
  7022. {
  7023. "name": "Graber",
  7024. "homepage": "https://www.drupal.org/user/1599440"
  7025. },
  7026. {
  7027. "name": "joseph.olstad",
  7028. "homepage": "https://www.drupal.org/user/1321830"
  7029. }
  7030. ],
  7031. "description": "Allows bulk edition of entity field values.",
  7032. "homepage": "https://www.drupal.org/project/views_bulk_edit",
  7033. "support": {
  7034. "source": "https://git.drupalcode.org/project/views_bulk_edit",
  7035. "issues": "https://www.drupal.org/project/issues/views_bulk_edit?version=8.x"
  7036. }
  7037. },
  7038. {
  7039. "name": "drupal/views_bulk_operations",
  7040. "version": "4.2.5",
  7041. "source": {
  7042. "type": "git",
  7043. "url": "https://git.drupalcode.org/project/views_bulk_operations.git",
  7044. "reference": "4.2.5"
  7045. },
  7046. "dist": {
  7047. "type": "zip",
  7048. "url": "https://ftp.drupal.org/files/projects/views_bulk_operations-4.2.5.zip",
  7049. "reference": "4.2.5",
  7050. "shasum": "220479c5187b1619d5703f64c6f8c272afecf897"
  7051. },
  7052. "require": {
  7053. "drupal/core": "^9.4 || ^10",
  7054. "php": ">=7.4.0"
  7055. },
  7056. "require-dev": {
  7057. "drush/drush": "^11"
  7058. },
  7059. "suggest": {
  7060. "drush/drush": "^10 || ^11"
  7061. },
  7062. "type": "drupal-module",
  7063. "extra": {
  7064. "drupal": {
  7065. "version": "4.2.5",
  7066. "datestamp": "1691066184",
  7067. "security-coverage": {
  7068. "status": "covered",
  7069. "message": "Covered by Drupal's security advisory policy"
  7070. }
  7071. },
  7072. "drush": {
  7073. "services": {
  7074. "drush.services.yml": "^10 || ^11"
  7075. }
  7076. }
  7077. },
  7078. "notification-url": "https://packages.drupal.org/8/downloads",
  7079. "license": [
  7080. "GPL-2.0-or-later"
  7081. ],
  7082. "authors": [
  7083. {
  7084. "name": "Marcin Grabias",
  7085. "homepage": "https://www.drupal.org/u/graber"
  7086. },
  7087. {
  7088. "name": "Graber",
  7089. "homepage": "https://www.drupal.org/user/1599440"
  7090. },
  7091. {
  7092. "name": "joelpittet",
  7093. "homepage": "https://www.drupal.org/user/160302"
  7094. }
  7095. ],
  7096. "description": "Adds an ability to perform bulk operations on selected entities from view results. Provides an API to create such operations.",
  7097. "homepage": "https://www.drupal.org/project/views_bulk_operations",
  7098. "support": {
  7099. "source": "https://git.drupalcode.org/project/views_bulk_operations/-/tree/8.x-3.x",
  7100. "issues": "https://www.drupal.org/project/issues/views_bulk_operations?version=8.x",
  7101. "docs": "https://www.drupal.org/docs/8/modules/views-bulk-operations-vbo"
  7102. }
  7103. },
  7104. {
  7105. "name": "drupal/webform",
  7106. "version": "6.2.0",
  7107. "source": {
  7108. "type": "git",
  7109. "url": "https://git.drupalcode.org/project/webform.git",
  7110. "reference": "6.2.0"
  7111. },
  7112. "dist": {
  7113. "type": "zip",
  7114. "url": "https://ftp.drupal.org/files/projects/webform-6.2.0.zip",
  7115. "reference": "6.2.0",
  7116. "shasum": "7a8292fb86fa60c88377279769fd6f1b1fad05c2"
  7117. },
  7118. "require": {
  7119. "drupal/core": "^9.4 || ^10",
  7120. "php": ">=8.1"
  7121. },
  7122. "require-dev": {
  7123. "drupal/address": "1.x-dev",
  7124. "drupal/bootstrap": "3.x-dev",
  7125. "drupal/captcha": "^1 || ^2",
  7126. "drupal/chosen": "3.0.x-dev",
  7127. "drupal/ckeditor": "1.0.x-dev",
  7128. "drupal/clientside_validation": "^3 || ^4",
  7129. "drupal/clientside_validation_jquery": "*",
  7130. "drupal/devel": "5.x-dev",
  7131. "drupal/entity": "1.x-dev",
  7132. "drupal/entity_print": "2.x-dev",
  7133. "drupal/group": "1.x-dev",
  7134. "drupal/hal": "1 - 2",
  7135. "drupal/jquery_ui": "1.x-dev",
  7136. "drupal/jquery_ui_checkboxradio": "2.x-dev",
  7137. "drupal/jquery_ui_datepicker": "2.x-dev",
  7138. "drupal/mailsystem": "4.x-dev",
  7139. "drupal/metatag": "1.x-dev",
  7140. "drupal/paragraphs": "1.x-dev",
  7141. "drupal/select2": "1.x-dev",
  7142. "drupal/smtp": "1.x-dev",
  7143. "drupal/styleguide": "^1 || ^2",
  7144. "drupal/telephone_validation": "2.x-dev",
  7145. "drupal/token": "1.x-dev",
  7146. "drupal/variationcache": "1.x-dev",
  7147. "drupal/webform_access": "*",
  7148. "drupal/webform_attachment": "*",
  7149. "drupal/webform_clientside_validation": "*",
  7150. "drupal/webform_devel": "*",
  7151. "drupal/webform_entity_print": "*",
  7152. "drupal/webform_node": "*",
  7153. "drupal/webform_options_limit": "*",
  7154. "drupal/webform_scheduled_email": "*",
  7155. "drupal/webform_share": "*",
  7156. "drupal/webform_ui": "*"
  7157. },
  7158. "suggest": {
  7159. "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.",
  7160. "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."
  7161. },
  7162. "type": "drupal-module",
  7163. "extra": {
  7164. "drupal": {
  7165. "version": "6.2.0",
  7166. "datestamp": "1698674300",
  7167. "security-coverage": {
  7168. "status": "covered",
  7169. "message": "Covered by Drupal's security advisory policy"
  7170. }
  7171. },
  7172. "drush": {
  7173. "services": {
  7174. "drush.services.yml": ">=9"
  7175. }
  7176. }
  7177. },
  7178. "notification-url": "https://packages.drupal.org/8/downloads",
  7179. "license": [
  7180. "GPL-2.0-or-later"
  7181. ],
  7182. "authors": [
  7183. {
  7184. "name": "Jacob Rockowitz (jrockowitz)",
  7185. "homepage": "https://www.drupal.org/u/jrockowitz",
  7186. "role": "Maintainer"
  7187. },
  7188. {
  7189. "name": "Contributors",
  7190. "homepage": "https://www.drupal.org/node/7404/committers",
  7191. "role": "Contributor"
  7192. },
  7193. {
  7194. "name": "Liam Morland",
  7195. "homepage": "https://www.drupal.org/user/493050"
  7196. },
  7197. {
  7198. "name": "quicksketch",
  7199. "homepage": "https://www.drupal.org/user/35821"
  7200. },
  7201. {
  7202. "name": "torotil",
  7203. "homepage": "https://www.drupal.org/user/865256"
  7204. }
  7205. ],
  7206. "description": "Enables the creation of webforms and questionnaires.",
  7207. "homepage": "https://drupal.org/project/webform",
  7208. "support": {
  7209. "source": "https://git.drupalcode.org/project/webform",
  7210. "issues": "https://www.drupal.org/project/issues/webform?version=8.x",
  7211. "docs": "https://www.drupal.org/docs/8/modules/webform",
  7212. "forum": "https://drupal.stackexchange.com/questions/tagged/webform"
  7213. }
  7214. },
  7215. {
  7216. "name": "drush/drush",
  7217. "version": "11.6.0",
  7218. "source": {
  7219. "type": "git",
  7220. "url": "https://github.com/drush-ops/drush.git",
  7221. "reference": "f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78"
  7222. },
  7223. "dist": {
  7224. "type": "zip",
  7225. "url": "https://api.github.com/repos/drush-ops/drush/zipball/f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78",
  7226. "reference": "f301df5dec8d2aacb03d3e01e0ffc6d98e10ae78",
  7227. "shasum": ""
  7228. },
  7229. "require": {
  7230. "chi-teck/drupal-code-generator": "^2.4",
  7231. "composer/semver": "^1.4 || ^3",
  7232. "consolidation/annotated-command": "^4.8.2",
  7233. "consolidation/config": "^2",
  7234. "consolidation/filter-via-dot-access-data": "^2",
  7235. "consolidation/robo": "^3.0.9 || ^4.0.1",
  7236. "consolidation/site-alias": "^3.1.6 || ^4",
  7237. "consolidation/site-process": "^4.1.3 || ^5",
  7238. "enlightn/security-checker": "^1",
  7239. "ext-dom": "*",
  7240. "guzzlehttp/guzzle": "^6.5 || ^7.0",
  7241. "league/container": "^3.4 || ^4",
  7242. "php": ">=7.4",
  7243. "psy/psysh": "~0.11",
  7244. "symfony/event-dispatcher": "^4.0 || ^5.0 || ^6.0",
  7245. "symfony/filesystem": "^4.4 || ^5.4 || ^6.1",
  7246. "symfony/finder": "^4.0 || ^5 || ^6",
  7247. "symfony/polyfill-php80": "^1.23",
  7248. "symfony/var-dumper": "^4.0 || ^5.0 || ^6.0",
  7249. "symfony/yaml": "^4.0 || ^5.0 || ^6.0",
  7250. "webflo/drupal-finder": "^1.2"
  7251. },
  7252. "conflict": {
  7253. "drupal/core": "< 9.2",
  7254. "drupal/migrate_run": "*",
  7255. "drupal/migrate_tools": "<= 5"
  7256. },
  7257. "require-dev": {
  7258. "composer/installers": "^1.7",
  7259. "cweagans/composer-patches": "~1.0",
  7260. "david-garcia/phpwhois": "4.3.0",
  7261. "drupal/core-recommended": "^9 || ^10",
  7262. "drupal/semver_example": "2.3.0",
  7263. "phpunit/phpunit": ">=7.5.20",
  7264. "rector/rector": "^0.12",
  7265. "squizlabs/php_codesniffer": "^3.6",
  7266. "vlucas/phpdotenv": "^2.4",
  7267. "yoast/phpunit-polyfills": "^0.2.0"
  7268. },
  7269. "bin": [
  7270. "drush"
  7271. ],
  7272. "type": "library",
  7273. "extra": {
  7274. "installer-paths": {
  7275. "sut/core": [
  7276. "type:drupal-core"
  7277. ],
  7278. "sut/libraries/{$name}": [
  7279. "type:drupal-library"
  7280. ],
  7281. "sut/modules/unish/{$name}": [
  7282. "drupal/devel"
  7283. ],
  7284. "sut/themes/unish/{$name}": [
  7285. "drupal/empty_theme"
  7286. ],
  7287. "sut/modules/contrib/{$name}": [
  7288. "type:drupal-module"
  7289. ],
  7290. "sut/profiles/contrib/{$name}": [
  7291. "type:drupal-profile"
  7292. ],
  7293. "sut/themes/contrib/{$name}": [
  7294. "type:drupal-theme"
  7295. ],
  7296. "sut/drush/contrib/{$name}": [
  7297. "type:drupal-drush"
  7298. ]
  7299. }
  7300. },
  7301. "autoload": {
  7302. "psr-4": {
  7303. "Drush\\": "src/"
  7304. }
  7305. },
  7306. "notification-url": "https://packagist.org/downloads/",
  7307. "license": [
  7308. "GPL-2.0-or-later"
  7309. ],
  7310. "authors": [
  7311. {
  7312. "name": "Moshe Weitzman",
  7313. "email": "weitzman@tejasa.com"
  7314. },
  7315. {
  7316. "name": "Owen Barton",
  7317. "email": "drupal@owenbarton.com"
  7318. },
  7319. {
  7320. "name": "Greg Anderson",
  7321. "email": "greg.1.anderson@greenknowe.org"
  7322. },
  7323. {
  7324. "name": "Jonathan Araña Cruz",
  7325. "email": "jonhattan@faita.net"
  7326. },
  7327. {
  7328. "name": "Jonathan Hedstrom",
  7329. "email": "jhedstrom@gmail.com"
  7330. },
  7331. {
  7332. "name": "Christopher Gervais",
  7333. "email": "chris@ergonlogic.com"
  7334. },
  7335. {
  7336. "name": "Dave Reid",
  7337. "email": "dave@davereid.net"
  7338. },
  7339. {
  7340. "name": "Damian Lee",
  7341. "email": "damiankloip@googlemail.com"
  7342. }
  7343. ],
  7344. "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.",
  7345. "homepage": "http://www.drush.org",
  7346. "support": {
  7347. "forum": "http://drupal.stackexchange.com/questions/tagged/drush",
  7348. "issues": "https://github.com/drush-ops/drush/issues",
  7349. "slack": "https://drupal.slack.com/messages/C62H9CWQM",
  7350. "source": "https://github.com/drush-ops/drush/tree/11.6.0"
  7351. },
  7352. "funding": [
  7353. {
  7354. "url": "https://github.com/weitzman",
  7355. "type": "github"
  7356. }
  7357. ],
  7358. "time": "2023-06-06T18:46:18+00:00"
  7359. },
  7360. {
  7361. "name": "egulias/email-validator",
  7362. "version": "4.0.2",
  7363. "source": {
  7364. "type": "git",
  7365. "url": "https://github.com/egulias/EmailValidator.git",
  7366. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  7367. },
  7368. "dist": {
  7369. "type": "zip",
  7370. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  7371. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  7372. "shasum": ""
  7373. },
  7374. "require": {
  7375. "doctrine/lexer": "^2.0 || ^3.0",
  7376. "php": ">=8.1",
  7377. "symfony/polyfill-intl-idn": "^1.26"
  7378. },
  7379. "require-dev": {
  7380. "phpunit/phpunit": "^10.2",
  7381. "vimeo/psalm": "^5.12"
  7382. },
  7383. "suggest": {
  7384. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  7385. },
  7386. "type": "library",
  7387. "extra": {
  7388. "branch-alias": {
  7389. "dev-master": "4.0.x-dev"
  7390. }
  7391. },
  7392. "autoload": {
  7393. "psr-4": {
  7394. "Egulias\\EmailValidator\\": "src"
  7395. }
  7396. },
  7397. "notification-url": "https://packagist.org/downloads/",
  7398. "license": [
  7399. "MIT"
  7400. ],
  7401. "authors": [
  7402. {
  7403. "name": "Eduardo Gulias Davis"
  7404. }
  7405. ],
  7406. "description": "A library for validating emails against several RFCs",
  7407. "homepage": "https://github.com/egulias/EmailValidator",
  7408. "keywords": [
  7409. "email",
  7410. "emailvalidation",
  7411. "emailvalidator",
  7412. "validation",
  7413. "validator"
  7414. ],
  7415. "support": {
  7416. "issues": "https://github.com/egulias/EmailValidator/issues",
  7417. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  7418. },
  7419. "funding": [
  7420. {
  7421. "url": "https://github.com/egulias",
  7422. "type": "github"
  7423. }
  7424. ],
  7425. "time": "2023-10-06T06:47:41+00:00"
  7426. },
  7427. {
  7428. "name": "enlightn/security-checker",
  7429. "version": "v1.10.0",
  7430. "source": {
  7431. "type": "git",
  7432. "url": "https://github.com/enlightn/security-checker.git",
  7433. "reference": "196bacc76e7a72a63d0e1220926dbb190272db97"
  7434. },
  7435. "dist": {
  7436. "type": "zip",
  7437. "url": "https://api.github.com/repos/enlightn/security-checker/zipball/196bacc76e7a72a63d0e1220926dbb190272db97",
  7438. "reference": "196bacc76e7a72a63d0e1220926dbb190272db97",
  7439. "shasum": ""
  7440. },
  7441. "require": {
  7442. "ext-json": "*",
  7443. "guzzlehttp/guzzle": "^6.3|^7.0",
  7444. "php": ">=5.6",
  7445. "symfony/console": "^3.4|^4|^5|^6",
  7446. "symfony/finder": "^3|^4|^5|^6",
  7447. "symfony/process": "^3.4|^4|^5|^6",
  7448. "symfony/yaml": "^3.4|^4|^5|^6"
  7449. },
  7450. "require-dev": {
  7451. "ext-zip": "*",
  7452. "friendsofphp/php-cs-fixer": "^2.18|^3.0",
  7453. "phpunit/phpunit": "^5.5|^6|^7|^8|^9"
  7454. },
  7455. "bin": [
  7456. "security-checker"
  7457. ],
  7458. "type": "library",
  7459. "autoload": {
  7460. "psr-4": {
  7461. "Enlightn\\SecurityChecker\\": "src"
  7462. }
  7463. },
  7464. "notification-url": "https://packagist.org/downloads/",
  7465. "license": [
  7466. "MIT"
  7467. ],
  7468. "authors": [
  7469. {
  7470. "name": "Paras Malhotra",
  7471. "email": "paras@laravel-enlightn.com"
  7472. },
  7473. {
  7474. "name": "Miguel Piedrafita",
  7475. "email": "soy@miguelpiedrafita.com"
  7476. }
  7477. ],
  7478. "description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
  7479. "keywords": [
  7480. "package",
  7481. "php",
  7482. "scanner",
  7483. "security",
  7484. "security advisories",
  7485. "vulnerability scanner"
  7486. ],
  7487. "support": {
  7488. "issues": "https://github.com/enlightn/security-checker/issues",
  7489. "source": "https://github.com/enlightn/security-checker/tree/v1.10.0"
  7490. },
  7491. "time": "2022-02-21T22:40:16+00:00"
  7492. },
  7493. {
  7494. "name": "fileeye/mimemap",
  7495. "version": "2.0.2",
  7496. "source": {
  7497. "type": "git",
  7498. "url": "https://github.com/FileEye/MimeMap.git",
  7499. "reference": "befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d"
  7500. },
  7501. "dist": {
  7502. "type": "zip",
  7503. "url": "https://api.github.com/repos/FileEye/MimeMap/zipball/befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d",
  7504. "reference": "befb9f1ee77dbf6b74a2c578874e128c9a5c1a2d",
  7505. "shasum": ""
  7506. },
  7507. "require": {
  7508. "php": ">=7.3"
  7509. },
  7510. "require-dev": {
  7511. "composer-runtime-api": "^2.0.0",
  7512. "phpstan/phpstan": "^1.2",
  7513. "phpunit/phpunit": "^9 | ^10",
  7514. "sebastian/comparator": ">=4",
  7515. "sebastian/diff": ">=4",
  7516. "squizlabs/php_codesniffer": ">=3.6",
  7517. "symfony/console": ">=5.4",
  7518. "symfony/filesystem": ">=5.4",
  7519. "symfony/var-dumper": ">=5.4",
  7520. "symfony/yaml": ">=5.4",
  7521. "vimeo/psalm": "^4.23 | ^5"
  7522. },
  7523. "bin": [
  7524. "bin/fileeye-mimemap"
  7525. ],
  7526. "type": "library",
  7527. "extra": {
  7528. "branch-alias": {
  7529. "dev-master": "2.x-dev"
  7530. }
  7531. },
  7532. "autoload": {
  7533. "psr-4": {
  7534. "FileEye\\MimeMap\\": "src/"
  7535. }
  7536. },
  7537. "notification-url": "https://packagist.org/downloads/",
  7538. "license": [
  7539. "LGPL-3.0-or-later"
  7540. ],
  7541. "description": "A PHP library to handle MIME Content-Type fields and their related file extensions.",
  7542. "homepage": "https://github.com/FileEye/MimeMap",
  7543. "keywords": [
  7544. "mime",
  7545. "mime-database",
  7546. "mime-parser",
  7547. "mime-type"
  7548. ],
  7549. "support": {
  7550. "issues": "https://github.com/FileEye/MimeMap/issues",
  7551. "source": "https://github.com/FileEye/MimeMap/tree/2.0.2"
  7552. },
  7553. "time": "2023-08-29T16:20:26+00:00"
  7554. },
  7555. {
  7556. "name": "fileeye/pel",
  7557. "version": "0.9.20",
  7558. "source": {
  7559. "type": "git",
  7560. "url": "https://github.com/FileEye/pel.git",
  7561. "reference": "1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede"
  7562. },
  7563. "dist": {
  7564. "type": "zip",
  7565. "url": "https://api.github.com/repos/FileEye/pel/zipball/1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede",
  7566. "reference": "1675cbd44e89ff8f01b9576cf32ec1b4a4a67ede",
  7567. "shasum": ""
  7568. },
  7569. "require": {
  7570. "php": ">=7.1.0"
  7571. },
  7572. "require-dev": {
  7573. "ext-exif": "*",
  7574. "ext-gd": "*",
  7575. "php-coveralls/php-coveralls": ">2.4",
  7576. "phpstan/phpstan": "^1.4",
  7577. "squizlabs/php_codesniffer": ">3.5",
  7578. "symfony/phpunit-bridge": "^4 || ^5 || ^6"
  7579. },
  7580. "type": "library",
  7581. "autoload": {
  7582. "psr-4": {
  7583. "lsolesen\\pel\\": "src/"
  7584. }
  7585. },
  7586. "notification-url": "https://packagist.org/downloads/",
  7587. "license": [
  7588. "GPL-2.0"
  7589. ],
  7590. "authors": [
  7591. {
  7592. "name": "Lars Olesen",
  7593. "email": "lars@intraface.dk",
  7594. "homepage": "http://intraface.dk",
  7595. "role": "Developer"
  7596. },
  7597. {
  7598. "name": "Martin Geisler",
  7599. "email": "martin@geisler.net",
  7600. "homepage": "http://geisler.net",
  7601. "role": "Developer"
  7602. }
  7603. ],
  7604. "description": "PHP Exif Library. A library for reading and writing Exif headers in JPEG and TIFF images using PHP.",
  7605. "homepage": "https://github.com/FileEye/pel",
  7606. "keywords": [
  7607. "exif",
  7608. "image"
  7609. ],
  7610. "support": {
  7611. "issues": "https://github.com/FileEye/pel/issues",
  7612. "source": "https://github.com/FileEye/pel/tree/0.9.20"
  7613. },
  7614. "time": "2023-06-20T07:10:35+00:00"
  7615. },
  7616. {
  7617. "name": "giggsey/libphonenumber-for-php",
  7618. "version": "8.13.25",
  7619. "source": {
  7620. "type": "git",
  7621. "url": "https://github.com/giggsey/libphonenumber-for-php.git",
  7622. "reference": "fe9c0b201941977b91b6b086c9551aff07a733ae"
  7623. },
  7624. "dist": {
  7625. "type": "zip",
  7626. "url": "https://api.github.com/repos/giggsey/libphonenumber-for-php/zipball/fe9c0b201941977b91b6b086c9551aff07a733ae",
  7627. "reference": "fe9c0b201941977b91b6b086c9551aff07a733ae",
  7628. "shasum": ""
  7629. },
  7630. "require": {
  7631. "giggsey/locale": "^1.7|^2.0",
  7632. "php": ">=5.3.2",
  7633. "symfony/polyfill-mbstring": "^1.17"
  7634. },
  7635. "require-dev": {
  7636. "pear/pear-core-minimal": "^1.9",
  7637. "pear/pear_exception": "^1.0",
  7638. "pear/versioncontrol_git": "^0.5",
  7639. "phing/phing": "^2.7",
  7640. "php-coveralls/php-coveralls": "^1.0|^2.0",
  7641. "symfony/console": "^2.8|^3.0|^v4.4|^v5.2",
  7642. "symfony/phpunit-bridge": "^4.2 || ^5"
  7643. },
  7644. "type": "library",
  7645. "extra": {
  7646. "branch-alias": {
  7647. "dev-master": "8.x-dev"
  7648. }
  7649. },
  7650. "autoload": {
  7651. "psr-4": {
  7652. "libphonenumber\\": "src/"
  7653. },
  7654. "exclude-from-classmap": [
  7655. "/src/data/",
  7656. "/src/carrier/data/",
  7657. "/src/geocoding/data/",
  7658. "/src/timezone/data/"
  7659. ]
  7660. },
  7661. "notification-url": "https://packagist.org/downloads/",
  7662. "license": [
  7663. "Apache-2.0"
  7664. ],
  7665. "authors": [
  7666. {
  7667. "name": "Joshua Gigg",
  7668. "email": "giggsey@gmail.com",
  7669. "homepage": "https://giggsey.com/"
  7670. }
  7671. ],
  7672. "description": "PHP Port of Google's libphonenumber",
  7673. "homepage": "https://github.com/giggsey/libphonenumber-for-php",
  7674. "keywords": [
  7675. "geocoding",
  7676. "geolocation",
  7677. "libphonenumber",
  7678. "mobile",
  7679. "phonenumber",
  7680. "validation"
  7681. ],
  7682. "support": {
  7683. "issues": "https://github.com/giggsey/libphonenumber-for-php/issues",
  7684. "source": "https://github.com/giggsey/libphonenumber-for-php"
  7685. },
  7686. "time": "2023-11-13T09:34:15+00:00"
  7687. },
  7688. {
  7689. "name": "giggsey/locale",
  7690. "version": "2.5",
  7691. "source": {
  7692. "type": "git",
  7693. "url": "https://github.com/giggsey/Locale.git",
  7694. "reference": "e6d4540109a01dd2bc7334cdc842d6a6a67cf239"
  7695. },
  7696. "dist": {
  7697. "type": "zip",
  7698. "url": "https://api.github.com/repos/giggsey/Locale/zipball/e6d4540109a01dd2bc7334cdc842d6a6a67cf239",
  7699. "reference": "e6d4540109a01dd2bc7334cdc842d6a6a67cf239",
  7700. "shasum": ""
  7701. },
  7702. "require": {
  7703. "php": ">=7.2"
  7704. },
  7705. "require-dev": {
  7706. "ext-json": "*",
  7707. "pear/pear-core-minimal": "^1.9",
  7708. "pear/pear_exception": "^1.0",
  7709. "pear/versioncontrol_git": "^0.5",
  7710. "phing/phing": "^2.7",
  7711. "php-coveralls/php-coveralls": "^2.0",
  7712. "phpunit/phpunit": "^8.5|^9.5",
  7713. "symfony/console": "^5.0|^6.0",
  7714. "symfony/filesystem": "^5.0|^6.0",
  7715. "symfony/finder": "^5.0|^6.0",
  7716. "symfony/process": "^5.0|^6.0"
  7717. },
  7718. "type": "library",
  7719. "autoload": {
  7720. "psr-4": {
  7721. "Giggsey\\Locale\\": "src/"
  7722. }
  7723. },
  7724. "notification-url": "https://packagist.org/downloads/",
  7725. "license": [
  7726. "MIT"
  7727. ],
  7728. "authors": [
  7729. {
  7730. "name": "Joshua Gigg",
  7731. "email": "giggsey@gmail.com",
  7732. "homepage": "https://giggsey.com/"
  7733. }
  7734. ],
  7735. "description": "Locale functions required by libphonenumber-for-php",
  7736. "support": {
  7737. "issues": "https://github.com/giggsey/Locale/issues",
  7738. "source": "https://github.com/giggsey/Locale/tree/2.5"
  7739. },
  7740. "time": "2023-11-01T17:19:48+00:00"
  7741. },
  7742. {
  7743. "name": "grasmash/expander",
  7744. "version": "3.0.0",
  7745. "source": {
  7746. "type": "git",
  7747. "url": "https://github.com/grasmash/expander.git",
  7748. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82"
  7749. },
  7750. "dist": {
  7751. "type": "zip",
  7752. "url": "https://api.github.com/repos/grasmash/expander/zipball/bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  7753. "reference": "bb1c1a2430957945cf08c5a62f5d72a6aa6a2c82",
  7754. "shasum": ""
  7755. },
  7756. "require": {
  7757. "dflydev/dot-access-data": "^3.0.0",
  7758. "php": ">=8.0",
  7759. "psr/log": "^2 | ^3"
  7760. },
  7761. "require-dev": {
  7762. "greg-1-anderson/composer-test-scenarios": "^1",
  7763. "php-coveralls/php-coveralls": "^2.5",
  7764. "phpunit/phpunit": "^9",
  7765. "squizlabs/php_codesniffer": "^3.3"
  7766. },
  7767. "type": "library",
  7768. "extra": {
  7769. "branch-alias": {
  7770. "dev-master": "1.x-dev"
  7771. }
  7772. },
  7773. "autoload": {
  7774. "psr-4": {
  7775. "Grasmash\\Expander\\": "src/"
  7776. }
  7777. },
  7778. "notification-url": "https://packagist.org/downloads/",
  7779. "license": [
  7780. "MIT"
  7781. ],
  7782. "authors": [
  7783. {
  7784. "name": "Matthew Grasmick"
  7785. }
  7786. ],
  7787. "description": "Expands internal property references in PHP arrays file.",
  7788. "support": {
  7789. "issues": "https://github.com/grasmash/expander/issues",
  7790. "source": "https://github.com/grasmash/expander/tree/3.0.0"
  7791. },
  7792. "time": "2022-05-10T13:14:49+00:00"
  7793. },
  7794. {
  7795. "name": "guzzlehttp/guzzle",
  7796. "version": "7.7.1",
  7797. "source": {
  7798. "type": "git",
  7799. "url": "https://github.com/guzzle/guzzle.git",
  7800. "reference": "085b026db54d4b5012f727c80c9958e8b8cbc454"
  7801. },
  7802. "dist": {
  7803. "type": "zip",
  7804. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/085b026db54d4b5012f727c80c9958e8b8cbc454",
  7805. "reference": "085b026db54d4b5012f727c80c9958e8b8cbc454",
  7806. "shasum": ""
  7807. },
  7808. "require": {
  7809. "ext-json": "*",
  7810. "guzzlehttp/promises": "^1.5.3 || ^2.0",
  7811. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  7812. "php": "^7.2.5 || ^8.0",
  7813. "psr/http-client": "^1.0",
  7814. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  7815. },
  7816. "provide": {
  7817. "psr/http-client-implementation": "1.0"
  7818. },
  7819. "require-dev": {
  7820. "bamarni/composer-bin-plugin": "^1.8.1",
  7821. "ext-curl": "*",
  7822. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  7823. "php-http/message-factory": "^1.1",
  7824. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  7825. "psr/log": "^1.1 || ^2.0 || ^3.0"
  7826. },
  7827. "suggest": {
  7828. "ext-curl": "Required for CURL handler support",
  7829. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  7830. "psr/log": "Required for using the Log middleware"
  7831. },
  7832. "type": "library",
  7833. "extra": {
  7834. "bamarni-bin": {
  7835. "bin-links": true,
  7836. "forward-command": false
  7837. }
  7838. },
  7839. "autoload": {
  7840. "files": [
  7841. "src/functions_include.php"
  7842. ],
  7843. "psr-4": {
  7844. "GuzzleHttp\\": "src/"
  7845. }
  7846. },
  7847. "notification-url": "https://packagist.org/downloads/",
  7848. "license": [
  7849. "MIT"
  7850. ],
  7851. "authors": [
  7852. {
  7853. "name": "Graham Campbell",
  7854. "email": "hello@gjcampbell.co.uk",
  7855. "homepage": "https://github.com/GrahamCampbell"
  7856. },
  7857. {
  7858. "name": "Michael Dowling",
  7859. "email": "mtdowling@gmail.com",
  7860. "homepage": "https://github.com/mtdowling"
  7861. },
  7862. {
  7863. "name": "Jeremy Lindblom",
  7864. "email": "jeremeamia@gmail.com",
  7865. "homepage": "https://github.com/jeremeamia"
  7866. },
  7867. {
  7868. "name": "George Mponos",
  7869. "email": "gmponos@gmail.com",
  7870. "homepage": "https://github.com/gmponos"
  7871. },
  7872. {
  7873. "name": "Tobias Nyholm",
  7874. "email": "tobias.nyholm@gmail.com",
  7875. "homepage": "https://github.com/Nyholm"
  7876. },
  7877. {
  7878. "name": "Márk Sági-Kazár",
  7879. "email": "mark.sagikazar@gmail.com",
  7880. "homepage": "https://github.com/sagikazarmark"
  7881. },
  7882. {
  7883. "name": "Tobias Schultze",
  7884. "email": "webmaster@tubo-world.de",
  7885. "homepage": "https://github.com/Tobion"
  7886. }
  7887. ],
  7888. "description": "Guzzle is a PHP HTTP client library",
  7889. "keywords": [
  7890. "client",
  7891. "curl",
  7892. "framework",
  7893. "http",
  7894. "http client",
  7895. "psr-18",
  7896. "psr-7",
  7897. "rest",
  7898. "web service"
  7899. ],
  7900. "support": {
  7901. "issues": "https://github.com/guzzle/guzzle/issues",
  7902. "source": "https://github.com/guzzle/guzzle/tree/7.7.1"
  7903. },
  7904. "funding": [
  7905. {
  7906. "url": "https://github.com/GrahamCampbell",
  7907. "type": "github"
  7908. },
  7909. {
  7910. "url": "https://github.com/Nyholm",
  7911. "type": "github"
  7912. },
  7913. {
  7914. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  7915. "type": "tidelift"
  7916. }
  7917. ],
  7918. "time": "2023-08-27T10:02:06+00:00"
  7919. },
  7920. {
  7921. "name": "guzzlehttp/promises",
  7922. "version": "2.0.1",
  7923. "source": {
  7924. "type": "git",
  7925. "url": "https://github.com/guzzle/promises.git",
  7926. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d"
  7927. },
  7928. "dist": {
  7929. "type": "zip",
  7930. "url": "https://api.github.com/repos/guzzle/promises/zipball/111166291a0f8130081195ac4556a5587d7f1b5d",
  7931. "reference": "111166291a0f8130081195ac4556a5587d7f1b5d",
  7932. "shasum": ""
  7933. },
  7934. "require": {
  7935. "php": "^7.2.5 || ^8.0"
  7936. },
  7937. "require-dev": {
  7938. "bamarni/composer-bin-plugin": "^1.8.1",
  7939. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  7940. },
  7941. "type": "library",
  7942. "extra": {
  7943. "bamarni-bin": {
  7944. "bin-links": true,
  7945. "forward-command": false
  7946. }
  7947. },
  7948. "autoload": {
  7949. "psr-4": {
  7950. "GuzzleHttp\\Promise\\": "src/"
  7951. }
  7952. },
  7953. "notification-url": "https://packagist.org/downloads/",
  7954. "license": [
  7955. "MIT"
  7956. ],
  7957. "authors": [
  7958. {
  7959. "name": "Graham Campbell",
  7960. "email": "hello@gjcampbell.co.uk",
  7961. "homepage": "https://github.com/GrahamCampbell"
  7962. },
  7963. {
  7964. "name": "Michael Dowling",
  7965. "email": "mtdowling@gmail.com",
  7966. "homepage": "https://github.com/mtdowling"
  7967. },
  7968. {
  7969. "name": "Tobias Nyholm",
  7970. "email": "tobias.nyholm@gmail.com",
  7971. "homepage": "https://github.com/Nyholm"
  7972. },
  7973. {
  7974. "name": "Tobias Schultze",
  7975. "email": "webmaster@tubo-world.de",
  7976. "homepage": "https://github.com/Tobion"
  7977. }
  7978. ],
  7979. "description": "Guzzle promises library",
  7980. "keywords": [
  7981. "promise"
  7982. ],
  7983. "support": {
  7984. "issues": "https://github.com/guzzle/promises/issues",
  7985. "source": "https://github.com/guzzle/promises/tree/2.0.1"
  7986. },
  7987. "funding": [
  7988. {
  7989. "url": "https://github.com/GrahamCampbell",
  7990. "type": "github"
  7991. },
  7992. {
  7993. "url": "https://github.com/Nyholm",
  7994. "type": "github"
  7995. },
  7996. {
  7997. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  7998. "type": "tidelift"
  7999. }
  8000. ],
  8001. "time": "2023-08-03T15:11:55+00:00"
  8002. },
  8003. {
  8004. "name": "guzzlehttp/psr7",
  8005. "version": "2.5.1",
  8006. "source": {
  8007. "type": "git",
  8008. "url": "https://github.com/guzzle/psr7.git",
  8009. "reference": "a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f"
  8010. },
  8011. "dist": {
  8012. "type": "zip",
  8013. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f",
  8014. "reference": "a0b3a03e8e8005257fbc408ce5f0fd0a8274dc7f",
  8015. "shasum": ""
  8016. },
  8017. "require": {
  8018. "php": "^7.2.5 || ^8.0",
  8019. "psr/http-factory": "^1.0",
  8020. "psr/http-message": "^1.1 || ^2.0",
  8021. "ralouphie/getallheaders": "^3.0"
  8022. },
  8023. "provide": {
  8024. "psr/http-factory-implementation": "1.0",
  8025. "psr/http-message-implementation": "1.0"
  8026. },
  8027. "require-dev": {
  8028. "bamarni/composer-bin-plugin": "^1.8.1",
  8029. "http-interop/http-factory-tests": "^0.9",
  8030. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  8031. },
  8032. "suggest": {
  8033. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  8034. },
  8035. "type": "library",
  8036. "extra": {
  8037. "bamarni-bin": {
  8038. "bin-links": true,
  8039. "forward-command": false
  8040. }
  8041. },
  8042. "autoload": {
  8043. "psr-4": {
  8044. "GuzzleHttp\\Psr7\\": "src/"
  8045. }
  8046. },
  8047. "notification-url": "https://packagist.org/downloads/",
  8048. "license": [
  8049. "MIT"
  8050. ],
  8051. "authors": [
  8052. {
  8053. "name": "Graham Campbell",
  8054. "email": "hello@gjcampbell.co.uk",
  8055. "homepage": "https://github.com/GrahamCampbell"
  8056. },
  8057. {
  8058. "name": "Michael Dowling",
  8059. "email": "mtdowling@gmail.com",
  8060. "homepage": "https://github.com/mtdowling"
  8061. },
  8062. {
  8063. "name": "George Mponos",
  8064. "email": "gmponos@gmail.com",
  8065. "homepage": "https://github.com/gmponos"
  8066. },
  8067. {
  8068. "name": "Tobias Nyholm",
  8069. "email": "tobias.nyholm@gmail.com",
  8070. "homepage": "https://github.com/Nyholm"
  8071. },
  8072. {
  8073. "name": "Márk Sági-Kazár",
  8074. "email": "mark.sagikazar@gmail.com",
  8075. "homepage": "https://github.com/sagikazarmark"
  8076. },
  8077. {
  8078. "name": "Tobias Schultze",
  8079. "email": "webmaster@tubo-world.de",
  8080. "homepage": "https://github.com/Tobion"
  8081. },
  8082. {
  8083. "name": "Márk Sági-Kazár",
  8084. "email": "mark.sagikazar@gmail.com",
  8085. "homepage": "https://sagikazarmark.hu"
  8086. }
  8087. ],
  8088. "description": "PSR-7 message implementation that also provides common utility methods",
  8089. "keywords": [
  8090. "http",
  8091. "message",
  8092. "psr-7",
  8093. "request",
  8094. "response",
  8095. "stream",
  8096. "uri",
  8097. "url"
  8098. ],
  8099. "support": {
  8100. "issues": "https://github.com/guzzle/psr7/issues",
  8101. "source": "https://github.com/guzzle/psr7/tree/2.5.1"
  8102. },
  8103. "funding": [
  8104. {
  8105. "url": "https://github.com/GrahamCampbell",
  8106. "type": "github"
  8107. },
  8108. {
  8109. "url": "https://github.com/Nyholm",
  8110. "type": "github"
  8111. },
  8112. {
  8113. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  8114. "type": "tidelift"
  8115. }
  8116. ],
  8117. "time": "2023-08-03T15:02:42+00:00"
  8118. },
  8119. {
  8120. "name": "kint-php/kint",
  8121. "version": "3.3",
  8122. "source": {
  8123. "type": "git",
  8124. "url": "https://github.com/kint-php/kint.git",
  8125. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b"
  8126. },
  8127. "dist": {
  8128. "type": "zip",
  8129. "url": "https://api.github.com/repos/kint-php/kint/zipball/335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8130. "reference": "335ac1bcaf04d87df70d8aa51e8887ba2c6d203b",
  8131. "shasum": ""
  8132. },
  8133. "require": {
  8134. "php": ">=5.3.6"
  8135. },
  8136. "require-dev": {
  8137. "friendsofphp/php-cs-fixer": "^2.0",
  8138. "phpunit/phpunit": "^4.0",
  8139. "seld/phar-utils": "^1.0",
  8140. "symfony/finder": "^2.0 || ^3.0 || ^4.0",
  8141. "vimeo/psalm": "^3.0"
  8142. },
  8143. "suggest": {
  8144. "ext-ctype": "Simple data type tests",
  8145. "ext-iconv": "Provides fallback detection for ambiguous legacy string encodings such as the Windows and ISO 8859 code pages",
  8146. "ext-mbstring": "Provides string encoding detection",
  8147. "kint-php/kint-js": "Provides a simplified dump to console.log()",
  8148. "kint-php/kint-twig": "Provides d() and s() functions in twig templates",
  8149. "symfony/polyfill-ctype": "Replacement for ext-ctype if missing",
  8150. "symfony/polyfill-iconv": "Replacement for ext-iconv if missing",
  8151. "symfony/polyfill-mbstring": "Replacement for ext-mbstring if missing"
  8152. },
  8153. "type": "library",
  8154. "autoload": {
  8155. "files": [
  8156. "init.php"
  8157. ],
  8158. "psr-4": {
  8159. "Kint\\": "src/"
  8160. }
  8161. },
  8162. "notification-url": "https://packagist.org/downloads/",
  8163. "license": [
  8164. "MIT"
  8165. ],
  8166. "authors": [
  8167. {
  8168. "name": "Jonathan Vollebregt",
  8169. "homepage": "https://github.com/jnvsor"
  8170. },
  8171. {
  8172. "name": "Rokas Šleinius",
  8173. "homepage": "https://github.com/raveren"
  8174. },
  8175. {
  8176. "name": "Contributors",
  8177. "homepage": "https://github.com/kint-php/kint/graphs/contributors"
  8178. }
  8179. ],
  8180. "description": "Kint - debugging tool for PHP developers",
  8181. "homepage": "https://kint-php.github.io/kint/",
  8182. "keywords": [
  8183. "debug",
  8184. "kint",
  8185. "php"
  8186. ],
  8187. "support": {
  8188. "issues": "https://github.com/kint-php/kint/issues",
  8189. "source": "https://github.com/kint-php/kint/tree/master"
  8190. },
  8191. "time": "2019-10-17T18:05:24+00:00"
  8192. },
  8193. {
  8194. "name": "league/container",
  8195. "version": "4.2.0",
  8196. "source": {
  8197. "type": "git",
  8198. "url": "https://github.com/thephpleague/container.git",
  8199. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab"
  8200. },
  8201. "dist": {
  8202. "type": "zip",
  8203. "url": "https://api.github.com/repos/thephpleague/container/zipball/375d13cb828649599ef5d48a339c4af7a26cd0ab",
  8204. "reference": "375d13cb828649599ef5d48a339c4af7a26cd0ab",
  8205. "shasum": ""
  8206. },
  8207. "require": {
  8208. "php": "^7.2 || ^8.0",
  8209. "psr/container": "^1.1 || ^2.0"
  8210. },
  8211. "provide": {
  8212. "psr/container-implementation": "^1.0"
  8213. },
  8214. "replace": {
  8215. "orno/di": "~2.0"
  8216. },
  8217. "require-dev": {
  8218. "nette/php-generator": "^3.4",
  8219. "nikic/php-parser": "^4.10",
  8220. "phpstan/phpstan": "^0.12.47",
  8221. "phpunit/phpunit": "^8.5.17",
  8222. "roave/security-advisories": "dev-latest",
  8223. "scrutinizer/ocular": "^1.8",
  8224. "squizlabs/php_codesniffer": "^3.6"
  8225. },
  8226. "type": "library",
  8227. "extra": {
  8228. "branch-alias": {
  8229. "dev-master": "4.x-dev",
  8230. "dev-4.x": "4.x-dev",
  8231. "dev-3.x": "3.x-dev",
  8232. "dev-2.x": "2.x-dev",
  8233. "dev-1.x": "1.x-dev"
  8234. }
  8235. },
  8236. "autoload": {
  8237. "psr-4": {
  8238. "League\\Container\\": "src"
  8239. }
  8240. },
  8241. "notification-url": "https://packagist.org/downloads/",
  8242. "license": [
  8243. "MIT"
  8244. ],
  8245. "authors": [
  8246. {
  8247. "name": "Phil Bennett",
  8248. "email": "mail@philbennett.co.uk",
  8249. "role": "Developer"
  8250. }
  8251. ],
  8252. "description": "A fast and intuitive dependency injection container.",
  8253. "homepage": "https://github.com/thephpleague/container",
  8254. "keywords": [
  8255. "container",
  8256. "dependency",
  8257. "di",
  8258. "injection",
  8259. "league",
  8260. "provider",
  8261. "service"
  8262. ],
  8263. "support": {
  8264. "issues": "https://github.com/thephpleague/container/issues",
  8265. "source": "https://github.com/thephpleague/container/tree/4.2.0"
  8266. },
  8267. "funding": [
  8268. {
  8269. "url": "https://github.com/philipobenito",
  8270. "type": "github"
  8271. }
  8272. ],
  8273. "time": "2021-11-16T10:29:06+00:00"
  8274. },
  8275. {
  8276. "name": "masterminds/html5",
  8277. "version": "2.8.1",
  8278. "source": {
  8279. "type": "git",
  8280. "url": "https://github.com/Masterminds/html5-php.git",
  8281. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf"
  8282. },
  8283. "dist": {
  8284. "type": "zip",
  8285. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f47dcf3c70c584de14f21143c55d9939631bc6cf",
  8286. "reference": "f47dcf3c70c584de14f21143c55d9939631bc6cf",
  8287. "shasum": ""
  8288. },
  8289. "require": {
  8290. "ext-dom": "*",
  8291. "php": ">=5.3.0"
  8292. },
  8293. "require-dev": {
  8294. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8"
  8295. },
  8296. "type": "library",
  8297. "extra": {
  8298. "branch-alias": {
  8299. "dev-master": "2.7-dev"
  8300. }
  8301. },
  8302. "autoload": {
  8303. "psr-4": {
  8304. "Masterminds\\": "src"
  8305. }
  8306. },
  8307. "notification-url": "https://packagist.org/downloads/",
  8308. "license": [
  8309. "MIT"
  8310. ],
  8311. "authors": [
  8312. {
  8313. "name": "Matt Butcher",
  8314. "email": "technosophos@gmail.com"
  8315. },
  8316. {
  8317. "name": "Matt Farina",
  8318. "email": "matt@mattfarina.com"
  8319. },
  8320. {
  8321. "name": "Asmir Mustafic",
  8322. "email": "goetas@gmail.com"
  8323. }
  8324. ],
  8325. "description": "An HTML5 parser and serializer.",
  8326. "homepage": "http://masterminds.github.io/html5-php",
  8327. "keywords": [
  8328. "HTML5",
  8329. "dom",
  8330. "html",
  8331. "parser",
  8332. "querypath",
  8333. "serializer",
  8334. "xml"
  8335. ],
  8336. "support": {
  8337. "issues": "https://github.com/Masterminds/html5-php/issues",
  8338. "source": "https://github.com/Masterminds/html5-php/tree/2.8.1"
  8339. },
  8340. "time": "2023-05-10T11:58:31+00:00"
  8341. },
  8342. {
  8343. "name": "mck89/peast",
  8344. "version": "v1.15.4",
  8345. "source": {
  8346. "type": "git",
  8347. "url": "https://github.com/mck89/peast.git",
  8348. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18"
  8349. },
  8350. "dist": {
  8351. "type": "zip",
  8352. "url": "https://api.github.com/repos/mck89/peast/zipball/1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  8353. "reference": "1df4dc28a6b5bb7ab117ab073c1712256e954e18",
  8354. "shasum": ""
  8355. },
  8356. "require": {
  8357. "ext-mbstring": "*",
  8358. "php": ">=5.4.0"
  8359. },
  8360. "require-dev": {
  8361. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  8362. },
  8363. "type": "library",
  8364. "extra": {
  8365. "branch-alias": {
  8366. "dev-master": "1.15.4-dev"
  8367. }
  8368. },
  8369. "autoload": {
  8370. "psr-4": {
  8371. "Peast\\": "lib/Peast/"
  8372. }
  8373. },
  8374. "notification-url": "https://packagist.org/downloads/",
  8375. "license": [
  8376. "BSD-3-Clause"
  8377. ],
  8378. "authors": [
  8379. {
  8380. "name": "Marco Marchiò",
  8381. "email": "marco.mm89@gmail.com"
  8382. }
  8383. ],
  8384. "description": "Peast is PHP library that generates AST for JavaScript code",
  8385. "support": {
  8386. "issues": "https://github.com/mck89/peast/issues",
  8387. "source": "https://github.com/mck89/peast/tree/v1.15.4"
  8388. },
  8389. "time": "2023-08-12T08:29:29+00:00"
  8390. },
  8391. {
  8392. "name": "nikic/php-parser",
  8393. "version": "v4.17.1",
  8394. "source": {
  8395. "type": "git",
  8396. "url": "https://github.com/nikic/PHP-Parser.git",
  8397. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d"
  8398. },
  8399. "dist": {
  8400. "type": "zip",
  8401. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  8402. "reference": "a6303e50c90c355c7eeee2c4a8b27fe8dc8fef1d",
  8403. "shasum": ""
  8404. },
  8405. "require": {
  8406. "ext-tokenizer": "*",
  8407. "php": ">=7.0"
  8408. },
  8409. "require-dev": {
  8410. "ircmaxell/php-yacc": "^0.0.7",
  8411. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  8412. },
  8413. "bin": [
  8414. "bin/php-parse"
  8415. ],
  8416. "type": "library",
  8417. "extra": {
  8418. "branch-alias": {
  8419. "dev-master": "4.9-dev"
  8420. }
  8421. },
  8422. "autoload": {
  8423. "psr-4": {
  8424. "PhpParser\\": "lib/PhpParser"
  8425. }
  8426. },
  8427. "notification-url": "https://packagist.org/downloads/",
  8428. "license": [
  8429. "BSD-3-Clause"
  8430. ],
  8431. "authors": [
  8432. {
  8433. "name": "Nikita Popov"
  8434. }
  8435. ],
  8436. "description": "A PHP parser written in PHP",
  8437. "keywords": [
  8438. "parser",
  8439. "php"
  8440. ],
  8441. "support": {
  8442. "issues": "https://github.com/nikic/PHP-Parser/issues",
  8443. "source": "https://github.com/nikic/PHP-Parser/tree/v4.17.1"
  8444. },
  8445. "time": "2023-08-13T19:53:39+00:00"
  8446. },
  8447. {
  8448. "name": "pear/archive_tar",
  8449. "version": "1.4.14",
  8450. "source": {
  8451. "type": "git",
  8452. "url": "https://github.com/pear/Archive_Tar.git",
  8453. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa"
  8454. },
  8455. "dist": {
  8456. "type": "zip",
  8457. "url": "https://api.github.com/repos/pear/Archive_Tar/zipball/4d761c5334c790e45ef3245f0864b8955c562caa",
  8458. "reference": "4d761c5334c790e45ef3245f0864b8955c562caa",
  8459. "shasum": ""
  8460. },
  8461. "require": {
  8462. "pear/pear-core-minimal": "^1.10.0alpha2",
  8463. "php": ">=5.2.0"
  8464. },
  8465. "require-dev": {
  8466. "phpunit/phpunit": "*"
  8467. },
  8468. "suggest": {
  8469. "ext-bz2": "Bz2 compression support.",
  8470. "ext-xz": "Lzma2 compression support.",
  8471. "ext-zlib": "Gzip compression support."
  8472. },
  8473. "type": "library",
  8474. "extra": {
  8475. "branch-alias": {
  8476. "dev-master": "1.4.x-dev"
  8477. }
  8478. },
  8479. "autoload": {
  8480. "psr-0": {
  8481. "Archive_Tar": ""
  8482. }
  8483. },
  8484. "notification-url": "https://packagist.org/downloads/",
  8485. "include-path": [
  8486. "./"
  8487. ],
  8488. "license": [
  8489. "BSD-3-Clause"
  8490. ],
  8491. "authors": [
  8492. {
  8493. "name": "Vincent Blavet",
  8494. "email": "vincent@phpconcept.net"
  8495. },
  8496. {
  8497. "name": "Greg Beaver",
  8498. "email": "greg@chiaraquartet.net"
  8499. },
  8500. {
  8501. "name": "Michiel Rook",
  8502. "email": "mrook@php.net"
  8503. }
  8504. ],
  8505. "description": "Tar file management class with compression support (gzip, bzip2, lzma2)",
  8506. "homepage": "https://github.com/pear/Archive_Tar",
  8507. "keywords": [
  8508. "archive",
  8509. "tar"
  8510. ],
  8511. "support": {
  8512. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Archive_Tar",
  8513. "source": "https://github.com/pear/Archive_Tar"
  8514. },
  8515. "funding": [
  8516. {
  8517. "url": "https://github.com/mrook",
  8518. "type": "github"
  8519. },
  8520. {
  8521. "url": "https://www.patreon.com/michielrook",
  8522. "type": "patreon"
  8523. }
  8524. ],
  8525. "time": "2021-07-20T13:53:39+00:00"
  8526. },
  8527. {
  8528. "name": "pear/console_getopt",
  8529. "version": "v1.4.3",
  8530. "source": {
  8531. "type": "git",
  8532. "url": "https://github.com/pear/Console_Getopt.git",
  8533. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0"
  8534. },
  8535. "dist": {
  8536. "type": "zip",
  8537. "url": "https://api.github.com/repos/pear/Console_Getopt/zipball/a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  8538. "reference": "a41f8d3e668987609178c7c4a9fe48fecac53fa0",
  8539. "shasum": ""
  8540. },
  8541. "type": "library",
  8542. "autoload": {
  8543. "psr-0": {
  8544. "Console": "./"
  8545. }
  8546. },
  8547. "notification-url": "https://packagist.org/downloads/",
  8548. "include-path": [
  8549. "./"
  8550. ],
  8551. "license": [
  8552. "BSD-2-Clause"
  8553. ],
  8554. "authors": [
  8555. {
  8556. "name": "Andrei Zmievski",
  8557. "email": "andrei@php.net",
  8558. "role": "Lead"
  8559. },
  8560. {
  8561. "name": "Stig Bakken",
  8562. "email": "stig@php.net",
  8563. "role": "Developer"
  8564. },
  8565. {
  8566. "name": "Greg Beaver",
  8567. "email": "cellog@php.net",
  8568. "role": "Helper"
  8569. }
  8570. ],
  8571. "description": "More info available on: http://pear.php.net/package/Console_Getopt",
  8572. "support": {
  8573. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=Console_Getopt",
  8574. "source": "https://github.com/pear/Console_Getopt"
  8575. },
  8576. "time": "2019-11-20T18:27:48+00:00"
  8577. },
  8578. {
  8579. "name": "pear/pear-core-minimal",
  8580. "version": "v1.10.13",
  8581. "source": {
  8582. "type": "git",
  8583. "url": "https://github.com/pear/pear-core-minimal.git",
  8584. "reference": "aed862e95fd286c53cc546734868dc38ff4b5b1d"
  8585. },
  8586. "dist": {
  8587. "type": "zip",
  8588. "url": "https://api.github.com/repos/pear/pear-core-minimal/zipball/aed862e95fd286c53cc546734868dc38ff4b5b1d",
  8589. "reference": "aed862e95fd286c53cc546734868dc38ff4b5b1d",
  8590. "shasum": ""
  8591. },
  8592. "require": {
  8593. "pear/console_getopt": "~1.4",
  8594. "pear/pear_exception": "~1.0"
  8595. },
  8596. "replace": {
  8597. "rsky/pear-core-min": "self.version"
  8598. },
  8599. "type": "library",
  8600. "autoload": {
  8601. "psr-0": {
  8602. "": "src/"
  8603. }
  8604. },
  8605. "notification-url": "https://packagist.org/downloads/",
  8606. "include-path": [
  8607. "src/"
  8608. ],
  8609. "license": [
  8610. "BSD-3-Clause"
  8611. ],
  8612. "authors": [
  8613. {
  8614. "name": "Christian Weiske",
  8615. "email": "cweiske@php.net",
  8616. "role": "Lead"
  8617. }
  8618. ],
  8619. "description": "Minimal set of PEAR core files to be used as composer dependency",
  8620. "support": {
  8621. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR",
  8622. "source": "https://github.com/pear/pear-core-minimal"
  8623. },
  8624. "time": "2023-04-19T19:15:47+00:00"
  8625. },
  8626. {
  8627. "name": "pear/pear_exception",
  8628. "version": "v1.0.2",
  8629. "source": {
  8630. "type": "git",
  8631. "url": "https://github.com/pear/PEAR_Exception.git",
  8632. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0"
  8633. },
  8634. "dist": {
  8635. "type": "zip",
  8636. "url": "https://api.github.com/repos/pear/PEAR_Exception/zipball/b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  8637. "reference": "b14fbe2ddb0b9f94f5b24cf08783d599f776fff0",
  8638. "shasum": ""
  8639. },
  8640. "require": {
  8641. "php": ">=5.2.0"
  8642. },
  8643. "require-dev": {
  8644. "phpunit/phpunit": "<9"
  8645. },
  8646. "type": "class",
  8647. "extra": {
  8648. "branch-alias": {
  8649. "dev-master": "1.0.x-dev"
  8650. }
  8651. },
  8652. "autoload": {
  8653. "classmap": [
  8654. "PEAR/"
  8655. ]
  8656. },
  8657. "notification-url": "https://packagist.org/downloads/",
  8658. "include-path": [
  8659. "."
  8660. ],
  8661. "license": [
  8662. "BSD-2-Clause"
  8663. ],
  8664. "authors": [
  8665. {
  8666. "name": "Helgi Thormar",
  8667. "email": "dufuz@php.net"
  8668. },
  8669. {
  8670. "name": "Greg Beaver",
  8671. "email": "cellog@php.net"
  8672. }
  8673. ],
  8674. "description": "The PEAR Exception base class.",
  8675. "homepage": "https://github.com/pear/PEAR_Exception",
  8676. "keywords": [
  8677. "exception"
  8678. ],
  8679. "support": {
  8680. "issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PEAR_Exception",
  8681. "source": "https://github.com/pear/PEAR_Exception"
  8682. },
  8683. "time": "2021-03-21T15:43:46+00:00"
  8684. },
  8685. {
  8686. "name": "phenx/php-font-lib",
  8687. "version": "0.5.4",
  8688. "source": {
  8689. "type": "git",
  8690. "url": "https://github.com/dompdf/php-font-lib.git",
  8691. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4"
  8692. },
  8693. "dist": {
  8694. "type": "zip",
  8695. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/dd448ad1ce34c63d09baccd05415e361300c35b4",
  8696. "reference": "dd448ad1ce34c63d09baccd05415e361300c35b4",
  8697. "shasum": ""
  8698. },
  8699. "require": {
  8700. "ext-mbstring": "*"
  8701. },
  8702. "require-dev": {
  8703. "symfony/phpunit-bridge": "^3 || ^4 || ^5"
  8704. },
  8705. "type": "library",
  8706. "autoload": {
  8707. "psr-4": {
  8708. "FontLib\\": "src/FontLib"
  8709. }
  8710. },
  8711. "notification-url": "https://packagist.org/downloads/",
  8712. "license": [
  8713. "LGPL-3.0"
  8714. ],
  8715. "authors": [
  8716. {
  8717. "name": "Fabien Ménager",
  8718. "email": "fabien.menager@gmail.com"
  8719. }
  8720. ],
  8721. "description": "A library to read, parse, export and make subsets of different types of font files.",
  8722. "homepage": "https://github.com/PhenX/php-font-lib",
  8723. "support": {
  8724. "issues": "https://github.com/dompdf/php-font-lib/issues",
  8725. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.4"
  8726. },
  8727. "time": "2021-12-17T19:44:54+00:00"
  8728. },
  8729. {
  8730. "name": "phootwork/collection",
  8731. "version": "v3.2.2",
  8732. "source": {
  8733. "type": "git",
  8734. "url": "https://github.com/phootwork/collection.git",
  8735. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa"
  8736. },
  8737. "dist": {
  8738. "type": "zip",
  8739. "url": "https://api.github.com/repos/phootwork/collection/zipball/46dde20420fba17766c89200bc3ff91d3e58eafa",
  8740. "reference": "46dde20420fba17766c89200bc3ff91d3e58eafa",
  8741. "shasum": ""
  8742. },
  8743. "require": {
  8744. "phootwork/lang": "^3.0",
  8745. "php": ">=8.0"
  8746. },
  8747. "type": "library",
  8748. "autoload": {
  8749. "psr-4": {
  8750. "phootwork\\collection\\": ""
  8751. }
  8752. },
  8753. "notification-url": "https://packagist.org/downloads/",
  8754. "license": [
  8755. "MIT"
  8756. ],
  8757. "authors": [
  8758. {
  8759. "name": "Thomas Gossmann",
  8760. "homepage": "http://gos.si"
  8761. }
  8762. ],
  8763. "description": "The phootwork library fills gaps in the php language and provides better solutions than the existing ones php offers.",
  8764. "homepage": "https://phootwork.github.io/collection/",
  8765. "keywords": [
  8766. "Array object",
  8767. "Text object",
  8768. "collection",
  8769. "collections",
  8770. "json",
  8771. "list",
  8772. "map",
  8773. "queue",
  8774. "set",
  8775. "stack",
  8776. "xml"
  8777. ],
  8778. "support": {
  8779. "issues": "https://github.com/phootwork/phootwork/issues",
  8780. "source": "https://github.com/phootwork/collection/tree/v3.2.2"
  8781. },
  8782. "time": "2022-08-27T12:51:24+00:00"
  8783. },
  8784. {
  8785. "name": "phootwork/lang",
  8786. "version": "v3.2.2",
  8787. "source": {
  8788. "type": "git",
  8789. "url": "https://github.com/phootwork/lang.git",
  8790. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597"
  8791. },
  8792. "dist": {
  8793. "type": "zip",
  8794. "url": "https://api.github.com/repos/phootwork/lang/zipball/baaf154ae7d521ebeee5e89105f5b12b0f234597",
  8795. "reference": "baaf154ae7d521ebeee5e89105f5b12b0f234597",
  8796. "shasum": ""
  8797. },
  8798. "require": {
  8799. "php": ">=8.0",
  8800. "symfony/polyfill-mbstring": "^1.12",
  8801. "symfony/polyfill-php81": "^1.22"
  8802. },
  8803. "type": "library",
  8804. "autoload": {
  8805. "psr-4": {
  8806. "phootwork\\lang\\": ""
  8807. }
  8808. },
  8809. "notification-url": "https://packagist.org/downloads/",
  8810. "license": [
  8811. "MIT"
  8812. ],
  8813. "authors": [
  8814. {
  8815. "name": "Thomas Gossmann",
  8816. "homepage": "http://gos.si"
  8817. }
  8818. ],
  8819. "description": "Missing PHP language constructs",
  8820. "homepage": "https://phootwork.github.io/lang/",
  8821. "keywords": [
  8822. "array",
  8823. "comparator",
  8824. "comparison",
  8825. "string"
  8826. ],
  8827. "support": {
  8828. "issues": "https://github.com/phootwork/phootwork/issues",
  8829. "source": "https://github.com/phootwork/lang/tree/v3.2.2"
  8830. },
  8831. "time": "2023-05-26T05:37:59+00:00"
  8832. },
  8833. {
  8834. "name": "phpmailer/phpmailer",
  8835. "version": "v6.8.1",
  8836. "source": {
  8837. "type": "git",
  8838. "url": "https://github.com/PHPMailer/PHPMailer.git",
  8839. "reference": "e88da8d679acc3824ff231fdc553565b802ac016"
  8840. },
  8841. "dist": {
  8842. "type": "zip",
  8843. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/e88da8d679acc3824ff231fdc553565b802ac016",
  8844. "reference": "e88da8d679acc3824ff231fdc553565b802ac016",
  8845. "shasum": ""
  8846. },
  8847. "require": {
  8848. "ext-ctype": "*",
  8849. "ext-filter": "*",
  8850. "ext-hash": "*",
  8851. "php": ">=5.5.0"
  8852. },
  8853. "require-dev": {
  8854. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  8855. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  8856. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  8857. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  8858. "phpcompatibility/php-compatibility": "^9.3.5",
  8859. "roave/security-advisories": "dev-latest",
  8860. "squizlabs/php_codesniffer": "^3.7.2",
  8861. "yoast/phpunit-polyfills": "^1.0.4"
  8862. },
  8863. "suggest": {
  8864. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  8865. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  8866. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  8867. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  8868. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  8869. "psr/log": "For optional PSR-3 debug logging",
  8870. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  8871. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  8872. },
  8873. "type": "library",
  8874. "autoload": {
  8875. "psr-4": {
  8876. "PHPMailer\\PHPMailer\\": "src/"
  8877. }
  8878. },
  8879. "notification-url": "https://packagist.org/downloads/",
  8880. "license": [
  8881. "LGPL-2.1-only"
  8882. ],
  8883. "authors": [
  8884. {
  8885. "name": "Marcus Bointon",
  8886. "email": "phpmailer@synchromedia.co.uk"
  8887. },
  8888. {
  8889. "name": "Jim Jagielski",
  8890. "email": "jimjag@gmail.com"
  8891. },
  8892. {
  8893. "name": "Andy Prevost",
  8894. "email": "codeworxtech@users.sourceforge.net"
  8895. },
  8896. {
  8897. "name": "Brent R. Matzelle"
  8898. }
  8899. ],
  8900. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  8901. "support": {
  8902. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  8903. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.8.1"
  8904. },
  8905. "funding": [
  8906. {
  8907. "url": "https://github.com/Synchro",
  8908. "type": "github"
  8909. }
  8910. ],
  8911. "time": "2023-08-29T08:26:30+00:00"
  8912. },
  8913. {
  8914. "name": "phpowermove/docblock",
  8915. "version": "v4.0",
  8916. "source": {
  8917. "type": "git",
  8918. "url": "https://github.com/phpowermove/docblock.git",
  8919. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826"
  8920. },
  8921. "dist": {
  8922. "type": "zip",
  8923. "url": "https://api.github.com/repos/phpowermove/docblock/zipball/a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  8924. "reference": "a73f6e17b7d4e1b92ca5378c248c952c9fae7826",
  8925. "shasum": ""
  8926. },
  8927. "require": {
  8928. "phootwork/collection": "^3.0",
  8929. "phootwork/lang": "^3.0",
  8930. "php": ">=8.0"
  8931. },
  8932. "require-dev": {
  8933. "phootwork/php-cs-fixer-config": "^0.4",
  8934. "phpunit/phpunit": "^9.0",
  8935. "psalm/phar": "^4.3"
  8936. },
  8937. "type": "library",
  8938. "autoload": {
  8939. "psr-4": {
  8940. "phpowermove\\docblock\\": "src/"
  8941. }
  8942. },
  8943. "notification-url": "https://packagist.org/downloads/",
  8944. "license": [
  8945. "MIT"
  8946. ],
  8947. "authors": [
  8948. {
  8949. "name": "Thomas Gossmann",
  8950. "homepage": "http://gos.si"
  8951. }
  8952. ],
  8953. "description": "PHP Docblock parser and generator. An API to read and write Docblocks.",
  8954. "keywords": [
  8955. "docblock",
  8956. "generator",
  8957. "parser"
  8958. ],
  8959. "support": {
  8960. "issues": "https://github.com/phpowermove/docblock/issues",
  8961. "source": "https://github.com/phpowermove/docblock/tree/v4.0"
  8962. },
  8963. "time": "2021-09-22T16:57:06+00:00"
  8964. },
  8965. {
  8966. "name": "politsin/jquery-ui-touch-punch",
  8967. "version": "1.0",
  8968. "source": {
  8969. "type": "git",
  8970. "url": "https://github.com/politsin/jquery-ui-touch-punch.git",
  8971. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd"
  8972. },
  8973. "dist": {
  8974. "type": "zip",
  8975. "url": "https://api.github.com/repos/politsin/jquery-ui-touch-punch/zipball/2fe375e05821e267f0f3c0e063197f5c406896dd",
  8976. "reference": "2fe375e05821e267f0f3c0e063197f5c406896dd",
  8977. "shasum": ""
  8978. },
  8979. "type": "drupal-library",
  8980. "notification-url": "https://packagist.org/downloads/",
  8981. "license": [
  8982. "MIT"
  8983. ],
  8984. "authors": [
  8985. {
  8986. "name": "Dave Furfero",
  8987. "email": "furf@furf.com"
  8988. }
  8989. ],
  8990. "description": "Extension to jQuery UI for mobile touch event support.",
  8991. "homepage": "http://touchpunch.furf.com/",
  8992. "keywords": [
  8993. "gestures",
  8994. "mobile",
  8995. "touch"
  8996. ],
  8997. "support": {
  8998. "issues": "https://github.com/politsin/jquery-ui-touch-punch/issues",
  8999. "source": "https://github.com/politsin/jquery-ui-touch-punch/tree/1.0"
  9000. },
  9001. "time": "2020-12-15T10:26:18+00:00"
  9002. },
  9003. {
  9004. "name": "psr/cache",
  9005. "version": "3.0.0",
  9006. "source": {
  9007. "type": "git",
  9008. "url": "https://github.com/php-fig/cache.git",
  9009. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  9010. },
  9011. "dist": {
  9012. "type": "zip",
  9013. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  9014. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  9015. "shasum": ""
  9016. },
  9017. "require": {
  9018. "php": ">=8.0.0"
  9019. },
  9020. "type": "library",
  9021. "extra": {
  9022. "branch-alias": {
  9023. "dev-master": "1.0.x-dev"
  9024. }
  9025. },
  9026. "autoload": {
  9027. "psr-4": {
  9028. "Psr\\Cache\\": "src/"
  9029. }
  9030. },
  9031. "notification-url": "https://packagist.org/downloads/",
  9032. "license": [
  9033. "MIT"
  9034. ],
  9035. "authors": [
  9036. {
  9037. "name": "PHP-FIG",
  9038. "homepage": "https://www.php-fig.org/"
  9039. }
  9040. ],
  9041. "description": "Common interface for caching libraries",
  9042. "keywords": [
  9043. "cache",
  9044. "psr",
  9045. "psr-6"
  9046. ],
  9047. "support": {
  9048. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  9049. },
  9050. "time": "2021-02-03T23:26:27+00:00"
  9051. },
  9052. {
  9053. "name": "psr/container",
  9054. "version": "2.0.2",
  9055. "source": {
  9056. "type": "git",
  9057. "url": "https://github.com/php-fig/container.git",
  9058. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  9059. },
  9060. "dist": {
  9061. "type": "zip",
  9062. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  9063. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  9064. "shasum": ""
  9065. },
  9066. "require": {
  9067. "php": ">=7.4.0"
  9068. },
  9069. "type": "library",
  9070. "extra": {
  9071. "branch-alias": {
  9072. "dev-master": "2.0.x-dev"
  9073. }
  9074. },
  9075. "autoload": {
  9076. "psr-4": {
  9077. "Psr\\Container\\": "src/"
  9078. }
  9079. },
  9080. "notification-url": "https://packagist.org/downloads/",
  9081. "license": [
  9082. "MIT"
  9083. ],
  9084. "authors": [
  9085. {
  9086. "name": "PHP-FIG",
  9087. "homepage": "https://www.php-fig.org/"
  9088. }
  9089. ],
  9090. "description": "Common Container Interface (PHP FIG PSR-11)",
  9091. "homepage": "https://github.com/php-fig/container",
  9092. "keywords": [
  9093. "PSR-11",
  9094. "container",
  9095. "container-interface",
  9096. "container-interop",
  9097. "psr"
  9098. ],
  9099. "support": {
  9100. "issues": "https://github.com/php-fig/container/issues",
  9101. "source": "https://github.com/php-fig/container/tree/2.0.2"
  9102. },
  9103. "time": "2021-11-05T16:47:00+00:00"
  9104. },
  9105. {
  9106. "name": "psr/event-dispatcher",
  9107. "version": "1.0.0",
  9108. "source": {
  9109. "type": "git",
  9110. "url": "https://github.com/php-fig/event-dispatcher.git",
  9111. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  9112. },
  9113. "dist": {
  9114. "type": "zip",
  9115. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  9116. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  9117. "shasum": ""
  9118. },
  9119. "require": {
  9120. "php": ">=7.2.0"
  9121. },
  9122. "type": "library",
  9123. "extra": {
  9124. "branch-alias": {
  9125. "dev-master": "1.0.x-dev"
  9126. }
  9127. },
  9128. "autoload": {
  9129. "psr-4": {
  9130. "Psr\\EventDispatcher\\": "src/"
  9131. }
  9132. },
  9133. "notification-url": "https://packagist.org/downloads/",
  9134. "license": [
  9135. "MIT"
  9136. ],
  9137. "authors": [
  9138. {
  9139. "name": "PHP-FIG",
  9140. "homepage": "http://www.php-fig.org/"
  9141. }
  9142. ],
  9143. "description": "Standard interfaces for event handling.",
  9144. "keywords": [
  9145. "events",
  9146. "psr",
  9147. "psr-14"
  9148. ],
  9149. "support": {
  9150. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  9151. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  9152. },
  9153. "time": "2019-01-08T18:20:26+00:00"
  9154. },
  9155. {
  9156. "name": "psr/http-client",
  9157. "version": "1.0.3",
  9158. "source": {
  9159. "type": "git",
  9160. "url": "https://github.com/php-fig/http-client.git",
  9161. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  9162. },
  9163. "dist": {
  9164. "type": "zip",
  9165. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  9166. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  9167. "shasum": ""
  9168. },
  9169. "require": {
  9170. "php": "^7.0 || ^8.0",
  9171. "psr/http-message": "^1.0 || ^2.0"
  9172. },
  9173. "type": "library",
  9174. "extra": {
  9175. "branch-alias": {
  9176. "dev-master": "1.0.x-dev"
  9177. }
  9178. },
  9179. "autoload": {
  9180. "psr-4": {
  9181. "Psr\\Http\\Client\\": "src/"
  9182. }
  9183. },
  9184. "notification-url": "https://packagist.org/downloads/",
  9185. "license": [
  9186. "MIT"
  9187. ],
  9188. "authors": [
  9189. {
  9190. "name": "PHP-FIG",
  9191. "homepage": "https://www.php-fig.org/"
  9192. }
  9193. ],
  9194. "description": "Common interface for HTTP clients",
  9195. "homepage": "https://github.com/php-fig/http-client",
  9196. "keywords": [
  9197. "http",
  9198. "http-client",
  9199. "psr",
  9200. "psr-18"
  9201. ],
  9202. "support": {
  9203. "source": "https://github.com/php-fig/http-client"
  9204. },
  9205. "time": "2023-09-23T14:17:50+00:00"
  9206. },
  9207. {
  9208. "name": "psr/http-factory",
  9209. "version": "1.0.2",
  9210. "source": {
  9211. "type": "git",
  9212. "url": "https://github.com/php-fig/http-factory.git",
  9213. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  9214. },
  9215. "dist": {
  9216. "type": "zip",
  9217. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  9218. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  9219. "shasum": ""
  9220. },
  9221. "require": {
  9222. "php": ">=7.0.0",
  9223. "psr/http-message": "^1.0 || ^2.0"
  9224. },
  9225. "type": "library",
  9226. "extra": {
  9227. "branch-alias": {
  9228. "dev-master": "1.0.x-dev"
  9229. }
  9230. },
  9231. "autoload": {
  9232. "psr-4": {
  9233. "Psr\\Http\\Message\\": "src/"
  9234. }
  9235. },
  9236. "notification-url": "https://packagist.org/downloads/",
  9237. "license": [
  9238. "MIT"
  9239. ],
  9240. "authors": [
  9241. {
  9242. "name": "PHP-FIG",
  9243. "homepage": "https://www.php-fig.org/"
  9244. }
  9245. ],
  9246. "description": "Common interfaces for PSR-7 HTTP message factories",
  9247. "keywords": [
  9248. "factory",
  9249. "http",
  9250. "message",
  9251. "psr",
  9252. "psr-17",
  9253. "psr-7",
  9254. "request",
  9255. "response"
  9256. ],
  9257. "support": {
  9258. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  9259. },
  9260. "time": "2023-04-10T20:10:41+00:00"
  9261. },
  9262. {
  9263. "name": "psr/http-message",
  9264. "version": "2.0",
  9265. "source": {
  9266. "type": "git",
  9267. "url": "https://github.com/php-fig/http-message.git",
  9268. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  9269. },
  9270. "dist": {
  9271. "type": "zip",
  9272. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  9273. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  9274. "shasum": ""
  9275. },
  9276. "require": {
  9277. "php": "^7.2 || ^8.0"
  9278. },
  9279. "type": "library",
  9280. "extra": {
  9281. "branch-alias": {
  9282. "dev-master": "2.0.x-dev"
  9283. }
  9284. },
  9285. "autoload": {
  9286. "psr-4": {
  9287. "Psr\\Http\\Message\\": "src/"
  9288. }
  9289. },
  9290. "notification-url": "https://packagist.org/downloads/",
  9291. "license": [
  9292. "MIT"
  9293. ],
  9294. "authors": [
  9295. {
  9296. "name": "PHP-FIG",
  9297. "homepage": "https://www.php-fig.org/"
  9298. }
  9299. ],
  9300. "description": "Common interface for HTTP messages",
  9301. "homepage": "https://github.com/php-fig/http-message",
  9302. "keywords": [
  9303. "http",
  9304. "http-message",
  9305. "psr",
  9306. "psr-7",
  9307. "request",
  9308. "response"
  9309. ],
  9310. "support": {
  9311. "source": "https://github.com/php-fig/http-message/tree/2.0"
  9312. },
  9313. "time": "2023-04-04T09:54:51+00:00"
  9314. },
  9315. {
  9316. "name": "psr/log",
  9317. "version": "3.0.0",
  9318. "source": {
  9319. "type": "git",
  9320. "url": "https://github.com/php-fig/log.git",
  9321. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  9322. },
  9323. "dist": {
  9324. "type": "zip",
  9325. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  9326. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  9327. "shasum": ""
  9328. },
  9329. "require": {
  9330. "php": ">=8.0.0"
  9331. },
  9332. "type": "library",
  9333. "extra": {
  9334. "branch-alias": {
  9335. "dev-master": "3.x-dev"
  9336. }
  9337. },
  9338. "autoload": {
  9339. "psr-4": {
  9340. "Psr\\Log\\": "src"
  9341. }
  9342. },
  9343. "notification-url": "https://packagist.org/downloads/",
  9344. "license": [
  9345. "MIT"
  9346. ],
  9347. "authors": [
  9348. {
  9349. "name": "PHP-FIG",
  9350. "homepage": "https://www.php-fig.org/"
  9351. }
  9352. ],
  9353. "description": "Common interface for logging libraries",
  9354. "homepage": "https://github.com/php-fig/log",
  9355. "keywords": [
  9356. "log",
  9357. "psr",
  9358. "psr-3"
  9359. ],
  9360. "support": {
  9361. "source": "https://github.com/php-fig/log/tree/3.0.0"
  9362. },
  9363. "time": "2021-07-14T16:46:02+00:00"
  9364. },
  9365. {
  9366. "name": "psy/psysh",
  9367. "version": "v0.11.22",
  9368. "source": {
  9369. "type": "git",
  9370. "url": "https://github.com/bobthecow/psysh.git",
  9371. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b"
  9372. },
  9373. "dist": {
  9374. "type": "zip",
  9375. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/128fa1b608be651999ed9789c95e6e2a31b5802b",
  9376. "reference": "128fa1b608be651999ed9789c95e6e2a31b5802b",
  9377. "shasum": ""
  9378. },
  9379. "require": {
  9380. "ext-json": "*",
  9381. "ext-tokenizer": "*",
  9382. "nikic/php-parser": "^4.0 || ^3.1",
  9383. "php": "^8.0 || ^7.0.8",
  9384. "symfony/console": "^6.0 || ^5.0 || ^4.0 || ^3.4",
  9385. "symfony/var-dumper": "^6.0 || ^5.0 || ^4.0 || ^3.4"
  9386. },
  9387. "conflict": {
  9388. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  9389. },
  9390. "require-dev": {
  9391. "bamarni/composer-bin-plugin": "^1.2"
  9392. },
  9393. "suggest": {
  9394. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  9395. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  9396. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.",
  9397. "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history."
  9398. },
  9399. "bin": [
  9400. "bin/psysh"
  9401. ],
  9402. "type": "library",
  9403. "extra": {
  9404. "branch-alias": {
  9405. "dev-0.11": "0.11.x-dev"
  9406. },
  9407. "bamarni-bin": {
  9408. "bin-links": false,
  9409. "forward-command": false
  9410. }
  9411. },
  9412. "autoload": {
  9413. "files": [
  9414. "src/functions.php"
  9415. ],
  9416. "psr-4": {
  9417. "Psy\\": "src/"
  9418. }
  9419. },
  9420. "notification-url": "https://packagist.org/downloads/",
  9421. "license": [
  9422. "MIT"
  9423. ],
  9424. "authors": [
  9425. {
  9426. "name": "Justin Hileman",
  9427. "email": "justin@justinhileman.info",
  9428. "homepage": "http://justinhileman.com"
  9429. }
  9430. ],
  9431. "description": "An interactive shell for modern PHP.",
  9432. "homepage": "http://psysh.org",
  9433. "keywords": [
  9434. "REPL",
  9435. "console",
  9436. "interactive",
  9437. "shell"
  9438. ],
  9439. "support": {
  9440. "issues": "https://github.com/bobthecow/psysh/issues",
  9441. "source": "https://github.com/bobthecow/psysh/tree/v0.11.22"
  9442. },
  9443. "time": "2023-10-14T21:56:36+00:00"
  9444. },
  9445. {
  9446. "name": "ralouphie/getallheaders",
  9447. "version": "3.0.3",
  9448. "source": {
  9449. "type": "git",
  9450. "url": "https://github.com/ralouphie/getallheaders.git",
  9451. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  9452. },
  9453. "dist": {
  9454. "type": "zip",
  9455. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  9456. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  9457. "shasum": ""
  9458. },
  9459. "require": {
  9460. "php": ">=5.6"
  9461. },
  9462. "require-dev": {
  9463. "php-coveralls/php-coveralls": "^2.1",
  9464. "phpunit/phpunit": "^5 || ^6.5"
  9465. },
  9466. "type": "library",
  9467. "autoload": {
  9468. "files": [
  9469. "src/getallheaders.php"
  9470. ]
  9471. },
  9472. "notification-url": "https://packagist.org/downloads/",
  9473. "license": [
  9474. "MIT"
  9475. ],
  9476. "authors": [
  9477. {
  9478. "name": "Ralph Khattar",
  9479. "email": "ralph.khattar@gmail.com"
  9480. }
  9481. ],
  9482. "description": "A polyfill for getallheaders.",
  9483. "support": {
  9484. "issues": "https://github.com/ralouphie/getallheaders/issues",
  9485. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  9486. },
  9487. "time": "2019-03-08T08:55:37+00:00"
  9488. },
  9489. {
  9490. "name": "sebastian/diff",
  9491. "version": "4.0.5",
  9492. "source": {
  9493. "type": "git",
  9494. "url": "https://github.com/sebastianbergmann/diff.git",
  9495. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  9496. },
  9497. "dist": {
  9498. "type": "zip",
  9499. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9500. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  9501. "shasum": ""
  9502. },
  9503. "require": {
  9504. "php": ">=7.3"
  9505. },
  9506. "require-dev": {
  9507. "phpunit/phpunit": "^9.3",
  9508. "symfony/process": "^4.2 || ^5"
  9509. },
  9510. "type": "library",
  9511. "extra": {
  9512. "branch-alias": {
  9513. "dev-master": "4.0-dev"
  9514. }
  9515. },
  9516. "autoload": {
  9517. "classmap": [
  9518. "src/"
  9519. ]
  9520. },
  9521. "notification-url": "https://packagist.org/downloads/",
  9522. "license": [
  9523. "BSD-3-Clause"
  9524. ],
  9525. "authors": [
  9526. {
  9527. "name": "Sebastian Bergmann",
  9528. "email": "sebastian@phpunit.de"
  9529. },
  9530. {
  9531. "name": "Kore Nordmann",
  9532. "email": "mail@kore-nordmann.de"
  9533. }
  9534. ],
  9535. "description": "Diff implementation",
  9536. "homepage": "https://github.com/sebastianbergmann/diff",
  9537. "keywords": [
  9538. "diff",
  9539. "udiff",
  9540. "unidiff",
  9541. "unified diff"
  9542. ],
  9543. "support": {
  9544. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9545. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  9546. },
  9547. "funding": [
  9548. {
  9549. "url": "https://github.com/sebastianbergmann",
  9550. "type": "github"
  9551. }
  9552. ],
  9553. "time": "2023-05-07T05:35:17+00:00"
  9554. },
  9555. {
  9556. "name": "symfony/console",
  9557. "version": "v6.3.8",
  9558. "source": {
  9559. "type": "git",
  9560. "url": "https://github.com/symfony/console.git",
  9561. "reference": "0d14a9f6d04d4ac38a8cea1171f4554e325dae92"
  9562. },
  9563. "dist": {
  9564. "type": "zip",
  9565. "url": "https://api.github.com/repos/symfony/console/zipball/0d14a9f6d04d4ac38a8cea1171f4554e325dae92",
  9566. "reference": "0d14a9f6d04d4ac38a8cea1171f4554e325dae92",
  9567. "shasum": ""
  9568. },
  9569. "require": {
  9570. "php": ">=8.1",
  9571. "symfony/deprecation-contracts": "^2.5|^3",
  9572. "symfony/polyfill-mbstring": "~1.0",
  9573. "symfony/service-contracts": "^2.5|^3",
  9574. "symfony/string": "^5.4|^6.0"
  9575. },
  9576. "conflict": {
  9577. "symfony/dependency-injection": "<5.4",
  9578. "symfony/dotenv": "<5.4",
  9579. "symfony/event-dispatcher": "<5.4",
  9580. "symfony/lock": "<5.4",
  9581. "symfony/process": "<5.4"
  9582. },
  9583. "provide": {
  9584. "psr/log-implementation": "1.0|2.0|3.0"
  9585. },
  9586. "require-dev": {
  9587. "psr/log": "^1|^2|^3",
  9588. "symfony/config": "^5.4|^6.0",
  9589. "symfony/dependency-injection": "^5.4|^6.0",
  9590. "symfony/event-dispatcher": "^5.4|^6.0",
  9591. "symfony/lock": "^5.4|^6.0",
  9592. "symfony/process": "^5.4|^6.0",
  9593. "symfony/var-dumper": "^5.4|^6.0"
  9594. },
  9595. "type": "library",
  9596. "autoload": {
  9597. "psr-4": {
  9598. "Symfony\\Component\\Console\\": ""
  9599. },
  9600. "exclude-from-classmap": [
  9601. "/Tests/"
  9602. ]
  9603. },
  9604. "notification-url": "https://packagist.org/downloads/",
  9605. "license": [
  9606. "MIT"
  9607. ],
  9608. "authors": [
  9609. {
  9610. "name": "Fabien Potencier",
  9611. "email": "fabien@symfony.com"
  9612. },
  9613. {
  9614. "name": "Symfony Community",
  9615. "homepage": "https://symfony.com/contributors"
  9616. }
  9617. ],
  9618. "description": "Eases the creation of beautiful and testable command line interfaces",
  9619. "homepage": "https://symfony.com",
  9620. "keywords": [
  9621. "cli",
  9622. "command-line",
  9623. "console",
  9624. "terminal"
  9625. ],
  9626. "support": {
  9627. "source": "https://github.com/symfony/console/tree/v6.3.8"
  9628. },
  9629. "funding": [
  9630. {
  9631. "url": "https://symfony.com/sponsor",
  9632. "type": "custom"
  9633. },
  9634. {
  9635. "url": "https://github.com/fabpot",
  9636. "type": "github"
  9637. },
  9638. {
  9639. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9640. "type": "tidelift"
  9641. }
  9642. ],
  9643. "time": "2023-10-31T08:09:35+00:00"
  9644. },
  9645. {
  9646. "name": "symfony/dependency-injection",
  9647. "version": "v6.3.8",
  9648. "source": {
  9649. "type": "git",
  9650. "url": "https://github.com/symfony/dependency-injection.git",
  9651. "reference": "1f30f545c4151f611148fc19e28d54d39e0a00bc"
  9652. },
  9653. "dist": {
  9654. "type": "zip",
  9655. "url": "https://api.github.com/repos/symfony/dependency-injection/zipball/1f30f545c4151f611148fc19e28d54d39e0a00bc",
  9656. "reference": "1f30f545c4151f611148fc19e28d54d39e0a00bc",
  9657. "shasum": ""
  9658. },
  9659. "require": {
  9660. "php": ">=8.1",
  9661. "psr/container": "^1.1|^2.0",
  9662. "symfony/deprecation-contracts": "^2.5|^3",
  9663. "symfony/service-contracts": "^2.5|^3.0",
  9664. "symfony/var-exporter": "^6.2.10"
  9665. },
  9666. "conflict": {
  9667. "ext-psr": "<1.1|>=2",
  9668. "symfony/config": "<6.1",
  9669. "symfony/finder": "<5.4",
  9670. "symfony/proxy-manager-bridge": "<6.3",
  9671. "symfony/yaml": "<5.4"
  9672. },
  9673. "provide": {
  9674. "psr/container-implementation": "1.1|2.0",
  9675. "symfony/service-implementation": "1.1|2.0|3.0"
  9676. },
  9677. "require-dev": {
  9678. "symfony/config": "^6.1",
  9679. "symfony/expression-language": "^5.4|^6.0",
  9680. "symfony/yaml": "^5.4|^6.0"
  9681. },
  9682. "type": "library",
  9683. "autoload": {
  9684. "psr-4": {
  9685. "Symfony\\Component\\DependencyInjection\\": ""
  9686. },
  9687. "exclude-from-classmap": [
  9688. "/Tests/"
  9689. ]
  9690. },
  9691. "notification-url": "https://packagist.org/downloads/",
  9692. "license": [
  9693. "MIT"
  9694. ],
  9695. "authors": [
  9696. {
  9697. "name": "Fabien Potencier",
  9698. "email": "fabien@symfony.com"
  9699. },
  9700. {
  9701. "name": "Symfony Community",
  9702. "homepage": "https://symfony.com/contributors"
  9703. }
  9704. ],
  9705. "description": "Allows you to standardize and centralize the way objects are constructed in your application",
  9706. "homepage": "https://symfony.com",
  9707. "support": {
  9708. "source": "https://github.com/symfony/dependency-injection/tree/v6.3.8"
  9709. },
  9710. "funding": [
  9711. {
  9712. "url": "https://symfony.com/sponsor",
  9713. "type": "custom"
  9714. },
  9715. {
  9716. "url": "https://github.com/fabpot",
  9717. "type": "github"
  9718. },
  9719. {
  9720. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9721. "type": "tidelift"
  9722. }
  9723. ],
  9724. "time": "2023-10-31T08:07:48+00:00"
  9725. },
  9726. {
  9727. "name": "symfony/deprecation-contracts",
  9728. "version": "v3.3.0",
  9729. "source": {
  9730. "type": "git",
  9731. "url": "https://github.com/symfony/deprecation-contracts.git",
  9732. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  9733. },
  9734. "dist": {
  9735. "type": "zip",
  9736. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  9737. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  9738. "shasum": ""
  9739. },
  9740. "require": {
  9741. "php": ">=8.1"
  9742. },
  9743. "type": "library",
  9744. "extra": {
  9745. "branch-alias": {
  9746. "dev-main": "3.4-dev"
  9747. },
  9748. "thanks": {
  9749. "name": "symfony/contracts",
  9750. "url": "https://github.com/symfony/contracts"
  9751. }
  9752. },
  9753. "autoload": {
  9754. "files": [
  9755. "function.php"
  9756. ]
  9757. },
  9758. "notification-url": "https://packagist.org/downloads/",
  9759. "license": [
  9760. "MIT"
  9761. ],
  9762. "authors": [
  9763. {
  9764. "name": "Nicolas Grekas",
  9765. "email": "p@tchwork.com"
  9766. },
  9767. {
  9768. "name": "Symfony Community",
  9769. "homepage": "https://symfony.com/contributors"
  9770. }
  9771. ],
  9772. "description": "A generic function and convention to trigger deprecation notices",
  9773. "homepage": "https://symfony.com",
  9774. "support": {
  9775. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.3.0"
  9776. },
  9777. "funding": [
  9778. {
  9779. "url": "https://symfony.com/sponsor",
  9780. "type": "custom"
  9781. },
  9782. {
  9783. "url": "https://github.com/fabpot",
  9784. "type": "github"
  9785. },
  9786. {
  9787. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9788. "type": "tidelift"
  9789. }
  9790. ],
  9791. "time": "2023-05-23T14:45:45+00:00"
  9792. },
  9793. {
  9794. "name": "symfony/error-handler",
  9795. "version": "v6.3.5",
  9796. "source": {
  9797. "type": "git",
  9798. "url": "https://github.com/symfony/error-handler.git",
  9799. "reference": "1f69476b64fb47105c06beef757766c376b548c4"
  9800. },
  9801. "dist": {
  9802. "type": "zip",
  9803. "url": "https://api.github.com/repos/symfony/error-handler/zipball/1f69476b64fb47105c06beef757766c376b548c4",
  9804. "reference": "1f69476b64fb47105c06beef757766c376b548c4",
  9805. "shasum": ""
  9806. },
  9807. "require": {
  9808. "php": ">=8.1",
  9809. "psr/log": "^1|^2|^3",
  9810. "symfony/var-dumper": "^5.4|^6.0"
  9811. },
  9812. "conflict": {
  9813. "symfony/deprecation-contracts": "<2.5"
  9814. },
  9815. "require-dev": {
  9816. "symfony/deprecation-contracts": "^2.5|^3",
  9817. "symfony/http-kernel": "^5.4|^6.0",
  9818. "symfony/serializer": "^5.4|^6.0"
  9819. },
  9820. "bin": [
  9821. "Resources/bin/patch-type-declarations"
  9822. ],
  9823. "type": "library",
  9824. "autoload": {
  9825. "psr-4": {
  9826. "Symfony\\Component\\ErrorHandler\\": ""
  9827. },
  9828. "exclude-from-classmap": [
  9829. "/Tests/"
  9830. ]
  9831. },
  9832. "notification-url": "https://packagist.org/downloads/",
  9833. "license": [
  9834. "MIT"
  9835. ],
  9836. "authors": [
  9837. {
  9838. "name": "Fabien Potencier",
  9839. "email": "fabien@symfony.com"
  9840. },
  9841. {
  9842. "name": "Symfony Community",
  9843. "homepage": "https://symfony.com/contributors"
  9844. }
  9845. ],
  9846. "description": "Provides tools to manage errors and ease debugging PHP code",
  9847. "homepage": "https://symfony.com",
  9848. "support": {
  9849. "source": "https://github.com/symfony/error-handler/tree/v6.3.5"
  9850. },
  9851. "funding": [
  9852. {
  9853. "url": "https://symfony.com/sponsor",
  9854. "type": "custom"
  9855. },
  9856. {
  9857. "url": "https://github.com/fabpot",
  9858. "type": "github"
  9859. },
  9860. {
  9861. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9862. "type": "tidelift"
  9863. }
  9864. ],
  9865. "time": "2023-09-12T06:57:20+00:00"
  9866. },
  9867. {
  9868. "name": "symfony/event-dispatcher",
  9869. "version": "v6.3.2",
  9870. "source": {
  9871. "type": "git",
  9872. "url": "https://github.com/symfony/event-dispatcher.git",
  9873. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e"
  9874. },
  9875. "dist": {
  9876. "type": "zip",
  9877. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  9878. "reference": "adb01fe097a4ee930db9258a3cc906b5beb5cf2e",
  9879. "shasum": ""
  9880. },
  9881. "require": {
  9882. "php": ">=8.1",
  9883. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9884. },
  9885. "conflict": {
  9886. "symfony/dependency-injection": "<5.4",
  9887. "symfony/service-contracts": "<2.5"
  9888. },
  9889. "provide": {
  9890. "psr/event-dispatcher-implementation": "1.0",
  9891. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9892. },
  9893. "require-dev": {
  9894. "psr/log": "^1|^2|^3",
  9895. "symfony/config": "^5.4|^6.0",
  9896. "symfony/dependency-injection": "^5.4|^6.0",
  9897. "symfony/error-handler": "^5.4|^6.0",
  9898. "symfony/expression-language": "^5.4|^6.0",
  9899. "symfony/http-foundation": "^5.4|^6.0",
  9900. "symfony/service-contracts": "^2.5|^3",
  9901. "symfony/stopwatch": "^5.4|^6.0"
  9902. },
  9903. "type": "library",
  9904. "autoload": {
  9905. "psr-4": {
  9906. "Symfony\\Component\\EventDispatcher\\": ""
  9907. },
  9908. "exclude-from-classmap": [
  9909. "/Tests/"
  9910. ]
  9911. },
  9912. "notification-url": "https://packagist.org/downloads/",
  9913. "license": [
  9914. "MIT"
  9915. ],
  9916. "authors": [
  9917. {
  9918. "name": "Fabien Potencier",
  9919. "email": "fabien@symfony.com"
  9920. },
  9921. {
  9922. "name": "Symfony Community",
  9923. "homepage": "https://symfony.com/contributors"
  9924. }
  9925. ],
  9926. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  9927. "homepage": "https://symfony.com",
  9928. "support": {
  9929. "source": "https://github.com/symfony/event-dispatcher/tree/v6.3.2"
  9930. },
  9931. "funding": [
  9932. {
  9933. "url": "https://symfony.com/sponsor",
  9934. "type": "custom"
  9935. },
  9936. {
  9937. "url": "https://github.com/fabpot",
  9938. "type": "github"
  9939. },
  9940. {
  9941. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9942. "type": "tidelift"
  9943. }
  9944. ],
  9945. "time": "2023-07-06T06:56:43+00:00"
  9946. },
  9947. {
  9948. "name": "symfony/event-dispatcher-contracts",
  9949. "version": "v3.3.0",
  9950. "source": {
  9951. "type": "git",
  9952. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  9953. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  9954. },
  9955. "dist": {
  9956. "type": "zip",
  9957. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  9958. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  9959. "shasum": ""
  9960. },
  9961. "require": {
  9962. "php": ">=8.1",
  9963. "psr/event-dispatcher": "^1"
  9964. },
  9965. "type": "library",
  9966. "extra": {
  9967. "branch-alias": {
  9968. "dev-main": "3.4-dev"
  9969. },
  9970. "thanks": {
  9971. "name": "symfony/contracts",
  9972. "url": "https://github.com/symfony/contracts"
  9973. }
  9974. },
  9975. "autoload": {
  9976. "psr-4": {
  9977. "Symfony\\Contracts\\EventDispatcher\\": ""
  9978. }
  9979. },
  9980. "notification-url": "https://packagist.org/downloads/",
  9981. "license": [
  9982. "MIT"
  9983. ],
  9984. "authors": [
  9985. {
  9986. "name": "Nicolas Grekas",
  9987. "email": "p@tchwork.com"
  9988. },
  9989. {
  9990. "name": "Symfony Community",
  9991. "homepage": "https://symfony.com/contributors"
  9992. }
  9993. ],
  9994. "description": "Generic abstractions related to dispatching event",
  9995. "homepage": "https://symfony.com",
  9996. "keywords": [
  9997. "abstractions",
  9998. "contracts",
  9999. "decoupling",
  10000. "interfaces",
  10001. "interoperability",
  10002. "standards"
  10003. ],
  10004. "support": {
  10005. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.3.0"
  10006. },
  10007. "funding": [
  10008. {
  10009. "url": "https://symfony.com/sponsor",
  10010. "type": "custom"
  10011. },
  10012. {
  10013. "url": "https://github.com/fabpot",
  10014. "type": "github"
  10015. },
  10016. {
  10017. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10018. "type": "tidelift"
  10019. }
  10020. ],
  10021. "time": "2023-05-23T14:45:45+00:00"
  10022. },
  10023. {
  10024. "name": "symfony/filesystem",
  10025. "version": "v6.3.1",
  10026. "source": {
  10027. "type": "git",
  10028. "url": "https://github.com/symfony/filesystem.git",
  10029. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae"
  10030. },
  10031. "dist": {
  10032. "type": "zip",
  10033. "url": "https://api.github.com/repos/symfony/filesystem/zipball/edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  10034. "reference": "edd36776956f2a6fcf577edb5b05eb0e3bdc52ae",
  10035. "shasum": ""
  10036. },
  10037. "require": {
  10038. "php": ">=8.1",
  10039. "symfony/polyfill-ctype": "~1.8",
  10040. "symfony/polyfill-mbstring": "~1.8"
  10041. },
  10042. "type": "library",
  10043. "autoload": {
  10044. "psr-4": {
  10045. "Symfony\\Component\\Filesystem\\": ""
  10046. },
  10047. "exclude-from-classmap": [
  10048. "/Tests/"
  10049. ]
  10050. },
  10051. "notification-url": "https://packagist.org/downloads/",
  10052. "license": [
  10053. "MIT"
  10054. ],
  10055. "authors": [
  10056. {
  10057. "name": "Fabien Potencier",
  10058. "email": "fabien@symfony.com"
  10059. },
  10060. {
  10061. "name": "Symfony Community",
  10062. "homepage": "https://symfony.com/contributors"
  10063. }
  10064. ],
  10065. "description": "Provides basic utilities for the filesystem",
  10066. "homepage": "https://symfony.com",
  10067. "support": {
  10068. "source": "https://github.com/symfony/filesystem/tree/v6.3.1"
  10069. },
  10070. "funding": [
  10071. {
  10072. "url": "https://symfony.com/sponsor",
  10073. "type": "custom"
  10074. },
  10075. {
  10076. "url": "https://github.com/fabpot",
  10077. "type": "github"
  10078. },
  10079. {
  10080. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10081. "type": "tidelift"
  10082. }
  10083. ],
  10084. "time": "2023-06-01T08:30:39+00:00"
  10085. },
  10086. {
  10087. "name": "symfony/finder",
  10088. "version": "v6.3.5",
  10089. "source": {
  10090. "type": "git",
  10091. "url": "https://github.com/symfony/finder.git",
  10092. "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4"
  10093. },
  10094. "dist": {
  10095. "type": "zip",
  10096. "url": "https://api.github.com/repos/symfony/finder/zipball/a1b31d88c0e998168ca7792f222cbecee47428c4",
  10097. "reference": "a1b31d88c0e998168ca7792f222cbecee47428c4",
  10098. "shasum": ""
  10099. },
  10100. "require": {
  10101. "php": ">=8.1"
  10102. },
  10103. "require-dev": {
  10104. "symfony/filesystem": "^6.0"
  10105. },
  10106. "type": "library",
  10107. "autoload": {
  10108. "psr-4": {
  10109. "Symfony\\Component\\Finder\\": ""
  10110. },
  10111. "exclude-from-classmap": [
  10112. "/Tests/"
  10113. ]
  10114. },
  10115. "notification-url": "https://packagist.org/downloads/",
  10116. "license": [
  10117. "MIT"
  10118. ],
  10119. "authors": [
  10120. {
  10121. "name": "Fabien Potencier",
  10122. "email": "fabien@symfony.com"
  10123. },
  10124. {
  10125. "name": "Symfony Community",
  10126. "homepage": "https://symfony.com/contributors"
  10127. }
  10128. ],
  10129. "description": "Finds files and directories via an intuitive fluent interface",
  10130. "homepage": "https://symfony.com",
  10131. "support": {
  10132. "source": "https://github.com/symfony/finder/tree/v6.3.5"
  10133. },
  10134. "funding": [
  10135. {
  10136. "url": "https://symfony.com/sponsor",
  10137. "type": "custom"
  10138. },
  10139. {
  10140. "url": "https://github.com/fabpot",
  10141. "type": "github"
  10142. },
  10143. {
  10144. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10145. "type": "tidelift"
  10146. }
  10147. ],
  10148. "time": "2023-09-26T12:56:25+00:00"
  10149. },
  10150. {
  10151. "name": "symfony/http-foundation",
  10152. "version": "v6.3.8",
  10153. "source": {
  10154. "type": "git",
  10155. "url": "https://github.com/symfony/http-foundation.git",
  10156. "reference": "ce332676de1912c4389222987193c3ef38033df6"
  10157. },
  10158. "dist": {
  10159. "type": "zip",
  10160. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ce332676de1912c4389222987193c3ef38033df6",
  10161. "reference": "ce332676de1912c4389222987193c3ef38033df6",
  10162. "shasum": ""
  10163. },
  10164. "require": {
  10165. "php": ">=8.1",
  10166. "symfony/deprecation-contracts": "^2.5|^3",
  10167. "symfony/polyfill-mbstring": "~1.1",
  10168. "symfony/polyfill-php83": "^1.27"
  10169. },
  10170. "conflict": {
  10171. "symfony/cache": "<6.3"
  10172. },
  10173. "require-dev": {
  10174. "doctrine/dbal": "^2.13.1|^3|^4",
  10175. "predis/predis": "^1.1|^2.0",
  10176. "symfony/cache": "^6.3",
  10177. "symfony/dependency-injection": "^5.4|^6.0",
  10178. "symfony/expression-language": "^5.4|^6.0",
  10179. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4",
  10180. "symfony/mime": "^5.4|^6.0",
  10181. "symfony/rate-limiter": "^5.2|^6.0"
  10182. },
  10183. "type": "library",
  10184. "autoload": {
  10185. "psr-4": {
  10186. "Symfony\\Component\\HttpFoundation\\": ""
  10187. },
  10188. "exclude-from-classmap": [
  10189. "/Tests/"
  10190. ]
  10191. },
  10192. "notification-url": "https://packagist.org/downloads/",
  10193. "license": [
  10194. "MIT"
  10195. ],
  10196. "authors": [
  10197. {
  10198. "name": "Fabien Potencier",
  10199. "email": "fabien@symfony.com"
  10200. },
  10201. {
  10202. "name": "Symfony Community",
  10203. "homepage": "https://symfony.com/contributors"
  10204. }
  10205. ],
  10206. "description": "Defines an object-oriented layer for the HTTP specification",
  10207. "homepage": "https://symfony.com",
  10208. "support": {
  10209. "source": "https://github.com/symfony/http-foundation/tree/v6.3.8"
  10210. },
  10211. "funding": [
  10212. {
  10213. "url": "https://symfony.com/sponsor",
  10214. "type": "custom"
  10215. },
  10216. {
  10217. "url": "https://github.com/fabpot",
  10218. "type": "github"
  10219. },
  10220. {
  10221. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10222. "type": "tidelift"
  10223. }
  10224. ],
  10225. "time": "2023-11-07T10:17:15+00:00"
  10226. },
  10227. {
  10228. "name": "symfony/http-kernel",
  10229. "version": "v6.3.8",
  10230. "source": {
  10231. "type": "git",
  10232. "url": "https://github.com/symfony/http-kernel.git",
  10233. "reference": "929202375ccf44a309c34aeca8305408442ebcc1"
  10234. },
  10235. "dist": {
  10236. "type": "zip",
  10237. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/929202375ccf44a309c34aeca8305408442ebcc1",
  10238. "reference": "929202375ccf44a309c34aeca8305408442ebcc1",
  10239. "shasum": ""
  10240. },
  10241. "require": {
  10242. "php": ">=8.1",
  10243. "psr/log": "^1|^2|^3",
  10244. "symfony/deprecation-contracts": "^2.5|^3",
  10245. "symfony/error-handler": "^6.3",
  10246. "symfony/event-dispatcher": "^5.4|^6.0",
  10247. "symfony/http-foundation": "^6.3.4",
  10248. "symfony/polyfill-ctype": "^1.8"
  10249. },
  10250. "conflict": {
  10251. "symfony/browser-kit": "<5.4",
  10252. "symfony/cache": "<5.4",
  10253. "symfony/config": "<6.1",
  10254. "symfony/console": "<5.4",
  10255. "symfony/dependency-injection": "<6.3.4",
  10256. "symfony/doctrine-bridge": "<5.4",
  10257. "symfony/form": "<5.4",
  10258. "symfony/http-client": "<5.4",
  10259. "symfony/http-client-contracts": "<2.5",
  10260. "symfony/mailer": "<5.4",
  10261. "symfony/messenger": "<5.4",
  10262. "symfony/translation": "<5.4",
  10263. "symfony/translation-contracts": "<2.5",
  10264. "symfony/twig-bridge": "<5.4",
  10265. "symfony/validator": "<5.4",
  10266. "symfony/var-dumper": "<6.3",
  10267. "twig/twig": "<2.13"
  10268. },
  10269. "provide": {
  10270. "psr/log-implementation": "1.0|2.0|3.0"
  10271. },
  10272. "require-dev": {
  10273. "psr/cache": "^1.0|^2.0|^3.0",
  10274. "symfony/browser-kit": "^5.4|^6.0",
  10275. "symfony/clock": "^6.2",
  10276. "symfony/config": "^6.1",
  10277. "symfony/console": "^5.4|^6.0",
  10278. "symfony/css-selector": "^5.4|^6.0",
  10279. "symfony/dependency-injection": "^6.3.4",
  10280. "symfony/dom-crawler": "^5.4|^6.0",
  10281. "symfony/expression-language": "^5.4|^6.0",
  10282. "symfony/finder": "^5.4|^6.0",
  10283. "symfony/http-client-contracts": "^2.5|^3",
  10284. "symfony/process": "^5.4|^6.0",
  10285. "symfony/property-access": "^5.4.5|^6.0.5",
  10286. "symfony/routing": "^5.4|^6.0",
  10287. "symfony/serializer": "^6.3",
  10288. "symfony/stopwatch": "^5.4|^6.0",
  10289. "symfony/translation": "^5.4|^6.0",
  10290. "symfony/translation-contracts": "^2.5|^3",
  10291. "symfony/uid": "^5.4|^6.0",
  10292. "symfony/validator": "^6.3",
  10293. "symfony/var-exporter": "^6.2",
  10294. "twig/twig": "^2.13|^3.0.4"
  10295. },
  10296. "type": "library",
  10297. "autoload": {
  10298. "psr-4": {
  10299. "Symfony\\Component\\HttpKernel\\": ""
  10300. },
  10301. "exclude-from-classmap": [
  10302. "/Tests/"
  10303. ]
  10304. },
  10305. "notification-url": "https://packagist.org/downloads/",
  10306. "license": [
  10307. "MIT"
  10308. ],
  10309. "authors": [
  10310. {
  10311. "name": "Fabien Potencier",
  10312. "email": "fabien@symfony.com"
  10313. },
  10314. {
  10315. "name": "Symfony Community",
  10316. "homepage": "https://symfony.com/contributors"
  10317. }
  10318. ],
  10319. "description": "Provides a structured process for converting a Request into a Response",
  10320. "homepage": "https://symfony.com",
  10321. "support": {
  10322. "source": "https://github.com/symfony/http-kernel/tree/v6.3.8"
  10323. },
  10324. "funding": [
  10325. {
  10326. "url": "https://symfony.com/sponsor",
  10327. "type": "custom"
  10328. },
  10329. {
  10330. "url": "https://github.com/fabpot",
  10331. "type": "github"
  10332. },
  10333. {
  10334. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10335. "type": "tidelift"
  10336. }
  10337. ],
  10338. "time": "2023-11-10T13:47:32+00:00"
  10339. },
  10340. {
  10341. "name": "symfony/mime",
  10342. "version": "v6.3.5",
  10343. "source": {
  10344. "type": "git",
  10345. "url": "https://github.com/symfony/mime.git",
  10346. "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e"
  10347. },
  10348. "dist": {
  10349. "type": "zip",
  10350. "url": "https://api.github.com/repos/symfony/mime/zipball/d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
  10351. "reference": "d5179eedf1cb2946dbd760475ebf05c251ef6a6e",
  10352. "shasum": ""
  10353. },
  10354. "require": {
  10355. "php": ">=8.1",
  10356. "symfony/deprecation-contracts": "^2.5|^3",
  10357. "symfony/polyfill-intl-idn": "^1.10",
  10358. "symfony/polyfill-mbstring": "^1.0"
  10359. },
  10360. "conflict": {
  10361. "egulias/email-validator": "~3.0.0",
  10362. "phpdocumentor/reflection-docblock": "<3.2.2",
  10363. "phpdocumentor/type-resolver": "<1.4.0",
  10364. "symfony/mailer": "<5.4",
  10365. "symfony/serializer": "<6.2.13|>=6.3,<6.3.2"
  10366. },
  10367. "require-dev": {
  10368. "egulias/email-validator": "^2.1.10|^3.1|^4",
  10369. "league/html-to-markdown": "^5.0",
  10370. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  10371. "symfony/dependency-injection": "^5.4|^6.0",
  10372. "symfony/property-access": "^5.4|^6.0",
  10373. "symfony/property-info": "^5.4|^6.0",
  10374. "symfony/serializer": "~6.2.13|^6.3.2"
  10375. },
  10376. "type": "library",
  10377. "autoload": {
  10378. "psr-4": {
  10379. "Symfony\\Component\\Mime\\": ""
  10380. },
  10381. "exclude-from-classmap": [
  10382. "/Tests/"
  10383. ]
  10384. },
  10385. "notification-url": "https://packagist.org/downloads/",
  10386. "license": [
  10387. "MIT"
  10388. ],
  10389. "authors": [
  10390. {
  10391. "name": "Fabien Potencier",
  10392. "email": "fabien@symfony.com"
  10393. },
  10394. {
  10395. "name": "Symfony Community",
  10396. "homepage": "https://symfony.com/contributors"
  10397. }
  10398. ],
  10399. "description": "Allows manipulating MIME messages",
  10400. "homepage": "https://symfony.com",
  10401. "keywords": [
  10402. "mime",
  10403. "mime-type"
  10404. ],
  10405. "support": {
  10406. "source": "https://github.com/symfony/mime/tree/v6.3.5"
  10407. },
  10408. "funding": [
  10409. {
  10410. "url": "https://symfony.com/sponsor",
  10411. "type": "custom"
  10412. },
  10413. {
  10414. "url": "https://github.com/fabpot",
  10415. "type": "github"
  10416. },
  10417. {
  10418. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10419. "type": "tidelift"
  10420. }
  10421. ],
  10422. "time": "2023-09-29T06:59:36+00:00"
  10423. },
  10424. {
  10425. "name": "symfony/polyfill-ctype",
  10426. "version": "v1.27.0",
  10427. "source": {
  10428. "type": "git",
  10429. "url": "https://github.com/symfony/polyfill-ctype.git",
  10430. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  10431. },
  10432. "dist": {
  10433. "type": "zip",
  10434. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  10435. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  10436. "shasum": ""
  10437. },
  10438. "require": {
  10439. "php": ">=7.1"
  10440. },
  10441. "provide": {
  10442. "ext-ctype": "*"
  10443. },
  10444. "suggest": {
  10445. "ext-ctype": "For best performance"
  10446. },
  10447. "type": "library",
  10448. "extra": {
  10449. "branch-alias": {
  10450. "dev-main": "1.27-dev"
  10451. },
  10452. "thanks": {
  10453. "name": "symfony/polyfill",
  10454. "url": "https://github.com/symfony/polyfill"
  10455. }
  10456. },
  10457. "autoload": {
  10458. "files": [
  10459. "bootstrap.php"
  10460. ],
  10461. "psr-4": {
  10462. "Symfony\\Polyfill\\Ctype\\": ""
  10463. }
  10464. },
  10465. "notification-url": "https://packagist.org/downloads/",
  10466. "license": [
  10467. "MIT"
  10468. ],
  10469. "authors": [
  10470. {
  10471. "name": "Gert de Pagter",
  10472. "email": "BackEndTea@gmail.com"
  10473. },
  10474. {
  10475. "name": "Symfony Community",
  10476. "homepage": "https://symfony.com/contributors"
  10477. }
  10478. ],
  10479. "description": "Symfony polyfill for ctype functions",
  10480. "homepage": "https://symfony.com",
  10481. "keywords": [
  10482. "compatibility",
  10483. "ctype",
  10484. "polyfill",
  10485. "portable"
  10486. ],
  10487. "support": {
  10488. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  10489. },
  10490. "funding": [
  10491. {
  10492. "url": "https://symfony.com/sponsor",
  10493. "type": "custom"
  10494. },
  10495. {
  10496. "url": "https://github.com/fabpot",
  10497. "type": "github"
  10498. },
  10499. {
  10500. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10501. "type": "tidelift"
  10502. }
  10503. ],
  10504. "time": "2022-11-03T14:55:06+00:00"
  10505. },
  10506. {
  10507. "name": "symfony/polyfill-iconv",
  10508. "version": "v1.27.0",
  10509. "source": {
  10510. "type": "git",
  10511. "url": "https://github.com/symfony/polyfill-iconv.git",
  10512. "reference": "927013f3aac555983a5059aada98e1907d842695"
  10513. },
  10514. "dist": {
  10515. "type": "zip",
  10516. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/927013f3aac555983a5059aada98e1907d842695",
  10517. "reference": "927013f3aac555983a5059aada98e1907d842695",
  10518. "shasum": ""
  10519. },
  10520. "require": {
  10521. "php": ">=7.1"
  10522. },
  10523. "provide": {
  10524. "ext-iconv": "*"
  10525. },
  10526. "suggest": {
  10527. "ext-iconv": "For best performance"
  10528. },
  10529. "type": "library",
  10530. "extra": {
  10531. "branch-alias": {
  10532. "dev-main": "1.27-dev"
  10533. },
  10534. "thanks": {
  10535. "name": "symfony/polyfill",
  10536. "url": "https://github.com/symfony/polyfill"
  10537. }
  10538. },
  10539. "autoload": {
  10540. "files": [
  10541. "bootstrap.php"
  10542. ],
  10543. "psr-4": {
  10544. "Symfony\\Polyfill\\Iconv\\": ""
  10545. }
  10546. },
  10547. "notification-url": "https://packagist.org/downloads/",
  10548. "license": [
  10549. "MIT"
  10550. ],
  10551. "authors": [
  10552. {
  10553. "name": "Nicolas Grekas",
  10554. "email": "p@tchwork.com"
  10555. },
  10556. {
  10557. "name": "Symfony Community",
  10558. "homepage": "https://symfony.com/contributors"
  10559. }
  10560. ],
  10561. "description": "Symfony polyfill for the Iconv extension",
  10562. "homepage": "https://symfony.com",
  10563. "keywords": [
  10564. "compatibility",
  10565. "iconv",
  10566. "polyfill",
  10567. "portable",
  10568. "shim"
  10569. ],
  10570. "support": {
  10571. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.27.0"
  10572. },
  10573. "funding": [
  10574. {
  10575. "url": "https://symfony.com/sponsor",
  10576. "type": "custom"
  10577. },
  10578. {
  10579. "url": "https://github.com/fabpot",
  10580. "type": "github"
  10581. },
  10582. {
  10583. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10584. "type": "tidelift"
  10585. }
  10586. ],
  10587. "time": "2022-11-03T14:55:06+00:00"
  10588. },
  10589. {
  10590. "name": "symfony/polyfill-intl-grapheme",
  10591. "version": "v1.27.0",
  10592. "source": {
  10593. "type": "git",
  10594. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  10595. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  10596. },
  10597. "dist": {
  10598. "type": "zip",
  10599. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  10600. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  10601. "shasum": ""
  10602. },
  10603. "require": {
  10604. "php": ">=7.1"
  10605. },
  10606. "suggest": {
  10607. "ext-intl": "For best performance"
  10608. },
  10609. "type": "library",
  10610. "extra": {
  10611. "branch-alias": {
  10612. "dev-main": "1.27-dev"
  10613. },
  10614. "thanks": {
  10615. "name": "symfony/polyfill",
  10616. "url": "https://github.com/symfony/polyfill"
  10617. }
  10618. },
  10619. "autoload": {
  10620. "files": [
  10621. "bootstrap.php"
  10622. ],
  10623. "psr-4": {
  10624. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  10625. }
  10626. },
  10627. "notification-url": "https://packagist.org/downloads/",
  10628. "license": [
  10629. "MIT"
  10630. ],
  10631. "authors": [
  10632. {
  10633. "name": "Nicolas Grekas",
  10634. "email": "p@tchwork.com"
  10635. },
  10636. {
  10637. "name": "Symfony Community",
  10638. "homepage": "https://symfony.com/contributors"
  10639. }
  10640. ],
  10641. "description": "Symfony polyfill for intl's grapheme_* functions",
  10642. "homepage": "https://symfony.com",
  10643. "keywords": [
  10644. "compatibility",
  10645. "grapheme",
  10646. "intl",
  10647. "polyfill",
  10648. "portable",
  10649. "shim"
  10650. ],
  10651. "support": {
  10652. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  10653. },
  10654. "funding": [
  10655. {
  10656. "url": "https://symfony.com/sponsor",
  10657. "type": "custom"
  10658. },
  10659. {
  10660. "url": "https://github.com/fabpot",
  10661. "type": "github"
  10662. },
  10663. {
  10664. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10665. "type": "tidelift"
  10666. }
  10667. ],
  10668. "time": "2022-11-03T14:55:06+00:00"
  10669. },
  10670. {
  10671. "name": "symfony/polyfill-intl-idn",
  10672. "version": "v1.27.0",
  10673. "source": {
  10674. "type": "git",
  10675. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  10676. "reference": "639084e360537a19f9ee352433b84ce831f3d2da"
  10677. },
  10678. "dist": {
  10679. "type": "zip",
  10680. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/639084e360537a19f9ee352433b84ce831f3d2da",
  10681. "reference": "639084e360537a19f9ee352433b84ce831f3d2da",
  10682. "shasum": ""
  10683. },
  10684. "require": {
  10685. "php": ">=7.1",
  10686. "symfony/polyfill-intl-normalizer": "^1.10",
  10687. "symfony/polyfill-php72": "^1.10"
  10688. },
  10689. "suggest": {
  10690. "ext-intl": "For best performance"
  10691. },
  10692. "type": "library",
  10693. "extra": {
  10694. "branch-alias": {
  10695. "dev-main": "1.27-dev"
  10696. },
  10697. "thanks": {
  10698. "name": "symfony/polyfill",
  10699. "url": "https://github.com/symfony/polyfill"
  10700. }
  10701. },
  10702. "autoload": {
  10703. "files": [
  10704. "bootstrap.php"
  10705. ],
  10706. "psr-4": {
  10707. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  10708. }
  10709. },
  10710. "notification-url": "https://packagist.org/downloads/",
  10711. "license": [
  10712. "MIT"
  10713. ],
  10714. "authors": [
  10715. {
  10716. "name": "Laurent Bassin",
  10717. "email": "laurent@bassin.info"
  10718. },
  10719. {
  10720. "name": "Trevor Rowbotham",
  10721. "email": "trevor.rowbotham@pm.me"
  10722. },
  10723. {
  10724. "name": "Symfony Community",
  10725. "homepage": "https://symfony.com/contributors"
  10726. }
  10727. ],
  10728. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  10729. "homepage": "https://symfony.com",
  10730. "keywords": [
  10731. "compatibility",
  10732. "idn",
  10733. "intl",
  10734. "polyfill",
  10735. "portable",
  10736. "shim"
  10737. ],
  10738. "support": {
  10739. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.27.0"
  10740. },
  10741. "funding": [
  10742. {
  10743. "url": "https://symfony.com/sponsor",
  10744. "type": "custom"
  10745. },
  10746. {
  10747. "url": "https://github.com/fabpot",
  10748. "type": "github"
  10749. },
  10750. {
  10751. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10752. "type": "tidelift"
  10753. }
  10754. ],
  10755. "time": "2022-11-03T14:55:06+00:00"
  10756. },
  10757. {
  10758. "name": "symfony/polyfill-intl-normalizer",
  10759. "version": "v1.27.0",
  10760. "source": {
  10761. "type": "git",
  10762. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  10763. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  10764. },
  10765. "dist": {
  10766. "type": "zip",
  10767. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  10768. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  10769. "shasum": ""
  10770. },
  10771. "require": {
  10772. "php": ">=7.1"
  10773. },
  10774. "suggest": {
  10775. "ext-intl": "For best performance"
  10776. },
  10777. "type": "library",
  10778. "extra": {
  10779. "branch-alias": {
  10780. "dev-main": "1.27-dev"
  10781. },
  10782. "thanks": {
  10783. "name": "symfony/polyfill",
  10784. "url": "https://github.com/symfony/polyfill"
  10785. }
  10786. },
  10787. "autoload": {
  10788. "files": [
  10789. "bootstrap.php"
  10790. ],
  10791. "psr-4": {
  10792. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  10793. },
  10794. "classmap": [
  10795. "Resources/stubs"
  10796. ]
  10797. },
  10798. "notification-url": "https://packagist.org/downloads/",
  10799. "license": [
  10800. "MIT"
  10801. ],
  10802. "authors": [
  10803. {
  10804. "name": "Nicolas Grekas",
  10805. "email": "p@tchwork.com"
  10806. },
  10807. {
  10808. "name": "Symfony Community",
  10809. "homepage": "https://symfony.com/contributors"
  10810. }
  10811. ],
  10812. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  10813. "homepage": "https://symfony.com",
  10814. "keywords": [
  10815. "compatibility",
  10816. "intl",
  10817. "normalizer",
  10818. "polyfill",
  10819. "portable",
  10820. "shim"
  10821. ],
  10822. "support": {
  10823. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  10824. },
  10825. "funding": [
  10826. {
  10827. "url": "https://symfony.com/sponsor",
  10828. "type": "custom"
  10829. },
  10830. {
  10831. "url": "https://github.com/fabpot",
  10832. "type": "github"
  10833. },
  10834. {
  10835. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10836. "type": "tidelift"
  10837. }
  10838. ],
  10839. "time": "2022-11-03T14:55:06+00:00"
  10840. },
  10841. {
  10842. "name": "symfony/polyfill-mbstring",
  10843. "version": "v1.27.0",
  10844. "source": {
  10845. "type": "git",
  10846. "url": "https://github.com/symfony/polyfill-mbstring.git",
  10847. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  10848. },
  10849. "dist": {
  10850. "type": "zip",
  10851. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  10852. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  10853. "shasum": ""
  10854. },
  10855. "require": {
  10856. "php": ">=7.1"
  10857. },
  10858. "provide": {
  10859. "ext-mbstring": "*"
  10860. },
  10861. "suggest": {
  10862. "ext-mbstring": "For best performance"
  10863. },
  10864. "type": "library",
  10865. "extra": {
  10866. "branch-alias": {
  10867. "dev-main": "1.27-dev"
  10868. },
  10869. "thanks": {
  10870. "name": "symfony/polyfill",
  10871. "url": "https://github.com/symfony/polyfill"
  10872. }
  10873. },
  10874. "autoload": {
  10875. "files": [
  10876. "bootstrap.php"
  10877. ],
  10878. "psr-4": {
  10879. "Symfony\\Polyfill\\Mbstring\\": ""
  10880. }
  10881. },
  10882. "notification-url": "https://packagist.org/downloads/",
  10883. "license": [
  10884. "MIT"
  10885. ],
  10886. "authors": [
  10887. {
  10888. "name": "Nicolas Grekas",
  10889. "email": "p@tchwork.com"
  10890. },
  10891. {
  10892. "name": "Symfony Community",
  10893. "homepage": "https://symfony.com/contributors"
  10894. }
  10895. ],
  10896. "description": "Symfony polyfill for the Mbstring extension",
  10897. "homepage": "https://symfony.com",
  10898. "keywords": [
  10899. "compatibility",
  10900. "mbstring",
  10901. "polyfill",
  10902. "portable",
  10903. "shim"
  10904. ],
  10905. "support": {
  10906. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  10907. },
  10908. "funding": [
  10909. {
  10910. "url": "https://symfony.com/sponsor",
  10911. "type": "custom"
  10912. },
  10913. {
  10914. "url": "https://github.com/fabpot",
  10915. "type": "github"
  10916. },
  10917. {
  10918. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10919. "type": "tidelift"
  10920. }
  10921. ],
  10922. "time": "2022-11-03T14:55:06+00:00"
  10923. },
  10924. {
  10925. "name": "symfony/polyfill-php72",
  10926. "version": "v1.28.0",
  10927. "source": {
  10928. "type": "git",
  10929. "url": "https://github.com/symfony/polyfill-php72.git",
  10930. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179"
  10931. },
  10932. "dist": {
  10933. "type": "zip",
  10934. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/70f4aebd92afca2f865444d30a4d2151c13c3179",
  10935. "reference": "70f4aebd92afca2f865444d30a4d2151c13c3179",
  10936. "shasum": ""
  10937. },
  10938. "require": {
  10939. "php": ">=7.1"
  10940. },
  10941. "type": "library",
  10942. "extra": {
  10943. "branch-alias": {
  10944. "dev-main": "1.28-dev"
  10945. },
  10946. "thanks": {
  10947. "name": "symfony/polyfill",
  10948. "url": "https://github.com/symfony/polyfill"
  10949. }
  10950. },
  10951. "autoload": {
  10952. "files": [
  10953. "bootstrap.php"
  10954. ],
  10955. "psr-4": {
  10956. "Symfony\\Polyfill\\Php72\\": ""
  10957. }
  10958. },
  10959. "notification-url": "https://packagist.org/downloads/",
  10960. "license": [
  10961. "MIT"
  10962. ],
  10963. "authors": [
  10964. {
  10965. "name": "Nicolas Grekas",
  10966. "email": "p@tchwork.com"
  10967. },
  10968. {
  10969. "name": "Symfony Community",
  10970. "homepage": "https://symfony.com/contributors"
  10971. }
  10972. ],
  10973. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  10974. "homepage": "https://symfony.com",
  10975. "keywords": [
  10976. "compatibility",
  10977. "polyfill",
  10978. "portable",
  10979. "shim"
  10980. ],
  10981. "support": {
  10982. "source": "https://github.com/symfony/polyfill-php72/tree/v1.28.0"
  10983. },
  10984. "funding": [
  10985. {
  10986. "url": "https://symfony.com/sponsor",
  10987. "type": "custom"
  10988. },
  10989. {
  10990. "url": "https://github.com/fabpot",
  10991. "type": "github"
  10992. },
  10993. {
  10994. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10995. "type": "tidelift"
  10996. }
  10997. ],
  10998. "time": "2023-01-26T09:26:14+00:00"
  10999. },
  11000. {
  11001. "name": "symfony/polyfill-php80",
  11002. "version": "v1.28.0",
  11003. "source": {
  11004. "type": "git",
  11005. "url": "https://github.com/symfony/polyfill-php80.git",
  11006. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5"
  11007. },
  11008. "dist": {
  11009. "type": "zip",
  11010. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  11011. "reference": "6caa57379c4aec19c0a12a38b59b26487dcfe4b5",
  11012. "shasum": ""
  11013. },
  11014. "require": {
  11015. "php": ">=7.1"
  11016. },
  11017. "type": "library",
  11018. "extra": {
  11019. "branch-alias": {
  11020. "dev-main": "1.28-dev"
  11021. },
  11022. "thanks": {
  11023. "name": "symfony/polyfill",
  11024. "url": "https://github.com/symfony/polyfill"
  11025. }
  11026. },
  11027. "autoload": {
  11028. "files": [
  11029. "bootstrap.php"
  11030. ],
  11031. "psr-4": {
  11032. "Symfony\\Polyfill\\Php80\\": ""
  11033. },
  11034. "classmap": [
  11035. "Resources/stubs"
  11036. ]
  11037. },
  11038. "notification-url": "https://packagist.org/downloads/",
  11039. "license": [
  11040. "MIT"
  11041. ],
  11042. "authors": [
  11043. {
  11044. "name": "Ion Bazan",
  11045. "email": "ion.bazan@gmail.com"
  11046. },
  11047. {
  11048. "name": "Nicolas Grekas",
  11049. "email": "p@tchwork.com"
  11050. },
  11051. {
  11052. "name": "Symfony Community",
  11053. "homepage": "https://symfony.com/contributors"
  11054. }
  11055. ],
  11056. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  11057. "homepage": "https://symfony.com",
  11058. "keywords": [
  11059. "compatibility",
  11060. "polyfill",
  11061. "portable",
  11062. "shim"
  11063. ],
  11064. "support": {
  11065. "source": "https://github.com/symfony/polyfill-php80/tree/v1.28.0"
  11066. },
  11067. "funding": [
  11068. {
  11069. "url": "https://symfony.com/sponsor",
  11070. "type": "custom"
  11071. },
  11072. {
  11073. "url": "https://github.com/fabpot",
  11074. "type": "github"
  11075. },
  11076. {
  11077. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11078. "type": "tidelift"
  11079. }
  11080. ],
  11081. "time": "2023-01-26T09:26:14+00:00"
  11082. },
  11083. {
  11084. "name": "symfony/polyfill-php81",
  11085. "version": "v1.28.0",
  11086. "source": {
  11087. "type": "git",
  11088. "url": "https://github.com/symfony/polyfill-php81.git",
  11089. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b"
  11090. },
  11091. "dist": {
  11092. "type": "zip",
  11093. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/7581cd600fa9fd681b797d00b02f068e2f13263b",
  11094. "reference": "7581cd600fa9fd681b797d00b02f068e2f13263b",
  11095. "shasum": ""
  11096. },
  11097. "require": {
  11098. "php": ">=7.1"
  11099. },
  11100. "type": "library",
  11101. "extra": {
  11102. "branch-alias": {
  11103. "dev-main": "1.28-dev"
  11104. },
  11105. "thanks": {
  11106. "name": "symfony/polyfill",
  11107. "url": "https://github.com/symfony/polyfill"
  11108. }
  11109. },
  11110. "autoload": {
  11111. "files": [
  11112. "bootstrap.php"
  11113. ],
  11114. "psr-4": {
  11115. "Symfony\\Polyfill\\Php81\\": ""
  11116. },
  11117. "classmap": [
  11118. "Resources/stubs"
  11119. ]
  11120. },
  11121. "notification-url": "https://packagist.org/downloads/",
  11122. "license": [
  11123. "MIT"
  11124. ],
  11125. "authors": [
  11126. {
  11127. "name": "Nicolas Grekas",
  11128. "email": "p@tchwork.com"
  11129. },
  11130. {
  11131. "name": "Symfony Community",
  11132. "homepage": "https://symfony.com/contributors"
  11133. }
  11134. ],
  11135. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  11136. "homepage": "https://symfony.com",
  11137. "keywords": [
  11138. "compatibility",
  11139. "polyfill",
  11140. "portable",
  11141. "shim"
  11142. ],
  11143. "support": {
  11144. "source": "https://github.com/symfony/polyfill-php81/tree/v1.28.0"
  11145. },
  11146. "funding": [
  11147. {
  11148. "url": "https://symfony.com/sponsor",
  11149. "type": "custom"
  11150. },
  11151. {
  11152. "url": "https://github.com/fabpot",
  11153. "type": "github"
  11154. },
  11155. {
  11156. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11157. "type": "tidelift"
  11158. }
  11159. ],
  11160. "time": "2023-01-26T09:26:14+00:00"
  11161. },
  11162. {
  11163. "name": "symfony/polyfill-php83",
  11164. "version": "v1.27.0",
  11165. "source": {
  11166. "type": "git",
  11167. "url": "https://github.com/symfony/polyfill-php83.git",
  11168. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57"
  11169. },
  11170. "dist": {
  11171. "type": "zip",
  11172. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/508c652ba3ccf69f8c97f251534f229791b52a57",
  11173. "reference": "508c652ba3ccf69f8c97f251534f229791b52a57",
  11174. "shasum": ""
  11175. },
  11176. "require": {
  11177. "php": ">=7.1",
  11178. "symfony/polyfill-php80": "^1.14"
  11179. },
  11180. "type": "library",
  11181. "extra": {
  11182. "branch-alias": {
  11183. "dev-main": "1.27-dev"
  11184. },
  11185. "thanks": {
  11186. "name": "symfony/polyfill",
  11187. "url": "https://github.com/symfony/polyfill"
  11188. }
  11189. },
  11190. "autoload": {
  11191. "files": [
  11192. "bootstrap.php"
  11193. ],
  11194. "psr-4": {
  11195. "Symfony\\Polyfill\\Php83\\": ""
  11196. }
  11197. },
  11198. "notification-url": "https://packagist.org/downloads/",
  11199. "license": [
  11200. "MIT"
  11201. ],
  11202. "authors": [
  11203. {
  11204. "name": "Nicolas Grekas",
  11205. "email": "p@tchwork.com"
  11206. },
  11207. {
  11208. "name": "Symfony Community",
  11209. "homepage": "https://symfony.com/contributors"
  11210. }
  11211. ],
  11212. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  11213. "homepage": "https://symfony.com",
  11214. "keywords": [
  11215. "compatibility",
  11216. "polyfill",
  11217. "portable",
  11218. "shim"
  11219. ],
  11220. "support": {
  11221. "source": "https://github.com/symfony/polyfill-php83/tree/v1.27.0"
  11222. },
  11223. "funding": [
  11224. {
  11225. "url": "https://symfony.com/sponsor",
  11226. "type": "custom"
  11227. },
  11228. {
  11229. "url": "https://github.com/fabpot",
  11230. "type": "github"
  11231. },
  11232. {
  11233. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11234. "type": "tidelift"
  11235. }
  11236. ],
  11237. "time": "2022-11-03T14:55:06+00:00"
  11238. },
  11239. {
  11240. "name": "symfony/process",
  11241. "version": "v6.3.4",
  11242. "source": {
  11243. "type": "git",
  11244. "url": "https://github.com/symfony/process.git",
  11245. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54"
  11246. },
  11247. "dist": {
  11248. "type": "zip",
  11249. "url": "https://api.github.com/repos/symfony/process/zipball/0b5c29118f2e980d455d2e34a5659f4579847c54",
  11250. "reference": "0b5c29118f2e980d455d2e34a5659f4579847c54",
  11251. "shasum": ""
  11252. },
  11253. "require": {
  11254. "php": ">=8.1"
  11255. },
  11256. "type": "library",
  11257. "autoload": {
  11258. "psr-4": {
  11259. "Symfony\\Component\\Process\\": ""
  11260. },
  11261. "exclude-from-classmap": [
  11262. "/Tests/"
  11263. ]
  11264. },
  11265. "notification-url": "https://packagist.org/downloads/",
  11266. "license": [
  11267. "MIT"
  11268. ],
  11269. "authors": [
  11270. {
  11271. "name": "Fabien Potencier",
  11272. "email": "fabien@symfony.com"
  11273. },
  11274. {
  11275. "name": "Symfony Community",
  11276. "homepage": "https://symfony.com/contributors"
  11277. }
  11278. ],
  11279. "description": "Executes commands in sub-processes",
  11280. "homepage": "https://symfony.com",
  11281. "support": {
  11282. "source": "https://github.com/symfony/process/tree/v6.3.4"
  11283. },
  11284. "funding": [
  11285. {
  11286. "url": "https://symfony.com/sponsor",
  11287. "type": "custom"
  11288. },
  11289. {
  11290. "url": "https://github.com/fabpot",
  11291. "type": "github"
  11292. },
  11293. {
  11294. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11295. "type": "tidelift"
  11296. }
  11297. ],
  11298. "time": "2023-08-07T10:39:22+00:00"
  11299. },
  11300. {
  11301. "name": "symfony/psr-http-message-bridge",
  11302. "version": "v2.2.0",
  11303. "source": {
  11304. "type": "git",
  11305. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  11306. "reference": "28a732c05bbad801304ad5a5c674cf2970508993"
  11307. },
  11308. "dist": {
  11309. "type": "zip",
  11310. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/28a732c05bbad801304ad5a5c674cf2970508993",
  11311. "reference": "28a732c05bbad801304ad5a5c674cf2970508993",
  11312. "shasum": ""
  11313. },
  11314. "require": {
  11315. "php": ">=7.2.5",
  11316. "psr/http-message": "^1.0 || ^2.0",
  11317. "symfony/http-foundation": "^5.4 || ^6.0"
  11318. },
  11319. "require-dev": {
  11320. "nyholm/psr7": "^1.1",
  11321. "psr/log": "^1.1 || ^2 || ^3",
  11322. "symfony/browser-kit": "^5.4 || ^6.0",
  11323. "symfony/config": "^5.4 || ^6.0",
  11324. "symfony/event-dispatcher": "^5.4 || ^6.0",
  11325. "symfony/framework-bundle": "^5.4 || ^6.0",
  11326. "symfony/http-kernel": "^5.4 || ^6.0",
  11327. "symfony/phpunit-bridge": "^6.2"
  11328. },
  11329. "suggest": {
  11330. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  11331. },
  11332. "type": "symfony-bridge",
  11333. "extra": {
  11334. "branch-alias": {
  11335. "dev-main": "2.2-dev"
  11336. }
  11337. },
  11338. "autoload": {
  11339. "psr-4": {
  11340. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  11341. },
  11342. "exclude-from-classmap": [
  11343. "/Tests/"
  11344. ]
  11345. },
  11346. "notification-url": "https://packagist.org/downloads/",
  11347. "license": [
  11348. "MIT"
  11349. ],
  11350. "authors": [
  11351. {
  11352. "name": "Fabien Potencier",
  11353. "email": "fabien@symfony.com"
  11354. },
  11355. {
  11356. "name": "Symfony Community",
  11357. "homepage": "http://symfony.com/contributors"
  11358. }
  11359. ],
  11360. "description": "PSR HTTP message bridge",
  11361. "homepage": "http://symfony.com",
  11362. "keywords": [
  11363. "http",
  11364. "http-message",
  11365. "psr-17",
  11366. "psr-7"
  11367. ],
  11368. "support": {
  11369. "issues": "https://github.com/symfony/psr-http-message-bridge/issues",
  11370. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v2.2.0"
  11371. },
  11372. "funding": [
  11373. {
  11374. "url": "https://symfony.com/sponsor",
  11375. "type": "custom"
  11376. },
  11377. {
  11378. "url": "https://github.com/fabpot",
  11379. "type": "github"
  11380. },
  11381. {
  11382. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11383. "type": "tidelift"
  11384. }
  11385. ],
  11386. "time": "2023-04-21T08:40:19+00:00"
  11387. },
  11388. {
  11389. "name": "symfony/routing",
  11390. "version": "v6.3.5",
  11391. "source": {
  11392. "type": "git",
  11393. "url": "https://github.com/symfony/routing.git",
  11394. "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31"
  11395. },
  11396. "dist": {
  11397. "type": "zip",
  11398. "url": "https://api.github.com/repos/symfony/routing/zipball/82616e59acd3e3d9c916bba798326cb7796d7d31",
  11399. "reference": "82616e59acd3e3d9c916bba798326cb7796d7d31",
  11400. "shasum": ""
  11401. },
  11402. "require": {
  11403. "php": ">=8.1",
  11404. "symfony/deprecation-contracts": "^2.5|^3"
  11405. },
  11406. "conflict": {
  11407. "doctrine/annotations": "<1.12",
  11408. "symfony/config": "<6.2",
  11409. "symfony/dependency-injection": "<5.4",
  11410. "symfony/yaml": "<5.4"
  11411. },
  11412. "require-dev": {
  11413. "doctrine/annotations": "^1.12|^2",
  11414. "psr/log": "^1|^2|^3",
  11415. "symfony/config": "^6.2",
  11416. "symfony/dependency-injection": "^5.4|^6.0",
  11417. "symfony/expression-language": "^5.4|^6.0",
  11418. "symfony/http-foundation": "^5.4|^6.0",
  11419. "symfony/yaml": "^5.4|^6.0"
  11420. },
  11421. "type": "library",
  11422. "autoload": {
  11423. "psr-4": {
  11424. "Symfony\\Component\\Routing\\": ""
  11425. },
  11426. "exclude-from-classmap": [
  11427. "/Tests/"
  11428. ]
  11429. },
  11430. "notification-url": "https://packagist.org/downloads/",
  11431. "license": [
  11432. "MIT"
  11433. ],
  11434. "authors": [
  11435. {
  11436. "name": "Fabien Potencier",
  11437. "email": "fabien@symfony.com"
  11438. },
  11439. {
  11440. "name": "Symfony Community",
  11441. "homepage": "https://symfony.com/contributors"
  11442. }
  11443. ],
  11444. "description": "Maps an HTTP request to a set of configuration variables",
  11445. "homepage": "https://symfony.com",
  11446. "keywords": [
  11447. "router",
  11448. "routing",
  11449. "uri",
  11450. "url"
  11451. ],
  11452. "support": {
  11453. "source": "https://github.com/symfony/routing/tree/v6.3.5"
  11454. },
  11455. "funding": [
  11456. {
  11457. "url": "https://symfony.com/sponsor",
  11458. "type": "custom"
  11459. },
  11460. {
  11461. "url": "https://github.com/fabpot",
  11462. "type": "github"
  11463. },
  11464. {
  11465. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11466. "type": "tidelift"
  11467. }
  11468. ],
  11469. "time": "2023-09-20T16:05:51+00:00"
  11470. },
  11471. {
  11472. "name": "symfony/serializer",
  11473. "version": "v6.3.8",
  11474. "source": {
  11475. "type": "git",
  11476. "url": "https://github.com/symfony/serializer.git",
  11477. "reference": "b3ad1515a276473f7919ac97e560017284a7c4bf"
  11478. },
  11479. "dist": {
  11480. "type": "zip",
  11481. "url": "https://api.github.com/repos/symfony/serializer/zipball/b3ad1515a276473f7919ac97e560017284a7c4bf",
  11482. "reference": "b3ad1515a276473f7919ac97e560017284a7c4bf",
  11483. "shasum": ""
  11484. },
  11485. "require": {
  11486. "php": ">=8.1",
  11487. "symfony/deprecation-contracts": "^2.5|^3",
  11488. "symfony/polyfill-ctype": "~1.8"
  11489. },
  11490. "conflict": {
  11491. "doctrine/annotations": "<1.12",
  11492. "phpdocumentor/reflection-docblock": "<3.2.2",
  11493. "phpdocumentor/type-resolver": "<1.4.0",
  11494. "symfony/dependency-injection": "<5.4",
  11495. "symfony/property-access": "<5.4",
  11496. "symfony/property-info": "<5.4.24|>=6,<6.2.11",
  11497. "symfony/uid": "<5.4",
  11498. "symfony/yaml": "<5.4"
  11499. },
  11500. "require-dev": {
  11501. "doctrine/annotations": "^1.12|^2",
  11502. "phpdocumentor/reflection-docblock": "^3.2|^4.0|^5.0",
  11503. "symfony/cache": "^5.4|^6.0",
  11504. "symfony/config": "^5.4|^6.0",
  11505. "symfony/console": "^5.4|^6.0",
  11506. "symfony/dependency-injection": "^5.4|^6.0",
  11507. "symfony/error-handler": "^5.4|^6.0",
  11508. "symfony/filesystem": "^5.4|^6.0",
  11509. "symfony/form": "^5.4|^6.0",
  11510. "symfony/http-foundation": "^5.4|^6.0",
  11511. "symfony/http-kernel": "^5.4|^6.0",
  11512. "symfony/mime": "^5.4|^6.0",
  11513. "symfony/property-access": "^5.4|^6.0",
  11514. "symfony/property-info": "^5.4.24|^6.2.11",
  11515. "symfony/uid": "^5.4|^6.0",
  11516. "symfony/validator": "^5.4|^6.0",
  11517. "symfony/var-dumper": "^5.4|^6.0",
  11518. "symfony/var-exporter": "^5.4|^6.0",
  11519. "symfony/yaml": "^5.4|^6.0"
  11520. },
  11521. "type": "library",
  11522. "autoload": {
  11523. "psr-4": {
  11524. "Symfony\\Component\\Serializer\\": ""
  11525. },
  11526. "exclude-from-classmap": [
  11527. "/Tests/"
  11528. ]
  11529. },
  11530. "notification-url": "https://packagist.org/downloads/",
  11531. "license": [
  11532. "MIT"
  11533. ],
  11534. "authors": [
  11535. {
  11536. "name": "Fabien Potencier",
  11537. "email": "fabien@symfony.com"
  11538. },
  11539. {
  11540. "name": "Symfony Community",
  11541. "homepage": "https://symfony.com/contributors"
  11542. }
  11543. ],
  11544. "description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
  11545. "homepage": "https://symfony.com",
  11546. "support": {
  11547. "source": "https://github.com/symfony/serializer/tree/v6.3.8"
  11548. },
  11549. "funding": [
  11550. {
  11551. "url": "https://symfony.com/sponsor",
  11552. "type": "custom"
  11553. },
  11554. {
  11555. "url": "https://github.com/fabpot",
  11556. "type": "github"
  11557. },
  11558. {
  11559. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11560. "type": "tidelift"
  11561. }
  11562. ],
  11563. "time": "2023-11-07T10:11:25+00:00"
  11564. },
  11565. {
  11566. "name": "symfony/service-contracts",
  11567. "version": "v3.3.0",
  11568. "source": {
  11569. "type": "git",
  11570. "url": "https://github.com/symfony/service-contracts.git",
  11571. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4"
  11572. },
  11573. "dist": {
  11574. "type": "zip",
  11575. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  11576. "reference": "40da9cc13ec349d9e4966ce18b5fbcd724ab10a4",
  11577. "shasum": ""
  11578. },
  11579. "require": {
  11580. "php": ">=8.1",
  11581. "psr/container": "^2.0"
  11582. },
  11583. "conflict": {
  11584. "ext-psr": "<1.1|>=2"
  11585. },
  11586. "type": "library",
  11587. "extra": {
  11588. "branch-alias": {
  11589. "dev-main": "3.4-dev"
  11590. },
  11591. "thanks": {
  11592. "name": "symfony/contracts",
  11593. "url": "https://github.com/symfony/contracts"
  11594. }
  11595. },
  11596. "autoload": {
  11597. "psr-4": {
  11598. "Symfony\\Contracts\\Service\\": ""
  11599. },
  11600. "exclude-from-classmap": [
  11601. "/Test/"
  11602. ]
  11603. },
  11604. "notification-url": "https://packagist.org/downloads/",
  11605. "license": [
  11606. "MIT"
  11607. ],
  11608. "authors": [
  11609. {
  11610. "name": "Nicolas Grekas",
  11611. "email": "p@tchwork.com"
  11612. },
  11613. {
  11614. "name": "Symfony Community",
  11615. "homepage": "https://symfony.com/contributors"
  11616. }
  11617. ],
  11618. "description": "Generic abstractions related to writing services",
  11619. "homepage": "https://symfony.com",
  11620. "keywords": [
  11621. "abstractions",
  11622. "contracts",
  11623. "decoupling",
  11624. "interfaces",
  11625. "interoperability",
  11626. "standards"
  11627. ],
  11628. "support": {
  11629. "source": "https://github.com/symfony/service-contracts/tree/v3.3.0"
  11630. },
  11631. "funding": [
  11632. {
  11633. "url": "https://symfony.com/sponsor",
  11634. "type": "custom"
  11635. },
  11636. {
  11637. "url": "https://github.com/fabpot",
  11638. "type": "github"
  11639. },
  11640. {
  11641. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11642. "type": "tidelift"
  11643. }
  11644. ],
  11645. "time": "2023-05-23T14:45:45+00:00"
  11646. },
  11647. {
  11648. "name": "symfony/string",
  11649. "version": "v6.3.8",
  11650. "source": {
  11651. "type": "git",
  11652. "url": "https://github.com/symfony/string.git",
  11653. "reference": "13880a87790c76ef994c91e87efb96134522577a"
  11654. },
  11655. "dist": {
  11656. "type": "zip",
  11657. "url": "https://api.github.com/repos/symfony/string/zipball/13880a87790c76ef994c91e87efb96134522577a",
  11658. "reference": "13880a87790c76ef994c91e87efb96134522577a",
  11659. "shasum": ""
  11660. },
  11661. "require": {
  11662. "php": ">=8.1",
  11663. "symfony/polyfill-ctype": "~1.8",
  11664. "symfony/polyfill-intl-grapheme": "~1.0",
  11665. "symfony/polyfill-intl-normalizer": "~1.0",
  11666. "symfony/polyfill-mbstring": "~1.0"
  11667. },
  11668. "conflict": {
  11669. "symfony/translation-contracts": "<2.5"
  11670. },
  11671. "require-dev": {
  11672. "symfony/error-handler": "^5.4|^6.0",
  11673. "symfony/http-client": "^5.4|^6.0",
  11674. "symfony/intl": "^6.2",
  11675. "symfony/translation-contracts": "^2.5|^3.0",
  11676. "symfony/var-exporter": "^5.4|^6.0"
  11677. },
  11678. "type": "library",
  11679. "autoload": {
  11680. "files": [
  11681. "Resources/functions.php"
  11682. ],
  11683. "psr-4": {
  11684. "Symfony\\Component\\String\\": ""
  11685. },
  11686. "exclude-from-classmap": [
  11687. "/Tests/"
  11688. ]
  11689. },
  11690. "notification-url": "https://packagist.org/downloads/",
  11691. "license": [
  11692. "MIT"
  11693. ],
  11694. "authors": [
  11695. {
  11696. "name": "Nicolas Grekas",
  11697. "email": "p@tchwork.com"
  11698. },
  11699. {
  11700. "name": "Symfony Community",
  11701. "homepage": "https://symfony.com/contributors"
  11702. }
  11703. ],
  11704. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  11705. "homepage": "https://symfony.com",
  11706. "keywords": [
  11707. "grapheme",
  11708. "i18n",
  11709. "string",
  11710. "unicode",
  11711. "utf-8",
  11712. "utf8"
  11713. ],
  11714. "support": {
  11715. "source": "https://github.com/symfony/string/tree/v6.3.8"
  11716. },
  11717. "funding": [
  11718. {
  11719. "url": "https://symfony.com/sponsor",
  11720. "type": "custom"
  11721. },
  11722. {
  11723. "url": "https://github.com/fabpot",
  11724. "type": "github"
  11725. },
  11726. {
  11727. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11728. "type": "tidelift"
  11729. }
  11730. ],
  11731. "time": "2023-11-09T08:28:21+00:00"
  11732. },
  11733. {
  11734. "name": "symfony/translation-contracts",
  11735. "version": "v3.3.0",
  11736. "source": {
  11737. "type": "git",
  11738. "url": "https://github.com/symfony/translation-contracts.git",
  11739. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86"
  11740. },
  11741. "dist": {
  11742. "type": "zip",
  11743. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/02c24deb352fb0d79db5486c0c79905a85e37e86",
  11744. "reference": "02c24deb352fb0d79db5486c0c79905a85e37e86",
  11745. "shasum": ""
  11746. },
  11747. "require": {
  11748. "php": ">=8.1"
  11749. },
  11750. "type": "library",
  11751. "extra": {
  11752. "branch-alias": {
  11753. "dev-main": "3.4-dev"
  11754. },
  11755. "thanks": {
  11756. "name": "symfony/contracts",
  11757. "url": "https://github.com/symfony/contracts"
  11758. }
  11759. },
  11760. "autoload": {
  11761. "psr-4": {
  11762. "Symfony\\Contracts\\Translation\\": ""
  11763. },
  11764. "exclude-from-classmap": [
  11765. "/Test/"
  11766. ]
  11767. },
  11768. "notification-url": "https://packagist.org/downloads/",
  11769. "license": [
  11770. "MIT"
  11771. ],
  11772. "authors": [
  11773. {
  11774. "name": "Nicolas Grekas",
  11775. "email": "p@tchwork.com"
  11776. },
  11777. {
  11778. "name": "Symfony Community",
  11779. "homepage": "https://symfony.com/contributors"
  11780. }
  11781. ],
  11782. "description": "Generic abstractions related to translation",
  11783. "homepage": "https://symfony.com",
  11784. "keywords": [
  11785. "abstractions",
  11786. "contracts",
  11787. "decoupling",
  11788. "interfaces",
  11789. "interoperability",
  11790. "standards"
  11791. ],
  11792. "support": {
  11793. "source": "https://github.com/symfony/translation-contracts/tree/v3.3.0"
  11794. },
  11795. "funding": [
  11796. {
  11797. "url": "https://symfony.com/sponsor",
  11798. "type": "custom"
  11799. },
  11800. {
  11801. "url": "https://github.com/fabpot",
  11802. "type": "github"
  11803. },
  11804. {
  11805. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11806. "type": "tidelift"
  11807. }
  11808. ],
  11809. "time": "2023-05-30T17:17:10+00:00"
  11810. },
  11811. {
  11812. "name": "symfony/validator",
  11813. "version": "v6.3.8",
  11814. "source": {
  11815. "type": "git",
  11816. "url": "https://github.com/symfony/validator.git",
  11817. "reference": "f75b40e088d095db1e788b81605a76f4563cb80e"
  11818. },
  11819. "dist": {
  11820. "type": "zip",
  11821. "url": "https://api.github.com/repos/symfony/validator/zipball/f75b40e088d095db1e788b81605a76f4563cb80e",
  11822. "reference": "f75b40e088d095db1e788b81605a76f4563cb80e",
  11823. "shasum": ""
  11824. },
  11825. "require": {
  11826. "php": ">=8.1",
  11827. "symfony/deprecation-contracts": "^2.5|^3",
  11828. "symfony/polyfill-ctype": "~1.8",
  11829. "symfony/polyfill-mbstring": "~1.0",
  11830. "symfony/polyfill-php83": "^1.27",
  11831. "symfony/translation-contracts": "^2.5|^3"
  11832. },
  11833. "conflict": {
  11834. "doctrine/annotations": "<1.13",
  11835. "doctrine/lexer": "<1.1",
  11836. "symfony/dependency-injection": "<5.4",
  11837. "symfony/expression-language": "<5.4",
  11838. "symfony/http-kernel": "<5.4",
  11839. "symfony/intl": "<5.4",
  11840. "symfony/property-info": "<5.4",
  11841. "symfony/translation": "<5.4",
  11842. "symfony/yaml": "<5.4"
  11843. },
  11844. "require-dev": {
  11845. "doctrine/annotations": "^1.13|^2",
  11846. "egulias/email-validator": "^2.1.10|^3|^4",
  11847. "symfony/cache": "^5.4|^6.0",
  11848. "symfony/config": "^5.4|^6.0",
  11849. "symfony/console": "^5.4|^6.0",
  11850. "symfony/dependency-injection": "^5.4|^6.0",
  11851. "symfony/expression-language": "^5.4|^6.0",
  11852. "symfony/finder": "^5.4|^6.0",
  11853. "symfony/http-client": "^5.4|^6.0",
  11854. "symfony/http-foundation": "^5.4|^6.0",
  11855. "symfony/http-kernel": "^5.4|^6.0",
  11856. "symfony/intl": "^5.4|^6.0",
  11857. "symfony/mime": "^5.4|^6.0",
  11858. "symfony/property-access": "^5.4|^6.0",
  11859. "symfony/property-info": "^5.4|^6.0",
  11860. "symfony/translation": "^5.4|^6.0",
  11861. "symfony/yaml": "^5.4|^6.0"
  11862. },
  11863. "type": "library",
  11864. "autoload": {
  11865. "psr-4": {
  11866. "Symfony\\Component\\Validator\\": ""
  11867. },
  11868. "exclude-from-classmap": [
  11869. "/Tests/"
  11870. ]
  11871. },
  11872. "notification-url": "https://packagist.org/downloads/",
  11873. "license": [
  11874. "MIT"
  11875. ],
  11876. "authors": [
  11877. {
  11878. "name": "Fabien Potencier",
  11879. "email": "fabien@symfony.com"
  11880. },
  11881. {
  11882. "name": "Symfony Community",
  11883. "homepage": "https://symfony.com/contributors"
  11884. }
  11885. ],
  11886. "description": "Provides tools to validate values",
  11887. "homepage": "https://symfony.com",
  11888. "support": {
  11889. "source": "https://github.com/symfony/validator/tree/v6.3.8"
  11890. },
  11891. "funding": [
  11892. {
  11893. "url": "https://symfony.com/sponsor",
  11894. "type": "custom"
  11895. },
  11896. {
  11897. "url": "https://github.com/fabpot",
  11898. "type": "github"
  11899. },
  11900. {
  11901. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11902. "type": "tidelift"
  11903. }
  11904. ],
  11905. "time": "2023-11-07T10:17:15+00:00"
  11906. },
  11907. {
  11908. "name": "symfony/var-dumper",
  11909. "version": "v6.3.8",
  11910. "source": {
  11911. "type": "git",
  11912. "url": "https://github.com/symfony/var-dumper.git",
  11913. "reference": "81acabba9046550e89634876ca64bfcd3c06aa0a"
  11914. },
  11915. "dist": {
  11916. "type": "zip",
  11917. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/81acabba9046550e89634876ca64bfcd3c06aa0a",
  11918. "reference": "81acabba9046550e89634876ca64bfcd3c06aa0a",
  11919. "shasum": ""
  11920. },
  11921. "require": {
  11922. "php": ">=8.1",
  11923. "symfony/deprecation-contracts": "^2.5|^3",
  11924. "symfony/polyfill-mbstring": "~1.0"
  11925. },
  11926. "conflict": {
  11927. "symfony/console": "<5.4"
  11928. },
  11929. "require-dev": {
  11930. "ext-iconv": "*",
  11931. "symfony/console": "^5.4|^6.0",
  11932. "symfony/http-kernel": "^5.4|^6.0",
  11933. "symfony/process": "^5.4|^6.0",
  11934. "symfony/uid": "^5.4|^6.0",
  11935. "twig/twig": "^2.13|^3.0.4"
  11936. },
  11937. "bin": [
  11938. "Resources/bin/var-dump-server"
  11939. ],
  11940. "type": "library",
  11941. "autoload": {
  11942. "files": [
  11943. "Resources/functions/dump.php"
  11944. ],
  11945. "psr-4": {
  11946. "Symfony\\Component\\VarDumper\\": ""
  11947. },
  11948. "exclude-from-classmap": [
  11949. "/Tests/"
  11950. ]
  11951. },
  11952. "notification-url": "https://packagist.org/downloads/",
  11953. "license": [
  11954. "MIT"
  11955. ],
  11956. "authors": [
  11957. {
  11958. "name": "Nicolas Grekas",
  11959. "email": "p@tchwork.com"
  11960. },
  11961. {
  11962. "name": "Symfony Community",
  11963. "homepage": "https://symfony.com/contributors"
  11964. }
  11965. ],
  11966. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  11967. "homepage": "https://symfony.com",
  11968. "keywords": [
  11969. "debug",
  11970. "dump"
  11971. ],
  11972. "support": {
  11973. "source": "https://github.com/symfony/var-dumper/tree/v6.3.8"
  11974. },
  11975. "funding": [
  11976. {
  11977. "url": "https://symfony.com/sponsor",
  11978. "type": "custom"
  11979. },
  11980. {
  11981. "url": "https://github.com/fabpot",
  11982. "type": "github"
  11983. },
  11984. {
  11985. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  11986. "type": "tidelift"
  11987. }
  11988. ],
  11989. "time": "2023-11-08T10:42:36+00:00"
  11990. },
  11991. {
  11992. "name": "symfony/var-exporter",
  11993. "version": "v6.3.6",
  11994. "source": {
  11995. "type": "git",
  11996. "url": "https://github.com/symfony/var-exporter.git",
  11997. "reference": "374d289c13cb989027274c86206ddc63b16a2441"
  11998. },
  11999. "dist": {
  12000. "type": "zip",
  12001. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/374d289c13cb989027274c86206ddc63b16a2441",
  12002. "reference": "374d289c13cb989027274c86206ddc63b16a2441",
  12003. "shasum": ""
  12004. },
  12005. "require": {
  12006. "php": ">=8.1"
  12007. },
  12008. "require-dev": {
  12009. "symfony/var-dumper": "^5.4|^6.0"
  12010. },
  12011. "type": "library",
  12012. "autoload": {
  12013. "psr-4": {
  12014. "Symfony\\Component\\VarExporter\\": ""
  12015. },
  12016. "exclude-from-classmap": [
  12017. "/Tests/"
  12018. ]
  12019. },
  12020. "notification-url": "https://packagist.org/downloads/",
  12021. "license": [
  12022. "MIT"
  12023. ],
  12024. "authors": [
  12025. {
  12026. "name": "Nicolas Grekas",
  12027. "email": "p@tchwork.com"
  12028. },
  12029. {
  12030. "name": "Symfony Community",
  12031. "homepage": "https://symfony.com/contributors"
  12032. }
  12033. ],
  12034. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  12035. "homepage": "https://symfony.com",
  12036. "keywords": [
  12037. "clone",
  12038. "construct",
  12039. "export",
  12040. "hydrate",
  12041. "instantiate",
  12042. "lazy-loading",
  12043. "proxy",
  12044. "serialize"
  12045. ],
  12046. "support": {
  12047. "source": "https://github.com/symfony/var-exporter/tree/v6.3.6"
  12048. },
  12049. "funding": [
  12050. {
  12051. "url": "https://symfony.com/sponsor",
  12052. "type": "custom"
  12053. },
  12054. {
  12055. "url": "https://github.com/fabpot",
  12056. "type": "github"
  12057. },
  12058. {
  12059. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12060. "type": "tidelift"
  12061. }
  12062. ],
  12063. "time": "2023-10-13T09:16:49+00:00"
  12064. },
  12065. {
  12066. "name": "symfony/yaml",
  12067. "version": "v6.3.8",
  12068. "source": {
  12069. "type": "git",
  12070. "url": "https://github.com/symfony/yaml.git",
  12071. "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92"
  12072. },
  12073. "dist": {
  12074. "type": "zip",
  12075. "url": "https://api.github.com/repos/symfony/yaml/zipball/3493af8a8dad7fa91c77fa473ba23ecd95334a92",
  12076. "reference": "3493af8a8dad7fa91c77fa473ba23ecd95334a92",
  12077. "shasum": ""
  12078. },
  12079. "require": {
  12080. "php": ">=8.1",
  12081. "symfony/deprecation-contracts": "^2.5|^3",
  12082. "symfony/polyfill-ctype": "^1.8"
  12083. },
  12084. "conflict": {
  12085. "symfony/console": "<5.4"
  12086. },
  12087. "require-dev": {
  12088. "symfony/console": "^5.4|^6.0"
  12089. },
  12090. "bin": [
  12091. "Resources/bin/yaml-lint"
  12092. ],
  12093. "type": "library",
  12094. "autoload": {
  12095. "psr-4": {
  12096. "Symfony\\Component\\Yaml\\": ""
  12097. },
  12098. "exclude-from-classmap": [
  12099. "/Tests/"
  12100. ]
  12101. },
  12102. "notification-url": "https://packagist.org/downloads/",
  12103. "license": [
  12104. "MIT"
  12105. ],
  12106. "authors": [
  12107. {
  12108. "name": "Fabien Potencier",
  12109. "email": "fabien@symfony.com"
  12110. },
  12111. {
  12112. "name": "Symfony Community",
  12113. "homepage": "https://symfony.com/contributors"
  12114. }
  12115. ],
  12116. "description": "Loads and dumps YAML files",
  12117. "homepage": "https://symfony.com",
  12118. "support": {
  12119. "source": "https://github.com/symfony/yaml/tree/v6.3.8"
  12120. },
  12121. "funding": [
  12122. {
  12123. "url": "https://symfony.com/sponsor",
  12124. "type": "custom"
  12125. },
  12126. {
  12127. "url": "https://github.com/fabpot",
  12128. "type": "github"
  12129. },
  12130. {
  12131. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12132. "type": "tidelift"
  12133. }
  12134. ],
  12135. "time": "2023-11-06T10:58:05+00:00"
  12136. },
  12137. {
  12138. "name": "twig/twig",
  12139. "version": "v3.6.1",
  12140. "source": {
  12141. "type": "git",
  12142. "url": "https://github.com/twigphp/Twig.git",
  12143. "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd"
  12144. },
  12145. "dist": {
  12146. "type": "zip",
  12147. "url": "https://api.github.com/repos/twigphp/Twig/zipball/7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd",
  12148. "reference": "7e7d5839d4bec168dfeef0ac66d5c5a2edbabffd",
  12149. "shasum": ""
  12150. },
  12151. "require": {
  12152. "php": ">=7.2.5",
  12153. "symfony/polyfill-ctype": "^1.8",
  12154. "symfony/polyfill-mbstring": "^1.3"
  12155. },
  12156. "require-dev": {
  12157. "psr/container": "^1.0|^2.0",
  12158. "symfony/phpunit-bridge": "^4.4.9|^5.0.9|^6.0"
  12159. },
  12160. "type": "library",
  12161. "autoload": {
  12162. "psr-4": {
  12163. "Twig\\": "src/"
  12164. }
  12165. },
  12166. "notification-url": "https://packagist.org/downloads/",
  12167. "license": [
  12168. "BSD-3-Clause"
  12169. ],
  12170. "authors": [
  12171. {
  12172. "name": "Fabien Potencier",
  12173. "email": "fabien@symfony.com",
  12174. "homepage": "http://fabien.potencier.org",
  12175. "role": "Lead Developer"
  12176. },
  12177. {
  12178. "name": "Twig Team",
  12179. "role": "Contributors"
  12180. },
  12181. {
  12182. "name": "Armin Ronacher",
  12183. "email": "armin.ronacher@active-4.com",
  12184. "role": "Project Founder"
  12185. }
  12186. ],
  12187. "description": "Twig, the flexible, fast, and secure template language for PHP",
  12188. "homepage": "https://twig.symfony.com",
  12189. "keywords": [
  12190. "templating"
  12191. ],
  12192. "support": {
  12193. "issues": "https://github.com/twigphp/Twig/issues",
  12194. "source": "https://github.com/twigphp/Twig/tree/v3.6.1"
  12195. },
  12196. "funding": [
  12197. {
  12198. "url": "https://github.com/fabpot",
  12199. "type": "github"
  12200. },
  12201. {
  12202. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  12203. "type": "tidelift"
  12204. }
  12205. ],
  12206. "time": "2023-06-08T12:52:13+00:00"
  12207. },
  12208. {
  12209. "name": "webflo/drupal-finder",
  12210. "version": "1.2.2",
  12211. "source": {
  12212. "type": "git",
  12213. "url": "https://github.com/webflo/drupal-finder.git",
  12214. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee"
  12215. },
  12216. "dist": {
  12217. "type": "zip",
  12218. "url": "https://api.github.com/repos/webflo/drupal-finder/zipball/c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12219. "reference": "c8e5dbe65caef285fec8057a4c718a0d4138d1ee",
  12220. "shasum": ""
  12221. },
  12222. "require": {
  12223. "ext-json": "*"
  12224. },
  12225. "require-dev": {
  12226. "mikey179/vfsstream": "^1.6",
  12227. "phpunit/phpunit": "^4.8"
  12228. },
  12229. "type": "library",
  12230. "autoload": {
  12231. "classmap": [
  12232. "src/DrupalFinder.php"
  12233. ]
  12234. },
  12235. "notification-url": "https://packagist.org/downloads/",
  12236. "license": [
  12237. "GPL-2.0-or-later"
  12238. ],
  12239. "authors": [
  12240. {
  12241. "name": "Florian Weber",
  12242. "email": "florian@webflo.org"
  12243. }
  12244. ],
  12245. "description": "Helper class to locate a Drupal installation from a given path.",
  12246. "support": {
  12247. "issues": "https://github.com/webflo/drupal-finder/issues",
  12248. "source": "https://github.com/webflo/drupal-finder/tree/1.2.2"
  12249. },
  12250. "time": "2020-10-27T09:42:17+00:00"
  12251. },
  12252. {
  12253. "name": "wikimedia/composer-merge-plugin",
  12254. "version": "v2.1.0",
  12255. "source": {
  12256. "type": "git",
  12257. "url": "https://github.com/wikimedia/composer-merge-plugin.git",
  12258. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc"
  12259. },
  12260. "dist": {
  12261. "type": "zip",
  12262. "url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  12263. "reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc",
  12264. "shasum": ""
  12265. },
  12266. "require": {
  12267. "composer-plugin-api": "^1.1||^2.0",
  12268. "php": ">=7.2.0"
  12269. },
  12270. "require-dev": {
  12271. "composer/composer": "^1.1||^2.0",
  12272. "ext-json": "*",
  12273. "mediawiki/mediawiki-phan-config": "0.11.1",
  12274. "php-parallel-lint/php-parallel-lint": "~1.3.1",
  12275. "phpspec/prophecy": "~1.15.0",
  12276. "phpunit/phpunit": "^8.5||^9.0",
  12277. "squizlabs/php_codesniffer": "~3.7.1"
  12278. },
  12279. "type": "composer-plugin",
  12280. "extra": {
  12281. "branch-alias": {
  12282. "dev-master": "2.x-dev"
  12283. },
  12284. "class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
  12285. },
  12286. "autoload": {
  12287. "psr-4": {
  12288. "Wikimedia\\Composer\\Merge\\V2\\": "src/"
  12289. }
  12290. },
  12291. "notification-url": "https://packagist.org/downloads/",
  12292. "license": [
  12293. "MIT"
  12294. ],
  12295. "authors": [
  12296. {
  12297. "name": "Bryan Davis",
  12298. "email": "bd808@wikimedia.org"
  12299. }
  12300. ],
  12301. "description": "Composer plugin to merge multiple composer.json files",
  12302. "support": {
  12303. "issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
  12304. "source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0"
  12305. },
  12306. "time": "2023-04-15T19:07:00+00:00"
  12307. }
  12308. ],
  12309. "packages-dev": [],
  12310. "aliases": [],
  12311. "minimum-stability": "stable",
  12312. "stability-flags": {
  12313. "drupal/login_destination": 20,
  12314. "drupal/page_manager": 5,
  12315. "drupal/phone_number": 15,
  12316. "drupal/advanced_text_formatter": 5,
  12317. "drupal/bulkdelete": 20,
  12318. "drupal/config_ignore": 5,
  12319. "drupal/config_devel": 20,
  12320. "drupal/config_update": 15,
  12321. "drupal/context": 5,
  12322. "drupal/date_range_formatter": 20,
  12323. "drupal/email_registration": 5,
  12324. "drupal/entity_clone": 20,
  12325. "drupal/field_group": 20,
  12326. "drupal/filter_perms": 20,
  12327. "drupal/inline_entity_form": 5,
  12328. "drupal/linkit": 10,
  12329. "drupal/maillog": 20,
  12330. "drupal/maxlength": 10,
  12331. "drupal/menu_block": 20,
  12332. "drupal/menu_position": 20,
  12333. "drupal/path_alias_xt": 20,
  12334. "drupal/pathologic": 15,
  12335. "drupal/profile": 5,
  12336. "drupal/smtp": 10,
  12337. "drupal/synonyms": 10,
  12338. "drupal/translation_views": 15,
  12339. "drupal/ultimate_cron": 15
  12340. },
  12341. "prefer-stable": true,
  12342. "prefer-lowest": false,
  12343. "platform": [],
  12344. "platform-dev": [],
  12345. "plugin-api-version": "2.6.0"
  12346. }